if @matched_entities[source_name]
      @matched_entities[source_name][:count] += 1
    else  # Try to find an existing Entity matching the imported data
      source, score = match_source_entity(source_name)
      @matched_entities[source_name] = { count: 1, object: source, score: score }