http://idk.i2p/javadoc-i2p/org/json/simple/Jsoner.html
Examples:
"123null321" returns [123, null, 321]
"nullnullnulltruefalse\"\"{}[]" returns [null, null, null, true, false, "", {}, []]
"123" appended to "321" returns [123321]
"12.3" appended to "3.21" throws DeserializationException(NumberFormatException)
"123" appended to "-321" throws DeserializationException(NumberFormatException)
"123e321" appended to "-1" throws DeserializationException(NumberFormatException)
"null12.33.21null"...