Warning: session_start(): open(/var/lib/php/sessions/sess_2iu5f7l6aq0o6572mss0eaocuf, O_RDWR) failed: No space left on device (28) in /var/www/tb-usercake/models/config.php on line 51
Warning: session_start(): Failed to read session data: files (path: /var/lib/php/sessions) in /var/www/tb-usercake/models/config.php on line 51
import java.util.*;
import java.util.zip.*;
import java.util.List;
import java.util.regex.*;
import java.util.concurrent.*;
import java.util.concurrent.atomic.*;
import java.util.concurrent.locks.*;
import javax.swing.*;
import javax.swing.event.*;
import javax.swing.text.*;
import javax.swing.table.*;
import java.io.*;
import java.net.*;
import java.lang.reflect.*;
import java.lang.ref.*;
import java.lang.management.*;
import java.security.*;
import java.security.spec.*;
import java.awt.*;
import java.awt.event.*;
import java.awt.image.*;
import javax.imageio.*;
import java.math.*;
class main {
static class CountingOutputStream extends FilterOutputStream {
long counter;
CountingOutputStream(OutputStream out) { super(out); }
@Override
public void write(int b) throws IOException {
++counter;
out.write(b);
}
@Override
public void write(byte[] b) throws IOException {
counter += b.length;
out.write(b, 0, b.length);
}
@Override
public void write(byte[] b, int off, int len) throws IOException {
if (len == 0) return;
counter += len;
out.write(b, off, len);
}
long getFilePointer() { return counter; }
}}