static A nuLike uniqCI(Class c, O... params) { ret uniqueConcept(db_mainConcepts(), c, params); } static A uniqCI(Concepts cc, Class c, O... params) { temp tempDBLock(cc); params = expandParams(c, params); A x = findConceptWhereCI(cc, c, params); if (x == null) { x = unlisted(c); csetAll(x, params); cc.register(x); } ret x; }