compiled.dump(sb);
System.out.println(sb.toString());
HashMap<String, Object> attributes = new HashMap<String, Object>();
attributes.put("val", "wow");
attributes.put("raw", new Raw("wow"));
sb = new StringBuffer();
compiled.execute(sb, attributes);
String res = sb.toString();
System.out.println(res);