Skip to content

Instantly share code, notes, and snippets.

@alphazero
Created January 29, 2012 04:53
Show Gist options
  • Save alphazero/1697257 to your computer and use it in GitHub Desktop.
Save alphazero/1697257 to your computer and use it in GitHub Desktop.
Comparing 4 queues in a 1:1 Cons/Prod in tight loop for fairly long runs - incremental metrics and updated QItem gen
/*
Notes:
- Updated the qitem creation to pack byte[] with System.currentTimeMillis() as prep for latency tests.
- Also testing ConcurrentLinkedQueue (java.util.concurrent)
LBQ -> LinkedBlockingQueue [jdk]
CLQ -> ConcurrentLinkedQueue [jdk]
PCQ -> ConsumerProducerQueue [jacomecha]
TCPQ -> TCPQueueBase [jacomecha]
*/
private final byte[] getBlock(int size){
if(size%8!=0) throw new IllegalArgumentException("size is not multiple of 8: " + size);
byte[] b = new byte[size];
for(int off=0; off<size; off+=DataCodec.LONG_BYTES)
DataCodec.writeLong(System.currentTimeMillis(), b, off);
return b;
}
private final Runnable newProducerTask (final Queue<byte[]> q) {
return new Runnable() {
@Override final public void run() {
byte[] data = getBlock(4096);
byte[] buff = new byte[1024 * 4];
int off = 0;
final int iters = 4096 * 12;
Log.log("producer task started");
for(;;){
for(int i=0; i<iters; i++){
q.offer(getBlock(1024));
}
}
}
};
}
private final Runnable newConsumerTask (final Queue<byte[]> q) {
return new Runnable() {
@Override final public void run() {
final String qclass = q.getClass().getSimpleName();
long totbytes = 0L;
long totnanos = 0L;
int n = 0;
final int lim = 1000;
final int blim = 12500000;
Log.log("consumer task started");
final long start0 = System.nanoTime();
for(int i=0; i<lim; i++){
long start = System.nanoTime();
long rlen = 0;
while(rlen < blim){
final byte[] data = q.poll();
if(data == null){
LockSupport.parkNanos(10L);
}
else {
rlen += data.length;
}
}
long delta = System.nanoTime() - start;
n++;
report(String.valueOf(n), rlen, delta, qclass);
totbytes += rlen;
}
totnanos = System.nanoTime() - start0;
Log.log("---");
Log.log("consumer stopping for summation");
Log.log("---");
report("TOTAL", totbytes, totnanos, qclass);
try {
Thread.sleep(1);
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
System.exit(1);
}
};
}
/* --------- metrics -----------------*/
// TODO: move this to utils
public static final long NANOS_PER_SEC = TimeUnit.SECONDS.toNanos(1);
public static final long BITS_PER_BYTE = 8;
public static final long BITS_PER_LONG_WORD = Long.SIZE;
public static final long BYTES_PER_LONG_WORD = Long.SIZE / Byte.SIZE;
public final static void report (final String label, final long totbytes, final long nanos, final String subjectclass ) {
double rlen = totbytes;
double Bps = rlen * NANOS_PER_SEC / nanos;
double wps = Bps / BYTES_PER_LONG_WORD;
Log.log("[%8s] bytes:%12.0f | delta:%12d nsec | Bps:%12.0f | wps:%12.0f {%s}", label, rlen, nanos, Bps, wps, subjectclass);
}
/** data codec */
static public final int LONG_BYTES = Long.SIZE / Byte.SIZE;
static public final byte[] writeLong(final long v, byte[] b) {
return writeLong(v, b, 0);
}
static public final byte[] writeLong(final long v, byte[] b, int off) {
if(b==null)
throw new NullPointerException("b");
if(b.length - off < LONG_BYTES)
throw new IllegalArgumentException(String.format("(b.len:%d, off:%d)", b.length, off).toString());
b[0] = (byte)(v >>> 56);
b[1] = (byte)(v >>> 48);
b[2] = (byte)(v >>> 40);
b[3] = (byte)(v >>> 32);
b[4] = (byte)(v >>> 24);
b[5] = (byte)(v >>> 16);
b[6] = (byte)(v >>> 8);
b[7] = (byte)(v >>> 0);
return b;
}
////////////////// LBA //////////////////
01327812022492 Sat Jan 28 23:40:22 EST 2012 jacomecha[tid:11] <INFO>: [ 534] bytes: 12500992 | delta: 110712000 nsec | Bps: 112914517 | wps: 14114315 {LinkedBlockingQueue}
01327812022610 Sat Jan 28 23:40:22 EST 2012 jacomecha[tid:11] <INFO>: [ 535] bytes: 12500992 | delta: 117248000 nsec | Bps: 106620087 | wps: 13327511 {LinkedBlockingQueue}
01327812022712 Sat Jan 28 23:40:22 EST 2012 jacomecha[tid:11] <INFO>: [ 536] bytes: 12500992 | delta: 100868000 nsec | Bps: 123934171 | wps: 15491771 {LinkedBlockingQueue}
01327812022820 Sat Jan 28 23:40:22 EST 2012 jacomecha[tid:11] <INFO>: [ 537] bytes: 12500992 | delta: 108482000 nsec | Bps: 115235634 | wps: 14404454 {LinkedBlockingQueue}
01327812022929 Sat Jan 28 23:40:22 EST 2012 jacomecha[tid:11] <INFO>: [ 538] bytes: 12500992 | delta: 108441000 nsec | Bps: 115279203 | wps: 14409900 {LinkedBlockingQueue}
01327812023042 Sat Jan 28 23:40:23 EST 2012 jacomecha[tid:11] <INFO>: [ 539] bytes: 12500992 | delta: 112384000 nsec | Bps: 111234624 | wps: 13904328 {LinkedBlockingQueue}
01327812023153 Sat Jan 28 23:40:23 EST 2012 jacomecha[tid:11] <INFO>: [ 540] bytes: 12500992 | delta: 110101000 nsec | Bps: 113541130 | wps: 14192641 {LinkedBlockingQueue}
01327812023396 Sat Jan 28 23:40:23 EST 2012 jacomecha[tid:11] <INFO>: [ 541] bytes: 12500992 | delta: 109810000 nsec | Bps: 113842018 | wps: 14230252 {LinkedBlockingQueue}
01327812023505 Sat Jan 28 23:40:23 EST 2012 jacomecha[tid:11] <INFO>: [ 542] bytes: 12500992 | delta: 108668000 nsec | Bps: 115038392 | wps: 14379799 {LinkedBlockingQueue}
01327812023619 Sat Jan 28 23:40:23 EST 2012 jacomecha[tid:11] <INFO>: [ 543] bytes: 12500992 | delta: 114018000 nsec | Bps: 109640513 | wps: 13705064 {LinkedBlockingQueue}
01327812023751 Sat Jan 28 23:40:23 EST 2012 jacomecha[tid:11] <INFO>: [ 544] bytes: 12500992 | delta: 131348000 nsec | Bps: 95174590 | wps: 11896824 {LinkedBlockingQueue}
01327812023852 Sat Jan 28 23:40:23 EST 2012 jacomecha[tid:11] <INFO>: [ 545] bytes: 12500992 | delta: 100152000 nsec | Bps: 124820193 | wps: 15602524 {LinkedBlockingQueue}
01327812023962 Sat Jan 28 23:40:23 EST 2012 jacomecha[tid:11] <INFO>: [ 546] bytes: 12500992 | delta: 110561000 nsec | Bps: 113068731 | wps: 14133591 {LinkedBlockingQueue}
01327812024071 Sat Jan 28 23:40:24 EST 2012 jacomecha[tid:11] <INFO>: [ 547] bytes: 12500992 | delta: 107638000 nsec | Bps: 116139207 | wps: 14517401 {LinkedBlockingQueue}
01327812024201 Sat Jan 28 23:40:24 EST 2012 jacomecha[tid:11] <INFO>: [ 548] bytes: 12500992 | delta: 129613000 nsec | Bps: 96448597 | wps: 12056075 {LinkedBlockingQueue}
01327812024347 Sat Jan 28 23:40:24 EST 2012 jacomecha[tid:11] <INFO>: [ 549] bytes: 12500992 | delta: 146086000 nsec | Bps: 85572827 | wps: 10696603 {LinkedBlockingQueue}
01327812024446 Sat Jan 28 23:40:24 EST 2012 jacomecha[tid:11] <INFO>: [ 550] bytes: 12500992 | delta: 98689000 nsec | Bps: 126670571 | wps: 15833821 {LinkedBlockingQueue}
01327812024558 Sat Jan 28 23:40:24 EST 2012 jacomecha[tid:11] <INFO>: [ 551] bytes: 12500992 | delta: 110975000 nsec | Bps: 112646920 | wps: 14080865 {LinkedBlockingQueue}
01327812024669 Sat Jan 28 23:40:24 EST 2012 jacomecha[tid:11] <INFO>: [ 552] bytes: 12500992 | delta: 110815000 nsec | Bps: 112809565 | wps: 14101196 {LinkedBlockingQueue}
01327812024783 Sat Jan 28 23:40:24 EST 2012 jacomecha[tid:11] <INFO>: [ 553] bytes: 12500992 | delta: 113303000 nsec | Bps: 110332401 | wps: 13791550 {LinkedBlockingQueue}
01327812024891 Sat Jan 28 23:40:24 EST 2012 jacomecha[tid:11] <INFO>: [ 554] bytes: 12500992 | delta: 107767000 nsec | Bps: 116000186 | wps: 14500023 {LinkedBlockingQueue}
01327812024999 Sat Jan 28 23:40:24 EST 2012 jacomecha[tid:11] <INFO>: [ 555] bytes: 12500992 | delta: 107490000 nsec | Bps: 116299116 | wps: 14537390 {LinkedBlockingQueue}
01327812025109 Sat Jan 28 23:40:25 EST 2012 jacomecha[tid:11] <INFO>: [ 556] bytes: 12500992 | delta: 109008000 nsec | Bps: 114679583 | wps: 14334948 {LinkedBlockingQueue}
01327812025219 Sat Jan 28 23:40:25 EST 2012 jacomecha[tid:11] <INFO>: [ 557] bytes: 12500992 | delta: 109386000 nsec | Bps: 114283290 | wps: 14285411 {LinkedBlockingQueue}
01327812025331 Sat Jan 28 23:40:25 EST 2012 jacomecha[tid:11] <INFO>: [ 558] bytes: 12500992 | delta: 111718000 nsec | Bps: 111897743 | wps: 13987218 {LinkedBlockingQueue}
01327812025442 Sat Jan 28 23:40:25 EST 2012 jacomecha[tid:11] <INFO>: [ 559] bytes: 12500992 | delta: 110455000 nsec | Bps: 113177240 | wps: 14147155 {LinkedBlockingQueue}
01327812025549 Sat Jan 28 23:40:25 EST 2012 jacomecha[tid:11] <INFO>: [ 560] bytes: 12500992 | delta: 106386000 nsec | Bps: 117505988 | wps: 14688248 {LinkedBlockingQueue}
01327812025659 Sat Jan 28 23:40:25 EST 2012 jacomecha[tid:11] <INFO>: [ 561] bytes: 12500992 | delta: 110256000 nsec | Bps: 113381512 | wps: 14172689 {LinkedBlockingQueue}
01327812025772 Sat Jan 28 23:40:25 EST 2012 jacomecha[tid:11] <INFO>: [ 562] bytes: 12500992 | delta: 111737000 nsec | Bps: 111878715 | wps: 13984839 {LinkedBlockingQueue}
01327812025893 Sat Jan 28 23:40:25 EST 2012 jacomecha[tid:11] <INFO>: [ 563] bytes: 12500992 | delta: 120897000 nsec | Bps: 103402003 | wps: 12925250 {LinkedBlockingQueue}
01327812026002 Sat Jan 28 23:40:26 EST 2012 jacomecha[tid:11] <INFO>: [ 564] bytes: 12500992 | delta: 108431000 nsec | Bps: 115289834 | wps: 14411229 {LinkedBlockingQueue}
01327812026111 Sat Jan 28 23:40:26 EST 2012 jacomecha[tid:11] <INFO>: [ 565] bytes: 12500992 | delta: 108845000 nsec | Bps: 114851321 | wps: 14356415 {LinkedBlockingQueue}
01327812026293 Sat Jan 28 23:40:26 EST 2012 jacomecha[tid:11] <INFO>: [ 566] bytes: 12500992 | delta: 181433000 nsec | Bps: 68901424 | wps: 8612678 {LinkedBlockingQueue}
01327812026401 Sat Jan 28 23:40:26 EST 2012 jacomecha[tid:11] <INFO>: [ 567] bytes: 12500992 | delta: 107644000 nsec | Bps: 116132734 | wps: 14516592 {LinkedBlockingQueue}
01327812026517 Sat Jan 28 23:40:26 EST 2012 jacomecha[tid:11] <INFO>: [ 568] bytes: 12500992 | delta: 115341000 nsec | Bps: 108382899 | wps: 13547862 {LinkedBlockingQueue}
01327812026628 Sat Jan 28 23:40:26 EST 2012 jacomecha[tid:11] <INFO>: [ 569] bytes: 12500992 | delta: 111234000 nsec | Bps: 112384631 | wps: 14048079 {LinkedBlockingQueue}
01327812026736 Sat Jan 28 23:40:26 EST 2012 jacomecha[tid:11] <INFO>: [ 570] bytes: 12500992 | delta: 106025000 nsec | Bps: 117906079 | wps: 14738260 {LinkedBlockingQueue}
01327812026848 Sat Jan 28 23:40:26 EST 2012 jacomecha[tid:11] <INFO>: [ 571] bytes: 12500992 | delta: 111425000 nsec | Bps: 112191986 | wps: 14023998 {LinkedBlockingQueue}
01327812026956 Sat Jan 28 23:40:26 EST 2012 jacomecha[tid:11] <INFO>: [ 572] bytes: 12500992 | delta: 107854000 nsec | Bps: 115906614 | wps: 14488327 {LinkedBlockingQueue}
01327812027063 Sat Jan 28 23:40:27 EST 2012 jacomecha[tid:11] <INFO>: [ 573] bytes: 12500992 | delta: 106046000 nsec | Bps: 117882730 | wps: 14735341 {LinkedBlockingQueue}
01327812027173 Sat Jan 28 23:40:27 EST 2012 jacomecha[tid:11] <INFO>: [ 574] bytes: 12500992 | delta: 110478000 nsec | Bps: 113153678 | wps: 14144210 {LinkedBlockingQueue}
01327812027285 Sat Jan 28 23:40:27 EST 2012 jacomecha[tid:11] <INFO>: [ 575] bytes: 12500992 | delta: 111148000 nsec | Bps: 112471587 | wps: 14058948 {LinkedBlockingQueue}
01327812027396 Sat Jan 28 23:40:27 EST 2012 jacomecha[tid:11] <INFO>: [ 576] bytes: 12500992 | delta: 110458000 nsec | Bps: 113174166 | wps: 14146771 {LinkedBlockingQueue}
01327812027505 Sat Jan 28 23:40:27 EST 2012 jacomecha[tid:11] <INFO>: [ 577] bytes: 12500992 | delta: 108152000 nsec | Bps: 115587248 | wps: 14448406 {LinkedBlockingQueue}
01327812027621 Sat Jan 28 23:40:27 EST 2012 jacomecha[tid:11] <INFO>: [ 578] bytes: 12500992 | delta: 115284000 nsec | Bps: 108436487 | wps: 13554561 {LinkedBlockingQueue}
01327812027733 Sat Jan 28 23:40:27 EST 2012 jacomecha[tid:11] <INFO>: [ 579] bytes: 12500992 | delta: 111336000 nsec | Bps: 112281670 | wps: 14035209 {LinkedBlockingQueue}
01327812027862 Sat Jan 28 23:40:27 EST 2012 jacomecha[tid:11] <INFO>: [ 580] bytes: 12500992 | delta: 129263000 nsec | Bps: 96709747 | wps: 12088718 {LinkedBlockingQueue}
01327812027971 Sat Jan 28 23:40:27 EST 2012 jacomecha[tid:11] <INFO>: [ 581] bytes: 12500992 | delta: 108779000 nsec | Bps: 114921005 | wps: 14365126 {LinkedBlockingQueue}
01327812028081 Sat Jan 28 23:40:28 EST 2012 jacomecha[tid:11] <INFO>: [ 582] bytes: 12500992 | delta: 109059000 nsec | Bps: 114625955 | wps: 14328244 {LinkedBlockingQueue}
01327812028192 Sat Jan 28 23:40:28 EST 2012 jacomecha[tid:11] <INFO>: [ 583] bytes: 12500992 | delta: 111007000 nsec | Bps: 112614448 | wps: 14076806 {LinkedBlockingQueue}
01327812028302 Sat Jan 28 23:40:28 EST 2012 jacomecha[tid:11] <INFO>: [ 584] bytes: 12500992 | delta: 109197000 nsec | Bps: 114481094 | wps: 14310137 {LinkedBlockingQueue}
01327812028411 Sat Jan 28 23:40:28 EST 2012 jacomecha[tid:11] <INFO>: [ 585] bytes: 12500992 | delta: 108393000 nsec | Bps: 115330252 | wps: 14416281 {LinkedBlockingQueue}
01327812028522 Sat Jan 28 23:40:28 EST 2012 jacomecha[tid:11] <INFO>: [ 586] bytes: 12500992 | delta: 110695000 nsec | Bps: 112931858 | wps: 14116482 {LinkedBlockingQueue}
01327812028635 Sat Jan 28 23:40:28 EST 2012 jacomecha[tid:11] <INFO>: [ 587] bytes: 12500992 | delta: 112147000 nsec | Bps: 111469696 | wps: 13933712 {LinkedBlockingQueue}
01327812028743 Sat Jan 28 23:40:28 EST 2012 jacomecha[tid:11] <INFO>: [ 588] bytes: 12500992 | delta: 107987000 nsec | Bps: 115763860 | wps: 14470483 {LinkedBlockingQueue}
01327812028853 Sat Jan 28 23:40:28 EST 2012 jacomecha[tid:11] <INFO>: [ 589] bytes: 12500992 | delta: 108936000 nsec | Bps: 114755379 | wps: 14344422 {LinkedBlockingQueue}
01327812028964 Sat Jan 28 23:40:28 EST 2012 jacomecha[tid:11] <INFO>: [ 590] bytes: 12500992 | delta: 110597000 nsec | Bps: 113031927 | wps: 14128991 {LinkedBlockingQueue}
01327812029181 Sat Jan 28 23:40:29 EST 2012 jacomecha[tid:11] <INFO>: [ 591] bytes: 12500992 | delta: 217116000 nsec | Bps: 57577479 | wps: 7197185 {LinkedBlockingQueue}
01327812029294 Sat Jan 28 23:40:29 EST 2012 jacomecha[tid:11] <INFO>: [ 592] bytes: 12500992 | delta: 112101000 nsec | Bps: 111515437 | wps: 13939430 {LinkedBlockingQueue}
01327812029406 Sat Jan 28 23:40:29 EST 2012 jacomecha[tid:11] <INFO>: [ 593] bytes: 12500992 | delta: 112128000 nsec | Bps: 111488584 | wps: 13936073 {LinkedBlockingQueue}
01327812029518 Sat Jan 28 23:40:29 EST 2012 jacomecha[tid:11] <INFO>: [ 594] bytes: 12500992 | delta: 111803000 nsec | Bps: 111812671 | wps: 13976584 {LinkedBlockingQueue}
01327812029633 Sat Jan 28 23:40:29 EST 2012 jacomecha[tid:11] <INFO>: [ 595] bytes: 12500992 | delta: 114535000 nsec | Bps: 109145606 | wps: 13643201 {LinkedBlockingQueue}
01327812029749 Sat Jan 28 23:40:29 EST 2012 jacomecha[tid:11] <INFO>: [ 596] bytes: 12500992 | delta: 115681000 nsec | Bps: 108064349 | wps: 13508044 {LinkedBlockingQueue}
01327812029867 Sat Jan 28 23:40:29 EST 2012 jacomecha[tid:11] <INFO>: [ 597] bytes: 12500992 | delta: 117241000 nsec | Bps: 106626453 | wps: 13328307 {LinkedBlockingQueue}
01327812029976 Sat Jan 28 23:40:29 EST 2012 jacomecha[tid:11] <INFO>: [ 598] bytes: 12500992 | delta: 108482000 nsec | Bps: 115235634 | wps: 14404454 {LinkedBlockingQueue}
01327812030086 Sat Jan 28 23:40:30 EST 2012 jacomecha[tid:11] <INFO>: [ 599] bytes: 12500992 | delta: 109490000 nsec | Bps: 114174737 | wps: 14271842 {LinkedBlockingQueue}
01327812030195 Sat Jan 28 23:40:30 EST 2012 jacomecha[tid:11] <INFO>: [ 600] bytes: 12500992 | delta: 108546000 nsec | Bps: 115167689 | wps: 14395961 {LinkedBlockingQueue}
01327812030306 Sat Jan 28 23:40:30 EST 2012 jacomecha[tid:11] <INFO>: [ 601] bytes: 12500992 | delta: 110654000 nsec | Bps: 112973702 | wps: 14121713 {LinkedBlockingQueue}
01327812030419 Sat Jan 28 23:40:30 EST 2012 jacomecha[tid:11] <INFO>: [ 602] bytes: 12500992 | delta: 112546000 nsec | Bps: 111074512 | wps: 13884314 {LinkedBlockingQueue}
01327812030535 Sat Jan 28 23:40:30 EST 2012 jacomecha[tid:11] <INFO>: [ 603] bytes: 12500992 | delta: 114811000 nsec | Bps: 108883225 | wps: 13610403 {LinkedBlockingQueue}
01327812030643 Sat Jan 28 23:40:30 EST 2012 jacomecha[tid:11] <INFO>: [ 604] bytes: 12500992 | delta: 107695000 nsec | Bps: 116077738 | wps: 14509717 {LinkedBlockingQueue}
01327812030759 Sat Jan 28 23:40:30 EST 2012 jacomecha[tid:11] <INFO>: [ 605] bytes: 12500992 | delta: 115614000 nsec | Bps: 108126974 | wps: 13515872 {LinkedBlockingQueue}
01327812030866 Sat Jan 28 23:40:30 EST 2012 jacomecha[tid:11] <INFO>: [ 606] bytes: 12500992 | delta: 106127000 nsec | Bps: 117792758 | wps: 14724095 {LinkedBlockingQueue}
01327812030981 Sat Jan 28 23:40:30 EST 2012 jacomecha[tid:11] <INFO>: [ 607] bytes: 12500992 | delta: 115002000 nsec | Bps: 108702388 | wps: 13587798 {LinkedBlockingQueue}
01327812031092 Sat Jan 28 23:40:31 EST 2012 jacomecha[tid:11] <INFO>: [ 608] bytes: 12500992 | delta: 110124000 nsec | Bps: 113517417 | wps: 14189677 {LinkedBlockingQueue}
01327812031201 Sat Jan 28 23:40:31 EST 2012 jacomecha[tid:11] <INFO>: [ 609] bytes: 12500992 | delta: 108932000 nsec | Bps: 114759593 | wps: 14344949 {LinkedBlockingQueue}
01327812031314 Sat Jan 28 23:40:31 EST 2012 jacomecha[tid:11] <INFO>: [ 610] bytes: 12500992 | delta: 111839000 nsec | Bps: 111776679 | wps: 13972085 {LinkedBlockingQueue}
01327812031424 Sat Jan 28 23:40:31 EST 2012 jacomecha[tid:11] <INFO>: [ 611] bytes: 12500992 | delta: 109205000 nsec | Bps: 114472707 | wps: 14309088 {LinkedBlockingQueue}
01327812031534 Sat Jan 28 23:40:31 EST 2012 jacomecha[tid:11] <INFO>: [ 612] bytes: 12500992 | delta: 109406000 nsec | Bps: 114262399 | wps: 14282800 {LinkedBlockingQueue}
01327812031646 Sat Jan 28 23:40:31 EST 2012 jacomecha[tid:11] <INFO>: [ 613] bytes: 12500992 | delta: 111081000 nsec | Bps: 112539426 | wps: 14067428 {LinkedBlockingQueue}
01327812031767 Sat Jan 28 23:40:31 EST 2012 jacomecha[tid:11] <INFO>: [ 614] bytes: 12500992 | delta: 118900000 nsec | Bps: 105138705 | wps: 13142338 {LinkedBlockingQueue}
01327812031985 Sat Jan 28 23:40:31 EST 2012 jacomecha[tid:11] <INFO>: [ 615] bytes: 12500992 | delta: 112144000 nsec | Bps: 111472678 | wps: 13934085 {LinkedBlockingQueue}
01327812032096 Sat Jan 28 23:40:32 EST 2012 jacomecha[tid:11] <INFO>: [ 616] bytes: 12500992 | delta: 109243000 nsec | Bps: 114432888 | wps: 14304111 {LinkedBlockingQueue}
01327812032203 Sat Jan 28 23:40:32 EST 2012 jacomecha[tid:11] <INFO>: [ 617] bytes: 12500992 | delta: 107194000 nsec | Bps: 116620259 | wps: 14577532 {LinkedBlockingQueue}
01327812032314 Sat Jan 28 23:40:32 EST 2012 jacomecha[tid:11] <INFO>: [ 618] bytes: 12500992 | delta: 110437000 nsec | Bps: 113195686 | wps: 14149461 {LinkedBlockingQueue}
01327812032426 Sat Jan 28 23:40:32 EST 2012 jacomecha[tid:11] <INFO>: [ 619] bytes: 12500992 | delta: 110912000 nsec | Bps: 112710906 | wps: 14088863 {LinkedBlockingQueue}
01327812032537 Sat Jan 28 23:40:32 EST 2012 jacomecha[tid:11] <INFO>: [ 620] bytes: 12500992 | delta: 110712000 nsec | Bps: 112914517 | wps: 14114315 {LinkedBlockingQueue}
01327812032645 Sat Jan 28 23:40:32 EST 2012 jacomecha[tid:11] <INFO>: [ 621] bytes: 12500992 | delta: 107675000 nsec | Bps: 116099299 | wps: 14512412 {LinkedBlockingQueue}
01327812032757 Sat Jan 28 23:40:32 EST 2012 jacomecha[tid:11] <INFO>: [ 622] bytes: 12500992 | delta: 111402000 nsec | Bps: 112215149 | wps: 14026894 {LinkedBlockingQueue}
01327812032867 Sat Jan 28 23:40:32 EST 2012 jacomecha[tid:11] <INFO>: [ 623] bytes: 12500992 | delta: 109456000 nsec | Bps: 114210203 | wps: 14276275 {LinkedBlockingQueue}
01327812032983 Sat Jan 28 23:40:32 EST 2012 jacomecha[tid:11] <INFO>: [ 624] bytes: 12500992 | delta: 109429000 nsec | Bps: 114238383 | wps: 14279798 {LinkedBlockingQueue}
01327812033092 Sat Jan 28 23:40:33 EST 2012 jacomecha[tid:11] <INFO>: [ 625] bytes: 12500992 | delta: 107907000 nsec | Bps: 115849685 | wps: 14481211 {LinkedBlockingQueue}
01327812033200 Sat Jan 28 23:40:33 EST 2012 jacomecha[tid:11] <INFO>: [ 626] bytes: 12500992 | delta: 107690000 nsec | Bps: 116083127 | wps: 14510391 {LinkedBlockingQueue}
01327812033307 Sat Jan 28 23:40:33 EST 2012 jacomecha[tid:11] <INFO>: [ 627] bytes: 12500992 | delta: 106720000 nsec | Bps: 117138231 | wps: 14642279 {LinkedBlockingQueue}
01327812033419 Sat Jan 28 23:40:33 EST 2012 jacomecha[tid:11] <INFO>: [ 628] bytes: 12500992 | delta: 111119000 nsec | Bps: 112500940 | wps: 14062618 {LinkedBlockingQueue}
01327812033528 Sat Jan 28 23:40:33 EST 2012 jacomecha[tid:11] <INFO>: [ 629] bytes: 12500992 | delta: 107329000 nsec | Bps: 116473572 | wps: 14559196 {LinkedBlockingQueue}
01327812033638 Sat Jan 28 23:40:33 EST 2012 jacomecha[tid:11] <INFO>: [ 630] bytes: 12500992 | delta: 109788000 nsec | Bps: 113864830 | wps: 14233104 {LinkedBlockingQueue}
01327812033760 Sat Jan 28 23:40:33 EST 2012 jacomecha[tid:11] <INFO>: [ 631] bytes: 12500992 | delta: 121417000 nsec | Bps: 102959157 | wps: 12869895 {LinkedBlockingQueue}
01327812033874 Sat Jan 28 23:40:33 EST 2012 jacomecha[tid:11] <INFO>: [ 632] bytes: 12500992 | delta: 113366000 nsec | Bps: 110271087 | wps: 13783886 {LinkedBlockingQueue}
01327812033987 Sat Jan 28 23:40:33 EST 2012 jacomecha[tid:11] <INFO>: [ 633] bytes: 12500992 | delta: 112863000 nsec | Bps: 110762535 | wps: 13845317 {LinkedBlockingQueue}
01327812034093 Sat Jan 28 23:40:34 EST 2012 jacomecha[tid:11] <INFO>: [ 634] bytes: 12500992 | delta: 104783000 nsec | Bps: 119303627 | wps: 14912953 {LinkedBlockingQueue}
01327812034206 Sat Jan 28 23:40:34 EST 2012 jacomecha[tid:11] <INFO>: [ 635] bytes: 12500992 | delta: 112950000 nsec | Bps: 110677220 | wps: 13834653 {LinkedBlockingQueue}
01327812034313 Sat Jan 28 23:40:34 EST 2012 jacomecha[tid:11] <INFO>: [ 636] bytes: 12500992 | delta: 106865000 nsec | Bps: 116979292 | wps: 14622411 {LinkedBlockingQueue}
01327812034426 Sat Jan 28 23:40:34 EST 2012 jacomecha[tid:11] <INFO>: [ 637] bytes: 12500992 | delta: 111054000 nsec | Bps: 112566787 | wps: 14070848 {LinkedBlockingQueue}
01327812034536 Sat Jan 28 23:40:34 EST 2012 jacomecha[tid:11] <INFO>: [ 638] bytes: 12500992 | delta: 110060000 nsec | Bps: 113583427 | wps: 14197928 {LinkedBlockingQueue}
01327812034645 Sat Jan 28 23:40:34 EST 2012 jacomecha[tid:11] <INFO>: [ 639] bytes: 12500992 | delta: 108455000 nsec | Bps: 115264322 | wps: 14408040 {LinkedBlockingQueue}
01327812034887 Sat Jan 28 23:40:34 EST 2012 jacomecha[tid:11] <INFO>: [ 640] bytes: 12500992 | delta: 241649000 nsec | Bps: 51732025 | wps: 6466503 {LinkedBlockingQueue}
01327812034996 Sat Jan 28 23:40:34 EST 2012 jacomecha[tid:11] <INFO>: [ 641] bytes: 12500992 | delta: 108999000 nsec | Bps: 114689052 | wps: 14336132 {LinkedBlockingQueue}
01327812035107 Sat Jan 28 23:40:35 EST 2012 jacomecha[tid:11] <INFO>: [ 642] bytes: 12500992 | delta: 109653000 nsec | Bps: 114005016 | wps: 14250627 {LinkedBlockingQueue}
01327812035215 Sat Jan 28 23:40:35 EST 2012 jacomecha[tid:11] <INFO>: [ 643] bytes: 12500992 | delta: 107970000 nsec | Bps: 115782088 | wps: 14472761 {LinkedBlockingQueue}
01327812035328 Sat Jan 28 23:40:35 EST 2012 jacomecha[tid:11] <INFO>: [ 644] bytes: 12500992 | delta: 112619000 nsec | Bps: 111002513 | wps: 13875314 {LinkedBlockingQueue}
01327812035438 Sat Jan 28 23:40:35 EST 2012 jacomecha[tid:11] <INFO>: [ 645] bytes: 12500992 | delta: 109421000 nsec | Bps: 114246735 | wps: 14280842 {LinkedBlockingQueue}
01327812035549 Sat Jan 28 23:40:35 EST 2012 jacomecha[tid:11] <INFO>: [ 646] bytes: 12500992 | delta: 110458000 nsec | Bps: 113174166 | wps: 14146771 {LinkedBlockingQueue}
01327812035660 Sat Jan 28 23:40:35 EST 2012 jacomecha[tid:11] <INFO>: [ 647] bytes: 12500992 | delta: 110076000 nsec | Bps: 113566917 | wps: 14195865 {LinkedBlockingQueue}
01327812035779 Sat Jan 28 23:40:35 EST 2012 jacomecha[tid:11] <INFO>: [ 648] bytes: 12500992 | delta: 118545000 nsec | Bps: 105453558 | wps: 13181695 {LinkedBlockingQueue}
01327812035896 Sat Jan 28 23:40:35 EST 2012 jacomecha[tid:11] <INFO>: [ 649] bytes: 12500992 | delta: 116460000 nsec | Bps: 107341508 | wps: 13417688 {LinkedBlockingQueue}
01327812036010 Sat Jan 28 23:40:36 EST 2012 jacomecha[tid:11] <INFO>: [ 650] bytes: 12500992 | delta: 113719000 nsec | Bps: 109928789 | wps: 13741099 {LinkedBlockingQueue}
01327812036119 Sat Jan 28 23:40:36 EST 2012 jacomecha[tid:11] <INFO>: [ 651] bytes: 12500992 | delta: 109277000 nsec | Bps: 114397284 | wps: 14299660 {LinkedBlockingQueue}
01327812036229 Sat Jan 28 23:40:36 EST 2012 jacomecha[tid:11] <INFO>: [ 652] bytes: 12500992 | delta: 109215000 nsec | Bps: 114462226 | wps: 14307778 {LinkedBlockingQueue}
01327812036339 Sat Jan 28 23:40:36 EST 2012 jacomecha[tid:11] <INFO>: [ 653] bytes: 12500992 | delta: 109860000 nsec | Bps: 113790206 | wps: 14223776 {LinkedBlockingQueue}
01327812036451 Sat Jan 28 23:40:36 EST 2012 jacomecha[tid:11] <INFO>: [ 654] bytes: 12500992 | delta: 110968000 nsec | Bps: 112654026 | wps: 14081753 {LinkedBlockingQueue}
01327812036561 Sat Jan 28 23:40:36 EST 2012 jacomecha[tid:11] <INFO>: [ 655] bytes: 12500992 | delta: 109541000 nsec | Bps: 114121580 | wps: 14265198 {LinkedBlockingQueue}
01327812036672 Sat Jan 28 23:40:36 EST 2012 jacomecha[tid:11] <INFO>: [ 656] bytes: 12500992 | delta: 111273000 nsec | Bps: 112345241 | wps: 14043155 {LinkedBlockingQueue}
01327812036781 Sat Jan 28 23:40:36 EST 2012 jacomecha[tid:11] <INFO>: [ 657] bytes: 12500992 | delta: 108207000 nsec | Bps: 115528496 | wps: 14441062 {LinkedBlockingQueue}
01327812036891 Sat Jan 28 23:40:36 EST 2012 jacomecha[tid:11] <INFO>: [ 658] bytes: 12500992 | delta: 109012000 nsec | Bps: 114675375 | wps: 14334422 {LinkedBlockingQueue}
01327812037002 Sat Jan 28 23:40:37 EST 2012 jacomecha[tid:11] <INFO>: [ 659] bytes: 12500992 | delta: 110900000 nsec | Bps: 112723102 | wps: 14090388 {LinkedBlockingQueue}
01327812037112 Sat Jan 28 23:40:37 EST 2012 jacomecha[tid:11] <INFO>: [ 660] bytes: 12500992 | delta: 110052000 nsec | Bps: 113591684 | wps: 14198960 {LinkedBlockingQueue}
01327812037225 Sat Jan 28 23:40:37 EST 2012 jacomecha[tid:11] <INFO>: [ 661] bytes: 12500992 | delta: 112067000 nsec | Bps: 111549270 | wps: 13943659 {LinkedBlockingQueue}
01327812037333 Sat Jan 28 23:40:37 EST 2012 jacomecha[tid:11] <INFO>: [ 662] bytes: 12500992 | delta: 107582000 nsec | Bps: 116199662 | wps: 14524958 {LinkedBlockingQueue}
01327812037442 Sat Jan 28 23:40:37 EST 2012 jacomecha[tid:11] <INFO>: [ 663] bytes: 12500992 | delta: 108796000 nsec | Bps: 114903048 | wps: 14362881 {LinkedBlockingQueue}
01327812037553 Sat Jan 28 23:40:37 EST 2012 jacomecha[tid:11] <INFO>: [ 664] bytes: 12500992 | delta: 110127000 nsec | Bps: 113514324 | wps: 14189291 {LinkedBlockingQueue}
01327812037760 Sat Jan 28 23:40:37 EST 2012 jacomecha[tid:11] <INFO>: [ 665] bytes: 12500992 | delta: 207317000 nsec | Bps: 60298924 | wps: 7537365 {LinkedBlockingQueue}
01327812037847 Sat Jan 28 23:40:37 EST 2012 jacomecha[tid:11] <INFO>: [ 666] bytes: 12500992 | delta: 86074000 nsec | Bps: 145235402 | wps: 18154425 {LinkedBlockingQueue}
01327812037959 Sat Jan 28 23:40:37 EST 2012 jacomecha[tid:11] <INFO>: [ 667] bytes: 12500992 | delta: 110326000 nsec | Bps: 113309573 | wps: 14163697 {LinkedBlockingQueue}
01327812038068 Sat Jan 28 23:40:38 EST 2012 jacomecha[tid:11] <INFO>: [ 668] bytes: 12500992 | delta: 109073000 nsec | Bps: 114611242 | wps: 14326405 {LinkedBlockingQueue}
01327812038179 Sat Jan 28 23:40:38 EST 2012 jacomecha[tid:11] <INFO>: [ 669] bytes: 12500992 | delta: 108947000 nsec | Bps: 114743793 | wps: 14342974 {LinkedBlockingQueue}
01327812038286 Sat Jan 28 23:40:38 EST 2012 jacomecha[tid:11] <INFO>: [ 670] bytes: 12500992 | delta: 107091000 nsec | Bps: 116732424 | wps: 14591553 {LinkedBlockingQueue}
01327812038395 Sat Jan 28 23:40:38 EST 2012 jacomecha[tid:11] <INFO>: [ 671] bytes: 12500992 | delta: 108773000 nsec | Bps: 114927344 | wps: 14365918 {LinkedBlockingQueue}
01327812038506 Sat Jan 28 23:40:38 EST 2012 jacomecha[tid:11] <INFO>: [ 672] bytes: 12500992 | delta: 110301000 nsec | Bps: 113335255 | wps: 14166907 {LinkedBlockingQueue}
01327812038616 Sat Jan 28 23:40:38 EST 2012 jacomecha[tid:11] <INFO>: [ 673] bytes: 12500992 | delta: 109802000 nsec | Bps: 113850312 | wps: 14231289 {LinkedBlockingQueue}
01327812038725 Sat Jan 28 23:40:38 EST 2012 jacomecha[tid:11] <INFO>: [ 674] bytes: 12500992 | delta: 107962000 nsec | Bps: 115790667 | wps: 14473833 {LinkedBlockingQueue}
01327812038834 Sat Jan 28 23:40:38 EST 2012 jacomecha[tid:11] <INFO>: [ 675] bytes: 12500992 | delta: 108610000 nsec | Bps: 115099825 | wps: 14387478 {LinkedBlockingQueue}
01327812038947 Sat Jan 28 23:40:38 EST 2012 jacomecha[tid:11] <INFO>: [ 676] bytes: 12500992 | delta: 112755000 nsec | Bps: 110868627 | wps: 13858578 {LinkedBlockingQueue}
01327812039058 Sat Jan 28 23:40:39 EST 2012 jacomecha[tid:11] <INFO>: [ 677] bytes: 12500992 | delta: 110759000 nsec | Bps: 112866602 | wps: 14108325 {LinkedBlockingQueue}
01327812039168 Sat Jan 28 23:40:39 EST 2012 jacomecha[tid:11] <INFO>: [ 678] bytes: 12500992 | delta: 108991000 nsec | Bps: 114697470 | wps: 14337184 {LinkedBlockingQueue}
01327812039278 Sat Jan 28 23:40:39 EST 2012 jacomecha[tid:11] <INFO>: [ 679] bytes: 12500992 | delta: 109470000 nsec | Bps: 114195597 | wps: 14274450 {LinkedBlockingQueue}
01327812039394 Sat Jan 28 23:40:39 EST 2012 jacomecha[tid:11] <INFO>: [ 680] bytes: 12500992 | delta: 115667000 nsec | Bps: 108077429 | wps: 13509679 {LinkedBlockingQueue}
01327812039503 Sat Jan 28 23:40:39 EST 2012 jacomecha[tid:11] <INFO>: [ 681] bytes: 12500992 | delta: 108528000 nsec | Bps: 115186791 | wps: 14398349 {LinkedBlockingQueue}
01327812039614 Sat Jan 28 23:40:39 EST 2012 jacomecha[tid:11] <INFO>: [ 682] bytes: 12500992 | delta: 110413000 nsec | Bps: 113220291 | wps: 14152536 {LinkedBlockingQueue}
01327812039733 Sat Jan 28 23:40:39 EST 2012 jacomecha[tid:11] <INFO>: [ 683] bytes: 12500992 | delta: 118295000 nsec | Bps: 105676419 | wps: 13209552 {LinkedBlockingQueue}
01327812039850 Sat Jan 28 23:40:39 EST 2012 jacomecha[tid:11] <INFO>: [ 684] bytes: 12500992 | delta: 116710000 nsec | Bps: 107111576 | wps: 13388947 {LinkedBlockingQueue}
01327812039967 Sat Jan 28 23:40:39 EST 2012 jacomecha[tid:11] <INFO>: [ 685] bytes: 12500992 | delta: 105920000 nsec | Bps: 118022961 | wps: 14752870 {LinkedBlockingQueue}
01327812040068 Sat Jan 28 23:40:40 EST 2012 jacomecha[tid:11] <INFO>: [ 686] bytes: 12500992 | delta: 100525000 nsec | Bps: 124357046 | wps: 15544631 {LinkedBlockingQueue}
01327812040177 Sat Jan 28 23:40:40 EST 2012 jacomecha[tid:11] <INFO>: [ 687] bytes: 12500992 | delta: 108491000 nsec | Bps: 115226074 | wps: 14403259 {LinkedBlockingQueue}
01327812040288 Sat Jan 28 23:40:40 EST 2012 jacomecha[tid:11] <INFO>: [ 688] bytes: 12500992 | delta: 110814000 nsec | Bps: 112810584 | wps: 14101323 {LinkedBlockingQueue}
01327812040399 Sat Jan 28 23:40:40 EST 2012 jacomecha[tid:11] <INFO>: [ 689] bytes: 12500992 | delta: 111072000 nsec | Bps: 112548545 | wps: 14068568 {LinkedBlockingQueue}
01327812040617 Sat Jan 28 23:40:40 EST 2012 jacomecha[tid:11] <INFO>: [ 690] bytes: 12500992 | delta: 217484000 nsec | Bps: 57480054 | wps: 7185007 {LinkedBlockingQueue}
01327812040727 Sat Jan 28 23:40:40 EST 2012 jacomecha[tid:11] <INFO>: [ 691] bytes: 12500992 | delta: 108844000 nsec | Bps: 114852376 | wps: 14356547 {LinkedBlockingQueue}
01327812040836 Sat Jan 28 23:40:40 EST 2012 jacomecha[tid:11] <INFO>: [ 692] bytes: 12500992 | delta: 108826000 nsec | Bps: 114871373 | wps: 14358922 {LinkedBlockingQueue}
01327812040952 Sat Jan 28 23:40:40 EST 2012 jacomecha[tid:11] <INFO>: [ 693] bytes: 12500992 | delta: 115221000 nsec | Bps: 108495778 | wps: 13561972 {LinkedBlockingQueue}
01327812041061 Sat Jan 28 23:40:41 EST 2012 jacomecha[tid:11] <INFO>: [ 694] bytes: 12500992 | delta: 108616000 nsec | Bps: 115093467 | wps: 14386683 {LinkedBlockingQueue}
01327812041171 Sat Jan 28 23:40:41 EST 2012 jacomecha[tid:11] <INFO>: [ 695] bytes: 12500992 | delta: 108679000 nsec | Bps: 115026748 | wps: 14378344 {LinkedBlockingQueue}
01327812041281 Sat Jan 28 23:40:41 EST 2012 jacomecha[tid:11] <INFO>: [ 696] bytes: 12500992 | delta: 109966000 nsec | Bps: 113680519 | wps: 14210065 {LinkedBlockingQueue}
01327812041391 Sat Jan 28 23:40:41 EST 2012 jacomecha[tid:11] <INFO>: [ 697] bytes: 12500992 | delta: 109156000 nsec | Bps: 114524094 | wps: 14315512 {LinkedBlockingQueue}
01327812041501 Sat Jan 28 23:40:41 EST 2012 jacomecha[tid:11] <INFO>: [ 698] bytes: 12500992 | delta: 109505000 nsec | Bps: 114159098 | wps: 14269887 {LinkedBlockingQueue}
01327812041615 Sat Jan 28 23:40:41 EST 2012 jacomecha[tid:11] <INFO>: [ 699] bytes: 12500992 | delta: 113325000 nsec | Bps: 110310982 | wps: 13788873 {LinkedBlockingQueue}
01327812041730 Sat Jan 28 23:40:41 EST 2012 jacomecha[tid:11] <INFO>: [ 700] bytes: 12500992 | delta: 115073000 nsec | Bps: 108635318 | wps: 13579415 {LinkedBlockingQueue}
01327812041855 Sat Jan 28 23:40:41 EST 2012 jacomecha[tid:11] <INFO>: [ 701] bytes: 12500992 | delta: 124540000 nsec | Bps: 100377325 | wps: 12547166 {LinkedBlockingQueue}
01327812041966 Sat Jan 28 23:40:41 EST 2012 jacomecha[tid:11] <INFO>: [ 702] bytes: 12500992 | delta: 110679000 nsec | Bps: 112948183 | wps: 14118523 {LinkedBlockingQueue}
01327812042075 Sat Jan 28 23:40:42 EST 2012 jacomecha[tid:11] <INFO>: [ 703] bytes: 12500992 | delta: 108346000 nsec | Bps: 115380282 | wps: 14422535 {LinkedBlockingQueue}
01327812042185 Sat Jan 28 23:40:42 EST 2012 jacomecha[tid:11] <INFO>: [ 704] bytes: 12500992 | delta: 109381000 nsec | Bps: 114288514 | wps: 14286064 {LinkedBlockingQueue}
01327812042294 Sat Jan 28 23:40:42 EST 2012 jacomecha[tid:11] <INFO>: [ 705] bytes: 12500992 | delta: 109094000 nsec | Bps: 114589180 | wps: 14323647 {LinkedBlockingQueue}
01327812042403 Sat Jan 28 23:40:42 EST 2012 jacomecha[tid:11] <INFO>: [ 706] bytes: 12500992 | delta: 108136000 nsec | Bps: 115604350 | wps: 14450544 {LinkedBlockingQueue}
01327812042516 Sat Jan 28 23:40:42 EST 2012 jacomecha[tid:11] <INFO>: [ 707] bytes: 12500992 | delta: 112554000 nsec | Bps: 111066617 | wps: 13883327 {LinkedBlockingQueue}
01327812042625 Sat Jan 28 23:40:42 EST 2012 jacomecha[tid:11] <INFO>: [ 708] bytes: 12500992 | delta: 108422000 nsec | Bps: 115299404 | wps: 14412426 {LinkedBlockingQueue}
01327812042736 Sat Jan 28 23:40:42 EST 2012 jacomecha[tid:11] <INFO>: [ 709] bytes: 12500992 | delta: 110765000 nsec | Bps: 112860488 | wps: 14107561 {LinkedBlockingQueue}
01327812042845 Sat Jan 28 23:40:42 EST 2012 jacomecha[tid:11] <INFO>: [ 710] bytes: 12500992 | delta: 108585000 nsec | Bps: 115126325 | wps: 14390791 {LinkedBlockingQueue}
01327812042954 Sat Jan 28 23:40:42 EST 2012 jacomecha[tid:11] <INFO>: [ 711] bytes: 12500992 | delta: 108639000 nsec | Bps: 115069100 | wps: 14383638 {LinkedBlockingQueue}
01327812043063 Sat Jan 28 23:40:43 EST 2012 jacomecha[tid:11] <INFO>: [ 712] bytes: 12500992 | delta: 108744000 nsec | Bps: 114957993 | wps: 14369749 {LinkedBlockingQueue}
01327812043171 Sat Jan 28 23:40:43 EST 2012 jacomecha[tid:11] <INFO>: [ 713] bytes: 12500992 | delta: 107362000 nsec | Bps: 116437771 | wps: 14554721 {LinkedBlockingQueue}
01327812043388 Sat Jan 28 23:40:43 EST 2012 jacomecha[tid:11] <INFO>: [ 714] bytes: 12500992 | delta: 111815000 nsec | Bps: 111800671 | wps: 13975084 {LinkedBlockingQueue}
01327812043496 Sat Jan 28 23:40:43 EST 2012 jacomecha[tid:11] <INFO>: [ 715] bytes: 12500992 | delta: 107143000 nsec | Bps: 116675770 | wps: 14584471 {LinkedBlockingQueue}
01327812043605 Sat Jan 28 23:40:43 EST 2012 jacomecha[tid:11] <INFO>: [ 716] bytes: 12500992 | delta: 108333000 nsec | Bps: 115394127 | wps: 14424266 {LinkedBlockingQueue}
01327812043717 Sat Jan 28 23:40:43 EST 2012 jacomecha[tid:11] <INFO>: [ 717] bytes: 12500992 | delta: 111197000 nsec | Bps: 112422026 | wps: 14052753 {LinkedBlockingQueue}
01327812043866 Sat Jan 28 23:40:43 EST 2012 jacomecha[tid:11] <INFO>: [ 718] bytes: 12500992 | delta: 148637000 nsec | Bps: 84104173 | wps: 10513022 {LinkedBlockingQueue}
01327812043947 Sat Jan 28 23:40:43 EST 2012 jacomecha[tid:11] <INFO>: [ 719] bytes: 12500992 | delta: 80985000 nsec | Bps: 154361820 | wps: 19295228 {LinkedBlockingQueue}
01327812044056 Sat Jan 28 23:40:44 EST 2012 jacomecha[tid:11] <INFO>: [ 720] bytes: 12500992 | delta: 107979000 nsec | Bps: 115772437 | wps: 14471555 {LinkedBlockingQueue}
01327812044166 Sat Jan 28 23:40:44 EST 2012 jacomecha[tid:11] <INFO>: [ 721] bytes: 12500992 | delta: 110019000 nsec | Bps: 113625756 | wps: 14203219 {LinkedBlockingQueue}
01327812044283 Sat Jan 28 23:40:44 EST 2012 jacomecha[tid:11] <INFO>: [ 722] bytes: 12500992 | delta: 116299000 nsec | Bps: 107490107 | wps: 13436263 {LinkedBlockingQueue}
01327812044395 Sat Jan 28 23:40:44 EST 2012 jacomecha[tid:11] <INFO>: [ 723] bytes: 12500992 | delta: 111597000 nsec | Bps: 112019069 | wps: 14002384 {LinkedBlockingQueue}
01327812044509 Sat Jan 28 23:40:44 EST 2012 jacomecha[tid:11] <INFO>: [ 724] bytes: 12500992 | delta: 113528000 nsec | Bps: 110113734 | wps: 13764217 {LinkedBlockingQueue}
01327812044625 Sat Jan 28 23:40:44 EST 2012 jacomecha[tid:11] <INFO>: [ 725] bytes: 12500992 | delta: 114209000 nsec | Bps: 109457153 | wps: 13682144 {LinkedBlockingQueue}
01327812044735 Sat Jan 28 23:40:44 EST 2012 jacomecha[tid:11] <INFO>: [ 726] bytes: 12500992 | delta: 109256000 nsec | Bps: 114419272 | wps: 14302409 {LinkedBlockingQueue}
01327812044847 Sat Jan 28 23:40:44 EST 2012 jacomecha[tid:11] <INFO>: [ 727] bytes: 12500992 | delta: 111172000 nsec | Bps: 112447307 | wps: 14055913 {LinkedBlockingQueue}
01327812044958 Sat Jan 28 23:40:44 EST 2012 jacomecha[tid:11] <INFO>: [ 728] bytes: 12500992 | delta: 110550000 nsec | Bps: 113079982 | wps: 14134998 {LinkedBlockingQueue}
01327812045067 Sat Jan 28 23:40:45 EST 2012 jacomecha[tid:11] <INFO>: [ 729] bytes: 12500992 | delta: 108765000 nsec | Bps: 114935797 | wps: 14366975 {LinkedBlockingQueue}
01327812045178 Sat Jan 28 23:40:45 EST 2012 jacomecha[tid:11] <INFO>: [ 730] bytes: 12500992 | delta: 110406000 nsec | Bps: 113227470 | wps: 14153434 {LinkedBlockingQueue}
01327812045292 Sat Jan 28 23:40:45 EST 2012 jacomecha[tid:11] <INFO>: [ 731] bytes: 12500992 | delta: 114185000 nsec | Bps: 109480159 | wps: 13685020 {LinkedBlockingQueue}
01327812045404 Sat Jan 28 23:40:45 EST 2012 jacomecha[tid:11] <INFO>: [ 732] bytes: 12500992 | delta: 111088000 nsec | Bps: 112532335 | wps: 14066542 {LinkedBlockingQueue}
01327812045517 Sat Jan 28 23:40:45 EST 2012 jacomecha[tid:11] <INFO>: [ 733] bytes: 12500992 | delta: 112540000 nsec | Bps: 111080434 | wps: 13885054 {LinkedBlockingQueue}
01327812045628 Sat Jan 28 23:40:45 EST 2012 jacomecha[tid:11] <INFO>: [ 734] bytes: 12500992 | delta: 110371000 nsec | Bps: 113263375 | wps: 14157922 {LinkedBlockingQueue}
01327812045749 Sat Jan 28 23:40:45 EST 2012 jacomecha[tid:11] <INFO>: [ 735] bytes: 12500992 | delta: 120349000 nsec | Bps: 103872837 | wps: 12984105 {LinkedBlockingQueue}
01327812045870 Sat Jan 28 23:40:45 EST 2012 jacomecha[tid:11] <INFO>: [ 736] bytes: 12500992 | delta: 120907000 nsec | Bps: 103393451 | wps: 12924181 {LinkedBlockingQueue}
01327812045979 Sat Jan 28 23:40:45 EST 2012 jacomecha[tid:11] <INFO>: [ 737] bytes: 12500992 | delta: 108293000 nsec | Bps: 115436750 | wps: 14429594 {LinkedBlockingQueue}
01327812046089 Sat Jan 28 23:40:46 EST 2012 jacomecha[tid:11] <INFO>: [ 738] bytes: 12500992 | delta: 110240000 nsec | Bps: 113397968 | wps: 14174746 {LinkedBlockingQueue}
01327812046331 Sat Jan 28 23:40:46 EST 2012 jacomecha[tid:11] <INFO>: [ 739] bytes: 12500992 | delta: 241201000 nsec | Bps: 51828110 | wps: 6478514 {LinkedBlockingQueue}
01327812046440 Sat Jan 28 23:40:46 EST 2012 jacomecha[tid:11] <INFO>: [ 740] bytes: 12500992 | delta: 108958000 nsec | Bps: 114732209 | wps: 14341526 {LinkedBlockingQueue}
01327812046551 Sat Jan 28 23:40:46 EST 2012 jacomecha[tid:11] <INFO>: [ 741] bytes: 12500992 | delta: 110186000 nsec | Bps: 113453542 | wps: 14181693 {LinkedBlockingQueue}
01327812046662 Sat Jan 28 23:40:46 EST 2012 jacomecha[tid:11] <INFO>: [ 742] bytes: 12500992 | delta: 110747000 nsec | Bps: 112878832 | wps: 14109854 {LinkedBlockingQueue}
01327812046769 Sat Jan 28 23:40:46 EST 2012 jacomecha[tid:11] <INFO>: [ 743] bytes: 12500992 | delta: 106739000 nsec | Bps: 117117380 | wps: 14639672 {LinkedBlockingQueue}
01327812046880 Sat Jan 28 23:40:46 EST 2012 jacomecha[tid:11] <INFO>: [ 744] bytes: 12500992 | delta: 110051000 nsec | Bps: 113592716 | wps: 14199090 {LinkedBlockingQueue}
01327812046992 Sat Jan 28 23:40:46 EST 2012 jacomecha[tid:11] <INFO>: [ 745] bytes: 12500992 | delta: 110313000 nsec | Bps: 113322927 | wps: 14165366 {LinkedBlockingQueue}
01327812047100 Sat Jan 28 23:40:47 EST 2012 jacomecha[tid:11] <INFO>: [ 746] bytes: 12500992 | delta: 107912000 nsec | Bps: 115844318 | wps: 14480540 {LinkedBlockingQueue}
01327812047211 Sat Jan 28 23:40:47 EST 2012 jacomecha[tid:11] <INFO>: [ 747] bytes: 12500992 | delta: 110339000 nsec | Bps: 113296223 | wps: 14162028 {LinkedBlockingQueue}
01327812047320 Sat Jan 28 23:40:47 EST 2012 jacomecha[tid:11] <INFO>: [ 748] bytes: 12500992 | delta: 108159000 nsec | Bps: 115579767 | wps: 14447471 {LinkedBlockingQueue}
01327812047431 Sat Jan 28 23:40:47 EST 2012 jacomecha[tid:11] <INFO>: [ 749] bytes: 12500992 | delta: 110561000 nsec | Bps: 113068731 | wps: 14133591 {LinkedBlockingQueue}
01327812047543 Sat Jan 28 23:40:47 EST 2012 jacomecha[tid:11] <INFO>: [ 750] bytes: 12500992 | delta: 111233000 nsec | Bps: 112385641 | wps: 14048205 {LinkedBlockingQueue}
01327812047652 Sat Jan 28 23:40:47 EST 2012 jacomecha[tid:11] <INFO>: [ 751] bytes: 12500992 | delta: 109016000 nsec | Bps: 114671168 | wps: 14333896 {LinkedBlockingQueue}
01327812047771 Sat Jan 28 23:40:47 EST 2012 jacomecha[tid:11] <INFO>: [ 752] bytes: 12500992 | delta: 118723000 nsec | Bps: 105295452 | wps: 13161932 {LinkedBlockingQueue}
01327812047886 Sat Jan 28 23:40:47 EST 2012 jacomecha[tid:11] <INFO>: [ 753] bytes: 12500992 | delta: 114758000 nsec | Bps: 108933512 | wps: 13616689 {LinkedBlockingQueue}
01327812047996 Sat Jan 28 23:40:47 EST 2012 jacomecha[tid:11] <INFO>: [ 754] bytes: 12500992 | delta: 108939000 nsec | Bps: 114752219 | wps: 14344027 {LinkedBlockingQueue}
01327812048107 Sat Jan 28 23:40:48 EST 2012 jacomecha[tid:11] <INFO>: [ 755] bytes: 12500992 | delta: 110620000 nsec | Bps: 113008425 | wps: 14126053 {LinkedBlockingQueue}
01327812048217 Sat Jan 28 23:40:48 EST 2012 jacomecha[tid:11] <INFO>: [ 756] bytes: 12500992 | delta: 110141000 nsec | Bps: 113499896 | wps: 14187487 {LinkedBlockingQueue}
01327812048331 Sat Jan 28 23:40:48 EST 2012 jacomecha[tid:11] <INFO>: [ 757] bytes: 12500992 | delta: 109702000 nsec | Bps: 113954094 | wps: 14244262 {LinkedBlockingQueue}
01327812048440 Sat Jan 28 23:40:48 EST 2012 jacomecha[tid:11] <INFO>: [ 758] bytes: 12500992 | delta: 108379000 nsec | Bps: 115345150 | wps: 14418144 {LinkedBlockingQueue}
01327812048548 Sat Jan 28 23:40:48 EST 2012 jacomecha[tid:11] <INFO>: [ 759] bytes: 12500992 | delta: 108137000 nsec | Bps: 115603281 | wps: 14450410 {LinkedBlockingQueue}
01327812048657 Sat Jan 28 23:40:48 EST 2012 jacomecha[tid:11] <INFO>: [ 760] bytes: 12500992 | delta: 108840000 nsec | Bps: 114856597 | wps: 14357075 {LinkedBlockingQueue}
01327812048770 Sat Jan 28 23:40:48 EST 2012 jacomecha[tid:11] <INFO>: [ 761] bytes: 12500992 | delta: 111287000 nsec | Bps: 112331108 | wps: 14041388 {LinkedBlockingQueue}
01327812048881 Sat Jan 28 23:40:48 EST 2012 jacomecha[tid:11] <INFO>: [ 762] bytes: 12500992 | delta: 111077000 nsec | Bps: 112543479 | wps: 14067935 {LinkedBlockingQueue}
01327812048997 Sat Jan 28 23:40:48 EST 2012 jacomecha[tid:11] <INFO>: [ 763] bytes: 12500992 | delta: 115114000 nsec | Bps: 108596626 | wps: 13574578 {LinkedBlockingQueue}
01327812049173 Sat Jan 28 23:40:49 EST 2012 jacomecha[tid:11] <INFO>: [ 764] bytes: 12500992 | delta: 175835000 nsec | Bps: 71095015 | wps: 8886877 {LinkedBlockingQueue}
01327812049282 Sat Jan 28 23:40:49 EST 2012 jacomecha[tid:11] <INFO>: [ 765] bytes: 12500992 | delta: 107847000 nsec | Bps: 115914138 | wps: 14489267 {LinkedBlockingQueue}
01327812049391 Sat Jan 28 23:40:49 EST 2012 jacomecha[tid:11] <INFO>: [ 766] bytes: 12500992 | delta: 108250000 nsec | Bps: 115482605 | wps: 14435326 {LinkedBlockingQueue}
01327812049502 Sat Jan 28 23:40:49 EST 2012 jacomecha[tid:11] <INFO>: [ 767] bytes: 12500992 | delta: 110719000 nsec | Bps: 112907378 | wps: 14113422 {LinkedBlockingQueue}
01327812049614 Sat Jan 28 23:40:49 EST 2012 jacomecha[tid:11] <INFO>: [ 768] bytes: 12500992 | delta: 111260000 nsec | Bps: 112358368 | wps: 14044796 {LinkedBlockingQueue}
01327812049731 Sat Jan 28 23:40:49 EST 2012 jacomecha[tid:11] <INFO>: [ 769] bytes: 12500992 | delta: 116579000 nsec | Bps: 107231937 | wps: 13403992 {LinkedBlockingQueue}
01327812049865 Sat Jan 28 23:40:49 EST 2012 jacomecha[tid:11] <INFO>: [ 770] bytes: 12500992 | delta: 132998000 nsec | Bps: 93993834 | wps: 11749229 {LinkedBlockingQueue}
01327812049971 Sat Jan 28 23:40:49 EST 2012 jacomecha[tid:11] <INFO>: [ 771] bytes: 12500992 | delta: 106091000 nsec | Bps: 117832729 | wps: 14729091 {LinkedBlockingQueue}
01327812050080 Sat Jan 28 23:40:50 EST 2012 jacomecha[tid:11] <INFO>: [ 772] bytes: 12500992 | delta: 108581000 nsec | Bps: 115130566 | wps: 14391321 {LinkedBlockingQueue}
01327812050192 Sat Jan 28 23:40:50 EST 2012 jacomecha[tid:11] <INFO>: [ 773] bytes: 12500992 | delta: 111700000 nsec | Bps: 111915774 | wps: 13989472 {LinkedBlockingQueue}
01327812050301 Sat Jan 28 23:40:50 EST 2012 jacomecha[tid:11] <INFO>: [ 774] bytes: 12500992 | delta: 108550000 nsec | Bps: 115163445 | wps: 14395431 {LinkedBlockingQueue}
01327812050413 Sat Jan 28 23:40:50 EST 2012 jacomecha[tid:11] <INFO>: [ 775] bytes: 12500992 | delta: 110747000 nsec | Bps: 112878832 | wps: 14109854 {LinkedBlockingQueue}
01327812050523 Sat Jan 28 23:40:50 EST 2012 jacomecha[tid:11] <INFO>: [ 776] bytes: 12500992 | delta: 110014000 nsec | Bps: 113630920 | wps: 14203865 {LinkedBlockingQueue}
01327812050635 Sat Jan 28 23:40:50 EST 2012 jacomecha[tid:11] <INFO>: [ 777] bytes: 12500992 | delta: 111527000 nsec | Bps: 112089377 | wps: 14011172 {LinkedBlockingQueue}
01327812050748 Sat Jan 28 23:40:50 EST 2012 jacomecha[tid:11] <INFO>: [ 778] bytes: 12500992 | delta: 112270000 nsec | Bps: 111347573 | wps: 13918447 {LinkedBlockingQueue}
01327812050861 Sat Jan 28 23:40:50 EST 2012 jacomecha[tid:11] <INFO>: [ 779] bytes: 12500992 | delta: 112562000 nsec | Bps: 111058723 | wps: 13882340 {LinkedBlockingQueue}
01327812050971 Sat Jan 28 23:40:50 EST 2012 jacomecha[tid:11] <INFO>: [ 780] bytes: 12500992 | delta: 109502000 nsec | Bps: 114162225 | wps: 14270278 {LinkedBlockingQueue}
01327812051084 Sat Jan 28 23:40:51 EST 2012 jacomecha[tid:11] <INFO>: [ 781] bytes: 12500992 | delta: 112528000 nsec | Bps: 111092279 | wps: 13886535 {LinkedBlockingQueue}
01327812051192 Sat Jan 28 23:40:51 EST 2012 jacomecha[tid:11] <INFO>: [ 782] bytes: 12500992 | delta: 107756000 nsec | Bps: 116012027 | wps: 14501503 {LinkedBlockingQueue}
01327812051300 Sat Jan 28 23:40:51 EST 2012 jacomecha[tid:11] <INFO>: [ 783] bytes: 12500992 | delta: 107503000 nsec | Bps: 116285053 | wps: 14535632 {LinkedBlockingQueue}
01327812051409 Sat Jan 28 23:40:51 EST 2012 jacomecha[tid:11] <INFO>: [ 784] bytes: 12500992 | delta: 108910000 nsec | Bps: 114782775 | wps: 14347847 {LinkedBlockingQueue}
01327812051520 Sat Jan 28 23:40:51 EST 2012 jacomecha[tid:11] <INFO>: [ 785] bytes: 12500992 | delta: 110720000 nsec | Bps: 112906358 | wps: 14113295 {LinkedBlockingQueue}
01327812051633 Sat Jan 28 23:40:51 EST 2012 jacomecha[tid:11] <INFO>: [ 786] bytes: 12500992 | delta: 108080000 nsec | Bps: 115664249 | wps: 14458031 {LinkedBlockingQueue}
01327812051757 Sat Jan 28 23:40:51 EST 2012 jacomecha[tid:11] <INFO>: [ 787] bytes: 12500992 | delta: 123706000 nsec | Bps: 101054047 | wps: 12631756 {LinkedBlockingQueue}
01327812051882 Sat Jan 28 23:40:51 EST 2012 jacomecha[tid:11] <INFO>: [ 788] bytes: 12500992 | delta: 124143000 nsec | Bps: 100698324 | wps: 12587290 {LinkedBlockingQueue}
01327812052097 Sat Jan 28 23:40:52 EST 2012 jacomecha[tid:11] <INFO>: [ 789] bytes: 12500992 | delta: 214827000 nsec | Bps: 58190972 | wps: 7273872 {LinkedBlockingQueue}
01327812052206 Sat Jan 28 23:40:52 EST 2012 jacomecha[tid:11] <INFO>: [ 790] bytes: 12500992 | delta: 108790000 nsec | Bps: 114909385 | wps: 14363673 {LinkedBlockingQueue}
01327812052324 Sat Jan 28 23:40:52 EST 2012 jacomecha[tid:11] <INFO>: [ 791] bytes: 12500992 | delta: 113184000 nsec | Bps: 110448403 | wps: 13806050 {LinkedBlockingQueue}
01327812052430 Sat Jan 28 23:40:52 EST 2012 jacomecha[tid:11] <INFO>: [ 792] bytes: 12500992 | delta: 105907000 nsec | Bps: 118037448 | wps: 14754681 {LinkedBlockingQueue}
01327812052540 Sat Jan 28 23:40:52 EST 2012 jacomecha[tid:11] <INFO>: [ 793] bytes: 12500992 | delta: 109041000 nsec | Bps: 114644877 | wps: 14330610 {LinkedBlockingQueue}
01327812052652 Sat Jan 28 23:40:52 EST 2012 jacomecha[tid:11] <INFO>: [ 794] bytes: 12500992 | delta: 111600000 nsec | Bps: 112016057 | wps: 14002007 {LinkedBlockingQueue}
01327812052761 Sat Jan 28 23:40:52 EST 2012 jacomecha[tid:11] <INFO>: [ 795] bytes: 12500992 | delta: 108845000 nsec | Bps: 114851321 | wps: 14356415 {LinkedBlockingQueue}
01327812052871 Sat Jan 28 23:40:52 EST 2012 jacomecha[tid:11] <INFO>: [ 796] bytes: 12500992 | delta: 109026000 nsec | Bps: 114660650 | wps: 14332581 {LinkedBlockingQueue}
01327812052979 Sat Jan 28 23:40:52 EST 2012 jacomecha[tid:11] <INFO>: [ 797] bytes: 12500992 | delta: 107850000 nsec | Bps: 115910913 | wps: 14488864 {LinkedBlockingQueue}
01327812053090 Sat Jan 28 23:40:53 EST 2012 jacomecha[tid:11] <INFO>: [ 798] bytes: 12500992 | delta: 110182000 nsec | Bps: 113457661 | wps: 14182208 {LinkedBlockingQueue}
01327812053205 Sat Jan 28 23:40:53 EST 2012 jacomecha[tid:11] <INFO>: [ 799] bytes: 12500992 | delta: 115214000 nsec | Bps: 108502370 | wps: 13562796 {LinkedBlockingQueue}
01327812053312 Sat Jan 28 23:40:53 EST 2012 jacomecha[tid:11] <INFO>: [ 800] bytes: 12500992 | delta: 106245000 nsec | Bps: 117661932 | wps: 14707742 {LinkedBlockingQueue}
01327812053422 Sat Jan 28 23:40:53 EST 2012 jacomecha[tid:11] <INFO>: [ 801] bytes: 12500992 | delta: 109283000 nsec | Bps: 114391003 | wps: 14298875 {LinkedBlockingQueue}
01327812053532 Sat Jan 28 23:40:53 EST 2012 jacomecha[tid:11] <INFO>: [ 802] bytes: 12500992 | delta: 110028000 nsec | Bps: 113616461 | wps: 14202058 {LinkedBlockingQueue}
01327812053645 Sat Jan 28 23:40:53 EST 2012 jacomecha[tid:11] <INFO>: [ 803] bytes: 12500992 | delta: 112782000 nsec | Bps: 110842085 | wps: 13855261 {LinkedBlockingQueue}
01327812053764 Sat Jan 28 23:40:53 EST 2012 jacomecha[tid:11] <INFO>: [ 804] bytes: 12500992 | delta: 117896000 nsec | Bps: 106034064 | wps: 13254258 {LinkedBlockingQueue}
01327812053897 Sat Jan 28 23:40:53 EST 2012 jacomecha[tid:11] <INFO>: [ 805] bytes: 12500992 | delta: 133191000 nsec | Bps: 93857633 | wps: 11732204 {LinkedBlockingQueue}
01327812054004 Sat Jan 28 23:40:54 EST 2012 jacomecha[tid:11] <INFO>: [ 806] bytes: 12500992 | delta: 105936000 nsec | Bps: 118005135 | wps: 14750642 {LinkedBlockingQueue}
01327812054114 Sat Jan 28 23:40:54 EST 2012 jacomecha[tid:11] <INFO>: [ 807] bytes: 12500992 | delta: 109482000 nsec | Bps: 114183080 | wps: 14272885 {LinkedBlockingQueue}
01327812054228 Sat Jan 28 23:40:54 EST 2012 jacomecha[tid:11] <INFO>: [ 808] bytes: 12500992 | delta: 113475000 nsec | Bps: 110165164 | wps: 13770646 {LinkedBlockingQueue}
01327812054335 Sat Jan 28 23:40:54 EST 2012 jacomecha[tid:11] <INFO>: [ 809] bytes: 12500992 | delta: 106702000 nsec | Bps: 117157991 | wps: 14644749 {LinkedBlockingQueue}
01327812054462 Sat Jan 28 23:40:54 EST 2012 jacomecha[tid:11] <INFO>: [ 810] bytes: 12500992 | delta: 127030000 nsec | Bps: 98409761 | wps: 12301220 {LinkedBlockingQueue}
01327812054616 Sat Jan 28 23:40:54 EST 2012 jacomecha[tid:11] <INFO>: [ 811] bytes: 12500992 | delta: 153747000 nsec | Bps: 81308852 | wps: 10163606 {LinkedBlockingQueue}
01327812054727 Sat Jan 28 23:40:54 EST 2012 jacomecha[tid:11] <INFO>: [ 812] bytes: 12500992 | delta: 110345000 nsec | Bps: 113290063 | wps: 14161258 {LinkedBlockingQueue}
01327812054838 Sat Jan 28 23:40:54 EST 2012 jacomecha[tid:11] <INFO>: [ 813] bytes: 12500992 | delta: 110370000 nsec | Bps: 113264402 | wps: 14158050 {LinkedBlockingQueue}
01327812055059 Sat Jan 28 23:40:55 EST 2012 jacomecha[tid:11] <INFO>: [ 814] bytes: 12500992 | delta: 220112000 nsec | Bps: 56793778 | wps: 7099222 {LinkedBlockingQueue}
01327812055167 Sat Jan 28 23:40:55 EST 2012 jacomecha[tid:11] <INFO>: [ 815] bytes: 12500992 | delta: 107988000 nsec | Bps: 115762788 | wps: 14470349 {LinkedBlockingQueue}
01327812055276 Sat Jan 28 23:40:55 EST 2012 jacomecha[tid:11] <INFO>: [ 816] bytes: 12500992 | delta: 108355000 nsec | Bps: 115370698 | wps: 14421337 {LinkedBlockingQueue}
01327812055385 Sat Jan 28 23:40:55 EST 2012 jacomecha[tid:11] <INFO>: [ 817] bytes: 12500992 | delta: 109360000 nsec | Bps: 114310461 | wps: 14288808 {LinkedBlockingQueue}
01327812055498 Sat Jan 28 23:40:55 EST 2012 jacomecha[tid:11] <INFO>: [ 818] bytes: 12500992 | delta: 111838000 nsec | Bps: 111777678 | wps: 13972210 {LinkedBlockingQueue}
01327812055608 Sat Jan 28 23:40:55 EST 2012 jacomecha[tid:11] <INFO>: [ 819] bytes: 12500992 | delta: 109209000 nsec | Bps: 114468514 | wps: 14308564 {LinkedBlockingQueue}
01327812055717 Sat Jan 28 23:40:55 EST 2012 jacomecha[tid:11] <INFO>: [ 820] bytes: 12500992 | delta: 109494000 nsec | Bps: 114170566 | wps: 14271321 {LinkedBlockingQueue}
01327812055832 Sat Jan 28 23:40:55 EST 2012 jacomecha[tid:11] <INFO>: [ 821] bytes: 12500992 | delta: 114433000 nsec | Bps: 109242893 | wps: 13655362 {LinkedBlockingQueue}
01327812055946 Sat Jan 28 23:40:55 EST 2012 jacomecha[tid:11] <INFO>: [ 822] bytes: 12500992 | delta: 113640000 nsec | Bps: 110005209 | wps: 13750651 {LinkedBlockingQueue}
01327812056065 Sat Jan 28 23:40:56 EST 2012 jacomecha[tid:11] <INFO>: [ 823] bytes: 12500992 | delta: 116442000 nsec | Bps: 107358101 | wps: 13419763 {LinkedBlockingQueue}
01327812056174 Sat Jan 28 23:40:56 EST 2012 jacomecha[tid:11] <INFO>: [ 824] bytes: 12500992 | delta: 108982000 nsec | Bps: 114706942 | wps: 14338368 {LinkedBlockingQueue}
01327812056285 Sat Jan 28 23:40:56 EST 2012 jacomecha[tid:11] <INFO>: [ 825] bytes: 12500992 | delta: 110350000 nsec | Bps: 113284930 | wps: 14160616 {LinkedBlockingQueue}
01327812056395 Sat Jan 28 23:40:56 EST 2012 jacomecha[tid:11] <INFO>: [ 826] bytes: 12500992 | delta: 109538000 nsec | Bps: 114124706 | wps: 14265588 {LinkedBlockingQueue}
01327812056506 Sat Jan 28 23:40:56 EST 2012 jacomecha[tid:11] <INFO>: [ 827] bytes: 12500992 | delta: 110237000 nsec | Bps: 113401054 | wps: 14175132 {LinkedBlockingQueue}
01327812056620 Sat Jan 28 23:40:56 EST 2012 jacomecha[tid:11] <INFO>: [ 828] bytes: 12500992 | delta: 113635000 nsec | Bps: 110010050 | wps: 13751256 {LinkedBlockingQueue}
01327812056731 Sat Jan 28 23:40:56 EST 2012 jacomecha[tid:11] <INFO>: [ 829] bytes: 12500992 | delta: 110776000 nsec | Bps: 112849281 | wps: 14106160 {LinkedBlockingQueue}
01327812056840 Sat Jan 28 23:40:56 EST 2012 jacomecha[tid:11] <INFO>: [ 830] bytes: 12500992 | delta: 108609000 nsec | Bps: 115100885 | wps: 14387611 {LinkedBlockingQueue}
01327812056955 Sat Jan 28 23:40:56 EST 2012 jacomecha[tid:11] <INFO>: [ 831] bytes: 12500992 | delta: 115200000 nsec | Bps: 108515556 | wps: 13564444 {LinkedBlockingQueue}
01327812057063 Sat Jan 28 23:40:57 EST 2012 jacomecha[tid:11] <INFO>: [ 832] bytes: 12500992 | delta: 106798000 nsec | Bps: 117052679 | wps: 14631585 {LinkedBlockingQueue}
01327812057171 Sat Jan 28 23:40:57 EST 2012 jacomecha[tid:11] <INFO>: [ 833] bytes: 12500992 | delta: 107003000 nsec | Bps: 116828425 | wps: 14603553 {LinkedBlockingQueue}
01327812057283 Sat Jan 28 23:40:57 EST 2012 jacomecha[tid:11] <INFO>: [ 834] bytes: 12500992 | delta: 111321000 nsec | Bps: 112296799 | wps: 14037100 {LinkedBlockingQueue}
01327812057394 Sat Jan 28 23:40:57 EST 2012 jacomecha[tid:11] <INFO>: [ 835] bytes: 12500992 | delta: 109974000 nsec | Bps: 113672250 | wps: 14209031 {LinkedBlockingQueue}
01327812057504 Sat Jan 28 23:40:57 EST 2012 jacomecha[tid:11] <INFO>: [ 836] bytes: 12500992 | delta: 110377000 nsec | Bps: 113257218 | wps: 14157152 {LinkedBlockingQueue}
01327812057619 Sat Jan 28 23:40:57 EST 2012 jacomecha[tid:11] <INFO>: [ 837] bytes: 12500992 | delta: 114162000 nsec | Bps: 109502216 | wps: 13687777 {LinkedBlockingQueue}
01327812057741 Sat Jan 28 23:40:57 EST 2012 jacomecha[tid:11] <INFO>: [ 838] bytes: 12500992 | delta: 122032000 nsec | Bps: 102440278 | wps: 12805035 {LinkedBlockingQueue}
01327812057994 Sat Jan 28 23:40:57 EST 2012 jacomecha[tid:11] <INFO>: [ 839] bytes: 12500992 | delta: 252801000 nsec | Bps: 49449931 | wps: 6181241 {LinkedBlockingQueue}
01327812058103 Sat Jan 28 23:40:58 EST 2012 jacomecha[tid:11] <INFO>: [ 840] bytes: 12500992 | delta: 107785000 nsec | Bps: 115980814 | wps: 14497602 {LinkedBlockingQueue}
01327812058214 Sat Jan 28 23:40:58 EST 2012 jacomecha[tid:11] <INFO>: [ 841] bytes: 12500992 | delta: 110821000 nsec | Bps: 112803458 | wps: 14100432 {LinkedBlockingQueue}
01327812058322 Sat Jan 28 23:40:58 EST 2012 jacomecha[tid:11] <INFO>: [ 842] bytes: 12500992 | delta: 107627000 nsec | Bps: 116151077 | wps: 14518885 {LinkedBlockingQueue}
01327812058429 Sat Jan 28 23:40:58 EST 2012 jacomecha[tid:11] <INFO>: [ 843] bytes: 12500992 | delta: 107019000 nsec | Bps: 116810959 | wps: 14601370 {LinkedBlockingQueue}
01327812058539 Sat Jan 28 23:40:58 EST 2012 jacomecha[tid:11] <INFO>: [ 844] bytes: 12500992 | delta: 108960000 nsec | Bps: 114730103 | wps: 14341263 {LinkedBlockingQueue}
01327812058654 Sat Jan 28 23:40:58 EST 2012 jacomecha[tid:11] <INFO>: [ 845] bytes: 12500992 | delta: 109711000 nsec | Bps: 113944746 | wps: 14243093 {LinkedBlockingQueue}
01327812058762 Sat Jan 28 23:40:58 EST 2012 jacomecha[tid:11] <INFO>: [ 846] bytes: 12500992 | delta: 107189000 nsec | Bps: 116625699 | wps: 14578212 {LinkedBlockingQueue}
01327812058870 Sat Jan 28 23:40:58 EST 2012 jacomecha[tid:11] <INFO>: [ 847] bytes: 12500992 | delta: 107637000 nsec | Bps: 116140286 | wps: 14517536 {LinkedBlockingQueue}
01327812058980 Sat Jan 28 23:40:58 EST 2012 jacomecha[tid:11] <INFO>: [ 848] bytes: 12500992 | delta: 109752000 nsec | Bps: 113902179 | wps: 14237772 {LinkedBlockingQueue}
01327812059090 Sat Jan 28 23:40:59 EST 2012 jacomecha[tid:11] <INFO>: [ 849] bytes: 12500992 | delta: 109605000 nsec | Bps: 114054943 | wps: 14256868 {LinkedBlockingQueue}
01327812059199 Sat Jan 28 23:40:59 EST 2012 jacomecha[tid:11] <INFO>: [ 850] bytes: 12500992 | delta: 108369000 nsec | Bps: 115355794 | wps: 14419474 {LinkedBlockingQueue}
01327812059309 Sat Jan 28 23:40:59 EST 2012 jacomecha[tid:11] <INFO>: [ 851] bytes: 12500992 | delta: 108762000 nsec | Bps: 114938968 | wps: 14367371 {LinkedBlockingQueue}
01327812059420 Sat Jan 28 23:40:59 EST 2012 jacomecha[tid:11] <INFO>: [ 852] bytes: 12500992 | delta: 110225000 nsec | Bps: 113413400 | wps: 14176675 {LinkedBlockingQueue}
01327812059530 Sat Jan 28 23:40:59 EST 2012 jacomecha[tid:11] <INFO>: [ 853] bytes: 12500992 | delta: 109224000 nsec | Bps: 114452794 | wps: 14306599 {LinkedBlockingQueue}
01327812059646 Sat Jan 28 23:40:59 EST 2012 jacomecha[tid:11] <INFO>: [ 854] bytes: 12500992 | delta: 116139000 nsec | Bps: 107638192 | wps: 13454774 {LinkedBlockingQueue}
01327812059767 Sat Jan 28 23:40:59 EST 2012 jacomecha[tid:11] <INFO>: [ 855] bytes: 12500992 | delta: 120262000 nsec | Bps: 103947980 | wps: 12993498 {LinkedBlockingQueue}
01327812059888 Sat Jan 28 23:40:59 EST 2012 jacomecha[tid:11] <INFO>: [ 856] bytes: 12500992 | delta: 121416000 nsec | Bps: 102960005 | wps: 12870001 {LinkedBlockingQueue}
01327812060002 Sat Jan 28 23:41:00 EST 2012 jacomecha[tid:11] <INFO>: [ 857] bytes: 12500992 | delta: 112089000 nsec | Bps: 111527376 | wps: 13940922 {LinkedBlockingQueue}
01327812060111 Sat Jan 28 23:41:00 EST 2012 jacomecha[tid:11] <INFO>: [ 858] bytes: 12500992 | delta: 107920000 nsec | Bps: 115835730 | wps: 14479466 {LinkedBlockingQueue}
01327812060231 Sat Jan 28 23:41:00 EST 2012 jacomecha[tid:11] <INFO>: [ 859] bytes: 12500992 | delta: 118697000 nsec | Bps: 105318517 | wps: 13164815 {LinkedBlockingQueue}
01327812060341 Sat Jan 28 23:41:00 EST 2012 jacomecha[tid:11] <INFO>: [ 860] bytes: 12500992 | delta: 109278000 nsec | Bps: 114396237 | wps: 14299530 {LinkedBlockingQueue}
01327812060449 Sat Jan 28 23:41:00 EST 2012 jacomecha[tid:11] <INFO>: [ 861] bytes: 12500992 | delta: 107909000 nsec | Bps: 115847538 | wps: 14480942 {LinkedBlockingQueue}
01327812060558 Sat Jan 28 23:41:00 EST 2012 jacomecha[tid:11] <INFO>: [ 862] bytes: 12500992 | delta: 108288000 nsec | Bps: 115442080 | wps: 14430260 {LinkedBlockingQueue}
01327812060668 Sat Jan 28 23:41:00 EST 2012 jacomecha[tid:11] <INFO>: [ 863] bytes: 12500992 | delta: 110272000 nsec | Bps: 113365061 | wps: 14170633 {LinkedBlockingQueue}
01327812060850 Sat Jan 28 23:41:00 EST 2012 jacomecha[tid:11] <INFO>: [ 864] bytes: 12500992 | delta: 181394000 nsec | Bps: 68916238 | wps: 8614530 {LinkedBlockingQueue}
01327812060960 Sat Jan 28 23:41:00 EST 2012 jacomecha[tid:11] <INFO>: [ 865] bytes: 12500992 | delta: 109019000 nsec | Bps: 114668012 | wps: 14333501 {LinkedBlockingQueue}
01327812061071 Sat Jan 28 23:41:01 EST 2012 jacomecha[tid:11] <INFO>: [ 866] bytes: 12500992 | delta: 110959000 nsec | Bps: 112663164 | wps: 14082895 {LinkedBlockingQueue}
01327812061181 Sat Jan 28 23:41:01 EST 2012 jacomecha[tid:11] <INFO>: [ 867] bytes: 12500992 | delta: 110076000 nsec | Bps: 113566917 | wps: 14195865 {LinkedBlockingQueue}
01327812061297 Sat Jan 28 23:41:01 EST 2012 jacomecha[tid:11] <INFO>: [ 868] bytes: 12500992 | delta: 115069000 nsec | Bps: 108639095 | wps: 13579887 {LinkedBlockingQueue}
01327812061408 Sat Jan 28 23:41:01 EST 2012 jacomecha[tid:11] <INFO>: [ 869] bytes: 12500992 | delta: 110330000 nsec | Bps: 113305465 | wps: 14163183 {LinkedBlockingQueue}
01327812061517 Sat Jan 28 23:41:01 EST 2012 jacomecha[tid:11] <INFO>: [ 870] bytes: 12500992 | delta: 108993000 nsec | Bps: 114695366 | wps: 14336921 {LinkedBlockingQueue}
01327812061627 Sat Jan 28 23:41:01 EST 2012 jacomecha[tid:11] <INFO>: [ 871] bytes: 12500992 | delta: 109111000 nsec | Bps: 114571326 | wps: 14321416 {LinkedBlockingQueue}
01327812061765 Sat Jan 28 23:41:01 EST 2012 jacomecha[tid:11] <INFO>: [ 872] bytes: 12500992 | delta: 117662000 nsec | Bps: 106244939 | wps: 13280617 {LinkedBlockingQueue}
01327812061860 Sat Jan 28 23:41:01 EST 2012 jacomecha[tid:11] <INFO>: [ 873] bytes: 12500992 | delta: 94649000 nsec | Bps: 132077381 | wps: 16509673 {LinkedBlockingQueue}
01327812061977 Sat Jan 28 23:41:01 EST 2012 jacomecha[tid:11] <INFO>: [ 874] bytes: 12500992 | delta: 116752000 nsec | Bps: 107073044 | wps: 13384130 {LinkedBlockingQueue}
01327812062081 Sat Jan 28 23:41:02 EST 2012 jacomecha[tid:11] <INFO>: [ 875] bytes: 12500992 | delta: 103000000 nsec | Bps: 121368854 | wps: 15171107 {LinkedBlockingQueue}
01327812062193 Sat Jan 28 23:41:02 EST 2012 jacomecha[tid:11] <INFO>: [ 876] bytes: 12500992 | delta: 112194000 nsec | Bps: 111422999 | wps: 13927875 {LinkedBlockingQueue}
01327812062306 Sat Jan 28 23:41:02 EST 2012 jacomecha[tid:11] <INFO>: [ 877] bytes: 12500992 | delta: 111879000 nsec | Bps: 111736716 | wps: 13967089 {LinkedBlockingQueue}
01327812062416 Sat Jan 28 23:41:02 EST 2012 jacomecha[tid:11] <INFO>: [ 878] bytes: 12500992 | delta: 110231000 nsec | Bps: 113407227 | wps: 14175903 {LinkedBlockingQueue}
01327812062527 Sat Jan 28 23:41:02 EST 2012 jacomecha[tid:11] <INFO>: [ 879] bytes: 12500992 | delta: 109992000 nsec | Bps: 113653648 | wps: 14206706 {LinkedBlockingQueue}
01327812062637 Sat Jan 28 23:41:02 EST 2012 jacomecha[tid:11] <INFO>: [ 880] bytes: 12500992 | delta: 109504000 nsec | Bps: 114160140 | wps: 14270018 {LinkedBlockingQueue}
01327812062748 Sat Jan 28 23:41:02 EST 2012 jacomecha[tid:11] <INFO>: [ 881] bytes: 12500992 | delta: 111087000 nsec | Bps: 112533348 | wps: 14066668 {LinkedBlockingQueue}
01327812062857 Sat Jan 28 23:41:02 EST 2012 jacomecha[tid:11] <INFO>: [ 882] bytes: 12500992 | delta: 109173000 nsec | Bps: 114506261 | wps: 14313283 {LinkedBlockingQueue}
01327812062969 Sat Jan 28 23:41:02 EST 2012 jacomecha[tid:11] <INFO>: [ 883] bytes: 12500992 | delta: 110704000 nsec | Bps: 112922677 | wps: 14115335 {LinkedBlockingQueue}
01327812063077 Sat Jan 28 23:41:03 EST 2012 jacomecha[tid:11] <INFO>: [ 884] bytes: 12500992 | delta: 108392000 nsec | Bps: 115331316 | wps: 14416414 {LinkedBlockingQueue}
01327812063187 Sat Jan 28 23:41:03 EST 2012 jacomecha[tid:11] <INFO>: [ 885] bytes: 12500992 | delta: 108918000 nsec | Bps: 114774344 | wps: 14346793 {LinkedBlockingQueue}
01327812063295 Sat Jan 28 23:41:03 EST 2012 jacomecha[tid:11] <INFO>: [ 886] bytes: 12500992 | delta: 108445000 nsec | Bps: 115274950 | wps: 14409369 {LinkedBlockingQueue}
01327812063406 Sat Jan 28 23:41:03 EST 2012 jacomecha[tid:11] <INFO>: [ 887] bytes: 12500992 | delta: 110619000 nsec | Bps: 113009447 | wps: 14126181 {LinkedBlockingQueue}
01327812063522 Sat Jan 28 23:41:03 EST 2012 jacomecha[tid:11] <INFO>: [ 888] bytes: 12500992 | delta: 114809000 nsec | Bps: 108885122 | wps: 13610640 {LinkedBlockingQueue}
01327812063761 Sat Jan 28 23:41:03 EST 2012 jacomecha[tid:11] <INFO>: [ 889] bytes: 12500992 | delta: 238939000 nsec | Bps: 52318759 | wps: 6539845 {LinkedBlockingQueue}
01327812063873 Sat Jan 28 23:41:03 EST 2012 jacomecha[tid:11] <INFO>: [ 890] bytes: 12500992 | delta: 112124000 nsec | Bps: 111492562 | wps: 13936570 {LinkedBlockingQueue}
01327812063983 Sat Jan 28 23:41:03 EST 2012 jacomecha[tid:11] <INFO>: [ 891] bytes: 12500992 | delta: 108755000 nsec | Bps: 114946366 | wps: 14368296 {LinkedBlockingQueue}
01327812064094 Sat Jan 28 23:41:04 EST 2012 jacomecha[tid:11] <INFO>: [ 892] bytes: 12500992 | delta: 110744000 nsec | Bps: 112881890 | wps: 14110236 {LinkedBlockingQueue}
01327812064201 Sat Jan 28 23:41:04 EST 2012 jacomecha[tid:11] <INFO>: [ 893] bytes: 12500992 | delta: 106820000 nsec | Bps: 117028571 | wps: 14628571 {LinkedBlockingQueue}
01327812064311 Sat Jan 28 23:41:04 EST 2012 jacomecha[tid:11] <INFO>: [ 894] bytes: 12500992 | delta: 109839000 nsec | Bps: 113811961 | wps: 14226495 {LinkedBlockingQueue}
01327812064420 Sat Jan 28 23:41:04 EST 2012 jacomecha[tid:11] <INFO>: [ 895] bytes: 12500992 | delta: 108429000 nsec | Bps: 115291961 | wps: 14411495 {LinkedBlockingQueue}
01327812064528 Sat Jan 28 23:41:04 EST 2012 jacomecha[tid:11] <INFO>: [ 896] bytes: 12500992 | delta: 107917000 nsec | Bps: 115838950 | wps: 14479869 {LinkedBlockingQueue}
01327812064641 Sat Jan 28 23:41:04 EST 2012 jacomecha[tid:11] <INFO>: [ 897] bytes: 12500992 | delta: 112153000 nsec | Bps: 111463733 | wps: 13932967 {LinkedBlockingQueue}
01327812064750 Sat Jan 28 23:41:04 EST 2012 jacomecha[tid:11] <INFO>: [ 898] bytes: 12500992 | delta: 108574000 nsec | Bps: 115137989 | wps: 14392249 {LinkedBlockingQueue}
01327812064861 Sat Jan 28 23:41:04 EST 2012 jacomecha[tid:11] <INFO>: [ 899] bytes: 12500992 | delta: 110428000 nsec | Bps: 113204912 | wps: 14150614 {LinkedBlockingQueue}
01327812064970 Sat Jan 28 23:41:04 EST 2012 jacomecha[tid:11] <INFO>: [ 900] bytes: 12500992 | delta: 108434000 nsec | Bps: 115286644 | wps: 14410831 {LinkedBlockingQueue}
01327812065081 Sat Jan 28 23:41:05 EST 2012 jacomecha[tid:11] <INFO>: [ 901] bytes: 12500992 | delta: 110926000 nsec | Bps: 112696681 | wps: 14087085 {LinkedBlockingQueue}
01327812065192 Sat Jan 28 23:41:05 EST 2012 jacomecha[tid:11] <INFO>: [ 902] bytes: 12500992 | delta: 104501000 nsec | Bps: 119625573 | wps: 14953197 {LinkedBlockingQueue}
01327812065300 Sat Jan 28 23:41:05 EST 2012 jacomecha[tid:11] <INFO>: [ 903] bytes: 12500992 | delta: 107105000 nsec | Bps: 116717165 | wps: 14589646 {LinkedBlockingQueue}
01327812065411 Sat Jan 28 23:41:05 EST 2012 jacomecha[tid:11] <INFO>: [ 904] bytes: 12500992 | delta: 110666000 nsec | Bps: 112961452 | wps: 14120181 {LinkedBlockingQueue}
01327812065519 Sat Jan 28 23:41:05 EST 2012 jacomecha[tid:11] <INFO>: [ 905] bytes: 12500992 | delta: 108158000 nsec | Bps: 115580835 | wps: 14447604 {LinkedBlockingQueue}
01327812065630 Sat Jan 28 23:41:05 EST 2012 jacomecha[tid:11] <INFO>: [ 906] bytes: 12500992 | delta: 110546000 nsec | Bps: 113084074 | wps: 14135509 {LinkedBlockingQueue}
01327812065747 Sat Jan 28 23:41:05 EST 2012 jacomecha[tid:11] <INFO>: [ 907] bytes: 12500992 | delta: 116947000 nsec | Bps: 106894508 | wps: 13361813 {LinkedBlockingQueue}
01327812065879 Sat Jan 28 23:41:05 EST 2012 jacomecha[tid:11] <INFO>: [ 908] bytes: 12500992 | delta: 130860000 nsec | Bps: 95529512 | wps: 11941189 {LinkedBlockingQueue}
01327812065983 Sat Jan 28 23:41:05 EST 2012 jacomecha[tid:11] <INFO>: [ 909] bytes: 12500992 | delta: 104093000 nsec | Bps: 120094454 | wps: 15011807 {LinkedBlockingQueue}
01327812066092 Sat Jan 28 23:41:06 EST 2012 jacomecha[tid:11] <INFO>: [ 910] bytes: 12500992 | delta: 109012000 nsec | Bps: 114675375 | wps: 14334422 {LinkedBlockingQueue}
01327812066201 Sat Jan 28 23:41:06 EST 2012 jacomecha[tid:11] <INFO>: [ 911] bytes: 12500992 | delta: 108716000 nsec | Bps: 114987601 | wps: 14373450 {LinkedBlockingQueue}
01327812066317 Sat Jan 28 23:41:06 EST 2012 jacomecha[tid:11] <INFO>: [ 912] bytes: 12500992 | delta: 115028000 nsec | Bps: 108677818 | wps: 13584727 {LinkedBlockingQueue}
01327812066426 Sat Jan 28 23:41:06 EST 2012 jacomecha[tid:11] <INFO>: [ 913] bytes: 12500992 | delta: 108520000 nsec | Bps: 115195282 | wps: 14399410 {LinkedBlockingQueue}
01327812066644 Sat Jan 28 23:41:06 EST 2012 jacomecha[tid:11] <INFO>: [ 914] bytes: 12500992 | delta: 217429000 nsec | Bps: 57494594 | wps: 7186824 {LinkedBlockingQueue}
01327812066756 Sat Jan 28 23:41:06 EST 2012 jacomecha[tid:11] <INFO>: [ 915] bytes: 12500992 | delta: 112092000 nsec | Bps: 111524391 | wps: 13940549 {LinkedBlockingQueue}
01327812066866 Sat Jan 28 23:41:06 EST 2012 jacomecha[tid:11] <INFO>: [ 916] bytes: 12500992 | delta: 109701000 nsec | Bps: 113955133 | wps: 14244392 {LinkedBlockingQueue}
01327812066974 Sat Jan 28 23:41:06 EST 2012 jacomecha[tid:11] <INFO>: [ 917] bytes: 12500992 | delta: 107844000 nsec | Bps: 115917362 | wps: 14489670 {LinkedBlockingQueue}
01327812067084 Sat Jan 28 23:41:07 EST 2012 jacomecha[tid:11] <INFO>: [ 918] bytes: 12500992 | delta: 109336000 nsec | Bps: 114335553 | wps: 14291944 {LinkedBlockingQueue}
01327812067193 Sat Jan 28 23:41:07 EST 2012 jacomecha[tid:11] <INFO>: [ 919] bytes: 12500992 | delta: 108223000 nsec | Bps: 115511416 | wps: 14438927 {LinkedBlockingQueue}
01327812067302 Sat Jan 28 23:41:07 EST 2012 jacomecha[tid:11] <INFO>: [ 920] bytes: 12500992 | delta: 108344000 nsec | Bps: 115382412 | wps: 14422801 {LinkedBlockingQueue}
01327812067412 Sat Jan 28 23:41:07 EST 2012 jacomecha[tid:11] <INFO>: [ 921] bytes: 12500992 | delta: 109747000 nsec | Bps: 113907369 | wps: 14238421 {LinkedBlockingQueue}
01327812067524 Sat Jan 28 23:41:07 EST 2012 jacomecha[tid:11] <INFO>: [ 922] bytes: 12500992 | delta: 112220000 nsec | Bps: 111397184 | wps: 13924648 {LinkedBlockingQueue}
01327812067633 Sat Jan 28 23:41:07 EST 2012 jacomecha[tid:11] <INFO>: [ 923] bytes: 12500992 | delta: 108446000 nsec | Bps: 115273887 | wps: 14409236 {LinkedBlockingQueue}
01327812067747 Sat Jan 28 23:41:07 EST 2012 jacomecha[tid:11] <INFO>: [ 924] bytes: 12500992 | delta: 113645000 nsec | Bps: 110000370 | wps: 13750046 {LinkedBlockingQueue}
01327812067876 Sat Jan 28 23:41:07 EST 2012 jacomecha[tid:11] <INFO>: [ 925] bytes: 12500992 | delta: 128968000 nsec | Bps: 96930960 | wps: 12116370 {LinkedBlockingQueue}
01327812067975 Sat Jan 28 23:41:07 EST 2012 jacomecha[tid:11] <INFO>: [ 926] bytes: 12500992 | delta: 96434000 nsec | Bps: 129632619 | wps: 16204077 {LinkedBlockingQueue}
01327812068085 Sat Jan 28 23:41:08 EST 2012 jacomecha[tid:11] <INFO>: [ 927] bytes: 12500992 | delta: 109929000 nsec | Bps: 113718782 | wps: 14214848 {LinkedBlockingQueue}
01327812068194 Sat Jan 28 23:41:08 EST 2012 jacomecha[tid:11] <INFO>: [ 928] bytes: 12500992 | delta: 108397000 nsec | Bps: 115325996 | wps: 14415750 {LinkedBlockingQueue}
01327812068305 Sat Jan 28 23:41:08 EST 2012 jacomecha[tid:11] <INFO>: [ 929] bytes: 12500992 | delta: 111008000 nsec | Bps: 112613433 | wps: 14076679 {LinkedBlockingQueue}
01327812068414 Sat Jan 28 23:41:08 EST 2012 jacomecha[tid:11] <INFO>: [ 930] bytes: 12500992 | delta: 108827000 nsec | Bps: 114870317 | wps: 14358790 {LinkedBlockingQueue}
01327812068523 Sat Jan 28 23:41:08 EST 2012 jacomecha[tid:11] <INFO>: [ 931] bytes: 12500992 | delta: 108479000 nsec | Bps: 115238820 | wps: 14404853 {LinkedBlockingQueue}
01327812068632 Sat Jan 28 23:41:08 EST 2012 jacomecha[tid:11] <INFO>: [ 932] bytes: 12500992 | delta: 108338000 nsec | Bps: 115388802 | wps: 14423600 {LinkedBlockingQueue}
01327812068745 Sat Jan 28 23:41:08 EST 2012 jacomecha[tid:11] <INFO>: [ 933] bytes: 12500992 | delta: 113235000 nsec | Bps: 110398658 | wps: 13799832 {LinkedBlockingQueue}
01327812068854 Sat Jan 28 23:41:08 EST 2012 jacomecha[tid:11] <INFO>: [ 934] bytes: 12500992 | delta: 107889000 nsec | Bps: 115869014 | wps: 14483627 {LinkedBlockingQueue}
01327812068964 Sat Jan 28 23:41:08 EST 2012 jacomecha[tid:11] <INFO>: [ 935] bytes: 12500992 | delta: 110115000 nsec | Bps: 113526695 | wps: 14190837 {LinkedBlockingQueue}
01327812069074 Sat Jan 28 23:41:09 EST 2012 jacomecha[tid:11] <INFO>: [ 936] bytes: 12500992 | delta: 108612000 nsec | Bps: 115097706 | wps: 14387213 {LinkedBlockingQueue}
01327812069182 Sat Jan 28 23:41:09 EST 2012 jacomecha[tid:11] <INFO>: [ 937] bytes: 12500992 | delta: 107066000 nsec | Bps: 116759681 | wps: 14594960 {LinkedBlockingQueue}
01327812069291 Sat Jan 28 23:41:09 EST 2012 jacomecha[tid:11] <INFO>: [ 938] bytes: 12500992 | delta: 108929000 nsec | Bps: 114762754 | wps: 14345344 {LinkedBlockingQueue}
01327812069534 Sat Jan 28 23:41:09 EST 2012 jacomecha[tid:11] <INFO>: [ 939] bytes: 12500992 | delta: 243091000 nsec | Bps: 51425154 | wps: 6428144 {LinkedBlockingQueue}
01327812069657 Sat Jan 28 23:41:09 EST 2012 jacomecha[tid:11] <INFO>: [ 940] bytes: 12500992 | delta: 122820000 nsec | Bps: 101783032 | wps: 12722879 {LinkedBlockingQueue}
01327812069778 Sat Jan 28 23:41:09 EST 2012 jacomecha[tid:11] <INFO>: [ 941] bytes: 12500992 | delta: 120199000 nsec | Bps: 104002463 | wps: 13000308 {LinkedBlockingQueue}
01327812069895 Sat Jan 28 23:41:09 EST 2012 jacomecha[tid:11] <INFO>: [ 942] bytes: 12500992 | delta: 116926000 nsec | Bps: 106913706 | wps: 13364213 {LinkedBlockingQueue}
01327812070007 Sat Jan 28 23:41:10 EST 2012 jacomecha[tid:11] <INFO>: [ 943] bytes: 12500992 | delta: 110853000 nsec | Bps: 112770895 | wps: 14096362 {LinkedBlockingQueue}
01327812070116 Sat Jan 28 23:41:10 EST 2012 jacomecha[tid:11] <INFO>: [ 944] bytes: 12500992 | delta: 108538000 nsec | Bps: 115176178 | wps: 14397022 {LinkedBlockingQueue}
01327812070228 Sat Jan 28 23:41:10 EST 2012 jacomecha[tid:11] <INFO>: [ 945] bytes: 12500992 | delta: 111695000 nsec | Bps: 111920784 | wps: 13990098 {LinkedBlockingQueue}
01327812070338 Sat Jan 28 23:41:10 EST 2012 jacomecha[tid:11] <INFO>: [ 946] bytes: 12500992 | delta: 110251000 nsec | Bps: 113386654 | wps: 14173332 {LinkedBlockingQueue}
01327812070453 Sat Jan 28 23:41:10 EST 2012 jacomecha[tid:11] <INFO>: [ 947] bytes: 12500992 | delta: 114367000 nsec | Bps: 109305936 | wps: 13663242 {LinkedBlockingQueue}
01327812070563 Sat Jan 28 23:41:10 EST 2012 jacomecha[tid:11] <INFO>: [ 948] bytes: 12500992 | delta: 109238000 nsec | Bps: 114438126 | wps: 14304766 {LinkedBlockingQueue}
01327812070673 Sat Jan 28 23:41:10 EST 2012 jacomecha[tid:11] <INFO>: [ 949] bytes: 12500992 | delta: 109385000 nsec | Bps: 114284335 | wps: 14285542 {LinkedBlockingQueue}
01327812070783 Sat Jan 28 23:41:10 EST 2012 jacomecha[tid:11] <INFO>: [ 950] bytes: 12500992 | delta: 110097000 nsec | Bps: 113545256 | wps: 14193157 {LinkedBlockingQueue}
01327812070894 Sat Jan 28 23:41:10 EST 2012 jacomecha[tid:11] <INFO>: [ 951] bytes: 12500992 | delta: 110387000 nsec | Bps: 113246958 | wps: 14155870 {LinkedBlockingQueue}
01327812071004 Sat Jan 28 23:41:11 EST 2012 jacomecha[tid:11] <INFO>: [ 952] bytes: 12500992 | delta: 109430000 nsec | Bps: 114237339 | wps: 14279667 {LinkedBlockingQueue}
01327812071113 Sat Jan 28 23:41:11 EST 2012 jacomecha[tid:11] <INFO>: [ 953] bytes: 12500992 | delta: 108961000 nsec | Bps: 114729050 | wps: 14341131 {LinkedBlockingQueue}
01327812071228 Sat Jan 28 23:41:11 EST 2012 jacomecha[tid:11] <INFO>: [ 954] bytes: 12500992 | delta: 114717000 nsec | Bps: 108972445 | wps: 13621556 {LinkedBlockingQueue}
01327812071338 Sat Jan 28 23:41:11 EST 2012 jacomecha[tid:11] <INFO>: [ 955] bytes: 12500992 | delta: 109554000 nsec | Bps: 114108038 | wps: 14263505 {LinkedBlockingQueue}
01327812071449 Sat Jan 28 23:41:11 EST 2012 jacomecha[tid:11] <INFO>: [ 956] bytes: 12500992 | delta: 109958000 nsec | Bps: 113688790 | wps: 14211099 {LinkedBlockingQueue}
01327812071557 Sat Jan 28 23:41:11 EST 2012 jacomecha[tid:11] <INFO>: [ 957] bytes: 12500992 | delta: 108071000 nsec | Bps: 115673881 | wps: 14459235 {LinkedBlockingQueue}
01327812071673 Sat Jan 28 23:41:11 EST 2012 jacomecha[tid:11] <INFO>: [ 958] bytes: 12500992 | delta: 115370000 nsec | Bps: 108355656 | wps: 13544457 {LinkedBlockingQueue}
01327812071790 Sat Jan 28 23:41:11 EST 2012 jacomecha[tid:11] <INFO>: [ 959] bytes: 12500992 | delta: 116827000 nsec | Bps: 107004306 | wps: 13375538 {LinkedBlockingQueue}
01327812071903 Sat Jan 28 23:41:11 EST 2012 jacomecha[tid:11] <INFO>: [ 960] bytes: 12500992 | delta: 112449000 nsec | Bps: 111170326 | wps: 13896291 {LinkedBlockingQueue}
01327812072014 Sat Jan 28 23:41:12 EST 2012 jacomecha[tid:11] <INFO>: [ 961] bytes: 12500992 | delta: 110728000 nsec | Bps: 112898201 | wps: 14112275 {LinkedBlockingQueue}
01327812072124 Sat Jan 28 23:41:12 EST 2012 jacomecha[tid:11] <INFO>: [ 962] bytes: 12500992 | delta: 109596000 nsec | Bps: 114064309 | wps: 14258039 {LinkedBlockingQueue}
01327812072239 Sat Jan 28 23:41:12 EST 2012 jacomecha[tid:11] <INFO>: [ 963] bytes: 12500992 | delta: 114103000 nsec | Bps: 109558837 | wps: 13694855 {LinkedBlockingQueue}
01327812072426 Sat Jan 28 23:41:12 EST 2012 jacomecha[tid:11] <INFO>: [ 964] bytes: 12500992 | delta: 115333000 nsec | Bps: 108390417 | wps: 13548802 {LinkedBlockingQueue}
01327812072533 Sat Jan 28 23:41:12 EST 2012 jacomecha[tid:11] <INFO>: [ 965] bytes: 12500992 | delta: 106431000 nsec | Bps: 117456305 | wps: 14682038 {LinkedBlockingQueue}
01327812072641 Sat Jan 28 23:41:12 EST 2012 jacomecha[tid:11] <INFO>: [ 966] bytes: 12500992 | delta: 108526000 nsec | Bps: 115188913 | wps: 14398614 {LinkedBlockingQueue}
01327812072753 Sat Jan 28 23:41:12 EST 2012 jacomecha[tid:11] <INFO>: [ 967] bytes: 12500992 | delta: 111169000 nsec | Bps: 112450341 | wps: 14056293 {LinkedBlockingQueue}
01327812072864 Sat Jan 28 23:41:12 EST 2012 jacomecha[tid:11] <INFO>: [ 968] bytes: 12500992 | delta: 110534000 nsec | Bps: 113096350 | wps: 14137044 {LinkedBlockingQueue}
01327812072976 Sat Jan 28 23:41:12 EST 2012 jacomecha[tid:11] <INFO>: [ 969] bytes: 12500992 | delta: 110838000 nsec | Bps: 112786156 | wps: 14098270 {LinkedBlockingQueue}
01327812073085 Sat Jan 28 23:41:13 EST 2012 jacomecha[tid:11] <INFO>: [ 970] bytes: 12500992 | delta: 108773000 nsec | Bps: 114927344 | wps: 14365918 {LinkedBlockingQueue}
01327812073192 Sat Jan 28 23:41:13 EST 2012 jacomecha[tid:11] <INFO>: [ 971] bytes: 12500992 | delta: 106892000 nsec | Bps: 116949744 | wps: 14618718 {LinkedBlockingQueue}
01327812073302 Sat Jan 28 23:41:13 EST 2012 jacomecha[tid:11] <INFO>: [ 972] bytes: 12500992 | delta: 109253000 nsec | Bps: 114422414 | wps: 14302802 {LinkedBlockingQueue}
01327812073416 Sat Jan 28 23:41:13 EST 2012 jacomecha[tid:11] <INFO>: [ 973] bytes: 12500992 | delta: 113296000 nsec | Bps: 110339218 | wps: 13792402 {LinkedBlockingQueue}
01327812073526 Sat Jan 28 23:41:13 EST 2012 jacomecha[tid:11] <INFO>: [ 974] bytes: 12500992 | delta: 110326000 nsec | Bps: 113309573 | wps: 14163697 {LinkedBlockingQueue}
01327812073635 Sat Jan 28 23:41:13 EST 2012 jacomecha[tid:11] <INFO>: [ 975] bytes: 12500992 | delta: 108210000 nsec | Bps: 115525293 | wps: 14440662 {LinkedBlockingQueue}
01327812073758 Sat Jan 28 23:41:13 EST 2012 jacomecha[tid:11] <INFO>: [ 976] bytes: 12500992 | delta: 122973000 nsec | Bps: 101656396 | wps: 12707050 {LinkedBlockingQueue}
01327812073881 Sat Jan 28 23:41:13 EST 2012 jacomecha[tid:11] <INFO>: [ 977] bytes: 12500992 | delta: 122084000 nsec | Bps: 102396645 | wps: 12799581 {LinkedBlockingQueue}
01327812073990 Sat Jan 28 23:41:13 EST 2012 jacomecha[tid:11] <INFO>: [ 978] bytes: 12500992 | delta: 108470000 nsec | Bps: 115248382 | wps: 14406048 {LinkedBlockingQueue}
01327812074099 Sat Jan 28 23:41:14 EST 2012 jacomecha[tid:11] <INFO>: [ 979] bytes: 12500992 | delta: 109428000 nsec | Bps: 114239427 | wps: 14279928 {LinkedBlockingQueue}
01327812074209 Sat Jan 28 23:41:14 EST 2012 jacomecha[tid:11] <INFO>: [ 980] bytes: 12500992 | delta: 108841000 nsec | Bps: 114855542 | wps: 14356943 {LinkedBlockingQueue}
01327812074320 Sat Jan 28 23:41:14 EST 2012 jacomecha[tid:11] <INFO>: [ 981] bytes: 12500992 | delta: 111029000 nsec | Bps: 112592134 | wps: 14074017 {LinkedBlockingQueue}
01327812074431 Sat Jan 28 23:41:14 EST 2012 jacomecha[tid:11] <INFO>: [ 982] bytes: 12500992 | delta: 110258000 nsec | Bps: 113379455 | wps: 14172432 {LinkedBlockingQueue}
01327812074540 Sat Jan 28 23:41:14 EST 2012 jacomecha[tid:11] <INFO>: [ 983] bytes: 12500992 | delta: 109193000 nsec | Bps: 114485288 | wps: 14310661 {LinkedBlockingQueue}
01327812074661 Sat Jan 28 23:41:14 EST 2012 jacomecha[tid:11] <INFO>: [ 984] bytes: 12500992 | delta: 119864000 nsec | Bps: 104293132 | wps: 13036642 {LinkedBlockingQueue}
01327812074774 Sat Jan 28 23:41:14 EST 2012 jacomecha[tid:11] <INFO>: [ 985] bytes: 12500992 | delta: 112769000 nsec | Bps: 110854863 | wps: 13856858 {LinkedBlockingQueue}
01327812074885 Sat Jan 28 23:41:14 EST 2012 jacomecha[tid:11] <INFO>: [ 986] bytes: 12500992 | delta: 110917000 nsec | Bps: 112705825 | wps: 14088228 {LinkedBlockingQueue}
01327812074995 Sat Jan 28 23:41:14 EST 2012 jacomecha[tid:11] <INFO>: [ 987] bytes: 12500992 | delta: 109898000 nsec | Bps: 113750860 | wps: 14218857 {LinkedBlockingQueue}
01327812075105 Sat Jan 28 23:41:15 EST 2012 jacomecha[tid:11] <INFO>: [ 988] bytes: 12500992 | delta: 109035000 nsec | Bps: 114651185 | wps: 14331398 {LinkedBlockingQueue}
01327812075324 Sat Jan 28 23:41:15 EST 2012 jacomecha[tid:11] <INFO>: [ 989] bytes: 12500992 | delta: 108017000 nsec | Bps: 115731709 | wps: 14466464 {LinkedBlockingQueue}
01327812075434 Sat Jan 28 23:41:15 EST 2012 jacomecha[tid:11] <INFO>: [ 990] bytes: 12500992 | delta: 109569000 nsec | Bps: 114092417 | wps: 14261552 {LinkedBlockingQueue}
01327812075542 Sat Jan 28 23:41:15 EST 2012 jacomecha[tid:11] <INFO>: [ 991] bytes: 12500992 | delta: 107972000 nsec | Bps: 115779943 | wps: 14472493 {LinkedBlockingQueue}
01327812075655 Sat Jan 28 23:41:15 EST 2012 jacomecha[tid:11] <INFO>: [ 992] bytes: 12500992 | delta: 112060000 nsec | Bps: 111556238 | wps: 13944530 {LinkedBlockingQueue}
01327812075787 Sat Jan 28 23:41:15 EST 2012 jacomecha[tid:11] <INFO>: [ 993] bytes: 12500992 | delta: 132349000 nsec | Bps: 94454752 | wps: 11806844 {LinkedBlockingQueue}
01327812075910 Sat Jan 28 23:41:15 EST 2012 jacomecha[tid:11] <INFO>: [ 994] bytes: 12500992 | delta: 122613000 nsec | Bps: 101954866 | wps: 12744358 {LinkedBlockingQueue}
01327812076020 Sat Jan 28 23:41:16 EST 2012 jacomecha[tid:11] <INFO>: [ 995] bytes: 12500992 | delta: 101957000 nsec | Bps: 122610434 | wps: 15326304 {LinkedBlockingQueue}
01327812076131 Sat Jan 28 23:41:16 EST 2012 jacomecha[tid:11] <INFO>: [ 996] bytes: 12500992 | delta: 110211000 nsec | Bps: 113427807 | wps: 14178476 {LinkedBlockingQueue}
01327812076240 Sat Jan 28 23:41:16 EST 2012 jacomecha[tid:11] <INFO>: [ 997] bytes: 12500992 | delta: 109017000 nsec | Bps: 114670116 | wps: 14333764 {LinkedBlockingQueue}
01327812076355 Sat Jan 28 23:41:16 EST 2012 jacomecha[tid:11] <INFO>: [ 998] bytes: 12500992 | delta: 114135000 nsec | Bps: 109528120 | wps: 13691015 {LinkedBlockingQueue}
01327812076462 Sat Jan 28 23:41:16 EST 2012 jacomecha[tid:11] <INFO>: [ 999] bytes: 12500992 | delta: 107134000 nsec | Bps: 116685571 | wps: 14585696 {LinkedBlockingQueue}
01327812076574 Sat Jan 28 23:41:16 EST 2012 jacomecha[tid:11] <INFO>: [ 1000] bytes: 12500992 | delta: 111588000 nsec | Bps: 112028103 | wps: 14003513 {LinkedBlockingQueue}
01327812076574 Sat Jan 28 23:41:16 EST 2012 jacomecha[tid:11] <INFO>: ---
01327812076575 Sat Jan 28 23:41:16 EST 2012 jacomecha[tid:11] <INFO>: consumer stopping for summation
01327812076575 Sat Jan 28 23:41:16 EST 2012 jacomecha[tid:11] <INFO>: ---
01327812076575 Sat Jan 28 23:41:16 EST 2012 jacomecha[tid:11] <INFO>: [ TOTAL] bytes: 12500992000 | delta:115914855000 nsec | Bps: 107846333 | wps: 13480792 {LinkedBlockingQueue}
////////////////// CLQ //////////////////
01327811845144 Sat Jan 28 23:37:25 EST 2012 jacomecha[tid:11] <INFO>: [ 530] bytes: 12500992 | delta: 111929000 nsec | Bps: 111686801 | wps: 13960850 {ConcurrentLinkedQueue}
01327811845254 Sat Jan 28 23:37:25 EST 2012 jacomecha[tid:11] <INFO>: [ 531] bytes: 12500992 | delta: 110262000 nsec | Bps: 113375342 | wps: 14171918 {ConcurrentLinkedQueue}
01327811845369 Sat Jan 28 23:37:25 EST 2012 jacomecha[tid:11] <INFO>: [ 532] bytes: 12500992 | delta: 104696000 nsec | Bps: 119402766 | wps: 14925346 {ConcurrentLinkedQueue}
01327811845478 Sat Jan 28 23:37:25 EST 2012 jacomecha[tid:11] <INFO>: [ 533] bytes: 12500992 | delta: 108442000 nsec | Bps: 115278139 | wps: 14409767 {ConcurrentLinkedQueue}
01327811845589 Sat Jan 28 23:37:25 EST 2012 jacomecha[tid:11] <INFO>: [ 534] bytes: 12500992 | delta: 110271000 nsec | Bps: 113366089 | wps: 14170761 {ConcurrentLinkedQueue}
01327811845781 Sat Jan 28 23:37:25 EST 2012 jacomecha[tid:11] <INFO>: [ 535] bytes: 12500992 | delta: 116834000 nsec | Bps: 106997894 | wps: 13374737 {ConcurrentLinkedQueue}
01327811845888 Sat Jan 28 23:37:25 EST 2012 jacomecha[tid:11] <INFO>: [ 536] bytes: 12500992 | delta: 107336000 nsec | Bps: 116465976 | wps: 14558247 {ConcurrentLinkedQueue}
01327811845997 Sat Jan 28 23:37:25 EST 2012 jacomecha[tid:11] <INFO>: [ 537] bytes: 12500992 | delta: 108332000 nsec | Bps: 115395193 | wps: 14424399 {ConcurrentLinkedQueue}
01327811846112 Sat Jan 28 23:37:26 EST 2012 jacomecha[tid:11] <INFO>: [ 538] bytes: 12500992 | delta: 114372000 nsec | Bps: 109301158 | wps: 13662645 {ConcurrentLinkedQueue}
01327811846225 Sat Jan 28 23:37:26 EST 2012 jacomecha[tid:11] <INFO>: [ 539] bytes: 12500992 | delta: 112679000 nsec | Bps: 110943406 | wps: 13867926 {ConcurrentLinkedQueue}
01327811846333 Sat Jan 28 23:37:26 EST 2012 jacomecha[tid:11] <INFO>: [ 540] bytes: 12500992 | delta: 107094000 nsec | Bps: 116729154 | wps: 14591144 {ConcurrentLinkedQueue}
01327811846441 Sat Jan 28 23:37:26 EST 2012 jacomecha[tid:11] <INFO>: [ 541] bytes: 12500992 | delta: 107234000 nsec | Bps: 116576757 | wps: 14572095 {ConcurrentLinkedQueue}
01327811846549 Sat Jan 28 23:37:26 EST 2012 jacomecha[tid:11] <INFO>: [ 542] bytes: 12500992 | delta: 108473000 nsec | Bps: 115245195 | wps: 14405649 {ConcurrentLinkedQueue}
01327811846662 Sat Jan 28 23:37:26 EST 2012 jacomecha[tid:11] <INFO>: [ 543] bytes: 12500992 | delta: 112336000 nsec | Bps: 111282154 | wps: 13910269 {ConcurrentLinkedQueue}
01327811846771 Sat Jan 28 23:37:26 EST 2012 jacomecha[tid:11] <INFO>: [ 544] bytes: 12500992 | delta: 108468000 nsec | Bps: 115250507 | wps: 14406313 {ConcurrentLinkedQueue}
01327811846881 Sat Jan 28 23:37:26 EST 2012 jacomecha[tid:11] <INFO>: [ 545] bytes: 12500992 | delta: 109886000 nsec | Bps: 113763282 | wps: 14220410 {ConcurrentLinkedQueue}
01327811846993 Sat Jan 28 23:37:26 EST 2012 jacomecha[tid:11] <INFO>: [ 546] bytes: 12500992 | delta: 110723000 nsec | Bps: 112903299 | wps: 14112912 {ConcurrentLinkedQueue}
01327811847101 Sat Jan 28 23:37:27 EST 2012 jacomecha[tid:11] <INFO>: [ 547] bytes: 12500992 | delta: 108072000 nsec | Bps: 115672811 | wps: 14459101 {ConcurrentLinkedQueue}
01327811847212 Sat Jan 28 23:37:27 EST 2012 jacomecha[tid:11] <INFO>: [ 548] bytes: 12500992 | delta: 109938000 nsec | Bps: 113709473 | wps: 14213684 {ConcurrentLinkedQueue}
01327811847320 Sat Jan 28 23:37:27 EST 2012 jacomecha[tid:11] <INFO>: [ 549] bytes: 12500992 | delta: 107733000 nsec | Bps: 116036795 | wps: 14504599 {ConcurrentLinkedQueue}
01327811847430 Sat Jan 28 23:37:27 EST 2012 jacomecha[tid:11] <INFO>: [ 550] bytes: 12500992 | delta: 109544000 nsec | Bps: 114118455 | wps: 14264807 {ConcurrentLinkedQueue}
01327811847541 Sat Jan 28 23:37:27 EST 2012 jacomecha[tid:11] <INFO>: [ 551] bytes: 12500992 | delta: 111297000 nsec | Bps: 112321015 | wps: 14040127 {ConcurrentLinkedQueue}
01327811847663 Sat Jan 28 23:37:27 EST 2012 jacomecha[tid:11] <INFO>: [ 552] bytes: 12500992 | delta: 120756000 nsec | Bps: 103522740 | wps: 12940343 {ConcurrentLinkedQueue}
01327811847786 Sat Jan 28 23:37:27 EST 2012 jacomecha[tid:11] <INFO>: [ 553] bytes: 12500992 | delta: 121505000 nsec | Bps: 102884589 | wps: 12860574 {ConcurrentLinkedQueue}
01327811847894 Sat Jan 28 23:37:27 EST 2012 jacomecha[tid:11] <INFO>: [ 554] bytes: 12500992 | delta: 107827000 nsec | Bps: 115935638 | wps: 14491955 {ConcurrentLinkedQueue}
01327811848003 Sat Jan 28 23:37:28 EST 2012 jacomecha[tid:11] <INFO>: [ 555] bytes: 12500992 | delta: 108725000 nsec | Bps: 114978082 | wps: 14372260 {ConcurrentLinkedQueue}
01327811848112 Sat Jan 28 23:37:28 EST 2012 jacomecha[tid:11] <INFO>: [ 556] bytes: 12500992 | delta: 108299000 nsec | Bps: 115430355 | wps: 14428794 {ConcurrentLinkedQueue}
01327811848224 Sat Jan 28 23:37:28 EST 2012 jacomecha[tid:11] <INFO>: [ 557] bytes: 12500992 | delta: 112105000 nsec | Bps: 111511458 | wps: 13938932 {ConcurrentLinkedQueue}
01327811848336 Sat Jan 28 23:37:28 EST 2012 jacomecha[tid:11] <INFO>: [ 558] bytes: 12500992 | delta: 111293000 nsec | Bps: 112325052 | wps: 14040631 {ConcurrentLinkedQueue}
01327811848445 Sat Jan 28 23:37:28 EST 2012 jacomecha[tid:11] <INFO>: [ 559] bytes: 12500992 | delta: 108284000 nsec | Bps: 115446345 | wps: 14430793 {ConcurrentLinkedQueue}
01327811848657 Sat Jan 28 23:37:28 EST 2012 jacomecha[tid:11] <INFO>: [ 560] bytes: 12500992 | delta: 211274000 nsec | Bps: 59169571 | wps: 7396196 {ConcurrentLinkedQueue}
01327811848768 Sat Jan 28 23:37:28 EST 2012 jacomecha[tid:11] <INFO>: [ 561] bytes: 12500992 | delta: 110386000 nsec | Bps: 113247984 | wps: 14155998 {ConcurrentLinkedQueue}
01327811848881 Sat Jan 28 23:37:28 EST 2012 jacomecha[tid:11] <INFO>: [ 562] bytes: 12500992 | delta: 110123000 nsec | Bps: 113518448 | wps: 14189806 {ConcurrentLinkedQueue}
01327811848991 Sat Jan 28 23:37:28 EST 2012 jacomecha[tid:11] <INFO>: [ 563] bytes: 12500992 | delta: 109554000 nsec | Bps: 114108038 | wps: 14263505 {ConcurrentLinkedQueue}
01327811849101 Sat Jan 28 23:37:29 EST 2012 jacomecha[tid:11] <INFO>: [ 564] bytes: 12500992 | delta: 109073000 nsec | Bps: 114611242 | wps: 14326405 {ConcurrentLinkedQueue}
01327811849212 Sat Jan 28 23:37:29 EST 2012 jacomecha[tid:11] <INFO>: [ 565] bytes: 12500992 | delta: 110356000 nsec | Bps: 113278771 | wps: 14159846 {ConcurrentLinkedQueue}
01327811849322 Sat Jan 28 23:37:29 EST 2012 jacomecha[tid:11] <INFO>: [ 566] bytes: 12500992 | delta: 107697000 nsec | Bps: 116075582 | wps: 14509448 {ConcurrentLinkedQueue}
01327811849432 Sat Jan 28 23:37:29 EST 2012 jacomecha[tid:11] <INFO>: [ 567] bytes: 12500992 | delta: 108855000 nsec | Bps: 114840770 | wps: 14355096 {ConcurrentLinkedQueue}
01327811849543 Sat Jan 28 23:37:29 EST 2012 jacomecha[tid:11] <INFO>: [ 568] bytes: 12500992 | delta: 110538000 nsec | Bps: 113092258 | wps: 14136532 {ConcurrentLinkedQueue}
01327811849663 Sat Jan 28 23:37:29 EST 2012 jacomecha[tid:11] <INFO>: [ 569] bytes: 12500992 | delta: 120173000 nsec | Bps: 104024964 | wps: 13003121 {ConcurrentLinkedQueue}
01327811849783 Sat Jan 28 23:37:29 EST 2012 jacomecha[tid:11] <INFO>: [ 570] bytes: 12500992 | delta: 119092000 nsec | Bps: 104969200 | wps: 13121150 {ConcurrentLinkedQueue}
01327811849892 Sat Jan 28 23:37:29 EST 2012 jacomecha[tid:11] <INFO>: [ 571] bytes: 12500992 | delta: 108377000 nsec | Bps: 115347278 | wps: 14418410 {ConcurrentLinkedQueue}
01327811850000 Sat Jan 28 23:37:30 EST 2012 jacomecha[tid:11] <INFO>: [ 572] bytes: 12500992 | delta: 107547000 nsec | Bps: 116237478 | wps: 14529685 {ConcurrentLinkedQueue}
01327811850109 Sat Jan 28 23:37:30 EST 2012 jacomecha[tid:11] <INFO>: [ 573] bytes: 12500992 | delta: 108620000 nsec | Bps: 115089229 | wps: 14386154 {ConcurrentLinkedQueue}
01327811850218 Sat Jan 28 23:37:30 EST 2012 jacomecha[tid:11] <INFO>: [ 574] bytes: 12500992 | delta: 109013000 nsec | Bps: 114674323 | wps: 14334290 {ConcurrentLinkedQueue}
01327811850327 Sat Jan 28 23:37:30 EST 2012 jacomecha[tid:11] <INFO>: [ 575] bytes: 12500992 | delta: 107979000 nsec | Bps: 115772437 | wps: 14471555 {ConcurrentLinkedQueue}
01327811850437 Sat Jan 28 23:37:30 EST 2012 jacomecha[tid:11] <INFO>: [ 576] bytes: 12500992 | delta: 109378000 nsec | Bps: 114291649 | wps: 14286456 {ConcurrentLinkedQueue}
01327811850546 Sat Jan 28 23:37:30 EST 2012 jacomecha[tid:11] <INFO>: [ 577] bytes: 12500992 | delta: 108693000 nsec | Bps: 115011933 | wps: 14376492 {ConcurrentLinkedQueue}
01327811850654 Sat Jan 28 23:37:30 EST 2012 jacomecha[tid:11] <INFO>: [ 578] bytes: 12500992 | delta: 107436000 nsec | Bps: 116357571 | wps: 14544696 {ConcurrentLinkedQueue}
01327811850768 Sat Jan 28 23:37:30 EST 2012 jacomecha[tid:11] <INFO>: [ 579] bytes: 12500992 | delta: 113693000 nsec | Bps: 109953929 | wps: 13744241 {ConcurrentLinkedQueue}
01327811850879 Sat Jan 28 23:37:30 EST 2012 jacomecha[tid:11] <INFO>: [ 580] bytes: 12500992 | delta: 111304000 nsec | Bps: 112313951 | wps: 14039244 {ConcurrentLinkedQueue}
01327811850987 Sat Jan 28 23:37:30 EST 2012 jacomecha[tid:11] <INFO>: [ 581] bytes: 12500992 | delta: 107671000 nsec | Bps: 116103612 | wps: 14512951 {ConcurrentLinkedQueue}
01327811851096 Sat Jan 28 23:37:31 EST 2012 jacomecha[tid:11] <INFO>: [ 582] bytes: 12500992 | delta: 108204000 nsec | Bps: 115531699 | wps: 14441462 {ConcurrentLinkedQueue}
01327811851204 Sat Jan 28 23:37:31 EST 2012 jacomecha[tid:11] <INFO>: [ 583] bytes: 12500992 | delta: 107582000 nsec | Bps: 116199662 | wps: 14524958 {ConcurrentLinkedQueue}
01327811851313 Sat Jan 28 23:37:31 EST 2012 jacomecha[tid:11] <INFO>: [ 584] bytes: 12500992 | delta: 108900000 nsec | Bps: 114793315 | wps: 14349164 {ConcurrentLinkedQueue}
01327811851529 Sat Jan 28 23:37:31 EST 2012 jacomecha[tid:11] <INFO>: [ 585] bytes: 12500992 | delta: 214533000 nsec | Bps: 58270718 | wps: 7283840 {ConcurrentLinkedQueue}
01327811851658 Sat Jan 28 23:37:31 EST 2012 jacomecha[tid:11] <INFO>: [ 586] bytes: 12500992 | delta: 129314000 nsec | Bps: 96671606 | wps: 12083951 {ConcurrentLinkedQueue}
01327811851777 Sat Jan 28 23:37:31 EST 2012 jacomecha[tid:11] <INFO>: [ 587] bytes: 12500992 | delta: 118626000 nsec | Bps: 105381552 | wps: 13172694 {ConcurrentLinkedQueue}
01327811851883 Sat Jan 28 23:37:31 EST 2012 jacomecha[tid:11] <INFO>: [ 588] bytes: 12500992 | delta: 105305000 nsec | Bps: 118712236 | wps: 14839029 {ConcurrentLinkedQueue}
01327811851995 Sat Jan 28 23:37:31 EST 2012 jacomecha[tid:11] <INFO>: [ 589] bytes: 12500992 | delta: 111475000 nsec | Bps: 112141664 | wps: 14017708 {ConcurrentLinkedQueue}
01327811852104 Sat Jan 28 23:37:32 EST 2012 jacomecha[tid:11] <INFO>: [ 590] bytes: 12500992 | delta: 108597000 nsec | Bps: 115113604 | wps: 14389200 {ConcurrentLinkedQueue}
01327811852213 Sat Jan 28 23:37:32 EST 2012 jacomecha[tid:11] <INFO>: [ 591] bytes: 12500992 | delta: 108583000 nsec | Bps: 115128446 | wps: 14391056 {ConcurrentLinkedQueue}
01327811852324 Sat Jan 28 23:37:32 EST 2012 jacomecha[tid:11] <INFO>: [ 592] bytes: 12500992 | delta: 110579000 nsec | Bps: 113050326 | wps: 14131291 {ConcurrentLinkedQueue}
01327811852432 Sat Jan 28 23:37:32 EST 2012 jacomecha[tid:11] <INFO>: [ 593] bytes: 12500992 | delta: 108083000 nsec | Bps: 115661038 | wps: 14457630 {ConcurrentLinkedQueue}
01327811852541 Sat Jan 28 23:37:32 EST 2012 jacomecha[tid:11] <INFO>: [ 594] bytes: 12500992 | delta: 108098000 nsec | Bps: 115644989 | wps: 14455624 {ConcurrentLinkedQueue}
01327811852653 Sat Jan 28 23:37:32 EST 2012 jacomecha[tid:11] <INFO>: [ 595] bytes: 12500992 | delta: 111800000 nsec | Bps: 111815671 | wps: 13976959 {ConcurrentLinkedQueue}
01327811852762 Sat Jan 28 23:37:32 EST 2012 jacomecha[tid:11] <INFO>: [ 596] bytes: 12500992 | delta: 108622000 nsec | Bps: 115087109 | wps: 14385889 {ConcurrentLinkedQueue}
01327811852873 Sat Jan 28 23:37:32 EST 2012 jacomecha[tid:11] <INFO>: [ 597] bytes: 12500992 | delta: 110406000 nsec | Bps: 113227470 | wps: 14153434 {ConcurrentLinkedQueue}
01327811852983 Sat Jan 28 23:37:32 EST 2012 jacomecha[tid:11] <INFO>: [ 598] bytes: 12500992 | delta: 109707000 nsec | Bps: 113948900 | wps: 14243613 {ConcurrentLinkedQueue}
01327811853091 Sat Jan 28 23:37:33 EST 2012 jacomecha[tid:11] <INFO>: [ 599] bytes: 12500992 | delta: 107658000 nsec | Bps: 116117632 | wps: 14514704 {ConcurrentLinkedQueue}
01327811853221 Sat Jan 28 23:37:33 EST 2012 jacomecha[tid:11] <INFO>: [ 600] bytes: 12500992 | delta: 129524000 nsec | Bps: 96514870 | wps: 12064359 {ConcurrentLinkedQueue}
01327811853342 Sat Jan 28 23:37:33 EST 2012 jacomecha[tid:11] <INFO>: [ 601] bytes: 12500992 | delta: 120571000 nsec | Bps: 103681582 | wps: 12960198 {ConcurrentLinkedQueue}
01327811853451 Sat Jan 28 23:37:33 EST 2012 jacomecha[tid:11] <INFO>: [ 602] bytes: 12500992 | delta: 108739000 nsec | Bps: 114963279 | wps: 14370410 {ConcurrentLinkedQueue}
01327811853560 Sat Jan 28 23:37:33 EST 2012 jacomecha[tid:11] <INFO>: [ 603] bytes: 12500992 | delta: 107693000 nsec | Bps: 116079894 | wps: 14509987 {ConcurrentLinkedQueue}
01327811853680 Sat Jan 28 23:37:33 EST 2012 jacomecha[tid:11] <INFO>: [ 604] bytes: 12500992 | delta: 120356000 nsec | Bps: 103866795 | wps: 12983349 {ConcurrentLinkedQueue}
01327811853806 Sat Jan 28 23:37:33 EST 2012 jacomecha[tid:11] <INFO>: [ 605] bytes: 12500992 | delta: 124999000 nsec | Bps: 100008736 | wps: 12501092 {ConcurrentLinkedQueue}
01327811853915 Sat Jan 28 23:37:33 EST 2012 jacomecha[tid:11] <INFO>: [ 606] bytes: 12500992 | delta: 108402000 nsec | Bps: 115320677 | wps: 14415085 {ConcurrentLinkedQueue}
01327811854030 Sat Jan 28 23:37:34 EST 2012 jacomecha[tid:11] <INFO>: [ 607] bytes: 12500992 | delta: 114997000 nsec | Bps: 108707114 | wps: 13588389 {ConcurrentLinkedQueue}
01327811854135 Sat Jan 28 23:37:34 EST 2012 jacomecha[tid:11] <INFO>: [ 608] bytes: 12500992 | delta: 104299000 nsec | Bps: 119857257 | wps: 14982157 {ConcurrentLinkedQueue}
01327811854377 Sat Jan 28 23:37:34 EST 2012 jacomecha[tid:11] <INFO>: [ 609] bytes: 12500992 | delta: 110939000 nsec | Bps: 112683475 | wps: 14085434 {ConcurrentLinkedQueue}
01327811854487 Sat Jan 28 23:37:34 EST 2012 jacomecha[tid:11] <INFO>: [ 610] bytes: 12500992 | delta: 108708000 nsec | Bps: 114996063 | wps: 14374508 {ConcurrentLinkedQueue}
01327811854594 Sat Jan 28 23:37:34 EST 2012 jacomecha[tid:11] <INFO>: [ 611] bytes: 12500992 | delta: 106652000 nsec | Bps: 117212917 | wps: 14651615 {ConcurrentLinkedQueue}
01327811854703 Sat Jan 28 23:37:34 EST 2012 jacomecha[tid:11] <INFO>: [ 612] bytes: 12500992 | delta: 108470000 nsec | Bps: 115248382 | wps: 14406048 {ConcurrentLinkedQueue}
01327811854813 Sat Jan 28 23:37:34 EST 2012 jacomecha[tid:11] <INFO>: [ 613] bytes: 12500992 | delta: 110279000 nsec | Bps: 113357865 | wps: 14169733 {ConcurrentLinkedQueue}
01327811854923 Sat Jan 28 23:37:34 EST 2012 jacomecha[tid:11] <INFO>: [ 614] bytes: 12500992 | delta: 108774000 nsec | Bps: 114926288 | wps: 14365786 {ConcurrentLinkedQueue}
01327811855032 Sat Jan 28 23:37:35 EST 2012 jacomecha[tid:11] <INFO>: [ 615] bytes: 12500992 | delta: 109505000 nsec | Bps: 114159098 | wps: 14269887 {ConcurrentLinkedQueue}
01327811855142 Sat Jan 28 23:37:35 EST 2012 jacomecha[tid:11] <INFO>: [ 616] bytes: 12500992 | delta: 109495000 nsec | Bps: 114169524 | wps: 14271190 {ConcurrentLinkedQueue}
01327811855252 Sat Jan 28 23:37:35 EST 2012 jacomecha[tid:11] <INFO>: [ 617] bytes: 12500992 | delta: 108820000 nsec | Bps: 114877706 | wps: 14359713 {ConcurrentLinkedQueue}
01327811855361 Sat Jan 28 23:37:35 EST 2012 jacomecha[tid:11] <INFO>: [ 618] bytes: 12500992 | delta: 109218000 nsec | Bps: 114459082 | wps: 14307385 {ConcurrentLinkedQueue}
01327811855471 Sat Jan 28 23:37:35 EST 2012 jacomecha[tid:11] <INFO>: [ 619] bytes: 12500992 | delta: 109072000 nsec | Bps: 114612293 | wps: 14326537 {ConcurrentLinkedQueue}
01327811855582 Sat Jan 28 23:37:35 EST 2012 jacomecha[tid:11] <INFO>: [ 620] bytes: 12500992 | delta: 110696000 nsec | Bps: 112930838 | wps: 14116355 {ConcurrentLinkedQueue}
01327811855702 Sat Jan 28 23:37:35 EST 2012 jacomecha[tid:11] <INFO>: [ 621] bytes: 12500992 | delta: 119503000 nsec | Bps: 104608186 | wps: 13076023 {ConcurrentLinkedQueue}
01327811855823 Sat Jan 28 23:37:35 EST 2012 jacomecha[tid:11] <INFO>: [ 622] bytes: 12500992 | delta: 120056000 nsec | Bps: 104126341 | wps: 13015793 {ConcurrentLinkedQueue}
01327811855933 Sat Jan 28 23:37:35 EST 2012 jacomecha[tid:11] <INFO>: [ 623] bytes: 12500992 | delta: 109004000 nsec | Bps: 114683791 | wps: 14335474 {ConcurrentLinkedQueue}
01327811856041 Sat Jan 28 23:37:36 EST 2012 jacomecha[tid:11] <INFO>: [ 624] bytes: 12500992 | delta: 107696000 nsec | Bps: 116076660 | wps: 14509583 {ConcurrentLinkedQueue}
01327811856150 Sat Jan 28 23:37:36 EST 2012 jacomecha[tid:11] <INFO>: [ 625] bytes: 12500992 | delta: 109027000 nsec | Bps: 114659598 | wps: 14332450 {ConcurrentLinkedQueue}
01327811856261 Sat Jan 28 23:37:36 EST 2012 jacomecha[tid:11] <INFO>: [ 626] bytes: 12500992 | delta: 109997000 nsec | Bps: 113648481 | wps: 14206060 {ConcurrentLinkedQueue}
01327811856372 Sat Jan 28 23:37:36 EST 2012 jacomecha[tid:11] <INFO>: [ 627] bytes: 12500992 | delta: 110573000 nsec | Bps: 113056460 | wps: 14132058 {ConcurrentLinkedQueue}
01327811856479 Sat Jan 28 23:37:36 EST 2012 jacomecha[tid:11] <INFO>: [ 628] bytes: 12500992 | delta: 107294000 nsec | Bps: 116511566 | wps: 14563946 {ConcurrentLinkedQueue}
01327811856588 Sat Jan 28 23:37:36 EST 2012 jacomecha[tid:11] <INFO>: [ 629] bytes: 12500992 | delta: 107893000 nsec | Bps: 115864718 | wps: 14483090 {ConcurrentLinkedQueue}
01327811856697 Sat Jan 28 23:37:36 EST 2012 jacomecha[tid:11] <INFO>: [ 630] bytes: 12500992 | delta: 109199000 nsec | Bps: 114478997 | wps: 14309875 {ConcurrentLinkedQueue}
01327811856806 Sat Jan 28 23:37:36 EST 2012 jacomecha[tid:11] <INFO>: [ 631] bytes: 12500992 | delta: 107628000 nsec | Bps: 116149998 | wps: 14518750 {ConcurrentLinkedQueue}
01327811856915 Sat Jan 28 23:37:36 EST 2012 jacomecha[tid:11] <INFO>: [ 632] bytes: 12500992 | delta: 108902000 nsec | Bps: 114791207 | wps: 14348901 {ConcurrentLinkedQueue}
01327811857025 Sat Jan 28 23:37:37 EST 2012 jacomecha[tid:11] <INFO>: [ 633] bytes: 12500992 | delta: 107905000 nsec | Bps: 115851833 | wps: 14481479 {ConcurrentLinkedQueue}
01327811857206 Sat Jan 28 23:37:37 EST 2012 jacomecha[tid:11] <INFO>: [ 634] bytes: 12500992 | delta: 179875000 nsec | Bps: 69498218 | wps: 8687277 {ConcurrentLinkedQueue}
01327811857315 Sat Jan 28 23:37:37 EST 2012 jacomecha[tid:11] <INFO>: [ 635] bytes: 12500992 | delta: 109346000 nsec | Bps: 114325096 | wps: 14290637 {ConcurrentLinkedQueue}
01327811857426 Sat Jan 28 23:37:37 EST 2012 jacomecha[tid:11] <INFO>: [ 636] bytes: 12500992 | delta: 110085000 nsec | Bps: 113557633 | wps: 14194704 {ConcurrentLinkedQueue}
01327811857534 Sat Jan 28 23:37:37 EST 2012 jacomecha[tid:11] <INFO>: [ 637] bytes: 12500992 | delta: 107918000 nsec | Bps: 115837877 | wps: 14479735 {ConcurrentLinkedQueue}
01327811857657 Sat Jan 28 23:37:37 EST 2012 jacomecha[tid:11] <INFO>: [ 638] bytes: 12500992 | delta: 122232000 nsec | Bps: 102272662 | wps: 12784083 {ConcurrentLinkedQueue}
01327811857782 Sat Jan 28 23:37:37 EST 2012 jacomecha[tid:11] <INFO>: [ 639] bytes: 12500992 | delta: 124489000 nsec | Bps: 100418447 | wps: 12552306 {ConcurrentLinkedQueue}
01327811857890 Sat Jan 28 23:37:37 EST 2012 jacomecha[tid:11] <INFO>: [ 640] bytes: 12500992 | delta: 108182000 nsec | Bps: 115555194 | wps: 14444399 {ConcurrentLinkedQueue}
01327811858004 Sat Jan 28 23:37:38 EST 2012 jacomecha[tid:11] <INFO>: [ 641] bytes: 12500992 | delta: 113363000 nsec | Bps: 110274005 | wps: 13784251 {ConcurrentLinkedQueue}
01327811858112 Sat Jan 28 23:37:38 EST 2012 jacomecha[tid:11] <INFO>: [ 642] bytes: 12500992 | delta: 107394000 nsec | Bps: 116403077 | wps: 14550385 {ConcurrentLinkedQueue}
01327811858225 Sat Jan 28 23:37:38 EST 2012 jacomecha[tid:11] <INFO>: [ 643] bytes: 12500992 | delta: 111375000 nsec | Bps: 112242352 | wps: 14030294 {ConcurrentLinkedQueue}
01327811858333 Sat Jan 28 23:37:38 EST 2012 jacomecha[tid:11] <INFO>: [ 644] bytes: 12500992 | delta: 106004000 nsec | Bps: 117929437 | wps: 14741180 {ConcurrentLinkedQueue}
01327811858443 Sat Jan 28 23:37:38 EST 2012 jacomecha[tid:11] <INFO>: [ 645] bytes: 12500992 | delta: 109107000 nsec | Bps: 114575527 | wps: 14321941 {ConcurrentLinkedQueue}
01327811858554 Sat Jan 28 23:37:38 EST 2012 jacomecha[tid:11] <INFO>: [ 646] bytes: 12500992 | delta: 110465000 nsec | Bps: 113166994 | wps: 14145874 {ConcurrentLinkedQueue}
01327811858662 Sat Jan 28 23:37:38 EST 2012 jacomecha[tid:11] <INFO>: [ 647] bytes: 12500992 | delta: 107995000 nsec | Bps: 115755285 | wps: 14469411 {ConcurrentLinkedQueue}
01327811858775 Sat Jan 28 23:37:38 EST 2012 jacomecha[tid:11] <INFO>: [ 648] bytes: 12500992 | delta: 111640000 nsec | Bps: 111975923 | wps: 13996990 {ConcurrentLinkedQueue}
01327811858882 Sat Jan 28 23:37:38 EST 2012 jacomecha[tid:11] <INFO>: [ 649] bytes: 12500992 | delta: 107358000 nsec | Bps: 116442110 | wps: 14555264 {ConcurrentLinkedQueue}
01327811858994 Sat Jan 28 23:37:38 EST 2012 jacomecha[tid:11] <INFO>: [ 650] bytes: 12500992 | delta: 110756000 nsec | Bps: 112869659 | wps: 14108707 {ConcurrentLinkedQueue}
01327811859107 Sat Jan 28 23:37:39 EST 2012 jacomecha[tid:11] <INFO>: [ 651] bytes: 12500992 | delta: 112613000 nsec | Bps: 111008427 | wps: 13876053 {ConcurrentLinkedQueue}
01327811859215 Sat Jan 28 23:37:39 EST 2012 jacomecha[tid:11] <INFO>: [ 652] bytes: 12500992 | delta: 107369000 nsec | Bps: 116430180 | wps: 14553773 {ConcurrentLinkedQueue}
01327811859327 Sat Jan 28 23:37:39 EST 2012 jacomecha[tid:11] <INFO>: [ 653] bytes: 12500992 | delta: 111883000 nsec | Bps: 111732721 | wps: 13966590 {ConcurrentLinkedQueue}
01327811859436 Sat Jan 28 23:37:39 EST 2012 jacomecha[tid:11] <INFO>: [ 654] bytes: 12500992 | delta: 107864000 nsec | Bps: 115895869 | wps: 14486984 {ConcurrentLinkedQueue}
01327811859545 Sat Jan 28 23:37:39 EST 2012 jacomecha[tid:11] <INFO>: [ 655] bytes: 12500992 | delta: 108014000 nsec | Bps: 115734923 | wps: 14466865 {ConcurrentLinkedQueue}
01327811859664 Sat Jan 28 23:37:39 EST 2012 jacomecha[tid:11] <INFO>: [ 656] bytes: 12500992 | delta: 119199000 nsec | Bps: 104874974 | wps: 13109372 {ConcurrentLinkedQueue}
01327811859782 Sat Jan 28 23:37:39 EST 2012 jacomecha[tid:11] <INFO>: [ 657] bytes: 12500992 | delta: 117442000 nsec | Bps: 106443964 | wps: 13305495 {ConcurrentLinkedQueue}
01327811859883 Sat Jan 28 23:37:39 EST 2012 jacomecha[tid:11] <INFO>: [ 658] bytes: 12500992 | delta: 100660000 nsec | Bps: 124190264 | wps: 15523783 {ConcurrentLinkedQueue}
01327811860099 Sat Jan 28 23:37:40 EST 2012 jacomecha[tid:11] <INFO>: [ 659] bytes: 12500992 | delta: 214953000 nsec | Bps: 58156862 | wps: 7269608 {ConcurrentLinkedQueue}
01327811860210 Sat Jan 28 23:37:40 EST 2012 jacomecha[tid:11] <INFO>: [ 660] bytes: 12500992 | delta: 110323000 nsec | Bps: 113312655 | wps: 14164082 {ConcurrentLinkedQueue}
01327811860320 Sat Jan 28 23:37:40 EST 2012 jacomecha[tid:11] <INFO>: [ 661] bytes: 12500992 | delta: 109610000 nsec | Bps: 114049740 | wps: 14256217 {ConcurrentLinkedQueue}
01327811860428 Sat Jan 28 23:37:40 EST 2012 jacomecha[tid:11] <INFO>: [ 662] bytes: 12500992 | delta: 107898000 nsec | Bps: 115859349 | wps: 14482419 {ConcurrentLinkedQueue}
01327811860538 Sat Jan 28 23:37:40 EST 2012 jacomecha[tid:11] <INFO>: [ 663] bytes: 12500992 | delta: 109762000 nsec | Bps: 113891802 | wps: 14236475 {ConcurrentLinkedQueue}
01327811860646 Sat Jan 28 23:37:40 EST 2012 jacomecha[tid:11] <INFO>: [ 664] bytes: 12500992 | delta: 107319000 nsec | Bps: 116484425 | wps: 14560553 {ConcurrentLinkedQueue}
01327811860757 Sat Jan 28 23:37:40 EST 2012 jacomecha[tid:11] <INFO>: [ 665] bytes: 12500992 | delta: 110234000 nsec | Bps: 113404140 | wps: 14175518 {ConcurrentLinkedQueue}
01327811860867 Sat Jan 28 23:37:40 EST 2012 jacomecha[tid:11] <INFO>: [ 666] bytes: 12500992 | delta: 108700000 nsec | Bps: 115004526 | wps: 14375566 {ConcurrentLinkedQueue}
01327811860978 Sat Jan 28 23:37:40 EST 2012 jacomecha[tid:11] <INFO>: [ 667] bytes: 12500992 | delta: 109808000 nsec | Bps: 113844092 | wps: 14230511 {ConcurrentLinkedQueue}
01327811861087 Sat Jan 28 23:37:41 EST 2012 jacomecha[tid:11] <INFO>: [ 668] bytes: 12500992 | delta: 108699000 nsec | Bps: 115005584 | wps: 14375698 {ConcurrentLinkedQueue}
01327811861197 Sat Jan 28 23:37:41 EST 2012 jacomecha[tid:11] <INFO>: [ 669] bytes: 12500992 | delta: 108867000 nsec | Bps: 114828111 | wps: 14353514 {ConcurrentLinkedQueue}
01327811861306 Sat Jan 28 23:37:41 EST 2012 jacomecha[tid:11] <INFO>: [ 670] bytes: 12500992 | delta: 108612000 nsec | Bps: 115097706 | wps: 14387213 {ConcurrentLinkedQueue}
01327811861417 Sat Jan 28 23:37:41 EST 2012 jacomecha[tid:11] <INFO>: [ 671] bytes: 12500992 | delta: 111041000 nsec | Bps: 112579966 | wps: 14072496 {ConcurrentLinkedQueue}
01327811861526 Sat Jan 28 23:37:41 EST 2012 jacomecha[tid:11] <INFO>: [ 672] bytes: 12500992 | delta: 108543000 nsec | Bps: 115170872 | wps: 14396359 {ConcurrentLinkedQueue}
01327811861645 Sat Jan 28 23:37:41 EST 2012 jacomecha[tid:11] <INFO>: [ 673] bytes: 12500992 | delta: 117813000 nsec | Bps: 106108766 | wps: 13263596 {ConcurrentLinkedQueue}
01327811861753 Sat Jan 28 23:37:41 EST 2012 jacomecha[tid:11] <INFO>: [ 674] bytes: 12500992 | delta: 108082000 nsec | Bps: 115662108 | wps: 14457764 {ConcurrentLinkedQueue}
01327811861865 Sat Jan 28 23:37:41 EST 2012 jacomecha[tid:11] <INFO>: [ 675] bytes: 12500992 | delta: 111806000 nsec | Bps: 111809670 | wps: 13976209 {ConcurrentLinkedQueue}
01327811861974 Sat Jan 28 23:37:41 EST 2012 jacomecha[tid:11] <INFO>: [ 676] bytes: 12500992 | delta: 108644000 nsec | Bps: 115063805 | wps: 14382976 {ConcurrentLinkedQueue}
01327811862086 Sat Jan 28 23:37:42 EST 2012 jacomecha[tid:11] <INFO>: [ 677] bytes: 12500992 | delta: 111395000 nsec | Bps: 112222200 | wps: 14027775 {ConcurrentLinkedQueue}
01327811862194 Sat Jan 28 23:37:42 EST 2012 jacomecha[tid:11] <INFO>: [ 678] bytes: 12500992 | delta: 107022000 nsec | Bps: 116807684 | wps: 14600961 {ConcurrentLinkedQueue}
01327811862301 Sat Jan 28 23:37:42 EST 2012 jacomecha[tid:11] <INFO>: [ 679] bytes: 12500992 | delta: 107182000 nsec | Bps: 116633315 | wps: 14579164 {ConcurrentLinkedQueue}
01327811862413 Sat Jan 28 23:37:42 EST 2012 jacomecha[tid:11] <INFO>: [ 680] bytes: 12500992 | delta: 110817000 nsec | Bps: 112807530 | wps: 14100941 {ConcurrentLinkedQueue}
01327811862524 Sat Jan 28 23:37:42 EST 2012 jacomecha[tid:11] <INFO>: [ 681] bytes: 12500992 | delta: 110778000 nsec | Bps: 112847244 | wps: 14105906 {ConcurrentLinkedQueue}
01327811862632 Sat Jan 28 23:37:42 EST 2012 jacomecha[tid:11] <INFO>: [ 682] bytes: 12500992 | delta: 107234000 nsec | Bps: 116576757 | wps: 14572095 {ConcurrentLinkedQueue}
01327811862741 Sat Jan 28 23:37:42 EST 2012 jacomecha[tid:11] <INFO>: [ 683] bytes: 12500992 | delta: 109335000 nsec | Bps: 114336599 | wps: 14292075 {ConcurrentLinkedQueue}
01327811862956 Sat Jan 28 23:37:42 EST 2012 jacomecha[tid:11] <INFO>: [ 684] bytes: 12500992 | delta: 213918000 nsec | Bps: 58438243 | wps: 7304780 {ConcurrentLinkedQueue}
01327811863066 Sat Jan 28 23:37:43 EST 2012 jacomecha[tid:11] <INFO>: [ 685] bytes: 12500992 | delta: 108857000 nsec | Bps: 114838660 | wps: 14354832 {ConcurrentLinkedQueue}
01327811863175 Sat Jan 28 23:37:43 EST 2012 jacomecha[tid:11] <INFO>: [ 686] bytes: 12500992 | delta: 107666000 nsec | Bps: 116109004 | wps: 14513625 {ConcurrentLinkedQueue}
01327811863282 Sat Jan 28 23:37:43 EST 2012 jacomecha[tid:11] <INFO>: [ 687] bytes: 12500992 | delta: 107227000 nsec | Bps: 116584368 | wps: 14573046 {ConcurrentLinkedQueue}
01327811863395 Sat Jan 28 23:37:43 EST 2012 jacomecha[tid:11] <INFO>: [ 688] bytes: 12500992 | delta: 110844000 nsec | Bps: 112780051 | wps: 14097506 {ConcurrentLinkedQueue}
01327811863505 Sat Jan 28 23:37:43 EST 2012 jacomecha[tid:11] <INFO>: [ 689] bytes: 12500992 | delta: 109643000 nsec | Bps: 114015414 | wps: 14251927 {ConcurrentLinkedQueue}
01327811863614 Sat Jan 28 23:37:43 EST 2012 jacomecha[tid:11] <INFO>: [ 690] bytes: 12500992 | delta: 108884000 nsec | Bps: 114810183 | wps: 14351273 {ConcurrentLinkedQueue}
01327811863737 Sat Jan 28 23:37:43 EST 2012 jacomecha[tid:11] <INFO>: [ 691] bytes: 12500992 | delta: 122096000 nsec | Bps: 102386581 | wps: 12798323 {ConcurrentLinkedQueue}
01327811863855 Sat Jan 28 23:37:43 EST 2012 jacomecha[tid:11] <INFO>: [ 692] bytes: 12500992 | delta: 117949000 nsec | Bps: 105986418 | wps: 13248302 {ConcurrentLinkedQueue}
01327811863964 Sat Jan 28 23:37:43 EST 2012 jacomecha[tid:11] <INFO>: [ 693] bytes: 12500992 | delta: 108910000 nsec | Bps: 114782775 | wps: 14347847 {ConcurrentLinkedQueue}
01327811864081 Sat Jan 28 23:37:44 EST 2012 jacomecha[tid:11] <INFO>: [ 694] bytes: 12500992 | delta: 116462000 nsec | Bps: 107339664 | wps: 13417458 {ConcurrentLinkedQueue}
01327811864190 Sat Jan 28 23:37:44 EST 2012 jacomecha[tid:11] <INFO>: [ 695] bytes: 12500992 | delta: 108174000 nsec | Bps: 115563740 | wps: 14445467 {ConcurrentLinkedQueue}
01327811864300 Sat Jan 28 23:37:44 EST 2012 jacomecha[tid:11] <INFO>: [ 696] bytes: 12500992 | delta: 109659000 nsec | Bps: 113998778 | wps: 14249847 {ConcurrentLinkedQueue}
01327811864411 Sat Jan 28 23:37:44 EST 2012 jacomecha[tid:11] <INFO>: [ 697] bytes: 12500992 | delta: 110239000 nsec | Bps: 113398997 | wps: 14174875 {ConcurrentLinkedQueue}
01327811864522 Sat Jan 28 23:37:44 EST 2012 jacomecha[tid:11] <INFO>: [ 698] bytes: 12500992 | delta: 110676000 nsec | Bps: 112951245 | wps: 14118906 {ConcurrentLinkedQueue}
01327811864630 Sat Jan 28 23:37:44 EST 2012 jacomecha[tid:11] <INFO>: [ 699] bytes: 12500992 | delta: 107002000 nsec | Bps: 116829517 | wps: 14603690 {ConcurrentLinkedQueue}
01327811864740 Sat Jan 28 23:37:44 EST 2012 jacomecha[tid:11] <INFO>: [ 700] bytes: 12500992 | delta: 109823000 nsec | Bps: 113828542 | wps: 14228568 {ConcurrentLinkedQueue}
01327811864849 Sat Jan 28 23:37:44 EST 2012 jacomecha[tid:11] <INFO>: [ 701] bytes: 12500992 | delta: 108515000 nsec | Bps: 115200590 | wps: 14400074 {ConcurrentLinkedQueue}
01327811864958 Sat Jan 28 23:37:44 EST 2012 jacomecha[tid:11] <INFO>: [ 702] bytes: 12500992 | delta: 109160000 nsec | Bps: 114519897 | wps: 14314987 {ConcurrentLinkedQueue}
01327811865066 Sat Jan 28 23:37:45 EST 2012 jacomecha[tid:11] <INFO>: [ 703] bytes: 12500992 | delta: 106866000 nsec | Bps: 116978197 | wps: 14622275 {ConcurrentLinkedQueue}
01327811865174 Sat Jan 28 23:37:45 EST 2012 jacomecha[tid:11] <INFO>: [ 704] bytes: 12500992 | delta: 107356000 nsec | Bps: 116444279 | wps: 14555535 {ConcurrentLinkedQueue}
01327811865285 Sat Jan 28 23:37:45 EST 2012 jacomecha[tid:11] <INFO>: [ 705] bytes: 12500992 | delta: 110622000 nsec | Bps: 113006382 | wps: 14125798 {ConcurrentLinkedQueue}
01327811865396 Sat Jan 28 23:37:45 EST 2012 jacomecha[tid:11] <INFO>: [ 706] bytes: 12500992 | delta: 107370000 nsec | Bps: 116429096 | wps: 14553637 {ConcurrentLinkedQueue}
01327811865503 Sat Jan 28 23:37:45 EST 2012 jacomecha[tid:11] <INFO>: [ 707] bytes: 12500992 | delta: 106587000 nsec | Bps: 117284397 | wps: 14660550 {ConcurrentLinkedQueue}
01327811865746 Sat Jan 28 23:37:45 EST 2012 jacomecha[tid:11] <INFO>: [ 708] bytes: 12500992 | delta: 110140000 nsec | Bps: 113500926 | wps: 14187616 {ConcurrentLinkedQueue}
01327811865858 Sat Jan 28 23:37:45 EST 2012 jacomecha[tid:11] <INFO>: [ 709] bytes: 12500992 | delta: 111390000 nsec | Bps: 112227238 | wps: 14028405 {ConcurrentLinkedQueue}
01327811865969 Sat Jan 28 23:37:45 EST 2012 jacomecha[tid:11] <INFO>: [ 710] bytes: 12500992 | delta: 110808000 nsec | Bps: 112816692 | wps: 14102086 {ConcurrentLinkedQueue}
01327811866080 Sat Jan 28 23:37:46 EST 2012 jacomecha[tid:11] <INFO>: [ 711] bytes: 12500992 | delta: 108753000 nsec | Bps: 114948480 | wps: 14368560 {ConcurrentLinkedQueue}
01327811866188 Sat Jan 28 23:37:46 EST 2012 jacomecha[tid:11] <INFO>: [ 712] bytes: 12500992 | delta: 107977000 nsec | Bps: 115774582 | wps: 14471823 {ConcurrentLinkedQueue}
01327811866296 Sat Jan 28 23:37:46 EST 2012 jacomecha[tid:11] <INFO>: [ 713] bytes: 12500992 | delta: 107421000 nsec | Bps: 116373819 | wps: 14546727 {ConcurrentLinkedQueue}
01327811866407 Sat Jan 28 23:37:46 EST 2012 jacomecha[tid:11] <INFO>: [ 714] bytes: 12500992 | delta: 111079000 nsec | Bps: 112541452 | wps: 14067682 {ConcurrentLinkedQueue}
01327811866518 Sat Jan 28 23:37:46 EST 2012 jacomecha[tid:11] <INFO>: [ 715] bytes: 12500992 | delta: 110104000 nsec | Bps: 113538037 | wps: 14192255 {ConcurrentLinkedQueue}
01327811866629 Sat Jan 28 23:37:46 EST 2012 jacomecha[tid:11] <INFO>: [ 716] bytes: 12500992 | delta: 111213000 nsec | Bps: 112405852 | wps: 14050731 {ConcurrentLinkedQueue}
01327811866739 Sat Jan 28 23:37:46 EST 2012 jacomecha[tid:11] <INFO>: [ 717] bytes: 12500992 | delta: 109368000 nsec | Bps: 114302099 | wps: 14287762 {ConcurrentLinkedQueue}
01327811866850 Sat Jan 28 23:37:46 EST 2012 jacomecha[tid:11] <INFO>: [ 718] bytes: 12500992 | delta: 110026000 nsec | Bps: 113618527 | wps: 14202316 {ConcurrentLinkedQueue}
01327811866961 Sat Jan 28 23:37:46 EST 2012 jacomecha[tid:11] <INFO>: [ 719] bytes: 12500992 | delta: 110999000 nsec | Bps: 112622564 | wps: 14077821 {ConcurrentLinkedQueue}
01327811867070 Sat Jan 28 23:37:47 EST 2012 jacomecha[tid:11] <INFO>: [ 720] bytes: 12500992 | delta: 108515000 nsec | Bps: 115200590 | wps: 14400074 {ConcurrentLinkedQueue}
01327811867180 Sat Jan 28 23:37:47 EST 2012 jacomecha[tid:11] <INFO>: [ 721] bytes: 12500992 | delta: 110007000 nsec | Bps: 113638150 | wps: 14204769 {ConcurrentLinkedQueue}
01327811867295 Sat Jan 28 23:37:47 EST 2012 jacomecha[tid:11] <INFO>: [ 722] bytes: 12500992 | delta: 114197000 nsec | Bps: 109468655 | wps: 13683582 {ConcurrentLinkedQueue}
01327811867406 Sat Jan 28 23:37:47 EST 2012 jacomecha[tid:11] <INFO>: [ 723] bytes: 12500992 | delta: 110627000 nsec | Bps: 113001275 | wps: 14125159 {ConcurrentLinkedQueue}
01327811867517 Sat Jan 28 23:37:47 EST 2012 jacomecha[tid:11] <INFO>: [ 724] bytes: 12500992 | delta: 109811000 nsec | Bps: 113840981 | wps: 14230123 {ConcurrentLinkedQueue}
01327811867637 Sat Jan 28 23:37:47 EST 2012 jacomecha[tid:11] <INFO>: [ 725] bytes: 12500992 | delta: 119897000 nsec | Bps: 104264427 | wps: 13033053 {ConcurrentLinkedQueue}
01327811867750 Sat Jan 28 23:37:47 EST 2012 jacomecha[tid:11] <INFO>: [ 726] bytes: 12500992 | delta: 113061000 nsec | Bps: 110568560 | wps: 13821070 {ConcurrentLinkedQueue}
01327811867859 Sat Jan 28 23:37:47 EST 2012 jacomecha[tid:11] <INFO>: [ 727] bytes: 12500992 | delta: 107986000 nsec | Bps: 115764932 | wps: 14470617 {ConcurrentLinkedQueue}
01327811867968 Sat Jan 28 23:37:47 EST 2012 jacomecha[tid:11] <INFO>: [ 728] bytes: 12500992 | delta: 109023000 nsec | Bps: 114663805 | wps: 14332976 {ConcurrentLinkedQueue}
01327811868078 Sat Jan 28 23:37:48 EST 2012 jacomecha[tid:11] <INFO>: [ 729] bytes: 12500992 | delta: 109128000 nsec | Bps: 114553478 | wps: 14319185 {ConcurrentLinkedQueue}
01327811868186 Sat Jan 28 23:37:48 EST 2012 jacomecha[tid:11] <INFO>: [ 730] bytes: 12500992 | delta: 107207000 nsec | Bps: 116606117 | wps: 14575765 {ConcurrentLinkedQueue}
01327811868294 Sat Jan 28 23:37:48 EST 2012 jacomecha[tid:11] <INFO>: [ 731] bytes: 12500992 | delta: 108277000 nsec | Bps: 115453808 | wps: 14431726 {ConcurrentLinkedQueue}
01327811868405 Sat Jan 28 23:37:48 EST 2012 jacomecha[tid:11] <INFO>: [ 732] bytes: 12500992 | delta: 109949000 nsec | Bps: 113698096 | wps: 14212262 {ConcurrentLinkedQueue}
01327811868585 Sat Jan 28 23:37:48 EST 2012 jacomecha[tid:11] <INFO>: [ 733] bytes: 12500992 | delta: 179668000 nsec | Bps: 69578289 | wps: 8697286 {ConcurrentLinkedQueue}
01327811868694 Sat Jan 28 23:37:48 EST 2012 jacomecha[tid:11] <INFO>: [ 734] bytes: 12500992 | delta: 107192000 nsec | Bps: 116622435 | wps: 14577804 {ConcurrentLinkedQueue}
01327811868806 Sat Jan 28 23:37:48 EST 2012 jacomecha[tid:11] <INFO>: [ 735] bytes: 12500992 | delta: 111715000 nsec | Bps: 111900747 | wps: 13987593 {ConcurrentLinkedQueue}
01327811868915 Sat Jan 28 23:37:48 EST 2012 jacomecha[tid:11] <INFO>: [ 736] bytes: 12500992 | delta: 108515000 nsec | Bps: 115200590 | wps: 14400074 {ConcurrentLinkedQueue}
01327811869024 Sat Jan 28 23:37:49 EST 2012 jacomecha[tid:11] <INFO>: [ 737] bytes: 12500992 | delta: 108536000 nsec | Bps: 115178300 | wps: 14397288 {ConcurrentLinkedQueue}
01327811869134 Sat Jan 28 23:37:49 EST 2012 jacomecha[tid:11] <INFO>: [ 738] bytes: 12500992 | delta: 109720000 nsec | Bps: 113935399 | wps: 14241925 {ConcurrentLinkedQueue}
01327811869243 Sat Jan 28 23:37:49 EST 2012 jacomecha[tid:11] <INFO>: [ 739] bytes: 12500992 | delta: 108363000 nsec | Bps: 115362181 | wps: 14420273 {ConcurrentLinkedQueue}
01327811869352 Sat Jan 28 23:37:49 EST 2012 jacomecha[tid:11] <INFO>: [ 740] bytes: 12500992 | delta: 108587000 nsec | Bps: 115124205 | wps: 14390526 {ConcurrentLinkedQueue}
01327811869460 Sat Jan 28 23:37:49 EST 2012 jacomecha[tid:11] <INFO>: [ 741] bytes: 12500992 | delta: 108076000 nsec | Bps: 115668530 | wps: 14458566 {ConcurrentLinkedQueue}
01327811869568 Sat Jan 28 23:37:49 EST 2012 jacomecha[tid:11] <INFO>: [ 742] bytes: 12500992 | delta: 107410000 nsec | Bps: 116385737 | wps: 14548217 {ConcurrentLinkedQueue}
01327811869680 Sat Jan 28 23:37:49 EST 2012 jacomecha[tid:11] <INFO>: [ 743] bytes: 12500992 | delta: 111415000 nsec | Bps: 112202055 | wps: 14025257 {ConcurrentLinkedQueue}
01327811869803 Sat Jan 28 23:37:49 EST 2012 jacomecha[tid:11] <INFO>: [ 744] bytes: 12500992 | delta: 119874000 nsec | Bps: 104284432 | wps: 13035554 {ConcurrentLinkedQueue}
01327811869911 Sat Jan 28 23:37:49 EST 2012 jacomecha[tid:11] <INFO>: [ 745] bytes: 12500992 | delta: 107419000 nsec | Bps: 116375986 | wps: 14546998 {ConcurrentLinkedQueue}
01327811870018 Sat Jan 28 23:37:50 EST 2012 jacomecha[tid:11] <INFO>: [ 746] bytes: 12500992 | delta: 106490000 nsec | Bps: 117391229 | wps: 14673904 {ConcurrentLinkedQueue}
01327811870127 Sat Jan 28 23:37:50 EST 2012 jacomecha[tid:11] <INFO>: [ 747] bytes: 12500992 | delta: 108868000 nsec | Bps: 114827057 | wps: 14353382 {ConcurrentLinkedQueue}
01327811870237 Sat Jan 28 23:37:50 EST 2012 jacomecha[tid:11] <INFO>: [ 748] bytes: 12500992 | delta: 108846000 nsec | Bps: 114850266 | wps: 14356283 {ConcurrentLinkedQueue}
01327811870346 Sat Jan 28 23:37:50 EST 2012 jacomecha[tid:11] <INFO>: [ 749] bytes: 12500992 | delta: 108481000 nsec | Bps: 115236696 | wps: 14404587 {ConcurrentLinkedQueue}
01327811870457 Sat Jan 28 23:37:50 EST 2012 jacomecha[tid:11] <INFO>: [ 750] bytes: 12500992 | delta: 111475000 nsec | Bps: 112141664 | wps: 14017708 {ConcurrentLinkedQueue}
01327811870566 Sat Jan 28 23:37:50 EST 2012 jacomecha[tid:11] <INFO>: [ 751] bytes: 12500992 | delta: 106959000 nsec | Bps: 116876485 | wps: 14609561 {ConcurrentLinkedQueue}
01327811870672 Sat Jan 28 23:37:50 EST 2012 jacomecha[tid:11] <INFO>: [ 752] bytes: 12500992 | delta: 105939000 nsec | Bps: 118001793 | wps: 14750224 {ConcurrentLinkedQueue}
01327811870782 Sat Jan 28 23:37:50 EST 2012 jacomecha[tid:11] <INFO>: [ 753] bytes: 12500992 | delta: 109643000 nsec | Bps: 114015414 | wps: 14251927 {ConcurrentLinkedQueue}
01327811870893 Sat Jan 28 23:37:50 EST 2012 jacomecha[tid:11] <INFO>: [ 754] bytes: 12500992 | delta: 110391000 nsec | Bps: 113242855 | wps: 14155357 {ConcurrentLinkedQueue}
01327811871002 Sat Jan 28 23:37:51 EST 2012 jacomecha[tid:11] <INFO>: [ 755] bytes: 12500992 | delta: 108149000 nsec | Bps: 115590454 | wps: 14448807 {ConcurrentLinkedQueue}
01327811871110 Sat Jan 28 23:37:51 EST 2012 jacomecha[tid:11] <INFO>: [ 756] bytes: 12500992 | delta: 108280000 nsec | Bps: 115450610 | wps: 14431326 {ConcurrentLinkedQueue}
01327811871219 Sat Jan 28 23:37:51 EST 2012 jacomecha[tid:11] <INFO>: [ 757] bytes: 12500992 | delta: 108741000 nsec | Bps: 114961165 | wps: 14370146 {ConcurrentLinkedQueue}
01327811871437 Sat Jan 28 23:37:51 EST 2012 jacomecha[tid:11] <INFO>: [ 758] bytes: 12500992 | delta: 217541000 nsec | Bps: 57464993 | wps: 7183124 {ConcurrentLinkedQueue}
01327811871546 Sat Jan 28 23:37:51 EST 2012 jacomecha[tid:11] <INFO>: [ 759] bytes: 12500992 | delta: 108649000 nsec | Bps: 115058510 | wps: 14382314 {ConcurrentLinkedQueue}
01327811871672 Sat Jan 28 23:37:51 EST 2012 jacomecha[tid:11] <INFO>: [ 760] bytes: 12500992 | delta: 125467000 nsec | Bps: 99635697 | wps: 12454462 {ConcurrentLinkedQueue}
01327811871792 Sat Jan 28 23:37:51 EST 2012 jacomecha[tid:11] <INFO>: [ 761] bytes: 12500992 | delta: 119777000 nsec | Bps: 104368886 | wps: 13046111 {ConcurrentLinkedQueue}
01327811871903 Sat Jan 28 23:37:51 EST 2012 jacomecha[tid:11] <INFO>: [ 762] bytes: 12500992 | delta: 110348000 nsec | Bps: 113286983 | wps: 14160873 {ConcurrentLinkedQueue}
01327811872012 Sat Jan 28 23:37:52 EST 2012 jacomecha[tid:11] <INFO>: [ 763] bytes: 12500992 | delta: 108396000 nsec | Bps: 115327060 | wps: 14415883 {ConcurrentLinkedQueue}
01327811872122 Sat Jan 28 23:37:52 EST 2012 jacomecha[tid:11] <INFO>: [ 764] bytes: 12500992 | delta: 109170000 nsec | Bps: 114509407 | wps: 14313676 {ConcurrentLinkedQueue}
01327811872231 Sat Jan 28 23:37:52 EST 2012 jacomecha[tid:11] <INFO>: [ 765] bytes: 12500992 | delta: 109014000 nsec | Bps: 114673271 | wps: 14334159 {ConcurrentLinkedQueue}
01327811872341 Sat Jan 28 23:37:52 EST 2012 jacomecha[tid:11] <INFO>: [ 766] bytes: 12500992 | delta: 109218000 nsec | Bps: 114459082 | wps: 14307385 {ConcurrentLinkedQueue}
01327811872453 Sat Jan 28 23:37:52 EST 2012 jacomecha[tid:11] <INFO>: [ 767] bytes: 12500992 | delta: 111385000 nsec | Bps: 112232275 | wps: 14029034 {ConcurrentLinkedQueue}
01327811872566 Sat Jan 28 23:37:52 EST 2012 jacomecha[tid:11] <INFO>: [ 768] bytes: 12500992 | delta: 111201000 nsec | Bps: 112417982 | wps: 14052248 {ConcurrentLinkedQueue}
01327811872677 Sat Jan 28 23:37:52 EST 2012 jacomecha[tid:11] <INFO>: [ 769] bytes: 12500992 | delta: 110577000 nsec | Bps: 113052371 | wps: 14131546 {ConcurrentLinkedQueue}
01327811872789 Sat Jan 28 23:37:52 EST 2012 jacomecha[tid:11] <INFO>: [ 770] bytes: 12500992 | delta: 110434000 nsec | Bps: 113198761 | wps: 14149845 {ConcurrentLinkedQueue}
01327811872899 Sat Jan 28 23:37:52 EST 2012 jacomecha[tid:11] <INFO>: [ 771] bytes: 12500992 | delta: 110318000 nsec | Bps: 113317790 | wps: 14164724 {ConcurrentLinkedQueue}
01327811873009 Sat Jan 28 23:37:53 EST 2012 jacomecha[tid:11] <INFO>: [ 772] bytes: 12500992 | delta: 108801000 nsec | Bps: 114897767 | wps: 14362221 {ConcurrentLinkedQueue}
01327811873118 Sat Jan 28 23:37:53 EST 2012 jacomecha[tid:11] <INFO>: [ 773] bytes: 12500992 | delta: 108893000 nsec | Bps: 114800694 | wps: 14350087 {ConcurrentLinkedQueue}
01327811873227 Sat Jan 28 23:37:53 EST 2012 jacomecha[tid:11] <INFO>: [ 774] bytes: 12500992 | delta: 108314000 nsec | Bps: 115414369 | wps: 14426796 {ConcurrentLinkedQueue}
01327811873350 Sat Jan 28 23:37:53 EST 2012 jacomecha[tid:11] <INFO>: [ 775] bytes: 12500992 | delta: 111230000 nsec | Bps: 112388672 | wps: 14048584 {ConcurrentLinkedQueue}
01327811873462 Sat Jan 28 23:37:53 EST 2012 jacomecha[tid:11] <INFO>: [ 776] bytes: 12500992 | delta: 111746000 nsec | Bps: 111869705 | wps: 13983713 {ConcurrentLinkedQueue}
01327811873571 Sat Jan 28 23:37:53 EST 2012 jacomecha[tid:11] <INFO>: [ 777] bytes: 12500992 | delta: 108438000 nsec | Bps: 115282392 | wps: 14410299 {ConcurrentLinkedQueue}
01327811873694 Sat Jan 28 23:37:53 EST 2012 jacomecha[tid:11] <INFO>: [ 778] bytes: 12500992 | delta: 123136000 nsec | Bps: 101521830 | wps: 12690229 {ConcurrentLinkedQueue}
01327811873817 Sat Jan 28 23:37:53 EST 2012 jacomecha[tid:11] <INFO>: [ 779] bytes: 12500992 | delta: 121848000 nsec | Bps: 102594971 | wps: 12824371 {ConcurrentLinkedQueue}
01327811873926 Sat Jan 28 23:37:53 EST 2012 jacomecha[tid:11] <INFO>: [ 780] bytes: 12500992 | delta: 108829000 nsec | Bps: 114868206 | wps: 14358526 {ConcurrentLinkedQueue}
01327811874038 Sat Jan 28 23:37:54 EST 2012 jacomecha[tid:11] <INFO>: [ 781] bytes: 12500992 | delta: 111905000 nsec | Bps: 111710755 | wps: 13963844 {ConcurrentLinkedQueue}
01327811874152 Sat Jan 28 23:37:54 EST 2012 jacomecha[tid:11] <INFO>: [ 782] bytes: 12500992 | delta: 105990000 nsec | Bps: 117945014 | wps: 14743127 {ConcurrentLinkedQueue}
01327811874376 Sat Jan 28 23:37:54 EST 2012 jacomecha[tid:11] <INFO>: [ 783] bytes: 12500992 | delta: 224222000 nsec | Bps: 55752745 | wps: 6969093 {ConcurrentLinkedQueue}
01327811874487 Sat Jan 28 23:37:54 EST 2012 jacomecha[tid:11] <INFO>: [ 784] bytes: 12500992 | delta: 109886000 nsec | Bps: 113763282 | wps: 14220410 {ConcurrentLinkedQueue}
01327811874603 Sat Jan 28 23:37:54 EST 2012 jacomecha[tid:11] <INFO>: [ 785] bytes: 12500992 | delta: 111429000 nsec | Bps: 112187958 | wps: 14023495 {ConcurrentLinkedQueue}
01327811874709 Sat Jan 28 23:37:54 EST 2012 jacomecha[tid:11] <INFO>: [ 786] bytes: 12500992 | delta: 104908000 nsec | Bps: 119161475 | wps: 14895184 {ConcurrentLinkedQueue}
01327811874820 Sat Jan 28 23:37:54 EST 2012 jacomecha[tid:11] <INFO>: [ 787] bytes: 12500992 | delta: 111074000 nsec | Bps: 112546519 | wps: 14068315 {ConcurrentLinkedQueue}
01327811874933 Sat Jan 28 23:37:54 EST 2012 jacomecha[tid:11] <INFO>: [ 788] bytes: 12500992 | delta: 112544000 nsec | Bps: 111076486 | wps: 13884561 {ConcurrentLinkedQueue}
01327811875044 Sat Jan 28 23:37:55 EST 2012 jacomecha[tid:11] <INFO>: [ 789] bytes: 12500992 | delta: 110522000 nsec | Bps: 113108630 | wps: 14138579 {ConcurrentLinkedQueue}
01327811875151 Sat Jan 28 23:37:55 EST 2012 jacomecha[tid:11] <INFO>: [ 790] bytes: 12500992 | delta: 106822000 nsec | Bps: 117026380 | wps: 14628298 {ConcurrentLinkedQueue}
01327811875261 Sat Jan 28 23:37:55 EST 2012 jacomecha[tid:11] <INFO>: [ 791] bytes: 12500992 | delta: 109436000 nsec | Bps: 114231076 | wps: 14278884 {ConcurrentLinkedQueue}
01327811875374 Sat Jan 28 23:37:55 EST 2012 jacomecha[tid:11] <INFO>: [ 792] bytes: 12500992 | delta: 112458000 nsec | Bps: 111161429 | wps: 13895179 {ConcurrentLinkedQueue}
01327811875485 Sat Jan 28 23:37:55 EST 2012 jacomecha[tid:11] <INFO>: [ 793] bytes: 12500992 | delta: 110568000 nsec | Bps: 113061573 | wps: 14132697 {ConcurrentLinkedQueue}
01327811875595 Sat Jan 28 23:37:55 EST 2012 jacomecha[tid:11] <INFO>: [ 794] bytes: 12500992 | delta: 109835000 nsec | Bps: 113816106 | wps: 14227013 {ConcurrentLinkedQueue}
01327811875714 Sat Jan 28 23:37:55 EST 2012 jacomecha[tid:11] <INFO>: [ 795] bytes: 12500992 | delta: 118801000 nsec | Bps: 105226320 | wps: 13153290 {ConcurrentLinkedQueue}
01327811875832 Sat Jan 28 23:37:55 EST 2012 jacomecha[tid:11] <INFO>: [ 796] bytes: 12500992 | delta: 116700000 nsec | Bps: 107120754 | wps: 13390094 {ConcurrentLinkedQueue}
01327811875941 Sat Jan 28 23:37:55 EST 2012 jacomecha[tid:11] <INFO>: [ 797] bytes: 12500992 | delta: 108348000 nsec | Bps: 115378152 | wps: 14422269 {ConcurrentLinkedQueue}
01327811876048 Sat Jan 28 23:37:56 EST 2012 jacomecha[tid:11] <INFO>: [ 798] bytes: 12500992 | delta: 107279000 nsec | Bps: 116527857 | wps: 14565982 {ConcurrentLinkedQueue}
01327811876166 Sat Jan 28 23:37:56 EST 2012 jacomecha[tid:11] <INFO>: [ 799] bytes: 12500992 | delta: 117411000 nsec | Bps: 106472068 | wps: 13309009 {ConcurrentLinkedQueue}
01327811876271 Sat Jan 28 23:37:56 EST 2012 jacomecha[tid:11] <INFO>: [ 800] bytes: 12500992 | delta: 104531000 nsec | Bps: 119591241 | wps: 14948905 {ConcurrentLinkedQueue}
01327811876382 Sat Jan 28 23:37:56 EST 2012 jacomecha[tid:11] <INFO>: [ 801] bytes: 12500992 | delta: 110960000 nsec | Bps: 112662149 | wps: 14082769 {ConcurrentLinkedQueue}
01327811876492 Sat Jan 28 23:37:56 EST 2012 jacomecha[tid:11] <INFO>: [ 802] bytes: 12500992 | delta: 109766000 nsec | Bps: 113887652 | wps: 14235956 {ConcurrentLinkedQueue}
01327811876603 Sat Jan 28 23:37:56 EST 2012 jacomecha[tid:11] <INFO>: [ 803] bytes: 12500992 | delta: 109689000 nsec | Bps: 113967599 | wps: 14245950 {ConcurrentLinkedQueue}
01327811876712 Sat Jan 28 23:37:56 EST 2012 jacomecha[tid:11] <INFO>: [ 804] bytes: 12500992 | delta: 108892000 nsec | Bps: 114801749 | wps: 14350219 {ConcurrentLinkedQueue}
01327811876822 Sat Jan 28 23:37:56 EST 2012 jacomecha[tid:11] <INFO>: [ 805] bytes: 12500992 | delta: 109683000 nsec | Bps: 113973834 | wps: 14246729 {ConcurrentLinkedQueue}
01327811876937 Sat Jan 28 23:37:56 EST 2012 jacomecha[tid:11] <INFO>: [ 806] bytes: 12500992 | delta: 107688000 nsec | Bps: 116085283 | wps: 14510660 {ConcurrentLinkedQueue}
01327811877043 Sat Jan 28 23:37:57 EST 2012 jacomecha[tid:11] <INFO>: [ 807] bytes: 12500992 | delta: 105795000 nsec | Bps: 118162408 | wps: 14770301 {ConcurrentLinkedQueue}
01327811877283 Sat Jan 28 23:37:57 EST 2012 jacomecha[tid:11] <INFO>: [ 808] bytes: 12500992 | delta: 239513000 nsec | Bps: 52193376 | wps: 6524172 {ConcurrentLinkedQueue}
01327811877392 Sat Jan 28 23:37:57 EST 2012 jacomecha[tid:11] <INFO>: [ 809] bytes: 12500992 | delta: 108984000 nsec | Bps: 114704837 | wps: 14338105 {ConcurrentLinkedQueue}
01327811877500 Sat Jan 28 23:37:57 EST 2012 jacomecha[tid:11] <INFO>: [ 810] bytes: 12500992 | delta: 107088000 nsec | Bps: 116735694 | wps: 14591962 {ConcurrentLinkedQueue}
01327811877610 Sat Jan 28 23:37:57 EST 2012 jacomecha[tid:11] <INFO>: [ 811] bytes: 12500992 | delta: 110176000 nsec | Bps: 113463840 | wps: 14182980 {ConcurrentLinkedQueue}
01327811877729 Sat Jan 28 23:37:57 EST 2012 jacomecha[tid:11] <INFO>: [ 812] bytes: 12500992 | delta: 118126000 nsec | Bps: 105827608 | wps: 13228451 {ConcurrentLinkedQueue}
01327811877849 Sat Jan 28 23:37:57 EST 2012 jacomecha[tid:11] <INFO>: [ 813] bytes: 12500992 | delta: 119745000 nsec | Bps: 104396776 | wps: 13049597 {ConcurrentLinkedQueue}
01327811877960 Sat Jan 28 23:37:57 EST 2012 jacomecha[tid:11] <INFO>: [ 814] bytes: 12500992 | delta: 110316000 nsec | Bps: 113319845 | wps: 14164981 {ConcurrentLinkedQueue}
01327811878071 Sat Jan 28 23:37:58 EST 2012 jacomecha[tid:11] <INFO>: [ 815] bytes: 12500992 | delta: 111351000 nsec | Bps: 112266545 | wps: 14033318 {ConcurrentLinkedQueue}
01327811878180 Sat Jan 28 23:37:58 EST 2012 jacomecha[tid:11] <INFO>: [ 816] bytes: 12500992 | delta: 107672000 nsec | Bps: 116102534 | wps: 14512817 {ConcurrentLinkedQueue}
01327811878291 Sat Jan 28 23:37:58 EST 2012 jacomecha[tid:11] <INFO>: [ 817] bytes: 12500992 | delta: 110904000 nsec | Bps: 112719036 | wps: 14089880 {ConcurrentLinkedQueue}
01327811878409 Sat Jan 28 23:37:58 EST 2012 jacomecha[tid:11] <INFO>: [ 818] bytes: 12500992 | delta: 118198000 nsec | Bps: 105763143 | wps: 13220393 {ConcurrentLinkedQueue}
01327811878516 Sat Jan 28 23:37:58 EST 2012 jacomecha[tid:11] <INFO>: [ 819] bytes: 12500992 | delta: 100024000 nsec | Bps: 124979925 | wps: 15622491 {ConcurrentLinkedQueue}
01327811878623 Sat Jan 28 23:37:58 EST 2012 jacomecha[tid:11] <INFO>: [ 820] bytes: 12500992 | delta: 105535000 nsec | Bps: 118453518 | wps: 14806690 {ConcurrentLinkedQueue}
01327811878733 Sat Jan 28 23:37:58 EST 2012 jacomecha[tid:11] <INFO>: [ 821] bytes: 12500992 | delta: 109632000 nsec | Bps: 114026853 | wps: 14253357 {ConcurrentLinkedQueue}
01327811878849 Sat Jan 28 23:37:58 EST 2012 jacomecha[tid:11] <INFO>: [ 822] bytes: 12500992 | delta: 114996000 nsec | Bps: 108708059 | wps: 13588507 {ConcurrentLinkedQueue}
01327811878957 Sat Jan 28 23:37:58 EST 2012 jacomecha[tid:11] <INFO>: [ 823] bytes: 12500992 | delta: 108450000 nsec | Bps: 115269636 | wps: 14408704 {ConcurrentLinkedQueue}
01327811879078 Sat Jan 28 23:37:59 EST 2012 jacomecha[tid:11] <INFO>: [ 824] bytes: 12500992 | delta: 120070000 nsec | Bps: 104114200 | wps: 13014275 {ConcurrentLinkedQueue}
01327811879187 Sat Jan 28 23:37:59 EST 2012 jacomecha[tid:11] <INFO>: [ 825] bytes: 12500992 | delta: 108343000 nsec | Bps: 115383477 | wps: 14422935 {ConcurrentLinkedQueue}
01327811879297 Sat Jan 28 23:37:59 EST 2012 jacomecha[tid:11] <INFO>: [ 826] bytes: 12500992 | delta: 110030000 nsec | Bps: 113614396 | wps: 14201800 {ConcurrentLinkedQueue}
01327811879410 Sat Jan 28 23:37:59 EST 2012 jacomecha[tid:11] <INFO>: [ 827] bytes: 12500992 | delta: 112161000 nsec | Bps: 111455782 | wps: 13931973 {ConcurrentLinkedQueue}
01327811879523 Sat Jan 28 23:37:59 EST 2012 jacomecha[tid:11] <INFO>: [ 828] bytes: 12500992 | delta: 112317000 nsec | Bps: 111300978 | wps: 13912622 {ConcurrentLinkedQueue}
01327811879635 Sat Jan 28 23:37:59 EST 2012 jacomecha[tid:11] <INFO>: [ 829] bytes: 12500992 | delta: 111892000 nsec | Bps: 111723734 | wps: 13965467 {ConcurrentLinkedQueue}
01327811879757 Sat Jan 28 23:37:59 EST 2012 jacomecha[tid:11] <INFO>: [ 830] bytes: 12500992 | delta: 121520000 nsec | Bps: 102871889 | wps: 12858986 {ConcurrentLinkedQueue}
01327811879870 Sat Jan 28 23:37:59 EST 2012 jacomecha[tid:11] <INFO>: [ 831] bytes: 12500992 | delta: 112867000 nsec | Bps: 110758610 | wps: 13844826 {ConcurrentLinkedQueue}
01327811879980 Sat Jan 28 23:37:59 EST 2012 jacomecha[tid:11] <INFO>: [ 832] bytes: 12500992 | delta: 109519000 nsec | Bps: 114144505 | wps: 14268063 {ConcurrentLinkedQueue}
01327811880159 Sat Jan 28 23:38:00 EST 2012 jacomecha[tid:11] <INFO>: [ 833] bytes: 12500992 | delta: 178618000 nsec | Bps: 69987303 | wps: 8748413 {ConcurrentLinkedQueue}
01327811880268 Sat Jan 28 23:38:00 EST 2012 jacomecha[tid:11] <INFO>: [ 834] bytes: 12500992 | delta: 108086000 nsec | Bps: 115657828 | wps: 14457229 {ConcurrentLinkedQueue}
01327811880375 Sat Jan 28 23:38:00 EST 2012 jacomecha[tid:11] <INFO>: [ 835] bytes: 12500992 | delta: 107090000 nsec | Bps: 116733514 | wps: 14591689 {ConcurrentLinkedQueue}
01327811880486 Sat Jan 28 23:38:00 EST 2012 jacomecha[tid:11] <INFO>: [ 836] bytes: 12500992 | delta: 110560000 nsec | Bps: 113069754 | wps: 14133719 {ConcurrentLinkedQueue}
01327811880596 Sat Jan 28 23:38:00 EST 2012 jacomecha[tid:11] <INFO>: [ 837] bytes: 12500992 | delta: 109705000 nsec | Bps: 113950978 | wps: 14243872 {ConcurrentLinkedQueue}
01327811880704 Sat Jan 28 23:38:00 EST 2012 jacomecha[tid:11] <INFO>: [ 838] bytes: 12500992 | delta: 107420000 nsec | Bps: 116374902 | wps: 14546863 {ConcurrentLinkedQueue}
01327811880814 Sat Jan 28 23:38:00 EST 2012 jacomecha[tid:11] <INFO>: [ 839] bytes: 12500992 | delta: 109868000 nsec | Bps: 113781920 | wps: 14222740 {ConcurrentLinkedQueue}
01327811880923 Sat Jan 28 23:38:00 EST 2012 jacomecha[tid:11] <INFO>: [ 840] bytes: 12500992 | delta: 108295000 nsec | Bps: 115434618 | wps: 14429327 {ConcurrentLinkedQueue}
01327811881034 Sat Jan 28 23:38:01 EST 2012 jacomecha[tid:11] <INFO>: [ 841] bytes: 12500992 | delta: 100071000 nsec | Bps: 124921226 | wps: 15615153 {ConcurrentLinkedQueue}
01327811881140 Sat Jan 28 23:38:01 EST 2012 jacomecha[tid:11] <INFO>: [ 842] bytes: 12500992 | delta: 105549000 nsec | Bps: 118437806 | wps: 14804726 {ConcurrentLinkedQueue}
01327811881250 Sat Jan 28 23:38:01 EST 2012 jacomecha[tid:11] <INFO>: [ 843] bytes: 12500992 | delta: 109645000 nsec | Bps: 114013334 | wps: 14251667 {ConcurrentLinkedQueue}
01327811881361 Sat Jan 28 23:38:01 EST 2012 jacomecha[tid:11] <INFO>: [ 844] bytes: 12500992 | delta: 110842000 nsec | Bps: 112782086 | wps: 14097761 {ConcurrentLinkedQueue}
01327811881472 Sat Jan 28 23:38:01 EST 2012 jacomecha[tid:11] <INFO>: [ 845] bytes: 12500992 | delta: 110796000 nsec | Bps: 112828911 | wps: 14103614 {ConcurrentLinkedQueue}
01327811881583 Sat Jan 28 23:38:01 EST 2012 jacomecha[tid:11] <INFO>: [ 846] bytes: 12500992 | delta: 110168000 nsec | Bps: 113472079 | wps: 14184010 {ConcurrentLinkedQueue}
01327811881700 Sat Jan 28 23:38:01 EST 2012 jacomecha[tid:11] <INFO>: [ 847] bytes: 12500992 | delta: 116714000 nsec | Bps: 107107905 | wps: 13388488 {ConcurrentLinkedQueue}
01327811881820 Sat Jan 28 23:38:01 EST 2012 jacomecha[tid:11] <INFO>: [ 848] bytes: 12500992 | delta: 119226000 nsec | Bps: 104851224 | wps: 13106403 {ConcurrentLinkedQueue}
01327811881931 Sat Jan 28 23:38:01 EST 2012 jacomecha[tid:11] <INFO>: [ 849] bytes: 12500992 | delta: 110533000 nsec | Bps: 113097374 | wps: 14137172 {ConcurrentLinkedQueue}
01327811882042 Sat Jan 28 23:38:02 EST 2012 jacomecha[tid:11] <INFO>: [ 850] bytes: 12500992 | delta: 110688000 nsec | Bps: 112939000 | wps: 14117375 {ConcurrentLinkedQueue}
01327811882152 Sat Jan 28 23:38:02 EST 2012 jacomecha[tid:11] <INFO>: [ 851] bytes: 12500992 | delta: 109805000 nsec | Bps: 113847202 | wps: 14230900 {ConcurrentLinkedQueue}
01327811882261 Sat Jan 28 23:38:02 EST 2012 jacomecha[tid:11] <INFO>: [ 852] bytes: 12500992 | delta: 108979000 nsec | Bps: 114710100 | wps: 14338763 {ConcurrentLinkedQueue}
01327811882371 Sat Jan 28 23:38:02 EST 2012 jacomecha[tid:11] <INFO>: [ 853] bytes: 12500992 | delta: 109565000 nsec | Bps: 114096582 | wps: 14262073 {ConcurrentLinkedQueue}
01327811882481 Sat Jan 28 23:38:02 EST 2012 jacomecha[tid:11] <INFO>: [ 854] bytes: 12500992 | delta: 109318000 nsec | Bps: 114354379 | wps: 14294297 {ConcurrentLinkedQueue}
01327811882589 Sat Jan 28 23:38:02 EST 2012 jacomecha[tid:11] <INFO>: [ 855] bytes: 12500992 | delta: 107818000 nsec | Bps: 115945315 | wps: 14493164 {ConcurrentLinkedQueue}
01327811882699 Sat Jan 28 23:38:02 EST 2012 jacomecha[tid:11] <INFO>: [ 856] bytes: 12500992 | delta: 109723000 nsec | Bps: 113932284 | wps: 14241536 {ConcurrentLinkedQueue}
01327811882809 Sat Jan 28 23:38:02 EST 2012 jacomecha[tid:11] <INFO>: [ 857] bytes: 12500992 | delta: 108994000 nsec | Bps: 114694313 | wps: 14336789 {ConcurrentLinkedQueue}
01327811883026 Sat Jan 28 23:38:03 EST 2012 jacomecha[tid:11] <INFO>: [ 858] bytes: 12500992 | delta: 217181000 nsec | Bps: 57560247 | wps: 7195031 {ConcurrentLinkedQueue}
01327811883158 Sat Jan 28 23:38:03 EST 2012 jacomecha[tid:11] <INFO>: [ 859] bytes: 12500992 | delta: 131746000 nsec | Bps: 94887071 | wps: 11860884 {ConcurrentLinkedQueue}
01327811883283 Sat Jan 28 23:38:03 EST 2012 jacomecha[tid:11] <INFO>: [ 860] bytes: 12500992 | delta: 124264000 nsec | Bps: 100600270 | wps: 12575034 {ConcurrentLinkedQueue}
01327811883397 Sat Jan 28 23:38:03 EST 2012 jacomecha[tid:11] <INFO>: [ 861] bytes: 12500992 | delta: 113546000 nsec | Bps: 110096278 | wps: 13762035 {ConcurrentLinkedQueue}
01327811883507 Sat Jan 28 23:38:03 EST 2012 jacomecha[tid:11] <INFO>: [ 862] bytes: 12500992 | delta: 110082000 nsec | Bps: 113560727 | wps: 14195091 {ConcurrentLinkedQueue}
01327811883618 Sat Jan 28 23:38:03 EST 2012 jacomecha[tid:11] <INFO>: [ 863] bytes: 12500992 | delta: 110390000 nsec | Bps: 113243881 | wps: 14155485 {ConcurrentLinkedQueue}
01327811883736 Sat Jan 28 23:38:03 EST 2012 jacomecha[tid:11] <INFO>: [ 864] bytes: 12500992 | delta: 117212000 nsec | Bps: 106652834 | wps: 13331604 {ConcurrentLinkedQueue}
01327811883852 Sat Jan 28 23:38:03 EST 2012 jacomecha[tid:11] <INFO>: [ 865] bytes: 12500992 | delta: 116097000 nsec | Bps: 107677132 | wps: 13459642 {ConcurrentLinkedQueue}
01327811883962 Sat Jan 28 23:38:03 EST 2012 jacomecha[tid:11] <INFO>: [ 866] bytes: 12500992 | delta: 108860000 nsec | Bps: 114835495 | wps: 14354437 {ConcurrentLinkedQueue}
01327811884075 Sat Jan 28 23:38:04 EST 2012 jacomecha[tid:11] <INFO>: [ 867] bytes: 12500992 | delta: 112695000 nsec | Bps: 110927654 | wps: 13865957 {ConcurrentLinkedQueue}
01327811884185 Sat Jan 28 23:38:04 EST 2012 jacomecha[tid:11] <INFO>: [ 868] bytes: 12500992 | delta: 109949000 nsec | Bps: 113698096 | wps: 14212262 {ConcurrentLinkedQueue}
01327811884297 Sat Jan 28 23:38:04 EST 2012 jacomecha[tid:11] <INFO>: [ 869] bytes: 12500992 | delta: 111632000 nsec | Bps: 111983947 | wps: 13997993 {ConcurrentLinkedQueue}
01327811884408 Sat Jan 28 23:38:04 EST 2012 jacomecha[tid:11] <INFO>: [ 870] bytes: 12500992 | delta: 110358000 nsec | Bps: 113276718 | wps: 14159590 {ConcurrentLinkedQueue}
01327811884518 Sat Jan 28 23:38:04 EST 2012 jacomecha[tid:11] <INFO>: [ 871] bytes: 12500992 | delta: 109747000 nsec | Bps: 113907369 | wps: 14238421 {ConcurrentLinkedQueue}
01327811884628 Sat Jan 28 23:38:04 EST 2012 jacomecha[tid:11] <INFO>: [ 872] bytes: 12500992 | delta: 108319000 nsec | Bps: 115409042 | wps: 14426130 {ConcurrentLinkedQueue}
01327811884738 Sat Jan 28 23:38:04 EST 2012 jacomecha[tid:11] <INFO>: [ 873] bytes: 12500992 | delta: 109516000 nsec | Bps: 114147631 | wps: 14268454 {ConcurrentLinkedQueue}
01327811884851 Sat Jan 28 23:38:04 EST 2012 jacomecha[tid:11] <INFO>: [ 874] bytes: 12500992 | delta: 112134000 nsec | Bps: 111482619 | wps: 13935327 {ConcurrentLinkedQueue}
01327811884963 Sat Jan 28 23:38:04 EST 2012 jacomecha[tid:11] <INFO>: [ 875] bytes: 12500992 | delta: 110892000 nsec | Bps: 112731234 | wps: 14091404 {ConcurrentLinkedQueue}
01327811885071 Sat Jan 28 23:38:05 EST 2012 jacomecha[tid:11] <INFO>: [ 876] bytes: 12500992 | delta: 107947000 nsec | Bps: 115806757 | wps: 14475845 {ConcurrentLinkedQueue}
01327811885179 Sat Jan 28 23:38:05 EST 2012 jacomecha[tid:11] <INFO>: [ 877] bytes: 12500992 | delta: 107973000 nsec | Bps: 115778871 | wps: 14472359 {ConcurrentLinkedQueue}
01327811885288 Sat Jan 28 23:38:05 EST 2012 jacomecha[tid:11] <INFO>: [ 878] bytes: 12500992 | delta: 108317000 nsec | Bps: 115411173 | wps: 14426397 {ConcurrentLinkedQueue}
01327811885398 Sat Jan 28 23:38:05 EST 2012 jacomecha[tid:11] <INFO>: [ 879] bytes: 12500992 | delta: 109260000 nsec | Bps: 114415083 | wps: 14301885 {ConcurrentLinkedQueue}
01327811885506 Sat Jan 28 23:38:05 EST 2012 jacomecha[tid:11] <INFO>: [ 880] bytes: 12500992 | delta: 108102000 nsec | Bps: 115640710 | wps: 14455089 {ConcurrentLinkedQueue}
01327811885621 Sat Jan 28 23:38:05 EST 2012 jacomecha[tid:11] <INFO>: [ 881] bytes: 12500992 | delta: 112226000 nsec | Bps: 111391228 | wps: 13923904 {ConcurrentLinkedQueue}
01327811885741 Sat Jan 28 23:38:05 EST 2012 jacomecha[tid:11] <INFO>: [ 882] bytes: 12500992 | delta: 120020000 nsec | Bps: 104157574 | wps: 13019697 {ConcurrentLinkedQueue}
01327811885969 Sat Jan 28 23:38:05 EST 2012 jacomecha[tid:11] <INFO>: [ 883] bytes: 12500992 | delta: 227320000 nsec | Bps: 54992926 | wps: 6874116 {ConcurrentLinkedQueue}
01327811886077 Sat Jan 28 23:38:06 EST 2012 jacomecha[tid:11] <INFO>: [ 884] bytes: 12500992 | delta: 107292000 nsec | Bps: 116513738 | wps: 14564217 {ConcurrentLinkedQueue}
01327811886189 Sat Jan 28 23:38:06 EST 2012 jacomecha[tid:11] <INFO>: [ 885] bytes: 12500992 | delta: 111307000 nsec | Bps: 112310924 | wps: 14038865 {ConcurrentLinkedQueue}
01327811886298 Sat Jan 28 23:38:06 EST 2012 jacomecha[tid:11] <INFO>: [ 886] bytes: 12500992 | delta: 108765000 nsec | Bps: 114935797 | wps: 14366975 {ConcurrentLinkedQueue}
01327811886406 Sat Jan 28 23:38:06 EST 2012 jacomecha[tid:11] <INFO>: [ 887] bytes: 12500992 | delta: 107593000 nsec | Bps: 116187782 | wps: 14523473 {ConcurrentLinkedQueue}
01327811886514 Sat Jan 28 23:38:06 EST 2012 jacomecha[tid:11] <INFO>: [ 888] bytes: 12500992 | delta: 108318000 nsec | Bps: 115410107 | wps: 14426263 {ConcurrentLinkedQueue}
01327811886623 Sat Jan 28 23:38:06 EST 2012 jacomecha[tid:11] <INFO>: [ 889] bytes: 12500992 | delta: 108170000 nsec | Bps: 115568013 | wps: 14446002 {ConcurrentLinkedQueue}
01327811886735 Sat Jan 28 23:38:06 EST 2012 jacomecha[tid:11] <INFO>: [ 890] bytes: 12500992 | delta: 111122000 nsec | Bps: 112497903 | wps: 14062238 {ConcurrentLinkedQueue}
01327811886844 Sat Jan 28 23:38:06 EST 2012 jacomecha[tid:11] <INFO>: [ 891] bytes: 12500992 | delta: 108431000 nsec | Bps: 115289834 | wps: 14411229 {ConcurrentLinkedQueue}
01327811886954 Sat Jan 28 23:38:06 EST 2012 jacomecha[tid:11] <INFO>: [ 892] bytes: 12500992 | delta: 109492000 nsec | Bps: 114172652 | wps: 14271581 {ConcurrentLinkedQueue}
01327811887062 Sat Jan 28 23:38:07 EST 2012 jacomecha[tid:11] <INFO>: [ 893] bytes: 12500992 | delta: 107915000 nsec | Bps: 115841097 | wps: 14480137 {ConcurrentLinkedQueue}
01327811887171 Sat Jan 28 23:38:07 EST 2012 jacomecha[tid:11] <INFO>: [ 894] bytes: 12500992 | delta: 108263000 nsec | Bps: 115468738 | wps: 14433592 {ConcurrentLinkedQueue}
01327811887280 Sat Jan 28 23:38:07 EST 2012 jacomecha[tid:11] <INFO>: [ 895] bytes: 12500992 | delta: 108611000 nsec | Bps: 115098765 | wps: 14387346 {ConcurrentLinkedQueue}
01327811887388 Sat Jan 28 23:38:07 EST 2012 jacomecha[tid:11] <INFO>: [ 896] bytes: 12500992 | delta: 108311000 nsec | Bps: 115417566 | wps: 14427196 {ConcurrentLinkedQueue}
01327811887498 Sat Jan 28 23:38:07 EST 2012 jacomecha[tid:11] <INFO>: [ 897] bytes: 12500992 | delta: 109522000 nsec | Bps: 114141378 | wps: 14267672 {ConcurrentLinkedQueue}
01327811887607 Sat Jan 28 23:38:07 EST 2012 jacomecha[tid:11] <INFO>: [ 898] bytes: 12500992 | delta: 108409000 nsec | Bps: 115313230 | wps: 14414154 {ConcurrentLinkedQueue}
01327811887728 Sat Jan 28 23:38:07 EST 2012 jacomecha[tid:11] <INFO>: [ 899] bytes: 12500992 | delta: 120001000 nsec | Bps: 104174065 | wps: 13021758 {ConcurrentLinkedQueue}
01327811887858 Sat Jan 28 23:38:07 EST 2012 jacomecha[tid:11] <INFO>: [ 900] bytes: 12500992 | delta: 130524000 nsec | Bps: 95775428 | wps: 11971929 {ConcurrentLinkedQueue}
01327811887969 Sat Jan 28 23:38:07 EST 2012 jacomecha[tid:11] <INFO>: [ 901] bytes: 12500992 | delta: 109769000 nsec | Bps: 113884539 | wps: 14235567 {ConcurrentLinkedQueue}
01327811888078 Sat Jan 28 23:38:08 EST 2012 jacomecha[tid:11] <INFO>: [ 902] bytes: 12500992 | delta: 108835000 nsec | Bps: 114861873 | wps: 14357734 {ConcurrentLinkedQueue}
01327811888185 Sat Jan 28 23:38:08 EST 2012 jacomecha[tid:11] <INFO>: [ 903] bytes: 12500992 | delta: 106764000 nsec | Bps: 117089955 | wps: 14636244 {ConcurrentLinkedQueue}
01327811888298 Sat Jan 28 23:38:08 EST 2012 jacomecha[tid:11] <INFO>: [ 904] bytes: 12500992 | delta: 112913000 nsec | Bps: 110713487 | wps: 13839186 {ConcurrentLinkedQueue}
01327811888408 Sat Jan 28 23:38:08 EST 2012 jacomecha[tid:11] <INFO>: [ 905] bytes: 12500992 | delta: 109747000 nsec | Bps: 113907369 | wps: 14238421 {ConcurrentLinkedQueue}
01327811888520 Sat Jan 28 23:38:08 EST 2012 jacomecha[tid:11] <INFO>: [ 906] bytes: 12500992 | delta: 110900000 nsec | Bps: 112723102 | wps: 14090388 {ConcurrentLinkedQueue}
01327811888628 Sat Jan 28 23:38:08 EST 2012 jacomecha[tid:11] <INFO>: [ 907] bytes: 12500992 | delta: 107942000 nsec | Bps: 115812121 | wps: 14476515 {ConcurrentLinkedQueue}
01327811888871 Sat Jan 28 23:38:08 EST 2012 jacomecha[tid:11] <INFO>: [ 908] bytes: 12500992 | delta: 109876000 nsec | Bps: 113773636 | wps: 14221704 {ConcurrentLinkedQueue}
01327811888979 Sat Jan 28 23:38:08 EST 2012 jacomecha[tid:11] <INFO>: [ 909] bytes: 12500992 | delta: 107550000 nsec | Bps: 116234235 | wps: 14529279 {ConcurrentLinkedQueue}
01327811889087 Sat Jan 28 23:38:09 EST 2012 jacomecha[tid:11] <INFO>: [ 910] bytes: 12500992 | delta: 108393000 nsec | Bps: 115330252 | wps: 14416281 {ConcurrentLinkedQueue}
01327811889197 Sat Jan 28 23:38:09 EST 2012 jacomecha[tid:11] <INFO>: [ 911] bytes: 12500992 | delta: 108877000 nsec | Bps: 114817565 | wps: 14352196 {ConcurrentLinkedQueue}
01327811889306 Sat Jan 28 23:38:09 EST 2012 jacomecha[tid:11] <INFO>: [ 912] bytes: 12500992 | delta: 107859000 nsec | Bps: 115901241 | wps: 14487655 {ConcurrentLinkedQueue}
01327811889415 Sat Jan 28 23:38:09 EST 2012 jacomecha[tid:11] <INFO>: [ 913] bytes: 12500992 | delta: 108635000 nsec | Bps: 115073337 | wps: 14384167 {ConcurrentLinkedQueue}
01327811889525 Sat Jan 28 23:38:09 EST 2012 jacomecha[tid:11] <INFO>: [ 914] bytes: 12500992 | delta: 110003000 nsec | Bps: 113642282 | wps: 14205285 {ConcurrentLinkedQueue}
01327811889634 Sat Jan 28 23:38:09 EST 2012 jacomecha[tid:11] <INFO>: [ 915] bytes: 12500992 | delta: 108187000 nsec | Bps: 115549853 | wps: 14443732 {ConcurrentLinkedQueue}
01327811889761 Sat Jan 28 23:38:09 EST 2012 jacomecha[tid:11] <INFO>: [ 916] bytes: 12500992 | delta: 122756000 nsec | Bps: 101836098 | wps: 12729512 {ConcurrentLinkedQueue}
01327811889871 Sat Jan 28 23:38:09 EST 2012 jacomecha[tid:11] <INFO>: [ 917] bytes: 12500992 | delta: 109365000 nsec | Bps: 114305235 | wps: 14288154 {ConcurrentLinkedQueue}
01327811889982 Sat Jan 28 23:38:09 EST 2012 jacomecha[tid:11] <INFO>: [ 918] bytes: 12500992 | delta: 110836000 nsec | Bps: 112788192 | wps: 14098524 {ConcurrentLinkedQueue}
01327811890094 Sat Jan 28 23:38:10 EST 2012 jacomecha[tid:11] <INFO>: [ 919] bytes: 12500992 | delta: 112189000 nsec | Bps: 111427965 | wps: 13928496 {ConcurrentLinkedQueue}
01327811890203 Sat Jan 28 23:38:10 EST 2012 jacomecha[tid:11] <INFO>: [ 920] bytes: 12500992 | delta: 108369000 nsec | Bps: 115355794 | wps: 14419474 {ConcurrentLinkedQueue}
01327811890315 Sat Jan 28 23:38:10 EST 2012 jacomecha[tid:11] <INFO>: [ 921] bytes: 12500992 | delta: 111743000 nsec | Bps: 111872708 | wps: 13984088 {ConcurrentLinkedQueue}
01327811890426 Sat Jan 28 23:38:10 EST 2012 jacomecha[tid:11] <INFO>: [ 922] bytes: 12500992 | delta: 110112000 nsec | Bps: 113529788 | wps: 14191223 {ConcurrentLinkedQueue}
01327811890537 Sat Jan 28 23:38:10 EST 2012 jacomecha[tid:11] <INFO>: [ 923] bytes: 12500992 | delta: 110532000 nsec | Bps: 113098397 | wps: 14137300 {ConcurrentLinkedQueue}
01327811890647 Sat Jan 28 23:38:10 EST 2012 jacomecha[tid:11] <INFO>: [ 924] bytes: 12500992 | delta: 109783000 nsec | Bps: 113870016 | wps: 14233752 {ConcurrentLinkedQueue}
01327811890758 Sat Jan 28 23:38:10 EST 2012 jacomecha[tid:11] <INFO>: [ 925] bytes: 12500992 | delta: 110516000 nsec | Bps: 113114771 | wps: 14139346 {ConcurrentLinkedQueue}
01327811890867 Sat Jan 28 23:38:10 EST 2012 jacomecha[tid:11] <INFO>: [ 926] bytes: 12500992 | delta: 108807000 nsec | Bps: 114891432 | wps: 14361429 {ConcurrentLinkedQueue}
01327811890978 Sat Jan 28 23:38:10 EST 2012 jacomecha[tid:11] <INFO>: [ 927] bytes: 12500992 | delta: 110343000 nsec | Bps: 113292116 | wps: 14161515 {ConcurrentLinkedQueue}
01327811891088 Sat Jan 28 23:38:11 EST 2012 jacomecha[tid:11] <INFO>: [ 928] bytes: 12500992 | delta: 109952000 nsec | Bps: 113694994 | wps: 14211874 {ConcurrentLinkedQueue}
01327811891196 Sat Jan 28 23:38:11 EST 2012 jacomecha[tid:11] <INFO>: [ 929] bytes: 12500992 | delta: 107567000 nsec | Bps: 116215865 | wps: 14526983 {ConcurrentLinkedQueue}
01327811891307 Sat Jan 28 23:38:11 EST 2012 jacomecha[tid:11] <INFO>: [ 930] bytes: 12500992 | delta: 110380000 nsec | Bps: 113254140 | wps: 14156768 {ConcurrentLinkedQueue}
01327811891414 Sat Jan 28 23:38:11 EST 2012 jacomecha[tid:11] <INFO>: [ 931] bytes: 12500992 | delta: 106582000 nsec | Bps: 117289899 | wps: 14661237 {ConcurrentLinkedQueue}
01327811891527 Sat Jan 28 23:38:11 EST 2012 jacomecha[tid:11] <INFO>: [ 932] bytes: 12500992 | delta: 112882000 nsec | Bps: 110743892 | wps: 13842986 {ConcurrentLinkedQueue}
01327811891716 Sat Jan 28 23:38:11 EST 2012 jacomecha[tid:11] <INFO>: [ 933] bytes: 12500992 | delta: 112194000 nsec | Bps: 111422999 | wps: 13927875 {ConcurrentLinkedQueue}
01327811891829 Sat Jan 28 23:38:11 EST 2012 jacomecha[tid:11] <INFO>: [ 934] bytes: 12500992 | delta: 112015000 nsec | Bps: 111601053 | wps: 13950132 {ConcurrentLinkedQueue}
01327811891939 Sat Jan 28 23:38:11 EST 2012 jacomecha[tid:11] <INFO>: [ 935] bytes: 12500992 | delta: 110308000 nsec | Bps: 113328063 | wps: 14166008 {ConcurrentLinkedQueue}
01327811892048 Sat Jan 28 23:38:12 EST 2012 jacomecha[tid:11] <INFO>: [ 936] bytes: 12500992 | delta: 108383000 nsec | Bps: 115340893 | wps: 14417612 {ConcurrentLinkedQueue}
01327811892159 Sat Jan 28 23:38:12 EST 2012 jacomecha[tid:11] <INFO>: [ 937] bytes: 12500992 | delta: 110525000 nsec | Bps: 113105560 | wps: 14138195 {ConcurrentLinkedQueue}
01327811892271 Sat Jan 28 23:38:12 EST 2012 jacomecha[tid:11] <INFO>: [ 938] bytes: 12500992 | delta: 111129000 nsec | Bps: 112490817 | wps: 14061352 {ConcurrentLinkedQueue}
01327811892380 Sat Jan 28 23:38:12 EST 2012 jacomecha[tid:11] <INFO>: [ 939] bytes: 12500992 | delta: 108472000 nsec | Bps: 115246257 | wps: 14405782 {ConcurrentLinkedQueue}
01327811892491 Sat Jan 28 23:38:12 EST 2012 jacomecha[tid:11] <INFO>: [ 940] bytes: 12500992 | delta: 110003000 nsec | Bps: 113642282 | wps: 14205285 {ConcurrentLinkedQueue}
01327811892601 Sat Jan 28 23:38:12 EST 2012 jacomecha[tid:11] <INFO>: [ 941] bytes: 12500992 | delta: 110134000 nsec | Bps: 113507110 | wps: 14188389 {ConcurrentLinkedQueue}
01327811892712 Sat Jan 28 23:38:12 EST 2012 jacomecha[tid:11] <INFO>: [ 942] bytes: 12500992 | delta: 110784000 nsec | Bps: 112841132 | wps: 14105142 {ConcurrentLinkedQueue}
01327811892823 Sat Jan 28 23:38:12 EST 2012 jacomecha[tid:11] <INFO>: [ 943] bytes: 12500992 | delta: 110603000 nsec | Bps: 113025795 | wps: 14128224 {ConcurrentLinkedQueue}
01327811892932 Sat Jan 28 23:38:12 EST 2012 jacomecha[tid:11] <INFO>: [ 944] bytes: 12500992 | delta: 107841000 nsec | Bps: 115920587 | wps: 14490073 {ConcurrentLinkedQueue}
01327811893040 Sat Jan 28 23:38:13 EST 2012 jacomecha[tid:11] <INFO>: [ 945] bytes: 12500992 | delta: 107996000 nsec | Bps: 115754213 | wps: 14469277 {ConcurrentLinkedQueue}
01327811893151 Sat Jan 28 23:38:13 EST 2012 jacomecha[tid:11] <INFO>: [ 946] bytes: 12500992 | delta: 110873000 nsec | Bps: 112750552 | wps: 14093819 {ConcurrentLinkedQueue}
01327811893262 Sat Jan 28 23:38:13 EST 2012 jacomecha[tid:11] <INFO>: [ 947] bytes: 12500992 | delta: 110749000 nsec | Bps: 112876793 | wps: 14109599 {ConcurrentLinkedQueue}
01327811893376 Sat Jan 28 23:38:13 EST 2012 jacomecha[tid:11] <INFO>: [ 948] bytes: 12500992 | delta: 113009000 nsec | Bps: 110619437 | wps: 13827430 {ConcurrentLinkedQueue}
01327811893484 Sat Jan 28 23:38:13 EST 2012 jacomecha[tid:11] <INFO>: [ 949] bytes: 12500992 | delta: 108194000 nsec | Bps: 115542378 | wps: 14442797 {ConcurrentLinkedQueue}
01327811893595 Sat Jan 28 23:38:13 EST 2012 jacomecha[tid:11] <INFO>: [ 950] bytes: 12500992 | delta: 110204000 nsec | Bps: 113435011 | wps: 14179376 {ConcurrentLinkedQueue}
01327811893723 Sat Jan 28 23:38:13 EST 2012 jacomecha[tid:11] <INFO>: [ 951] bytes: 12500992 | delta: 127558000 nsec | Bps: 98002415 | wps: 12250302 {ConcurrentLinkedQueue}
01327811893841 Sat Jan 28 23:38:13 EST 2012 jacomecha[tid:11] <INFO>: [ 952] bytes: 12500992 | delta: 117470000 nsec | Bps: 106418592 | wps: 13302324 {ConcurrentLinkedQueue}
01327811893952 Sat Jan 28 23:38:13 EST 2012 jacomecha[tid:11] <INFO>: [ 953] bytes: 12500992 | delta: 110627000 nsec | Bps: 113001275 | wps: 14125159 {ConcurrentLinkedQueue}
01327811894061 Sat Jan 28 23:38:14 EST 2012 jacomecha[tid:11] <INFO>: [ 954] bytes: 12500992 | delta: 108542000 nsec | Bps: 115171933 | wps: 14396492 {ConcurrentLinkedQueue}
01327811894178 Sat Jan 28 23:38:14 EST 2012 jacomecha[tid:11] <INFO>: [ 955] bytes: 12500992 | delta: 115926000 nsec | Bps: 107835964 | wps: 13479496 {ConcurrentLinkedQueue}
01327811894289 Sat Jan 28 23:38:14 EST 2012 jacomecha[tid:11] <INFO>: [ 956] bytes: 12500992 | delta: 111275000 nsec | Bps: 112343222 | wps: 14042903 {ConcurrentLinkedQueue}
01327811894393 Sat Jan 28 23:38:14 EST 2012 jacomecha[tid:11] <INFO>: [ 957] bytes: 12500992 | delta: 103162000 nsec | Bps: 121178263 | wps: 15147283 {ConcurrentLinkedQueue}
01327811894613 Sat Jan 28 23:38:14 EST 2012 jacomecha[tid:11] <INFO>: [ 958] bytes: 12500992 | delta: 110092000 nsec | Bps: 113550412 | wps: 14193802 {ConcurrentLinkedQueue}
01327811894722 Sat Jan 28 23:38:14 EST 2012 jacomecha[tid:11] <INFO>: [ 959] bytes: 12500992 | delta: 109394000 nsec | Bps: 114274933 | wps: 14284367 {ConcurrentLinkedQueue}
01327811894832 Sat Jan 28 23:38:14 EST 2012 jacomecha[tid:11] <INFO>: [ 960] bytes: 12500992 | delta: 109527000 nsec | Bps: 114136167 | wps: 14267021 {ConcurrentLinkedQueue}
01327811894942 Sat Jan 28 23:38:14 EST 2012 jacomecha[tid:11] <INFO>: [ 961] bytes: 12500992 | delta: 109329000 nsec | Bps: 114342873 | wps: 14292859 {ConcurrentLinkedQueue}
01327811895051 Sat Jan 28 23:38:15 EST 2012 jacomecha[tid:11] <INFO>: [ 962] bytes: 12500992 | delta: 108947000 nsec | Bps: 114743793 | wps: 14342974 {ConcurrentLinkedQueue}
01327811895161 Sat Jan 28 23:38:15 EST 2012 jacomecha[tid:11] <INFO>: [ 963] bytes: 12500992 | delta: 109426000 nsec | Bps: 114241515 | wps: 14280189 {ConcurrentLinkedQueue}
01327811895267 Sat Jan 28 23:38:15 EST 2012 jacomecha[tid:11] <INFO>: [ 964] bytes: 12500992 | delta: 106047000 nsec | Bps: 117881619 | wps: 14735202 {ConcurrentLinkedQueue}
01327811895379 Sat Jan 28 23:38:15 EST 2012 jacomecha[tid:11] <INFO>: [ 965] bytes: 12500992 | delta: 111181000 nsec | Bps: 112438204 | wps: 14054776 {ConcurrentLinkedQueue}
01327811895492 Sat Jan 28 23:38:15 EST 2012 jacomecha[tid:11] <INFO>: [ 966] bytes: 12500992 | delta: 112308000 nsec | Bps: 111309898 | wps: 13913737 {ConcurrentLinkedQueue}
01327811895601 Sat Jan 28 23:38:15 EST 2012 jacomecha[tid:11] <INFO>: [ 967] bytes: 12500992 | delta: 108624000 nsec | Bps: 115084990 | wps: 14385624 {ConcurrentLinkedQueue}
01327811895723 Sat Jan 28 23:38:15 EST 2012 jacomecha[tid:11] <INFO>: [ 968] bytes: 12500992 | delta: 122138000 nsec | Bps: 102351373 | wps: 12793922 {ConcurrentLinkedQueue}
01327811895839 Sat Jan 28 23:38:15 EST 2012 jacomecha[tid:11] <INFO>: [ 969] bytes: 12500992 | delta: 115336000 nsec | Bps: 108387598 | wps: 13548450 {ConcurrentLinkedQueue}
01327811895949 Sat Jan 28 23:38:15 EST 2012 jacomecha[tid:11] <INFO>: [ 970] bytes: 12500992 | delta: 108840000 nsec | Bps: 114856597 | wps: 14357075 {ConcurrentLinkedQueue}
01327811896057 Sat Jan 28 23:38:16 EST 2012 jacomecha[tid:11] <INFO>: [ 971] bytes: 12500992 | delta: 108180000 nsec | Bps: 115557330 | wps: 14444666 {ConcurrentLinkedQueue}
01327811896166 Sat Jan 28 23:38:16 EST 2012 jacomecha[tid:11] <INFO>: [ 972] bytes: 12500992 | delta: 107865000 nsec | Bps: 115894794 | wps: 14486849 {ConcurrentLinkedQueue}
01327811896275 Sat Jan 28 23:38:16 EST 2012 jacomecha[tid:11] <INFO>: [ 973] bytes: 12500992 | delta: 109397000 nsec | Bps: 114271799 | wps: 14283975 {ConcurrentLinkedQueue}
01327811896385 Sat Jan 28 23:38:16 EST 2012 jacomecha[tid:11] <INFO>: [ 974] bytes: 12500992 | delta: 109308000 nsec | Bps: 114364841 | wps: 14295605 {ConcurrentLinkedQueue}
01327811896494 Sat Jan 28 23:38:16 EST 2012 jacomecha[tid:11] <INFO>: [ 975] bytes: 12500992 | delta: 108640000 nsec | Bps: 115068041 | wps: 14383505 {ConcurrentLinkedQueue}
01327811896604 Sat Jan 28 23:38:16 EST 2012 jacomecha[tid:11] <INFO>: [ 976] bytes: 12500992 | delta: 109864000 nsec | Bps: 113786063 | wps: 14223258 {ConcurrentLinkedQueue}
01327811896713 Sat Jan 28 23:38:16 EST 2012 jacomecha[tid:11] <INFO>: [ 977] bytes: 12500992 | delta: 108138000 nsec | Bps: 115602212 | wps: 14450276 {ConcurrentLinkedQueue}
01327811896824 Sat Jan 28 23:38:16 EST 2012 jacomecha[tid:11] <INFO>: [ 978] bytes: 12500992 | delta: 110775000 nsec | Bps: 112850300 | wps: 14106288 {ConcurrentLinkedQueue}
01327811896935 Sat Jan 28 23:38:16 EST 2012 jacomecha[tid:11] <INFO>: [ 979] bytes: 12500992 | delta: 110057000 nsec | Bps: 113586523 | wps: 14198315 {ConcurrentLinkedQueue}
01327811897044 Sat Jan 28 23:38:17 EST 2012 jacomecha[tid:11] <INFO>: [ 980] bytes: 12500992 | delta: 108393000 nsec | Bps: 115330252 | wps: 14416281 {ConcurrentLinkedQueue}
01327811897151 Sat Jan 28 23:38:17 EST 2012 jacomecha[tid:11] <INFO>: [ 981] bytes: 12500992 | delta: 107254000 nsec | Bps: 116555019 | wps: 14569377 {ConcurrentLinkedQueue}
01327811897267 Sat Jan 28 23:38:17 EST 2012 jacomecha[tid:11] <INFO>: [ 982] bytes: 12500992 | delta: 115593000 nsec | Bps: 108146618 | wps: 13518327 {ConcurrentLinkedQueue}
01327811897486 Sat Jan 28 23:38:17 EST 2012 jacomecha[tid:11] <INFO>: [ 983] bytes: 12500992 | delta: 109021000 nsec | Bps: 114665908 | wps: 14333239 {ConcurrentLinkedQueue}
01327811897595 Sat Jan 28 23:38:17 EST 2012 jacomecha[tid:11] <INFO>: [ 984] bytes: 12500992 | delta: 108787000 nsec | Bps: 114912554 | wps: 14364069 {ConcurrentLinkedQueue}
01327811897704 Sat Jan 28 23:38:17 EST 2012 jacomecha[tid:11] <INFO>: [ 985] bytes: 12500992 | delta: 108807000 nsec | Bps: 114891432 | wps: 14361429 {ConcurrentLinkedQueue}
01327811897823 Sat Jan 28 23:38:17 EST 2012 jacomecha[tid:11] <INFO>: [ 986] bytes: 12500992 | delta: 118624000 nsec | Bps: 105383329 | wps: 13172916 {ConcurrentLinkedQueue}
01327811897933 Sat Jan 28 23:38:17 EST 2012 jacomecha[tid:11] <INFO>: [ 987] bytes: 12500992 | delta: 109587000 nsec | Bps: 114073677 | wps: 14259210 {ConcurrentLinkedQueue}
01327811898042 Sat Jan 28 23:38:18 EST 2012 jacomecha[tid:11] <INFO>: [ 988] bytes: 12500992 | delta: 108680000 nsec | Bps: 115025690 | wps: 14378211 {ConcurrentLinkedQueue}
01327811898151 Sat Jan 28 23:38:18 EST 2012 jacomecha[tid:11] <INFO>: [ 989] bytes: 12500992 | delta: 108183000 nsec | Bps: 115554126 | wps: 14444266 {ConcurrentLinkedQueue}
01327811898267 Sat Jan 28 23:38:18 EST 2012 jacomecha[tid:11] <INFO>: [ 990] bytes: 12500992 | delta: 116132000 nsec | Bps: 107644680 | wps: 13455585 {ConcurrentLinkedQueue}
01327811898376 Sat Jan 28 23:38:18 EST 2012 jacomecha[tid:11] <INFO>: [ 991] bytes: 12500992 | delta: 108053000 nsec | Bps: 115693151 | wps: 14461644 {ConcurrentLinkedQueue}
01327811898484 Sat Jan 28 23:38:18 EST 2012 jacomecha[tid:11] <INFO>: [ 992] bytes: 12500992 | delta: 108196000 nsec | Bps: 115540242 | wps: 14442530 {ConcurrentLinkedQueue}
01327811898594 Sat Jan 28 23:38:18 EST 2012 jacomecha[tid:11] <INFO>: [ 993] bytes: 12500992 | delta: 109227000 nsec | Bps: 114449651 | wps: 14306206 {ConcurrentLinkedQueue}
01327811898706 Sat Jan 28 23:38:18 EST 2012 jacomecha[tid:11] <INFO>: [ 994] bytes: 12500992 | delta: 111536000 nsec | Bps: 112080333 | wps: 14010042 {ConcurrentLinkedQueue}
01327811898817 Sat Jan 28 23:38:18 EST 2012 jacomecha[tid:11] <INFO>: [ 995] bytes: 12500992 | delta: 110514000 nsec | Bps: 113116818 | wps: 14139602 {ConcurrentLinkedQueue}
01327811898928 Sat Jan 28 23:38:18 EST 2012 jacomecha[tid:11] <INFO>: [ 996] bytes: 12500992 | delta: 107267000 nsec | Bps: 116540893 | wps: 14567612 {ConcurrentLinkedQueue}
01327811899037 Sat Jan 28 23:38:19 EST 2012 jacomecha[tid:11] <INFO>: [ 997] bytes: 12500992 | delta: 108477000 nsec | Bps: 115240945 | wps: 14405118 {ConcurrentLinkedQueue}
01327811899160 Sat Jan 28 23:38:19 EST 2012 jacomecha[tid:11] <INFO>: [ 998] bytes: 12500992 | delta: 122865000 nsec | Bps: 101745753 | wps: 12718219 {ConcurrentLinkedQueue}
01327811899263 Sat Jan 28 23:38:19 EST 2012 jacomecha[tid:11] <INFO>: [ 999] bytes: 12500992 | delta: 102590000 nsec | Bps: 121853904 | wps: 15231738 {ConcurrentLinkedQueue}
01327811899375 Sat Jan 28 23:38:19 EST 2012 jacomecha[tid:11] <INFO>: [ 1000] bytes: 12500992 | delta: 111211000 nsec | Bps: 112407873 | wps: 14050984 {ConcurrentLinkedQueue}
01327811899375 Sat Jan 28 23:38:19 EST 2012 jacomecha[tid:11] <INFO>: ---
01327811899376 Sat Jan 28 23:38:19 EST 2012 jacomecha[tid:11] <INFO>: consumer stopping for summation
01327811899376 Sat Jan 28 23:38:19 EST 2012 jacomecha[tid:11] <INFO>: ---
01327811899376 Sat Jan 28 23:38:19 EST 2012 jacomecha[tid:11] <INFO>: [ TOTAL] bytes: 12500992000 | delta:115579359000 nsec | Bps: 108159382 | wps: 13519923 {ConcurrentLinkedQueue}
////////////////// PCQ //////////////////
01327811410208 Sat Jan 28 23:30:10 EST 2012 jacomecha[tid:11] <INFO>: [ 530] bytes: 12500992 | delta: 114860000 nsec | Bps: 108836775 | wps: 13604597 {ConsumerProducerQueue}
01327811410325 Sat Jan 28 23:30:10 EST 2012 jacomecha[tid:11] <INFO>: [ 531] bytes: 12500992 | delta: 115597000 nsec | Bps: 108142876 | wps: 13517859 {ConsumerProducerQueue}
01327811410442 Sat Jan 28 23:30:10 EST 2012 jacomecha[tid:11] <INFO>: [ 532] bytes: 12500992 | delta: 116371000 nsec | Bps: 107423602 | wps: 13427950 {ConsumerProducerQueue}
01327811410557 Sat Jan 28 23:30:10 EST 2012 jacomecha[tid:11] <INFO>: [ 533] bytes: 12500992 | delta: 114994000 nsec | Bps: 108709950 | wps: 13588744 {ConsumerProducerQueue}
01327811410672 Sat Jan 28 23:30:10 EST 2012 jacomecha[tid:11] <INFO>: [ 534] bytes: 12500992 | delta: 113997000 nsec | Bps: 109660710 | wps: 13707589 {ConsumerProducerQueue}
01327811410788 Sat Jan 28 23:30:10 EST 2012 jacomecha[tid:11] <INFO>: [ 535] bytes: 12500992 | delta: 115504000 nsec | Bps: 108229949 | wps: 13528744 {ConsumerProducerQueue}
01327811410914 Sat Jan 28 23:30:10 EST 2012 jacomecha[tid:11] <INFO>: [ 536] bytes: 12500992 | delta: 125816000 nsec | Bps: 99359318 | wps: 12419915 {ConsumerProducerQueue}
01327811411040 Sat Jan 28 23:30:11 EST 2012 jacomecha[tid:11] <INFO>: [ 537] bytes: 12500992 | delta: 124923000 nsec | Bps: 100069579 | wps: 12508697 {ConsumerProducerQueue}
01327811411157 Sat Jan 28 23:30:11 EST 2012 jacomecha[tid:11] <INFO>: [ 538] bytes: 12500992 | delta: 116522000 nsec | Bps: 107284393 | wps: 13410549 {ConsumerProducerQueue}
01327811411272 Sat Jan 28 23:30:11 EST 2012 jacomecha[tid:11] <INFO>: [ 539] bytes: 12500992 | delta: 114489000 nsec | Bps: 109189459 | wps: 13648682 {ConsumerProducerQueue}
01327811411389 Sat Jan 28 23:30:11 EST 2012 jacomecha[tid:11] <INFO>: [ 540] bytes: 12500992 | delta: 116770000 nsec | Bps: 107056538 | wps: 13382067 {ConsumerProducerQueue}
01327811411507 Sat Jan 28 23:30:11 EST 2012 jacomecha[tid:11] <INFO>: [ 541] bytes: 12500992 | delta: 117193000 nsec | Bps: 106670125 | wps: 13333766 {ConsumerProducerQueue}
01327811411620 Sat Jan 28 23:30:11 EST 2012 jacomecha[tid:11] <INFO>: [ 542] bytes: 12500992 | delta: 113244000 nsec | Bps: 110389884 | wps: 13798735 {ConsumerProducerQueue}
01327811411737 Sat Jan 28 23:30:11 EST 2012 jacomecha[tid:11] <INFO>: [ 543] bytes: 12500992 | delta: 116292000 nsec | Bps: 107496578 | wps: 13437072 {ConsumerProducerQueue}
01327811411856 Sat Jan 28 23:30:11 EST 2012 jacomecha[tid:11] <INFO>: [ 544] bytes: 12500992 | delta: 117999000 nsec | Bps: 105941508 | wps: 13242688 {ConsumerProducerQueue}
01327811411970 Sat Jan 28 23:30:11 EST 2012 jacomecha[tid:11] <INFO>: [ 545] bytes: 12500992 | delta: 113879000 nsec | Bps: 109774339 | wps: 13721792 {ConsumerProducerQueue}
01327811412085 Sat Jan 28 23:30:12 EST 2012 jacomecha[tid:11] <INFO>: [ 546] bytes: 12500992 | delta: 114423000 nsec | Bps: 109252441 | wps: 13656555 {ConsumerProducerQueue}
01327811412200 Sat Jan 28 23:30:12 EST 2012 jacomecha[tid:11] <INFO>: [ 547] bytes: 12500992 | delta: 114599000 nsec | Bps: 109084652 | wps: 13635581 {ConsumerProducerQueue}
01327811412317 Sat Jan 28 23:30:12 EST 2012 jacomecha[tid:11] <INFO>: [ 548] bytes: 12500992 | delta: 116291000 nsec | Bps: 107497502 | wps: 13437188 {ConsumerProducerQueue}
01327811412433 Sat Jan 28 23:30:12 EST 2012 jacomecha[tid:11] <INFO>: [ 549] bytes: 12500992 | delta: 116158000 nsec | Bps: 107620586 | wps: 13452573 {ConsumerProducerQueue}
01327811412549 Sat Jan 28 23:30:12 EST 2012 jacomecha[tid:11] <INFO>: [ 550] bytes: 12500992 | delta: 114816000 nsec | Bps: 108878484 | wps: 13609810 {ConsumerProducerQueue}
01327811412664 Sat Jan 28 23:30:12 EST 2012 jacomecha[tid:11] <INFO>: [ 551] bytes: 12500992 | delta: 114908000 nsec | Bps: 108791311 | wps: 13598914 {ConsumerProducerQueue}
01327811412778 Sat Jan 28 23:30:12 EST 2012 jacomecha[tid:11] <INFO>: [ 552] bytes: 12500992 | delta: 113681000 nsec | Bps: 109965535 | wps: 13745692 {ConsumerProducerQueue}
01327811412907 Sat Jan 28 23:30:12 EST 2012 jacomecha[tid:11] <INFO>: [ 553] bytes: 12500992 | delta: 128667000 nsec | Bps: 97157717 | wps: 12144715 {ConsumerProducerQueue}
01327811413033 Sat Jan 28 23:30:13 EST 2012 jacomecha[tid:11] <INFO>: [ 554] bytes: 12500992 | delta: 124956000 nsec | Bps: 100043151 | wps: 12505394 {ConsumerProducerQueue}
01327811413151 Sat Jan 28 23:30:13 EST 2012 jacomecha[tid:11] <INFO>: [ 555] bytes: 12500992 | delta: 117627000 nsec | Bps: 106276552 | wps: 13284569 {ConsumerProducerQueue}
01327811413266 Sat Jan 28 23:30:13 EST 2012 jacomecha[tid:11] <INFO>: [ 556] bytes: 12500992 | delta: 114760000 nsec | Bps: 108931614 | wps: 13616452 {ConsumerProducerQueue}
01327811413393 Sat Jan 28 23:30:13 EST 2012 jacomecha[tid:11] <INFO>: [ 557] bytes: 12500992 | delta: 126243000 nsec | Bps: 99023249 | wps: 12377906 {ConsumerProducerQueue}
01327811413509 Sat Jan 28 23:30:13 EST 2012 jacomecha[tid:11] <INFO>: [ 558] bytes: 12500992 | delta: 115284000 nsec | Bps: 108436487 | wps: 13554561 {ConsumerProducerQueue}
01327811413624 Sat Jan 28 23:30:13 EST 2012 jacomecha[tid:11] <INFO>: [ 559] bytes: 12500992 | delta: 114441000 nsec | Bps: 109235257 | wps: 13654407 {ConsumerProducerQueue}
01327811413741 Sat Jan 28 23:30:13 EST 2012 jacomecha[tid:11] <INFO>: [ 560] bytes: 12500992 | delta: 116355000 nsec | Bps: 107438374 | wps: 13429797 {ConsumerProducerQueue}
01327811413856 Sat Jan 28 23:30:13 EST 2012 jacomecha[tid:11] <INFO>: [ 561] bytes: 12500992 | delta: 114582000 nsec | Bps: 109100836 | wps: 13637605 {ConsumerProducerQueue}
01327811413973 Sat Jan 28 23:30:13 EST 2012 jacomecha[tid:11] <INFO>: [ 562] bytes: 12500992 | delta: 116668000 nsec | Bps: 107150135 | wps: 13393767 {ConsumerProducerQueue}
01327811414087 Sat Jan 28 23:30:14 EST 2012 jacomecha[tid:11] <INFO>: [ 563] bytes: 12500992 | delta: 113896000 nsec | Bps: 109757955 | wps: 13719744 {ConsumerProducerQueue}
01327811414205 Sat Jan 28 23:30:14 EST 2012 jacomecha[tid:11] <INFO>: [ 564] bytes: 12500992 | delta: 117144000 nsec | Bps: 106714744 | wps: 13339343 {ConsumerProducerQueue}
01327811414326 Sat Jan 28 23:30:14 EST 2012 jacomecha[tid:11] <INFO>: [ 565] bytes: 12500992 | delta: 120129000 nsec | Bps: 104063066 | wps: 13007883 {ConsumerProducerQueue}
01327811414440 Sat Jan 28 23:30:14 EST 2012 jacomecha[tid:11] <INFO>: [ 566] bytes: 12500992 | delta: 113785000 nsec | Bps: 109865026 | wps: 13733128 {ConsumerProducerQueue}
01327811414555 Sat Jan 28 23:30:14 EST 2012 jacomecha[tid:11] <INFO>: [ 567] bytes: 12500992 | delta: 114240000 nsec | Bps: 109427451 | wps: 13678431 {ConsumerProducerQueue}
01327811414672 Sat Jan 28 23:30:14 EST 2012 jacomecha[tid:11] <INFO>: [ 568] bytes: 12500992 | delta: 116043000 nsec | Bps: 107727239 | wps: 13465905 {ConsumerProducerQueue}
01327811414787 Sat Jan 28 23:30:14 EST 2012 jacomecha[tid:11] <INFO>: [ 569] bytes: 12500992 | delta: 114514000 nsec | Bps: 109165622 | wps: 13645703 {ConsumerProducerQueue}
01327811414919 Sat Jan 28 23:30:14 EST 2012 jacomecha[tid:11] <INFO>: [ 570] bytes: 12500992 | delta: 131399000 nsec | Bps: 95137649 | wps: 11892206 {ConsumerProducerQueue}
01327811415039 Sat Jan 28 23:30:15 EST 2012 jacomecha[tid:11] <INFO>: [ 571] bytes: 12500992 | delta: 119844000 nsec | Bps: 104310537 | wps: 13038817 {ConsumerProducerQueue}
01327811415156 Sat Jan 28 23:30:15 EST 2012 jacomecha[tid:11] <INFO>: [ 572] bytes: 12500992 | delta: 115045000 nsec | Bps: 108661758 | wps: 13582720 {ConsumerProducerQueue}
01327811415270 Sat Jan 28 23:30:15 EST 2012 jacomecha[tid:11] <INFO>: [ 573] bytes: 12500992 | delta: 112892000 nsec | Bps: 110734082 | wps: 13841760 {ConsumerProducerQueue}
01327811415387 Sat Jan 28 23:30:15 EST 2012 jacomecha[tid:11] <INFO>: [ 574] bytes: 12500992 | delta: 117240000 nsec | Bps: 106627363 | wps: 13328420 {ConsumerProducerQueue}
01327811415501 Sat Jan 28 23:30:15 EST 2012 jacomecha[tid:11] <INFO>: [ 575] bytes: 12500992 | delta: 113660000 nsec | Bps: 109985853 | wps: 13748232 {ConsumerProducerQueue}
01327811415617 Sat Jan 28 23:30:15 EST 2012 jacomecha[tid:11] <INFO>: [ 576] bytes: 12500992 | delta: 115063000 nsec | Bps: 108644760 | wps: 13580595 {ConsumerProducerQueue}
01327811415733 Sat Jan 28 23:30:15 EST 2012 jacomecha[tid:11] <INFO>: [ 577] bytes: 12500992 | delta: 115691000 nsec | Bps: 108055009 | wps: 13506876 {ConsumerProducerQueue}
01327811415848 Sat Jan 28 23:30:15 EST 2012 jacomecha[tid:11] <INFO>: [ 578] bytes: 12500992 | delta: 113942000 nsec | Bps: 109713644 | wps: 13714205 {ConsumerProducerQueue}
01327811415966 Sat Jan 28 23:30:15 EST 2012 jacomecha[tid:11] <INFO>: [ 579] bytes: 12500992 | delta: 117723000 nsec | Bps: 106189886 | wps: 13273736 {ConsumerProducerQueue}
01327811416084 Sat Jan 28 23:30:16 EST 2012 jacomecha[tid:11] <INFO>: [ 580] bytes: 12500992 | delta: 115425000 nsec | Bps: 108304024 | wps: 13538003 {ConsumerProducerQueue}
01327811416198 Sat Jan 28 23:30:16 EST 2012 jacomecha[tid:11] <INFO>: [ 581] bytes: 12500992 | delta: 113101000 nsec | Bps: 110529456 | wps: 13816182 {ConsumerProducerQueue}
01327811416315 Sat Jan 28 23:30:16 EST 2012 jacomecha[tid:11] <INFO>: [ 582] bytes: 12500992 | delta: 116563000 nsec | Bps: 107246656 | wps: 13405832 {ConsumerProducerQueue}
01327811416430 Sat Jan 28 23:30:16 EST 2012 jacomecha[tid:11] <INFO>: [ 583] bytes: 12500992 | delta: 114713000 nsec | Bps: 108976245 | wps: 13622031 {ConsumerProducerQueue}
01327811416547 Sat Jan 28 23:30:16 EST 2012 jacomecha[tid:11] <INFO>: [ 584] bytes: 12500992 | delta: 117004000 nsec | Bps: 106842433 | wps: 13355304 {ConsumerProducerQueue}
01327811416663 Sat Jan 28 23:30:16 EST 2012 jacomecha[tid:11] <INFO>: [ 585] bytes: 12500992 | delta: 115147000 nsec | Bps: 108565503 | wps: 13570688 {ConsumerProducerQueue}
01327811416781 Sat Jan 28 23:30:16 EST 2012 jacomecha[tid:11] <INFO>: [ 586] bytes: 12500992 | delta: 117760000 nsec | Bps: 106156522 | wps: 13269565 {ConsumerProducerQueue}
01327811416910 Sat Jan 28 23:30:16 EST 2012 jacomecha[tid:11] <INFO>: [ 587] bytes: 12500992 | delta: 128176000 nsec | Bps: 97529896 | wps: 12191237 {ConsumerProducerQueue}
01327811417029 Sat Jan 28 23:30:17 EST 2012 jacomecha[tid:11] <INFO>: [ 588] bytes: 12500992 | delta: 118587000 nsec | Bps: 105416209 | wps: 13177026 {ConsumerProducerQueue}
01327811417145 Sat Jan 28 23:30:17 EST 2012 jacomecha[tid:11] <INFO>: [ 589] bytes: 12500992 | delta: 115590000 nsec | Bps: 108149425 | wps: 13518678 {ConsumerProducerQueue}
01327811417263 Sat Jan 28 23:30:17 EST 2012 jacomecha[tid:11] <INFO>: [ 590] bytes: 12500992 | delta: 116230000 nsec | Bps: 107553919 | wps: 13444240 {ConsumerProducerQueue}
01327811417380 Sat Jan 28 23:30:17 EST 2012 jacomecha[tid:11] <INFO>: [ 591] bytes: 12500992 | delta: 116747000 nsec | Bps: 107077629 | wps: 13384704 {ConsumerProducerQueue}
01327811417498 Sat Jan 28 23:30:17 EST 2012 jacomecha[tid:11] <INFO>: [ 592] bytes: 12500992 | delta: 117291000 nsec | Bps: 106580999 | wps: 13322625 {ConsumerProducerQueue}
01327811417613 Sat Jan 28 23:30:17 EST 2012 jacomecha[tid:11] <INFO>: [ 593] bytes: 12500992 | delta: 114663000 nsec | Bps: 109023765 | wps: 13627971 {ConsumerProducerQueue}
01327811417729 Sat Jan 28 23:30:17 EST 2012 jacomecha[tid:11] <INFO>: [ 594] bytes: 12500992 | delta: 115117000 nsec | Bps: 108593796 | wps: 13574224 {ConsumerProducerQueue}
01327811417846 Sat Jan 28 23:30:17 EST 2012 jacomecha[tid:11] <INFO>: [ 595] bytes: 12500992 | delta: 116313000 nsec | Bps: 107477169 | wps: 13434646 {ConsumerProducerQueue}
01327811417963 Sat Jan 28 23:30:17 EST 2012 jacomecha[tid:11] <INFO>: [ 596] bytes: 12500992 | delta: 117038000 nsec | Bps: 106811395 | wps: 13351424 {ConsumerProducerQueue}
01327811418084 Sat Jan 28 23:30:18 EST 2012 jacomecha[tid:11] <INFO>: [ 597] bytes: 12500992 | delta: 120458000 nsec | Bps: 103778844 | wps: 12972356 {ConsumerProducerQueue}
01327811418199 Sat Jan 28 23:30:18 EST 2012 jacomecha[tid:11] <INFO>: [ 598] bytes: 12500992 | delta: 114252000 nsec | Bps: 109415958 | wps: 13676995 {ConsumerProducerQueue}
01327811418315 Sat Jan 28 23:30:18 EST 2012 jacomecha[tid:11] <INFO>: [ 599] bytes: 12500992 | delta: 114922000 nsec | Bps: 108778058 | wps: 13597257 {ConsumerProducerQueue}
01327811418432 Sat Jan 28 23:30:18 EST 2012 jacomecha[tid:11] <INFO>: [ 600] bytes: 12500992 | delta: 116448000 nsec | Bps: 107352569 | wps: 13419071 {ConsumerProducerQueue}
01327811418548 Sat Jan 28 23:30:18 EST 2012 jacomecha[tid:11] <INFO>: [ 601] bytes: 12500992 | delta: 115398000 nsec | Bps: 108329364 | wps: 13541171 {ConsumerProducerQueue}
01327811418667 Sat Jan 28 23:30:18 EST 2012 jacomecha[tid:11] <INFO>: [ 602] bytes: 12500992 | delta: 118044000 nsec | Bps: 105901122 | wps: 13237640 {ConsumerProducerQueue}
01327811418780 Sat Jan 28 23:30:18 EST 2012 jacomecha[tid:11] <INFO>: [ 603] bytes: 12500992 | delta: 112288000 nsec | Bps: 111329724 | wps: 13916215 {ConsumerProducerQueue}
01327811418908 Sat Jan 28 23:30:18 EST 2012 jacomecha[tid:11] <INFO>: [ 604] bytes: 12500992 | delta: 127681000 nsec | Bps: 97908005 | wps: 12238501 {ConsumerProducerQueue}
01327811419029 Sat Jan 28 23:30:19 EST 2012 jacomecha[tid:11] <INFO>: [ 605] bytes: 12500992 | delta: 120426000 nsec | Bps: 103806421 | wps: 12975803 {ConsumerProducerQueue}
01327811419144 Sat Jan 28 23:30:19 EST 2012 jacomecha[tid:11] <INFO>: [ 606] bytes: 12500992 | delta: 114692000 nsec | Bps: 108996199 | wps: 13624525 {ConsumerProducerQueue}
01327811419262 Sat Jan 28 23:30:19 EST 2012 jacomecha[tid:11] <INFO>: [ 607] bytes: 12500992 | delta: 117021000 nsec | Bps: 106826911 | wps: 13353364 {ConsumerProducerQueue}
01327811419377 Sat Jan 28 23:30:19 EST 2012 jacomecha[tid:11] <INFO>: [ 608] bytes: 12500992 | delta: 115008000 nsec | Bps: 108696717 | wps: 13587090 {ConsumerProducerQueue}
01327811419492 Sat Jan 28 23:30:19 EST 2012 jacomecha[tid:11] <INFO>: [ 609] bytes: 12500992 | delta: 114593000 nsec | Bps: 109090363 | wps: 13636295 {ConsumerProducerQueue}
01327811419606 Sat Jan 28 23:30:19 EST 2012 jacomecha[tid:11] <INFO>: [ 610] bytes: 12500992 | delta: 112903000 nsec | Bps: 110723293 | wps: 13840412 {ConsumerProducerQueue}
01327811419723 Sat Jan 28 23:30:19 EST 2012 jacomecha[tid:11] <INFO>: [ 611] bytes: 12500992 | delta: 116826000 nsec | Bps: 107005221 | wps: 13375653 {ConsumerProducerQueue}
01327811419838 Sat Jan 28 23:30:19 EST 2012 jacomecha[tid:11] <INFO>: [ 612] bytes: 12500992 | delta: 114236000 nsec | Bps: 109431283 | wps: 13678910 {ConsumerProducerQueue}
01327811419955 Sat Jan 28 23:30:19 EST 2012 jacomecha[tid:11] <INFO>: [ 613] bytes: 12500992 | delta: 116279000 nsec | Bps: 107508596 | wps: 13438574 {ConsumerProducerQueue}
01327811420074 Sat Jan 28 23:30:20 EST 2012 jacomecha[tid:11] <INFO>: [ 614] bytes: 12500992 | delta: 118630000 nsec | Bps: 105377999 | wps: 13172250 {ConsumerProducerQueue}
01327811420190 Sat Jan 28 23:30:20 EST 2012 jacomecha[tid:11] <INFO>: [ 615] bytes: 12500992 | delta: 115936000 nsec | Bps: 107826663 | wps: 13478333 {ConsumerProducerQueue}
01327811420307 Sat Jan 28 23:30:20 EST 2012 jacomecha[tid:11] <INFO>: [ 616] bytes: 12500992 | delta: 116879000 nsec | Bps: 106956699 | wps: 13369587 {ConsumerProducerQueue}
01327811420423 Sat Jan 28 23:30:20 EST 2012 jacomecha[tid:11] <INFO>: [ 617] bytes: 12500992 | delta: 115628000 nsec | Bps: 108113882 | wps: 13514235 {ConsumerProducerQueue}
01327811420540 Sat Jan 28 23:30:20 EST 2012 jacomecha[tid:11] <INFO>: [ 618] bytes: 12500992 | delta: 116177000 nsec | Bps: 107602985 | wps: 13450373 {ConsumerProducerQueue}
01327811420658 Sat Jan 28 23:30:20 EST 2012 jacomecha[tid:11] <INFO>: [ 619] bytes: 12500992 | delta: 117767000 nsec | Bps: 106150212 | wps: 13268776 {ConsumerProducerQueue}
01327811420775 Sat Jan 28 23:30:20 EST 2012 jacomecha[tid:11] <INFO>: [ 620] bytes: 12500992 | delta: 116713000 nsec | Bps: 107108822 | wps: 13388603 {ConsumerProducerQueue}
01327811420913 Sat Jan 28 23:30:20 EST 2012 jacomecha[tid:11] <INFO>: [ 621] bytes: 12500992 | delta: 136802000 nsec | Bps: 91380185 | wps: 11422523 {ConsumerProducerQueue}
01327811421014 Sat Jan 28 23:30:21 EST 2012 jacomecha[tid:11] <INFO>: [ 622] bytes: 12500992 | delta: 100636000 nsec | Bps: 124219882 | wps: 15527485 {ConsumerProducerQueue}
01327811421127 Sat Jan 28 23:30:21 EST 2012 jacomecha[tid:11] <INFO>: [ 623] bytes: 12500992 | delta: 112359000 nsec | Bps: 111259374 | wps: 13907422 {ConsumerProducerQueue}
01327811421248 Sat Jan 28 23:30:21 EST 2012 jacomecha[tid:11] <INFO>: [ 624] bytes: 12500992 | delta: 121066000 nsec | Bps: 103257661 | wps: 12907208 {ConsumerProducerQueue}
01327811421366 Sat Jan 28 23:30:21 EST 2012 jacomecha[tid:11] <INFO>: [ 625] bytes: 12500992 | delta: 117446000 nsec | Bps: 106440339 | wps: 13305042 {ConsumerProducerQueue}
01327811421483 Sat Jan 28 23:30:21 EST 2012 jacomecha[tid:11] <INFO>: [ 626] bytes: 12500992 | delta: 116537000 nsec | Bps: 107270584 | wps: 13408823 {ConsumerProducerQueue}
01327811421599 Sat Jan 28 23:30:21 EST 2012 jacomecha[tid:11] <INFO>: [ 627] bytes: 12500992 | delta: 115167000 nsec | Bps: 108546650 | wps: 13568331 {ConsumerProducerQueue}
01327811421714 Sat Jan 28 23:30:21 EST 2012 jacomecha[tid:11] <INFO>: [ 628] bytes: 12500992 | delta: 115152000 nsec | Bps: 108560789 | wps: 13570099 {ConsumerProducerQueue}
01327811421831 Sat Jan 28 23:30:21 EST 2012 jacomecha[tid:11] <INFO>: [ 629] bytes: 12500992 | delta: 116518000 nsec | Bps: 107288076 | wps: 13411009 {ConsumerProducerQueue}
01327811421945 Sat Jan 28 23:30:21 EST 2012 jacomecha[tid:11] <INFO>: [ 630] bytes: 12500992 | delta: 113699000 nsec | Bps: 109948126 | wps: 13743516 {ConsumerProducerQueue}
01327811422062 Sat Jan 28 23:30:22 EST 2012 jacomecha[tid:11] <INFO>: [ 631] bytes: 12500992 | delta: 115886000 nsec | Bps: 107873186 | wps: 13484148 {ConsumerProducerQueue}
01327811422180 Sat Jan 28 23:30:22 EST 2012 jacomecha[tid:11] <INFO>: [ 632] bytes: 12500992 | delta: 117279000 nsec | Bps: 106591905 | wps: 13323988 {ConsumerProducerQueue}
01327811422300 Sat Jan 28 23:30:22 EST 2012 jacomecha[tid:11] <INFO>: [ 633] bytes: 12500992 | delta: 120128000 nsec | Bps: 104063932 | wps: 13007991 {ConsumerProducerQueue}
01327811422418 Sat Jan 28 23:30:22 EST 2012 jacomecha[tid:11] <INFO>: [ 634] bytes: 12500992 | delta: 117259000 nsec | Bps: 106610085 | wps: 13326261 {ConsumerProducerQueue}
01327811422534 Sat Jan 28 23:30:22 EST 2012 jacomecha[tid:11] <INFO>: [ 635] bytes: 12500992 | delta: 115643000 nsec | Bps: 108099859 | wps: 13512482 {ConsumerProducerQueue}
01327811422651 Sat Jan 28 23:30:22 EST 2012 jacomecha[tid:11] <INFO>: [ 636] bytes: 12500992 | delta: 115758000 nsec | Bps: 107992467 | wps: 13499058 {ConsumerProducerQueue}
01327811422765 Sat Jan 28 23:30:22 EST 2012 jacomecha[tid:11] <INFO>: [ 637] bytes: 12500992 | delta: 113613000 nsec | Bps: 110031352 | wps: 13753919 {ConsumerProducerQueue}
01327811422882 Sat Jan 28 23:30:22 EST 2012 jacomecha[tid:11] <INFO>: [ 638] bytes: 12500992 | delta: 117085000 nsec | Bps: 106768519 | wps: 13346065 {ConsumerProducerQueue}
01327811423006 Sat Jan 28 23:30:23 EST 2012 jacomecha[tid:11] <INFO>: [ 639] bytes: 12500992 | delta: 123416000 nsec | Bps: 101291502 | wps: 12661438 {ConsumerProducerQueue}
01327811423121 Sat Jan 28 23:30:23 EST 2012 jacomecha[tid:11] <INFO>: [ 640] bytes: 12500992 | delta: 114594000 nsec | Bps: 109089411 | wps: 13636176 {ConsumerProducerQueue}
01327811423238 Sat Jan 28 23:30:23 EST 2012 jacomecha[tid:11] <INFO>: [ 641] bytes: 12500992 | delta: 116340000 nsec | Bps: 107452226 | wps: 13431528 {ConsumerProducerQueue}
01327811423353 Sat Jan 28 23:30:23 EST 2012 jacomecha[tid:11] <INFO>: [ 642] bytes: 12500992 | delta: 114480000 nsec | Bps: 109198043 | wps: 13649755 {ConsumerProducerQueue}
01327811423470 Sat Jan 28 23:30:23 EST 2012 jacomecha[tid:11] <INFO>: [ 643] bytes: 12500992 | delta: 117325000 nsec | Bps: 106550113 | wps: 13318764 {ConsumerProducerQueue}
01327811423584 Sat Jan 28 23:30:23 EST 2012 jacomecha[tid:11] <INFO>: [ 644] bytes: 12500992 | delta: 112892000 nsec | Bps: 110734082 | wps: 13841760 {ConsumerProducerQueue}
01327811423703 Sat Jan 28 23:30:23 EST 2012 jacomecha[tid:11] <INFO>: [ 645] bytes: 12500992 | delta: 118262000 nsec | Bps: 105705907 | wps: 13213238 {ConsumerProducerQueue}
01327811423818 Sat Jan 28 23:30:23 EST 2012 jacomecha[tid:11] <INFO>: [ 646] bytes: 12500992 | delta: 115382000 nsec | Bps: 108344386 | wps: 13543048 {ConsumerProducerQueue}
01327811423934 Sat Jan 28 23:30:23 EST 2012 jacomecha[tid:11] <INFO>: [ 647] bytes: 12500992 | delta: 115254000 nsec | Bps: 108464713 | wps: 13558089 {ConsumerProducerQueue}
01327811424049 Sat Jan 28 23:30:24 EST 2012 jacomecha[tid:11] <INFO>: [ 648] bytes: 12500992 | delta: 114513000 nsec | Bps: 109166575 | wps: 13645822 {ConsumerProducerQueue}
01327811424164 Sat Jan 28 23:30:24 EST 2012 jacomecha[tid:11] <INFO>: [ 649] bytes: 12500992 | delta: 114515000 nsec | Bps: 109164668 | wps: 13645584 {ConsumerProducerQueue}
01327811424281 Sat Jan 28 23:30:24 EST 2012 jacomecha[tid:11] <INFO>: [ 650] bytes: 12500992 | delta: 116922000 nsec | Bps: 106917364 | wps: 13364670 {ConsumerProducerQueue}
01327811424399 Sat Jan 28 23:30:24 EST 2012 jacomecha[tid:11] <INFO>: [ 651] bytes: 12500992 | delta: 117065000 nsec | Bps: 106786759 | wps: 13348345 {ConsumerProducerQueue}
01327811424515 Sat Jan 28 23:30:24 EST 2012 jacomecha[tid:11] <INFO>: [ 652] bytes: 12500992 | delta: 115387000 nsec | Bps: 108339692 | wps: 13542461 {ConsumerProducerQueue}
01327811424630 Sat Jan 28 23:30:24 EST 2012 jacomecha[tid:11] <INFO>: [ 653] bytes: 12500992 | delta: 115050000 nsec | Bps: 108657036 | wps: 13582130 {ConsumerProducerQueue}
01327811424751 Sat Jan 28 23:30:24 EST 2012 jacomecha[tid:11] <INFO>: [ 654] bytes: 12500992 | delta: 120859000 nsec | Bps: 103434515 | wps: 12929314 {ConsumerProducerQueue}
01327811424871 Sat Jan 28 23:30:24 EST 2012 jacomecha[tid:11] <INFO>: [ 655] bytes: 12500992 | delta: 119183000 nsec | Bps: 104889053 | wps: 13111132 {ConsumerProducerQueue}
01327811424993 Sat Jan 28 23:30:24 EST 2012 jacomecha[tid:11] <INFO>: [ 656] bytes: 12500992 | delta: 121453000 nsec | Bps: 102928639 | wps: 12866080 {ConsumerProducerQueue}
01327811425113 Sat Jan 28 23:30:25 EST 2012 jacomecha[tid:11] <INFO>: [ 657] bytes: 12500992 | delta: 107277000 nsec | Bps: 116530030 | wps: 14566254 {ConsumerProducerQueue}
01327811425226 Sat Jan 28 23:30:25 EST 2012 jacomecha[tid:11] <INFO>: [ 658] bytes: 12500992 | delta: 112955000 nsec | Bps: 110672321 | wps: 13834040 {ConsumerProducerQueue}
01327811425345 Sat Jan 28 23:30:25 EST 2012 jacomecha[tid:11] <INFO>: [ 659] bytes: 12500992 | delta: 117890000 nsec | Bps: 106039461 | wps: 13254933 {ConsumerProducerQueue}
01327811425479 Sat Jan 28 23:30:25 EST 2012 jacomecha[tid:11] <INFO>: [ 660] bytes: 12500992 | delta: 133652000 nsec | Bps: 93533894 | wps: 11691737 {ConsumerProducerQueue}
01327811425595 Sat Jan 28 23:30:25 EST 2012 jacomecha[tid:11] <INFO>: [ 661] bytes: 12500992 | delta: 115907000 nsec | Bps: 107853641 | wps: 13481705 {ConsumerProducerQueue}
01327811425712 Sat Jan 28 23:30:25 EST 2012 jacomecha[tid:11] <INFO>: [ 662] bytes: 12500992 | delta: 116664000 nsec | Bps: 107153809 | wps: 13394226 {ConsumerProducerQueue}
01327811425832 Sat Jan 28 23:30:25 EST 2012 jacomecha[tid:11] <INFO>: [ 663] bytes: 12500992 | delta: 118956000 nsec | Bps: 105089209 | wps: 13136151 {ConsumerProducerQueue}
01327811425953 Sat Jan 28 23:30:25 EST 2012 jacomecha[tid:11] <INFO>: [ 664] bytes: 12500992 | delta: 121150000 nsec | Bps: 103186067 | wps: 12898258 {ConsumerProducerQueue}
01327811426070 Sat Jan 28 23:30:26 EST 2012 jacomecha[tid:11] <INFO>: [ 665] bytes: 12500992 | delta: 116120000 nsec | Bps: 107655804 | wps: 13456976 {ConsumerProducerQueue}
01327811426186 Sat Jan 28 23:30:26 EST 2012 jacomecha[tid:11] <INFO>: [ 666] bytes: 12500992 | delta: 115611000 nsec | Bps: 108129780 | wps: 13516223 {ConsumerProducerQueue}
01327811426301 Sat Jan 28 23:30:26 EST 2012 jacomecha[tid:11] <INFO>: [ 667] bytes: 12500992 | delta: 114253000 nsec | Bps: 109415000 | wps: 13676875 {ConsumerProducerQueue}
01327811426418 Sat Jan 28 23:30:26 EST 2012 jacomecha[tid:11] <INFO>: [ 668] bytes: 12500992 | delta: 116776000 nsec | Bps: 107051038 | wps: 13381380 {ConsumerProducerQueue}
01327811426534 Sat Jan 28 23:30:26 EST 2012 jacomecha[tid:11] <INFO>: [ 669] bytes: 12500992 | delta: 115407000 nsec | Bps: 108320916 | wps: 13540115 {ConsumerProducerQueue}
01327811426649 Sat Jan 28 23:30:26 EST 2012 jacomecha[tid:11] <INFO>: [ 670] bytes: 12500992 | delta: 114924000 nsec | Bps: 108776165 | wps: 13597021 {ConsumerProducerQueue}
01327811426765 Sat Jan 28 23:30:26 EST 2012 jacomecha[tid:11] <INFO>: [ 671] bytes: 12500992 | delta: 114711000 nsec | Bps: 108978145 | wps: 13622268 {ConsumerProducerQueue}
01327811426885 Sat Jan 28 23:30:26 EST 2012 jacomecha[tid:11] <INFO>: [ 672] bytes: 12500992 | delta: 119906000 nsec | Bps: 104256601 | wps: 13032075 {ConsumerProducerQueue}
01327811427009 Sat Jan 28 23:30:27 EST 2012 jacomecha[tid:11] <INFO>: [ 673] bytes: 12500992 | delta: 124014000 nsec | Bps: 100803071 | wps: 12600384 {ConsumerProducerQueue}
01327811427126 Sat Jan 28 23:30:27 EST 2012 jacomecha[tid:11] <INFO>: [ 674] bytes: 12500992 | delta: 115797000 nsec | Bps: 107956096 | wps: 13494512 {ConsumerProducerQueue}
01327811427239 Sat Jan 28 23:30:27 EST 2012 jacomecha[tid:11] <INFO>: [ 675] bytes: 12500992 | delta: 113365000 nsec | Bps: 110272059 | wps: 13784007 {ConsumerProducerQueue}
01327811427356 Sat Jan 28 23:30:27 EST 2012 jacomecha[tid:11] <INFO>: [ 676] bytes: 12500992 | delta: 115954000 nsec | Bps: 107809925 | wps: 13476241 {ConsumerProducerQueue}
01327811427472 Sat Jan 28 23:30:27 EST 2012 jacomecha[tid:11] <INFO>: [ 677] bytes: 12500992 | delta: 116220000 nsec | Bps: 107563173 | wps: 13445397 {ConsumerProducerQueue}
01327811427588 Sat Jan 28 23:30:27 EST 2012 jacomecha[tid:11] <INFO>: [ 678] bytes: 12500992 | delta: 115096000 nsec | Bps: 108613610 | wps: 13576701 {ConsumerProducerQueue}
01327811427705 Sat Jan 28 23:30:27 EST 2012 jacomecha[tid:11] <INFO>: [ 679] bytes: 12500992 | delta: 115692000 nsec | Bps: 108054075 | wps: 13506759 {ConsumerProducerQueue}
01327811427823 Sat Jan 28 23:30:27 EST 2012 jacomecha[tid:11] <INFO>: [ 680] bytes: 12500992 | delta: 117391000 nsec | Bps: 106490208 | wps: 13311276 {ConsumerProducerQueue}
01327811427937 Sat Jan 28 23:30:27 EST 2012 jacomecha[tid:11] <INFO>: [ 681] bytes: 12500992 | delta: 114437000 nsec | Bps: 109239075 | wps: 13654884 {ConsumerProducerQueue}
01327811428053 Sat Jan 28 23:30:28 EST 2012 jacomecha[tid:11] <INFO>: [ 682] bytes: 12500992 | delta: 115348000 nsec | Bps: 108376322 | wps: 13547040 {ConsumerProducerQueue}
01327811428178 Sat Jan 28 23:30:28 EST 2012 jacomecha[tid:11] <INFO>: [ 683] bytes: 12500992 | delta: 124771000 nsec | Bps: 100191487 | wps: 12523936 {ConsumerProducerQueue}
01327811428294 Sat Jan 28 23:30:28 EST 2012 jacomecha[tid:11] <INFO>: [ 684] bytes: 12500992 | delta: 114640000 nsec | Bps: 109045639 | wps: 13630705 {ConsumerProducerQueue}
01327811428409 Sat Jan 28 23:30:28 EST 2012 jacomecha[tid:11] <INFO>: [ 685] bytes: 12500992 | delta: 113644000 nsec | Bps: 110001338 | wps: 13750167 {ConsumerProducerQueue}
01327811428525 Sat Jan 28 23:30:28 EST 2012 jacomecha[tid:11] <INFO>: [ 686] bytes: 12500992 | delta: 115487000 nsec | Bps: 108245880 | wps: 13530735 {ConsumerProducerQueue}
01327811428640 Sat Jan 28 23:30:28 EST 2012 jacomecha[tid:11] <INFO>: [ 687] bytes: 12500992 | delta: 114837000 nsec | Bps: 108858573 | wps: 13607322 {ConsumerProducerQueue}
01327811428766 Sat Jan 28 23:30:28 EST 2012 jacomecha[tid:11] <INFO>: [ 688] bytes: 12500992 | delta: 125266000 nsec | Bps: 99795571 | wps: 12474446 {ConsumerProducerQueue}
01327811428889 Sat Jan 28 23:30:28 EST 2012 jacomecha[tid:11] <INFO>: [ 689] bytes: 12500992 | delta: 122219000 nsec | Bps: 102283540 | wps: 12785443 {ConsumerProducerQueue}
01327811429020 Sat Jan 28 23:30:29 EST 2012 jacomecha[tid:11] <INFO>: [ 690] bytes: 12500992 | delta: 131367000 nsec | Bps: 95160824 | wps: 11895103 {ConsumerProducerQueue}
01327811429137 Sat Jan 28 23:30:29 EST 2012 jacomecha[tid:11] <INFO>: [ 691] bytes: 12500992 | delta: 116436000 nsec | Bps: 107363633 | wps: 13420454 {ConsumerProducerQueue}
01327811429256 Sat Jan 28 23:30:29 EST 2012 jacomecha[tid:11] <INFO>: [ 692] bytes: 12500992 | delta: 118693000 nsec | Bps: 105322066 | wps: 13165258 {ConsumerProducerQueue}
01327811429371 Sat Jan 28 23:30:29 EST 2012 jacomecha[tid:11] <INFO>: [ 693] bytes: 12500992 | delta: 114045000 nsec | Bps: 109614556 | wps: 13701819 {ConsumerProducerQueue}
01327811429488 Sat Jan 28 23:30:29 EST 2012 jacomecha[tid:11] <INFO>: [ 694] bytes: 12500992 | delta: 116353000 nsec | Bps: 107440221 | wps: 13430028 {ConsumerProducerQueue}
01327811429605 Sat Jan 28 23:30:29 EST 2012 jacomecha[tid:11] <INFO>: [ 695] bytes: 12500992 | delta: 116651000 nsec | Bps: 107165751 | wps: 13395719 {ConsumerProducerQueue}
01327811429721 Sat Jan 28 23:30:29 EST 2012 jacomecha[tid:11] <INFO>: [ 696] bytes: 12500992 | delta: 115960000 nsec | Bps: 107804346 | wps: 13475543 {ConsumerProducerQueue}
01327811429839 Sat Jan 28 23:30:29 EST 2012 jacomecha[tid:11] <INFO>: [ 697] bytes: 12500992 | delta: 117367000 nsec | Bps: 106511984 | wps: 13313998 {ConsumerProducerQueue}
01327811429955 Sat Jan 28 23:30:29 EST 2012 jacomecha[tid:11] <INFO>: [ 698] bytes: 12500992 | delta: 113458000 nsec | Bps: 110181671 | wps: 13772709 {ConsumerProducerQueue}
01327811430069 Sat Jan 28 23:30:30 EST 2012 jacomecha[tid:11] <INFO>: [ 699] bytes: 12500992 | delta: 113985000 nsec | Bps: 109672255 | wps: 13709032 {ConsumerProducerQueue}
01327811430184 Sat Jan 28 23:30:30 EST 2012 jacomecha[tid:11] <INFO>: [ 700] bytes: 12500992 | delta: 114072000 nsec | Bps: 109588611 | wps: 13698576 {ConsumerProducerQueue}
01327811430298 Sat Jan 28 23:30:30 EST 2012 jacomecha[tid:11] <INFO>: [ 701] bytes: 12500992 | delta: 114010000 nsec | Bps: 109648206 | wps: 13706026 {ConsumerProducerQueue}
01327811430416 Sat Jan 28 23:30:30 EST 2012 jacomecha[tid:11] <INFO>: [ 702] bytes: 12500992 | delta: 117762000 nsec | Bps: 106154719 | wps: 13269340 {ConsumerProducerQueue}
01327811430531 Sat Jan 28 23:30:30 EST 2012 jacomecha[tid:11] <INFO>: [ 703] bytes: 12500992 | delta: 114086000 nsec | Bps: 109575163 | wps: 13696895 {ConsumerProducerQueue}
01327811430647 Sat Jan 28 23:30:30 EST 2012 jacomecha[tid:11] <INFO>: [ 704] bytes: 12500992 | delta: 115377000 nsec | Bps: 108349082 | wps: 13543635 {ConsumerProducerQueue}
01327811430762 Sat Jan 28 23:30:30 EST 2012 jacomecha[tid:11] <INFO>: [ 705] bytes: 12500992 | delta: 115115000 nsec | Bps: 108595683 | wps: 13574460 {ConsumerProducerQueue}
01327811430888 Sat Jan 28 23:30:30 EST 2012 jacomecha[tid:11] <INFO>: [ 706] bytes: 12500992 | delta: 124888000 nsec | Bps: 100097623 | wps: 12512203 {ConsumerProducerQueue}
01327811431014 Sat Jan 28 23:30:31 EST 2012 jacomecha[tid:11] <INFO>: [ 707] bytes: 12500992 | delta: 125651000 nsec | Bps: 99489793 | wps: 12436224 {ConsumerProducerQueue}
01327811431128 Sat Jan 28 23:30:31 EST 2012 jacomecha[tid:11] <INFO>: [ 708] bytes: 12500992 | delta: 114216000 nsec | Bps: 109450445 | wps: 13681306 {ConsumerProducerQueue}
01327811431246 Sat Jan 28 23:30:31 EST 2012 jacomecha[tid:11] <INFO>: [ 709] bytes: 12500992 | delta: 117540000 nsec | Bps: 106355215 | wps: 13294402 {ConsumerProducerQueue}
01327811431361 Sat Jan 28 23:30:31 EST 2012 jacomecha[tid:11] <INFO>: [ 710] bytes: 12500992 | delta: 113989000 nsec | Bps: 109668407 | wps: 13708551 {ConsumerProducerQueue}
01327811431480 Sat Jan 28 23:30:31 EST 2012 jacomecha[tid:11] <INFO>: [ 711] bytes: 12500992 | delta: 118477000 nsec | Bps: 105514083 | wps: 13189260 {ConsumerProducerQueue}
01327811431596 Sat Jan 28 23:30:31 EST 2012 jacomecha[tid:11] <INFO>: [ 712] bytes: 12500992 | delta: 115132000 nsec | Bps: 108579648 | wps: 13572456 {ConsumerProducerQueue}
01327811431715 Sat Jan 28 23:30:31 EST 2012 jacomecha[tid:11] <INFO>: [ 713] bytes: 12500992 | delta: 118654000 nsec | Bps: 105356684 | wps: 13169586 {ConsumerProducerQueue}
01327811431832 Sat Jan 28 23:30:31 EST 2012 jacomecha[tid:11] <INFO>: [ 714] bytes: 12500992 | delta: 115970000 nsec | Bps: 107795050 | wps: 13474381 {ConsumerProducerQueue}
01327811431950 Sat Jan 28 23:30:31 EST 2012 jacomecha[tid:11] <INFO>: [ 715] bytes: 12500992 | delta: 117450000 nsec | Bps: 106436713 | wps: 13304589 {ConsumerProducerQueue}
01327811432066 Sat Jan 28 23:30:32 EST 2012 jacomecha[tid:11] <INFO>: [ 716] bytes: 12500992 | delta: 116016000 nsec | Bps: 107752310 | wps: 13469039 {ConsumerProducerQueue}
01327811432182 Sat Jan 28 23:30:32 EST 2012 jacomecha[tid:11] <INFO>: [ 717] bytes: 12500992 | delta: 115454000 nsec | Bps: 108276820 | wps: 13534603 {ConsumerProducerQueue}
01327811432298 Sat Jan 28 23:30:32 EST 2012 jacomecha[tid:11] <INFO>: [ 718] bytes: 12500992 | delta: 115063000 nsec | Bps: 108644760 | wps: 13580595 {ConsumerProducerQueue}
01327811432418 Sat Jan 28 23:30:32 EST 2012 jacomecha[tid:11] <INFO>: [ 719] bytes: 12500992 | delta: 119744000 nsec | Bps: 104397648 | wps: 13049706 {ConsumerProducerQueue}
01327811432533 Sat Jan 28 23:30:32 EST 2012 jacomecha[tid:11] <INFO>: [ 720] bytes: 12500992 | delta: 114301000 nsec | Bps: 109369052 | wps: 13671131 {ConsumerProducerQueue}
01327811432662 Sat Jan 28 23:30:32 EST 2012 jacomecha[tid:11] <INFO>: [ 721] bytes: 12500992 | delta: 128693000 nsec | Bps: 97138088 | wps: 12142261 {ConsumerProducerQueue}
01327811432791 Sat Jan 28 23:30:32 EST 2012 jacomecha[tid:11] <INFO>: [ 722] bytes: 12500992 | delta: 128412000 nsec | Bps: 97350653 | wps: 12168832 {ConsumerProducerQueue}
01327811432918 Sat Jan 28 23:30:32 EST 2012 jacomecha[tid:11] <INFO>: [ 723] bytes: 12500992 | delta: 126435000 nsec | Bps: 98872875 | wps: 12359109 {ConsumerProducerQueue}
01327811433035 Sat Jan 28 23:30:33 EST 2012 jacomecha[tid:11] <INFO>: [ 724] bytes: 12500992 | delta: 116437000 nsec | Bps: 107362711 | wps: 13420339 {ConsumerProducerQueue}
01327811433163 Sat Jan 28 23:30:33 EST 2012 jacomecha[tid:11] <INFO>: [ 725] bytes: 12500992 | delta: 127617000 nsec | Bps: 97957106 | wps: 12244638 {ConsumerProducerQueue}
01327811433280 Sat Jan 28 23:30:33 EST 2012 jacomecha[tid:11] <INFO>: [ 726] bytes: 12500992 | delta: 116869000 nsec | Bps: 106965851 | wps: 13370731 {ConsumerProducerQueue}
01327811433397 Sat Jan 28 23:30:33 EST 2012 jacomecha[tid:11] <INFO>: [ 727] bytes: 12500992 | delta: 116749000 nsec | Bps: 107075795 | wps: 13384474 {ConsumerProducerQueue}
01327811433515 Sat Jan 28 23:30:33 EST 2012 jacomecha[tid:11] <INFO>: [ 728] bytes: 12500992 | delta: 117633000 nsec | Bps: 106271131 | wps: 13283891 {ConsumerProducerQueue}
01327811433632 Sat Jan 28 23:30:33 EST 2012 jacomecha[tid:11] <INFO>: [ 729] bytes: 12500992 | delta: 116574000 nsec | Bps: 107236536 | wps: 13404567 {ConsumerProducerQueue}
01327811433751 Sat Jan 28 23:30:33 EST 2012 jacomecha[tid:11] <INFO>: [ 730] bytes: 12500992 | delta: 118663000 nsec | Bps: 105348693 | wps: 13168587 {ConsumerProducerQueue}
01327811433869 Sat Jan 28 23:30:33 EST 2012 jacomecha[tid:11] <INFO>: [ 731] bytes: 12500992 | delta: 116742000 nsec | Bps: 107082215 | wps: 13385277 {ConsumerProducerQueue}
01327811433984 Sat Jan 28 23:30:33 EST 2012 jacomecha[tid:11] <INFO>: [ 732] bytes: 12500992 | delta: 114789000 nsec | Bps: 108904094 | wps: 13613012 {ConsumerProducerQueue}
01327811434100 Sat Jan 28 23:30:34 EST 2012 jacomecha[tid:11] <INFO>: [ 733] bytes: 12500992 | delta: 116081000 nsec | Bps: 107691974 | wps: 13461497 {ConsumerProducerQueue}
01327811434217 Sat Jan 28 23:30:34 EST 2012 jacomecha[tid:11] <INFO>: [ 734] bytes: 12500992 | delta: 116173000 nsec | Bps: 107606690 | wps: 13450836 {ConsumerProducerQueue}
01327811434333 Sat Jan 28 23:30:34 EST 2012 jacomecha[tid:11] <INFO>: [ 735] bytes: 12500992 | delta: 114552000 nsec | Bps: 109129408 | wps: 13641176 {ConsumerProducerQueue}
01327811434453 Sat Jan 28 23:30:34 EST 2012 jacomecha[tid:11] <INFO>: [ 736] bytes: 12500992 | delta: 119758000 nsec | Bps: 104385444 | wps: 13048180 {ConsumerProducerQueue}
01327811434571 Sat Jan 28 23:30:34 EST 2012 jacomecha[tid:11] <INFO>: [ 737] bytes: 12500992 | delta: 117343000 nsec | Bps: 106533769 | wps: 13316721 {ConsumerProducerQueue}
01327811434685 Sat Jan 28 23:30:34 EST 2012 jacomecha[tid:11] <INFO>: [ 738] bytes: 12500992 | delta: 114165000 nsec | Bps: 109499339 | wps: 13687417 {ConsumerProducerQueue}
01327811434801 Sat Jan 28 23:30:34 EST 2012 jacomecha[tid:11] <INFO>: [ 739] bytes: 12500992 | delta: 115543000 nsec | Bps: 108193417 | wps: 13524177 {ConsumerProducerQueue}
01327811434933 Sat Jan 28 23:30:34 EST 2012 jacomecha[tid:11] <INFO>: [ 740] bytes: 12500992 | delta: 130965000 nsec | Bps: 95452923 | wps: 11931615 {ConsumerProducerQueue}
01327811435051 Sat Jan 28 23:30:35 EST 2012 jacomecha[tid:11] <INFO>: [ 741] bytes: 12500992 | delta: 117676000 nsec | Bps: 106232299 | wps: 13279037 {ConsumerProducerQueue}
01327811435165 Sat Jan 28 23:30:35 EST 2012 jacomecha[tid:11] <INFO>: [ 742] bytes: 12500992 | delta: 113701000 nsec | Bps: 109946192 | wps: 13743274 {ConsumerProducerQueue}
01327811435280 Sat Jan 28 23:30:35 EST 2012 jacomecha[tid:11] <INFO>: [ 743] bytes: 12500992 | delta: 114006000 nsec | Bps: 109652053 | wps: 13706507 {ConsumerProducerQueue}
01327811435395 Sat Jan 28 23:30:35 EST 2012 jacomecha[tid:11] <INFO>: [ 744] bytes: 12500992 | delta: 114816000 nsec | Bps: 108878484 | wps: 13609810 {ConsumerProducerQueue}
01327811435511 Sat Jan 28 23:30:35 EST 2012 jacomecha[tid:11] <INFO>: [ 745] bytes: 12500992 | delta: 115866000 nsec | Bps: 107891806 | wps: 13486476 {ConsumerProducerQueue}
01327811435626 Sat Jan 28 23:30:35 EST 2012 jacomecha[tid:11] <INFO>: [ 746] bytes: 12500992 | delta: 114639000 nsec | Bps: 109046590 | wps: 13630824 {ConsumerProducerQueue}
01327811435741 Sat Jan 28 23:30:35 EST 2012 jacomecha[tid:11] <INFO>: [ 747] bytes: 12500992 | delta: 114671000 nsec | Bps: 109016159 | wps: 13627020 {ConsumerProducerQueue}
01327811435856 Sat Jan 28 23:30:35 EST 2012 jacomecha[tid:11] <INFO>: [ 748] bytes: 12500992 | delta: 114213000 nsec | Bps: 109453320 | wps: 13681665 {ConsumerProducerQueue}
01327811435973 Sat Jan 28 23:30:35 EST 2012 jacomecha[tid:11] <INFO>: [ 749] bytes: 12500992 | delta: 116730000 nsec | Bps: 107093224 | wps: 13386653 {ConsumerProducerQueue}
01327811436089 Sat Jan 28 23:30:36 EST 2012 jacomecha[tid:11] <INFO>: [ 750] bytes: 12500992 | delta: 114213000 nsec | Bps: 109453320 | wps: 13681665 {ConsumerProducerQueue}
01327811436206 Sat Jan 28 23:30:36 EST 2012 jacomecha[tid:11] <INFO>: [ 751] bytes: 12500992 | delta: 116107000 nsec | Bps: 107667858 | wps: 13458482 {ConsumerProducerQueue}
01327811436320 Sat Jan 28 23:30:36 EST 2012 jacomecha[tid:11] <INFO>: [ 752] bytes: 12500992 | delta: 114129000 nsec | Bps: 109533878 | wps: 13691735 {ConsumerProducerQueue}
01327811436438 Sat Jan 28 23:30:36 EST 2012 jacomecha[tid:11] <INFO>: [ 753] bytes: 12500992 | delta: 117052000 nsec | Bps: 106798619 | wps: 13349827 {ConsumerProducerQueue}
01327811436553 Sat Jan 28 23:30:36 EST 2012 jacomecha[tid:11] <INFO>: [ 754] bytes: 12500992 | delta: 114188000 nsec | Bps: 109477283 | wps: 13684660 {ConsumerProducerQueue}
01327811436670 Sat Jan 28 23:30:36 EST 2012 jacomecha[tid:11] <INFO>: [ 755] bytes: 12500992 | delta: 117286000 nsec | Bps: 106585543 | wps: 13323193 {ConsumerProducerQueue}
01327811436786 Sat Jan 28 23:30:36 EST 2012 jacomecha[tid:11] <INFO>: [ 756] bytes: 12500992 | delta: 115085000 nsec | Bps: 108623991 | wps: 13577999 {ConsumerProducerQueue}
01327811436911 Sat Jan 28 23:30:36 EST 2012 jacomecha[tid:11] <INFO>: [ 757] bytes: 12500992 | delta: 124967000 nsec | Bps: 100034345 | wps: 12504293 {ConsumerProducerQueue}
01327811437024 Sat Jan 28 23:30:37 EST 2012 jacomecha[tid:11] <INFO>: [ 758] bytes: 12500992 | delta: 112749000 nsec | Bps: 110874527 | wps: 13859316 {ConsumerProducerQueue}
01327811437139 Sat Jan 28 23:30:37 EST 2012 jacomecha[tid:11] <INFO>: [ 759] bytes: 12500992 | delta: 114328000 nsec | Bps: 109343223 | wps: 13667903 {ConsumerProducerQueue}
01327811437254 Sat Jan 28 23:30:37 EST 2012 jacomecha[tid:11] <INFO>: [ 760] bytes: 12500992 | delta: 114201000 nsec | Bps: 109464821 | wps: 13683103 {ConsumerProducerQueue}
01327811437371 Sat Jan 28 23:30:37 EST 2012 jacomecha[tid:11] <INFO>: [ 761] bytes: 12500992 | delta: 116604000 nsec | Bps: 107208947 | wps: 13401118 {ConsumerProducerQueue}
01327811437486 Sat Jan 28 23:30:37 EST 2012 jacomecha[tid:11] <INFO>: [ 762] bytes: 12500992 | delta: 114643000 nsec | Bps: 109042785 | wps: 13630348 {ConsumerProducerQueue}
01327811437602 Sat Jan 28 23:30:37 EST 2012 jacomecha[tid:11] <INFO>: [ 763] bytes: 12500992 | delta: 115756000 nsec | Bps: 107994333 | wps: 13499292 {ConsumerProducerQueue}
01327811437719 Sat Jan 28 23:30:37 EST 2012 jacomecha[tid:11] <INFO>: [ 764] bytes: 12500992 | delta: 116465000 nsec | Bps: 107336899 | wps: 13417112 {ConsumerProducerQueue}
01327811437835 Sat Jan 28 23:30:37 EST 2012 jacomecha[tid:11] <INFO>: [ 765] bytes: 12500992 | delta: 114992000 nsec | Bps: 108711841 | wps: 13588980 {ConsumerProducerQueue}
01327811437949 Sat Jan 28 23:30:37 EST 2012 jacomecha[tid:11] <INFO>: [ 766] bytes: 12500992 | delta: 113944000 nsec | Bps: 109711718 | wps: 13713965 {ConsumerProducerQueue}
01327811438065 Sat Jan 28 23:30:38 EST 2012 jacomecha[tid:11] <INFO>: [ 767] bytes: 12500992 | delta: 115183000 nsec | Bps: 108531571 | wps: 13566446 {ConsumerProducerQueue}
01327811438185 Sat Jan 28 23:30:38 EST 2012 jacomecha[tid:11] <INFO>: [ 768] bytes: 12500992 | delta: 119675000 nsec | Bps: 104457840 | wps: 13057230 {ConsumerProducerQueue}
01327811438303 Sat Jan 28 23:30:38 EST 2012 jacomecha[tid:11] <INFO>: [ 769] bytes: 12500992 | delta: 117620000 nsec | Bps: 106282877 | wps: 13285360 {ConsumerProducerQueue}
01327811438420 Sat Jan 28 23:30:38 EST 2012 jacomecha[tid:11] <INFO>: [ 770] bytes: 12500992 | delta: 115614000 nsec | Bps: 108126974 | wps: 13515872 {ConsumerProducerQueue}
01327811438536 Sat Jan 28 23:30:38 EST 2012 jacomecha[tid:11] <INFO>: [ 771] bytes: 12500992 | delta: 114861000 nsec | Bps: 108835828 | wps: 13604478 {ConsumerProducerQueue}
01327811438651 Sat Jan 28 23:30:38 EST 2012 jacomecha[tid:11] <INFO>: [ 772] bytes: 12500992 | delta: 114408000 nsec | Bps: 109266765 | wps: 13658346 {ConsumerProducerQueue}
01327811438768 Sat Jan 28 23:30:38 EST 2012 jacomecha[tid:11] <INFO>: [ 773] bytes: 12500992 | delta: 116959000 nsec | Bps: 106883540 | wps: 13360443 {ConsumerProducerQueue}
01327811438908 Sat Jan 28 23:30:38 EST 2012 jacomecha[tid:11] <INFO>: [ 774] bytes: 12500992 | delta: 139133000 nsec | Bps: 89849223 | wps: 11231153 {ConsumerProducerQueue}
01327811439019 Sat Jan 28 23:30:39 EST 2012 jacomecha[tid:11] <INFO>: [ 775] bytes: 12500992 | delta: 111546000 nsec | Bps: 112070285 | wps: 14008786 {ConsumerProducerQueue}
01327811439136 Sat Jan 28 23:30:39 EST 2012 jacomecha[tid:11] <INFO>: [ 776] bytes: 12500992 | delta: 116285000 nsec | Bps: 107503049 | wps: 13437881 {ConsumerProducerQueue}
01327811439253 Sat Jan 28 23:30:39 EST 2012 jacomecha[tid:11] <INFO>: [ 777] bytes: 12500992 | delta: 115916000 nsec | Bps: 107845267 | wps: 13480658 {ConsumerProducerQueue}
01327811439369 Sat Jan 28 23:30:39 EST 2012 jacomecha[tid:11] <INFO>: [ 778] bytes: 12500992 | delta: 115459000 nsec | Bps: 108272131 | wps: 13534016 {ConsumerProducerQueue}
01327811439485 Sat Jan 28 23:30:39 EST 2012 jacomecha[tid:11] <INFO>: [ 779] bytes: 12500992 | delta: 115746000 nsec | Bps: 108003663 | wps: 13500458 {ConsumerProducerQueue}
01327811439599 Sat Jan 28 23:30:39 EST 2012 jacomecha[tid:11] <INFO>: [ 780] bytes: 12500992 | delta: 114257000 nsec | Bps: 109411170 | wps: 13676396 {ConsumerProducerQueue}
01327811439714 Sat Jan 28 23:30:39 EST 2012 jacomecha[tid:11] <INFO>: [ 781] bytes: 12500992 | delta: 114307000 nsec | Bps: 109363311 | wps: 13670414 {ConsumerProducerQueue}
01327811439827 Sat Jan 28 23:30:39 EST 2012 jacomecha[tid:11] <INFO>: [ 782] bytes: 12500992 | delta: 112910000 nsec | Bps: 110716429 | wps: 13839554 {ConsumerProducerQueue}
01327811439944 Sat Jan 28 23:30:39 EST 2012 jacomecha[tid:11] <INFO>: [ 783] bytes: 12500992 | delta: 116370000 nsec | Bps: 107424525 | wps: 13428066 {ConsumerProducerQueue}
01327811440060 Sat Jan 28 23:30:40 EST 2012 jacomecha[tid:11] <INFO>: [ 784] bytes: 12500992 | delta: 115002000 nsec | Bps: 108702388 | wps: 13587798 {ConsumerProducerQueue}
01327811440176 Sat Jan 28 23:30:40 EST 2012 jacomecha[tid:11] <INFO>: [ 785] bytes: 12500992 | delta: 115176000 nsec | Bps: 108538168 | wps: 13567271 {ConsumerProducerQueue}
01327811440292 Sat Jan 28 23:30:40 EST 2012 jacomecha[tid:11] <INFO>: [ 786] bytes: 12500992 | delta: 115828000 nsec | Bps: 107927202 | wps: 13490900 {ConsumerProducerQueue}
01327811440408 Sat Jan 28 23:30:40 EST 2012 jacomecha[tid:11] <INFO>: [ 787] bytes: 12500992 | delta: 115400000 nsec | Bps: 108327487 | wps: 13540936 {ConsumerProducerQueue}
01327811440522 Sat Jan 28 23:30:40 EST 2012 jacomecha[tid:11] <INFO>: [ 788] bytes: 12500992 | delta: 112762000 nsec | Bps: 110861744 | wps: 13857718 {ConsumerProducerQueue}
01327811440638 Sat Jan 28 23:30:40 EST 2012 jacomecha[tid:11] <INFO>: [ 789] bytes: 12500992 | delta: 116118000 nsec | Bps: 107657659 | wps: 13457207 {ConsumerProducerQueue}
01327811440755 Sat Jan 28 23:30:40 EST 2012 jacomecha[tid:11] <INFO>: [ 790] bytes: 12500992 | delta: 115917000 nsec | Bps: 107844337 | wps: 13480542 {ConsumerProducerQueue}
01327811440882 Sat Jan 28 23:30:40 EST 2012 jacomecha[tid:11] <INFO>: [ 791] bytes: 12500992 | delta: 126389000 nsec | Bps: 98908861 | wps: 12363608 {ConsumerProducerQueue}
01327811441016 Sat Jan 28 23:30:41 EST 2012 jacomecha[tid:11] <INFO>: [ 792] bytes: 12500992 | delta: 133581000 nsec | Bps: 93583608 | wps: 11697951 {ConsumerProducerQueue}
01327811441133 Sat Jan 28 23:30:41 EST 2012 jacomecha[tid:11] <INFO>: [ 793] bytes: 12500992 | delta: 116975000 nsec | Bps: 106868921 | wps: 13358615 {ConsumerProducerQueue}
01327811441252 Sat Jan 28 23:30:41 EST 2012 jacomecha[tid:11] <INFO>: [ 794] bytes: 12500992 | delta: 117971000 nsec | Bps: 105966653 | wps: 13245832 {ConsumerProducerQueue}
01327811441370 Sat Jan 28 23:30:41 EST 2012 jacomecha[tid:11] <INFO>: [ 795] bytes: 12500992 | delta: 117187000 nsec | Bps: 106675587 | wps: 13334448 {ConsumerProducerQueue}
01327811441485 Sat Jan 28 23:30:41 EST 2012 jacomecha[tid:11] <INFO>: [ 796] bytes: 12500992 | delta: 114154000 nsec | Bps: 109509890 | wps: 13688736 {ConsumerProducerQueue}
01327811441604 Sat Jan 28 23:30:41 EST 2012 jacomecha[tid:11] <INFO>: [ 797] bytes: 12500992 | delta: 118609000 nsec | Bps: 105396656 | wps: 13174582 {ConsumerProducerQueue}
01327811441720 Sat Jan 28 23:30:41 EST 2012 jacomecha[tid:11] <INFO>: [ 798] bytes: 12500992 | delta: 113979000 nsec | Bps: 109678028 | wps: 13709754 {ConsumerProducerQueue}
01327811441837 Sat Jan 28 23:30:41 EST 2012 jacomecha[tid:11] <INFO>: [ 799] bytes: 12500992 | delta: 116809000 nsec | Bps: 107020795 | wps: 13377599 {ConsumerProducerQueue}
01327811441955 Sat Jan 28 23:30:41 EST 2012 jacomecha[tid:11] <INFO>: [ 800] bytes: 12500992 | delta: 117282000 nsec | Bps: 106589178 | wps: 13323647 {ConsumerProducerQueue}
01327811442072 Sat Jan 28 23:30:42 EST 2012 jacomecha[tid:11] <INFO>: [ 801] bytes: 12500992 | delta: 116361000 nsec | Bps: 107432834 | wps: 13429104 {ConsumerProducerQueue}
01327811442188 Sat Jan 28 23:30:42 EST 2012 jacomecha[tid:11] <INFO>: [ 802] bytes: 12500992 | delta: 116313000 nsec | Bps: 107477169 | wps: 13434646 {ConsumerProducerQueue}
01327811442303 Sat Jan 28 23:30:42 EST 2012 jacomecha[tid:11] <INFO>: [ 803] bytes: 12500992 | delta: 114223000 nsec | Bps: 109443737 | wps: 13680467 {ConsumerProducerQueue}
01327811442420 Sat Jan 28 23:30:42 EST 2012 jacomecha[tid:11] <INFO>: [ 804] bytes: 12500992 | delta: 116718000 nsec | Bps: 107104234 | wps: 13388029 {ConsumerProducerQueue}
01327811442532 Sat Jan 28 23:30:42 EST 2012 jacomecha[tid:11] <INFO>: [ 805] bytes: 12500992 | delta: 111013000 nsec | Bps: 112608361 | wps: 14076045 {ConsumerProducerQueue}
01327811442654 Sat Jan 28 23:30:42 EST 2012 jacomecha[tid:11] <INFO>: [ 806] bytes: 12500992 | delta: 122045000 nsec | Bps: 102429366 | wps: 12803671 {ConsumerProducerQueue}
01327811442765 Sat Jan 28 23:30:42 EST 2012 jacomecha[tid:11] <INFO>: [ 807] bytes: 12500992 | delta: 110482000 nsec | Bps: 113149581 | wps: 14143698 {ConsumerProducerQueue}
01327811442885 Sat Jan 28 23:30:42 EST 2012 jacomecha[tid:11] <INFO>: [ 808] bytes: 12500992 | delta: 119304000 nsec | Bps: 104782673 | wps: 13097834 {ConsumerProducerQueue}
01327811443006 Sat Jan 28 23:30:43 EST 2012 jacomecha[tid:11] <INFO>: [ 809] bytes: 12500992 | delta: 120526000 nsec | Bps: 103720293 | wps: 12965037 {ConsumerProducerQueue}
01327811443123 Sat Jan 28 23:30:43 EST 2012 jacomecha[tid:11] <INFO>: [ 810] bytes: 12500992 | delta: 116271000 nsec | Bps: 107515993 | wps: 13439499 {ConsumerProducerQueue}
01327811443244 Sat Jan 28 23:30:43 EST 2012 jacomecha[tid:11] <INFO>: [ 811] bytes: 12500992 | delta: 121207000 nsec | Bps: 103137542 | wps: 12892193 {ConsumerProducerQueue}
01327811443362 Sat Jan 28 23:30:43 EST 2012 jacomecha[tid:11] <INFO>: [ 812] bytes: 12500992 | delta: 116601000 nsec | Bps: 107211705 | wps: 13401463 {ConsumerProducerQueue}
01327811443478 Sat Jan 28 23:30:43 EST 2012 jacomecha[tid:11] <INFO>: [ 813] bytes: 12500992 | delta: 115728000 nsec | Bps: 108020462 | wps: 13502558 {ConsumerProducerQueue}
01327811443597 Sat Jan 28 23:30:43 EST 2012 jacomecha[tid:11] <INFO>: [ 814] bytes: 12500992 | delta: 118986000 nsec | Bps: 105062713 | wps: 13132839 {ConsumerProducerQueue}
01327811443713 Sat Jan 28 23:30:43 EST 2012 jacomecha[tid:11] <INFO>: [ 815] bytes: 12500992 | delta: 115205000 nsec | Bps: 108510846 | wps: 13563856 {ConsumerProducerQueue}
01327811443832 Sat Jan 28 23:30:43 EST 2012 jacomecha[tid:11] <INFO>: [ 816] bytes: 12500992 | delta: 118041000 nsec | Bps: 105903813 | wps: 13237977 {ConsumerProducerQueue}
01327811443947 Sat Jan 28 23:30:43 EST 2012 jacomecha[tid:11] <INFO>: [ 817] bytes: 12500992 | delta: 114610000 nsec | Bps: 109074182 | wps: 13634273 {ConsumerProducerQueue}
01327811444063 Sat Jan 28 23:30:44 EST 2012 jacomecha[tid:11] <INFO>: [ 818] bytes: 12500992 | delta: 116207000 nsec | Bps: 107575206 | wps: 13446901 {ConsumerProducerQueue}
01327811444177 Sat Jan 28 23:30:44 EST 2012 jacomecha[tid:11] <INFO>: [ 819] bytes: 12500992 | delta: 113636000 nsec | Bps: 110009082 | wps: 13751135 {ConsumerProducerQueue}
01327811444294 Sat Jan 28 23:30:44 EST 2012 jacomecha[tid:11] <INFO>: [ 820] bytes: 12500992 | delta: 115999000 nsec | Bps: 107768101 | wps: 13471013 {ConsumerProducerQueue}
01327811444409 Sat Jan 28 23:30:44 EST 2012 jacomecha[tid:11] <INFO>: [ 821] bytes: 12500992 | delta: 114960000 nsec | Bps: 108742102 | wps: 13592763 {ConsumerProducerQueue}
01327811444526 Sat Jan 28 23:30:44 EST 2012 jacomecha[tid:11] <INFO>: [ 822] bytes: 12500992 | delta: 116552000 nsec | Bps: 107256778 | wps: 13407097 {ConsumerProducerQueue}
01327811444643 Sat Jan 28 23:30:44 EST 2012 jacomecha[tid:11] <INFO>: [ 823] bytes: 12500992 | delta: 116715000 nsec | Bps: 107106987 | wps: 13388373 {ConsumerProducerQueue}
01327811444760 Sat Jan 28 23:30:44 EST 2012 jacomecha[tid:11] <INFO>: [ 824] bytes: 12500992 | delta: 115493000 nsec | Bps: 108240257 | wps: 13530032 {ConsumerProducerQueue}
01327811444884 Sat Jan 28 23:30:44 EST 2012 jacomecha[tid:11] <INFO>: [ 825] bytes: 12500992 | delta: 124076000 nsec | Bps: 100752700 | wps: 12594087 {ConsumerProducerQueue}
01327811445009 Sat Jan 28 23:30:45 EST 2012 jacomecha[tid:11] <INFO>: [ 826] bytes: 12500992 | delta: 124529000 nsec | Bps: 100386191 | wps: 12548274 {ConsumerProducerQueue}
01327811445124 Sat Jan 28 23:30:45 EST 2012 jacomecha[tid:11] <INFO>: [ 827] bytes: 12500992 | delta: 114071000 nsec | Bps: 109589571 | wps: 13698696 {ConsumerProducerQueue}
01327811445240 Sat Jan 28 23:30:45 EST 2012 jacomecha[tid:11] <INFO>: [ 828] bytes: 12500992 | delta: 115777000 nsec | Bps: 107974745 | wps: 13496843 {ConsumerProducerQueue}
01327811445356 Sat Jan 28 23:30:45 EST 2012 jacomecha[tid:11] <INFO>: [ 829] bytes: 12500992 | delta: 114928000 nsec | Bps: 108772379 | wps: 13596547 {ConsumerProducerQueue}
01327811445472 Sat Jan 28 23:30:45 EST 2012 jacomecha[tid:11] <INFO>: [ 830] bytes: 12500992 | delta: 115852000 nsec | Bps: 107904844 | wps: 13488106 {ConsumerProducerQueue}
01327811445589 Sat Jan 28 23:30:45 EST 2012 jacomecha[tid:11] <INFO>: [ 831] bytes: 12500992 | delta: 111183000 nsec | Bps: 112436182 | wps: 14054523 {ConsumerProducerQueue}
01327811445705 Sat Jan 28 23:30:45 EST 2012 jacomecha[tid:11] <INFO>: [ 832] bytes: 12500992 | delta: 113958000 nsec | Bps: 109698240 | wps: 13712280 {ConsumerProducerQueue}
01327811445823 Sat Jan 28 23:30:45 EST 2012 jacomecha[tid:11] <INFO>: [ 833] bytes: 12500992 | delta: 117452000 nsec | Bps: 106434901 | wps: 13304363 {ConsumerProducerQueue}
01327811445938 Sat Jan 28 23:30:45 EST 2012 jacomecha[tid:11] <INFO>: [ 834] bytes: 12500992 | delta: 114886000 nsec | Bps: 108812144 | wps: 13601518 {ConsumerProducerQueue}
01327811446055 Sat Jan 28 23:30:46 EST 2012 jacomecha[tid:11] <INFO>: [ 835] bytes: 12500992 | delta: 116360000 nsec | Bps: 107433757 | wps: 13429220 {ConsumerProducerQueue}
01327811446171 Sat Jan 28 23:30:46 EST 2012 jacomecha[tid:11] <INFO>: [ 836] bytes: 12500992 | delta: 115583000 nsec | Bps: 108155974 | wps: 13519497 {ConsumerProducerQueue}
01327811446285 Sat Jan 28 23:30:46 EST 2012 jacomecha[tid:11] <INFO>: [ 837] bytes: 12500992 | delta: 113382000 nsec | Bps: 110255526 | wps: 13781941 {ConsumerProducerQueue}
01327811446403 Sat Jan 28 23:30:46 EST 2012 jacomecha[tid:11] <INFO>: [ 838] bytes: 12500992 | delta: 117096000 nsec | Bps: 106758489 | wps: 13344811 {ConsumerProducerQueue}
01327811446519 Sat Jan 28 23:30:46 EST 2012 jacomecha[tid:11] <INFO>: [ 839] bytes: 12500992 | delta: 115654000 nsec | Bps: 108089578 | wps: 13511197 {ConsumerProducerQueue}
01327811446634 Sat Jan 28 23:30:46 EST 2012 jacomecha[tid:11] <INFO>: [ 840] bytes: 12500992 | delta: 114731000 nsec | Bps: 108959148 | wps: 13619893 {ConsumerProducerQueue}
01327811446751 Sat Jan 28 23:30:46 EST 2012 jacomecha[tid:11] <INFO>: [ 841] bytes: 12500992 | delta: 116110000 nsec | Bps: 107665076 | wps: 13458135 {ConsumerProducerQueue}
01327811446877 Sat Jan 28 23:30:46 EST 2012 jacomecha[tid:11] <INFO>: [ 842] bytes: 12500992 | delta: 126119000 nsec | Bps: 99120608 | wps: 12390076 {ConsumerProducerQueue}
01327811447000 Sat Jan 28 23:30:47 EST 2012 jacomecha[tid:11] <INFO>: [ 843] bytes: 12500992 | delta: 122006000 nsec | Bps: 102462108 | wps: 12807764 {ConsumerProducerQueue}
01327811447118 Sat Jan 28 23:30:47 EST 2012 jacomecha[tid:11] <INFO>: [ 844] bytes: 12500992 | delta: 118010000 nsec | Bps: 105931633 | wps: 13241454 {ConsumerProducerQueue}
01327811447239 Sat Jan 28 23:30:47 EST 2012 jacomecha[tid:11] <INFO>: [ 845] bytes: 12500992 | delta: 120060000 nsec | Bps: 104122872 | wps: 13015359 {ConsumerProducerQueue}
01327811447354 Sat Jan 28 23:30:47 EST 2012 jacomecha[tid:11] <INFO>: [ 846] bytes: 12500992 | delta: 114182000 nsec | Bps: 109483036 | wps: 13685379 {ConsumerProducerQueue}
01327811447470 Sat Jan 28 23:30:47 EST 2012 jacomecha[tid:11] <INFO>: [ 847] bytes: 12500992 | delta: 116158000 nsec | Bps: 107620586 | wps: 13452573 {ConsumerProducerQueue}
01327811447585 Sat Jan 28 23:30:47 EST 2012 jacomecha[tid:11] <INFO>: [ 848] bytes: 12500992 | delta: 114282000 nsec | Bps: 109387235 | wps: 13673404 {ConsumerProducerQueue}
01327811447704 Sat Jan 28 23:30:47 EST 2012 jacomecha[tid:11] <INFO>: [ 849] bytes: 12500992 | delta: 118717000 nsec | Bps: 105300774 | wps: 13162597 {ConsumerProducerQueue}
01327811447823 Sat Jan 28 23:30:47 EST 2012 jacomecha[tid:11] <INFO>: [ 850] bytes: 12500992 | delta: 118304000 nsec | Bps: 105668380 | wps: 13208547 {ConsumerProducerQueue}
01327811447939 Sat Jan 28 23:30:47 EST 2012 jacomecha[tid:11] <INFO>: [ 851] bytes: 12500992 | delta: 115649000 nsec | Bps: 108094251 | wps: 13511781 {ConsumerProducerQueue}
01327811448055 Sat Jan 28 23:30:48 EST 2012 jacomecha[tid:11] <INFO>: [ 852] bytes: 12500992 | delta: 114104000 nsec | Bps: 109557877 | wps: 13694735 {ConsumerProducerQueue}
01327811448173 Sat Jan 28 23:30:48 EST 2012 jacomecha[tid:11] <INFO>: [ 853] bytes: 12500992 | delta: 117730000 nsec | Bps: 106183573 | wps: 13272947 {ConsumerProducerQueue}
01327811448298 Sat Jan 28 23:30:48 EST 2012 jacomecha[tid:11] <INFO>: [ 854] bytes: 12500992 | delta: 123815000 nsec | Bps: 100965085 | wps: 12620636 {ConsumerProducerQueue}
01327811448414 Sat Jan 28 23:30:48 EST 2012 jacomecha[tid:11] <INFO>: [ 855] bytes: 12500992 | delta: 115588000 nsec | Bps: 108151296 | wps: 13518912 {ConsumerProducerQueue}
01327811448528 Sat Jan 28 23:30:48 EST 2012 jacomecha[tid:11] <INFO>: [ 856] bytes: 12500992 | delta: 113875000 nsec | Bps: 109778195 | wps: 13722274 {ConsumerProducerQueue}
01327811448645 Sat Jan 28 23:30:48 EST 2012 jacomecha[tid:11] <INFO>: [ 857] bytes: 12500992 | delta: 115984000 nsec | Bps: 107782039 | wps: 13472755 {ConsumerProducerQueue}
01327811448761 Sat Jan 28 23:30:48 EST 2012 jacomecha[tid:11] <INFO>: [ 858] bytes: 12500992 | delta: 115962000 nsec | Bps: 107802487 | wps: 13475311 {ConsumerProducerQueue}
01327811448888 Sat Jan 28 23:30:48 EST 2012 jacomecha[tid:11] <INFO>: [ 859] bytes: 12500992 | delta: 126516000 nsec | Bps: 98809573 | wps: 12351197 {ConsumerProducerQueue}
01327811449007 Sat Jan 28 23:30:49 EST 2012 jacomecha[tid:11] <INFO>: [ 860] bytes: 12500992 | delta: 118307000 nsec | Bps: 105665700 | wps: 13208213 {ConsumerProducerQueue}
01327811449124 Sat Jan 28 23:30:49 EST 2012 jacomecha[tid:11] <INFO>: [ 861] bytes: 12500992 | delta: 116800000 nsec | Bps: 107029041 | wps: 13378630 {ConsumerProducerQueue}
01327811449239 Sat Jan 28 23:30:49 EST 2012 jacomecha[tid:11] <INFO>: [ 862] bytes: 12500992 | delta: 114636000 nsec | Bps: 109049443 | wps: 13631180 {ConsumerProducerQueue}
01327811449355 Sat Jan 28 23:30:49 EST 2012 jacomecha[tid:11] <INFO>: [ 863] bytes: 12500992 | delta: 115451000 nsec | Bps: 108279634 | wps: 13534954 {ConsumerProducerQueue}
01327811449472 Sat Jan 28 23:30:49 EST 2012 jacomecha[tid:11] <INFO>: [ 864] bytes: 12500992 | delta: 116915000 nsec | Bps: 106923765 | wps: 13365471 {ConsumerProducerQueue}
01327811449589 Sat Jan 28 23:30:49 EST 2012 jacomecha[tid:11] <INFO>: [ 865] bytes: 12500992 | delta: 116353000 nsec | Bps: 107440221 | wps: 13430028 {ConsumerProducerQueue}
01327811449705 Sat Jan 28 23:30:49 EST 2012 jacomecha[tid:11] <INFO>: [ 866] bytes: 12500992 | delta: 115704000 nsec | Bps: 108042868 | wps: 13505359 {ConsumerProducerQueue}
01327811449821 Sat Jan 28 23:30:49 EST 2012 jacomecha[tid:11] <INFO>: [ 867] bytes: 12500992 | delta: 115749000 nsec | Bps: 108000864 | wps: 13500108 {ConsumerProducerQueue}
01327811449940 Sat Jan 28 23:30:49 EST 2012 jacomecha[tid:11] <INFO>: [ 868] bytes: 12500992 | delta: 116482000 nsec | Bps: 107321234 | wps: 13415154 {ConsumerProducerQueue}
01327811450055 Sat Jan 28 23:30:50 EST 2012 jacomecha[tid:11] <INFO>: [ 869] bytes: 12500992 | delta: 115241000 nsec | Bps: 108476948 | wps: 13559619 {ConsumerProducerQueue}
01327811450171 Sat Jan 28 23:30:50 EST 2012 jacomecha[tid:11] <INFO>: [ 870] bytes: 12500992 | delta: 114873000 nsec | Bps: 108824458 | wps: 13603057 {ConsumerProducerQueue}
01327811450288 Sat Jan 28 23:30:50 EST 2012 jacomecha[tid:11] <INFO>: [ 871] bytes: 12500992 | delta: 116859000 nsec | Bps: 106975004 | wps: 13371876 {ConsumerProducerQueue}
01327811450405 Sat Jan 28 23:30:50 EST 2012 jacomecha[tid:11] <INFO>: [ 872] bytes: 12500992 | delta: 116335000 nsec | Bps: 107456844 | wps: 13432106 {ConsumerProducerQueue}
01327811450523 Sat Jan 28 23:30:50 EST 2012 jacomecha[tid:11] <INFO>: [ 873] bytes: 12500992 | delta: 117556000 nsec | Bps: 106340740 | wps: 13292592 {ConsumerProducerQueue}
01327811450641 Sat Jan 28 23:30:50 EST 2012 jacomecha[tid:11] <INFO>: [ 874] bytes: 12500992 | delta: 117676000 nsec | Bps: 106232299 | wps: 13279037 {ConsumerProducerQueue}
01327811450757 Sat Jan 28 23:30:50 EST 2012 jacomecha[tid:11] <INFO>: [ 875] bytes: 12500992 | delta: 114130000 nsec | Bps: 109532919 | wps: 13691615 {ConsumerProducerQueue}
01327811450883 Sat Jan 28 23:30:50 EST 2012 jacomecha[tid:11] <INFO>: [ 876] bytes: 12500992 | delta: 125249000 nsec | Bps: 99809116 | wps: 12476140 {ConsumerProducerQueue}
01327811451003 Sat Jan 28 23:30:51 EST 2012 jacomecha[tid:11] <INFO>: [ 877] bytes: 12500992 | delta: 119620000 nsec | Bps: 104505869 | wps: 13063234 {ConsumerProducerQueue}
01327811451120 Sat Jan 28 23:30:51 EST 2012 jacomecha[tid:11] <INFO>: [ 878] bytes: 12500992 | delta: 116086000 nsec | Bps: 107687335 | wps: 13460917 {ConsumerProducerQueue}
01327811451235 Sat Jan 28 23:30:51 EST 2012 jacomecha[tid:11] <INFO>: [ 879] bytes: 12500992 | delta: 115349000 nsec | Bps: 108375383 | wps: 13546923 {ConsumerProducerQueue}
01327811451351 Sat Jan 28 23:30:51 EST 2012 jacomecha[tid:11] <INFO>: [ 880] bytes: 12500992 | delta: 115013000 nsec | Bps: 108691991 | wps: 13586499 {ConsumerProducerQueue}
01327811451467 Sat Jan 28 23:30:51 EST 2012 jacomecha[tid:11] <INFO>: [ 881] bytes: 12500992 | delta: 116144000 nsec | Bps: 107633558 | wps: 13454195 {ConsumerProducerQueue}
01327811451582 Sat Jan 28 23:30:51 EST 2012 jacomecha[tid:11] <INFO>: [ 882] bytes: 12500992 | delta: 114188000 nsec | Bps: 109477283 | wps: 13684660 {ConsumerProducerQueue}
01327811451701 Sat Jan 28 23:30:51 EST 2012 jacomecha[tid:11] <INFO>: [ 883] bytes: 12500992 | delta: 118458000 nsec | Bps: 105531007 | wps: 13191376 {ConsumerProducerQueue}
01327811451818 Sat Jan 28 23:30:51 EST 2012 jacomecha[tid:11] <INFO>: [ 884] bytes: 12500992 | delta: 116785000 nsec | Bps: 107042788 | wps: 13380349 {ConsumerProducerQueue}
01327811451935 Sat Jan 28 23:30:51 EST 2012 jacomecha[tid:11] <INFO>: [ 885] bytes: 12500992 | delta: 116022000 nsec | Bps: 107746738 | wps: 13468342 {ConsumerProducerQueue}
01327811452051 Sat Jan 28 23:30:52 EST 2012 jacomecha[tid:11] <INFO>: [ 886] bytes: 12500992 | delta: 115308000 nsec | Bps: 108413918 | wps: 13551740 {ConsumerProducerQueue}
01327811452166 Sat Jan 28 23:30:52 EST 2012 jacomecha[tid:11] <INFO>: [ 887] bytes: 12500992 | delta: 114674000 nsec | Bps: 109013307 | wps: 13626663 {ConsumerProducerQueue}
01327811452280 Sat Jan 28 23:30:52 EST 2012 jacomecha[tid:11] <INFO>: [ 888] bytes: 12500992 | delta: 113474000 nsec | Bps: 110166135 | wps: 13770767 {ConsumerProducerQueue}
01327811452398 Sat Jan 28 23:30:52 EST 2012 jacomecha[tid:11] <INFO>: [ 889] bytes: 12500992 | delta: 117726000 nsec | Bps: 106187180 | wps: 13273398 {ConsumerProducerQueue}
01327811452514 Sat Jan 28 23:30:52 EST 2012 jacomecha[tid:11] <INFO>: [ 890] bytes: 12500992 | delta: 115218000 nsec | Bps: 108498603 | wps: 13562325 {ConsumerProducerQueue}
01327811452629 Sat Jan 28 23:30:52 EST 2012 jacomecha[tid:11] <INFO>: [ 891] bytes: 12500992 | delta: 114136000 nsec | Bps: 109527161 | wps: 13690895 {ConsumerProducerQueue}
01327811452744 Sat Jan 28 23:30:52 EST 2012 jacomecha[tid:11] <INFO>: [ 892] bytes: 12500992 | delta: 114527000 nsec | Bps: 109153230 | wps: 13644154 {ConsumerProducerQueue}
01327811452874 Sat Jan 28 23:30:52 EST 2012 jacomecha[tid:11] <INFO>: [ 893] bytes: 12500992 | delta: 129313000 nsec | Bps: 96672353 | wps: 12084044 {ConsumerProducerQueue}
01327811453001 Sat Jan 28 23:30:53 EST 2012 jacomecha[tid:11] <INFO>: [ 894] bytes: 12500992 | delta: 126957000 nsec | Bps: 98466347 | wps: 12308293 {ConsumerProducerQueue}
01327811453116 Sat Jan 28 23:30:53 EST 2012 jacomecha[tid:11] <INFO>: [ 895] bytes: 12500992 | delta: 114499000 nsec | Bps: 109179923 | wps: 13647490 {ConsumerProducerQueue}
01327811453247 Sat Jan 28 23:30:53 EST 2012 jacomecha[tid:11] <INFO>: [ 896] bytes: 12500992 | delta: 130184000 nsec | Bps: 96025564 | wps: 12003195 {ConsumerProducerQueue}
01327811453362 Sat Jan 28 23:30:53 EST 2012 jacomecha[tid:11] <INFO>: [ 897] bytes: 12500992 | delta: 114989000 nsec | Bps: 108714677 | wps: 13589335 {ConsumerProducerQueue}
01327811453478 Sat Jan 28 23:30:53 EST 2012 jacomecha[tid:11] <INFO>: [ 898] bytes: 12500992 | delta: 115084000 nsec | Bps: 108624935 | wps: 13578117 {ConsumerProducerQueue}
01327811453593 Sat Jan 28 23:30:53 EST 2012 jacomecha[tid:11] <INFO>: [ 899] bytes: 12500992 | delta: 114407000 nsec | Bps: 109267720 | wps: 13658465 {ConsumerProducerQueue}
01327811453710 Sat Jan 28 23:30:53 EST 2012 jacomecha[tid:11] <INFO>: [ 900] bytes: 12500992 | delta: 116764000 nsec | Bps: 107062040 | wps: 13382755 {ConsumerProducerQueue}
01327811453825 Sat Jan 28 23:30:53 EST 2012 jacomecha[tid:11] <INFO>: [ 901] bytes: 12500992 | delta: 114865000 nsec | Bps: 108832038 | wps: 13604005 {ConsumerProducerQueue}
01327811453942 Sat Jan 28 23:30:53 EST 2012 jacomecha[tid:11] <INFO>: [ 902] bytes: 12500992 | delta: 115796000 nsec | Bps: 107957028 | wps: 13494628 {ConsumerProducerQueue}
01327811454057 Sat Jan 28 23:30:54 EST 2012 jacomecha[tid:11] <INFO>: [ 903] bytes: 12500992 | delta: 114832000 nsec | Bps: 108863313 | wps: 13607914 {ConsumerProducerQueue}
01327811454172 Sat Jan 28 23:30:54 EST 2012 jacomecha[tid:11] <INFO>: [ 904] bytes: 12500992 | delta: 114542000 nsec | Bps: 109138936 | wps: 13642367 {ConsumerProducerQueue}
01327811454288 Sat Jan 28 23:30:54 EST 2012 jacomecha[tid:11] <INFO>: [ 905] bytes: 12500992 | delta: 114490000 nsec | Bps: 109188506 | wps: 13648563 {ConsumerProducerQueue}
01327811454405 Sat Jan 28 23:30:54 EST 2012 jacomecha[tid:11] <INFO>: [ 906] bytes: 12500992 | delta: 116584000 nsec | Bps: 107227338 | wps: 13403417 {ConsumerProducerQueue}
01327811454519 Sat Jan 28 23:30:54 EST 2012 jacomecha[tid:11] <INFO>: [ 907] bytes: 12500992 | delta: 113703000 nsec | Bps: 109944258 | wps: 13743032 {ConsumerProducerQueue}
01327811454635 Sat Jan 28 23:30:54 EST 2012 jacomecha[tid:11] <INFO>: [ 908] bytes: 12500992 | delta: 115228000 nsec | Bps: 108489187 | wps: 13561148 {ConsumerProducerQueue}
01327811454750 Sat Jan 28 23:30:54 EST 2012 jacomecha[tid:11] <INFO>: [ 909] bytes: 12500992 | delta: 115016000 nsec | Bps: 108689156 | wps: 13586145 {ConsumerProducerQueue}
01327811454878 Sat Jan 28 23:30:54 EST 2012 jacomecha[tid:11] <INFO>: [ 910] bytes: 12500992 | delta: 126798000 nsec | Bps: 98589820 | wps: 12323728 {ConsumerProducerQueue}
01327811455002 Sat Jan 28 23:30:55 EST 2012 jacomecha[tid:11] <INFO>: [ 911] bytes: 12500992 | delta: 123769000 nsec | Bps: 101002610 | wps: 12625326 {ConsumerProducerQueue}
01327811455117 Sat Jan 28 23:30:55 EST 2012 jacomecha[tid:11] <INFO>: [ 912] bytes: 12500992 | delta: 115069000 nsec | Bps: 108639095 | wps: 13579887 {ConsumerProducerQueue}
01327811455233 Sat Jan 28 23:30:55 EST 2012 jacomecha[tid:11] <INFO>: [ 913] bytes: 12500992 | delta: 115223000 nsec | Bps: 108493894 | wps: 13561737 {ConsumerProducerQueue}
01327811455351 Sat Jan 28 23:30:55 EST 2012 jacomecha[tid:11] <INFO>: [ 914] bytes: 12500992 | delta: 117805000 nsec | Bps: 106115971 | wps: 13264496 {ConsumerProducerQueue}
01327811455469 Sat Jan 28 23:30:55 EST 2012 jacomecha[tid:11] <INFO>: [ 915] bytes: 12500992 | delta: 117200000 nsec | Bps: 106663754 | wps: 13332969 {ConsumerProducerQueue}
01327811455584 Sat Jan 28 23:30:55 EST 2012 jacomecha[tid:11] <INFO>: [ 916] bytes: 12500992 | delta: 114613000 nsec | Bps: 109071327 | wps: 13633916 {ConsumerProducerQueue}
01327811455702 Sat Jan 28 23:30:55 EST 2012 jacomecha[tid:11] <INFO>: [ 917] bytes: 12500992 | delta: 117138000 nsec | Bps: 106720210 | wps: 13340026 {ConsumerProducerQueue}
01327811455818 Sat Jan 28 23:30:55 EST 2012 jacomecha[tid:11] <INFO>: [ 918] bytes: 12500992 | delta: 115584000 nsec | Bps: 108155039 | wps: 13519380 {ConsumerProducerQueue}
01327811455933 Sat Jan 28 23:30:55 EST 2012 jacomecha[tid:11] <INFO>: [ 919] bytes: 12500992 | delta: 114444000 nsec | Bps: 109232393 | wps: 13654049 {ConsumerProducerQueue}
01327811456051 Sat Jan 28 23:30:56 EST 2012 jacomecha[tid:11] <INFO>: [ 920] bytes: 12500992 | delta: 117734000 nsec | Bps: 106179965 | wps: 13272496 {ConsumerProducerQueue}
01327811456164 Sat Jan 28 23:30:56 EST 2012 jacomecha[tid:11] <INFO>: [ 921] bytes: 12500992 | delta: 112723000 nsec | Bps: 110900100 | wps: 13862513 {ConsumerProducerQueue}
01327811456282 Sat Jan 28 23:30:56 EST 2012 jacomecha[tid:11] <INFO>: [ 922] bytes: 12500992 | delta: 117558000 nsec | Bps: 106338931 | wps: 13292366 {ConsumerProducerQueue}
01327811456397 Sat Jan 28 23:30:56 EST 2012 jacomecha[tid:11] <INFO>: [ 923] bytes: 12500992 | delta: 114199000 nsec | Bps: 109466738 | wps: 13683342 {ConsumerProducerQueue}
01327811456512 Sat Jan 28 23:30:56 EST 2012 jacomecha[tid:11] <INFO>: [ 924] bytes: 12500992 | delta: 115473000 nsec | Bps: 108259004 | wps: 13532376 {ConsumerProducerQueue}
01327811456627 Sat Jan 28 23:30:56 EST 2012 jacomecha[tid:11] <INFO>: [ 925] bytes: 12500992 | delta: 114290000 nsec | Bps: 109379578 | wps: 13672447 {ConsumerProducerQueue}
01327811456743 Sat Jan 28 23:30:56 EST 2012 jacomecha[tid:11] <INFO>: [ 926] bytes: 12500992 | delta: 115091000 nsec | Bps: 108618328 | wps: 13577291 {ConsumerProducerQueue}
01327811456869 Sat Jan 28 23:30:56 EST 2012 jacomecha[tid:11] <INFO>: [ 927] bytes: 12500992 | delta: 119950000 nsec | Bps: 104218358 | wps: 13027295 {ConsumerProducerQueue}
01327811456991 Sat Jan 28 23:30:56 EST 2012 jacomecha[tid:11] <INFO>: [ 928] bytes: 12500992 | delta: 121852000 nsec | Bps: 102591603 | wps: 12823950 {ConsumerProducerQueue}
01327811457106 Sat Jan 28 23:30:57 EST 2012 jacomecha[tid:11] <INFO>: [ 929] bytes: 12500992 | delta: 114577000 nsec | Bps: 109105597 | wps: 13638200 {ConsumerProducerQueue}
01327811457221 Sat Jan 28 23:30:57 EST 2012 jacomecha[tid:11] <INFO>: [ 930] bytes: 12500992 | delta: 114472000 nsec | Bps: 109205675 | wps: 13650709 {ConsumerProducerQueue}
01327811457336 Sat Jan 28 23:30:57 EST 2012 jacomecha[tid:11] <INFO>: [ 931] bytes: 12500992 | delta: 114851000 nsec | Bps: 108845304 | wps: 13605663 {ConsumerProducerQueue}
01327811457451 Sat Jan 28 23:30:57 EST 2012 jacomecha[tid:11] <INFO>: [ 932] bytes: 12500992 | delta: 114092000 nsec | Bps: 109569400 | wps: 13696175 {ConsumerProducerQueue}
01327811457572 Sat Jan 28 23:30:57 EST 2012 jacomecha[tid:11] <INFO>: [ 933] bytes: 12500992 | delta: 120652000 nsec | Bps: 103611975 | wps: 12951497 {ConsumerProducerQueue}
01327811457689 Sat Jan 28 23:30:57 EST 2012 jacomecha[tid:11] <INFO>: [ 934] bytes: 12500992 | delta: 115741000 nsec | Bps: 108008329 | wps: 13501041 {ConsumerProducerQueue}
01327811457805 Sat Jan 28 23:30:57 EST 2012 jacomecha[tid:11] <INFO>: [ 935] bytes: 12500992 | delta: 116204000 nsec | Bps: 107577984 | wps: 13447248 {ConsumerProducerQueue}
01327811457924 Sat Jan 28 23:30:57 EST 2012 jacomecha[tid:11] <INFO>: [ 936] bytes: 12500992 | delta: 117724000 nsec | Bps: 106188984 | wps: 13273623 {ConsumerProducerQueue}
01327811458038 Sat Jan 28 23:30:58 EST 2012 jacomecha[tid:11] <INFO>: [ 937] bytes: 12500992 | delta: 114219000 nsec | Bps: 109447570 | wps: 13680946 {ConsumerProducerQueue}
01327811458154 Sat Jan 28 23:30:58 EST 2012 jacomecha[tid:11] <INFO>: [ 938] bytes: 12500992 | delta: 115149000 nsec | Bps: 108563618 | wps: 13570452 {ConsumerProducerQueue}
01327811458279 Sat Jan 28 23:30:58 EST 2012 jacomecha[tid:11] <INFO>: [ 939] bytes: 12500992 | delta: 124856000 nsec | Bps: 100123278 | wps: 12515410 {ConsumerProducerQueue}
01327811458397 Sat Jan 28 23:30:58 EST 2012 jacomecha[tid:11] <INFO>: [ 940] bytes: 12500992 | delta: 116746000 nsec | Bps: 107078547 | wps: 13384818 {ConsumerProducerQueue}
01327811458512 Sat Jan 28 23:30:58 EST 2012 jacomecha[tid:11] <INFO>: [ 941] bytes: 12500992 | delta: 115232000 nsec | Bps: 108485421 | wps: 13560678 {ConsumerProducerQueue}
01327811458629 Sat Jan 28 23:30:58 EST 2012 jacomecha[tid:11] <INFO>: [ 942] bytes: 12500992 | delta: 115835000 nsec | Bps: 107920680 | wps: 13490085 {ConsumerProducerQueue}
01327811458745 Sat Jan 28 23:30:58 EST 2012 jacomecha[tid:11] <INFO>: [ 943] bytes: 12500992 | delta: 115697000 nsec | Bps: 108049405 | wps: 13506176 {ConsumerProducerQueue}
01327811458871 Sat Jan 28 23:30:58 EST 2012 jacomecha[tid:11] <INFO>: [ 944] bytes: 12500992 | delta: 125643000 nsec | Bps: 99496128 | wps: 12437016 {ConsumerProducerQueue}
01327811459005 Sat Jan 28 23:30:59 EST 2012 jacomecha[tid:11] <INFO>: [ 945] bytes: 12500992 | delta: 133665000 nsec | Bps: 93524797 | wps: 11690600 {ConsumerProducerQueue}
01327811459121 Sat Jan 28 23:30:59 EST 2012 jacomecha[tid:11] <INFO>: [ 946] bytes: 12500992 | delta: 115551000 nsec | Bps: 108185927 | wps: 13523241 {ConsumerProducerQueue}
01327811459238 Sat Jan 28 23:30:59 EST 2012 jacomecha[tid:11] <INFO>: [ 947] bytes: 12500992 | delta: 116697000 nsec | Bps: 107123508 | wps: 13390438 {ConsumerProducerQueue}
01327811459353 Sat Jan 28 23:30:59 EST 2012 jacomecha[tid:11] <INFO>: [ 948] bytes: 12500992 | delta: 113934000 nsec | Bps: 109721347 | wps: 13715168 {ConsumerProducerQueue}
01327811459471 Sat Jan 28 23:30:59 EST 2012 jacomecha[tid:11] <INFO>: [ 949] bytes: 12500992 | delta: 115404000 nsec | Bps: 108323732 | wps: 13540467 {ConsumerProducerQueue}
01327811459588 Sat Jan 28 23:30:59 EST 2012 jacomecha[tid:11] <INFO>: [ 950] bytes: 12500992 | delta: 117143000 nsec | Bps: 106715655 | wps: 13339457 {ConsumerProducerQueue}
01327811459703 Sat Jan 28 23:30:59 EST 2012 jacomecha[tid:11] <INFO>: [ 951] bytes: 12500992 | delta: 114706000 nsec | Bps: 108982895 | wps: 13622862 {ConsumerProducerQueue}
01327811459819 Sat Jan 28 23:30:59 EST 2012 jacomecha[tid:11] <INFO>: [ 952] bytes: 12500992 | delta: 114757000 nsec | Bps: 108934462 | wps: 13616808 {ConsumerProducerQueue}
01327811459936 Sat Jan 28 23:30:59 EST 2012 jacomecha[tid:11] <INFO>: [ 953] bytes: 12500992 | delta: 116400000 nsec | Bps: 107396838 | wps: 13424605 {ConsumerProducerQueue}
01327811460052 Sat Jan 28 23:31:00 EST 2012 jacomecha[tid:11] <INFO>: [ 954] bytes: 12500992 | delta: 116133000 nsec | Bps: 107643753 | wps: 13455469 {ConsumerProducerQueue}
01327811460169 Sat Jan 28 23:31:00 EST 2012 jacomecha[tid:11] <INFO>: [ 955] bytes: 12500992 | delta: 115824000 nsec | Bps: 107930930 | wps: 13491366 {ConsumerProducerQueue}
01327811460284 Sat Jan 28 23:31:00 EST 2012 jacomecha[tid:11] <INFO>: [ 956] bytes: 12500992 | delta: 114795000 nsec | Bps: 108898401 | wps: 13612300 {ConsumerProducerQueue}
01327811460398 Sat Jan 28 23:31:00 EST 2012 jacomecha[tid:11] <INFO>: [ 957] bytes: 12500992 | delta: 113393000 nsec | Bps: 110244830 | wps: 13780604 {ConsumerProducerQueue}
01327811460512 Sat Jan 28 23:31:00 EST 2012 jacomecha[tid:11] <INFO>: [ 958] bytes: 12500992 | delta: 113868000 nsec | Bps: 109784944 | wps: 13723118 {ConsumerProducerQueue}
01327811460630 Sat Jan 28 23:31:00 EST 2012 jacomecha[tid:11] <INFO>: [ 959] bytes: 12500992 | delta: 117176000 nsec | Bps: 106685601 | wps: 13335700 {ConsumerProducerQueue}
01327811460747 Sat Jan 28 23:31:00 EST 2012 jacomecha[tid:11] <INFO>: [ 960] bytes: 12500992 | delta: 115464000 nsec | Bps: 108267443 | wps: 13533430 {ConsumerProducerQueue}
01327811460869 Sat Jan 28 23:31:00 EST 2012 jacomecha[tid:11] <INFO>: [ 961] bytes: 12500992 | delta: 120786000 nsec | Bps: 103497028 | wps: 12937128 {ConsumerProducerQueue}
01327811460999 Sat Jan 28 23:31:00 EST 2012 jacomecha[tid:11] <INFO>: [ 962] bytes: 12500992 | delta: 129646000 nsec | Bps: 96424047 | wps: 12053006 {ConsumerProducerQueue}
01327811461111 Sat Jan 28 23:31:01 EST 2012 jacomecha[tid:11] <INFO>: [ 963] bytes: 12500992 | delta: 112160000 nsec | Bps: 111456776 | wps: 13932097 {ConsumerProducerQueue}
01327811461230 Sat Jan 28 23:31:01 EST 2012 jacomecha[tid:11] <INFO>: [ 964] bytes: 12500992 | delta: 117838000 nsec | Bps: 106086254 | wps: 13260782 {ConsumerProducerQueue}
01327811461348 Sat Jan 28 23:31:01 EST 2012 jacomecha[tid:11] <INFO>: [ 965] bytes: 12500992 | delta: 117426000 nsec | Bps: 106458467 | wps: 13307308 {ConsumerProducerQueue}
01327811461462 Sat Jan 28 23:31:01 EST 2012 jacomecha[tid:11] <INFO>: [ 966] bytes: 12500992 | delta: 113204000 nsec | Bps: 110428889 | wps: 13803611 {ConsumerProducerQueue}
01327811461577 Sat Jan 28 23:31:01 EST 2012 jacomecha[tid:11] <INFO>: [ 967] bytes: 12500992 | delta: 114900000 nsec | Bps: 108798886 | wps: 13599861 {ConsumerProducerQueue}
01327811461695 Sat Jan 28 23:31:01 EST 2012 jacomecha[tid:11] <INFO>: [ 968] bytes: 12500992 | delta: 115788000 nsec | Bps: 107964487 | wps: 13495561 {ConsumerProducerQueue}
01327811461812 Sat Jan 28 23:31:01 EST 2012 jacomecha[tid:11] <INFO>: [ 969] bytes: 12500992 | delta: 116004000 nsec | Bps: 107763456 | wps: 13470432 {ConsumerProducerQueue}
01327811461928 Sat Jan 28 23:31:01 EST 2012 jacomecha[tid:11] <INFO>: [ 970] bytes: 12500992 | delta: 115548000 nsec | Bps: 108188735 | wps: 13523592 {ConsumerProducerQueue}
01327811462050 Sat Jan 28 23:31:02 EST 2012 jacomecha[tid:11] <INFO>: [ 971] bytes: 12500992 | delta: 122264000 nsec | Bps: 102245894 | wps: 12780737 {ConsumerProducerQueue}
01327811462168 Sat Jan 28 23:31:02 EST 2012 jacomecha[tid:11] <INFO>: [ 972] bytes: 12500992 | delta: 116748000 nsec | Bps: 107076712 | wps: 13384589 {ConsumerProducerQueue}
01327811462283 Sat Jan 28 23:31:02 EST 2012 jacomecha[tid:11] <INFO>: [ 973] bytes: 12500992 | delta: 114495000 nsec | Bps: 109183737 | wps: 13647967 {ConsumerProducerQueue}
01327811462399 Sat Jan 28 23:31:02 EST 2012 jacomecha[tid:11] <INFO>: [ 974] bytes: 12500992 | delta: 114660000 nsec | Bps: 109026618 | wps: 13628327 {ConsumerProducerQueue}
01327811462514 Sat Jan 28 23:31:02 EST 2012 jacomecha[tid:11] <INFO>: [ 975] bytes: 12500992 | delta: 114893000 nsec | Bps: 108805515 | wps: 13600689 {ConsumerProducerQueue}
01327811462630 Sat Jan 28 23:31:02 EST 2012 jacomecha[tid:11] <INFO>: [ 976] bytes: 12500992 | delta: 115259000 nsec | Bps: 108460007 | wps: 13557501 {ConsumerProducerQueue}
01327811462746 Sat Jan 28 23:31:02 EST 2012 jacomecha[tid:11] <INFO>: [ 977] bytes: 12500992 | delta: 115491000 nsec | Bps: 108242131 | wps: 13530266 {ConsumerProducerQueue}
01327811462882 Sat Jan 28 23:31:02 EST 2012 jacomecha[tid:11] <INFO>: [ 978] bytes: 12500992 | delta: 135849000 nsec | Bps: 92021229 | wps: 11502654 {ConsumerProducerQueue}
01327811463002 Sat Jan 28 23:31:03 EST 2012 jacomecha[tid:11] <INFO>: [ 979] bytes: 12500992 | delta: 120178000 nsec | Bps: 104020636 | wps: 13002580 {ConsumerProducerQueue}
01327811463120 Sat Jan 28 23:31:03 EST 2012 jacomecha[tid:11] <INFO>: [ 980] bytes: 12500992 | delta: 116194000 nsec | Bps: 107587242 | wps: 13448405 {ConsumerProducerQueue}
01327811463245 Sat Jan 28 23:31:03 EST 2012 jacomecha[tid:11] <INFO>: [ 981] bytes: 12500992 | delta: 124467000 nsec | Bps: 100436196 | wps: 12554524 {ConsumerProducerQueue}
01327811463361 Sat Jan 28 23:31:03 EST 2012 jacomecha[tid:11] <INFO>: [ 982] bytes: 12500992 | delta: 115786000 nsec | Bps: 107966352 | wps: 13495794 {ConsumerProducerQueue}
01327811463480 Sat Jan 28 23:31:03 EST 2012 jacomecha[tid:11] <INFO>: [ 983] bytes: 12500992 | delta: 118399000 nsec | Bps: 105583594 | wps: 13197949 {ConsumerProducerQueue}
01327811463595 Sat Jan 28 23:31:03 EST 2012 jacomecha[tid:11] <INFO>: [ 984] bytes: 12500992 | delta: 114228000 nsec | Bps: 109438947 | wps: 13679868 {ConsumerProducerQueue}
01327811463710 Sat Jan 28 23:31:03 EST 2012 jacomecha[tid:11] <INFO>: [ 985] bytes: 12500992 | delta: 113642000 nsec | Bps: 110003273 | wps: 13750409 {ConsumerProducerQueue}
01327811463829 Sat Jan 28 23:31:03 EST 2012 jacomecha[tid:11] <INFO>: [ 986] bytes: 12500992 | delta: 118861000 nsec | Bps: 105173202 | wps: 13146650 {ConsumerProducerQueue}
01327811463944 Sat Jan 28 23:31:03 EST 2012 jacomecha[tid:11] <INFO>: [ 987] bytes: 12500992 | delta: 114071000 nsec | Bps: 109589571 | wps: 13698696 {ConsumerProducerQueue}
01327811464061 Sat Jan 28 23:31:04 EST 2012 jacomecha[tid:11] <INFO>: [ 988] bytes: 12500992 | delta: 116880000 nsec | Bps: 106955784 | wps: 13369473 {ConsumerProducerQueue}
01327811464175 Sat Jan 28 23:31:04 EST 2012 jacomecha[tid:11] <INFO>: [ 989] bytes: 12500992 | delta: 113109000 nsec | Bps: 110521638 | wps: 13815205 {ConsumerProducerQueue}
01327811464291 Sat Jan 28 23:31:04 EST 2012 jacomecha[tid:11] <INFO>: [ 990] bytes: 12500992 | delta: 115769000 nsec | Bps: 107982206 | wps: 13497776 {ConsumerProducerQueue}
01327811464407 Sat Jan 28 23:31:04 EST 2012 jacomecha[tid:11] <INFO>: [ 991] bytes: 12500992 | delta: 116302000 nsec | Bps: 107487335 | wps: 13435917 {ConsumerProducerQueue}
01327811464524 Sat Jan 28 23:31:04 EST 2012 jacomecha[tid:11] <INFO>: [ 992] bytes: 12500992 | delta: 115840000 nsec | Bps: 107916022 | wps: 13489503 {ConsumerProducerQueue}
01327811464641 Sat Jan 28 23:31:04 EST 2012 jacomecha[tid:11] <INFO>: [ 993] bytes: 12500992 | delta: 116263000 nsec | Bps: 107523391 | wps: 13440424 {ConsumerProducerQueue}
01327811464757 Sat Jan 28 23:31:04 EST 2012 jacomecha[tid:11] <INFO>: [ 994] bytes: 12500992 | delta: 116029000 nsec | Bps: 107740237 | wps: 13467530 {ConsumerProducerQueue}
01327811464880 Sat Jan 28 23:31:04 EST 2012 jacomecha[tid:11] <INFO>: [ 995] bytes: 12500992 | delta: 122581000 nsec | Bps: 101981482 | wps: 12747685 {ConsumerProducerQueue}
01327811465003 Sat Jan 28 23:31:05 EST 2012 jacomecha[tid:11] <INFO>: [ 996] bytes: 12500992 | delta: 122495000 nsec | Bps: 102053080 | wps: 12756635 {ConsumerProducerQueue}
01327811465119 Sat Jan 28 23:31:05 EST 2012 jacomecha[tid:11] <INFO>: [ 997] bytes: 12500992 | delta: 115148000 nsec | Bps: 108564560 | wps: 13570570 {ConsumerProducerQueue}
01327811465235 Sat Jan 28 23:31:05 EST 2012 jacomecha[tid:11] <INFO>: [ 998] bytes: 12500992 | delta: 115302000 nsec | Bps: 108419559 | wps: 13552445 {ConsumerProducerQueue}
01327811465353 Sat Jan 28 23:31:05 EST 2012 jacomecha[tid:11] <INFO>: [ 999] bytes: 12500992 | delta: 117570000 nsec | Bps: 106328077 | wps: 13291010 {ConsumerProducerQueue}
01327811465469 Sat Jan 28 23:31:05 EST 2012 jacomecha[tid:11] <INFO>: [ 1000] bytes: 12500992 | delta: 115236000 nsec | Bps: 108481655 | wps: 13560207 {ConsumerProducerQueue}
01327811465469 Sat Jan 28 23:31:05 EST 2012 jacomecha[tid:11] <INFO>: ---
01327811465469 Sat Jan 28 23:31:05 EST 2012 jacomecha[tid:11] <INFO>: consumer stopping for summation
01327811465469 Sat Jan 28 23:31:05 EST 2012 jacomecha[tid:11] <INFO>: ---
01327811465470 Sat Jan 28 23:31:05 EST 2012 jacomecha[tid:11] <INFO>: [ TOTAL] bytes: 12500992000 | delta:117605985000 nsec | Bps: 106295543 | wps: 13286943 {ConsumerProducerQueue}
////////////////// TCPQ /////////////////
01327811520294 Sat Jan 28 23:32:00 EST 2012 jacomecha[tid:13] <INFO>: [ 455] bytes: 12906496 | delta: 7280000 nsec | Bps: 1772870330 | wps: 221608791 {TcpQueueBase}
01327811520301 Sat Jan 28 23:32:00 EST 2012 jacomecha[tid:13] <INFO>: [ 456] bytes: 12906496 | delta: 7309000 nsec | Bps: 1765836092 | wps: 220729512 {TcpQueueBase}
01327811520309 Sat Jan 28 23:32:00 EST 2012 jacomecha[tid:13] <INFO>: [ 457] bytes: 12906496 | delta: 7459000 nsec | Bps: 1730325245 | wps: 216290656 {TcpQueueBase}
01327811520316 Sat Jan 28 23:32:00 EST 2012 jacomecha[tid:13] <INFO>: [ 458] bytes: 12906496 | delta: 6518000 nsec | Bps: 1980131329 | wps: 247516416 {TcpQueueBase}
01327811520324 Sat Jan 28 23:32:00 EST 2012 jacomecha[tid:13] <INFO>: [ 459] bytes: 12906496 | delta: 6992000 nsec | Bps: 1845894737 | wps: 230736842 {TcpQueueBase}
01327811520331 Sat Jan 28 23:32:00 EST 2012 jacomecha[tid:13] <INFO>: [ 460] bytes: 12906496 | delta: 6734000 nsec | Bps: 1916616573 | wps: 239577072 {TcpQueueBase}
01327811520339 Sat Jan 28 23:32:00 EST 2012 jacomecha[tid:13] <INFO>: [ 461] bytes: 12906496 | delta: 7867000 nsec | Bps: 1640586755 | wps: 205073344 {TcpQueueBase}
01327811520347 Sat Jan 28 23:32:00 EST 2012 jacomecha[tid:13] <INFO>: [ 462] bytes: 12906496 | delta: 6799000 nsec | Bps: 1898293278 | wps: 237286660 {TcpQueueBase}
01327811520354 Sat Jan 28 23:32:00 EST 2012 jacomecha[tid:13] <INFO>: [ 463] bytes: 12906496 | delta: 7109000 nsec | Bps: 1815514981 | wps: 226939373 {TcpQueueBase}
01327811520361 Sat Jan 28 23:32:00 EST 2012 jacomecha[tid:13] <INFO>: [ 464] bytes: 12906496 | delta: 6474000 nsec | Bps: 1993589126 | wps: 249198641 {TcpQueueBase}
01327811520371 Sat Jan 28 23:32:00 EST 2012 jacomecha[tid:13] <INFO>: [ 465] bytes: 12906496 | delta: 9328000 nsec | Bps: 1383629503 | wps: 172953688 {TcpQueueBase}
01327811520379 Sat Jan 28 23:32:00 EST 2012 jacomecha[tid:13] <INFO>: [ 466] bytes: 12906496 | delta: 7668000 nsec | Bps: 1683163276 | wps: 210395409 {TcpQueueBase}
01327811520390 Sat Jan 28 23:32:00 EST 2012 jacomecha[tid:13] <INFO>: [ 467] bytes: 12906496 | delta: 10338000 nsec | Bps: 1248451925 | wps: 156056491 {TcpQueueBase}
01327811520399 Sat Jan 28 23:32:00 EST 2012 jacomecha[tid:13] <INFO>: [ 468] bytes: 12906496 | delta: 7779000 nsec | Bps: 1659145906 | wps: 207393238 {TcpQueueBase}
01327811520406 Sat Jan 28 23:32:00 EST 2012 jacomecha[tid:13] <INFO>: [ 469] bytes: 12906496 | delta: 6136000 nsec | Bps: 2103405476 | wps: 262925684 {TcpQueueBase}
01327811520414 Sat Jan 28 23:32:00 EST 2012 jacomecha[tid:13] <INFO>: [ 470] bytes: 12906496 | delta: 8285000 nsec | Bps: 1557814846 | wps: 194726856 {TcpQueueBase}
01327811520422 Sat Jan 28 23:32:00 EST 2012 jacomecha[tid:13] <INFO>: [ 471] bytes: 12906496 | delta: 7009000 nsec | Bps: 1841417606 | wps: 230177201 {TcpQueueBase}
01327811520429 Sat Jan 28 23:32:00 EST 2012 jacomecha[tid:13] <INFO>: [ 472] bytes: 12906496 | delta: 6379000 nsec | Bps: 2023278884 | wps: 252909860 {TcpQueueBase}
01327811520436 Sat Jan 28 23:32:00 EST 2012 jacomecha[tid:13] <INFO>: [ 473] bytes: 12906496 | delta: 7202000 nsec | Bps: 1792071091 | wps: 224008886 {TcpQueueBase}
01327811520443 Sat Jan 28 23:32:00 EST 2012 jacomecha[tid:13] <INFO>: [ 474] bytes: 12906496 | delta: 6650000 nsec | Bps: 1940826466 | wps: 242603308 {TcpQueueBase}
01327811520451 Sat Jan 28 23:32:00 EST 2012 jacomecha[tid:13] <INFO>: [ 475] bytes: 12906496 | delta: 6734000 nsec | Bps: 1916616573 | wps: 239577072 {TcpQueueBase}
01327811520458 Sat Jan 28 23:32:00 EST 2012 jacomecha[tid:13] <INFO>: [ 476] bytes: 12906496 | delta: 6715000 nsec | Bps: 1922039613 | wps: 240254952 {TcpQueueBase}
01327811520465 Sat Jan 28 23:32:00 EST 2012 jacomecha[tid:13] <INFO>: [ 477] bytes: 12906496 | delta: 6412000 nsec | Bps: 2012865876 | wps: 251608235 {TcpQueueBase}
01327811520474 Sat Jan 28 23:32:00 EST 2012 jacomecha[tid:13] <INFO>: [ 478] bytes: 12906496 | delta: 7968000 nsec | Bps: 1619791165 | wps: 202473896 {TcpQueueBase}
01327811520484 Sat Jan 28 23:32:00 EST 2012 jacomecha[tid:13] <INFO>: [ 479] bytes: 12906496 | delta: 8776000 nsec | Bps: 1470658159 | wps: 183832270 {TcpQueueBase}
01327811520490 Sat Jan 28 23:32:00 EST 2012 jacomecha[tid:13] <INFO>: [ 480] bytes: 12906496 | delta: 6157000 nsec | Bps: 2096231281 | wps: 262028910 {TcpQueueBase}
01327811520501 Sat Jan 28 23:32:00 EST 2012 jacomecha[tid:13] <INFO>: [ 481] bytes: 12906496 | delta: 10207000 nsec | Bps: 1264474968 | wps: 158059371 {TcpQueueBase}
01327811520510 Sat Jan 28 23:32:00 EST 2012 jacomecha[tid:13] <INFO>: [ 482] bytes: 12906496 | delta: 8338000 nsec | Bps: 1547912689 | wps: 193489086 {TcpQueueBase}
01327811520519 Sat Jan 28 23:32:00 EST 2012 jacomecha[tid:13] <INFO>: [ 483] bytes: 12906496 | delta: 8052000 nsec | Bps: 1602893194 | wps: 200361649 {TcpQueueBase}
01327811520527 Sat Jan 28 23:32:00 EST 2012 jacomecha[tid:13] <INFO>: [ 484] bytes: 12906496 | delta: 7555000 nsec | Bps: 1708338319 | wps: 213542290 {TcpQueueBase}
01327811520536 Sat Jan 28 23:32:00 EST 2012 jacomecha[tid:13] <INFO>: [ 485] bytes: 12906496 | delta: 7952000 nsec | Bps: 1623050302 | wps: 202881288 {TcpQueueBase}
01327811520544 Sat Jan 28 23:32:00 EST 2012 jacomecha[tid:13] <INFO>: [ 486] bytes: 12906496 | delta: 7909000 nsec | Bps: 1631874573 | wps: 203984322 {TcpQueueBase}
01327811520551 Sat Jan 28 23:32:00 EST 2012 jacomecha[tid:13] <INFO>: [ 487] bytes: 12906496 | delta: 6335000 nsec | Bps: 2037331650 | wps: 254666456 {TcpQueueBase}
01327811520559 Sat Jan 28 23:32:00 EST 2012 jacomecha[tid:13] <INFO>: [ 488] bytes: 12906496 | delta: 7083000 nsec | Bps: 1822179303 | wps: 227772413 {TcpQueueBase}
01327811520566 Sat Jan 28 23:32:00 EST 2012 jacomecha[tid:13] <INFO>: [ 489] bytes: 12906496 | delta: 6551000 nsec | Bps: 1970156617 | wps: 246269577 {TcpQueueBase}
01327811520574 Sat Jan 28 23:32:00 EST 2012 jacomecha[tid:13] <INFO>: [ 490] bytes: 12906496 | delta: 7379000 nsec | Bps: 1749084700 | wps: 218635587 {TcpQueueBase}
01327811520581 Sat Jan 28 23:32:00 EST 2012 jacomecha[tid:13] <INFO>: [ 491] bytes: 12906496 | delta: 6915000 nsec | Bps: 1866449168 | wps: 233306146 {TcpQueueBase}
01327811520588 Sat Jan 28 23:32:00 EST 2012 jacomecha[tid:13] <INFO>: [ 492] bytes: 12906496 | delta: 6435000 nsec | Bps: 2005671484 | wps: 250708936 {TcpQueueBase}
01327811520595 Sat Jan 28 23:32:00 EST 2012 jacomecha[tid:13] <INFO>: [ 493] bytes: 12906496 | delta: 6498000 nsec | Bps: 1986225916 | wps: 248278239 {TcpQueueBase}
01327811520603 Sat Jan 28 23:32:00 EST 2012 jacomecha[tid:13] <INFO>: [ 494] bytes: 12906496 | delta: 7128000 nsec | Bps: 1810675645 | wps: 226334456 {TcpQueueBase}
01327811520612 Sat Jan 28 23:32:00 EST 2012 jacomecha[tid:13] <INFO>: [ 495] bytes: 12906496 | delta: 8172000 nsec | Bps: 1579355849 | wps: 197419481 {TcpQueueBase}
01327811520619 Sat Jan 28 23:32:00 EST 2012 jacomecha[tid:13] <INFO>: [ 496] bytes: 12906496 | delta: 6554000 nsec | Bps: 1969254806 | wps: 246156851 {TcpQueueBase}
01327811520626 Sat Jan 28 23:32:00 EST 2012 jacomecha[tid:13] <INFO>: [ 497] bytes: 12906496 | delta: 6738000 nsec | Bps: 1915478777 | wps: 239434847 {TcpQueueBase}
01327811520636 Sat Jan 28 23:32:00 EST 2012 jacomecha[tid:13] <INFO>: [ 498] bytes: 12906496 | delta: 8640000 nsec | Bps: 1493807407 | wps: 186725926 {TcpQueueBase}
01327811520646 Sat Jan 28 23:32:00 EST 2012 jacomecha[tid:13] <INFO>: [ 499] bytes: 12906496 | delta: 9528000 nsec | Bps: 1354586062 | wps: 169323258 {TcpQueueBase}
01327811520654 Sat Jan 28 23:32:00 EST 2012 jacomecha[tid:13] <INFO>: [ 500] bytes: 12906496 | delta: 7710000 nsec | Bps: 1673994293 | wps: 209249287 {TcpQueueBase}
01327811520663 Sat Jan 28 23:32:00 EST 2012 jacomecha[tid:13] <INFO>: [ 501] bytes: 12906496 | delta: 7969000 nsec | Bps: 1619587903 | wps: 202448488 {TcpQueueBase}
01327811520671 Sat Jan 28 23:32:00 EST 2012 jacomecha[tid:13] <INFO>: [ 502] bytes: 12906496 | delta: 8295000 nsec | Bps: 1555936829 | wps: 194492104 {TcpQueueBase}
01327811520680 Sat Jan 28 23:32:00 EST 2012 jacomecha[tid:13] <INFO>: [ 503] bytes: 12906496 | delta: 8245000 nsec | Bps: 1565372468 | wps: 195671559 {TcpQueueBase}
01327811520687 Sat Jan 28 23:32:00 EST 2012 jacomecha[tid:13] <INFO>: [ 504] bytes: 12906496 | delta: 6548000 nsec | Bps: 1971059255 | wps: 246382407 {TcpQueueBase}
01327811520695 Sat Jan 28 23:32:00 EST 2012 jacomecha[tid:13] <INFO>: [ 505] bytes: 12906496 | delta: 7359000 nsec | Bps: 1753838293 | wps: 219229787 {TcpQueueBase}
01327811520703 Sat Jan 28 23:32:00 EST 2012 jacomecha[tid:13] <INFO>: [ 506] bytes: 12906496 | delta: 7142000 nsec | Bps: 1807126295 | wps: 225890787 {TcpQueueBase}
01327811520712 Sat Jan 28 23:32:00 EST 2012 jacomecha[tid:13] <INFO>: [ 507] bytes: 12906496 | delta: 9165000 nsec | Bps: 1408237425 | wps: 176029678 {TcpQueueBase}
01327811520721 Sat Jan 28 23:32:00 EST 2012 jacomecha[tid:13] <INFO>: [ 508] bytes: 12906496 | delta: 8041000 nsec | Bps: 1605085935 | wps: 200635742 {TcpQueueBase}
01327811520730 Sat Jan 28 23:32:00 EST 2012 jacomecha[tid:13] <INFO>: [ 509] bytes: 12906496 | delta: 8890000 nsec | Bps: 1451799325 | wps: 181474916 {TcpQueueBase}
01327811520739 Sat Jan 28 23:32:00 EST 2012 jacomecha[tid:13] <INFO>: [ 510] bytes: 12906496 | delta: 8326000 nsec | Bps: 1550143646 | wps: 193767956 {TcpQueueBase}
01327811520748 Sat Jan 28 23:32:00 EST 2012 jacomecha[tid:13] <INFO>: [ 511] bytes: 12906496 | delta: 8283000 nsec | Bps: 1558190994 | wps: 194773874 {TcpQueueBase}
01327811520755 Sat Jan 28 23:32:00 EST 2012 jacomecha[tid:13] <INFO>: [ 512] bytes: 12906496 | delta: 6330000 nsec | Bps: 2038940916 | wps: 254867615 {TcpQueueBase}
01327811520763 Sat Jan 28 23:32:00 EST 2012 jacomecha[tid:13] <INFO>: [ 513] bytes: 12906496 | delta: 7479000 nsec | Bps: 1725698088 | wps: 215712261 {TcpQueueBase}
01327811520771 Sat Jan 28 23:32:00 EST 2012 jacomecha[tid:13] <INFO>: [ 514] bytes: 12906496 | delta: 7425000 nsec | Bps: 1738248620 | wps: 217281077 {TcpQueueBase}
01327811520778 Sat Jan 28 23:32:00 EST 2012 jacomecha[tid:13] <INFO>: [ 515] bytes: 12906496 | delta: 6483000 nsec | Bps: 1990821533 | wps: 248852692 {TcpQueueBase}
01327811520785 Sat Jan 28 23:32:00 EST 2012 jacomecha[tid:13] <INFO>: [ 516] bytes: 12906496 | delta: 6378000 nsec | Bps: 2023596112 | wps: 252949514 {TcpQueueBase}
01327811520793 Sat Jan 28 23:32:00 EST 2012 jacomecha[tid:13] <INFO>: [ 517] bytes: 12906496 | delta: 7326000 nsec | Bps: 1761738466 | wps: 220217308 {TcpQueueBase}
01327811520801 Sat Jan 28 23:32:00 EST 2012 jacomecha[tid:13] <INFO>: [ 518] bytes: 12906496 | delta: 7376000 nsec | Bps: 1749796095 | wps: 218724512 {TcpQueueBase}
01327811520809 Sat Jan 28 23:32:00 EST 2012 jacomecha[tid:13] <INFO>: [ 519] bytes: 12906496 | delta: 8431000 nsec | Bps: 1530838097 | wps: 191354762 {TcpQueueBase}
01327811520816 Sat Jan 28 23:32:00 EST 2012 jacomecha[tid:13] <INFO>: [ 520] bytes: 12906496 | delta: 6264000 nsec | Bps: 2060424010 | wps: 257553001 {TcpQueueBase}
01327811520824 Sat Jan 28 23:32:00 EST 2012 jacomecha[tid:13] <INFO>: [ 521] bytes: 12906496 | delta: 7338000 nsec | Bps: 1758857454 | wps: 219857182 {TcpQueueBase}
01327811520835 Sat Jan 28 23:32:00 EST 2012 jacomecha[tid:13] <INFO>: [ 522] bytes: 12906496 | delta: 9761000 nsec | Bps: 1322251409 | wps: 165281426 {TcpQueueBase}
01327811520845 Sat Jan 28 23:32:00 EST 2012 jacomecha[tid:13] <INFO>: [ 523] bytes: 12906496 | delta: 8865000 nsec | Bps: 1455893514 | wps: 181986689 {TcpQueueBase}
01327811520854 Sat Jan 28 23:32:00 EST 2012 jacomecha[tid:13] <INFO>: [ 524] bytes: 12906496 | delta: 8357000 nsec | Bps: 1544393443 | wps: 193049180 {TcpQueueBase}
01327811520863 Sat Jan 28 23:32:00 EST 2012 jacomecha[tid:13] <INFO>: [ 525] bytes: 12906496 | delta: 8734000 nsec | Bps: 1477730250 | wps: 184716281 {TcpQueueBase}
01327811520871 Sat Jan 28 23:32:00 EST 2012 jacomecha[tid:13] <INFO>: [ 526] bytes: 12906496 | delta: 7679000 nsec | Bps: 1680752181 | wps: 210094023 {TcpQueueBase}
01327811520879 Sat Jan 28 23:32:00 EST 2012 jacomecha[tid:13] <INFO>: [ 527] bytes: 12906496 | delta: 6843000 nsec | Bps: 1886087389 | wps: 235760924 {TcpQueueBase}
01327811520886 Sat Jan 28 23:32:00 EST 2012 jacomecha[tid:13] <INFO>: [ 528] bytes: 12906496 | delta: 6943000 nsec | Bps: 1858922080 | wps: 232365260 {TcpQueueBase}
01327811520894 Sat Jan 28 23:32:00 EST 2012 jacomecha[tid:13] <INFO>: [ 529] bytes: 12906496 | delta: 6954000 nsec | Bps: 1855981593 | wps: 231997699 {TcpQueueBase}
01327811520902 Sat Jan 28 23:32:00 EST 2012 jacomecha[tid:13] <INFO>: [ 530] bytes: 12906496 | delta: 8125000 nsec | Bps: 1588491815 | wps: 198561477 {TcpQueueBase}
01327811520909 Sat Jan 28 23:32:00 EST 2012 jacomecha[tid:13] <INFO>: [ 531] bytes: 12915904 | delta: 6339000 nsec | Bps: 2037530210 | wps: 254691276 {TcpQueueBase}
01327811520918 Sat Jan 28 23:32:00 EST 2012 jacomecha[tid:13] <INFO>: [ 532] bytes: 12916800 | delta: 8846000 nsec | Bps: 1460185395 | wps: 182523174 {TcpQueueBase}
01327811520927 Sat Jan 28 23:32:00 EST 2012 jacomecha[tid:13] <INFO>: [ 533] bytes: 12916800 | delta: 8013000 nsec | Bps: 1611980532 | wps: 201497566 {TcpQueueBase}
01327811520934 Sat Jan 28 23:32:00 EST 2012 jacomecha[tid:13] <INFO>: [ 534] bytes: 12916800 | delta: 7068000 nsec | Bps: 1827504244 | wps: 228438031 {TcpQueueBase}
01327811520942 Sat Jan 28 23:32:00 EST 2012 jacomecha[tid:13] <INFO>: [ 535] bytes: 12916800 | delta: 6844000 nsec | Bps: 1887317358 | wps: 235914670 {TcpQueueBase}
01327811520950 Sat Jan 28 23:32:00 EST 2012 jacomecha[tid:13] <INFO>: [ 536] bytes: 12916800 | delta: 7458000 nsec | Bps: 1731938858 | wps: 216492357 {TcpQueueBase}
01327811520957 Sat Jan 28 23:32:00 EST 2012 jacomecha[tid:13] <INFO>: [ 537] bytes: 12916800 | delta: 6594000 nsec | Bps: 1958871702 | wps: 244858963 {TcpQueueBase}
01327811520965 Sat Jan 28 23:32:00 EST 2012 jacomecha[tid:13] <INFO>: [ 538] bytes: 12916800 | delta: 6919000 nsec | Bps: 1866859373 | wps: 233357422 {TcpQueueBase}
01327811520973 Sat Jan 28 23:32:00 EST 2012 jacomecha[tid:13] <INFO>: [ 539] bytes: 12916800 | delta: 7448000 nsec | Bps: 1734264232 | wps: 216783029 {TcpQueueBase}
01327811520980 Sat Jan 28 23:32:00 EST 2012 jacomecha[tid:13] <INFO>: [ 540] bytes: 12916800 | delta: 6802000 nsec | Bps: 1898970891 | wps: 237371361 {TcpQueueBase}
01327811520988 Sat Jan 28 23:32:00 EST 2012 jacomecha[tid:13] <INFO>: [ 541] bytes: 12916800 | delta: 7183000 nsec | Bps: 1798245858 | wps: 224780732 {TcpQueueBase}
01327811520996 Sat Jan 28 23:32:00 EST 2012 jacomecha[tid:13] <INFO>: [ 542] bytes: 12916800 | delta: 7874000 nsec | Bps: 1640436881 | wps: 205054610 {TcpQueueBase}
01327811521005 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 543] bytes: 12916800 | delta: 8685000 nsec | Bps: 1487253886 | wps: 185906736 {TcpQueueBase}
01327811521015 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 544] bytes: 12916800 | delta: 8918000 nsec | Bps: 1448396501 | wps: 181049563 {TcpQueueBase}
01327811521025 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 545] bytes: 12916800 | delta: 8835000 nsec | Bps: 1462003396 | wps: 182750424 {TcpQueueBase}
01327811521036 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 546] bytes: 12916800 | delta: 10374000 nsec | Bps: 1245112782 | wps: 155639098 {TcpQueueBase}
01327811521045 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 547] bytes: 12916800 | delta: 8327000 nsec | Bps: 1551194908 | wps: 193899364 {TcpQueueBase}
01327811521052 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 548] bytes: 12916800 | delta: 6729000 nsec | Bps: 1919572002 | wps: 239946500 {TcpQueueBase}
01327811521060 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 549] bytes: 12916800 | delta: 7521000 nsec | Bps: 1717431193 | wps: 214678899 {TcpQueueBase}
01327811521067 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 550] bytes: 12916800 | delta: 6242000 nsec | Bps: 2069336751 | wps: 258667094 {TcpQueueBase}
01327811521074 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 551] bytes: 12916800 | delta: 7251000 nsec | Bps: 1781381878 | wps: 222672735 {TcpQueueBase}
01327811521082 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 552] bytes: 12916800 | delta: 6811000 nsec | Bps: 1896461606 | wps: 237057701 {TcpQueueBase}
01327811521089 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 553] bytes: 12916800 | delta: 6863000 nsec | Bps: 1882092379 | wps: 235261547 {TcpQueueBase}
01327811521096 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 554] bytes: 12916800 | delta: 6814000 nsec | Bps: 1895626651 | wps: 236953331 {TcpQueueBase}
01327811521104 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 555] bytes: 12916800 | delta: 7297000 nsec | Bps: 1770152117 | wps: 221269015 {TcpQueueBase}
01327811521113 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 556] bytes: 12916800 | delta: 8168000 nsec | Bps: 1581390793 | wps: 197673849 {TcpQueueBase}
01327811521121 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 557] bytes: 12916800 | delta: 7571000 nsec | Bps: 1706089024 | wps: 213261128 {TcpQueueBase}
01327811521130 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 558] bytes: 12916800 | delta: 9063000 nsec | Bps: 1425223436 | wps: 178152929 {TcpQueueBase}
01327811521139 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 559] bytes: 12916800 | delta: 7867000 nsec | Bps: 1641896530 | wps: 205237066 {TcpQueueBase}
01327811521148 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 560] bytes: 12916800 | delta: 8013000 nsec | Bps: 1611980532 | wps: 201497566 {TcpQueueBase}
01327811521157 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 561] bytes: 12916800 | delta: 8531000 nsec | Bps: 1514101512 | wps: 189262689 {TcpQueueBase}
01327811521165 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 562] bytes: 12916800 | delta: 7197000 nsec | Bps: 1794747812 | wps: 224343476 {TcpQueueBase}
01327811521173 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 563] bytes: 12916800 | delta: 7393000 nsec | Bps: 1747166238 | wps: 218395780 {TcpQueueBase}
01327811521180 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 564] bytes: 12916800 | delta: 6556000 nsec | Bps: 1970225747 | wps: 246278218 {TcpQueueBase}
01327811521187 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 565] bytes: 12916800 | delta: 6695000 nsec | Bps: 1929320388 | wps: 241165049 {TcpQueueBase}
01327811521197 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 566] bytes: 12916800 | delta: 9102000 nsec | Bps: 1419116678 | wps: 177389585 {TcpQueueBase}
01327811521204 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 567] bytes: 12916800 | delta: 6632000 nsec | Bps: 1947647768 | wps: 243455971 {TcpQueueBase}
01327811521214 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 568] bytes: 12916800 | delta: 8743000 nsec | Bps: 1477387624 | wps: 184673453 {TcpQueueBase}
01327811521228 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 569] bytes: 12916800 | delta: 13661000 nsec | Bps: 945523754 | wps: 118190469 {TcpQueueBase}
01327811521235 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 570] bytes: 12916800 | delta: 6324000 nsec | Bps: 2042504744 | wps: 255313093 {TcpQueueBase}
01327811521243 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 571] bytes: 12916800 | delta: 7234000 nsec | Bps: 1785568150 | wps: 223196019 {TcpQueueBase}
01327811521251 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 572] bytes: 12916800 | delta: 8039000 nsec | Bps: 1606767011 | wps: 200845876 {TcpQueueBase}
01327811521259 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 573] bytes: 12916800 | delta: 7098000 nsec | Bps: 1819780220 | wps: 227472527 {TcpQueueBase}
01327811521268 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 574] bytes: 12916800 | delta: 8172000 nsec | Bps: 1580616740 | wps: 197577093 {TcpQueueBase}
01327811521276 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 575] bytes: 12916800 | delta: 7551000 nsec | Bps: 1710607867 | wps: 213825983 {TcpQueueBase}
01327811521286 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 576] bytes: 12916800 | delta: 9389000 nsec | Bps: 1375737565 | wps: 171967196 {TcpQueueBase}
01327811521294 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 577] bytes: 12916800 | delta: 7492000 nsec | Bps: 1724079018 | wps: 215509877 {TcpQueueBase}
01327811521302 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 578] bytes: 12916800 | delta: 7777000 nsec | Bps: 1660897518 | wps: 207612190 {TcpQueueBase}
01327811521312 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 579] bytes: 12916800 | delta: 8799000 nsec | Bps: 1467984998 | wps: 183498125 {TcpQueueBase}
01327811521318 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 580] bytes: 12916800 | delta: 6175000 nsec | Bps: 2091789474 | wps: 261473684 {TcpQueueBase}
01327811521326 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 581] bytes: 12916800 | delta: 7506000 nsec | Bps: 1720863309 | wps: 215107914 {TcpQueueBase}
01327811521333 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 582] bytes: 12916800 | delta: 6331000 nsec | Bps: 2040246407 | wps: 255030801 {TcpQueueBase}
01327811521341 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 583] bytes: 12916800 | delta: 6895000 nsec | Bps: 1873357505 | wps: 234169688 {TcpQueueBase}
01327811521348 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 584] bytes: 12916800 | delta: 6861000 nsec | Bps: 1882641014 | wps: 235330127 {TcpQueueBase}
01327811521356 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 585] bytes: 12916800 | delta: 7446000 nsec | Bps: 1734730056 | wps: 216841257 {TcpQueueBase}
01327811521363 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 586] bytes: 12916800 | delta: 6532000 nsec | Bps: 1977464789 | wps: 247183099 {TcpQueueBase}
01327811521370 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 587] bytes: 12916800 | delta: 7060000 nsec | Bps: 1829575071 | wps: 228696884 {TcpQueueBase}
01327811521380 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 588] bytes: 12916800 | delta: 9099000 nsec | Bps: 1419584570 | wps: 177448071 {TcpQueueBase}
01327811521387 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 589] bytes: 12916800 | delta: 6977000 nsec | Bps: 1851340118 | wps: 231417515 {TcpQueueBase}
01327811521396 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 590] bytes: 12916800 | delta: 7584000 nsec | Bps: 1703164557 | wps: 212895570 {TcpQueueBase}
01327811521403 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 591] bytes: 12916800 | delta: 7218000 nsec | Bps: 1789526185 | wps: 223690773 {TcpQueueBase}
01327811521410 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 592] bytes: 12916800 | delta: 6271000 nsec | Bps: 2059767182 | wps: 257470898 {TcpQueueBase}
01327811521418 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 593] bytes: 12916800 | delta: 6949000 nsec | Bps: 1858799827 | wps: 232349978 {TcpQueueBase}
01327811521425 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 594] bytes: 12916800 | delta: 6773000 nsec | Bps: 1907101727 | wps: 238387716 {TcpQueueBase}
01327811521432 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 595] bytes: 12916800 | delta: 6677000 nsec | Bps: 1934521492 | wps: 241815186 {TcpQueueBase}
01327811521439 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 596] bytes: 12916800 | delta: 6986000 nsec | Bps: 1848955053 | wps: 231119382 {TcpQueueBase}
01327811521447 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 597] bytes: 12916800 | delta: 7344000 nsec | Bps: 1758823529 | wps: 219852941 {TcpQueueBase}
01327811521454 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 598] bytes: 12916800 | delta: 6731000 nsec | Bps: 1919001634 | wps: 239875204 {TcpQueueBase}
01327811521462 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 599] bytes: 12916800 | delta: 6963000 nsec | Bps: 1855062473 | wps: 231882809 {TcpQueueBase}
01327811521470 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 600] bytes: 12916800 | delta: 7607000 nsec | Bps: 1698014986 | wps: 212251873 {TcpQueueBase}
01327811521478 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 601] bytes: 12916800 | delta: 7377000 nsec | Bps: 1750955673 | wps: 218869459 {TcpQueueBase}
01327811521488 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 602] bytes: 12916800 | delta: 9381000 nsec | Bps: 1376910777 | wps: 172113847 {TcpQueueBase}
01327811521497 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 603] bytes: 12916800 | delta: 8772000 nsec | Bps: 1472503420 | wps: 184062927 {TcpQueueBase}
01327811521507 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 604] bytes: 12916800 | delta: 9387000 nsec | Bps: 1376030681 | wps: 172003835 {TcpQueueBase}
01327811521515 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 605] bytes: 12916800 | delta: 7953000 nsec | Bps: 1624141833 | wps: 203017729 {TcpQueueBase}
01327811521522 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 606] bytes: 12916800 | delta: 6612000 nsec | Bps: 1953539020 | wps: 244192377 {TcpQueueBase}
01327811521531 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 607] bytes: 12916800 | delta: 7960000 nsec | Bps: 1622713568 | wps: 202839196 {TcpQueueBase}
01327811521540 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 608] bytes: 12916800 | delta: 9132000 nsec | Bps: 1414454665 | wps: 176806833 {TcpQueueBase}
01327811521548 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 609] bytes: 12916800 | delta: 7684000 nsec | Bps: 1680999479 | wps: 210124935 {TcpQueueBase}
01327811521556 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 610] bytes: 12916800 | delta: 6860000 nsec | Bps: 1882915452 | wps: 235364431 {TcpQueueBase}
01327811521564 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 611] bytes: 12916800 | delta: 8005000 nsec | Bps: 1613591505 | wps: 201698938 {TcpQueueBase}
01327811521572 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 612] bytes: 12916800 | delta: 6710000 nsec | Bps: 1925007452 | wps: 240625931 {TcpQueueBase}
01327811521579 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 613] bytes: 12916800 | delta: 6731000 nsec | Bps: 1919001634 | wps: 239875204 {TcpQueueBase}
01327811521586 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 614] bytes: 12916800 | delta: 6792000 nsec | Bps: 1901766784 | wps: 237720848 {TcpQueueBase}
01327811521594 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 615] bytes: 12916800 | delta: 7540000 nsec | Bps: 1713103448 | wps: 214137931 {TcpQueueBase}
01327811521601 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 616] bytes: 12916800 | delta: 6603000 nsec | Bps: 1956201726 | wps: 244525216 {TcpQueueBase}
01327811521609 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 617] bytes: 12916800 | delta: 6957000 nsec | Bps: 1856662354 | wps: 232082794 {TcpQueueBase}
01327811521616 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 618] bytes: 12916800 | delta: 6744000 nsec | Bps: 1915302491 | wps: 239412811 {TcpQueueBase}
01327811521623 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 619] bytes: 12916800 | delta: 6770000 nsec | Bps: 1907946824 | wps: 238493353 {TcpQueueBase}
01327811521631 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 620] bytes: 12916800 | delta: 7116000 nsec | Bps: 1815177066 | wps: 226897133 {TcpQueueBase}
01327811521638 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 621] bytes: 12916800 | delta: 6665000 nsec | Bps: 1938004501 | wps: 242250563 {TcpQueueBase}
01327811521651 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 622] bytes: 12916800 | delta: 11559000 nsec | Bps: 1117466909 | wps: 139683364 {TcpQueueBase}
01327811521657 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 623] bytes: 12916800 | delta: 6137000 nsec | Bps: 2104741730 | wps: 263092716 {TcpQueueBase}
01327811521685 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 624] bytes: 12916800 | delta: 27271000 nsec | Bps: 473645998 | wps: 59205750 {TcpQueueBase}
01327811521693 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 625] bytes: 12916800 | delta: 6764000 nsec | Bps: 1909639267 | wps: 238704908 {TcpQueueBase}
01327811521703 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 626] bytes: 12916800 | delta: 9949000 nsec | Bps: 1298301337 | wps: 162287667 {TcpQueueBase}
01327811521712 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 627] bytes: 12916800 | delta: 8079000 nsec | Bps: 1598811734 | wps: 199851467 {TcpQueueBase}
01327811521719 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 628] bytes: 12916800 | delta: 6621000 nsec | Bps: 1950883552 | wps: 243860444 {TcpQueueBase}
01327811521727 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 629] bytes: 12916800 | delta: 6977000 nsec | Bps: 1851340118 | wps: 231417515 {TcpQueueBase}
01327811521734 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 630] bytes: 12916800 | delta: 7002000 nsec | Bps: 1844730077 | wps: 230591260 {TcpQueueBase}
01327811521741 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 631] bytes: 12916800 | delta: 6772000 nsec | Bps: 1907383343 | wps: 238422918 {TcpQueueBase}
01327811521749 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 632] bytes: 12916800 | delta: 6858000 nsec | Bps: 1883464567 | wps: 235433071 {TcpQueueBase}
01327811521756 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 633] bytes: 12916800 | delta: 6755000 nsec | Bps: 1912183568 | wps: 239022946 {TcpQueueBase}
01327811521764 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 634] bytes: 12916800 | delta: 7068000 nsec | Bps: 1827504244 | wps: 228438031 {TcpQueueBase}
01327811521771 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 635] bytes: 12916800 | delta: 6832000 nsec | Bps: 1890632319 | wps: 236329040 {TcpQueueBase}
01327811521779 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 636] bytes: 12916800 | delta: 7330000 nsec | Bps: 1762182810 | wps: 220272851 {TcpQueueBase}
01327811521789 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 637] bytes: 12916800 | delta: 9398000 nsec | Bps: 1374420089 | wps: 171802511 {TcpQueueBase}
01327811521797 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 638] bytes: 12916800 | delta: 7435000 nsec | Bps: 1737296570 | wps: 217162071 {TcpQueueBase}
01327811521806 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 639] bytes: 12916800 | delta: 8039000 nsec | Bps: 1606767011 | wps: 200845876 {TcpQueueBase}
01327811521815 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 640] bytes: 12916800 | delta: 8198000 nsec | Bps: 1575603806 | wps: 196950476 {TcpQueueBase}
01327811521824 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 641] bytes: 12916800 | delta: 8665000 nsec | Bps: 1490686671 | wps: 186335834 {TcpQueueBase}
01327811521830 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 642] bytes: 12916800 | delta: 6120000 nsec | Bps: 2110588235 | wps: 263823529 {TcpQueueBase}
01327811521838 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 643] bytes: 12916800 | delta: 7185000 nsec | Bps: 1797745303 | wps: 224718163 {TcpQueueBase}
01327811521846 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 644] bytes: 12916800 | delta: 7037000 nsec | Bps: 1835554924 | wps: 229444365 {TcpQueueBase}
01327811521854 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 645] bytes: 12916800 | delta: 8167000 nsec | Bps: 1581584425 | wps: 197698053 {TcpQueueBase}
01327811521861 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 646] bytes: 12916800 | delta: 6282000 nsec | Bps: 2056160458 | wps: 257020057 {TcpQueueBase}
01327811521868 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 647] bytes: 12916800 | delta: 6415000 nsec | Bps: 2013530787 | wps: 251691348 {TcpQueueBase}
01327811521876 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 648] bytes: 12916800 | delta: 7116000 nsec | Bps: 1815177066 | wps: 226897133 {TcpQueueBase}
01327811521883 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 649] bytes: 12916800 | delta: 6710000 nsec | Bps: 1925007452 | wps: 240625931 {TcpQueueBase}
01327811521890 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 650] bytes: 12916800 | delta: 6812000 nsec | Bps: 1896183206 | wps: 237022901 {TcpQueueBase}
01327811521897 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 651] bytes: 12916800 | delta: 6483000 nsec | Bps: 1992410921 | wps: 249051365 {TcpQueueBase}
01327811521907 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 652] bytes: 12916800 | delta: 9478000 nsec | Bps: 1362819160 | wps: 170352395 {TcpQueueBase}
01327811521915 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 653] bytes: 12916800 | delta: 8012000 nsec | Bps: 1612181727 | wps: 201522716 {TcpQueueBase}
01327811521927 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 654] bytes: 12916800 | delta: 10832000 nsec | Bps: 1192466765 | wps: 149058346 {TcpQueueBase}
01327811521936 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 655] bytes: 12916800 | delta: 7181000 nsec | Bps: 1798746693 | wps: 224843337 {TcpQueueBase}
01327811521944 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 656] bytes: 12916800 | delta: 7578000 nsec | Bps: 1704513064 | wps: 213064133 {TcpQueueBase}
01327811521951 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 657] bytes: 12916800 | delta: 6769000 nsec | Bps: 1908228690 | wps: 238528586 {TcpQueueBase}
01327811521959 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 658] bytes: 12916800 | delta: 6941000 nsec | Bps: 1860942227 | wps: 232617778 {TcpQueueBase}
01327811521966 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 659] bytes: 12916800 | delta: 6462000 nsec | Bps: 1998885794 | wps: 249860724 {TcpQueueBase}
01327811521973 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 660] bytes: 12916800 | delta: 7018000 nsec | Bps: 1840524366 | wps: 230065546 {TcpQueueBase}
01327811521983 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 661] bytes: 12916800 | delta: 9003000 nsec | Bps: 1434721759 | wps: 179340220 {TcpQueueBase}
01327811521992 Sat Jan 28 23:32:01 EST 2012 jacomecha[tid:13] <INFO>: [ 662] bytes: 12916800 | delta: 9153000 nsec | Bps: 1411209440 | wps: 176401180 {TcpQueueBase}
01327811522003 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 663] bytes: 12916800 | delta: 10452000 nsec | Bps: 1235820896 | wps: 154477612 {TcpQueueBase}
01327811522012 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 664] bytes: 12916800 | delta: 7923000 nsec | Bps: 1630291556 | wps: 203786445 {TcpQueueBase}
01327811522020 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 665] bytes: 12916800 | delta: 7810000 nsec | Bps: 1653879641 | wps: 206734955 {TcpQueueBase}
01327811522028 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 666] bytes: 12916800 | delta: 6814000 nsec | Bps: 1895626651 | wps: 236953331 {TcpQueueBase}
01327811522036 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 667] bytes: 12916800 | delta: 7225000 nsec | Bps: 1787792388 | wps: 223474048 {TcpQueueBase}
01327811522043 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 668] bytes: 12916800 | delta: 6811000 nsec | Bps: 1896461606 | wps: 237057701 {TcpQueueBase}
01327811522050 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 669] bytes: 12916800 | delta: 6747000 nsec | Bps: 1914450867 | wps: 239306358 {TcpQueueBase}
01327811522058 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 670] bytes: 12916800 | delta: 7221000 nsec | Bps: 1788782717 | wps: 223597840 {TcpQueueBase}
01327811522065 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 671] bytes: 12916800 | delta: 6854000 nsec | Bps: 1884563758 | wps: 235570470 {TcpQueueBase}
01327811522073 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 672] bytes: 12916800 | delta: 7237000 nsec | Bps: 1784827967 | wps: 223103496 {TcpQueueBase}
01327811522081 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 673] bytes: 12916800 | delta: 7352000 nsec | Bps: 1756909684 | wps: 219613711 {TcpQueueBase}
01327811522090 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 674] bytes: 12916800 | delta: 8316000 nsec | Bps: 1553246753 | wps: 194155844 {TcpQueueBase}
01327811522098 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 675] bytes: 12916800 | delta: 8163000 nsec | Bps: 1582359427 | wps: 197794928 {TcpQueueBase}
01327811522107 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 676] bytes: 12916800 | delta: 7859000 nsec | Bps: 1643567884 | wps: 205445985 {TcpQueueBase}
01327811522117 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 677] bytes: 12916800 | delta: 9613000 nsec | Bps: 1343680433 | wps: 167960054 {TcpQueueBase}
01327811522127 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 678] bytes: 12916800 | delta: 9036000 nsec | Bps: 1429482072 | wps: 178685259 {TcpQueueBase}
01327811522135 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 679] bytes: 12916800 | delta: 6708000 nsec | Bps: 1925581395 | wps: 240697674 {TcpQueueBase}
01327811522142 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 680] bytes: 12916800 | delta: 7207000 nsec | Bps: 1792257527 | wps: 224032191 {TcpQueueBase}
01327811522149 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 681] bytes: 12916800 | delta: 6751000 nsec | Bps: 1913316546 | wps: 239164568 {TcpQueueBase}
01327811522157 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 682] bytes: 12916800 | delta: 6859000 nsec | Bps: 1883189969 | wps: 235398746 {TcpQueueBase}
01327811522164 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 683] bytes: 12916800 | delta: 6456000 nsec | Bps: 2000743494 | wps: 250092937 {TcpQueueBase}
01327811522171 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 684] bytes: 12916800 | delta: 7013000 nsec | Bps: 1841836589 | wps: 230229574 {TcpQueueBase}
01327811522179 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 685] bytes: 12916800 | delta: 6884000 nsec | Bps: 1876350959 | wps: 234543870 {TcpQueueBase}
01327811522187 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 686] bytes: 12916800 | delta: 7972000 nsec | Bps: 1620270948 | wps: 202533869 {TcpQueueBase}
01327811522198 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 687] bytes: 12916800 | delta: 9843000 nsec | Bps: 1312282841 | wps: 164035355 {TcpQueueBase}
01327811522207 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 688] bytes: 12916800 | delta: 8140000 nsec | Bps: 1586830467 | wps: 198353808 {TcpQueueBase}
01327811522218 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 689] bytes: 12916800 | delta: 10798000 nsec | Bps: 1196221523 | wps: 149527690 {TcpQueueBase}
01327811522225 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 690] bytes: 12916800 | delta: 6565000 nsec | Bps: 1967524752 | wps: 245940594 {TcpQueueBase}
01327811522252 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 691] bytes: 12916800 | delta: 25707000 nsec | Bps: 502462364 | wps: 62807796 {TcpQueueBase}
01327811522260 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 692] bytes: 12916800 | delta: 7342000 nsec | Bps: 1759302642 | wps: 219912830 {TcpQueueBase}
01327811522271 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 693] bytes: 12916800 | delta: 10054000 nsec | Bps: 1284742391 | wps: 160592799 {TcpQueueBase}
01327811522281 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 694] bytes: 12916800 | delta: 8751000 nsec | Bps: 1476037024 | wps: 184504628 {TcpQueueBase}
01327811522288 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 695] bytes: 12916800 | delta: 6711000 nsec | Bps: 1924720608 | wps: 240590076 {TcpQueueBase}
01327811522297 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 696] bytes: 12916800 | delta: 7719000 nsec | Bps: 1673377380 | wps: 209172173 {TcpQueueBase}
01327811522304 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 697] bytes: 12916800 | delta: 7192000 nsec | Bps: 1795995551 | wps: 224499444 {TcpQueueBase}
01327811522314 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 698] bytes: 12916800 | delta: 8886000 nsec | Bps: 1453612424 | wps: 181701553 {TcpQueueBase}
01327811522321 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 699] bytes: 12916800 | delta: 7135000 nsec | Bps: 1810343378 | wps: 226292922 {TcpQueueBase}
01327811522330 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 700] bytes: 12916800 | delta: 8169000 nsec | Bps: 1581197209 | wps: 197649651 {TcpQueueBase}
01327811522337 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 701] bytes: 12916800 | delta: 6481000 nsec | Bps: 1993025768 | wps: 249128221 {TcpQueueBase}
01327811522345 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 702] bytes: 12916800 | delta: 7182000 nsec | Bps: 1798496241 | wps: 224812030 {TcpQueueBase}
01327811522353 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 703] bytes: 12916800 | delta: 6808000 nsec | Bps: 1897297297 | wps: 237162162 {TcpQueueBase}
01327811522361 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 704] bytes: 12916800 | delta: 7091000 nsec | Bps: 1821576646 | wps: 227697081 {TcpQueueBase}
01327811522369 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 705] bytes: 12916800 | delta: 7602000 nsec | Bps: 1699131807 | wps: 212391476 {TcpQueueBase}
01327811522376 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 706] bytes: 12916800 | delta: 6503000 nsec | Bps: 1986283254 | wps: 248285407 {TcpQueueBase}
01327811522383 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 707] bytes: 12916800 | delta: 6895000 nsec | Bps: 1873357505 | wps: 234169688 {TcpQueueBase}
01327811522393 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 708] bytes: 12916800 | delta: 7102000 nsec | Bps: 1818755280 | wps: 227344410 {TcpQueueBase}
01327811522399 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 709] bytes: 12916800 | delta: 6229000 nsec | Bps: 2073655482 | wps: 259206935 {TcpQueueBase}
01327811522408 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 710] bytes: 12916800 | delta: 8015000 nsec | Bps: 1611578291 | wps: 201447286 {TcpQueueBase}
01327811522430 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 711] bytes: 12916800 | delta: 9255000 nsec | Bps: 1395656402 | wps: 174457050 {TcpQueueBase}
01327811522438 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 712] bytes: 12916800 | delta: 7254000 nsec | Bps: 1780645161 | wps: 222580645 {TcpQueueBase}
01327811522447 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 713] bytes: 12916800 | delta: 8458000 nsec | Bps: 1527169544 | wps: 190896193 {TcpQueueBase}
01327811522454 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 714] bytes: 12916800 | delta: 6741000 nsec | Bps: 1916154873 | wps: 239519359 {TcpQueueBase}
01327811522461 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 715] bytes: 12916800 | delta: 6530000 nsec | Bps: 1978070444 | wps: 247258806 {TcpQueueBase}
01327811522468 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 716] bytes: 12916800 | delta: 6968000 nsec | Bps: 1853731343 | wps: 231716418 {TcpQueueBase}
01327811522475 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 717] bytes: 12916800 | delta: 6784000 nsec | Bps: 1904009434 | wps: 238001179 {TcpQueueBase}
01327811522483 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 718] bytes: 12916800 | delta: 7453000 nsec | Bps: 1733100765 | wps: 216637596 {TcpQueueBase}
01327811522491 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 719] bytes: 12916800 | delta: 6946000 nsec | Bps: 1859602649 | wps: 232450331 {TcpQueueBase}
01327811522498 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 720] bytes: 12916800 | delta: 6583000 nsec | Bps: 1962144919 | wps: 245268115 {TcpQueueBase}
01327811522506 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 721] bytes: 12916800 | delta: 7178000 nsec | Bps: 1799498468 | wps: 224937308 {TcpQueueBase}
01327811522515 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 722] bytes: 12916800 | delta: 8843000 nsec | Bps: 1460680764 | wps: 182585096 {TcpQueueBase}
01327811522523 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 723] bytes: 12916800 | delta: 7493000 nsec | Bps: 1723848926 | wps: 215481116 {TcpQueueBase}
01327811522533 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 724] bytes: 12916800 | delta: 9248000 nsec | Bps: 1396712803 | wps: 174589100 {TcpQueueBase}
01327811522541 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 725] bytes: 12916800 | delta: 7814000 nsec | Bps: 1653033018 | wps: 206629127 {TcpQueueBase}
01327811522551 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 726] bytes: 12916800 | delta: 9346000 nsec | Bps: 1382067195 | wps: 172758399 {TcpQueueBase}
01327811522559 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 727] bytes: 12916800 | delta: 7342000 nsec | Bps: 1759302642 | wps: 219912830 {TcpQueueBase}
01327811522569 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 728] bytes: 12916800 | delta: 9059000 nsec | Bps: 1425852743 | wps: 178231593 {TcpQueueBase}
01327811522579 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 729] bytes: 12916800 | delta: 10015000 nsec | Bps: 1289745382 | wps: 161218173 {TcpQueueBase}
01327811522588 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 730] bytes: 12916800 | delta: 8401000 nsec | Bps: 1537531246 | wps: 192191406 {TcpQueueBase}
01327811522604 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 731] bytes: 12916800 | delta: 15887000 nsec | Bps: 813042110 | wps: 101630264 {TcpQueueBase}
01327811522614 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 732] bytes: 12916800 | delta: 8539000 nsec | Bps: 1512682984 | wps: 189085373 {TcpQueueBase}
01327811522634 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 733] bytes: 12916800 | delta: 19935000 nsec | Bps: 647945824 | wps: 80993228 {TcpQueueBase}
01327811522642 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 734] bytes: 12916800 | delta: 7350000 nsec | Bps: 1757387755 | wps: 219673469 {TcpQueueBase}
01327811522650 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 735] bytes: 12916800 | delta: 7351000 nsec | Bps: 1757148687 | wps: 219643586 {TcpQueueBase}
01327811522658 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 736] bytes: 12916800 | delta: 8295000 nsec | Bps: 1557179024 | wps: 194647378 {TcpQueueBase}
01327811522666 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 737] bytes: 12916800 | delta: 7329000 nsec | Bps: 1762423250 | wps: 220302906 {TcpQueueBase}
01327811522676 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 738] bytes: 12916800 | delta: 9794000 nsec | Bps: 1318848274 | wps: 164856034 {TcpQueueBase}
01327811522685 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 739] bytes: 12916800 | delta: 8028000 nsec | Bps: 1608968610 | wps: 201121076 {TcpQueueBase}
01327811522693 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 740] bytes: 12916800 | delta: 7006000 nsec | Bps: 1843676848 | wps: 230459606 {TcpQueueBase}
01327811522701 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 741] bytes: 12916800 | delta: 7754000 nsec | Bps: 1665824091 | wps: 208228011 {TcpQueueBase}
01327811522709 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 742] bytes: 12916800 | delta: 6519000 nsec | Bps: 1981408191 | wps: 247676024 {TcpQueueBase}
01327811522716 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 743] bytes: 12916800 | delta: 6876000 nsec | Bps: 1878534031 | wps: 234816754 {TcpQueueBase}
01327811522724 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 744] bytes: 12916800 | delta: 7913000 nsec | Bps: 1632351826 | wps: 204043978 {TcpQueueBase}
01327811522732 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 745] bytes: 12916800 | delta: 6669000 nsec | Bps: 1936842105 | wps: 242105263 {TcpQueueBase}
01327811522739 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 746] bytes: 12916800 | delta: 7338000 nsec | Bps: 1760261652 | wps: 220032706 {TcpQueueBase}
01327811522749 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 747] bytes: 12916800 | delta: 7901000 nsec | Bps: 1634831034 | wps: 204353879 {TcpQueueBase}
01327811522759 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 748] bytes: 12916800 | delta: 6663000 nsec | Bps: 1938586222 | wps: 242323278 {TcpQueueBase}
01327811522787 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 749] bytes: 12916800 | delta: 27221000 nsec | Bps: 474515999 | wps: 59314500 {TcpQueueBase}
01327811522798 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 750] bytes: 12916800 | delta: 10972000 nsec | Bps: 1177251185 | wps: 147156398 {TcpQueueBase}
01327811522806 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 751] bytes: 12916800 | delta: 6802000 nsec | Bps: 1898970891 | wps: 237371361 {TcpQueueBase}
01327811522815 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 752] bytes: 12916800 | delta: 8516000 nsec | Bps: 1516768436 | wps: 189596054 {TcpQueueBase}
01327811522823 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 753] bytes: 12916800 | delta: 7649000 nsec | Bps: 1688691332 | wps: 211086417 {TcpQueueBase}
01327811522834 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 754] bytes: 12916800 | delta: 10833000 nsec | Bps: 1192356688 | wps: 149044586 {TcpQueueBase}
01327811522841 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 755] bytes: 12916800 | delta: 6418000 nsec | Bps: 2012589592 | wps: 251573699 {TcpQueueBase}
01327811522852 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 756] bytes: 12916800 | delta: 10432000 nsec | Bps: 1238190184 | wps: 154773773 {TcpQueueBase}
01327811522866 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 757] bytes: 12916800 | delta: 13050000 nsec | Bps: 989793103 | wps: 123724138 {TcpQueueBase}
01327811522876 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 758] bytes: 12916800 | delta: 9701000 nsec | Bps: 1331491599 | wps: 166436450 {TcpQueueBase}
01327811522899 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 759] bytes: 12916800 | delta: 10427000 nsec | Bps: 1238783926 | wps: 154847991 {TcpQueueBase}
01327811522907 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 760] bytes: 12916800 | delta: 7059000 nsec | Bps: 1829834254 | wps: 228729282 {TcpQueueBase}
01327811522916 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 761] bytes: 12916800 | delta: 8060000 nsec | Bps: 1602580645 | wps: 200322581 {TcpQueueBase}
01327811522923 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 762] bytes: 12916800 | delta: 6661000 nsec | Bps: 1939168293 | wps: 242396037 {TcpQueueBase}
01327811522930 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 763] bytes: 12916800 | delta: 6497000 nsec | Bps: 1988117593 | wps: 248514699 {TcpQueueBase}
01327811522938 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 764] bytes: 12916800 | delta: 7949000 nsec | Bps: 1624959114 | wps: 203119889 {TcpQueueBase}
01327811522946 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 765] bytes: 12916800 | delta: 7400000 nsec | Bps: 1745513514 | wps: 218189189 {TcpQueueBase}
01327811522953 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 766] bytes: 12916800 | delta: 7027000 nsec | Bps: 1838167070 | wps: 229770884 {TcpQueueBase}
01327811522962 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 767] bytes: 12916800 | delta: 7908000 nsec | Bps: 1633383915 | wps: 204172989 {TcpQueueBase}
01327811522969 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 768] bytes: 12916800 | delta: 7055000 nsec | Bps: 1830871722 | wps: 228858965 {TcpQueueBase}
01327811522977 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 769] bytes: 12916800 | delta: 6862000 nsec | Bps: 1882366657 | wps: 235295832 {TcpQueueBase}
01327811522985 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 770] bytes: 12916800 | delta: 7480000 nsec | Bps: 1726844920 | wps: 215855615 {TcpQueueBase}
01327811522992 Sat Jan 28 23:32:02 EST 2012 jacomecha[tid:13] <INFO>: [ 771] bytes: 12916800 | delta: 7369000 nsec | Bps: 1752856561 | wps: 219107070 {TcpQueueBase}
01327811523003 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 772] bytes: 12916800 | delta: 10496000 nsec | Bps: 1230640244 | wps: 153830030 {TcpQueueBase}
01327811523013 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 773] bytes: 12916800 | delta: 8067000 nsec | Bps: 1601190033 | wps: 200148754 {TcpQueueBase}
01327811523020 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 774] bytes: 12916800 | delta: 6896000 nsec | Bps: 1873085847 | wps: 234135731 {TcpQueueBase}
01327811523029 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 775] bytes: 12916800 | delta: 8649000 nsec | Bps: 1493444329 | wps: 186680541 {TcpQueueBase}
01327811523039 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 776] bytes: 12916800 | delta: 8781000 nsec | Bps: 1470994192 | wps: 183874274 {TcpQueueBase}
01327811523048 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 777] bytes: 12916800 | delta: 8657000 nsec | Bps: 1492064225 | wps: 186508028 {TcpQueueBase}
01327811523055 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 778] bytes: 12916800 | delta: 6322000 nsec | Bps: 2043150902 | wps: 255393863 {TcpQueueBase}
01327811523065 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 779] bytes: 12916800 | delta: 9399000 nsec | Bps: 1374273859 | wps: 171784232 {TcpQueueBase}
01327811523073 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 780] bytes: 12916800 | delta: 7517000 nsec | Bps: 1718345084 | wps: 214793136 {TcpQueueBase}
01327811523080 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 781] bytes: 12916800 | delta: 6992000 nsec | Bps: 1847368421 | wps: 230921053 {TcpQueueBase}
01327811523087 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 782] bytes: 12916800 | delta: 6809000 nsec | Bps: 1897018652 | wps: 237127331 {TcpQueueBase}
01327811523094 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 783] bytes: 12916800 | delta: 6682000 nsec | Bps: 1933073930 | wps: 241634241 {TcpQueueBase}
01327811523102 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 784] bytes: 12916800 | delta: 6680000 nsec | Bps: 1933652695 | wps: 241706587 {TcpQueueBase}
01327811523111 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 785] bytes: 12916800 | delta: 9133000 nsec | Bps: 1414299792 | wps: 176787474 {TcpQueueBase}
01327811523120 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 786] bytes: 12916800 | delta: 8642000 nsec | Bps: 1494654015 | wps: 186831752 {TcpQueueBase}
01327811523131 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 787] bytes: 12916800 | delta: 10149000 nsec | Bps: 1272716524 | wps: 159089565 {TcpQueueBase}
01327811523140 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 788] bytes: 12916800 | delta: 8132000 nsec | Bps: 1588391540 | wps: 198548942 {TcpQueueBase}
01327811523148 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 789] bytes: 12916800 | delta: 7408000 nsec | Bps: 1743628510 | wps: 217953564 {TcpQueueBase}
01327811523154 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 790] bytes: 12916800 | delta: 6222000 nsec | Bps: 2075988428 | wps: 259498554 {TcpQueueBase}
01327811523162 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 791] bytes: 12916800 | delta: 7092000 nsec | Bps: 1821319797 | wps: 227664975 {TcpQueueBase}
01327811523169 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 792] bytes: 12916800 | delta: 6793000 nsec | Bps: 1901486825 | wps: 237685853 {TcpQueueBase}
01327811523177 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 793] bytes: 12916800 | delta: 7455000 nsec | Bps: 1732635815 | wps: 216579477 {TcpQueueBase}
01327811523186 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 794] bytes: 12916800 | delta: 8700000 nsec | Bps: 1484689655 | wps: 185586207 {TcpQueueBase}
01327811523195 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 795] bytes: 12916800 | delta: 7944000 nsec | Bps: 1625981873 | wps: 203247734 {TcpQueueBase}
01327811523204 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 796] bytes: 12916800 | delta: 8469000 nsec | Bps: 1525185972 | wps: 190648247 {TcpQueueBase}
01327811523213 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 797] bytes: 12916800 | delta: 8495000 nsec | Bps: 1520517952 | wps: 190064744 {TcpQueueBase}
01327811523222 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 798] bytes: 12916800 | delta: 8526000 nsec | Bps: 1514989444 | wps: 189373681 {TcpQueueBase}
01327811523230 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 799] bytes: 12916800 | delta: 7572000 nsec | Bps: 1705863708 | wps: 213232964 {TcpQueueBase}
01327811523237 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 800] bytes: 12916800 | delta: 6388000 nsec | Bps: 2022041327 | wps: 252755166 {TcpQueueBase}
01327811523244 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 801] bytes: 12916800 | delta: 6315000 nsec | Bps: 2045415677 | wps: 255676960 {TcpQueueBase}
01327811523252 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 802] bytes: 12916800 | delta: 6900000 nsec | Bps: 1872000000 | wps: 234000000 {TcpQueueBase}
01327811523259 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 803] bytes: 12916800 | delta: 6346000 nsec | Bps: 2035423889 | wps: 254427986 {TcpQueueBase}
01327811523266 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 804] bytes: 12916800 | delta: 6708000 nsec | Bps: 1925581395 | wps: 240697674 {TcpQueueBase}
01327811523273 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 805] bytes: 12916800 | delta: 6519000 nsec | Bps: 1981408191 | wps: 247676024 {TcpQueueBase}
01327811523284 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 806] bytes: 12916800 | delta: 9757000 nsec | Bps: 1323849544 | wps: 165481193 {TcpQueueBase}
01327811523294 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 807] bytes: 12916800 | delta: 9335000 nsec | Bps: 1383695769 | wps: 172961971 {TcpQueueBase}
01327811523305 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 808] bytes: 12916800 | delta: 10717000 nsec | Bps: 1205262667 | wps: 150657833 {TcpQueueBase}
01327811523316 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 809] bytes: 12916800 | delta: 9979000 nsec | Bps: 1294398236 | wps: 161799780 {TcpQueueBase}
01327811523323 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 810] bytes: 12916800 | delta: 7149000 nsec | Bps: 1806798154 | wps: 225849769 {TcpQueueBase}
01327811523332 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 811] bytes: 12916800 | delta: 8186000 nsec | Bps: 1577913511 | wps: 197239189 {TcpQueueBase}
01327811523339 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 812] bytes: 12916800 | delta: 6758000 nsec | Bps: 1911334714 | wps: 238916839 {TcpQueueBase}
01327811523347 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 813] bytes: 12916800 | delta: 7419000 nsec | Bps: 1741043267 | wps: 217630408 {TcpQueueBase}
01327811523354 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 814] bytes: 12916800 | delta: 7052000 nsec | Bps: 1831650596 | wps: 228956324 {TcpQueueBase}
01327811523361 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 815] bytes: 12916800 | delta: 6656000 nsec | Bps: 1940625000 | wps: 242578125 {TcpQueueBase}
01327811523368 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 816] bytes: 12916800 | delta: 6662000 nsec | Bps: 1938877214 | wps: 242359652 {TcpQueueBase}
01327811523375 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 817] bytes: 12916800 | delta: 6568000 nsec | Bps: 1966626066 | wps: 245828258 {TcpQueueBase}
01327811523386 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 818] bytes: 12916800 | delta: 9785000 nsec | Bps: 1320061318 | wps: 165007665 {TcpQueueBase}
01327811523403 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 819] bytes: 12916800 | delta: 16457000 nsec | Bps: 784881813 | wps: 98110227 {TcpQueueBase}
01327811523412 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 820] bytes: 12916800 | delta: 8420000 nsec | Bps: 1534061758 | wps: 191757720 {TcpQueueBase}
01327811523421 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 821] bytes: 12916800 | delta: 8750000 nsec | Bps: 1476205714 | wps: 184525714 {TcpQueueBase}
01327811523431 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 822] bytes: 12916800 | delta: 8726000 nsec | Bps: 1480265872 | wps: 185033234 {TcpQueueBase}
01327811523438 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 823] bytes: 12916800 | delta: 6685000 nsec | Bps: 1932206432 | wps: 241525804 {TcpQueueBase}
01327811523446 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 824] bytes: 12916800 | delta: 8236000 nsec | Bps: 1568334143 | wps: 196041768 {TcpQueueBase}
01327811523454 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 825] bytes: 12916800 | delta: 7033000 nsec | Bps: 1836598891 | wps: 229574861 {TcpQueueBase}
01327811523461 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 826] bytes: 12916800 | delta: 6706000 nsec | Bps: 1926155681 | wps: 240769460 {TcpQueueBase}
01327811523469 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 827] bytes: 12916800 | delta: 7807000 nsec | Bps: 1654515179 | wps: 206814397 {TcpQueueBase}
01327811523480 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 828] bytes: 12916800 | delta: 7767000 nsec | Bps: 1663035921 | wps: 207879490 {TcpQueueBase}
01327811523486 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 829] bytes: 12916800 | delta: 6135000 nsec | Bps: 2105427873 | wps: 263178484 {TcpQueueBase}
01327811523494 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 830] bytes: 12916800 | delta: 6695000 nsec | Bps: 1929320388 | wps: 241165049 {TcpQueueBase}
01327811523502 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 831] bytes: 12916800 | delta: 7595000 nsec | Bps: 1700697828 | wps: 212587228 {TcpQueueBase}
01327811523511 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 832] bytes: 12916800 | delta: 8863000 nsec | Bps: 1457384633 | wps: 182173079 {TcpQueueBase}
01327811523519 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 833] bytes: 12916800 | delta: 6771000 nsec | Bps: 1907665042 | wps: 238458130 {TcpQueueBase}
01327811523528 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 834] bytes: 12916800 | delta: 8088000 nsec | Bps: 1597032641 | wps: 199629080 {TcpQueueBase}
01327811523537 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 835] bytes: 12916800 | delta: 8356000 nsec | Bps: 1545811393 | wps: 193226424 {TcpQueueBase}
01327811523546 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 836] bytes: 12916800 | delta: 8819000 nsec | Bps: 1464655857 | wps: 183081982 {TcpQueueBase}
01327811523554 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 837] bytes: 12916800 | delta: 7398000 nsec | Bps: 1745985401 | wps: 218248175 {TcpQueueBase}
01327811523561 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 838] bytes: 12916800 | delta: 6678000 nsec | Bps: 1934231806 | wps: 241778976 {TcpQueueBase}
01327811523569 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 839] bytes: 12916800 | delta: 6944000 nsec | Bps: 1860138249 | wps: 232517281 {TcpQueueBase}
01327811523577 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 840] bytes: 12916800 | delta: 7328000 nsec | Bps: 1762663755 | wps: 220332969 {TcpQueueBase}
01327811523585 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 841] bytes: 12916800 | delta: 8381000 nsec | Bps: 1541200334 | wps: 192650042 {TcpQueueBase}
01327811523593 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 842] bytes: 12916800 | delta: 7206000 nsec | Bps: 1792506245 | wps: 224063281 {TcpQueueBase}
01327811523603 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 843] bytes: 12916800 | delta: 9261000 nsec | Bps: 1394752187 | wps: 174344023 {TcpQueueBase}
01327811523612 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 844] bytes: 12916800 | delta: 8648000 nsec | Bps: 1493617021 | wps: 186702128 {TcpQueueBase}
01327811523621 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 845] bytes: 12916800 | delta: 8917000 nsec | Bps: 1448558932 | wps: 181069867 {TcpQueueBase}
01327811523628 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 846] bytes: 12916800 | delta: 6490000 nsec | Bps: 1990261941 | wps: 248782743 {TcpQueueBase}
01327811523636 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 847] bytes: 12916800 | delta: 6934000 nsec | Bps: 1862820883 | wps: 232852610 {TcpQueueBase}
01327811523646 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 848] bytes: 12916800 | delta: 9304000 nsec | Bps: 1388306105 | wps: 173538263 {TcpQueueBase}
01327811523654 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 849] bytes: 12916800 | delta: 8513000 nsec | Bps: 1517302948 | wps: 189662869 {TcpQueueBase}
01327811523661 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 850] bytes: 12916800 | delta: 6663000 nsec | Bps: 1938586222 | wps: 242323278 {TcpQueueBase}
01327811523669 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 851] bytes: 12916800 | delta: 6849000 nsec | Bps: 1885939553 | wps: 235742444 {TcpQueueBase}
01327811523676 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 852] bytes: 12916800 | delta: 6719000 nsec | Bps: 1922428933 | wps: 240303617 {TcpQueueBase}
01327811523683 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 853] bytes: 12916800 | delta: 6743000 nsec | Bps: 1915586534 | wps: 239448317 {TcpQueueBase}
01327811523690 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 854] bytes: 12916800 | delta: 6899000 nsec | Bps: 1872271344 | wps: 234033918 {TcpQueueBase}
01327811523701 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 855] bytes: 12916800 | delta: 9858000 nsec | Bps: 1310286062 | wps: 163785758 {TcpQueueBase}
01327811523709 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 856] bytes: 12916800 | delta: 8202000 nsec | Bps: 1574835406 | wps: 196854426 {TcpQueueBase}
01327811523718 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 857] bytes: 12916800 | delta: 7772000 nsec | Bps: 1661966032 | wps: 207745754 {TcpQueueBase}
01327811523727 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 858] bytes: 12916800 | delta: 9013000 nsec | Bps: 1433129923 | wps: 179141240 {TcpQueueBase}
01327811523734 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 859] bytes: 12916800 | delta: 6168000 nsec | Bps: 2094163424 | wps: 261770428 {TcpQueueBase}
01327811523743 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 860] bytes: 12916800 | delta: 8126000 nsec | Bps: 1589564361 | wps: 198695545 {TcpQueueBase}
01327811523750 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 861] bytes: 12916800 | delta: 6400000 nsec | Bps: 2018250000 | wps: 252281250 {TcpQueueBase}
01327811523757 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 862] bytes: 12916800 | delta: 7030000 nsec | Bps: 1837382646 | wps: 229672831 {TcpQueueBase}
01327811523765 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 863] bytes: 12916800 | delta: 7265000 nsec | Bps: 1777949071 | wps: 222243634 {TcpQueueBase}
01327811523772 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 864] bytes: 12916800 | delta: 6535000 nsec | Bps: 1976557001 | wps: 247069625 {TcpQueueBase}
01327811523779 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 865] bytes: 12916800 | delta: 7210000 nsec | Bps: 1791511789 | wps: 223938974 {TcpQueueBase}
01327811523787 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 866] bytes: 12916800 | delta: 7003000 nsec | Bps: 1844466657 | wps: 230558332 {TcpQueueBase}
01327811523794 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 867] bytes: 12916800 | delta: 6519000 nsec | Bps: 1981408191 | wps: 247676024 {TcpQueueBase}
01327811523803 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 868] bytes: 12916800 | delta: 9310000 nsec | Bps: 1387411386 | wps: 173426423 {TcpQueueBase}
01327811523812 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 869] bytes: 12916800 | delta: 8439000 nsec | Bps: 1530607892 | wps: 191325986 {TcpQueueBase}
01327811523821 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 870] bytes: 12916800 | delta: 7819000 nsec | Bps: 1651975956 | wps: 206496995 {TcpQueueBase}
01327811523831 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 871] bytes: 12916800 | delta: 9347000 nsec | Bps: 1381919332 | wps: 172739917 {TcpQueueBase}
01327811523840 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 872] bytes: 12916800 | delta: 8525000 nsec | Bps: 1515167155 | wps: 189395894 {TcpQueueBase}
01327811523849 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 873] bytes: 12916800 | delta: 8530000 nsec | Bps: 1514279015 | wps: 189284877 {TcpQueueBase}
01327811523856 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 874] bytes: 12916800 | delta: 6665000 nsec | Bps: 1938004501 | wps: 242250563 {TcpQueueBase}
01327811523863 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 875] bytes: 12916800 | delta: 7043000 nsec | Bps: 1833991197 | wps: 229248900 {TcpQueueBase}
01327811523870 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 876] bytes: 12916800 | delta: 6765000 nsec | Bps: 1909356984 | wps: 238669623 {TcpQueueBase}
01327811523878 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 877] bytes: 12916800 | delta: 6839000 nsec | Bps: 1888697178 | wps: 236087147 {TcpQueueBase}
01327811523885 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 878] bytes: 12916800 | delta: 6597000 nsec | Bps: 1957980900 | wps: 244747613 {TcpQueueBase}
01327811523892 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 879] bytes: 12916800 | delta: 6991000 nsec | Bps: 1847632671 | wps: 230954084 {TcpQueueBase}
01327811523900 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 880] bytes: 12916800 | delta: 6867000 nsec | Bps: 1880996068 | wps: 235124509 {TcpQueueBase}
01327811523909 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 881] bytes: 12916800 | delta: 8645000 nsec | Bps: 1494135338 | wps: 186766917 {TcpQueueBase}
01327811523917 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 882] bytes: 12916800 | delta: 7854000 nsec | Bps: 1644614209 | wps: 205576776 {TcpQueueBase}
01327811523925 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 883] bytes: 12916800 | delta: 7087000 nsec | Bps: 1822604769 | wps: 227825596 {TcpQueueBase}
01327811523932 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 884] bytes: 12916800 | delta: 6599000 nsec | Bps: 1957387483 | wps: 244673435 {TcpQueueBase}
01327811523939 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 885] bytes: 12916800 | delta: 7048000 nsec | Bps: 1832690125 | wps: 229086266 {TcpQueueBase}
01327811523947 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 886] bytes: 12916800 | delta: 7622000 nsec | Bps: 1694673314 | wps: 211834164 {TcpQueueBase}
01327811523954 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 887] bytes: 12916800 | delta: 6589000 nsec | Bps: 1960358173 | wps: 245044772 {TcpQueueBase}
01327811523962 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 888] bytes: 12916800 | delta: 7738000 nsec | Bps: 1669268545 | wps: 208658568 {TcpQueueBase}
01327811523972 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 889] bytes: 12916800 | delta: 9104000 nsec | Bps: 1418804921 | wps: 177350615 {TcpQueueBase}
01327811523981 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 890] bytes: 12916800 | delta: 8424000 nsec | Bps: 1533333333 | wps: 191666667 {TcpQueueBase}
01327811523990 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 891] bytes: 12916800 | delta: 8339000 nsec | Bps: 1548962705 | wps: 193620338 {TcpQueueBase}
01327811523999 Sat Jan 28 23:32:03 EST 2012 jacomecha[tid:13] <INFO>: [ 892] bytes: 12916800 | delta: 8396000 nsec | Bps: 1538446879 | wps: 192305860 {TcpQueueBase}
01327811524008 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 893] bytes: 12916800 | delta: 8207000 nsec | Bps: 1573875960 | wps: 196734495 {TcpQueueBase}
01327811524015 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 894] bytes: 12916800 | delta: 7200000 nsec | Bps: 1794000000 | wps: 224250000 {TcpQueueBase}
01327811524025 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 895] bytes: 12916800 | delta: 8789000 nsec | Bps: 1469655251 | wps: 183706906 {TcpQueueBase}
01327811524034 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 896] bytes: 12916800 | delta: 8646000 nsec | Bps: 1493962526 | wps: 186745316 {TcpQueueBase}
01327811524043 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 897] bytes: 12916800 | delta: 8488000 nsec | Bps: 1521771913 | wps: 190221489 {TcpQueueBase}
01327811524053 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 898] bytes: 12916800 | delta: 8917000 nsec | Bps: 1448558932 | wps: 181069867 {TcpQueueBase}
01327811524060 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 899] bytes: 12916800 | delta: 7122000 nsec | Bps: 1813647852 | wps: 226705981 {TcpQueueBase}
01327811524068 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 900] bytes: 12916800 | delta: 6753000 nsec | Bps: 1912749889 | wps: 239093736 {TcpQueueBase}
01327811524075 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 901] bytes: 12916800 | delta: 7176000 nsec | Bps: 1800000000 | wps: 225000000 {TcpQueueBase}
01327811524084 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 902] bytes: 12916800 | delta: 8149000 nsec | Bps: 1585077924 | wps: 198134740 {TcpQueueBase}
01327811524093 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 903] bytes: 12916800 | delta: 8865000 nsec | Bps: 1457055838 | wps: 182131980 {TcpQueueBase}
01327811524102 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 904] bytes: 12916800 | delta: 7814000 nsec | Bps: 1653033018 | wps: 206629127 {TcpQueueBase}
01327811524112 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 905] bytes: 12916800 | delta: 9886000 nsec | Bps: 1306574954 | wps: 163321869 {TcpQueueBase}
01327811524119 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 906] bytes: 12916800 | delta: 7046000 nsec | Bps: 1833210332 | wps: 229151292 {TcpQueueBase}
01327811524126 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 907] bytes: 12916800 | delta: 6573000 nsec | Bps: 1965130078 | wps: 245641260 {TcpQueueBase}
01327811524134 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 908] bytes: 12916800 | delta: 7008000 nsec | Bps: 1843150685 | wps: 230393836 {TcpQueueBase}
01327811524141 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 909] bytes: 12916800 | delta: 7244000 nsec | Bps: 1783103258 | wps: 222887907 {TcpQueueBase}
01327811524148 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 910] bytes: 12916800 | delta: 6606000 nsec | Bps: 1955313351 | wps: 244414169 {TcpQueueBase}
01327811524156 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 911] bytes: 12916800 | delta: 6756000 nsec | Bps: 1911900533 | wps: 238987567 {TcpQueueBase}
01327811524163 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 912] bytes: 12916800 | delta: 7307000 nsec | Bps: 1767729574 | wps: 220966197 {TcpQueueBase}
01327811524170 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 913] bytes: 12916800 | delta: 6535000 nsec | Bps: 1976557001 | wps: 247069625 {TcpQueueBase}
01327811524177 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 914] bytes: 12916800 | delta: 6564000 nsec | Bps: 1967824497 | wps: 245978062 {TcpQueueBase}
01327811524188 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 915] bytes: 12916800 | delta: 10685000 nsec | Bps: 1208872251 | wps: 151109031 {TcpQueueBase}
01327811524196 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 916] bytes: 12916800 | delta: 6917000 nsec | Bps: 1867399161 | wps: 233424895 {TcpQueueBase}
01327811524205 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 917] bytes: 12916800 | delta: 8469000 nsec | Bps: 1525185972 | wps: 190648247 {TcpQueueBase}
01327811524214 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 918] bytes: 12916800 | delta: 8626000 nsec | Bps: 1497426385 | wps: 187178298 {TcpQueueBase}
01327811524224 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 919] bytes: 12916800 | delta: 9885000 nsec | Bps: 1306707132 | wps: 163338392 {TcpQueueBase}
01327811524231 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 920] bytes: 12916800 | delta: 6520000 nsec | Bps: 1981104294 | wps: 247638037 {TcpQueueBase}
01327811524239 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 921] bytes: 12916800 | delta: 7016000 nsec | Bps: 1841049031 | wps: 230131129 {TcpQueueBase}
01327811524246 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 922] bytes: 12916800 | delta: 7314000 nsec | Bps: 1766037736 | wps: 220754717 {TcpQueueBase}
01327811524253 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 923] bytes: 12916800 | delta: 6409000 nsec | Bps: 2015415822 | wps: 251926978 {TcpQueueBase}
01327811524260 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 924] bytes: 12916800 | delta: 6929000 nsec | Bps: 1864165103 | wps: 233020638 {TcpQueueBase}
01327811524267 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 925] bytes: 12916800 | delta: 6630000 nsec | Bps: 1948235294 | wps: 243529412 {TcpQueueBase}
01327811524275 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 926] bytes: 12916800 | delta: 6798000 nsec | Bps: 1900088261 | wps: 237511033 {TcpQueueBase}
01327811524282 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 927] bytes: 12916800 | delta: 6925000 nsec | Bps: 1865241877 | wps: 233155235 {TcpQueueBase}
01327811524291 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 928] bytes: 12916800 | delta: 8042000 nsec | Bps: 1606167620 | wps: 200770952 {TcpQueueBase}
01327811524299 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 929] bytes: 12916800 | delta: 7461000 nsec | Bps: 1731242461 | wps: 216405308 {TcpQueueBase}
01327811524308 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 930] bytes: 12916800 | delta: 8504000 nsec | Bps: 1518908749 | wps: 189863594 {TcpQueueBase}
01327811524315 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 931] bytes: 12916800 | delta: 6728000 nsec | Bps: 1919857313 | wps: 239982164 {TcpQueueBase}
01327811524322 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 932] bytes: 12916800 | delta: 6715000 nsec | Bps: 1923574088 | wps: 240446761 {TcpQueueBase}
01327811524329 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 933] bytes: 12916800 | delta: 6864000 nsec | Bps: 1881818182 | wps: 235227273 {TcpQueueBase}
01327811524337 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 934] bytes: 12916800 | delta: 7240000 nsec | Bps: 1784088398 | wps: 223011050 {TcpQueueBase}
01327811524345 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 935] bytes: 12916800 | delta: 6946000 nsec | Bps: 1859602649 | wps: 232450331 {TcpQueueBase}
01327811524351 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 936] bytes: 12916800 | delta: 6359000 nsec | Bps: 2031262777 | wps: 253907847 {TcpQueueBase}
01327811524359 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 937] bytes: 12916800 | delta: 7058000 nsec | Bps: 1830093511 | wps: 228761689 {TcpQueueBase}
01327811524366 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 938] bytes: 12916800 | delta: 6286000 nsec | Bps: 2054852052 | wps: 256856507 {TcpQueueBase}
01327811524374 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 939] bytes: 12916800 | delta: 7240000 nsec | Bps: 1784088398 | wps: 223011050 {TcpQueueBase}
01327811524381 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 940] bytes: 12916800 | delta: 6861000 nsec | Bps: 1882641014 | wps: 235330127 {TcpQueueBase}
01327811524388 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 941] bytes: 12916800 | delta: 7014000 nsec | Bps: 1841573995 | wps: 230196749 {TcpQueueBase}
01327811524396 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 942] bytes: 12916800 | delta: 7641000 nsec | Bps: 1690459364 | wps: 211307420 {TcpQueueBase}
01327811524406 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 943] bytes: 12916800 | delta: 8855000 nsec | Bps: 1458701299 | wps: 182337662 {TcpQueueBase}
01327811524413 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 944] bytes: 12916800 | delta: 7159000 nsec | Bps: 1804274340 | wps: 225534292 {TcpQueueBase}
01327811524423 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 945] bytes: 12916800 | delta: 8601000 nsec | Bps: 1501778863 | wps: 187722358 {TcpQueueBase}
01327811524432 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 946] bytes: 12916800 | delta: 8895000 nsec | Bps: 1452141653 | wps: 181517707 {TcpQueueBase}
01327811524441 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 947] bytes: 12916800 | delta: 8140000 nsec | Bps: 1586830467 | wps: 198353808 {TcpQueueBase}
01327811524448 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 948] bytes: 12916800 | delta: 6928000 nsec | Bps: 1864434180 | wps: 233054273 {TcpQueueBase}
01327811524457 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 949] bytes: 12916800 | delta: 8332000 nsec | Bps: 1550264042 | wps: 193783005 {TcpQueueBase}
01327811524465 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 950] bytes: 12916800 | delta: 8195000 nsec | Bps: 1576180598 | wps: 197022575 {TcpQueueBase}
01327811524473 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 951] bytes: 12916800 | delta: 6698000 nsec | Bps: 1928456256 | wps: 241057032 {TcpQueueBase}
01327811524480 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 952] bytes: 12916800 | delta: 7461000 nsec | Bps: 1731242461 | wps: 216405308 {TcpQueueBase}
01327811524487 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 953] bytes: 12916800 | delta: 6505000 nsec | Bps: 1985672560 | wps: 248209070 {TcpQueueBase}
01327811524495 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 954] bytes: 12916800 | delta: 6912000 nsec | Bps: 1868750000 | wps: 233593750 {TcpQueueBase}
01327811524502 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 955] bytes: 12916800 | delta: 6723000 nsec | Bps: 1921285141 | wps: 240160643 {TcpQueueBase}
01327811524509 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 956] bytes: 12916800 | delta: 6770000 nsec | Bps: 1907946824 | wps: 238493353 {TcpQueueBase}
01327811524521 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 957] bytes: 12916800 | delta: 11186000 nsec | Bps: 1154729126 | wps: 144341141 {TcpQueueBase}
01327811524530 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 958] bytes: 12916800 | delta: 8333000 nsec | Bps: 1550078003 | wps: 193759750 {TcpQueueBase}
01327811524538 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 959] bytes: 12916800 | delta: 7471000 nsec | Bps: 1728925177 | wps: 216115647 {TcpQueueBase}
01327811524547 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 960] bytes: 12916800 | delta: 7063000 nsec | Bps: 1828797961 | wps: 228599745 {TcpQueueBase}
01327811524555 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 961] bytes: 12916800 | delta: 6872000 nsec | Bps: 1879627474 | wps: 234953434 {TcpQueueBase}
01327811524563 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 962] bytes: 12916800 | delta: 7998000 nsec | Bps: 1615003751 | wps: 201875469 {TcpQueueBase}
01327811524570 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 963] bytes: 12916800 | delta: 6876000 nsec | Bps: 1878534031 | wps: 234816754 {TcpQueueBase}
01327811524577 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 964] bytes: 12916800 | delta: 6765000 nsec | Bps: 1909356984 | wps: 238669623 {TcpQueueBase}
01327811524585 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 965] bytes: 12916800 | delta: 6939000 nsec | Bps: 1861478599 | wps: 232684825 {TcpQueueBase}
01327811524592 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 966] bytes: 12916800 | delta: 6622000 nsec | Bps: 1950588946 | wps: 243823618 {TcpQueueBase}
01327811524599 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 967] bytes: 12916800 | delta: 6905000 nsec | Bps: 1870644461 | wps: 233830558 {TcpQueueBase}
01327811524607 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 968] bytes: 12916800 | delta: 7153000 nsec | Bps: 1805787781 | wps: 225723473 {TcpQueueBase}
01327811524614 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 969] bytes: 12916800 | delta: 6867000 nsec | Bps: 1880996068 | wps: 235124509 {TcpQueueBase}
01327811524621 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 970] bytes: 12916800 | delta: 6735000 nsec | Bps: 1917861915 | wps: 239732739 {TcpQueueBase}
01327811524629 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 971] bytes: 12916800 | delta: 6731000 nsec | Bps: 1919001634 | wps: 239875204 {TcpQueueBase}
01327811524637 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 972] bytes: 12916800 | delta: 8309000 nsec | Bps: 1554555301 | wps: 194319413 {TcpQueueBase}
01327811524646 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 973] bytes: 12916800 | delta: 7696000 nsec | Bps: 1678378378 | wps: 209797297 {TcpQueueBase}
01327811524657 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 974] bytes: 12916800 | delta: 8592000 nsec | Bps: 1503351955 | wps: 187918994 {TcpQueueBase}
01327811524665 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 975] bytes: 12916800 | delta: 8084000 nsec | Bps: 1597822860 | wps: 199727857 {TcpQueueBase}
01327811524675 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 976] bytes: 12916800 | delta: 9462000 nsec | Bps: 1365123653 | wps: 170640457 {TcpQueueBase}
01327811524682 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 977] bytes: 12916800 | delta: 6343000 nsec | Bps: 2036386568 | wps: 254548321 {TcpQueueBase}
01327811524689 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 978] bytes: 12916800 | delta: 6811000 nsec | Bps: 1896461606 | wps: 237057701 {TcpQueueBase}
01327811524697 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 979] bytes: 12916800 | delta: 6985000 nsec | Bps: 1849219757 | wps: 231152470 {TcpQueueBase}
01327811524705 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 980] bytes: 12916800 | delta: 8233000 nsec | Bps: 1568905624 | wps: 196113203 {TcpQueueBase}
01327811524715 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 981] bytes: 12916800 | delta: 8980000 nsec | Bps: 1438396437 | wps: 179799555 {TcpQueueBase}
01327811524725 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 982] bytes: 12916800 | delta: 8925000 nsec | Bps: 1447260504 | wps: 180907563 {TcpQueueBase}
01327811524733 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 983] bytes: 12916800 | delta: 7705000 nsec | Bps: 1676417910 | wps: 209552239 {TcpQueueBase}
01327811524742 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 984] bytes: 12916800 | delta: 8792000 nsec | Bps: 1469153776 | wps: 183644222 {TcpQueueBase}
01327811524750 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 985] bytes: 12916800 | delta: 6830000 nsec | Bps: 1891185944 | wps: 236398243 {TcpQueueBase}
01327811524757 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 986] bytes: 12916800 | delta: 6710000 nsec | Bps: 1925007452 | wps: 240625931 {TcpQueueBase}
01327811524764 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 987] bytes: 12916800 | delta: 6832000 nsec | Bps: 1890632319 | wps: 236329040 {TcpQueueBase}
01327811524773 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 988] bytes: 12916800 | delta: 8101000 nsec | Bps: 1594469819 | wps: 199308727 {TcpQueueBase}
01327811524781 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 989] bytes: 12916800 | delta: 7832000 nsec | Bps: 1649233912 | wps: 206154239 {TcpQueueBase}
01327811524788 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 990] bytes: 12916800 | delta: 6698000 nsec | Bps: 1928456256 | wps: 241057032 {TcpQueueBase}
01327811524796 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 991] bytes: 12916800 | delta: 7916000 nsec | Bps: 1631733199 | wps: 203966650 {TcpQueueBase}
01327811524804 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 992] bytes: 12916800 | delta: 7227000 nsec | Bps: 1787297634 | wps: 223412204 {TcpQueueBase}
01327811524811 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 993] bytes: 12916800 | delta: 6971000 nsec | Bps: 1852933582 | wps: 231616698 {TcpQueueBase}
01327811524819 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 994] bytes: 12916800 | delta: 6992000 nsec | Bps: 1847368421 | wps: 230921053 {TcpQueueBase}
01327811524826 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 995] bytes: 12916800 | delta: 6561000 nsec | Bps: 1968724280 | wps: 246090535 {TcpQueueBase}
01327811524833 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 996] bytes: 12916800 | delta: 6825000 nsec | Bps: 1892571429 | wps: 236571429 {TcpQueueBase}
01327811524840 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 997] bytes: 12916800 | delta: 7023000 nsec | Bps: 1839214011 | wps: 229901751 {TcpQueueBase}
01327811524848 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 998] bytes: 12916800 | delta: 7181000 nsec | Bps: 1798746693 | wps: 224843337 {TcpQueueBase}
01327811524856 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 999] bytes: 12916800 | delta: 7683000 nsec | Bps: 1681218274 | wps: 210152284 {TcpQueueBase}
01327811524863 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ 1000] bytes: 12916800 | delta: 6467000 nsec | Bps: 1997340343 | wps: 249667543 {TcpQueueBase}
01327811524864 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: ---
01327811524864 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: consumer stopping for summation
01327811524864 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: ---
01327811524864 Sat Jan 28 23:32:04 EST 2012 jacomecha[tid:13] <INFO>: [ TOTAL] bytes: 12911008256 | delta: 8686817000 nsec | Bps: 1486276073 | wps: 185784509 {TcpQueueBase}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment