1package authorizable23import "errors"45var (6 ErrNotInAuthList = errors.New("authorizable: caller is not in authorized list")7 ErrNotSuperuser = errors.New("authorizable: caller is not superuser")8 ErrAlreadyInList = errors.New("authorizable: address is already in authorized list")9)10Signatures reconstructed verbatim from vm/qfuncs — interface params keep their inline definitions.