Using camera data in ASE File

Hi!
I’am trying to use a camera setting exported from MAX but
icant get any sense in the angles exported in the ASE file.

In 3DStudioMAX camera is rotated like this

x: 53.5
y: 0
z: 21.5
And when exported it loke like this.

*CAMERAOBJECT {
*NODE_NAME “Camera01”
*CAMERA_TYPE Free
*NODE_TM {
*NODE_NAME “Camera01”
*INHERIT_POS 0 0 0
*INHERIT_ROT 0 0 0
*INHERIT_SCL 0 0 0
*TM_ROW0 0.9304 0.3665 0.0000
*TM_ROW1 -0.2180 0.5534 0.8039
*TM_ROW2 0.2946 -0.7479 0.5948
*TM_ROW3 73.6536 -186.9806 148.7057
*TM_POS 73.6536 -186.9806 148.7057
*TM_ROTAXIS -0.9214 -0.1749 -0.3471
*TM_ROTANGLE 1.0011
*TM_SCALE 1.0000 1.0000 1.0000
*TM_SCALEAXIS -0.9611 0.1566 0.2275
*TM_SCALEAXISANG 0.5881
}
*CAMERA_SETTINGS {
*TIMEVALUE 0
*CAMERA_NEAR 0.0000
*CAMERA_FAR 1000.0000
*CAMERA_FOV 0.7854
*CAMERA_TDIST 250.0000
}
}

then i convert TM_ROTANGLE to degres, giving us 1.011*180/PI= 57.3588
then using this on every axis in TM_ROTAXIS like this
X= 57.3588 * -0.9214
X= -52.8
Y= 57.3588 * -0.1749
Y= -10.032 //THIS SHOULD BE 0!!
Z= 57.3588 * -0.3471
Z= -19.909

NOT close enough, Y is terrible wrong.
I have tried to use the scale values but nothing works for me!!.
Anyone know how to do this correct??.