function unassigned_filter($name_id)
{
    if (in_array($name_id, Name::unassigned_ids())) {
        return false;
    }
    return true;
}