protected Natures loadCurrentDeep(Cursor cursor, boolean lock) {
    Natures entity = loadCurrent(cursor, 0, lock);
    int offset = getAllColumns().length;

    Stats DecreasedStat = loadCurrentOther(daoSession.getStatsDao(), cursor, offset);
    if (DecreasedStat != null) {
      entity.setDecreasedStat(DecreasedStat);
    }
    offset += daoSession.getStatsDao().getAllColumns().length;

    Stats IncreasedStat = loadCurrentOther(daoSession.getStatsDao(), cursor, offset);
    if (IncreasedStat != null) {
      entity.setIncreasedStat(IncreasedStat);
    }
    offset += daoSession.getStatsDao().getAllColumns().length;

    ContestTypes HatesFlavor = loadCurrentOther(daoSession.getContestTypesDao(), cursor, offset);
    if (HatesFlavor != null) {
      entity.setHatesFlavor(HatesFlavor);
    }
    offset += daoSession.getContestTypesDao().getAllColumns().length;

    ContestTypes LikesFlavor = loadCurrentOther(daoSession.getContestTypesDao(), cursor, offset);
    if (LikesFlavor != null) {
      entity.setLikesFlavor(LikesFlavor);
    }

    return entity;
  }