public static void setContentThumbnail(TOTorrent torrent, byte[] thumbnail) {
    Map mapContent = getContentMap(torrent);
    putOrRemove(mapContent, TOR_AZ_PROP_THUMBNAIL, thumbnail);

    writeTorrentIfExists(torrent);
  }
  public static void setAdId(TOTorrent torrent, String sID) {
    Map mapContent = getContentMap(torrent);
    putOrRemove(mapContent, TOR_AZ_PROP_AD_ID, sID);

    writeTorrentIfExists(torrent);
  }
  public static void setContentQuality(TOTorrent torrent, String sQualityID) {
    Map mapContent = getContentMap(torrent);
    putOrRemove(mapContent, TOR_AZ_PROP_QUALITY, sQualityID);

    writeTorrentIfExists(torrent);
  }