ArrayList innerStats = new ArrayList()
		{
			new Hashtable()
			{
				{"id", "tutorial.start"},
				{"time", 1234567890},
				{"type", "counter"},
				{"data", new ArrayList() {
						"1"
					}
				}
			}
		};
		Hashtable stats = new Hashtable()
		{
			{"time", "1234567890"},
			{"version", "1.0"},
			{"stats", innerStats}
		};
		
		var args = new Dictionary<string, string>()
		{
			{ "stats", Odnoklassniki.HTTP.JSON.Encode(stats) }
		};
		OK.API("sdk.reportStats", args, r => {
			Debug.Log(r.Text);
		});