}
ontoSpreadXMLState.setConcepts(factory.createEntryConceptsListType());
List<EntryConceptsType> entryConceptTOs = ontoSpreadXMLState.getConcepts().getEntryConceptTOs();
for (String key : ontoSpreadState.getConcepts().keySet()) {
Double value = ontoSpreadState.getConcepts().get(key);
EntryConceptsType entryXML = new EntryConceptsType();
entryXML.setUri(key);
entryXML.setValue(value);
entryConceptTOs.add(entryXML );
}
HashMap<PathTO,Integer> prizeTable = ontoSpreadState.getConceptsToPrize().getPrizeTable();
ontoSpreadXMLState.setPrizeTable(factory.createEntryPrizeTableListType());
for (PathTO pathTO : prizeTable.keySet()) {