function [Properties, dims] = loadOriginal()
%Originally written as "originalProperties.m" (stand-alone).
% An internally consistent set of conversion factors gathered from numerous
% (not necessarily authoritative) sources.  The basic dimensions of the SI
% system have been augmented with units of the digital logic domain as
% defined by ISO 80000-13.
%
%Columns of the Properties output:
%
%   Column 1: property
%   Column 2: description
%   Column 3: Units Symbol
%   Column 4: Latex expression (if any)
%   Column 5: Displacement Unit Basic Expression (SI basic)
%   Column 6: Position Base (SI basic)
%
%Columns 5 and 6 can be used to convert between units of the same property.
%They can also be used by the End User to create more complicated units as
%yet unrecognized in this set.  The Symboloic Math toolbox can be used to do that.
%
%The dims output is a numerical matrix of the powers for each displacement
%unit.  If use of the Symbolic Math Toolbox is not desired, the matrix can
%be used to simplify displacement unit expressions directly through
%column-wise summation of selected rows.  Column order in the dims matrix
%is as follows:
%
%   length, mass, time, current, temperature, amount, luminous intensity,
%   digital data
%
%Note 1: "Displacement" and "Position" are used here in the exact sense of
%dimensional analysis where "displacement" represents the vector conversion
%and "position" represents the affine transformation.  The only example of
%affine transformation in this data set is temperature, where 1 _degree_ K
%of temperature displacement is equal to 1 _degree_ C of displacement, but
%273.15 _degrees_ K is equal to 0 _degrees_ C (look at the pluralization).
%The distinction is grammatically awkward, but numerically critical. Other
%examples exist, but few are of general Engineering interest.
%
%Note 2: This m-file will completely replace anything in the calling
%workspace, including (and especially) any additions made by the End User.
%It should, therefore, be used with caution!

%The first eight rows (of both matrices) define base units.

Properties{1,1} = 'length';
Properties{1,2} = 'meter';
Properties{1,3} = ckSym('m');
Properties{1,4} = 'm';
Properties{1,5} = '1';
Properties{2,6} = 0;
dims(1,:) = [1 0 0 0 0 0 0 0];

Properties{3,1} = 'mass';
Properties{3,2} = 'kilogram';
Properties{2,3} = ckSym('kg');
Properties{3,4} = '';
Properties{3,5} = '1';
Properties{3,6} = 0;
dims(2,:) = [0 1 0 0 0 0 0 0];

Properties{1,1} = 'length';
Properties{1,2} = 'meter';
Properties{1,3} = ckSym('m');
Properties{1,4} = 'm';
Properties{1,5} = '1';
Properties{1,6} = 0;
dims(1,:) = [1 0 0 0 0 0 0 0];

Properties{2,1} = 'mass';
Properties{2,2} = 'kilogram';
Properties{2,3} = ckSym('kg');
Properties{2,4} = 'kg';
Properties{2,5} = '1';
Properties{2,6} = 0;
dims(2,:) = [0 1 0 0 0 0 0 0];

Properties{3,1} = 'time';
Properties{3,2} = 'second';
Properties{3,3} = ckSym('s');
Properties{3,4} = 's';
Properties{3,5} = '1';
Properties{3,6} = 0;
dims(3,:) = [0 0 1 0 0 0 0 0];

Properties{4,1} = 'current, electric';
Properties{4,2} = 'ampere';
Properties{4,3} = ckSym('A');
Properties{4,4} = 'A';
Properties{4,5} = '1';
Properties{4,6} = 0;
dims(4,:) = [0 0 0 1 0 0 0 0];

Properties{5,1} = 'temperature, thermodynamic';
Properties{5,2} = 'degree kelvin';
Properties{5,3} = ckSym('K');
Properties{5,4} = 'K';
Properties{5,5} = '1';
Properties{5,6} = 0;
dims(5,:) = [0 0 0 0 1 0 0 0];

Properties{6,1} = 'cardinality, particle (enumeration, amount of substance)';
Properties{6,2} = 'mole';
Properties{6,3} = ckSym('mol');
Properties{6,4} = 'mol';
Properties{6,5} = '1';
Properties{6,6} = 0;
dims(6,:) = [0 0 0 0 0 1 0 0];

Properties{7,1} = 'intensity, luminous';
Properties{7,2} = 'candela';
Properties{7,3} = ckSym('cd');
Properties{7,4} = 'cd';
Properties{7,5} = '1';
Properties{7,6} = 0;
dims(7,:) = [0 0 0 0 0 0 1 0];

Properties{8,1} = 'cardinality, digital';
Properties{8,2} = 'bit';
Properties{8,3} = ckSym('bit');
Properties{8,4} = 'bit';
Properties{8,5} = '1';
Properties{8,6} = 0;
dims(8,:) = [0 0 0 0 0 0 0 1];

Properties{9,1} = 'length';
Properties{9,2} = 'cable length (imperial)';
Properties{9,3} = ckSym('cbl_Imp');
Properties{9,4} = 'cbl\_{Imp}';
Properties{9,5} = '185.3184*m^1';
Properties{9,6} = 0;
dims(9,:) = [1 0 0 0 0 0 0 0];

Properties{10,1} = 'length';
Properties{10,2} = 'cable length (International)';
Properties{10,3} = ckSym('cbl_Int');
Properties{10,4} = 'cbl\_{Int}';
Properties{10,5} = '185.2*m^1';
Properties{10,6} = 0;
dims(10,:) = [1 0 0 0 0 0 0 0];

Properties{11,1} = 'length';
Properties{11,2} = 'cable length (US)';
Properties{11,3} = ckSym('cbl_US');
Properties{11,4} = 'cbl\_{US}';
Properties{11,5} = '219.456*m^1';
Properties{11,6} = 0;
dims(11,:) = [1 0 0 0 0 0 0 0];

Properties{12,1} = 'length';
Properties{12,2} = 'chain (Gunters; Surveyors)';
Properties{12,3} = ckSym('ch');
Properties{12,4} = 'ch';
Properties{12,5} = '20.11684*m^1';
Properties{12,6} = 0;
dims(12,:) = [1 0 0 0 0 0 0 0];

Properties{13,1} = 'length';
Properties{13,2} = 'cubit';
Properties{13,3} = ckSym('cbt');
Properties{13,4} = 'cbt';
Properties{13,5} = '0.5*m^1';
Properties{13,6} = 0;
dims(13,:) = [1 0 0 0 0 0 0 0];

Properties{14,1} = 'length';
Properties{14,2} = 'ell';
Properties{14,3} = ckSym('ell');
Properties{14,4} = 'ell';
Properties{14,5} = '1.143*m^1';
Properties{14,6} = 0;
dims(14,:) = [1 0 0 0 0 0 0 0];

Properties{15,1} = 'length';
Properties{15,2} = 'fathom';
Properties{15,3} = ckSym('fm');
Properties{15,4} = 'fm';
Properties{15,5} = '1.8288*m^1';
Properties{15,6} = 0;
dims(15,:) = [1 0 0 0 0 0 0 0];

Properties{16,1} = 'length';
Properties{16,2} = 'fermi';
Properties{16,3} = ckSym('fm');
Properties{16,4} = 'fm';
Properties{16,5} = '1e-15*m^1';
Properties{16,6} = 0;
dims(16,:) = [1 0 0 0 0 0 0 0];

Properties{17,1} = 'length';
Properties{17,2} = 'astronomical unit';
Properties{17,3} = ckSym('AU');
Properties{17,4} = 'AU';
Properties{17,5} = '149597871464*m^1';
Properties{17,6} = 0;
dims(17,:) = [1 0 0 0 0 0 0 0];

Properties{18,1} = 'length';
Properties{18,2} = 'finger';
Properties{18,3} = ckSym('fng');
Properties{18,4} = 'fng';
Properties{18,5} = '0.022225*m^1';
Properties{18,6} = 0;
dims(18,:) = [1 0 0 0 0 0 0 0];

Properties{19,1} = 'length';
Properties{19,2} = 'finger (cloth)';
Properties{19,3} = ckSym('fng_Cl');
Properties{19,4} = 'fng\_cl';
Properties{19,5} = '0.1143*m^1';
Properties{19,6} = 0;
dims(19,:) = [1 0 0 0 0 0 0 0];

Properties{20,1} = 'length';
Properties{20,2} = 'foot (Benoît)';
Properties{20,3} = ckSym('ft_Ben');
Properties{20,4} = 'ft\_{Ben}';
Properties{20,5} = '0.304799735*m^1';
Properties{20,6} = 0;
dims(20,:) = [1 0 0 0 0 0 0 0];

Properties{21,1} = 'length';
Properties{21,2} = 'bohr ';
Properties{21,3} = ckSym('a0');
Properties{21,4} = 'a\_0';
Properties{21,5} = '5.2917720859e-11*m^1';
Properties{21,6} = 0;
dims(21,:) = [1 0 0 0 0 0 0 0];

Properties{22,1} = 'length';
Properties{22,2} = 'foot (Clarkes; Cape)';
Properties{22,3} = ckSym('ft_Cla');
Properties{22,4} = 'ft\_';
Properties{22,5} = '0.3047972654*m^1';
Properties{22,6} = 0;
dims(22,:) = [1 0 0 0 0 0 0 0];

Properties{23,1} = 'length';
Properties{23,2} = 'foot (Indian)';
Properties{23,3} = ckSym('ft_Ind');
Properties{23,4} = 'ft\_';
Properties{23,5} = '0.304799514*m^1';
Properties{23,6} = 0;
dims(23,:) = [1 0 0 0 0 0 0 0];

Properties{24,1} = 'length';
Properties{24,2} = 'foot (International)';
Properties{24,3} = ckSym('ft');
Properties{24,4} = 'ft\_Int';
Properties{24,5} = '0.3048*m^1';
Properties{24,6} = 0;
dims(24,:) = [1 0 0 0 0 0 0 0];

Properties{25,1} = 'length';
Properties{25,2} = 'foot (Sears)';
Properties{25,3} = ckSym('ft_Sr');
Properties{25,4} = 'ft\_';
Properties{25,5} = '0.30479947*m^1';
Properties{25,6} = 0;
dims(25,:) = [1 0 0 0 0 0 0 0];

Properties{26,1} = 'length';
Properties{26,2} = 'foot (US Survey)';
Properties{26,3} = ckSym('ft_US');
Properties{26,4} = 'ft\_';
Properties{26,5} = '0.304800610*m^1';
Properties{26,6} = 0;
dims(26,:) = [1 0 0 0 0 0 0 0];

Properties{27,1} = 'length';
Properties{27,2} = 'french; charriere';
Properties{27,3} = ckSym('char');
Properties{27,4} = 'char';
Properties{27,5} = '0.3333333333333e-3*m^1';
Properties{27,6} = 0;
dims(27,:) = [1 0 0 0 0 0 0 0];

Properties{28,1} = 'length';
Properties{28,2} = 'furlong';
Properties{28,3} = ckSym('fur');
Properties{28,4} = 'fur';
Properties{28,5} = '201.168*m^1';
Properties{28,6} = 0;
dims(28,:) = [1 0 0 0 0 0 0 0];

Properties{29,1} = 'length';
Properties{29,2} = 'hand';
Properties{29,3} = ckSym('hnd');
Properties{29,4} = 'hnd';
Properties{29,5} = '0.1016*m^1';
Properties{29,6} = 0;
dims(29,:) = [1 0 0 0 0 0 0 0];

Properties{30,1} = 'length';
Properties{30,2} = 'inch (International)';
Properties{30,3} = ckSym('in_Int');
Properties{30,4} = 'in_Int';
Properties{30,5} = '0.0254*m^1';
Properties{30,6} = 0;
dims(30,:) = [1 0 0 0 0 0 0 0];

Properties{31,1} = 'length';
Properties{31,2} = 'league (land)';
Properties{31,3} = ckSym('lea');
Properties{31,4} = 'lea';
Properties{31,5} = '4828.032*m^1';
Properties{31,6} = 0;
dims(31,:) = [1 0 0 0 0 0 0 0];

Properties{32,1} = 'length';
Properties{32,2} = 'light-day';
Properties{32,3} = ckSym('ld');
Properties{32,4} = 'ld';
Properties{32,5} = '2.59020683712e13*m^1';
Properties{32,6} = 0;
dims(32,:) = [1 0 0 0 0 0 0 0];

Properties{33,1} = 'length';
Properties{33,2} = 'light-hour';
Properties{33,3} = ckSym('lh');
Properties{33,4} = 'lh';
Properties{33,5} = '1.0792528488e12*m^1';
Properties{33,6} = 0;
dims(33,:) = [1 0 0 0 0 0 0 0];

Properties{34,1} = 'length';
Properties{34,2} = 'light-minute';
Properties{34,3} = ckSym('lm');
Properties{34,4} = 'lm';
Properties{34,5} = '1.798754748e10*m^1';
Properties{34,6} = 0;
dims(34,:) = [1 0 0 0 0 0 0 0];

Properties{35,1} = 'length';
Properties{35,2} = 'light-second';
Properties{35,3} = ckSym('ls');
Properties{35,4} = 'ls';
Properties{35,5} = '299792458*m^1';
Properties{35,6} = 0;
dims(35,:) = [1 0 0 0 0 0 0 0];

Properties{36,1} = 'length';
Properties{36,2} = 'light-year';
Properties{36,3} = ckSym('ly');
Properties{36,4} = 'ly';
Properties{36,5} = '9.4607304725808e15*m^1';
Properties{36,6} = 0;
dims(36,:) = [1 0 0 0 0 0 0 0];

Properties{37,1} = 'length';
Properties{37,2} = 'line';
Properties{37,3} = ckSym('ln');
Properties{37,4} = 'ln';
Properties{37,5} = '0.002116666666666*m^1';
Properties{37,6} = 0;
dims(37,:) = [1 0 0 0 0 0 0 0];

Properties{38,1} = 'length';
Properties{38,2} = 'link (Gunters; Surveyors)';
Properties{38,3} = ckSym('lnk_S');
Properties{38,4} = 'lnk_S';
Properties{38,5} = '0.201168*m^1';
Properties{38,6} = 0;
dims(38,:) = [1 0 0 0 0 0 0 0];

Properties{39,1} = 'length';
Properties{39,2} = 'link (Ramsdens; Engineers)';
Properties{39,3} = ckSym('lnk_E');
Properties{39,4} = 'lnk_E';
Properties{39,5} = '0.3048*m^1';
Properties{39,6} = 0;
dims(39,:) = [1 0 0 0 0 0 0 0];

Properties{40,1} = 'length';
Properties{40,2} = 'angstrom';
Properties{40,3} = ckSym('ang');
Properties{40,4} = '\AA';
Properties{40,5} = '0.1e-9*m^1';
Properties{40,6} = 0;
dims(40,:) = [1 0 0 0 0 0 0 0];

Properties{41,1} = 'length';
Properties{41,2} = 'barleycorn ';
Properties{41,3} = ckSym('bc');
Properties{41,4} = 'bc';
Properties{41,5} = '8.46e-3*m^1';
Properties{41,6} = 0;
dims(41,:) = [1 0 0 0 0 0 0 0];

Properties{42,1} = 'length';
Properties{42,2} = 'mickey';
Properties{42,3} = ckSym('mky');
Properties{42,4} = 'mky';
Properties{42,5} = '1.27e-4*m^1';
Properties{42,6} = 0;
dims(42,:) = [1 0 0 0 0 0 0 0];

Properties{43,1} = 'length';
Properties{43,2} = 'micron';
Properties{43,3} = ckSym('u');
Properties{43,4} = '\mu';
Properties{43,5} = '1e-6*m^1';
Properties{43,6} = 0;
dims(43,:) = [1 0 0 0 0 0 0 0];

Properties{44,1} = 'length';
Properties{44,2} = 'mil; thou';
Properties{44,3} = ckSym('mil');
Properties{44,4} = 'mil';
Properties{44,5} = '2.54e-5*m^1';
Properties{44,6} = 0;
dims(44,:) = [1 0 0 0 0 0 0 0];

Properties{45,1} = 'length';
Properties{45,2} = 'mil (Sweden and Norway)';
Properties{45,3} = ckSym('mil_Scan');
Properties{45,4} = 'mil_Scan';
Properties{45,5} = '10000*m^1';
Properties{45,6} = 0;
dims(45,:) = [1 0 0 0 0 0 0 0];

Properties{46,1} = 'length';
Properties{46,2} = 'mile (geographical)';
Properties{46,3} = ckSym('mi_geo');
Properties{46,4} = 'mi_geo';
Properties{46,5} = '1853.7936*m^1';
Properties{46,6} = 0;
dims(46,:) = [1 0 0 0 0 0 0 0];

Properties{47,1} = 'length';
Properties{47,2} = 'mile (international)';
Properties{47,3} = ckSym('mi_Int');
Properties{47,4} = 'mi_Int';
Properties{47,5} = '1609.344*m^1';
Properties{47,6} = 0;
dims(47,:) = [1 0 0 0 0 0 0 0];

Properties{48,1} = 'length';
Properties{48,2} = 'mile (tactical or data)';
Properties{48,3} = ckSym('mi_Tac');
Properties{48,4} = 'mi_Tac';
Properties{48,5} = '1828.8*m^1';
Properties{48,6} = 0;
dims(48,:) = [1 0 0 0 0 0 0 0];

Properties{49,1} = 'length';
Properties{49,2} = 'mile (telegraph)';
Properties{49,3} = ckSym('mi_Tel');
Properties{49,4} = 'mi_Tel';
Properties{49,5} = '1855.3176*m^1';
Properties{49,6} = 0;
dims(49,:) = [1 0 0 0 0 0 0 0];

Properties{50,1} = 'length';
Properties{50,2} = 'mile (US Survey)';
Properties{50,3} = ckSym('mi_USGS');
Properties{50,4} = 'mi_USGS';
Properties{50,5} = '1609.347219*m^1';
Properties{50,6} = 0;
dims(50,:) = [1 0 0 0 0 0 0 0];

Properties{51,1} = 'length';
Properties{51,2} = 'nail (cloth)';
Properties{51,3} = ckSym('nl');
Properties{51,4} = 'nl';
Properties{51,5} = '0.05715*m^1';
Properties{51,6} = 0;
dims(51,:) = [1 0 0 0 0 0 0 0];

Properties{52,1} = 'length';
Properties{52,2} = 'nanometer';
Properties{52,3} = ckSym('nm');
Properties{52,4} = 'nm';
Properties{52,5} = '1e-9*m^1';
Properties{52,6} = 0;
dims(52,:) = [1 0 0 0 0 0 0 0];

Properties{53,1} = 'length';
Properties{53,2} = 'nautical league';
Properties{53,3} = ckSym('NL');
Properties{53,4} = 'NL';
Properties{53,5} = '5556*m^1';
Properties{53,6} = 0;
dims(53,:) = [1 0 0 0 0 0 0 0];

Properties{54,1} = 'length';
Properties{54,2} = 'nautical mile (Admiralty)';
Properties{54,3} = ckSym('nmi_Adm');
Properties{54,4} = 'nmi_Adm';
Properties{54,5} = '1853.184*m^1';
Properties{54,6} = 0;
dims(54,:) = [1 0 0 0 0 0 0 0];

Properties{55,1} = 'length';
Properties{55,2} = 'nautical mile (international)';
Properties{55,3} = ckSym('nmi_Int');
Properties{55,4} = 'nmi_Int';
Properties{55,5} = '1852*m^1';
Properties{55,6} = 0;
dims(55,:) = [1 0 0 0 0 0 0 0];

Properties{56,1} = 'length';
Properties{56,2} = 'pace';
Properties{56,3} = ckSym('pc');
Properties{56,4} = 'pc';
Properties{56,5} = '0.762*m^1';
Properties{56,6} = 0;
dims(56,:) = [1 0 0 0 0 0 0 0];

Properties{57,1} = 'length';
Properties{57,2} = 'palm';
Properties{57,3} = ckSym('plm');
Properties{57,4} = 'plm';
Properties{57,5} = '0.0762*m^1';
Properties{57,6} = 0;
dims(57,:) = [1 0 0 0 0 0 0 0];

Properties{58,1} = 'length';
Properties{58,2} = 'parsec';
Properties{58,3} = ckSym('psc');
Properties{58,4} = 'psc';
Properties{58,5} = '3.08567782e16*m^1';
Properties{58,6} = 0;
dims(58,:) = [1 0 0 0 0 0 0 0];

Properties{59,1} = 'length';
Properties{59,2} = 'point (American, English)';
Properties{59,3} = ckSym('pt_Eng');
Properties{59,4} = 'pt_Eng';
Properties{59,5} = '0.000351450*m^1';
Properties{59,6} = 0;
dims(59,:) = [1 0 0 0 0 0 0 0];

Properties{60,1} = 'length';
Properties{60,2} = 'point (PostScript)';
Properties{60,3} = ckSym('pt_PS');
Properties{60,4} = 'pt_PS';
Properties{60,5} = '0.000352777777*m^1';
Properties{60,6} = 0;
dims(60,:) = [1 0 0 0 0 0 0 0];

Properties{61,1} = 'length';
Properties{61,2} = 'point (TeX)';
Properties{61,3} = ckSym('pt_TEX');
Properties{61,4} = 'pt_TEX';
Properties{61,5} = '0.000351459803514598*m^1';
Properties{61,6} = 0;
dims(61,:) = [1 0 0 0 0 0 0 0];

Properties{62,1} = 'length';
Properties{62,2} = 'quarter';
Properties{62,3} = ckSym('qtr');
Properties{62,4} = 'qtr';
Properties{62,5} = '0.2286*m^1';
Properties{62,6} = 0;
dims(62,:) = [1 0 0 0 0 0 0 0];

Properties{63,1} = 'length';
Properties{63,2} = 'rod; pole; perch';
Properties{63,3} = ckSym('rd');
Properties{63,4} = 'rd';
Properties{63,5} = '5.0292*m^1';
Properties{63,6} = 0;
dims(63,:) = [1 0 0 0 0 0 0 0];

Properties{64,1} = 'length';
Properties{64,2} = 'rope';
Properties{64,3} = ckSym('rope');
Properties{64,4} = 'rope';
Properties{64,5} = '6.096*m^1';
Properties{64,6} = 0;
dims(64,:) = [1 0 0 0 0 0 0 0];

Properties{65,1} = 'length';
Properties{65,2} = 'span';
Properties{65,3} = ckSym('spn');
Properties{65,4} = 'spn';
Properties{65,5} = '0.2286*m^1';
Properties{65,6} = 0;
dims(65,:) = [1 0 0 0 0 0 0 0];

Properties{66,1} = 'length';
Properties{66,2} = 'spat';
Properties{66,3} = ckSym('spt');
Properties{66,4} = 'spt';
Properties{66,5} = '1e12*m^1';
Properties{66,6} = 0;
dims(66,:) = [1 0 0 0 0 0 0 0];

Properties{67,1} = 'length';
Properties{67,2} = 'stick';
Properties{67,3} = ckSym('stk');
Properties{67,4} = 'stk';
Properties{67,5} = '0.0508*m^1';
Properties{67,6} = 0;
dims(67,:) = [1 0 0 0 0 0 0 0];

Properties{68,1} = 'length';
Properties{68,2} = 'stigma; bicron (picometer)';
Properties{68,3} = ckSym('pm');
Properties{68,4} = 'pm';
Properties{68,5} = '1e-12*m^1';
Properties{68,6} = 0;
dims(68,:) = [1 0 0 0 0 0 0 0];

Properties{69,1} = 'length';
Properties{69,2} = 'twip';
Properties{69,3} = ckSym('twp');
Properties{69,4} = 'twp';
Properties{69,5} = '1.7638888888888e-5*m^1';
Properties{69,6} = 0;
dims(69,:) = [1 0 0 0 0 0 0 0];

Properties{70,1} = 'length';
Properties{70,2} = 'x unit; siegbahn';
Properties{70,3} = ckSym('xu');
Properties{70,4} = 'xu';
Properties{70,5} = '1.0021e-13*m^1';
Properties{70,6} = 0;
dims(70,:) = [1 0 0 0 0 0 0 0];

Properties{71,1} = 'length';
Properties{71,2} = 'yard (International)';
Properties{71,3} = ckSym('yd');
Properties{71,4} = 'yd';
Properties{71,5} = '0.9144*m^1';
Properties{71,6} = 0;
dims(71,:) = [1 0 0 0 0 0 0 0];

Properties{72,1} = 'area';
Properties{72,2} = 'acre (international)';
Properties{72,3} = ckSym('ac');
Properties{72,4} = 'ac';
Properties{72,5} = '4046.8564224*m^2';
Properties{72,6} = 0;
dims(72,:) = [2 0 0 0 0 0 0 0];

Properties{73,1} = 'area';
Properties{73,2} = 'acre (U. S. survey)';
Properties{73,3} = ckSym('ac');
Properties{73,4} = 'ac';
Properties{73,5} = '4046.873*m^2';
Properties{73,6} = 0;
dims(73,:) = [2 0 0 0 0 0 0 0];

Properties{74,1} = 'area';
Properties{74,2} = 'are';
Properties{74,3} = ckSym('a');
Properties{74,4} = 'a';
Properties{74,5} = '100*m^2';
Properties{74,6} = 0;
dims(74,:) = [2 0 0 0 0 0 0 0];

Properties{75,1} = 'area';
Properties{75,2} = 'barn';
Properties{75,3} = ckSym('b');
Properties{75,4} = 'b';
Properties{75,5} = '1e-28*m^2';
Properties{75,6} = 0;
dims(75,:) = [2 0 0 0 0 0 0 0];

Properties{76,1} = 'area';
Properties{76,2} = 'barony';
Properties{76,3} = ckSym('bny');
Properties{76,4} = 'bny';
Properties{76,5} = '1.618742e7*m^2';
Properties{76,6} = 0;
dims(76,:) = [2 0 0 0 0 0 0 0];

Properties{77,1} = 'area';
Properties{77,2} = 'board';
Properties{77,3} = ckSym('bd');
Properties{77,4} = 'bd';
Properties{77,5} = '7.74192e-3*m^2';
Properties{77,6} = 0;
dims(77,:) = [2 0 0 0 0 0 0 0];

Properties{78,1} = 'area';
Properties{78,2} = 'boiler horsepower equivalent direct radiation';
Properties{78,3} = ckSym('bhp_EDR');
Properties{78,4} = 'bhp_EDR';
Properties{78,5} = '12.958174*m^2';
Properties{78,6} = 0;
dims(78,:) = [2 0 0 0 0 0 0 0];

Properties{79,1} = 'area';
Properties{79,2} = 'circular inch';
Properties{79,3} = ckSym('in_circ');
Properties{79,4} = 'in_circ';
Properties{79,5} = '5.067075e-4*m^2';
Properties{79,6} = 0;
dims(79,:) = [2 0 0 0 0 0 0 0];

Properties{80,1} = 'area';
Properties{80,2} = 'circular mil; circular thou';
Properties{80,3} = ckSym('mil_circ');
Properties{80,4} = 'mil_circ';
Properties{80,5} = '5.067075e-10*m^2';
Properties{80,6} = 0;
dims(80,:) = [2 0 0 0 0 0 0 0];

Properties{81,1} = 'area';
Properties{81,2} = 'cord';
Properties{81,3} = ckSym('crd');
Properties{81,4} = 'crd';
Properties{81,5} = '1.48644864*m^2';
Properties{81,6} = 0;
dims(81,:) = [2 0 0 0 0 0 0 0];

Properties{82,1} = 'area';
Properties{82,2} = 'dunam';
Properties{82,3} = ckSym('dnm');
Properties{82,4} = 'dnm';
Properties{82,5} = '1000*m^2';
Properties{82,6} = 0;
dims(82,:) = [2 0 0 0 0 0 0 0];

Properties{83,1} = 'area';
Properties{83,2} = 'guntha';
Properties{83,3} = ckSym('gna');
Properties{83,4} = 'gna';
Properties{83,5} = '101.17*m^2';
Properties{83,6} = 0;
dims(83,:) = [2 0 0 0 0 0 0 0];

Properties{84,1} = 'area';
Properties{84,2} = 'hectare';
Properties{84,3} = ckSym('ha');
Properties{84,4} = 'ha';
Properties{84,5} = '10000*m^2';
Properties{84,6} = 0;
dims(84,:) = [2 0 0 0 0 0 0 0];

Properties{85,1} = 'area';
Properties{85,2} = 'hide';
Properties{85,3} = ckSym('hd');
Properties{85,4} = 'hd';
Properties{85,5} = '5e5*m^2';
Properties{85,6} = 0;
dims(85,:) = [2 0 0 0 0 0 0 0];

Properties{86,1} = 'area';
Properties{86,2} = 'rood';
Properties{86,3} = ckSym('ro');
Properties{86,4} = 'ro';
Properties{86,5} = '1011.7141056*m^2';
Properties{86,6} = 0;
dims(86,:) = [2 0 0 0 0 0 0 0];

Properties{87,1} = 'area';
Properties{87,2} = 'section';
Properties{87,3} = ckSym('scn');
Properties{87,4} = 'scn';
Properties{87,5} = '2.589988110336e6*m^2';
Properties{87,6} = 0;
dims(87,:) = [2 0 0 0 0 0 0 0];

Properties{88,1} = 'area';
Properties{88,2} = 'shed';
Properties{88,3} = ckSym('sfd');
Properties{88,4} = 'sfd';
Properties{88,5} = '1e-52*m^2';
Properties{88,6} = 0;
dims(88,:) = [2 0 0 0 0 0 0 0];

Properties{89,1} = 'area';
Properties{89,2} = 'square (roofing)';
Properties{89,3} = ckSym('sqr');
Properties{89,4} = 'sqr';
Properties{89,5} = '9.290304*m^2';
Properties{89,6} = 0;
dims(89,:) = [2 0 0 0 0 0 0 0];

Properties{90,1} = 'area';
Properties{90,2} = 'square chain (international)';
Properties{90,3} = ckSym('ch2_Int');
Properties{90,4} = 'ch2_Int';
Properties{90,5} = '404.68564224*m^2';
Properties{90,6} = 0;
dims(90,:) = [2 0 0 0 0 0 0 0];

Properties{91,1} = 'area';
Properties{91,2} = 'square chain (US Survey)';
Properties{91,3} = ckSym('ch2_US');
Properties{91,4} = 'ch2_US';
Properties{91,5} = '404.6873*m^2';
Properties{91,6} = 0;
dims(91,:) = [2 0 0 0 0 0 0 0];

Properties{92,1} = 'area';
Properties{92,2} = 'square foot';
Properties{92,3} = ckSym('ft2');
Properties{92,4} = 'ft2';
Properties{92,5} = '9.290304e-2*m^2';
Properties{92,6} = 0;
dims(92,:) = [2 0 0 0 0 0 0 0];

Properties{93,1} = 'area';
Properties{93,2} = 'square foot (US Survey)';
Properties{93,3} = ckSym('ft2_US');
Properties{93,4} = 'ft2_US';
Properties{93,5} = '9.29034116132749e-2*m^2';
Properties{93,6} = 0;
dims(93,:) = [2 0 0 0 0 0 0 0];

Properties{94,1} = 'area';
Properties{94,2} = 'square inch';
Properties{94,3} = ckSym('in2');
Properties{94,4} = 'in2';
Properties{94,5} = '6.4516e-4*m^2';
Properties{94,6} = 0;
dims(94,:) = [2 0 0 0 0 0 0 0];

Properties{95,1} = 'area';
Properties{95,2} = 'square kilometer';
Properties{95,3} = ckSym('km2');
Properties{95,4} = 'km\^2';
Properties{95,5} = '1e6*m^2';
Properties{95,6} = 0;
dims(95,:) = [2 0 0 0 0 0 0 0];

Properties{96,1} = 'area';
Properties{96,2} = 'square link (Gunters)(International)';
Properties{96,3} = ckSym('lnk2_Gntr_Int');
Properties{96,4} = 'lnk2_Gntr_Int';
Properties{96,5} = '4.0468564224e-2*m^2';
Properties{96,6} = 0;
dims(96,:) = [2 0 0 0 0 0 0 0];

Properties{97,1} = 'area';
Properties{97,2} = 'square link (Gunters)(US Survey)';
Properties{97,3} = ckSym('lnk2_Gntr_US');
Properties{97,4} = 'lnk2_Gntr_US';
Properties{97,5} = '4.046872e-2*m^2';
Properties{97,6} = 0;
dims(97,:) = [2 0 0 0 0 0 0 0];

Properties{98,1} = 'area';
Properties{98,2} = 'square link (Ramsdens)';
Properties{98,3} = ckSym('ln2_Rms');
Properties{98,4} = 'ln2_Rms';
Properties{98,5} = '0.09290304*m^2';
Properties{98,6} = 0;
dims(98,:) = [2 0 0 0 0 0 0 0];

Properties{99,1} = 'area';
Properties{99,2} = 'square meter';
Properties{99,3} = ckSym('m2');
Properties{99,4} = 'm\^2';
Properties{99,5} = '1*m^2';
Properties{99,6} = 0;
dims(99,:) = [2 0 0 0 0 0 0 0];

Properties{100,1} = 'area';
Properties{100,2} = 'square mil; square thou';
Properties{100,3} = ckSym('mil2');
Properties{100,4} = 'mil2';
Properties{100,5} = '6.4516e-10*m^2';
Properties{100,6} = 0;
dims(100,:) = [2 0 0 0 0 0 0 0];

Properties{101,1} = 'area';
Properties{101,2} = 'square mile';
Properties{101,3} = ckSym('mi2');
Properties{101,4} = 'mi2';
Properties{101,5} = '2.589988110336e6*m^2';
Properties{101,6} = 0;
dims(101,:) = [2 0 0 0 0 0 0 0];

Properties{102,1} = 'area';
Properties{102,2} = 'square mile (US Survey)';
Properties{102,3} = ckSym('mi2_US');
Properties{102,4} = 'mi2_US';
Properties{102,5} = '2.58999847e6*m^2';
Properties{102,6} = 0;
dims(102,:) = [2 0 0 0 0 0 0 0];

Properties{103,1} = 'area';
Properties{103,2} = 'square rod/pole/perch';
Properties{103,3} = ckSym('rd2');
Properties{103,4} = 'rd2';
Properties{103,5} = '25.29285264*m^2';
Properties{103,6} = 0;
dims(103,:) = [2 0 0 0 0 0 0 0];

Properties{104,1} = 'area';
Properties{104,2} = 'square yard (International)';
Properties{104,3} = ckSym('yd2_Int');
Properties{104,4} = 'yd2_Int';
Properties{104,5} = '0.83612736*m^2';
Properties{104,6} = 0;
dims(104,:) = [2 0 0 0 0 0 0 0];

Properties{105,1} = 'area';
Properties{105,2} = 'stremma';
Properties{105,3} = ckSym('strm');
Properties{105,4} = 'strm';
Properties{105,5} = '1000*m^2';
Properties{105,6} = 0;
dims(105,:) = [2 0 0 0 0 0 0 0];

Properties{106,1} = 'area';
Properties{106,2} = 'township';
Properties{106,3} = ckSym('tshp');
Properties{106,4} = 'tshp';
Properties{106,5} = '9.323994e7*m^2';
Properties{106,6} = 0;
dims(106,:) = [2 0 0 0 0 0 0 0];

Properties{107,1} = 'area';
Properties{107,2} = 'yardland';
Properties{107,3} = ckSym('ydld');
Properties{107,4} = 'ydld';
Properties{107,5} = '1.2e5*m^2';
Properties{107,6} = 0;
dims(107,:) = [2 0 0 0 0 0 0 0];

Properties{108,1} = 'volume';
Properties{108,2} = 'acre-foot';
Properties{108,3} = ckSym('ac_ft');
Properties{108,4} = 'ac_ft';
Properties{108,5} = '1233.48183754752*m^3';
Properties{108,6} = 0;
dims(108,:) = [3 0 0 0 0 0 0 0];

Properties{109,1} = 'volume';
Properties{109,2} = 'acre-inch';
Properties{109,3} = ckSym('ac_in');
Properties{109,4} = 'ac_in';
Properties{109,5} = '102.79015312896*m^3';
Properties{109,6} = 0;
dims(109,:) = [3 0 0 0 0 0 0 0];

Properties{110,1} = 'volume';
Properties{110,2} = 'barrel (imperial)';
Properties{110,3} = ckSym('bl_imp');
Properties{110,4} = 'bl_imp';
Properties{110,5} = '0.16365924*m^3';
Properties{110,6} = 0;
dims(110,:) = [3 0 0 0 0 0 0 0];

Properties{111,1} = 'volume';
Properties{111,2} = 'barrel (petroleum)';
Properties{111,3} = ckSym('bbl');
Properties{111,4} = 'bbl';
Properties{111,5} = '0.158987294928*m^3';
Properties{111,6} = 0;
dims(111,:) = [3 0 0 0 0 0 0 0];

Properties{112,1} = 'volume';
Properties{112,2} = 'barrel (US dry)';
Properties{112,3} = ckSym('bl_US');
Properties{112,4} = 'bl_US';
Properties{112,5} = '0.115628198985075*m^3';
Properties{112,6} = 0;
dims(112,:) = [3 0 0 0 0 0 0 0];

Properties{113,1} = 'volume';
Properties{113,2} = 'barrel (US fluid)';
Properties{113,3} = ckSym('fl_bl_US');
Properties{113,4} = 'fl_bl_US';
Properties{113,5} = '0.119240471196*m^3';
Properties{113,6} = 0;
dims(113,:) = [3 0 0 0 0 0 0 0];

Properties{114,1} = 'volume';
Properties{114,2} = 'board-foot';
Properties{114,3} = ckSym('fbm');
Properties{114,4} = 'fbm';
Properties{114,5} = '2.359737216e-3*m^3';
Properties{114,6} = 0;
dims(114,:) = [3 0 0 0 0 0 0 0];

Properties{115,1} = 'volume';
Properties{115,2} = 'bucket (imperial)';
Properties{115,3} = ckSym('bkt');
Properties{115,4} = 'bkt';
Properties{115,5} = '0.01818436*m^3';
Properties{115,6} = 0;
dims(115,:) = [3 0 0 0 0 0 0 0];

Properties{116,1} = 'volume';
Properties{116,2} = 'bushel (imperial)';
Properties{116,3} = ckSym('bu_Imp');
Properties{116,4} = 'bu_Imp';
Properties{116,5} = '0.03636872*m^3';
Properties{116,6} = 0;
dims(116,:) = [3 0 0 0 0 0 0 0];

Properties{117,1} = 'volume';
Properties{117,2} = 'bushel (US dry heaped)';
Properties{117,3} = ckSym('bu_US');
Properties{117,4} = 'bu_US';
Properties{117,5} = '0.0440488377086*m^3';
Properties{117,6} = 0;
dims(117,:) = [3 0 0 0 0 0 0 0];

Properties{118,1} = 'volume';
Properties{118,2} = 'bushel (US dry level)';
Properties{118,3} = ckSym('bu_US_lvl');
Properties{118,4} = 'bu_US_lvl';
Properties{118,5} = '0.03523907016688*m^3';
Properties{118,6} = 0;
dims(118,:) = [3 0 0 0 0 0 0 0];

Properties{119,1} = 'volume';
Properties{119,2} = 'butt, pipe';
Properties{119,3} = ckSym('bt');
Properties{119,4} = 'bt';
Properties{119,5} = '0.476961884784*m^3';
Properties{119,6} = 0;
dims(119,:) = [3 0 0 0 0 0 0 0];

Properties{120,1} = 'volume';
Properties{120,2} = 'coomb';
Properties{120,3} = ckSym('cmb');
Properties{120,4} = 'cmb';
Properties{120,5} = '0.14547488*m^3';
Properties{120,6} = 0;
dims(120,:) = [3 0 0 0 0 0 0 0];

Properties{121,1} = 'volume';
Properties{121,2} = 'cord (firewood)';
Properties{121,3} = ckSym('cd');
Properties{121,4} = 'cd';
Properties{121,5} = '3.624556363776*m^3';
Properties{121,6} = 0;
dims(121,:) = [3 0 0 0 0 0 0 0];

Properties{122,1} = 'volume';
Properties{122,2} = 'cord-foot';
Properties{122,3} = ckSym('cdft');
Properties{122,4} = 'cdft';
Properties{122,5} = '0.453069545472*m^3';
Properties{122,6} = 0;
dims(122,:) = [3 0 0 0 0 0 0 0];

Properties{123,1} = 'volume';
Properties{123,2} = 'cubic fathom';
Properties{123,3} = ckSym('fm3');
Properties{123,4} = 'fm\^3';
Properties{123,5} = '6.116438863872*m^3';
Properties{123,6} = 0;
dims(123,:) = [3 0 0 0 0 0 0 0];

Properties{124,1} = 'volume';
Properties{124,2} = 'cubic foot';
Properties{124,3} = ckSym('ft3');
Properties{124,4} = 'ft\^3';
Properties{124,5} = '0.028316846592*m^3';
Properties{124,6} = 0;
dims(124,:) = [3 0 0 0 0 0 0 0];

Properties{125,1} = 'volume';
Properties{125,2} = 'cubic inch';
Properties{125,3} = ckSym('in3');
Properties{125,4} = 'in\^3';
Properties{125,5} = '16.387064e-6*m^3';
Properties{125,6} = 0;
dims(125,:) = [3 0 0 0 0 0 0 0];

Properties{126,1} = 'volume';
Properties{126,2} = 'cubic meter';
Properties{126,3} = ckSym('m3');
Properties{126,4} = 'm\^3';
Properties{126,5} = '1*m^3';
Properties{126,6} = 0;
dims(126,:) = [3 0 0 0 0 0 0 0];

Properties{127,1} = 'volume';
Properties{127,2} = 'cubic mile';
Properties{127,3} = ckSym('mi3');
Properties{127,4} = 'mi\^3';
Properties{127,5} = '4168181825.440579584*m^3';
Properties{127,6} = 0;
dims(127,:) = [3 0 0 0 0 0 0 0];

Properties{128,1} = 'volume';
Properties{128,2} = 'cubic yard';
Properties{128,3} = ckSym('yd3');
Properties{128,4} = 'yd\^3';
Properties{128,5} = '0.764554857984*m^3';
Properties{128,6} = 0;
dims(128,:) = [3 0 0 0 0 0 0 0];

Properties{129,1} = 'volume';
Properties{129,2} = 'cup (breakfast)';
Properties{129,3} = ckSym('c_b');
Properties{129,4} = 'c_b';
Properties{129,5} = '284.130625e-6*m^3';
Properties{129,6} = 0;
dims(129,:) = [3 0 0 0 0 0 0 0];

Properties{130,1} = 'volume';
Properties{130,2} = 'cup (Canadian)';
Properties{130,3} = ckSym('c_CAN');
Properties{130,4} = 'c_CAN';
Properties{130,5} = '227.3045e-6*m^3';
Properties{130,6} = 0;
dims(130,:) = [3 0 0 0 0 0 0 0];

Properties{131,1} = 'volume';
Properties{131,2} = 'cup (metric)';
Properties{131,3} = ckSym('c_m');
Properties{131,4} = 'c_m';
Properties{131,5} = '250.0e-6*m^3';
Properties{131,6} = 0;
dims(131,:) = [3 0 0 0 0 0 0 0];

Properties{132,1} = 'volume';
Properties{132,2} = 'cup (US customary)';
Properties{132,3} = ckSym('c_USc');
Properties{132,4} = 'c_USc';
Properties{132,5} = '236.5882365e-6*m^3';
Properties{132,6} = 0;
dims(132,:) = [3 0 0 0 0 0 0 0];

Properties{133,1} = 'volume';
Properties{133,2} = 'cup (US food nutrition labeling)';
Properties{133,3} = ckSym('c_USg');
Properties{133,4} = 'c_USg';
Properties{133,5} = '2.4e-4*m^3';
Properties{133,6} = 0;
dims(133,:) = [3 0 0 0 0 0 0 0];

Properties{134,1} = 'volume';
Properties{134,2} = 'dash (imperial)';
Properties{134,3} = ckSym('dsh_Imp');
Properties{134,4} = 'dsh_Imp';
Properties{134,5} = '369.961751302083e-9*m^3';
Properties{134,6} = 0;
dims(134,:) = [3 0 0 0 0 0 0 0];

Properties{135,1} = 'volume';
Properties{135,2} = 'dash (US)';
Properties{135,3} = ckSym('dsh_US');
Properties{135,4} = 'dsh_US';
Properties{135,5} = '308.057599609375e-9*m^3';
Properties{135,6} = 0;
dims(135,:) = [3 0 0 0 0 0 0 0];

Properties{136,1} = 'volume';
Properties{136,2} = 'dessertspoon (imperial)';
Properties{136,3} = ckSym('dst');
Properties{136,4} = 'dst';
Properties{136,5} = '11.8387760416e-6*m^3';
Properties{136,6} = 0;
dims(136,:) = [3 0 0 0 0 0 0 0];

Properties{137,1} = 'volume';
Properties{137,2} = 'drop (imperial)';
Properties{137,3} = ckSym('gtt_Imp');
Properties{137,4} = 'gtt_Imp';
Properties{137,5} = '98.6564670138e-9*m^3';
Properties{137,6} = 0;
dims(137,:) = [3 0 0 0 0 0 0 0];

Properties{138,1} = 'volume';
Properties{138,2} = 'drop (imperial) (alt)';
Properties{138,3} = ckSym('gtt_Imp_X_alt');
Properties{138,4} = 'gtt_Imp_X_alt';
Properties{138,5} = '77.886684e-9*m^3';
Properties{138,6} = 0;
dims(138,:) = [3 0 0 0 0 0 0 0];

Properties{139,1} = 'volume';
Properties{139,2} = 'drop (medical)';
Properties{139,3} = ckSym('drp_med');
Properties{139,4} = 'drp_med';
Properties{139,5} = '83.0333333333333e-9*m^3';
Properties{139,6} = 0;
dims(139,:) = [3 0 0 0 0 0 0 0];

Properties{140,1} = 'volume';
Properties{140,2} = 'drop (metric)';
Properties{140,3} = ckSym('drp_met');
Properties{140,4} = 'drp_met';
Properties{140,5} = '50.0e-9*m^3';
Properties{140,6} = 0;
dims(140,:) = [3 0 0 0 0 0 0 0];

Properties{141,1} = 'volume';
Properties{141,2} = 'drop (US)';
Properties{141,3} = ckSym('gtt_US');
Properties{141,4} = 'gtt_US';
Properties{141,5} = '82.14869322916e-9*m^3';
Properties{141,6} = 0;
dims(141,:) = [3 0 0 0 0 0 0 0];

Properties{142,1} = 'volume';
Properties{142,2} = 'drop (US) (alt)';
Properties{142,3} = ckSym('gtt_US_X_alt');
Properties{142,4} = 'gtt_US_X_alt';
Properties{142,5} = '64.854231e-9*m^3';
Properties{142,6} = 0;
dims(142,:) = [3 0 0 0 0 0 0 0];

Properties{143,1} = 'volume';
Properties{143,2} = 'fifth';
Properties{143,3} = ckSym('fth');
Properties{143,4} = 'fth';
Properties{143,5} = '757.0823568e-6*m^3';
Properties{143,6} = 0;
dims(143,:) = [3 0 0 0 0 0 0 0];

Properties{144,1} = 'volume';
Properties{144,2} = 'firkin';
Properties{144,3} = ckSym('frk');
Properties{144,4} = 'frk';
Properties{144,5} = '0.034068706056*m^3';
Properties{144,6} = 0;
dims(144,:) = [3 0 0 0 0 0 0 0];

Properties{145,1} = 'volume';
Properties{145,2} = 'fluid drachm (imperial)';
Properties{145,3} = ckSym('fl_dr');
Properties{145,4} = 'fl_dr';
Properties{145,5} = '3.5516328125e-6*m^3';
Properties{145,6} = 0;
dims(145,:) = [3 0 0 0 0 0 0 0];

Properties{146,1} = 'volume';
Properties{146,2} = 'fluid dram (US); US fluidram';
Properties{146,3} = ckSym('fl_dr');
Properties{146,4} = 'fl_dr';
Properties{146,5} = '3.6966911953125e-6*m^3';
Properties{146,6} = 0;
dims(146,:) = [3 0 0 0 0 0 0 0];

Properties{147,1} = 'volume';
Properties{147,2} = 'fluid scruple (imperial)';
Properties{147,3} = ckSym('fl_s');
Properties{147,4} = 'fl_s';
Properties{147,5} = '1.18387760416e-6*m^3';
Properties{147,6} = 0;
dims(147,:) = [3 0 0 0 0 0 0 0];

Properties{148,1} = 'volume';
Properties{148,2} = 'gallon (beer)';
Properties{148,3} = ckSym('beer_gal');
Properties{148,4} = 'beer_gal';
Properties{148,5} = '4.621152048e-3*m^3';
Properties{148,6} = 0;
dims(148,:) = [3 0 0 0 0 0 0 0];

Properties{149,1} = 'volume';
Properties{149,2} = 'gallon (imperial)';
Properties{149,3} = ckSym('gal_imp');
Properties{149,4} = 'gal_imp';
Properties{149,5} = '4.54609e-3*m^3';
Properties{149,6} = 0;
dims(149,:) = [3 0 0 0 0 0 0 0];

Properties{150,1} = 'volume';
Properties{150,2} = 'gallon (US dry)';
Properties{150,3} = ckSym('gal_US');
Properties{150,4} = 'gal_US';
Properties{150,5} = '4.40488377086e-3*m^3';
Properties{150,6} = 0;
dims(150,:) = [3 0 0 0 0 0 0 0];

Properties{151,1} = 'volume';
Properties{151,2} = 'gallon (US fluid; Wine)';
Properties{151,3} = ckSym('gal_US');
Properties{151,4} = 'gal_US';
Properties{151,5} = '3.785411784e-3*m^3';
Properties{151,6} = 0;
dims(151,:) = [3 0 0 0 0 0 0 0];

Properties{152,1} = 'volume';
Properties{152,2} = 'gill (imperial)';
Properties{152,3} = ckSym('gi_imp');
Properties{152,4} = 'gi_imp';
Properties{152,5} = '142.0653125e-6*m^3';
Properties{152,6} = 0;
dims(152,:) = [3 0 0 0 0 0 0 0];

Properties{153,1} = 'volume';
Properties{153,2} = 'Noggin';
Properties{153,3} = ckSym('nog');
Properties{153,4} = 'nog';
Properties{153,5} = '142.0653125e-6*m^3';
Properties{153,6} = 0;
dims(153,:) = [3 0 0 0 0 0 0 0];

Properties{154,1} = 'volume';
Properties{154,2} = 'gill (US)';
Properties{154,3} = ckSym('gi_US');
Properties{154,4} = 'gi_US';
Properties{154,5} = '118.29411825e-6*m^3';
Properties{154,6} = 0;
dims(154,:) = [3 0 0 0 0 0 0 0];

Properties{155,1} = 'volume';
Properties{155,2} = 'hogshead (imperial)';
Properties{155,3} = ckSym('hhd_imp');
Properties{155,4} = 'hhd_imp';
Properties{155,5} = '0.32731848*m^3';
Properties{155,6} = 0;
dims(155,:) = [3 0 0 0 0 0 0 0];

Properties{156,1} = 'volume';
Properties{156,2} = 'hogshead (US)';
Properties{156,3} = ckSym('hhd_US');
Properties{156,4} = 'hhd_US';
Properties{156,5} = '0.238480942392*m^3';
Properties{156,6} = 0;
dims(156,:) = [3 0 0 0 0 0 0 0];

Properties{157,1} = 'volume';
Properties{157,2} = 'jigger (bartending)';
Properties{157,3} = ckSym('jgr');
Properties{157,4} = 'jgr';
Properties{157,5} = '44.36e-6*m^3';
Properties{157,6} = 0;
dims(157,:) = [3 0 0 0 0 0 0 0];

Properties{158,1} = 'volume';
Properties{158,2} = 'kilderkin';
Properties{158,3} = ckSym('kkn');
Properties{158,4} = 'kkn';
Properties{158,5} = '0.08182962*m^3';
Properties{158,6} = 0;
dims(158,:) = [3 0 0 0 0 0 0 0];

Properties{159,1} = 'volume';
Properties{159,2} = 'lambda';
Properties{159,3} = ckSym('lmd');
Properties{159,4} = 'lmd';
Properties{159,5} = '1e-9*m^3';
Properties{159,6} = 0;
dims(159,:) = [3 0 0 0 0 0 0 0];

Properties{160,1} = 'volume';
Properties{160,2} = 'last';
Properties{160,3} = ckSym('lst');
Properties{160,4} = 'lst';
Properties{160,5} = '2.9094976*m^3';
Properties{160,6} = 0;
dims(160,:) = [3 0 0 0 0 0 0 0];

Properties{161,1} = 'volume';
Properties{161,2} = 'litre';
Properties{161,3} = ckSym('L');
Properties{161,4} = 'L';
Properties{161,5} = '0.001*m^3';
Properties{161,6} = 0;
dims(161,:) = [3 0 0 0 0 0 0 0];

Properties{162,1} = 'volume';
Properties{162,2} = 'load';
Properties{162,3} = ckSym('ld');
Properties{162,4} = 'ld';
Properties{162,5} = '1.4158423296*m^3';
Properties{162,6} = 0;
dims(162,:) = [3 0 0 0 0 0 0 0];

Properties{163,1} = 'volume';
Properties{163,2} = 'minim (imperial)';
Properties{163,3} = ckSym('mnm_Imp');
Properties{163,4} = 'mnm_Imp';
Properties{163,5} = '59.1938802083e-9*m^3';
Properties{163,6} = 0;
dims(163,:) = [3 0 0 0 0 0 0 0];

Properties{164,1} = 'volume';
Properties{164,2} = 'minim (US)';
Properties{164,3} = ckSym('mnm_US');
Properties{164,4} = 'mnm_US';
Properties{164,5} = '61.611519921875e-9*m^3';
Properties{164,6} = 0;
dims(164,:) = [3 0 0 0 0 0 0 0];

Properties{165,1} = 'volume';
Properties{165,2} = 'ounce (fluid imperial)';
Properties{165,3} = ckSym('fl_oz_imp');
Properties{165,4} = 'fl_oz_imp';
Properties{165,5} = '28.4130625e-6*m^3';
Properties{165,6} = 0;
dims(165,:) = [3 0 0 0 0 0 0 0];

Properties{166,1} = 'volume';
Properties{166,2} = 'ounce (fluid US customary)';
Properties{166,3} = ckSym('fl_oz_Usc');
Properties{166,4} = 'fl_oz_Usc';
Properties{166,5} = '29.5735295625e-6*m^3';
Properties{166,6} = 0;
dims(166,:) = [3 0 0 0 0 0 0 0];

Properties{167,1} = 'volume';
Properties{167,2} = 'ounce (fluid US food nutrition labeling)';
Properties{167,3} = ckSym('fl_oz_Usg');
Properties{167,4} = 'fl_oz_Usg';
Properties{167,5} = '3e-5*m^3';
Properties{167,6} = 0;
dims(167,:) = [3 0 0 0 0 0 0 0];

Properties{168,1} = 'volume';
Properties{168,2} = 'peck (imperial)';
Properties{168,3} = ckSym('pk_Imp');
Properties{168,4} = 'pk_Imp';
Properties{168,5} = '9.09218e-3*m^3';
Properties{168,6} = 0;
dims(168,:) = [3 0 0 0 0 0 0 0];

Properties{169,1} = 'volume';
Properties{169,2} = 'peck (US dry)';
Properties{169,3} = ckSym('pk_US');
Properties{169,4} = 'pk_US';
Properties{169,5} = '8.80976754172e-3*m^3';
Properties{169,6} = 0;
dims(169,:) = [3 0 0 0 0 0 0 0];

Properties{170,1} = 'volume';
Properties{170,2} = 'perch';
Properties{170,3} = ckSym('per');
Properties{170,4} = 'per';
Properties{170,5} = '0.700841953152*m^3';
Properties{170,6} = 0;
dims(170,:) = [3 0 0 0 0 0 0 0];

Properties{171,1} = 'volume';
Properties{171,2} = 'pinch (imperial)';
Properties{171,3} = ckSym('pnch_Imp');
Properties{171,4} = 'pnch_Imp';
Properties{171,5} = '739.92350260416e-9*m^3';
Properties{171,6} = 0;
dims(171,:) = [3 0 0 0 0 0 0 0];

Properties{172,1} = 'volume';
Properties{172,2} = 'pinch (US)';
Properties{172,3} = ckSym('pnch_US');
Properties{172,4} = 'pnch_US';
Properties{172,5} = '616.11519921875e-9*m^3';
Properties{172,6} = 0;
dims(172,:) = [3 0 0 0 0 0 0 0];

Properties{173,1} = 'volume';
Properties{173,2} = 'pint (imperial)';
Properties{173,3} = ckSym('pt_imp');
Properties{173,4} = 'pt_imp';
Properties{173,5} = '568.26125e-6*m^3';
Properties{173,6} = 0;
dims(173,:) = [3 0 0 0 0 0 0 0];

Properties{174,1} = 'volume';
Properties{174,2} = 'pint (US dry)';
Properties{174,3} = ckSym('pt_USdry');
Properties{174,4} = 'pt_USdry';
Properties{174,5} = '550.6104713575e-6*m^3';
Properties{174,6} = 0;
dims(174,:) = [3 0 0 0 0 0 0 0];

Properties{175,1} = 'volume';
Properties{175,2} = 'pint (US fluid)';
Properties{175,3} = ckSym('pt_US_fl');
Properties{175,4} = 'pt_US_fl';
Properties{175,5} = '473.176473e-6*m^3';
Properties{175,6} = 0;
dims(175,:) = [3 0 0 0 0 0 0 0];

Properties{176,1} = 'volume';
Properties{176,2} = 'pony';
Properties{176,3} = ckSym('pny');
Properties{176,4} = 'pny';
Properties{176,5} = '22.180147171875e-6*m^3';
Properties{176,6} = 0;
dims(176,:) = [3 0 0 0 0 0 0 0];

Properties{177,1} = 'volume';
Properties{177,2} = 'pottle; quartern';
Properties{177,3} = ckSym('ptl');
Properties{177,4} = 'ptl';
Properties{177,5} = '2.273045e-3*m^3';
Properties{177,6} = 0;
dims(177,:) = [3 0 0 0 0 0 0 0];

Properties{178,1} = 'volume';
Properties{178,2} = 'quart (imperial)';
Properties{178,3} = ckSym('qt_imp');
Properties{178,4} = 'qt_imp';
Properties{178,5} = '1.1365225e-3*m^3';
Properties{178,6} = 0;
dims(178,:) = [3 0 0 0 0 0 0 0];

Properties{179,1} = 'volume';
Properties{179,2} = 'quart (US dry)';
Properties{179,3} = ckSym('qt_US');
Properties{179,4} = 'qt_US';
Properties{179,5} = '1.101220942715e-3*m^3';
Properties{179,6} = 0;
dims(179,:) = [3 0 0 0 0 0 0 0];

Properties{180,1} = 'volume';
Properties{180,2} = 'quart (US fluid)';
Properties{180,3} = ckSym('qt_US');
Properties{180,4} = 'qt_US';
Properties{180,5} = '946.352946e-6*m^3';
Properties{180,6} = 0;
dims(180,:) = [3 0 0 0 0 0 0 0];

Properties{181,1} = 'volume';
Properties{181,2} = 'quarter; pail';
Properties{181,3} = ckSym('qtr_p');
Properties{181,4} = 'qtr_p';
Properties{181,5} = '0.29094976*m^3';
Properties{181,6} = 0;
dims(181,:) = [3 0 0 0 0 0 0 0];

Properties{182,1} = 'volume';
Properties{182,2} = 'register ton';
Properties{182,3} = ckSym('ton_reg');
Properties{182,4} = 'ton_reg';
Properties{182,5} = '2.8316846592*m^3';
Properties{182,6} = 0;
dims(182,:) = [3 0 0 0 0 0 0 0];

Properties{183,1} = 'volume';
Properties{183,2} = 'sack (imperial); bag';
Properties{183,3} = ckSym('sk_Imp');
Properties{183,4} = 'sk_Imp';
Properties{183,5} = '0.10910616*m^3';
Properties{183,6} = 0;
dims(183,:) = [3 0 0 0 0 0 0 0];

Properties{184,1} = 'volume';
Properties{184,2} = 'sack (US)';
Properties{184,3} = ckSym('sk_US');
Properties{184,4} = 'sk_US';
Properties{184,5} = '0.10571721050064*m^3';
Properties{184,6} = 0;
dims(184,:) = [3 0 0 0 0 0 0 0];

Properties{185,1} = 'volume';
Properties{185,2} = 'seam';
Properties{185,3} = ckSym('sm');
Properties{185,4} = 'sm';
Properties{185,5} = '0.28191256133504*m^3';
Properties{185,6} = 0;
dims(185,:) = [3 0 0 0 0 0 0 0];

Properties{186,1} = 'volume';
Properties{186,2} = 'shot';
Properties{186,3} = ckSym('sht');
Properties{186,4} = 'sht';
Properties{186,5} = '29.57e-6*m^3';
Properties{186,6} = 0;
dims(186,:) = [3 0 0 0 0 0 0 0];

Properties{187,1} = 'volume';
Properties{187,2} = 'strike (imperial)';
Properties{187,3} = ckSym('stk_Imp');
Properties{187,4} = 'stk_Imp';
Properties{187,5} = '0.07273744*m^3';
Properties{187,6} = 0;
dims(187,:) = [3 0 0 0 0 0 0 0];

Properties{188,1} = 'volume';
Properties{188,2} = 'strike (US)';
Properties{188,3} = ckSym('stk_US');
Properties{188,4} = 'stk_US';
Properties{188,5} = '0.07047814033376*m^3';
Properties{188,6} = 0;
dims(188,:) = [3 0 0 0 0 0 0 0];

Properties{189,1} = 'volume';
Properties{189,2} = 'tablespoon (Australian metric)';
Properties{189,3} = ckSym('tbsp_AUS');
Properties{189,4} = 'tbsp_AUS';
Properties{189,5} = '20.0e-6*m^3';
Properties{189,6} = 0;
dims(189,:) = [3 0 0 0 0 0 0 0];

Properties{190,1} = 'volume';
Properties{190,2} = 'tablespoon (Canadian)';
Properties{190,3} = ckSym('tbsp_CAN');
Properties{190,4} = 'tbsp_CAN';
Properties{190,5} = '14.20653125e-6*m^3';
Properties{190,6} = 0;
dims(190,:) = [3 0 0 0 0 0 0 0];

Properties{191,1} = 'volume';
Properties{191,2} = 'tablespoon (imperial)';
Properties{191,3} = ckSym('tbsp_IMP');
Properties{191,4} = 'tbsp_IMP';
Properties{191,5} = '17.7581640625e-6*m^3';
Properties{191,6} = 0;
dims(191,:) = [3 0 0 0 0 0 0 0];

Properties{192,1} = 'volume';
Properties{192,2} = 'tablespoon (metric)';
Properties{192,3} = ckSym('tbsp_met');
Properties{192,4} = 'tbsp_met';
Properties{192,5} = '15.0e-6*m^3';
Properties{192,6} = 0;
dims(192,:) = [3 0 0 0 0 0 0 0];

Properties{193,1} = 'volume';
Properties{193,2} = 'tablespoon (US customary)';
Properties{193,3} = ckSym('tbsp_USc');
Properties{193,4} = 'tbsp_USc';
Properties{193,5} = '14.7867647825e-6*m^3';
Properties{193,6} = 0;
dims(193,:) = [3 0 0 0 0 0 0 0];

Properties{194,1} = 'volume';
Properties{194,2} = 'tablespoon (US food nutrition labeling)';
Properties{194,3} = ckSym('tbsp_Usg');
Properties{194,4} = 'tbsp_Usg';
Properties{194,5} = '1.5e-5*m^3';
Properties{194,6} = 0;
dims(194,:) = [3 0 0 0 0 0 0 0];

Properties{195,1} = 'volume';
Properties{195,2} = 'teaspoon (Canadian)';
Properties{195,3} = ckSym('tsp_CAN');
Properties{195,4} = 'tsp_CAN';
Properties{195,5} = '4.735510416666666666e-6*m^3';
Properties{195,6} = 0;
dims(195,:) = [3 0 0 0 0 0 0 0];

Properties{196,1} = 'volume';
Properties{196,2} = 'teaspoon (imperial)';
Properties{196,3} = ckSym('tsp_Imp');
Properties{196,4} = 'tsp_Imp';
Properties{196,5} = '5.9193880208333333333e-6*m^3';
Properties{196,6} = 0;
dims(196,:) = [3 0 0 0 0 0 0 0];

Properties{197,1} = 'volume';
Properties{197,2} = 'teaspoon (metric)';
Properties{197,3} = ckSym('tsp_met');
Properties{197,4} = 'tsp_met';
Properties{197,5} = '5.0e-6*m^3';
Properties{197,6} = 0;
dims(197,:) = [3 0 0 0 0 0 0 0];

Properties{198,1} = 'volume';
Properties{198,2} = 'teaspoon (US customary)';
Properties{198,3} = ckSym('tsp_USc');
Properties{198,4} = 'tsp_USc';
Properties{198,5} = '4.928921595e-6*m^3';
Properties{198,6} = 0;
dims(198,:) = [3 0 0 0 0 0 0 0];

Properties{199,1} = 'volume';
Properties{199,2} = 'teaspoon (US food nutrition labeling)';
Properties{199,3} = ckSym('tsp_USg');
Properties{199,4} = 'tsp_USg';
Properties{199,5} = '5e-6*m^3';
Properties{199,6} = 0;
dims(199,:) = [3 0 0 0 0 0 0 0];

Properties{200,1} = 'volume';
Properties{200,2} = 'timber foot';
Properties{200,3} = ckSym('tft');
Properties{200,4} = 'tft';
Properties{200,5} = '0.028316846592*m^3';
Properties{200,6} = 0;
dims(200,:) = [3 0 0 0 0 0 0 0];

Properties{201,1} = 'volume';
Properties{201,2} = 'ton (displacement)';
Properties{201,3} = ckSym('tn_d');
Properties{201,4} = 'tn_d';
Properties{201,5} = '0.99108963072*m^3';
Properties{201,6} = 0;
dims(201,:) = [3 0 0 0 0 0 0 0];

Properties{202,1} = 'volume';
Properties{202,2} = 'ton (freight)';
Properties{202,3} = ckSym('tn_ft');
Properties{202,4} = 'tn_ft';
Properties{202,5} = '1.13267386368*m^3';
Properties{202,6} = 0;
dims(202,:) = [3 0 0 0 0 0 0 0];

Properties{203,1} = 'volume';
Properties{203,2} = 'ton (water)';
Properties{203,3} = ckSym('tn_H2O');
Properties{203,4} = 'tn_H2O';
Properties{203,5} = '1.01832416*m^3';
Properties{203,6} = 0;
dims(203,:) = [3 0 0 0 0 0 0 0];

Properties{204,1} = 'volume';
Properties{204,2} = 'tun';
Properties{204,3} = ckSym('tun');
Properties{204,4} = 'tun';
Properties{204,5} = '0.953923769568*m^3';
Properties{204,6} = 0;
dims(204,:) = [3 0 0 0 0 0 0 0];

Properties{205,1} = 'volume';
Properties{205,2} = 'wey (US)';
Properties{205,3} = ckSym('wey_v');
Properties{205,4} = 'wey_v';
Properties{205,5} = '1.4095628066752*m^3';
Properties{205,6} = 0;
dims(205,:) = [3 0 0 0 0 0 0 0];

Properties{206,1} = 'angle, plane';
Properties{206,2} = 'angular mil';
Properties{206,3} = ckSym('mil_ang');
Properties{206,4} = '\mu';
Properties{206,5} = '0.981748e-3*m^1*m^-1';
Properties{206,6} = 0;
dims(206,:) = [-1 0 0 0 0 0 0 0];

Properties{207,1} = 'angle, plane';
Properties{207,2} = 'arcminute; MOA';
Properties{207,3} = ckSym('MOA');
Properties{207,4} = 'MOA';
Properties{207,5} = '0.290888e-3*m^1*m^-1';
Properties{207,6} = 0;
dims(207,:) = [-1 0 0 0 0 0 0 0];

Properties{208,1} = 'angle, plane';
Properties{208,2} = 'arcsecond';
Properties{208,3} = ckSym('acsnd');
Properties{208,4} = 'acsnd';
Properties{208,5} = '0.000004848137*m^1*m^-1';
Properties{208,6} = 0;
dims(208,:) = [-1 0 0 0 0 0 0 0];

Properties{209,1} = 'angle, plane';
Properties{209,2} = 'centisimal minute of arc';
Properties{209,3} = ckSym('MOAc');
Properties{209,4} = 'MOAc';
Properties{209,5} = '0.00015708*m^1*m^-1';
Properties{209,6} = 0;
dims(209,:) = [-1 0 0 0 0 0 0 0];

Properties{210,1} = 'angle, plane';
Properties{210,2} = 'centisimal second of arc';
Properties{210,3} = ckSym('SOAc');
Properties{210,4} = 'SOAc';
Properties{210,5} = '1.570796e-6*m^1*m^-1';
Properties{210,6} = 0;
dims(210,:) = [-1 0 0 0 0 0 0 0];

Properties{211,1} = 'angle, plane';
Properties{211,2} = 'degree (of arc)';
Properties{211,3} = ckSym('deg');
Properties{211,4} = '\circ';
Properties{211,5} = '17.453293e-3*m^1*m^-1';
Properties{211,6} = 0;
dims(211,:) = [-1 0 0 0 0 0 0 0];

Properties{212,1} = 'angle, plane';
Properties{212,2} = 'grad; gradian; gon';
Properties{212,3} = ckSym('grad');
Properties{212,4} = 'grad';
Properties{212,5} = '15.707963e-3*m^1*m^-1';
Properties{212,6} = 0;
dims(212,:) = [-1 0 0 0 0 0 0 0];

Properties{213,1} = 'angle, plane';
Properties{213,2} = 'octant';
Properties{213,3} = ckSym('ocnt');
Properties{213,4} = 'ocnt';
Properties{213,5} = '0.785398*m^1*m^-1';
Properties{213,6} = 0;
dims(213,:) = [-1 0 0 0 0 0 0 0];

Properties{214,1} = 'angle, plane';
Properties{214,2} = 'quadrant';
Properties{214,3} = ckSym('qdr');
Properties{214,4} = 'qdr';
Properties{214,5} = '1.570796*m^1*m^-1';
Properties{214,6} = 0;
dims(214,:) = [-1 0 0 0 0 0 0 0];

Properties{215,1} = 'angle, plane';
Properties{215,2} = 'radian';
Properties{215,3} = ckSym('radn');
Properties{215,4} = 'radn';
Properties{215,5} = '1*m^1*m^-1';
Properties{215,6} = 0;
dims(215,:) = [-1 0 0 0 0 0 0 0];

Properties{216,1} = 'angle, plane';
Properties{216,2} = 'sextant';
Properties{216,3} = ckSym('stn');
Properties{216,4} = 'stn';
Properties{216,5} = '1.047198*m^1*m^-1';
Properties{216,6} = 0;
dims(216,:) = [-1 0 0 0 0 0 0 0];

Properties{217,1} = 'angle, plane';
Properties{217,2} = 'sign';
Properties{217,3} = ckSym('sgn');
Properties{217,4} = 'sgn';
Properties{217,5} = '0.523599*m^1*m^-1';
Properties{217,6} = 0;
dims(217,:) = [-1 0 0 0 0 0 0 0];

Properties{218,1} = 'angle, solid';
Properties{218,2} = 'steradian';
Properties{218,3} = ckSym('sr');
Properties{218,4} = 'sr';
Properties{218,5} = '1*m^2*m^-2';
Properties{218,6} = 0;
dims(218,:) = [-2 0 0 0 0 0 0 0];

Properties{219,1} = 'mass';
Properties{219,2} = 'atomic mass unit, unified';
Properties{219,3} = ckSym('AMU');
Properties{219,4} = 'AMU';
Properties{219,5} = '1.66053873e-27*kg^1';
Properties{219,6} = 0;
dims(219,:) = [0 1 0 0 0 0 0 0];

Properties{220,1} = 'mass';
Properties{220,2} = 'atomic unit of mass, electron rest mass';
Properties{220,3} = ckSym('me');
Properties{220,4} = 'me';
Properties{220,5} = '9.10938215e-31*kg^1';
Properties{220,6} = 0;
dims(220,:) = [0 1 0 0 0 0 0 0];

Properties{221,1} = 'mass';
Properties{221,2} = 'bag (coffee)';
Properties{221,3} = ckSym('bg_c');
Properties{221,4} = 'bg_c';
Properties{221,5} = '60*kg^1';
Properties{221,6} = 0;
dims(221,:) = [0 1 0 0 0 0 0 0];

Properties{222,1} = 'mass';
Properties{222,2} = 'bag (Portland cement)';
Properties{222,3} = ckSym('bg_ptlnd');
Properties{222,4} = 'bg_ptlnd';
Properties{222,5} = '42.63768278*kg^1';
Properties{222,6} = 0;
dims(222,:) = [0 1 0 0 0 0 0 0];

Properties{223,1} = 'mass';
Properties{223,2} = 'barge';
Properties{223,3} = ckSym('brg');
Properties{223,4} = 'brg';
Properties{223,5} = '20411.65665*kg^1';
Properties{223,6} = 0;
dims(223,:) = [0 1 0 0 0 0 0 0];

Properties{224,1} = 'mass';
Properties{224,2} = 'carat';
Properties{224,3} = ckSym('kt');
Properties{224,4} = 'kt';
Properties{224,5} = '205.196548333e-6*kg^1';
Properties{224,6} = 0;
dims(224,:) = [0 1 0 0 0 0 0 0];

Properties{225,1} = 'mass';
Properties{225,2} = 'carat (metric)';
Properties{225,3} = ckSym('ct');
Properties{225,4} = 'ct';
Properties{225,5} = '200e-6*kg^1';
Properties{225,6} = 0;
dims(225,:) = [0 1 0 0 0 0 0 0];

Properties{226,1} = 'mass';
Properties{226,2} = 'clove';
Properties{226,3} = ckSym('clv');
Properties{226,4} = 'clv';
Properties{226,5} = '3.62873896*kg^1';
Properties{226,6} = 0;
dims(226,:) = [0 1 0 0 0 0 0 0];

Properties{227,1} = 'mass';
Properties{227,2} = 'crith';
Properties{227,3} = ckSym('cri');
Properties{227,4} = 'cri';
Properties{227,5} = '89.9349e-6*kg^1';
Properties{227,6} = 0;
dims(227,:) = [0 1 0 0 0 0 0 0];

Properties{228,1} = 'mass';
Properties{228,2} = 'dalton';
Properties{228,3} = ckSym('Da');
Properties{228,4} = 'Da';
Properties{228,5} = '1.6609021e-27*kg^1';
Properties{228,6} = 0;
dims(228,:) = [0 1 0 0 0 0 0 0];

Properties{229,1} = 'mass';
Properties{229,2} = 'dram (apothecary; troy)';
Properties{229,3} = ckSym('dr_t');
Properties{229,4} = 'dr_t';
Properties{229,5} = '3.8879346e-3*kg^1';
Properties{229,6} = 0;
dims(229,:) = [0 1 0 0 0 0 0 0];

Properties{230,1} = 'mass';
Properties{230,2} = 'dram (avoirdupois)';
Properties{230,3} = ckSym('dr_av');
Properties{230,4} = 'dr_av';
Properties{230,5} = '1.7718451953125e-3*kg^1';
Properties{230,6} = 0;
dims(230,:) = [0 1 0 0 0 0 0 0];

Properties{231,1} = 'mass';
Properties{231,2} = 'electronvolt';
Properties{231,3} = ckSym('eV');
Properties{231,4} = 'eV';
Properties{231,5} = '1.7826e-36*kg^1';
Properties{231,6} = 0;
dims(231,:) = [0 1 0 0 0 0 0 0];

Properties{232,1} = 'mass';
Properties{232,2} = 'gamma';
Properties{232,3} = ckSym('gma');
Properties{232,4} = 'gma';
Properties{232,5} = '1e-9*kg^1';
Properties{232,6} = 0;
dims(232,:) = [0 1 0 0 0 0 0 0];

Properties{233,1} = 'mass';
Properties{233,2} = 'grain';
Properties{233,3} = ckSym('gr');
Properties{233,4} = 'gr';
Properties{233,5} = '64.79891e-6*kg^1';
Properties{233,6} = 0;
dims(233,:) = [0 1 0 0 0 0 0 0];

Properties{234,1} = 'mass';
Properties{234,2} = 'grave';
Properties{234,3} = ckSym('G');
Properties{234,4} = 'G';
Properties{234,5} = '1*kg^1';
Properties{234,6} = 0;
dims(234,:) = [0 1 0 0 0 0 0 0];

Properties{235,1} = 'mass';
Properties{235,2} = 'hundredweight (long)';
Properties{235,3} = ckSym('lcwt');
Properties{235,4} = 'lcwt';
Properties{235,5} = '50.80234544*kg^1';
Properties{235,6} = 0;
dims(235,:) = [0 1 0 0 0 0 0 0];

Properties{236,1} = 'mass';
Properties{236,2} = 'hundredweight (short); cental';
Properties{236,3} = ckSym('scwt');
Properties{236,4} = 'scwt';
Properties{236,5} = '45.359237*kg^1';
Properties{236,6} = 0;
dims(236,:) = [0 1 0 0 0 0 0 0];

Properties{237,1} = 'mass';
Properties{237,2} = 'kip';
Properties{237,3} = ckSym('kip');
Properties{237,4} = 'kip';
Properties{237,5} = '453.59237*kg^1';
Properties{237,6} = 0;
dims(237,:) = [0 1 0 0 0 0 0 0];

Properties{238,1} = 'mass';
Properties{238,2} = 'mark';
Properties{238,3} = ckSym('mk');
Properties{238,4} = 'mk';
Properties{238,5} = '248.8278144e-3*kg^1';
Properties{238,6} = 0;
dims(238,:) = [0 1 0 0 0 0 0 0];

Properties{239,1} = 'mass';
Properties{239,2} = 'mite';
Properties{239,3} = ckSym('mt');
Properties{239,4} = 'mt';
Properties{239,5} = '3.2399455e-6*kg^1';
Properties{239,6} = 0;
dims(239,:) = [0 1 0 0 0 0 0 0];

Properties{240,1} = 'mass';
Properties{240,2} = 'mite (metric)';
Properties{240,3} = ckSym('mt_met');
Properties{240,4} = 'mt_met';
Properties{240,5} = '50e-6*kg^1';
Properties{240,6} = 0;
dims(240,:) = [0 1 0 0 0 0 0 0];

Properties{241,1} = 'mass';
Properties{241,2} = 'ounce (apothecary; troy)';
Properties{241,3} = ckSym('oz_t');
Properties{241,4} = 'oz_t';
Properties{241,5} = '31.1034768e-3*kg^1';
Properties{241,6} = 0;
dims(241,:) = [0 1 0 0 0 0 0 0];

Properties{242,1} = 'mass';
Properties{242,2} = 'ounce (avoirdupois)';
Properties{242,3} = ckSym('oz_av');
Properties{242,4} = 'oz_av';
Properties{242,5} = '28.349523125e-3*kg^1';
Properties{242,6} = 0;
dims(242,:) = [0 1 0 0 0 0 0 0];

Properties{243,1} = 'mass';
Properties{243,2} = 'ounce (US food nutrition labeling)';
Properties{243,3} = ckSym('oz');
Properties{243,4} = 'oz';
Properties{243,5} = '28e-3*kg^1';
Properties{243,6} = 0;
dims(243,:) = [0 1 0 0 0 0 0 0];

Properties{244,1} = 'mass';
Properties{244,2} = 'pennyweight';
Properties{244,3} = ckSym('dwt');
Properties{244,4} = 'dwt';
Properties{244,5} = '1.55517384e-3*kg^1';
Properties{244,6} = 0;
dims(244,:) = [0 1 0 0 0 0 0 0];

Properties{245,1} = 'mass';
Properties{245,2} = 'point';
Properties{245,3} = ckSym('ptm');
Properties{245,4} = 'ptm';
Properties{245,5} = '2e-6*kg^1';
Properties{245,6} = 0;
dims(245,:) = [0 1 0 0 0 0 0 0];

Properties{246,1} = 'mass';
Properties{246,2} = 'pound';
Properties{246,3} = ckSym('lb');
Properties{246,4} = 'lb';
Properties{246,5} = '0.45359237*kg^1';
Properties{246,6} = 0;
dims(246,:) = [0 1 0 0 0 0 0 0];

Properties{247,1} = 'mass';
Properties{247,2} = 'pound (avoirdupois)';
Properties{247,3} = ckSym('lb_av');
Properties{247,4} = 'lb_av';
Properties{247,5} = '0.45359237*kg^1';
Properties{247,6} = 0;
dims(247,:) = [0 1 0 0 0 0 0 0];

Properties{248,1} = 'mass';
Properties{248,2} = 'pound (metric)';
Properties{248,3} = ckSym('lb_met');
Properties{248,4} = 'lb_met';
Properties{248,5} = '500e-3*kg^1';
Properties{248,6} = 0;
dims(248,:) = [0 1 0 0 0 0 0 0];

Properties{249,1} = 'mass';
Properties{249,2} = 'pound (troy)';
Properties{249,3} = ckSym('lb_t');
Properties{249,4} = 'lb_t';
Properties{249,5} = '0.3732417216*kg^1';
Properties{249,6} = 0;
dims(249,:) = [0 1 0 0 0 0 0 0];

Properties{250,1} = 'mass';
Properties{250,2} = 'quarter (imperial)';
Properties{250,3} = ckSym('qtr_Imp');
Properties{250,4} = 'qtr_Imp';
Properties{250,5} = '12.70058636*kg^1';
Properties{250,6} = 0;
dims(250,:) = [0 1 0 0 0 0 0 0];

Properties{251,1} = 'mass';
Properties{251,2} = 'quarter (informal)';
Properties{251,3} = ckSym('qtr_inf');
Properties{251,4} = 'qtr_inf';
Properties{251,5} = '226.796185*kg^1';
Properties{251,6} = 0;
dims(251,:) = [0 1 0 0 0 0 0 0];

Properties{252,1} = 'mass';
Properties{252,2} = 'quarter, long (informal)';
Properties{252,3} = ckSym('qtr_lng');
Properties{252,4} = 'qtr_lng';
Properties{252,5} = '254.0117272*kg^1';
Properties{252,6} = 0;
dims(252,:) = [0 1 0 0 0 0 0 0];

Properties{253,1} = 'mass';
Properties{253,2} = 'quintal (metric)';
Properties{253,3} = ckSym('q');
Properties{253,4} = 'q';
Properties{253,5} = '100*kg^1';
Properties{253,6} = 0;
dims(253,:) = [0 1 0 0 0 0 0 0];

Properties{254,1} = 'mass';
Properties{254,2} = 'scruple (apothecary)';
Properties{254,3} = ckSym('s_ap');
Properties{254,4} = 's_ap';
Properties{254,5} = '1.2959782e-3*kg^1';
Properties{254,6} = 0;
dims(254,:) = [0 1 0 0 0 0 0 0];

Properties{255,1} = 'mass';
Properties{255,2} = 'sheet';
Properties{255,3} = ckSym('sht_m');
Properties{255,4} = 'sht_m';
Properties{255,5} = '647.9891e-6*kg^1';
Properties{255,6} = 0;
dims(255,:) = [0 1 0 0 0 0 0 0];

Properties{256,1} = 'mass';
Properties{256,2} = 'slug; geepound; hyl';
Properties{256,3} = ckSym('slug');
Properties{256,4} = 'slug';
Properties{256,5} = '14.593903*kg^1';
Properties{256,6} = 0;
dims(256,:) = [0 1 0 0 0 0 0 0];

Properties{257,1} = 'mass';
Properties{257,2} = 'stone';
Properties{257,3} = ckSym('st');
Properties{257,4} = 'st';
Properties{257,5} = '6.35029318*kg^1';
Properties{257,6} = 0;
dims(257,:) = [0 1 0 0 0 0 0 0];

Properties{258,1} = 'mass';
Properties{258,2} = 'ton, assay (long)';
Properties{258,3} = ckSym('AT_sht');
Properties{258,4} = 'AT_sht';
Properties{258,5} = '32.666667e-3*kg^1';
Properties{258,6} = 0;
dims(258,:) = [0 1 0 0 0 0 0 0];

Properties{259,1} = 'mass';
Properties{259,2} = 'ton, assay (short)';
Properties{259,3} = ckSym('AT_lng');
Properties{259,4} = 'AT_lng';
Properties{259,5} = '29.166667e-3*kg^1';
Properties{259,6} = 0;
dims(259,:) = [0 1 0 0 0 0 0 0];

Properties{260,1} = 'mass';
Properties{260,2} = 'ton, long';
Properties{260,3} = ckSym('l_ton');
Properties{260,4} = 'l_ton';
Properties{260,5} = '1016.0469088*kg^1';
Properties{260,6} = 0;
dims(260,:) = [0 1 0 0 0 0 0 0];

Properties{261,1} = 'mass';
Properties{261,2} = 'ton, short';
Properties{261,3} = ckSym('sh_tn');
Properties{261,4} = 'sh_tn';
Properties{261,5} = '907.18474*kg^1';
Properties{261,6} = 0;
dims(261,:) = [0 1 0 0 0 0 0 0];

Properties{262,1} = 'mass';
Properties{262,2} = 'tonne (mts unit)';
Properties{262,3} = ckSym('t');
Properties{262,4} = 't';
Properties{262,5} = '1000*kg^1';
Properties{262,6} = 0;
dims(262,:) = [0 1 0 0 0 0 0 0];

Properties{263,1} = 'mass';
Properties{263,2} = 'wey';
Properties{263,3} = ckSym('wey_m');
Properties{263,4} = 'wey_m';
Properties{263,5} = '114.30527724*kg^1';
Properties{263,6} = 0;
dims(263,:) = [0 1 0 0 0 0 0 0];

Properties{264,1} = 'density, mass, volumetric';
Properties{264,2} = 'gram per millilitre';
Properties{264,3} = ckSym('g_p_mL');
Properties{264,4} = 'g_p_mL';
Properties{264,5} = '1,000*kg^1*m^-3';
Properties{264,6} = 0;
dims(264,:) = [-3 1 0 0 0 0 0 0];

Properties{265,1} = 'density, mass, volumetric';
Properties{265,2} = 'kilogram per cubic meter';
Properties{265,3} = ckSym('kg_p_m3');
Properties{265,4} = 'kg/,\^3';
Properties{265,5} = '1*kg^1*m^-3';
Properties{265,6} = 0;
dims(265,:) = [-3 1 0 0 0 0 0 0];

Properties{266,1} = 'density, mass, volumetric';
Properties{266,2} = 'kilogram per litre';
Properties{266,3} = ckSym('kg_p_L');
Properties{266,4} = 'kg_p_L';
Properties{266,5} = '1,000*kg^1*m^-3';
Properties{266,6} = 0;
dims(266,:) = [-3 1 0 0 0 0 0 0];

Properties{267,1} = 'density, mass, volumetric';
Properties{267,2} = 'ounce (avoirdupois) per cubic foot';
Properties{267,3} = ckSym('oz_p_ft3');
Properties{267,4} = 'oz/ft\^3';
Properties{267,5} = '1.001153961*kg^1*m^-3';
Properties{267,6} = 0;
dims(267,:) = [-3 1 0 0 0 0 0 0];

Properties{268,1} = 'density, mass, volumetric';
Properties{268,2} = 'ounce (avoirdupois) per cubic inch';
Properties{268,3} = ckSym('oz_p_in3');
Properties{268,4} = 'oz/in\^3';
Properties{268,5} = '1.729994044e3*kg^1*m^-3';
Properties{268,6} = 0;
dims(268,:) = [-3 1 0 0 0 0 0 0];

Properties{269,1} = 'density, mass, volumetric';
Properties{269,2} = 'ounce (avoirdupois) per gallon (imperial)';
Properties{269,3} = ckSym('oz_p_gal');
Properties{269,4} = 'oz_p_gal';
Properties{269,5} = '6.236023291*kg^1*m^-3';
Properties{269,6} = 0;
dims(269,:) = [-3 1 0 0 0 0 0 0];

Properties{270,1} = 'density, mass, volumetric';
Properties{270,2} = 'ounce (avoirdupois) per gallon (US fluid)';
Properties{270,3} = ckSym('oz_p_gal');
Properties{270,4} = 'oz_p_gal';
Properties{270,5} = '7.489151707*kg^1*m^-3';
Properties{270,6} = 0;
dims(270,:) = [-3 1 0 0 0 0 0 0];

Properties{271,1} = 'density, mass, volumetric';
Properties{271,2} = 'pound (avoirdupois) per cubic foot';
Properties{271,3} = ckSym('lb_p_ft3');
Properties{271,4} = 'lb/ft\^3';
Properties{271,5} = '16.01846337*kg^1*m^-3';
Properties{271,6} = 0;
dims(271,:) = [-3 1 0 0 0 0 0 0];

Properties{272,1} = 'density, mass, volumetric';
Properties{272,2} = 'pound (avoirdupois) per cubic inch';
Properties{272,3} = ckSym('lb_p_in3');
Properties{272,4} = 'lb_p_in3';
Properties{272,5} = '2.767990471e4*kg^1*m^-3';
Properties{272,6} = 0;
dims(272,:) = [-3 1 0 0 0 0 0 0];

Properties{273,1} = 'density, mass, volumetric';
Properties{273,2} = 'pound (avoirdupois) per gallon (imperial)';
Properties{273,3} = ckSym('lb_p_gal');
Properties{273,4} = 'lb_p_gal';
Properties{273,5} = '99.77637266*kg^1*m^-3';
Properties{273,6} = 0;
dims(273,:) = [-3 1 0 0 0 0 0 0];

Properties{274,1} = 'density, mass, volumetric';
Properties{274,2} = 'pound (avoirdupois) per gallon (US fluid)';
Properties{274,3} = ckSym('lb_p_gal');
Properties{274,4} = 'lb_p_gal';
Properties{274,5} = '119.8264273*kg^1*m^-3';
Properties{274,6} = 0;
dims(274,:) = [-3 1 0 0 0 0 0 0];

Properties{275,1} = 'density, mass, volumetric';
Properties{275,2} = 'slug per cubic foot';
Properties{275,3} = ckSym('slug_p_ft3');
Properties{275,4} = 'slug_p_ft3';
Properties{275,5} = '515.3788184*kg^1*m^-3';
Properties{275,6} = 0;
dims(275,:) = [-3 1 0 0 0 0 0 0];

Properties{276,1} = 'time';
Properties{276,2} = 'atomic unit of time';
Properties{276,3} = ckSym('au');
Properties{276,4} = 'au';
Properties{276,5} = '2.418884254e-17*s^1';
Properties{276,6} = 0;
dims(276,:) = [0 0 1 0 0 0 0 0];

Properties{277,1} = 'time';
Properties{277,2} = 'Callippic cycle';
Properties{277,3} = ckSym('cyC');
Properties{277,4} = 'cyC';
Properties{277,5} = '2.3983776e9*s^1';
Properties{277,6} = 0;
dims(277,:) = [0 0 1 0 0 0 0 0];

Properties{278,1} = 'time';
Properties{278,2} = 'century';
Properties{278,3} = ckSym('cent');
Properties{278,4} = 'cent';
Properties{278,5} = '3155760000*s^1';
Properties{278,6} = 0;
dims(278,:) = [0 0 1 0 0 0 0 0];

Properties{279,1} = 'time';
Properties{279,2} = 'day';
Properties{279,3} = ckSym('d');
Properties{279,4} = 'd';
Properties{279,5} = '86400*s^1';
Properties{279,6} = 0;
dims(279,:) = [0 0 1 0 0 0 0 0];

Properties{280,1} = 'time';
Properties{280,2} = 'day (sidereal)';
Properties{280,3} = ckSym('d_sid');
Properties{280,4} = 'd_sid';
Properties{280,5} = '86164.1*s^1';
Properties{280,6} = 0;
dims(280,:) = [0 0 1 0 0 0 0 0];

Properties{281,1} = 'time';
Properties{281,2} = 'decade';
Properties{281,3} = ckSym('dec');
Properties{281,4} = 'dec';
Properties{281,5} = '315576000*s^1';
Properties{281,6} = 0;
dims(281,:) = [0 0 1 0 0 0 0 0];

Properties{282,1} = 'time';
Properties{282,2} = 'fortnight';
Properties{282,3} = ckSym('fn');
Properties{282,4} = 'fn';
Properties{282,5} = '1209600*s^1';
Properties{282,6} = 0;
dims(282,:) = [0 0 1 0 0 0 0 0];

Properties{283,1} = 'time';
Properties{283,2} = 'helek';
Properties{283,3} = ckSym('hlk');
Properties{283,4} = 'hlk';
Properties{283,5} = '3.33333333333*s^1';
Properties{283,6} = 0;
dims(283,:) = [0 0 1 0 0 0 0 0];

Properties{284,1} = 'time';
Properties{284,2} = 'Hipparchic cycle';
Properties{284,3} = ckSym('cyH');
Properties{284,4} = 'cyH';
Properties{284,5} = '9.593424e9*s^1';
Properties{284,6} = 0;
dims(284,:) = [0 0 1 0 0 0 0 0];

Properties{285,1} = 'time';
Properties{285,2} = 'hour';
Properties{285,3} = ckSym('h');
Properties{285,4} = 'h';
Properties{285,5} = '3600*s^1';
Properties{285,6} = 0;
dims(285,:) = [0 0 1 0 0 0 0 0];

Properties{286,1} = 'time';
Properties{286,2} = 'jiffy';
Properties{286,3} = ckSym('j');
Properties{286,4} = 'j';
Properties{286,5} = '0.016666666666666*s^1';
Properties{286,6} = 0;
dims(286,:) = [0 0 1 0 0 0 0 0];

Properties{287,1} = 'time';
Properties{287,2} = 'jiffy (alternate)';
Properties{287,3} = ckSym('ja');
Properties{287,4} = 'ja';
Properties{287,5} = '1e-3*s^1';
Properties{287,6} = 0;
dims(287,:) = [0 0 1 0 0 0 0 0];

Properties{288,1} = 'time';
Properties{288,2} = 'ke (quarter of an hour)';
Properties{288,3} = ckSym('ke');
Properties{288,4} = 'ke';
Properties{288,5} = '900*s^1';
Properties{288,6} = 0;
dims(288,:) = [0 0 1 0 0 0 0 0];

Properties{289,1} = 'time';
Properties{289,2} = 'ke (traditional)';
Properties{289,3} = ckSym('ke_t');
Properties{289,4} = 'ke_t';
Properties{289,5} = '864*s^1';
Properties{289,6} = 0;
dims(289,:) = [0 0 1 0 0 0 0 0];

Properties{290,1} = 'time';
Properties{290,2} = 'lustre; lustrum';
Properties{290,3} = ckSym('lstr');
Properties{290,4} = 'lstr';
Properties{290,5} = '1.5768e8*s^1';
Properties{290,6} = 0;
dims(290,:) = [0 0 1 0 0 0 0 0];

Properties{291,1} = 'time';
Properties{291,2} = 'Metonic cycle; enneadecaeteris';
Properties{291,3} = ckSym('cyM');
Properties{291,4} = 'cyM';
Properties{291,5} = '5.99616e8*s^1';
Properties{291,6} = 0;
dims(291,:) = [0 0 1 0 0 0 0 0];

Properties{292,1} = 'time';
Properties{292,2} = 'millennium';
Properties{292,3} = ckSym('mlnm');
Properties{292,4} = 'mlnm';
Properties{292,5} = '31557600000*s^1';
Properties{292,6} = 0;
dims(292,:) = [0 0 1 0 0 0 0 0];

Properties{293,1} = 'time';
Properties{293,2} = 'milliday';
Properties{293,3} = ckSym('md');
Properties{293,4} = 'md';
Properties{293,5} = '86.4*s^1';
Properties{293,6} = 0;
dims(293,:) = [0 0 1 0 0 0 0 0];

Properties{294,1} = 'time';
Properties{294,2} = 'minute';
Properties{294,3} = ckSym('min');
Properties{294,4} = 'min';
Properties{294,5} = '60*s^1';
Properties{294,6} = 0;
dims(294,:) = [0 0 1 0 0 0 0 0];

Properties{295,1} = 'time';
Properties{295,2} = 'moment';
Properties{295,3} = ckSym('mmt');
Properties{295,4} = 'mmt';
Properties{295,5} = '90*s^1';
Properties{295,6} = 0;
dims(295,:) = [0 0 1 0 0 0 0 0];

Properties{296,1} = 'time';
Properties{296,2} = 'month (full)';
Properties{296,3} = ckSym('mo');
Properties{296,4} = 'mo';
Properties{296,5} = '2592000*s^1';
Properties{296,6} = 0;
dims(296,:) = [0 0 1 0 0 0 0 0];

Properties{297,1} = 'time';
Properties{297,2} = 'month (Greg. av.)';
Properties{297,3} = ckSym('mo_G');
Properties{297,4} = 'mo_G';
Properties{297,5} = '2.6297e6*s^1';
Properties{297,6} = 0;
dims(297,:) = [0 0 1 0 0 0 0 0];

Properties{298,1} = 'time';
Properties{298,2} = 'month (hollow)';
Properties{298,3} = ckSym('mo_H');
Properties{298,4} = 'mo_H';
Properties{298,5} = '2505600*s^1';
Properties{298,6} = 0;
dims(298,:) = [0 0 1 0 0 0 0 0];

Properties{299,1} = 'time';
Properties{299,2} = 'month (synodic)';
Properties{299,3} = ckSym('mo_S');
Properties{299,4} = 'mo_S';
Properties{299,5} = '2.551e6*s^1';
Properties{299,6} = 0;
dims(299,:) = [0 0 1 0 0 0 0 0];

Properties{300,1} = 'time';
Properties{300,2} = 'octaeteris';
Properties{300,3} = ckSym('oct');
Properties{300,4} = 'oct';
Properties{300,5} = '2.524608e8*s^1';
Properties{300,6} = 0;
dims(300,:) = [0 0 1 0 0 0 0 0];

Properties{301,1} = 'time';
Properties{301,2} = 'Planck time';
Properties{301,3} = ckSym('tP');
Properties{301,4} = 'tP';
Properties{301,5} = '1.351211868e-43*s^1';
Properties{301,6} = 0;
dims(301,:) = [0 0 1 0 0 0 0 0];

Properties{302,1} = 'time';
Properties{302,2} = 'shake';
Properties{302,3} = ckSym('shk');
Properties{302,4} = 'shk';
Properties{302,5} = '1e-8*s^1';
Properties{302,6} = 0;
dims(302,:) = [0 0 1 0 0 0 0 0];

Properties{303,1} = 'time';
Properties{303,2} = 'sigma';
Properties{303,3} = ckSym('sgm');
Properties{303,4} = 'sgm';
Properties{303,5} = '1e-6*s^1';
Properties{303,6} = 0;
dims(303,:) = [0 0 1 0 0 0 0 0];

Properties{304,1} = 'time';
Properties{304,2} = 'Sothic cycle';
Properties{304,3} = ckSym('cyS');
Properties{304,4} = 'cyS';
Properties{304,5} = '4.6074096e10*s^1';
Properties{304,6} = 0;
dims(304,:) = [0 0 1 0 0 0 0 0];

Properties{305,1} = 'time';
Properties{305,2} = 'svedberg';
Properties{305,3} = ckSym('S');
Properties{305,4} = 'S';
Properties{305,5} = '1e-13*s^1';
Properties{305,6} = 0;
dims(305,:) = [0 0 1 0 0 0 0 0];

Properties{306,1} = 'time';
Properties{306,2} = 'week';
Properties{306,3} = ckSym('wk');
Properties{306,4} = 'wk';
Properties{306,5} = '604800*s^1';
Properties{306,6} = 0;
dims(306,:) = [0 0 1 0 0 0 0 0];

Properties{307,1} = 'time';
Properties{307,2} = 'year (Gregorian)';
Properties{307,3} = ckSym('yr_G');
Properties{307,4} = 'yr_G';
Properties{307,5} = '31556952*s^1';
Properties{307,6} = 0;
dims(307,:) = [0 0 1 0 0 0 0 0];

Properties{308,1} = 'time';
Properties{308,2} = 'year (Julian)';
Properties{308,3} = ckSym('yr_J');
Properties{308,4} = 'yr_J';
Properties{308,5} = '31557600*s^1';
Properties{308,6} = 0;
dims(308,:) = [0 0 1 0 0 0 0 0];

Properties{309,1} = 'time';
Properties{309,2} = 'year (sidereal)';
Properties{309,3} = ckSym('yr_s');
Properties{309,4} = 'yr_s';
Properties{309,5} = '31558149.7632*s^1';
Properties{309,6} = 0;
dims(309,:) = [0 0 1 0 0 0 0 0];

Properties{310,1} = 'time';
Properties{310,2} = 'year (tropical)';
Properties{310,3} = ckSym('yr_t');
Properties{310,4} = 'yr_t';
Properties{310,5} = '31556925*s^1';
Properties{310,6} = 0;
dims(310,:) = [0 0 1 0 0 0 0 0];

Properties{311,1} = 'frequency, temporal, harmonic';
Properties{311,2} = 'hertz';
Properties{311,3} = ckSym('Hz');
Properties{311,4} = 'Hz';
Properties{311,5} = '1*s^-1';
Properties{311,6} = 0;
dims(311,:) = [0 0 -1 0 0 0 0 0];

Properties{312,1} = 'frequency, temporal, circular';
Properties{312,2} = 'revolutions per minute';
Properties{312,3} = ckSym('rpm');
Properties{312,4} = 'rpm';
Properties{312,5} = '0.104719755*m^1*m^-1*s^-1';
Properties{312,6} = 0;
dims(312,:) = [-1 0 -1 0 0 0 0 0];

Properties{313,1} = 'speed, linear';
Properties{313,2} = 'foot per hour';
Properties{313,3} = ckSym('fph');
Properties{313,4} = 'fph';
Properties{313,5} = '8.466667e-5*m^1*s^-1';
Properties{313,6} = 0;
dims(313,:) = [1 0 -1 0 0 0 0 0];

Properties{314,1} = 'speed, linear';
Properties{314,2} = 'foot per minute';
Properties{314,3} = ckSym('fpm');
Properties{314,4} = 'fpm';
Properties{314,5} = '5.08e-3*m^1*s^-1';
Properties{314,6} = 0;
dims(314,:) = [1 0 -1 0 0 0 0 0];

Properties{315,1} = 'speed, linear';
Properties{315,2} = 'foot per second';
Properties{315,3} = ckSym('fps');
Properties{315,4} = 'fps';
Properties{315,5} = '3.048e-1*m^1*s^-1';
Properties{315,6} = 0;
dims(315,:) = [1 0 -1 0 0 0 0 0];

Properties{316,1} = 'speed, linear';
Properties{316,2} = 'furlong per fortnight';
Properties{316,3} = ckSym('fpf');
Properties{316,4} = 'fpf';
Properties{316,5} = '1.663095e-4*m^1*s^-1';
Properties{316,6} = 0;
dims(316,:) = [1 0 -1 0 0 0 0 0];

Properties{317,1} = 'speed, linear';
Properties{317,2} = 'inch per hour';
Properties{317,3} = ckSym('iph');
Properties{317,4} = 'iph';
Properties{317,5} = '7.05556e-6*m^1*s^-1';
Properties{317,6} = 0;
dims(317,:) = [1 0 -1 0 0 0 0 0];

Properties{318,1} = 'speed, linear';
Properties{318,2} = 'inch per minute';
Properties{318,3} = ckSym('ipm');
Properties{318,4} = 'ipm';
Properties{318,5} = '4.23333e-4*m^1*s^-1';
Properties{318,6} = 0;
dims(318,:) = [1 0 -1 0 0 0 0 0];

Properties{319,1} = 'speed, linear';
Properties{319,2} = 'inch per second';
Properties{319,3} = ckSym('ips');
Properties{319,4} = 'ips';
Properties{319,5} = '2.54e-2*m^1*s^-1';
Properties{319,6} = 0;
dims(319,:) = [1 0 -1 0 0 0 0 0];

Properties{320,1} = 'speed, linear';
Properties{320,2} = 'kilometer per hour';
Properties{320,3} = ckSym('km_p_h');
Properties{320,4} = 'km_p_h';
Properties{320,5} = '2.777778e-1*m^1*s^-1';
Properties{320,6} = 0;
dims(320,:) = [1 0 -1 0 0 0 0 0];

Properties{321,1} = 'speed, linear';
Properties{321,2} = 'knot';
Properties{321,3} = ckSym('kt');
Properties{321,4} = 'kt';
Properties{321,5} = '0.514444*m^1*s^-1';
Properties{321,6} = 0;
dims(321,:) = [1 0 -1 0 0 0 0 0];

Properties{322,1} = 'speed, linear';
Properties{322,2} = 'knot (Admiralty)';
Properties{322,3} = ckSym('kn');
Properties{322,4} = 'kn';
Properties{322,5} = '0.5147733333333333*m^1*s^-1';
Properties{322,6} = 0;
dims(322,:) = [1 0 -1 0 0 0 0 0];

Properties{323,1} = 'speed, linear';
Properties{323,2} = 'meter per second';
Properties{323,3} = ckSym('m_p_s');
Properties{323,4} = 'm_p_s';
Properties{323,5} = '1*m^1*s^-1';
Properties{323,6} = 0;
dims(323,:) = [1 0 -1 0 0 0 0 0];

Properties{324,1} = 'speed, linear';
Properties{324,2} = 'mile per hour';
Properties{324,3} = ckSym('mph');
Properties{324,4} = 'mph';
Properties{324,5} = '0.44704*m^1*s^-1';
Properties{324,6} = 0;
dims(324,:) = [1 0 -1 0 0 0 0 0];

Properties{325,1} = 'speed, linear';
Properties{325,2} = 'mile per minute';
Properties{325,3} = ckSym('mi_p_min');
Properties{325,4} = 'mi_p_min';
Properties{325,5} = '26.8224*m^1*s^-1';
Properties{325,6} = 0;
dims(325,:) = [1 0 -1 0 0 0 0 0];

Properties{326,1} = 'speed, linear';
Properties{326,2} = 'mile per second';
Properties{326,3} = ckSym('mi_p_s');
Properties{326,4} = 'mi_p_s';
Properties{326,5} = '1609.344*m^1*s^-1';
Properties{326,6} = 0;
dims(326,:) = [1 0 -1 0 0 0 0 0];

Properties{327,1} = 'speed, linear';
Properties{327,2} = 'speed of light in vacuum';
Properties{327,3} = ckSym('c');
Properties{327,4} = 'c';
Properties{327,5} = '299792458*m^1*s^-1';
Properties{327,6} = 0;
dims(327,:) = [1 0 -1 0 0 0 0 0];

Properties{328,1} = 'flow, volumetric';
Properties{328,2} = 'cubic foot per minute';
Properties{328,3} = ckSym('CFM');
Properties{328,4} = 'CFM';
Properties{328,5} = '4.719474432e-4*m^3*s^-1';
Properties{328,6} = 0;
dims(328,:) = [3 0 -1 0 0 0 0 0];

Properties{329,1} = 'flow, volumetric';
Properties{329,2} = 'cubic foot per second';
Properties{329,3} = ckSym('ft3_p_s');
Properties{329,4} = 'ft3_p_s';
Properties{329,5} = '0.028316846592*m^3*s^-1';
Properties{329,6} = 0;
dims(329,:) = [3 0 -1 0 0 0 0 0];

Properties{330,1} = 'flow, volumetric';
Properties{330,2} = 'cubic inch per minute';
Properties{330,3} = ckSym('in3_p_min');
Properties{330,4} = 'in3_p_min';
Properties{330,5} = '2.7311773e-7*m^3*s^-1';
Properties{330,6} = 0;
dims(330,:) = [3 0 -1 0 0 0 0 0];

Properties{331,1} = 'flow, volumetric';
Properties{331,2} = 'cubic inch per second';
Properties{331,3} = ckSym('in3_p_s');
Properties{331,4} = 'in3_p_s';
Properties{331,5} = '1.6387064e-5*m^3*s^-1';
Properties{331,6} = 0;
dims(331,:) = [3 0 -1 0 0 0 0 0];

Properties{332,1} = 'flow, volumetric';
Properties{332,2} = 'cubic meter per second';
Properties{332,3} = ckSym('m3_p_s');
Properties{332,4} = 'm3_p_s';
Properties{332,5} = '1*m^3*s^-1';
Properties{332,6} = 0;
dims(332,:) = [3 0 -1 0 0 0 0 0];

Properties{333,1} = 'flow, volumetric';
Properties{333,2} = 'gallon (US fluid) per day';
Properties{333,3} = ckSym('GPD');
Properties{333,4} = 'GPD';
Properties{333,5} = '4.38126363888888e-8*m^3*s^-1';
Properties{333,6} = 0;
dims(333,:) = [3 0 -1 0 0 0 0 0];

Properties{334,1} = 'flow, volumetric';
Properties{334,2} = 'gallon (US fluid) per hour';
Properties{334,3} = ckSym('GPH');
Properties{334,4} = 'GPH';
Properties{334,5} = '1.05150327333333e-6*m^3*s^-1';
Properties{334,6} = 0;
dims(334,:) = [3 0 -1 0 0 0 0 0];

Properties{335,1} = 'flow, volumetric';
Properties{335,2} = 'gallon (US fluid) per minute';
Properties{335,3} = ckSym('GPM');
Properties{335,4} = 'GPM';
Properties{335,5} = '6.30901964e-5*m^3*s^-1';
Properties{335,6} = 0;
dims(335,:) = [3 0 -1 0 0 0 0 0];

Properties{336,1} = 'flow, volumetric';
Properties{336,2} = 'litre per minute';
Properties{336,3} = ckSym('lpm');
Properties{336,4} = 'lpm';
Properties{336,5} = '1.6666666666e-5*m^3*s^-1';
Properties{336,6} = 0;
dims(336,:) = [3 0 -1 0 0 0 0 0];

Properties{337,1} = 'acceleration, linear';
Properties{337,2} = 'foot per hour per second';
Properties{337,3} = ckSym('fph_p_s');
Properties{337,4} = 'fph_p_s';
Properties{337,5} = '8.466667e-5*m^1*s^-2';
Properties{337,6} = 0;
dims(337,:) = [1 0 -2 0 0 0 0 0];

Properties{338,1} = 'acceleration, linear';
Properties{338,2} = 'foot per minute per second';
Properties{338,3} = ckSym('fpm_p_s');
Properties{338,4} = 'fpm_p_s';
Properties{338,5} = '5.08e-3*m^1*s^-2';
Properties{338,6} = 0;
dims(338,:) = [1 0 -2 0 0 0 0 0];

Properties{339,1} = 'acceleration, linear';
Properties{339,2} = 'foot per second squared';
Properties{339,3} = ckSym('f_p_s_p_s');
Properties{339,4} = 'f_p_s_p_s';
Properties{339,5} = '3.048e-1*m^1*s^-2';
Properties{339,6} = 0;
dims(339,:) = [1 0 -2 0 0 0 0 0];

Properties{340,1} = 'acceleration, linear';
Properties{340,2} = 'gal; galileo';
Properties{340,3} = ckSym('Gal');
Properties{340,4} = 'Gal';
Properties{340,5} = '1e-2*m^1*s^-2';
Properties{340,6} = 0;
dims(340,:) = [1 0 -2 0 0 0 0 0];

Properties{341,1} = 'acceleration, linear';
Properties{341,2} = 'inch per minute per second';
Properties{341,3} = ckSym('ipm_p_s');
Properties{341,4} = 'ipm_p_s';
Properties{341,5} = '4.233333e-4*m^1*s^-2';
Properties{341,6} = 0;
dims(341,:) = [1 0 -2 0 0 0 0 0];

Properties{342,1} = 'acceleration, linear';
Properties{342,2} = 'inch per second squared';
Properties{342,3} = ckSym('ips_p_s');
Properties{342,4} = 'ips_p_s';
Properties{342,5} = '2.54e-2*m^1*s^-2';
Properties{342,6} = 0;
dims(342,:) = [1 0 -2 0 0 0 0 0];

Properties{343,1} = 'acceleration, linear';
Properties{343,2} = 'knot per second';
Properties{343,3} = ckSym('kt_p_s');
Properties{343,4} = 'kt_p_s';
Properties{343,5} = '5.144444e-1*m^1*s^-2';
Properties{343,6} = 0;
dims(343,:) = [1 0 -2 0 0 0 0 0];

Properties{344,1} = 'acceleration, linear';
Properties{344,2} = 'meter per second squared';
Properties{344,3} = ckSym('m_p_s_p_s');
Properties{344,4} = 'm_p_s_p_s';
Properties{344,5} = '1*m^1*s^-2';
Properties{344,6} = 0;
dims(344,:) = [1 0 -2 0 0 0 0 0];

Properties{345,1} = 'acceleration, linear';
Properties{345,2} = 'mile per hour per second';
Properties{345,3} = ckSym('mph_p_s');
Properties{345,4} = 'mph_p_s';
Properties{345,5} = '4.4704e-1*m^1*s^-2';
Properties{345,6} = 0;
dims(345,:) = [1 0 -2 0 0 0 0 0];

Properties{346,1} = 'acceleration, linear';
Properties{346,2} = 'mile per minute per second';
Properties{346,3} = ckSym('mi_p_min_p_s');
Properties{346,4} = 'mi_p_min_p_s';
Properties{346,5} = '26.8224*m^1*s^-2';
Properties{346,6} = 0;
dims(346,:) = [1 0 -2 0 0 0 0 0];

Properties{347,1} = 'acceleration, linear';
Properties{347,2} = 'mile per second squared';
Properties{347,3} = ckSym('mi_p_s_p_s');
Properties{347,4} = 'mi_p_s_p_s';
Properties{347,5} = '1.609344e3*m^1*s^-2';
Properties{347,6} = 0;
dims(347,:) = [1 0 -2 0 0 0 0 0];

Properties{348,1} = 'acceleration, linear';
Properties{348,2} = 'standard gravity';
Properties{348,3} = ckSym('g');
Properties{348,4} = 'g';
Properties{348,5} = '9.80665*m^1*s^-2';
Properties{348,6} = 0;
dims(348,:) = [1 0 -2 0 0 0 0 0];

Properties{349,1} = 'force';
Properties{349,2} = 'atomic unit of force';
Properties{349,3} = ckSym('AUF');
Properties{349,4} = 'AUF';
Properties{349,5} = '8.23872206e-8*kg^1*m^1*s^-2';
Properties{349,6} = 0;
dims(349,:) = [1 1 -2 0 0 0 0 0];

Properties{350,1} = 'force';
Properties{350,2} = 'dyne';
Properties{350,3} = ckSym('dyn');
Properties{350,4} = 'dyn';
Properties{350,5} = '1e-5*kg^1*m^1*s^-2';
Properties{350,6} = 0;
dims(350,:) = [1 1 -2 0 0 0 0 0];

Properties{351,1} = 'force';
Properties{351,2} = 'kilogram-force; kilopond; grave-force';
Properties{351,3} = ckSym('kgf');
Properties{351,4} = 'kgf';
Properties{351,5} = '9.80665*kg^1*m^1*s^-2';
Properties{351,6} = 0;
dims(351,:) = [1 1 -2 0 0 0 0 0];

Properties{352,1} = 'force';
Properties{352,2} = 'kip; kip-force';
Properties{352,3} = ckSym('kipf');
Properties{352,4} = 'kipf';
Properties{352,5} = '4.4482216152605e3*kg^1*m^1*s^-2';
Properties{352,6} = 0;
dims(352,:) = [1 1 -2 0 0 0 0 0];

Properties{353,1} = 'force';
Properties{353,2} = 'milligrave-force, gravet-force';
Properties{353,3} = ckSym('mGf');
Properties{353,4} = 'mGf';
Properties{353,5} = '9.80665e-3*kg^1*m^1*s^-2';
Properties{353,6} = 0;
dims(353,:) = [1 1 -2 0 0 0 0 0];

Properties{354,1} = 'force';
Properties{354,2} = 'newton';
Properties{354,3} = ckSym('N');
Properties{354,4} = 'N';
Properties{354,5} = '1*kg^1*m^1*s^-2';
Properties{354,6} = 0;
dims(354,:) = [1 1 -2 0 0 0 0 0];

Properties{355,1} = 'force';
Properties{355,2} = 'ounce-force';
Properties{355,3} = ckSym('ozf');
Properties{355,4} = 'ozf';
Properties{355,5} = '0.2780138509537812*kg^1*m^1*s^-2';
Properties{355,6} = 0;
dims(355,:) = [1 1 -2 0 0 0 0 0];

Properties{356,1} = 'force';
Properties{356,2} = 'pound-force';
Properties{356,3} = ckSym('lbf');
Properties{356,4} = 'lbf';
Properties{356,5} = '4.4482216152605*kg^1*m^1*s^-2';
Properties{356,6} = 0;
dims(356,:) = [1 1 -2 0 0 0 0 0];

Properties{357,1} = 'force';
Properties{357,2} = 'poundal';
Properties{357,3} = ckSym('pdl');
Properties{357,4} = 'pdl';
Properties{357,5} = '0.138254954376*kg^1*m^1*s^-2';
Properties{357,6} = 0;
dims(357,:) = [1 1 -2 0 0 0 0 0];

Properties{358,1} = 'force';
Properties{358,2} = 'sthene (mts unit)';
Properties{358,3} = ckSym('sn');
Properties{358,4} = 'sn';
Properties{358,5} = '1e3*kg^1*m^1*s^-2';
Properties{358,6} = 0;
dims(358,:) = [1 1 -2 0 0 0 0 0];

Properties{359,1} = 'force';
Properties{359,2} = 'ton-force';
Properties{359,3} = ckSym('tnf');
Properties{359,4} = 'tnf';
Properties{359,5} = '8.896443230521e3*kg^1*m^1*s^-2';
Properties{359,6} = 0;
dims(359,:) = [1 1 -2 0 0 0 0 0];

Properties{360,1} = 'pressure';
Properties{360,2} = 'atmosphere (standard)';
Properties{360,3} = ckSym('atm');
Properties{360,4} = 'atm';
Properties{360,5} = '101325*kg^1*m^-1*s^-2';
Properties{360,6} = 0;
dims(360,:) = [-1 1 -2 0 0 0 0 0];

Properties{361,1} = 'pressure';
Properties{361,2} = 'atmosphere (technical)';
Properties{361,3} = ckSym('at');
Properties{361,4} = 'at';
Properties{361,5} = '9.80665e4*kg^1*m^-1*s^-2';
Properties{361,6} = 0;
dims(361,:) = [-1 1 -2 0 0 0 0 0];

Properties{362,1} = 'pressure';
Properties{362,2} = 'bar';
Properties{362,3} = ckSym('bar');
Properties{362,4} = 'bar';
Properties{362,5} = '1e5*kg^1*m^-1*s^-2';
Properties{362,6} = 0;
dims(362,:) = [-1 1 -2 0 0 0 0 0];

Properties{363,1} = 'pressure';
Properties{363,2} = 'barye';
Properties{363,3} = ckSym('bry');
Properties{363,4} = 'bry';
Properties{363,5} = '0.1*kg^1*m^-1*s^-2';
Properties{363,6} = 0;
dims(363,:) = [-1 1 -2 0 0 0 0 0];

Properties{364,1} = 'pressure';
Properties{364,2} = 'centimeter of mercury';
Properties{364,3} = ckSym('cmHg');
Properties{364,4} = 'cmHg';
Properties{364,5} = '1.33322e3*kg^1*m^-1*s^-2';
Properties{364,6} = 0;
dims(364,:) = [-1 1 -2 0 0 0 0 0];

Properties{365,1} = 'pressure';
Properties{365,2} = 'centimeter of water (4 °C)';
Properties{365,3} = ckSym('cmH2O');
Properties{365,4} = 'cmH2O';
Properties{365,5} = '98.0638*kg^1*m^-1*s^-2';
Properties{365,6} = 0;
dims(365,:) = [-1 1 -2 0 0 0 0 0];

Properties{366,1} = 'pressure';
Properties{366,2} = 'foot of mercury (conventional)';
Properties{366,3} = ckSym('ftHg');
Properties{366,4} = 'ftHg';
Properties{366,5} = '40.63666e3*kg^1*m^-1*s^-2';
Properties{366,6} = 0;
dims(366,:) = [-1 1 -2 0 0 0 0 0];

Properties{367,1} = 'pressure';
Properties{367,2} = 'foot of water (39.2 °F)';
Properties{367,3} = ckSym('ftH2O');
Properties{367,4} = 'ftH2O';
Properties{367,5} = '2.98898e3*kg^1*m^-1*s^-2';
Properties{367,6} = 0;
dims(367,:) = [-1 1 -2 0 0 0 0 0];

Properties{368,1} = 'pressure';
Properties{368,2} = 'inch of mercury (conventional)';
Properties{368,3} = ckSym('inHg');
Properties{368,4} = 'inHg';
Properties{368,5} = '3.386389e3*kg^1*m^-1*s^-2';
Properties{368,6} = 0;
dims(368,:) = [-1 1 -2 0 0 0 0 0];

Properties{369,1} = 'pressure';
Properties{369,2} = 'inch of water (39.2 °F)';
Properties{369,3} = ckSym('inH2O');
Properties{369,4} = 'inH2O';
Properties{369,5} = '249.082*kg^1*m^-1*s^-2';
Properties{369,6} = 0;
dims(369,:) = [-1 1 -2 0 0 0 0 0];

Properties{370,1} = 'pressure';
Properties{370,2} = 'kilogram-force per square millimeter';
Properties{370,3} = ckSym('kgf_p_mm2');
Properties{370,4} = 'kgf_p_mm2';
Properties{370,5} = '9.80665e6*kg^1*m^-1*s^-2';
Properties{370,6} = 0;
dims(370,:) = [-1 1 -2 0 0 0 0 0];

Properties{371,1} = 'pressure';
Properties{371,2} = 'kip per square inch';
Properties{371,3} = ckSym('ksi');
Properties{371,4} = 'ksi';
Properties{371,5} = '6.894757e6*kg^1*m^-1*s^-2';
Properties{371,6} = 0;
dims(371,:) = [-1 1 -2 0 0 0 0 0];

Properties{372,1} = 'pressure';
Properties{372,2} = 'micron (micrometer) of mercury';
Properties{372,3} = ckSym('umHg');
Properties{372,4} = 'umHg';
Properties{372,5} = '0.1333224*kg^1*m^-1*s^-2';
Properties{372,6} = 0;
dims(372,:) = [-1 1 -2 0 0 0 0 0];

Properties{373,1} = 'pressure';
Properties{373,2} = 'millimeter of mercury';
Properties{373,3} = ckSym('mmHg');
Properties{373,4} = 'mmHg';
Properties{373,5} = '133.3224*kg^1*m^-1*s^-2';
Properties{373,6} = 0;
dims(373,:) = [-1 1 -2 0 0 0 0 0];

Properties{374,1} = 'pressure';
Properties{374,2} = 'millimeter of water (3.98 °C)';
Properties{374,3} = ckSym('mmH2O');
Properties{374,4} = 'mmH2O';
Properties{374,5} = '9.80638*kg^1*m^-1*s^-2';
Properties{374,6} = 0;
dims(374,:) = [-1 1 -2 0 0 0 0 0];

Properties{375,1} = 'pressure';
Properties{375,2} = 'pascal';
Properties{375,3} = ckSym('Pa');
Properties{375,4} = 'Pa';
Properties{375,5} = '1*kg^1*m^-1*s^-2';
Properties{375,6} = 0;
dims(375,:) = [-1 1 -2 0 0 0 0 0];

Properties{376,1} = 'pressure';
Properties{376,2} = 'pièze (mts unit)';
Properties{376,3} = ckSym('pz');
Properties{376,4} = 'pz';
Properties{376,5} = '1e3*kg^1*m^-1*s^-2';
Properties{376,6} = 0;
dims(376,:) = [-1 1 -2 0 0 0 0 0];

Properties{377,1} = 'pressure';
Properties{377,2} = 'pound per square foot';
Properties{377,3} = ckSym('psf');
Properties{377,4} = 'psf';
Properties{377,5} = '47.88026*kg^1*m^-1*s^-2';
Properties{377,6} = 0;
dims(377,:) = [-1 1 -2 0 0 0 0 0];

Properties{378,1} = 'pressure';
Properties{378,2} = 'pound per square inch';
Properties{378,3} = ckSym('psi');
Properties{378,4} = 'psi';
Properties{378,5} = '6.894757e3*kg^1*m^-1*s^-2';
Properties{378,6} = 0;
dims(378,:) = [-1 1 -2 0 0 0 0 0];

Properties{379,1} = 'pressure';
Properties{379,2} = 'poundal per square foot';
Properties{379,3} = ckSym('pdl_p_ft2');
Properties{379,4} = 'pdl_p_ft2';
Properties{379,5} = '1.488164*kg^1*m^-1*s^-2';
Properties{379,6} = 0;
dims(379,:) = [-1 1 -2 0 0 0 0 0];

Properties{380,1} = 'pressure';
Properties{380,2} = 'short ton per square foot';
Properties{380,3} = ckSym('tspsf');
Properties{380,4} = 'tspsf';
Properties{380,5} = '95.760518e3*kg^1*m^-1*s^-2';
Properties{380,6} = 0;
dims(380,:) = [-1 1 -2 0 0 0 0 0];

Properties{381,1} = 'pressure';
Properties{381,2} = 'torr';
Properties{381,3} = ckSym('torr');
Properties{381,4} = 'torr';
Properties{381,5} = '133.3224*kg^1*m^-1*s^-2';
Properties{381,6} = 0;
dims(381,:) = [-1 1 -2 0 0 0 0 0];

Properties{382,1} = 'torque';
Properties{382,2} = 'foot-pound force';
Properties{382,3} = ckSym('lbf_X_ft');
Properties{382,4} = 'lbf_X_ft';
Properties{382,5} = '1.3558179483314004*kg^1*m^2*s^-2';
Properties{382,6} = 0;
dims(382,:) = [2 1 -2 0 0 0 0 0];

Properties{383,1} = 'torque';
Properties{383,2} = 'foot-poundal';
Properties{383,3} = ckSym('pdl_X_ft');
Properties{383,4} = 'pdl_X_ft';
Properties{383,5} = '4.21401100938048e-2*kg^1*m^2*s^-2';
Properties{383,6} = 0;
dims(383,:) = [2 1 -2 0 0 0 0 0];

Properties{384,1} = 'torque';
Properties{384,2} = 'inch-pound force';
Properties{384,3} = ckSym('lbf_X_in');
Properties{384,4} = 'lbf_X_in';
Properties{384,5} = '0.1129848290276167*kg^1*m^2*s^-2';
Properties{384,6} = 0;
dims(384,:) = [2 1 -2 0 0 0 0 0];

Properties{385,1} = 'torque';
Properties{385,2} = 'meter kilogram';
Properties{385,3} = ckSym('m_kg');
Properties{385,4} = 'm_kg';
Properties{385,5} = '0.101971621*kg^1*m^2*s^-2';
Properties{385,6} = 0;
dims(385,:) = [2 1 -2 0 0 0 0 0];

Properties{386,1} = 'torque';
Properties{386,2} = 'Newton meter';
Properties{386,3} = ckSym('N_X_m');
Properties{386,4} = 'N_X_m';
Properties{386,5} = '1*kg^1*m^2*s^-2';
Properties{386,6} = 0;
dims(386,:) = [2 1 -2 0 0 0 0 0];

Properties{387,1} = 'energy';
Properties{387,2} = 'barrel of oil equivalent';
Properties{387,3} = ckSym('bboe');
Properties{387,4} = 'bboe';
Properties{387,5} = '6.12e9*kg^1*m^2*s^-2';
Properties{387,6} = 0;
dims(387,:) = [2 1 -2 0 0 0 0 0];

Properties{388,1} = 'energy';
Properties{388,2} = 'British thermal unit (ISO)';
Properties{388,3} = ckSym('BTUISO');
Properties{388,4} = 'BTUISO';
Properties{388,5} = '1.0545e3*kg^1*m^2*s^-2';
Properties{388,6} = 0;
dims(388,:) = [2 1 -2 0 0 0 0 0];

Properties{389,1} = 'energy';
Properties{389,2} = 'British thermal unit (International Table)';
Properties{389,3} = ckSym('BTUIT');
Properties{389,4} = 'BTUIT';
Properties{389,5} = '1.05505585262e3*kg^1*m^2*s^-2';
Properties{389,6} = 0;
dims(389,:) = [2 1 -2 0 0 0 0 0];

Properties{390,1} = 'energy';
Properties{390,2} = 'British thermal unit (mean)';
Properties{390,3} = ckSym('BTUmean');
Properties{390,4} = 'BTUmean';
Properties{390,5} = '1.05587e3*kg^1*m^2*s^-2';
Properties{390,6} = 0;
dims(390,:) = [2 1 -2 0 0 0 0 0];

Properties{391,1} = 'energy';
Properties{391,2} = 'British thermal unit (thermochemical)';
Properties{391,3} = ckSym('BTUth');
Properties{391,4} = 'BTUth';
Properties{391,5} = '1.054350e3*kg^1*m^2*s^-2';
Properties{391,6} = 0;
dims(391,:) = [2 1 -2 0 0 0 0 0];

Properties{392,1} = 'energy';
Properties{392,2} = 'British thermal unit (39 °F)';
Properties{392,3} = ckSym('BTU39F');
Properties{392,4} = 'BTU39F';
Properties{392,5} = '1.05967e3*kg^1*m^2*s^-2';
Properties{392,6} = 0;
dims(392,:) = [2 1 -2 0 0 0 0 0];

Properties{393,1} = 'energy';
Properties{393,2} = 'British thermal unit (59 °F)';
Properties{393,3} = ckSym('BTU59F');
Properties{393,4} = 'BTU59F';
Properties{393,5} = '1.054804e3*kg^1*m^2*s^-2';
Properties{393,6} = 0;
dims(393,:) = [2 1 -2 0 0 0 0 0];

Properties{394,1} = 'energy';
Properties{394,2} = 'British thermal unit (60 °F)';
Properties{394,3} = ckSym('BTU60F');
Properties{394,4} = 'BTU60F';
Properties{394,5} = '1.05468e3*kg^1*m^2*s^-2';
Properties{394,6} = 0;
dims(394,:) = [2 1 -2 0 0 0 0 0];

Properties{395,1} = 'energy';
Properties{395,2} = 'British thermal unit (63 °F)';
Properties{395,3} = ckSym('BTU63F');
Properties{395,4} = 'BTU63F';
Properties{395,5} = '1.0546e3*kg^1*m^2*s^-2';
Properties{395,6} = 0;
dims(395,:) = [2 1 -2 0 0 0 0 0];

Properties{396,1} = 'energy';
Properties{396,2} = 'calorie (International Table)';
Properties{396,3} = ckSym('calIT');
Properties{396,4} = 'calIT';
Properties{396,5} = '4.1868*kg^1*m^2*s^-2';
Properties{396,6} = 0;
dims(396,:) = [2 1 -2 0 0 0 0 0];

Properties{397,1} = 'energy';
Properties{397,2} = 'calorie (mean)';
Properties{397,3} = ckSym('calmean');
Properties{397,4} = 'calmean';
Properties{397,5} = '4.19002*kg^1*m^2*s^-2';
Properties{397,6} = 0;
dims(397,:) = [2 1 -2 0 0 0 0 0];

Properties{398,1} = 'energy';
Properties{398,2} = 'calorie (thermochemical)';
Properties{398,3} = ckSym('calth');
Properties{398,4} = 'calth';
Properties{398,5} = '4.184*kg^1*m^2*s^-2';
Properties{398,6} = 0;
dims(398,:) = [2 1 -2 0 0 0 0 0];

Properties{399,1} = 'energy';
Properties{399,2} = 'calorie (3.98 °C)';
Properties{399,3} = ckSym('cal3_98C');
Properties{399,4} = 'cal3.98C';
Properties{399,5} = '4.2045*kg^1*m^2*s^-2';
Properties{399,6} = 0;
dims(399,:) = [2 1 -2 0 0 0 0 0];

Properties{400,1} = 'energy';
Properties{400,2} = 'calorie (15 °C)';
Properties{400,3} = ckSym('cal15C');
Properties{400,4} = 'cal15C';
Properties{400,5} = '4.1855*kg^1*m^2*s^-2';
Properties{400,6} = 0;
dims(400,:) = [2 1 -2 0 0 0 0 0];

Properties{401,1} = 'energy';
Properties{401,2} = 'calorie (20 °C)';
Properties{401,3} = ckSym('cal20C');
Properties{401,4} = 'cal20C';
Properties{401,5} = '4.1819*kg^1*m^2*s^-2';
Properties{401,6} = 0;
dims(401,:) = [2 1 -2 0 0 0 0 0];

Properties{402,1} = 'energy';
Properties{402,2} = 'Celsius heat unit (International Table)';
Properties{402,3} = ckSym('CHUIT');
Properties{402,4} = 'CHUIT';
Properties{402,5} = '1.899100534716e3*kg^1*m^2*s^-2';
Properties{402,6} = 0;
dims(402,:) = [2 1 -2 0 0 0 0 0];

Properties{403,1} = 'energy';
Properties{403,2} = 'cubic centimeter of atmosphere; standard cubic centimeter';
Properties{403,3} = ckSym('scc');
Properties{403,4} = 'scc';
Properties{403,5} = '0.101325*kg^1*m^2*s^-2';
Properties{403,6} = 0;
dims(403,:) = [2 1 -2 0 0 0 0 0];

Properties{404,1} = 'energy';
Properties{404,2} = 'cubic foot of atmosphere; standard cubic foot';
Properties{404,3} = ckSym('scf');
Properties{404,4} = 'scf';
Properties{404,5} = '2.8692044809344e3*kg^1*m^2*s^-2';
Properties{404,6} = 0;
dims(404,:) = [2 1 -2 0 0 0 0 0];

Properties{405,1} = 'energy';
Properties{405,2} = 'cubic foot of natural gas';
Properties{405,3} = ckSym('ft3_CH4');
Properties{405,4} = 'ft3_CH4';
Properties{405,5} = '1.05505585262e6*kg^1*m^2*s^-2';
Properties{405,6} = 0;
dims(405,:) = [2 1 -2 0 0 0 0 0];

Properties{406,1} = 'energy';
Properties{406,2} = 'cubic yard of atmosphere; standard cubic yard';
Properties{406,3} = ckSym('scy');
Properties{406,4} = 'scy';
Properties{406,5} = '77.4685209852288e3*kg^1*m^2*s^-2';
Properties{406,6} = 0;
dims(406,:) = [2 1 -2 0 0 0 0 0];

Properties{407,1} = 'energy';
Properties{407,2} = 'electronvolt';
Properties{407,3} = ckSym('eV');
Properties{407,4} = 'eV';
Properties{407,5} = '1.60217733e-19*kg^1*m^2*s^-2';
Properties{407,6} = 0;
dims(407,:) = [2 1 -2 0 0 0 0 0];

Properties{408,1} = 'energy';
Properties{408,2} = 'erg';
Properties{408,3} = ckSym('erg');
Properties{408,4} = 'erg';
Properties{408,5} = '1e-7*kg^1*m^2*s^-2';
Properties{408,6} = 0;
dims(408,:) = [2 1 -2 0 0 0 0 0];

Properties{409,1} = 'energy';
Properties{409,2} = 'foot-pound force';
Properties{409,3} = ckSym('ft_X_lbf');
Properties{409,4} = 'ft_X_lbf';
Properties{409,5} = '1.3558179483314004*kg^1*m^2*s^-2';
Properties{409,6} = 0;
dims(409,:) = [2 1 -2 0 0 0 0 0];

Properties{410,1} = 'energy';
Properties{410,2} = 'foot-poundal';
Properties{410,3} = ckSym('ft_X_pdl');
Properties{410,4} = 'ft_X_pdl';
Properties{410,5} = '4.21401100938048e-2*kg^1*m^2*s^-2';
Properties{410,6} = 0;
dims(410,:) = [2 1 -2 0 0 0 0 0];

Properties{411,1} = 'energy';
Properties{411,2} = 'gallon-atmosphere (imperial)';
Properties{411,3} = ckSym('gal_X_atm_Imp');
Properties{411,4} = 'gal_X_atm_Imp';
Properties{411,5} = '460.63256925*kg^1*m^2*s^-2';
Properties{411,6} = 0;
dims(411,:) = [2 1 -2 0 0 0 0 0];

Properties{412,1} = 'energy';
Properties{412,2} = 'gallon-atmosphere (US)';
Properties{412,3} = ckSym('US_gal_atm');
Properties{412,4} = 'US_gal_atm';
Properties{412,5} = '383.5568490138*kg^1*m^2*s^-2';
Properties{412,6} = 0;
dims(412,:) = [2 1 -2 0 0 0 0 0];

Properties{413,1} = 'energy';
Properties{413,2} = 'hartree, atomic unit of energy';
Properties{413,3} = ckSym('Eh');
Properties{413,4} = 'Eh';
Properties{413,5} = '4.359744e-18*kg^1*m^2*s^-2';
Properties{413,6} = 0;
dims(413,:) = [2 1 -2 0 0 0 0 0];

Properties{414,1} = 'energy';
Properties{414,2} = 'horsepower-hour';
Properties{414,3} = ckSym('hp_X_h');
Properties{414,4} = 'hp_X_h';
Properties{414,5} = '2.684519537696172792e6*kg^1*m^2*s^-2';
Properties{414,6} = 0;
dims(414,:) = [2 1 -2 0 0 0 0 0];

Properties{415,1} = 'energy';
Properties{415,2} = 'inch-pound force';
Properties{415,3} = ckSym('in_X_lbf');
Properties{415,4} = 'in_X_lbf';
Properties{415,5} = '0.1129848290276167*kg^1*m^2*s^-2';
Properties{415,6} = 0;
dims(415,:) = [2 1 -2 0 0 0 0 0];

Properties{416,1} = 'energy';
Properties{416,2} = 'joule';
Properties{416,3} = ckSym('J');
Properties{416,4} = 'J';
Properties{416,5} = '1*kg^1*m^2*s^-2';
Properties{416,6} = 0;
dims(416,:) = [2 1 -2 0 0 0 0 0];

Properties{417,1} = 'energy';
Properties{417,2} = 'kilocalorie; large calorie';
Properties{417,3} = ckSym('kcal');
Properties{417,4} = 'kcal';
Properties{417,5} = '4.1868e3*kg^1*m^2*s^-2';
Properties{417,6} = 0;
dims(417,:) = [2 1 -2 0 0 0 0 0];

Properties{418,1} = 'energy';
Properties{418,2} = 'kilowatt-hour; Board of Trade Unit';
Properties{418,3} = ckSym('kW_X_h_BOTU');
Properties{418,4} = 'kW_X_h_BOTU';
Properties{418,5} = '3.6e6*kg^1*m^2*s^-2';
Properties{418,6} = 0;
dims(418,:) = [2 1 -2 0 0 0 0 0];

Properties{419,1} = 'energy';
Properties{419,2} = 'litre-atmosphere';
Properties{419,3} = ckSym('sl');
Properties{419,4} = 'sl';
Properties{419,5} = '101.325*kg^1*m^2*s^-2';
Properties{419,6} = 0;
dims(419,:) = [2 1 -2 0 0 0 0 0];

Properties{420,1} = 'energy';
Properties{420,2} = 'quad';
Properties{420,3} = ckSym('quad');
Properties{420,4} = 'quad';
Properties{420,5} = '1.05505585262e18*kg^1*m^2*s^-2';
Properties{420,6} = 0;
dims(420,:) = [2 1 -2 0 0 0 0 0];

Properties{421,1} = 'energy';
Properties{421,2} = 'rydberg';
Properties{421,3} = ckSym('Ry');
Properties{421,4} = 'Ry';
Properties{421,5} = '2.179872e-18*kg^1*m^2*s^-2';
Properties{421,6} = 0;
dims(421,:) = [2 1 -2 0 0 0 0 0];

Properties{422,1} = 'energy';
Properties{422,2} = 'therm (E.C.)';
Properties{422,3} = ckSym('therm_EC');
Properties{422,4} = 'therm_EC';
Properties{422,5} = '105.505585262e6*kg^1*m^2*s^-2';
Properties{422,6} = 0;
dims(422,:) = [2 1 -2 0 0 0 0 0];

Properties{423,1} = 'energy';
Properties{423,2} = 'therm (US)';
Properties{423,3} = ckSym('therm_US');
Properties{423,4} = 'therm_US';
Properties{423,5} = '105.4804e6*kg^1*m^2*s^-2';
Properties{423,6} = 0;
dims(423,:) = [2 1 -2 0 0 0 0 0];

Properties{424,1} = 'energy';
Properties{424,2} = 'thermie';
Properties{424,3} = ckSym('th');
Properties{424,4} = 'th';
Properties{424,5} = '4.1868e6*kg^1*m^2*s^-2';
Properties{424,6} = 0;
dims(424,:) = [2 1 -2 0 0 0 0 0];

Properties{425,1} = 'energy';
Properties{425,2} = 'ton of coal equivalent';
Properties{425,3} = ckSym('TCE');
Properties{425,4} = 'TCE';
Properties{425,5} = '29.3076e9*kg^1*m^2*s^-2';
Properties{425,6} = 0;
dims(425,:) = [2 1 -2 0 0 0 0 0];

Properties{426,1} = 'energy';
Properties{426,2} = 'ton of oil equivalent';
Properties{426,3} = ckSym('TOE');
Properties{426,4} = 'TOE';
Properties{426,5} = '41.868e9*kg^1*m^2*s^-2';
Properties{426,6} = 0;
dims(426,:) = [2 1 -2 0 0 0 0 0];

Properties{427,1} = 'energy';
Properties{427,2} = 'ton of TNT';
Properties{427,3} = ckSym('tTNT');
Properties{427,4} = 'tTNT';
Properties{427,5} = '4.184e9*kg^1*m^2*s^-2';
Properties{427,6} = 0;
dims(427,:) = [2 1 -2 0 0 0 0 0];

Properties{428,1} = 'power';
Properties{428,2} = 'atmosphere-cubic centimeter per minute';
Properties{428,3} = ckSym('atm_X_ccm');
Properties{428,4} = 'atm_X_ccm';
Properties{428,5} = '1.68875e-3*kg^1*m^2*s^-3';
Properties{428,6} = 0;
dims(428,:) = [2 1 -3 0 0 0 0 0];

Properties{429,1} = 'power';
Properties{429,2} = 'atmosphere-cubic centimeter per second';
Properties{429,3} = ckSym('atm_X_ccs');
Properties{429,4} = 'atm_X_ccs';
Properties{429,5} = '0.101325*kg^1*m^2*s^-3';
Properties{429,6} = 0;
dims(429,:) = [2 1 -3 0 0 0 0 0];

Properties{430,1} = 'power';
Properties{430,2} = 'atmosphere-cubic foot per hour';
Properties{430,3} = ckSym('atm_X_cfh');
Properties{430,4} = 'atm_X_cfh';
Properties{430,5} = '0.797001244704*kg^1*m^2*s^-3';
Properties{430,6} = 0;
dims(430,:) = [2 1 -3 0 0 0 0 0];

Properties{431,1} = 'power';
Properties{431,2} = 'atmosphere-cubic foot per minute';
Properties{431,3} = ckSym('atm_X_cfm');
Properties{431,4} = 'atm_X_cfm';
Properties{431,5} = '47.82007468224*kg^1*m^2*s^-3';
Properties{431,6} = 0;
dims(431,:) = [2 1 -3 0 0 0 0 0];

Properties{432,1} = 'power';
Properties{432,2} = 'atmosphere-cubic foot per second';
Properties{432,3} = ckSym('atm_X_cfs');
Properties{432,4} = 'atm_X_cfs';
Properties{432,5} = '2.8692044809344e3*kg^1*m^2*s^-3';
Properties{432,6} = 0;
dims(432,:) = [2 1 -3 0 0 0 0 0];

Properties{433,1} = 'power';
Properties{433,2} = 'BTU (International Table) per hour';
Properties{433,3} = ckSym('BTUIT_p_h');
Properties{433,4} = 'BTUIT_p_h';
Properties{433,5} = '0.293071*kg^1*m^2*s^-3';
Properties{433,6} = 0;
dims(433,:) = [2 1 -3 0 0 0 0 0];

Properties{434,1} = 'power';
Properties{434,2} = 'BTU (International Table) per minute';
Properties{434,3} = ckSym('BTUIT_p_min');
Properties{434,4} = 'BTUIT_p_min';
Properties{434,5} = '17.584264*kg^1*m^2*s^-3';
Properties{434,6} = 0;
dims(434,:) = [2 1 -3 0 0 0 0 0];

Properties{435,1} = 'power';
Properties{435,2} = 'BTU (International Table) per second';
Properties{435,3} = ckSym('BTUIT_p_s');
Properties{435,4} = 'BTUIT_p_s';
Properties{435,5} = '1.05505585262e3*kg^1*m^2*s^-3';
Properties{435,6} = 0;
dims(435,:) = [2 1 -3 0 0 0 0 0];

Properties{436,1} = 'power';
Properties{436,2} = 'calorie (International Table) per second';
Properties{436,3} = ckSym('calIT_p_s');
Properties{436,4} = 'calIT_p_s';
Properties{436,5} = '4.1868*kg^1*m^2*s^-3';
Properties{436,6} = 0;
dims(436,:) = [2 1 -3 0 0 0 0 0];

Properties{437,1} = 'power';
Properties{437,2} = 'foot-pound-force per hour';
Properties{437,3} = ckSym('ft_X_lbf_p_h');
Properties{437,4} = 'ft_X_lbf_p_h';
Properties{437,5} = '3.766161e-4*kg^1*m^2*s^-3';
Properties{437,6} = 0;
dims(437,:) = [2 1 -3 0 0 0 0 0];

Properties{438,1} = 'power';
Properties{438,2} = 'foot-pound-force per minute';
Properties{438,3} = ckSym('ft_X_lbf_p_min');
Properties{438,4} = 'ft_X_lbf_p_min';
Properties{438,5} = '2.259696580552334e-2*kg^1*m^2*s^-3';
Properties{438,6} = 0;
dims(438,:) = [2 1 -3 0 0 0 0 0];

Properties{439,1} = 'power';
Properties{439,2} = 'foot-pound-force per second';
Properties{439,3} = ckSym('ft_X_lbf_p_s');
Properties{439,4} = 'ft_X_lbf_p_s';
Properties{439,5} = '1.3558179483314004*kg^1*m^2*s^-3';
Properties{439,6} = 0;
dims(439,:) = [2 1 -3 0 0 0 0 0];

Properties{440,1} = 'power';
Properties{440,2} = 'horsepower (boiler)';
Properties{440,3} = ckSym('bhp');
Properties{440,4} = 'bhp';
Properties{440,5} = '9.810657e3*kg^1*m^2*s^-3';
Properties{440,6} = 0;
dims(440,:) = [2 1 -3 0 0 0 0 0];

Properties{441,1} = 'power';
Properties{441,2} = 'horsepower (European electrical)';
Properties{441,3} = ckSym('hp_E,EU');
Properties{441,4} = 'hp_E,EU';
Properties{441,5} = '736*kg^1*m^2*s^-3';
Properties{441,6} = 0;
dims(441,:) = [2 1 -3 0 0 0 0 0];

Properties{442,1} = 'power';
Properties{442,2} = 'horsepower (imperial electrical)';
Properties{442,3} = ckSym('hp_E,Imp');
Properties{442,4} = 'hp_E,Imp';
Properties{442,5} = '746*kg^1*m^2*s^-3';
Properties{442,6} = 0;
dims(442,:) = [2 1 -3 0 0 0 0 0];

Properties{443,1} = 'power';
Properties{443,2} = 'horsepower (imperial mechanical)';
Properties{443,3} = ckSym('hp_M,Imp');
Properties{443,4} = 'hp_M,Imp';
Properties{443,5} = '745.69987158227022*kg^1*m^2*s^-3';
Properties{443,6} = 0;
dims(443,:) = [2 1 -3 0 0 0 0 0];

Properties{444,1} = 'power';
Properties{444,2} = 'horsepower (metric)';
Properties{444,3} = ckSym('hp_met');
Properties{444,4} = 'hp_met';
Properties{444,5} = '735.49875*kg^1*m^2*s^-3';
Properties{444,6} = 0;
dims(444,:) = [2 1 -3 0 0 0 0 0];

Properties{445,1} = 'power';
Properties{445,2} = 'litre-atmosphere per minute';
Properties{445,3} = ckSym('L_X_atm_p_min');
Properties{445,4} = 'L_X_atm_p_min';
Properties{445,5} = '1.68875*kg^1*m^2*s^-3';
Properties{445,6} = 0;
dims(445,:) = [2 1 -3 0 0 0 0 0];

Properties{446,1} = 'power';
Properties{446,2} = 'litre-atmosphere per second';
Properties{446,3} = ckSym('L_X_atm_p_s');
Properties{446,4} = 'L_X_atm_p_s';
Properties{446,5} = '101.325*kg^1*m^2*s^-3';
Properties{446,6} = 0;
dims(446,:) = [2 1 -3 0 0 0 0 0];

Properties{447,1} = 'power';
Properties{447,2} = 'lusec';
Properties{447,3} = ckSym('lsec');
Properties{447,4} = 'lsec';
Properties{447,5} = '1.333e-4*kg^1*m^2*s^-3';
Properties{447,6} = 0;
dims(447,:) = [2 1 -3 0 0 0 0 0];

Properties{448,1} = 'power';
Properties{448,2} = 'poncelet';
Properties{448,3} = ckSym('p');
Properties{448,4} = 'p';
Properties{448,5} = '980.665*kg^1*m^2*s^-3';
Properties{448,6} = 0;
dims(448,:) = [2 1 -3 0 0 0 0 0];

Properties{449,1} = 'power';
Properties{449,2} = 'square foot equivalent direct radiation';
Properties{449,3} = ckSym('ft2_EDR');
Properties{449,4} = 'ft2_EDR';
Properties{449,5} = '70.337057*kg^1*m^2*s^-3';
Properties{449,6} = 0;
dims(449,:) = [2 1 -3 0 0 0 0 0];

Properties{450,1} = 'power';
Properties{450,2} = 'ton of air conditioning';
Properties{450,3} = ckSym('ton_ac');
Properties{450,4} = 'ton_ac';
Properties{450,5} = '3504*kg^1*m^2*s^-3';
Properties{450,6} = 0;
dims(450,:) = [2 1 -3 0 0 0 0 0];

Properties{451,1} = 'power';
Properties{451,2} = 'ton of refrigeration (imperial)';
Properties{451,3} = ckSym('ton_re_Imp');
Properties{451,4} = 'ton_re_Imp';
Properties{451,5} = '3.938875e3*kg^1*m^2*s^-3';
Properties{451,6} = 0;
dims(451,:) = [2 1 -3 0 0 0 0 0];

Properties{452,1} = 'power';
Properties{452,2} = 'ton of refrigeration (IT)';
Properties{452,3} = ckSym('ton_re_US');
Properties{452,4} = 'ton_re_US';
Properties{452,5} = '3.516853e3*kg^1*m^2*s^-3';
Properties{452,6} = 0;
dims(452,:) = [2 1 -3 0 0 0 0 0];

Properties{453,1} = 'power';
Properties{453,2} = 'watt';
Properties{453,3} = ckSym('W');
Properties{453,4} = 'W';
Properties{453,5} = '1*kg^1*m^2s^-3';
Properties{453,6} = 0;
dims(453,:) = [2 1 -3 0 0 0 0 0];

Properties{454,1} = 'action, atomic';
Properties{454,2} = 'atomic unit of action';
Properties{454,3} = ckSym('au');
Properties{454,4} = 'au';
Properties{454,5} = '1.05457168e-34*kg^1*m^2*s^-1';
Properties{454,6} = 0;
dims(454,:) = [2 1 -1 0 0 0 0 0];

Properties{455,1} = 'viscosity, dynamic';
Properties{455,2} = 'pascal second';
Properties{455,3} = ckSym('Pa_X_s');
Properties{455,4} = 'Pa_X_s';
Properties{455,5} = '1*kg^1*m^-1*s^-1';
Properties{455,6} = 0;
dims(455,:) = [-1 1 -1 0 0 0 0 0];

Properties{456,1} = 'viscosity, dynamic';
Properties{456,2} = 'poise';
Properties{456,3} = ckSym('P');
Properties{456,4} = 'P';
Properties{456,5} = '0.1*kg^1*m^-1*s^-1';
Properties{456,6} = 0;
dims(456,:) = [-1 1 -1 0 0 0 0 0];

Properties{457,1} = 'viscosity, dynamic';
Properties{457,2} = 'pound per foot hour';
Properties{457,3} = ckSym('lb_p__ft*h');
Properties{457,4} = 'lb_p__ft*h';
Properties{457,5} = '4.133789e-4*kg^1*m^-1*s^-1';
Properties{457,6} = 0;
dims(457,:) = [-1 1 -1 0 0 0 0 0];

Properties{458,1} = 'viscosity, dynamic';
Properties{458,2} = 'pound per foot second';
Properties{458,3} = ckSym('lb_p__ft_X_s');
Properties{458,4} = 'lb_p__ft_X_s';
Properties{458,5} = '1.488164*kg^1*m^-1*s^-1';
Properties{458,6} = 0;
dims(458,:) = [-1 1 -1 0 0 0 0 0];

Properties{459,1} = 'viscosity, dynamic';
Properties{459,2} = 'pound-force second per square foot';
Properties{459,3} = ckSym('lbf_X_s_p_ft2');
Properties{459,4} = 'lbf_X_s_p_ft2';
Properties{459,5} = '47.88026*kg^1*m^-1*s^-1';
Properties{459,6} = 0;
dims(459,:) = [-1 1 -1 0 0 0 0 0];

Properties{460,1} = 'viscosity, dynamic';
Properties{460,2} = 'pound-force second per square inch';
Properties{460,3} = ckSym('lbf_X_s_p_in2');
Properties{460,4} = 'lbf_X_s_p_in2';
Properties{460,5} = '6,894.757*kg^1*m^-1*s^-1';
Properties{460,6} = 0;
dims(460,:) = [-1 1 -1 0 0 0 0 0];

Properties{461,1} = 'viscosity, kinematic';
Properties{461,2} = 'square foot per second';
Properties{461,3} = ckSym('ft2_p_s');
Properties{461,4} = 'ft2_p_s';
Properties{461,5} = '0.09290304*m^2*s^-1';
Properties{461,6} = 0;
dims(461,:) = [2 0 -1 0 0 0 0 0];

Properties{462,1} = 'viscosity, kinematic';
Properties{462,2} = 'square meter per second';
Properties{462,3} = ckSym('m2_p_s');
Properties{462,4} = 'm2_p_s';
Properties{462,5} = '1*m^2*s^-1';
Properties{462,6} = 0;
dims(462,:) = [2 0 -1 0 0 0 0 0];

Properties{463,1} = 'viscosity, kinematic';
Properties{463,2} = 'stokes';
Properties{463,3} = ckSym('St');
Properties{463,4} = 'St';
Properties{463,5} = '1e-4*m^2*s^-1';
Properties{463,6} = 0;
dims(463,:) = [2 0 -1 0 0 0 0 0];

Properties{464,1} = 'current, electric';
Properties{464,2} = 'electromagnetic unit; abampere';
Properties{464,3} = ckSym('abamp');
Properties{464,4} = 'abamp';
Properties{464,5} = '10*A^1';
Properties{464,6} = 0;
dims(464,:) = [0 0 0 1 0 0 0 0];

Properties{465,1} = 'current, electric';
Properties{465,2} = 'esu per second; statampere';
Properties{465,3} = ckSym('esu_p_s');
Properties{465,4} = 'esu_p_s';
Properties{465,5} = '3.335641e-10*A^1';
Properties{465,6} = 0;
dims(465,:) = [0 0 0 1 0 0 0 0];

Properties{466,1} = 'charge, electric';
Properties{466,2} = 'abcoulomb; electromagnetic unit';
Properties{466,3} = ckSym('abC;_emu');
Properties{466,4} = 'abC;_emu';
Properties{466,5} = '10*A^1*s^1';
Properties{466,6} = 0;
dims(466,:) = [0 0 1 1 0 0 0 0];

Properties{467,1} = 'charge, electric';
Properties{467,2} = 'atomic unit of charge';
Properties{467,3} = ckSym('au');
Properties{467,4} = 'au';
Properties{467,5} = '1.602176462e-19*A^1*s^1';
Properties{467,6} = 0;
dims(467,:) = [0 0 1 1 0 0 0 0];

Properties{468,1} = 'charge, electric';
Properties{468,2} = 'coulomb';
Properties{468,3} = ckSym('C');
Properties{468,4} = 'C';
Properties{468,5} = '1*A^1*s^1';
Properties{468,6} = 0;
dims(468,:) = [0 0 1 1 0 0 0 0];

Properties{469,1} = 'charge, electric';
Properties{469,2} = 'faraday';
Properties{469,3} = ckSym('Fdy');
Properties{469,4} = 'Fdy';
Properties{469,5} = '96485.3383*A^1*s^1';
Properties{469,6} = 0;
dims(469,:) = [0 0 1 1 0 0 0 0];

Properties{470,1} = 'charge, electric';
Properties{470,2} = 'statcoulomb; franklin; electrostatic unit';
Properties{470,3} = ckSym('statC');
Properties{470,4} = 'statC';
Properties{470,5} = '3.335641e-10*A^1*s^1';
Properties{470,6} = 0;
dims(470,:) = [0 0 1 1 0 0 0 0];

Properties{471,1} = 'dipole, electric';
Properties{471,2} = 'atomic unit of electric dipole moment';
Properties{471,3} = ckSym('ea0');
Properties{471,4} = 'ea0';
Properties{471,5} = '8.47835281e-30*A^1*s^1*m^1';
Properties{471,6} = 0;
dims(471,:) = [1 0 1 1 0 0 0 0];

Properties{472,1} = 'dipole, electric';
Properties{472,2} = 'coulomb meter';
Properties{472,3} = ckSym('C_X_m');
Properties{472,4} = 'C_X_m';
Properties{472,5} = '1*A^1*s^1**m^1';
Properties{472,6} = 0;
dims(472,:) = [1 0 1 1 0 0 0 0];

Properties{473,1} = 'dipole, electric';
Properties{473,2} = 'debye';
Properties{473,3} = ckSym('D');
Properties{473,4} = 'D';
Properties{473,5} = '3.33564095e-30*A^1*s^1*m^1';
Properties{473,6} = 0;
dims(473,:) = [1 0 1 1 0 0 0 0];

Properties{474,1} = 'potential difference, electrical';
Properties{474,2} = 'abvolt';
Properties{474,3} = ckSym('abV');
Properties{474,4} = 'abV';
Properties{474,5} = '1e-8*kg^1*m^2*A^1*s^-3';
Properties{474,6} = 0;
dims(474,:) = [2 1 -3 1 0 0 0 0];

Properties{475,1} = 'potential difference, electrical';
Properties{475,2} = 'statvolt';
Properties{475,3} = ckSym('statV');
Properties{475,4} = 'statV';
Properties{475,5} = '299.792458*kg^1*m^2*A^1*s^-3';
Properties{475,6} = 0;
dims(475,:) = [2 1 -3 1 0 0 0 0];

Properties{476,1} = 'potential difference, electrical (voltage)';
Properties{476,2} = 'volt';
Properties{476,3} = ckSym('V');
Properties{476,4} = 'V';
Properties{476,5} = '1*kg^1*m^2*A^1*s^-3';
Properties{476,6} = 0;
dims(476,:) = [2 1 -3 1 0 0 0 0];

Properties{477,1} = 'resistance, electrical';
Properties{477,2} = 'ohm';
Properties{477,3} = ckSym('ohm');
Properties{477,4} = 'ohm';
Properties{477,5} = '1*kg^1*m^2*A^-2*s^-3';
Properties{477,6} = 0;
dims(477,:) = [2 1 -3 -2 0 0 0 0];

Properties{478,1} = 'capacitance, electrical';
Properties{478,2} = 'farad';
Properties{478,3} = ckSym('Frd');
Properties{478,4} = 'Frd';
Properties{478,5} = '1*A^2*s^4*kg^-1*m^-2';
Properties{478,6} = 0;
dims(478,:) = [-2 -1 4 2 0 0 0 0];

Properties{479,1} = 'flux, magnetic';
Properties{479,2} = 'maxwell';
Properties{479,3} = ckSym('Mx');
Properties{479,4} = 'Mx';
Properties{479,5} = '1e-8*kg^1*m^2*A^-1*s^-2';
Properties{479,6} = 0;
dims(479,:) = [2 1 -2 -1 0 0 0 0];

Properties{480,1} = 'flux, magnetic';
Properties{480,2} = 'weber';
Properties{480,3} = ckSym('Wb');
Properties{480,4} = 'Wb';
Properties{480,5} = '1*kg^1*m^2*A^-1*s^-2';
Properties{480,6} = 0;
dims(480,:) = [2 1 -2 -1 0 0 0 0];

Properties{481,1} = 'flux density, magnetic';
Properties{481,2} = 'gauss';
Properties{481,3} = ckSym('G');
Properties{481,4} = 'G';
Properties{481,5} = '1e-4*kg^1*A^-1*s^-2';
Properties{481,6} = 0;
dims(481,:) = [0 1 -2 -1 0 0 0 0];

Properties{482,1} = 'flux density, magnetic';
Properties{482,2} = 'tesla';
Properties{482,3} = ckSym('T');
Properties{482,4} = 'T';
Properties{482,5} = '1*kg^1*A^-1*s^-2';
Properties{482,6} = 0;
dims(482,:) = [0 1 -2 -1 0 0 0 0];

Properties{483,1} = 'inductance';
Properties{483,2} = 'henry';
Properties{483,3} = ckSym('H');
Properties{483,4} = 'H';
Properties{483,5} = '1*kg^1*m^2*A^-2*s^-2';
Properties{483,6} = 0;
dims(483,:) = [2 1 -2 -2 0 0 0 0];

Properties{484,1} = 'temperature, thermodynamic';
Properties{484,2} = 'degree Celsius';
Properties{484,3} = ckSym('degC');
Properties{484,4} = 'degC';
Properties{484,5} = '1*K^1';
Properties{484,6} = 273.15;
dims(484,:) = [0 0 0 0 1 0 0 0];

Properties{485,1} = 'temperature, thermodynamic';
Properties{485,2} = 'degree Fahrenheit';
Properties{485,3} = ckSym('degF');
Properties{485,4} = 'degF';
Properties{485,5} = '.555555555556*K^1';
Properties{485,6} = 459.67;
dims(485,:) = [0 0 0 0 1 0 0 0];

Properties{486,1} = 'temperature, thermodynamic';
Properties{486,2} = 'degree Rankine';
Properties{486,3} = ckSym('degR');
Properties{486,4} = 'degR';
Properties{486,5} = '.555555555556*K^1';
Properties{486,6} = 0;
dims(486,:) = [0 0 0 0 1 0 0 0];

Properties{487,1} = 'intensity, luminous';
Properties{487,2} = 'candlepower';
Properties{487,3} = ckSym('cp');
Properties{487,4} = 'cp';
Properties{487,5} = '1*cd^1';
Properties{487,6} = 0;
dims(487,:) = [0 0 0 0 0 0 1 0];

Properties{488,1} = 'luminance';
Properties{488,2} = 'candela per square foot';
Properties{488,3} = ckSym('cd_p_ft2');
Properties{488,4} = 'cd_p_ft2';
Properties{488,5} = '10.763910417*cd^1*m^-2';
Properties{488,6} = 0;
dims(488,:) = [-2 0 0 0 0 0 1 0];

Properties{489,1} = 'luminance';
Properties{489,2} = 'candela per square inch';
Properties{489,3} = ckSym('cd_p_in2');
Properties{489,4} = 'cd_p_in2';
Properties{489,5} = '1,550.0031*cd^1*m^-2';
Properties{489,6} = 0;
dims(489,:) = [-2 0 0 0 0 0 1 0];

Properties{490,1} = 'luminance';
Properties{490,2} = 'candela per square meter';
Properties{490,3} = ckSym('cd_p_m2');
Properties{490,4} = 'cd_p_m2';
Properties{490,5} = '1*cd^1*m^-2';
Properties{490,6} = 0;
dims(490,:) = [-2 0 0 0 0 0 1 0];

Properties{491,1} = 'luminance';
Properties{491,2} = 'footlambert';
Properties{491,3} = ckSym('fL');
Properties{491,4} = 'fL';
Properties{491,5} = '3.4262590996*cd^1*m^-2';
Properties{491,6} = 0;
dims(491,:) = [-2 0 0 0 0 0 1 0];

Properties{492,1} = 'luminance';
Properties{492,2} = 'lambert';
Properties{492,3} = ckSym('Lmbt');
Properties{492,4} = 'Lmbt';
Properties{492,5} = '3,183.0988618*cd^1*m^-2';
Properties{492,6} = 0;
dims(492,:) = [-2 0 0 0 0 0 1 0];

Properties{493,1} = 'luminance';
Properties{493,2} = 'stilb';
Properties{493,3} = ckSym('sb');
Properties{493,4} = 'sb';
Properties{493,5} = '1e4*cd^1*m^-2';
Properties{493,6} = 0;
dims(493,:) = [-2 0 0 0 0 0 1 0];

Properties{494,1} = 'flux, luminous';
Properties{494,2} = 'lumen';
Properties{494,3} = ckSym('lmn');
Properties{494,4} = 'lmn';
Properties{494,5} = '1*cd^1*m^2*m^-2';
Properties{494,6} = 0;
dims(494,:) = [-2 0 0 0 0 0 1 0];

Properties{495,1} = 'illumance';
Properties{495,2} = 'footcandle; lumen per square foot';
Properties{495,3} = ckSym('fc');
Properties{495,4} = 'fc';
Properties{495,5} = '10.763910417*cd^1*m^2*m^-2*m^-2';
Properties{495,6} = 0;
dims(495,:) = [-2 0 0 0 0 0 1 0];

Properties{496,1} = 'illumance';
Properties{496,2} = 'lumen per square inch';
Properties{496,3} = ckSym('lmn_p_in2');
Properties{496,4} = 'lmn_p_in2';
Properties{496,5} = '1,550.0031*cd^1*m^2*m^-2*m^-2';
Properties{496,6} = 0;
dims(496,:) = [-2 0 0 0 0 0 1 0];

Properties{497,1} = 'illumance';
Properties{497,2} = 'lux';
Properties{497,3} = ckSym('lx');
Properties{497,4} = 'lx';
Properties{497,5} = '1*cd^1*m^2*m^-2*m^-2';
Properties{497,6} = 0;
dims(497,:) = [-2 0 0 0 0 0 1 0];

Properties{498,1} = 'illumance';
Properties{498,2} = 'phot';
Properties{498,3} = ckSym('ph');
Properties{498,4} = 'ph';
Properties{498,5} = '1e4*cd^1*m^2*m^-2*m^-2';
Properties{498,6} = 0;
dims(498,:) = [-2 0 0 0 0 0 1 0];

Properties{499,1} = 'radiation, source activity';
Properties{499,2} = 'becquerel';
Properties{499,3} = ckSym('Bq');
Properties{499,4} = 'Bq';
Properties{499,5} = '1*s^-1';
Properties{499,6} = 0;
dims(499,:) = [0 0 -1 0 0 0 0 0];

Properties{500,1} = 'radiation, source activity';
Properties{500,2} = 'curie';
Properties{500,3} = ckSym('Ci');
Properties{500,4} = 'Ci';
Properties{500,5} = '3.7e10*s^-1';
Properties{500,6} = 0;
dims(500,:) = [0 0 -1 0 0 0 0 0];

Properties{501,1} = 'radiation, source activity';
Properties{501,2} = 'rutherford';
Properties{501,3} = ckSym('rfd');
Properties{501,4} = 'rfd';
Properties{501,5} = '1e6*s^-1';
Properties{501,6} = 0;
dims(501,:) = [0 0 -1 0 0 0 0 0];

Properties{502,1} = 'radiation, exposure';
Properties{502,2} = 'roentgen';
Properties{502,3} = ckSym('Rtgn');
Properties{502,4} = 'Rtgn';
Properties{502,5} = '2.58e-4*A^1*s^1*kg^-1';
Properties{502,6} = 0;
dims(502,:) = [0 -1 1 1 0 0 0 0];

Properties{503,1} = 'radiation, absorbed';
Properties{503,2} = 'gray';
Properties{503,3} = ckSym('Gy');
Properties{503,4} = 'Gy';
Properties{503,5} = '1*kg^1*m^2*s^-2*kg^-1';
Properties{503,6} = 0;
dims(503,:) = [2 -1 -2 0 0 0 0 0];

Properties{504,1} = 'radiation, absorbed';
Properties{504,2} = 'rad';
Properties{504,3} = ckSym('rad');
Properties{504,4} = 'rad';
Properties{504,5} = '0.01*kg^1*m^2*s^-2*kg^-1';
Properties{504,6} = 0;
dims(504,:) = [2 -1 -2 0 0 0 0 0];

Properties{505,1} = 'radiation, equivalent dose';
Properties{505,2} = 'Röntgen equivalent man';
Properties{505,3} = ckSym('rem');
Properties{505,4} = 'rem';
Properties{505,5} = '0.01*kg^1*m^2*s^-2*kg^-1';
Properties{505,6} = 0;
dims(505,:) = [2 -1 -2 0 0 0 0 0];

Properties{506,1} = 'radiation, equivalent dose';
Properties{506,2} = 'sievert';
Properties{506,3} = ckSym('Sv');
Properties{506,4} = 'Sv';
Properties{506,5} = '1*kg^1*m^2*s^-2*kg^-1';
Properties{506,6} = 0;
dims(506,:) = [2 -1 -2 0 0 0 0 0];

Properties{507,1} = 'jerk, jolt ';
Properties{507,2} = 'meter per second cubed ';
Properties{507,3} = ckSym('m_p_s3');
Properties{507,4} = 'm_p_s3';
Properties{507,5} = '1*m^1*s^-3';
Properties{507,6} = 0;
dims(507,:) = [1 0 -3 0 0 0 0 0];

Properties{508,1} = 'snap, jounce ';
Properties{508,2} = 'meter per quartic second ';
Properties{508,3} = ckSym('m_p_s4');
Properties{508,4} = 'm_p_s4';
Properties{508,5} = '1*m^1*s^-4';
Properties{508,6} = 0;
dims(508,:) = [1 0 -4 0 0 0 0 0];

Properties{509,1} = 'velocity, angular';
Properties{509,2} = 'radian per second ';
Properties{509,3} = ckSym('rad_p_s');
Properties{509,4} = 'rad_p_s';
Properties{509,5} = '1*m^1*m^-1*s^-1';
Properties{509,6} = 0;
dims(509,:) = [-1 0 -1 0 0 0 0 0];

Properties{510,1} = 'momentum (impulse )';
Properties{510,2} = 'newton second ';
Properties{510,3} = ckSym('N_X_s');
Properties{510,4} = 'N_X_s';
Properties{510,5} = '1*m^1*kg^1*s^-1';
Properties{510,6} = 0;
dims(510,:) = [1 1 -1 0 0 0 0 0];

Properties{511,1} = 'momentum, angular';
Properties{511,2} = 'newton meter second ';
Properties{511,3} = ckSym('N_X_m_X_s');
Properties{511,4} = 'N_X_m_X_s';
Properties{511,5} = '1*m^12*kg^1*s^-1';
Properties{511,6} = 0;
dims(511,:) = [1 1 -1 0 0 0 0 0];

Properties{512,1} = 'yank ';
Properties{512,2} = 'newton per second ';
Properties{512,3} = ckSym('N_p_s');
Properties{512,4} = 'N_p_s';
Properties{512,5} = '1*m^1*kg^1*s^-3';
Properties{512,6} = 0;
dims(512,:) = [1 1 -3 0 0 0 0 0];

Properties{513,1} = 'frequency, spatial (wavenumber)';
Properties{513,2} = 'reciprocal meter ';
Properties{513,3} = ckSym('p_m');
Properties{513,4} = 'p_m';
Properties{513,5} = '1*m^-1';
Properties{513,6} = 0;
dims(513,:) = [-1 0 0 0 0 0 0 0];

Properties{514,1} = 'density, mass, areal';
Properties{514,2} = 'kilogram per square meter ';
Properties{514,3} = ckSym('kg_p_m2');
Properties{514,4} = 'kg_p_m2';
Properties{514,5} = '1*m^-2*kg^1';
Properties{514,6} = 0;
dims(514,:) = [-2 1 0 0 0 0 0 0];

Properties{515,1} = 'volume, specific, mass';
Properties{515,2} = 'cubic meter per kilogram ';
Properties{515,3} = ckSym('m3_p_kg');
Properties{515,4} = 'm3_p_kg';
Properties{515,5} = '1*m^3*kg^-1';
Properties{515,6} = 0;
dims(515,:) = [3 -1 0 0 0 0 0 0];

Properties{516,1} = 'density, amount of substance (concentration) ';
Properties{516,2} = 'mole per cubic meter ';
Properties{516,3} = ckSym('mol_p_m3');
Properties{516,4} = 'mol_p_m3';
Properties{516,5} = '1*m^-3*mol^1';
Properties{516,6} = 0;
dims(516,:) = [-3 0 0 0 0 1 0 0];

Properties{517,1} = 'volume, specific, molar';
Properties{517,2} = 'cubic meter per mole ';
Properties{517,3} = ckSym('m3_p_mol');
Properties{517,4} = 'm3_p_mol';
Properties{517,5} = '1*m^3*mol^-1';
Properties{517,6} = 0;
dims(517,:) = [3 0 0 0 0 -1 0 0];

Properties{518,1} = 'action, dynamic';
Properties{518,2} = 'joule second ';
Properties{518,3} = ckSym('J_X_s');
Properties{518,4} = 'J_X_s';
Properties{518,5} = '1*kg^1*m^2*s^-1';
Properties{518,6} = 0;
dims(518,:) = [2 1 -1 0 0 0 0 0];

Properties{519,1} = 'heat capacity, entropy ';
Properties{519,2} = 'joule per kelvin ';
Properties{519,3} = ckSym('J_p_K');
Properties{519,4} = 'J_p_K';
Properties{519,5} = '1*m^2*kg^1*s^-2*K^-1';
Properties{519,6} = 0;
dims(519,:) = [2 1 -2 0 -1 0 0 0];

Properties{520,1} = 'heat capacity, specific, molar';
Properties{520,2} = 'joule per kelvin-mole ';
Properties{520,3} = ckSym('J_p__K_X_mol');
Properties{520,4} = 'J_p__K_X_mol';
Properties{520,5} = '1*m^2*kg^1*s^-2*K^-1*mol^-1';
Properties{520,6} = 0;
dims(520,:) = [2 1 -2 0 -1 -1 0 0];

Properties{521,1} = 'heat capacity, specific, mass';
Properties{521,2} = 'joule per kilogram-kelvin ';
Properties{521,3} = ckSym('J_p__K_X_kg');
Properties{521,4} = 'J_p__K_X_kg';
Properties{521,5} = '1*m^2*s^-2*K^-1';
Properties{521,6} = 0;
dims(521,:) = [2 0 -2 0 -1 0 0 0];

Properties{522,1} = 'energy, specific, molar';
Properties{522,2} = 'joule per mole ';
Properties{522,3} = ckSym('J_p_mol');
Properties{522,4} = 'J_p_mol';
Properties{522,5} = '1*m^2*kg^1*s^-2*mol^-1';
Properties{522,6} = 0;
dims(522,:) = [2 1 -2 0 0 -1 0 0];

Properties{523,1} = 'energy, specific, mass ';
Properties{523,2} = 'joule per kilogram ';
Properties{523,3} = ckSym('J_p_kg');
Properties{523,4} = 'J_p_kg';
Properties{523,5} = '1*m^2*s^-2';
Properties{523,6} = 0;
dims(523,:) = [2 0 -2 0 0 0 0 0];

Properties{524,1} = 'density, energy density ';
Properties{524,2} = 'joule per cubic meter ';
Properties{524,3} = ckSym('J_p_m3');
Properties{524,4} = 'J_p_m3';
Properties{524,5} = '1*kg^1*m^-1*s^-2';
Properties{524,6} = 0;
dims(524,:) = [-1 1 -2 0 0 0 0 0];

Properties{525,1} = 'surface tension ';
Properties{525,2} = 'newton per meter ';
Properties{525,3} = ckSym('N_p_m');
Properties{525,4} = 'N_p_m';
Properties{525,5} = '1*kg^1*s^-2';
Properties{525,6} = 0;
dims(525,:) = [0 1 -2 0 0 0 0 0];

Properties{526,1} = 'heat flux density, irradiance ';
Properties{526,2} = 'watt per square meter ';
Properties{526,3} = ckSym('W_p_m2');
Properties{526,4} = 'W_p_m2';
Properties{526,5} = '1*kg^1*s^-3';
Properties{526,6} = 0;
dims(526,:) = [0 1 -3 0 0 0 0 0];

Properties{527,1} = 'conductivity, thermal ';
Properties{527,2} = 'watt per meter kelvin ';
Properties{527,3} = ckSym('W_p__m_X_K');
Properties{527,4} = 'W_p__m_X_K';
Properties{527,5} = '1*m^1*kg^1*s^-3*K^-1';
Properties{527,6} = 0;
dims(527,:) = [1 1 -3 0 -1 0 0 0];

Properties{528,1} = 'polarization, electric displacement field';
Properties{528,2} = 'coulomb per square meter ';
Properties{528,3} = ckSym('C_p_m2');
Properties{528,4} = 'C_p_m2';
Properties{528,5} = '1*m^-2*s^1*A^1';
Properties{528,6} = 0;
dims(528,:) = [-2 0 1 1 0 0 0 0];

Properties{529,1} = 'density, electric charge ';
Properties{529,2} = 'coulomb per cubic meter ';
Properties{529,3} = ckSym('C_p_m3');
Properties{529,4} = 'C_p_m3';
Properties{529,5} = '1*m^-3*s^1*A^1';
Properties{529,6} = 0;
dims(529,:) = [-3 0 1 1 0 0 0 0];

Properties{530,1} = 'density, current, electric';
Properties{530,2} = 'ampere per square meter ';
Properties{530,3} = ckSym('A_p_m2');
Properties{530,4} = 'A_p_m2';
Properties{530,5} = '1*A^1*m^-2';
Properties{530,6} = 0;
dims(530,:) = [-2 0 0 1 0 0 0 0];

Properties{531,1} = 'conductivity, electrical';
Properties{531,2} = 'siemens per meter ';
Properties{531,3} = ckSym('S_p_m');
Properties{531,4} = 'S_p_m';
Properties{531,5} = '1*m^-3*kg^-1*s^3*A^2';
Properties{531,6} = 0;
dims(531,:) = [-3 -1 3 2 0 0 0 0];

Properties{532,1} = 'conductivity, electrical, molar ';
Properties{532,2} = 'siemens square meter per mole ';
Properties{532,3} = ckSym('S_X_m2_p_mol');
Properties{532,4} = 'S_X_m2_p_mol';
Properties{532,5} = '1*kg^-1*s^3*mol^-1*A^2';
Properties{532,6} = 0;
dims(532,:) = [0 -1 3 2 0 -1 0 0];

Properties{533,1} = 'permittivity, electromagnetic';
Properties{533,2} = 'farad per meter ';
Properties{533,3} = ckSym('Frd_p_m');
Properties{533,4} = 'Frd_p_m';
Properties{533,5} = '1*m^-3*kg^-1*s^4*A^2';
Properties{533,6} = 0;
dims(533,:) = [-3 -1 4 2 0 0 0 0];

Properties{534,1} = 'permeability, electromagnetic';
Properties{534,2} = 'henry per meter ';
Properties{534,3} = ckSym('H_p_m');
Properties{534,4} = 'H_p_m';
Properties{534,5} = '1*m^1*kg^1*s^-2*A^-2';
Properties{534,6} = 0;
dims(534,:) = [1 1 -2 -2 0 0 0 0];

Properties{535,1} = 'field strength, electric potential';
Properties{535,2} = 'volt per meter ';
Properties{535,3} = ckSym('V_p_m');
Properties{535,4} = 'V_p_m';
Properties{535,5} = '1*m^1*kg^1*s^-3*A^-1';
Properties{535,6} = 0;
dims(535,:) = [1 1 -3 -1 0 0 0 0];

Properties{536,1} = 'field strength, magnetic';
Properties{536,2} = 'ampere per meter ';
Properties{536,3} = ckSym('A_p_m');
Properties{536,4} = 'A_p_m';
Properties{536,5} = '1*A^1*m^-1';
Properties{536,6} = 0;
dims(536,:) = [-1 0 0 1 0 0 0 0];

Properties{537,1} = 'energy, luminous ';
Properties{537,2} = 'lumen second ';
Properties{537,3} = ckSym('lm_X_s');
Properties{537,4} = 'lm_X_s';
Properties{537,5} = '1*cd^1*m^2*m^-2*s^1';
Properties{537,6} = 0;
dims(537,:) = [-2 0 1 0 0 0 1 0];

Properties{538,1} = 'exposure, luminous ';
Properties{538,2} = 'lux second ';
Properties{538,3} = ckSym('lx_X_s');
Properties{538,4} = 'lx_X_s';
Properties{538,5} = '1*cd^1*m^2*m^-2*m^-2*s^1';
Properties{538,6} = 0;
dims(538,:) = [-2 0 1 0 0 0 1 0];

Properties{539,1} = 'radiation, exposure (X and gamma rays) ';
Properties{539,2} = 'coulomb per kilogram ';
Properties{539,3} = ckSym('C_p_kg');
Properties{539,4} = 'C_p_kg';
Properties{539,5} = '1*kg^-1*s^1*A^1';
Properties{539,6} = 0;
dims(539,:) = [0 -1 1 1 0 0 0 0];

Properties{540,1} = 'radiation, absorbed dose rate ';
Properties{540,2} = 'gray per second ';
Properties{540,3} = ckSym('Gy_p_s');
Properties{540,4} = 'Gy_p_s';
Properties{540,5} = '1*kg^1*m^2*s^-3*kg^-1';
Properties{540,6} = 0;
dims(540,:) = [2 -1 -3 0 0 0 0 0];

Properties{541,1} = 'resistivity ';
Properties{541,2} = 'ohm meter ';
Properties{541,3} = ckSym('Ohm_X_m');
Properties{541,4} = 'Ohm_X_m';
Properties{541,5} = '1*m^3*kg^1*s^-3*A^-2';
Properties{541,6} = 0;
dims(541,:) = [3 1 -3 -2 0 0 0 0];

Properties{542,1} = 'conductance, electrical ';
Properties{542,2} = 'siemens ';
Properties{542,3} = ckSym('S_');
Properties{542,4} = 'S_';
Properties{542,5} = '1*kg^-1*m^-2*s^3*A^2';
Properties{542,6} = 0;
dims(542,:) = [-2 -1 3 2 0 0 0 0];

Properties{543,1} = 'catalytic activity ';
Properties{543,2} = 'katal ';
Properties{543,3} = ckSym('kat_');
Properties{543,4} = 'kat_';
Properties{543,5} = '1*s^-1*mol^1';
Properties{543,6} = 0;
dims(543,:) = [0 0 -1 0 0 1 0 0];

Properties{544,1} = 'cardinality, digital, decimal';
Properties{544,2} = 'kilobit';
Properties{544,3} = ckSym('kbit');
Properties{544,4} = 'kbit';
Properties{544,5} = '1e3*bit^1';
Properties{544,6} = 0;
dims(544,:) = [0 0 0 0 0 0 0 1];

Properties{545,1} = 'cardinality, digital, decimal';
Properties{545,2} = 'megabit';
Properties{545,3} = ckSym('Mbit');
Properties{545,4} = 'Mbit';
Properties{545,5} = '1e6*bit^1';
Properties{545,6} = 0;
dims(545,:) = [0 0 0 0 0 0 0 1];

Properties{546,1} = 'cardinality, digital, decimal';
Properties{546,2} = 'gigabit';
Properties{546,3} = ckSym('Gbit');
Properties{546,4} = 'Gbit';
Properties{546,5} = '1e9*bit^1';
Properties{546,6} = 0;
dims(546,:) = [0 0 0 0 0 0 0 1];

Properties{547,1} = 'cardinality, digital, decimal';
Properties{547,2} = 'terrabit';
Properties{547,3} = ckSym('Tbit');
Properties{547,4} = 'Tbit';
Properties{547,5} = '1e12*bit^1';
Properties{547,6} = 0;
dims(547,:) = [0 0 0 0 0 0 0 1];

Properties{548,1} = 'cardinality, digital, decimal';
Properties{548,2} = 'petabit';
Properties{548,3} = ckSym('Pbit');
Properties{548,4} = 'Pbit';
Properties{548,5} = '1e15*bit^1';
Properties{548,6} = 0;
dims(548,:) = [0 0 0 0 0 0 0 1];

Properties{549,1} = 'cardinality, digital, decimal';
Properties{549,2} = 'exabit';
Properties{549,3} = ckSym('Ebit');
Properties{549,4} = 'Ebit';
Properties{549,5} = '1e18*bit^1';
Properties{549,6} = 0;
dims(549,:) = [0 0 0 0 0 0 0 1];

Properties{550,1} = 'cardinality, digital, decimal';
Properties{550,2} = 'zetabit';
Properties{550,3} = ckSym('Zbit');
Properties{550,4} = 'Zbit';
Properties{550,5} = '1e21*bit^1';
Properties{550,6} = 0;
dims(550,:) = [0 0 0 0 0 0 0 1];

Properties{551,1} = 'cardinality, digital, decimal';
Properties{551,2} = 'yottabit';
Properties{551,3} = ckSym('Ybit');
Properties{551,4} = 'Ybit';
Properties{551,5} = '1e24*bit^1';
Properties{551,6} = 0;
dims(551,:) = [0 0 0 0 0 0 0 1];

Properties{552,1} = 'cardinality, digital, binary';
Properties{552,2} = 'kilobibit';
Properties{552,3} = ckSym('Kibit');
Properties{552,4} = 'Kibit';
Properties{552,5} = '2^10*bit^1';
Properties{552,6} = 0;
dims(552,:) = [0 0 0 0 0 0 0 1];

Properties{553,1} = 'cardinality, digital, binary';
Properties{553,2} = 'megabibit';
Properties{553,3} = ckSym('Mibit');
Properties{553,4} = 'Mibit';
Properties{553,5} = '2^20*bit^1';
Properties{553,6} = 0;
dims(553,:) = [0 0 0 0 0 0 0 1];

Properties{554,1} = 'cardinality, digital, binary';
Properties{554,2} = 'gigabibit';
Properties{554,3} = ckSym('Gibit');
Properties{554,4} = 'Gibit';
Properties{554,5} = '2^30*bit^1';
Properties{554,6} = 0;
dims(554,:) = [0 0 0 0 0 0 0 1];

Properties{555,1} = 'cardinality, digital, binary';
Properties{555,2} = 'terrabibit';
Properties{555,3} = ckSym('Tibit');
Properties{555,4} = 'Tibit';
Properties{555,5} = '2^40*bit^1';
Properties{555,6} = 0;
dims(555,:) = [0 0 0 0 0 0 0 1];

Properties{556,1} = 'cardinality, digital, binary';
Properties{556,2} = 'petabibit';
Properties{556,3} = ckSym('Pibit');
Properties{556,4} = 'Pibit';
Properties{556,5} = '2^50*bit^1';
Properties{556,6} = 0;
dims(556,:) = [0 0 0 0 0 0 0 1];

Properties{557,1} = 'cardinality, digital, binary';
Properties{557,2} = 'exabibit';
Properties{557,3} = ckSym('Eibit');
Properties{557,4} = 'Eibit';
Properties{557,5} = '2^60*bit^1';
Properties{557,6} = 0;
dims(557,:) = [0 0 0 0 0 0 0 1];

Properties{558,1} = 'cardinality, digital, binary';
Properties{558,2} = 'zettabibit';
Properties{558,3} = ckSym('Zibit');
Properties{558,4} = 'Zibit';
Properties{558,5} = '2^70*bit^1';
Properties{558,6} = 0;
dims(558,:) = [0 0 0 0 0 0 0 1];

Properties{559,1} = 'cardinality, digital, binary';
Properties{559,2} = 'yottabibit';
Properties{559,3} = ckSym('Yibit');
Properties{559,4} = 'Yibit';
Properties{559,5} = '2^80*bit^1';
Properties{559,6} = 0;
dims(559,:) = [0 0 0 0 0 0 0 1];

Properties{560,1} = 'cardinality, digital, decimal';
Properties{560,2} = 'byte (octet)';
Properties{560,3} = ckSym('byt');
Properties{560,4} = 'byt';
Properties{560,5} = '8*bit^1';
Properties{560,6} = 0;
dims(560,:) = [0 0 0 0 0 0 0 1];

Properties{561,1} = 'cardinality, digital, decimal';
Properties{561,2} = 'kilobyte (octet)';
Properties{561,3} = ckSym('kB');
Properties{561,4} = 'kB';
Properties{561,5} = '8e3*bit^1';
Properties{561,6} = 0;
dims(561,:) = [0 0 0 0 0 0 0 1];

Properties{562,1} = 'cardinality, digital, decimal';
Properties{562,2} = 'megabyte (octet)';
Properties{562,3} = ckSym('MB');
Properties{562,4} = 'MB';
Properties{562,5} = '8e6*bit^1';
Properties{562,6} = 0;
dims(562,:) = [0 0 0 0 0 0 0 1];

Properties{563,1} = 'cardinality, digital, decimal';
Properties{563,2} = 'gigabyte (octet)';
Properties{563,3} = ckSym('GB');
Properties{563,4} = 'GB';
Properties{563,5} = '8e9*bit^1';
Properties{563,6} = 0;
dims(563,:) = [0 0 0 0 0 0 0 1];

Properties{564,1} = 'cardinality, digital, decimal';
Properties{564,2} = 'ptabyte (octet)';
Properties{564,3} = ckSym('PB');
Properties{564,4} = 'PB';
Properties{564,5} = '8e12*bit^1';
Properties{564,6} = 0;
dims(564,:) = [0 0 0 0 0 0 0 1];

Properties{565,1} = 'cardinality, digital, decimal';
Properties{565,2} = 'terrabyte (octet)';
Properties{565,3} = ckSym('TB');
Properties{565,4} = 'TB';
Properties{565,5} = '8e15*bit^1';
Properties{565,6} = 0;
dims(565,:) = [0 0 0 0 0 0 0 1];

Properties{566,1} = 'cardinality, digital, decimal';
Properties{566,2} = 'exabyte (octet)';
Properties{566,3} = ckSym('EB');
Properties{566,4} = 'EB';
Properties{566,5} = '8e18*bit^1';
Properties{566,6} = 0;
dims(566,:) = [0 0 0 0 0 0 0 1];

Properties{567,1} = 'cardinality, digital, decimal';
Properties{567,2} = 'zettabyte (octet)';
Properties{567,3} = ckSym('ZB');
Properties{567,4} = 'ZB';
Properties{567,5} = '8e21*bit^1';
Properties{567,6} = 0;
dims(567,:) = [0 0 0 0 0 0 0 1];

Properties{568,1} = 'cardinality, digital, decimal';
Properties{568,2} = 'yottabyte (octet)';
Properties{568,3} = ckSym('YB');
Properties{568,4} = 'YB';
Properties{568,5} = '8e24*bit^1';
Properties{568,6} = 0;
dims(568,:) = [0 0 0 0 0 0 0 1];

Properties{569,1} = 'cardinality, digital, binary';
Properties{569,2} = 'kibibyte (octet)';
Properties{569,3} = ckSym('KiB');
Properties{569,4} = 'KiB';
Properties{569,5} = '2^13*bit^1';
Properties{569,6} = 0;
dims(569,:) = [0 0 0 0 0 0 0 1];

Properties{570,1} = 'cardinality, digital, binary';
Properties{570,2} = 'mebibyte (octet)';
Properties{570,3} = ckSym('MiB');
Properties{570,4} = 'MiB';
Properties{570,5} = '2^23*bit^1';
Properties{570,6} = 0;
dims(570,:) = [0 0 0 0 0 0 0 1];

Properties{571,1} = 'cardinality, digital, binary';
Properties{571,2} = 'gibibyte (octet)';
Properties{571,3} = ckSym('GiB');
Properties{571,4} = 'GiB';
Properties{571,5} = '2^33*bit^1';
Properties{571,6} = 0;
dims(571,:) = [0 0 0 0 0 0 0 1];

Properties{572,1} = 'cardinality, digital, binary';
Properties{572,2} = 'tebibyte (octet)';
Properties{572,3} = ckSym('TiB');
Properties{572,4} = 'TiB';
Properties{572,5} = '2^43*bit^1';
Properties{572,6} = 0;
dims(572,:) = [0 0 0 0 0 0 0 1];

Properties{573,1} = 'cardinality, digital, binary';
Properties{573,2} = 'pebibyte (octet)';
Properties{573,3} = ckSym('PiB');
Properties{573,4} = 'PiB';
Properties{573,5} = '2^53*bit^1';
Properties{573,6} = 0;
dims(573,:) = [0 0 0 0 0 0 0 1];

Properties{574,1} = 'cardinality, digital, binary';
Properties{574,2} = 'exbibyte (octet)';
Properties{574,3} = ckSym('EiB');
Properties{574,4} = 'EiB';
Properties{574,5} = '2^63*bit^1';
Properties{574,6} = 0;
dims(574,:) = [0 0 0 0 0 0 0 1];

Properties{575,1} = 'cardinality, digital, binary';
Properties{575,2} = 'zebibyte (octet)';
Properties{575,3} = ckSym('ZiB');
Properties{575,4} = 'ZiB';
Properties{575,5} = '2^73*bit^1';
Properties{575,6} = 0;
dims(575,:) = [0 0 0 0 0 0 0 1];

Properties{576,1} = 'cardinality, digital, binary';
Properties{576,2} = 'yobibyte (octet)';
Properties{576,3} = ckSym('YiB');
Properties{576,4} = 'YiB';
Properties{576,5} = '2^83*bit^1';
Properties{576,6} = 0;
dims(576,:) = [0 0 0 0 0 0 0 1];

Properties{577,1} = 'cardinality, digital';
Properties{577,2} = '16-bit word';
Properties{577,3} = ckSym('wd16');
Properties{577,4} = 'wd16';
Properties{577,5} = '16*bit^1';
Properties{577,6} = 0;
dims(577,:) = [0 0 0 0 0 0 0 1];

Properties{578,1} = 'cardinality, digital';
Properties{578,2} = '32-bit word';
Properties{578,3} = ckSym('wd32');
Properties{578,4} = 'wd32';
Properties{578,5} = '32*bit^1';
Properties{578,6} = 0;
dims(578,:) = [0 0 0 0 0 0 0 1];

Properties{579,1} = 'cardinality, digital';
Properties{579,2} = '64-bit word';
Properties{579,3} = ckSym('wd64');
Properties{579,4} = 'wd64';
Properties{579,5} = '64*bit^1';
Properties{579,6} = 0;
dims(579,:) = [0 0 0 0 0 0 0 1];

Properties{580,1} = 'flow, digital';
Properties{580,2} = 'bits per second';
Properties{580,3} = ckSym('b_p_s');
Properties{580,4} = 'b_p_s';
Properties{580,5} = '1*bit^1s^-1';
Properties{580,6} = 0;
dims(580,:) = [0 0 -1 0 0 0 0 1];

Properties{581,1} = 'flow, digital';
Properties{581,2} = 'kilobits per second';
Properties{581,3} = ckSym('kbit_p_s');
Properties{581,4} = 'kbit_p_s';
Properties{581,5} = '1e3*bit^1s^-1';
Properties{581,6} = 0;
dims(581,:) = [0 0 -1 0 0 0 0 1];

Properties{582,1} = 'flow, digital';
Properties{582,2} = 'megabits per second';
Properties{582,3} = ckSym('Mbit_p_s');
Properties{582,4} = 'Mbit_p_s';
Properties{582,5} = '1e6*bit^1s^-1';
Properties{582,6} = 0;
dims(582,:) = [0 0 -1 0 0 0 0 1];

Properties{583,1} = 'flow, digital';
Properties{583,2} = 'gigabits per second';
Properties{583,3} = ckSym('Gbit_p_s');
Properties{583,4} = 'Gbit_p_s';
Properties{583,5} = '1e9*bit^1s^-1';
Properties{583,6} = 0;
dims(583,:) = [0 0 -1 0 0 0 0 1];

Properties{584,1} = 'flow, digital';
Properties{584,2} = 'terrabits per second';
Properties{584,3} = ckSym('Tbit_p_s');
Properties{584,4} = 'Tbit_p_s';
Properties{584,5} = '1e10*bit^1s^-1';
Properties{584,6} = 0;
dims(584,:) = [0 0 -1 0 0 0 0 1];

Properties{585,1} = 'flow, digital';
Properties{585,2} = 'kibibbits per second';
Properties{585,3} = ckSym('kibit_p_s');
Properties{585,4} = 'kibit_p_s';
Properties{585,5} = '2^10*bit^1s^-1';
Properties{585,6} = 0;
dims(585,:) = [0 0 -1 0 0 0 0 1];

Properties{586,1} = 'flow, digital';
Properties{586,2} = 'mebibits per second';
Properties{586,3} = ckSym('Mibit_p_s');
Properties{586,4} = 'Mibit_p_s';
Properties{586,5} = '2^20*bit^1s^-1';
Properties{586,6} = 0;
dims(586,:) = [0 0 -1 0 0 0 0 1];

Properties{587,1} = 'flow, digital';
Properties{587,2} = 'gigabibits per second';
Properties{587,3} = ckSym('Gibit_p_s');
Properties{587,4} = 'Gibit_p_s';
Properties{587,5} = '2^30*bit^1s^-1';
Properties{587,6} = 0;
dims(587,:) = [0 0 -1 0 0 0 0 1];

end