CREATE TABLE gps_small (
	abelian	boolean,	-- true if the group is abelian, false otherwise
	abelian_quotient	text,	-- 
	center	text,	-- 
	clases	jsonb,	-- 
	cyclic	boolean,	-- true if the group is cyclic, false otherwise
	derived_group	text,	-- 
	exponent	integer,	-- 
	id	bigint,	-- 
	image_number	integer,	-- 
	label	text,	-- GAP ID encoded as a string u'N.n', where N is the order of the group and n distinguishes groups of the same order (as determined in GAP).
	maximal_subgroups	jsonb,	-- 
	name	text,	-- text discription of the group
	normal_subgroups	jsonb,	-- 
	order	integer,	-- order of the group (positive integer)
	perfect	boolean,	-- true if the group is perfect, false otherwise
	pretty	text,	-- pretty-print version of the name in latex math mode
	simple	boolean,	-- true if the group is simple, false otherwise
	solvable	boolean 	-- true if the group is solvable, false otherwise
);