public static void main(String[] argv) throws Exception {
   ClassReader reader =
       new ClassReader(Utils.loadBytesFromStream(new FileInputStream(new File(argv[0]))));
   reader.accept(new ClassPrinter(System.out, INCLUDE_BYTECODE), 0);
 }