Himalaya
H6b2qg2.cpp
Go to the documentation of this file.
1 // ====================================================================
2 // This file is part of Himalaya.
3 //
4 // Himalaya is licenced under the GNU General Public License (GNU GPL)
5 // version 3.
6 // ====================================================================
7 
11 #include "himalaya/misc/Powers.hpp"
12 #include <cmath>
13 
14 namespace himalaya {
15 namespace hierarchies {
16 
17 /**
18  * Constructor
19  * @param expansionDepth the flagMap for the truncation of expansion variables
20  * @param Al4p a double alpha_s/4/Pi
21  * @param beta a double which is the mixing angle beta
22  * @param Dmglst2 a double Mgl - Mst2
23  * @param Dmsqst2 a double Msq - Mst2
24  * @param lmMt a double log((<renormalization scale> / Mt)^2)
25  * @param lmMst1 a double log((<renormalization scale> / Mst1)^2)
26  * @param lmMst2 a double log((<renormalization scale> / Mst2)^2)
27  * @param Mgl a double gluino mass
28  * @param Mt a double top/bottom quark mass
29  * @param Mst1 a double stop 1 mass
30  * @param Mst2 a double stop 2 mass
31  * @param MuSUSY a double mu parameter
32  * @param s2t a double 2 times the sine of the stop/sbottom quark mixing angle
33  * @param mdrFlag an int 0 for DR and 1 for MDR scheme
34  * @param oneLoopFlag an int flag to consider the one-loop expansion terms
35  * @param twoLoopFlag an int flag to consider the two-loop expansion terms
36  * @param threeLoopFlag an int flag to consider the three-loop expansion terms
37  */
38 H6b2qg2::H6b2qg2(const ExpansionFlags_t& expansionDepth, double Al4p, double beta, double Dmglst2,
39  double Dmsqst2, double lmMt, double lmMst1, double lmMst2,
40  double Mgl, double Mt, double Mst1, double Mst2, double MuSUSY,
41  double s2t,
42  int mdrFlag, int oneLoopFlag, int twoLoopFlag, int threeLoopFlag){
43  // abbrev for tan(beta) and sin(beta)
44  Tbeta = tan(beta);
45  Sbeta = sin(beta);
46  this -> Dmglst2 = Dmglst2;
47  this -> Dmsqst2 = Dmsqst2;
48  this -> lmMt = lmMt;
49  this -> lmMst1 = lmMst1;
50  this -> lmMst2 = lmMst2;
51  this -> Mgl = Mgl;
52  this -> Mt = Mt;
53  this -> Mst1 = Mst1;
54  this -> Mst2 = Mst2;
55  this -> MuSUSY = MuSUSY;
56  this -> s2t = s2t;
57  this -> oneLoopFlag = oneLoopFlag;
58  this -> twoLoopFlag = twoLoopFlag;
59  this -> threeLoopFlag = threeLoopFlag;
60  this -> Al4p = Al4p;
61  // mdr flags, indicates if one wants to shift the dr stop mass to the mdr stop mass
62  shiftst1 = mdrFlag;
63  shiftst2 = mdrFlag;
64  shiftst3 = mdrFlag;
65  xDR2DRMOD = mdrFlag;
66  // expansion flags
67  xDmglst2 = expansionDepth.at(ExpansionDepth::Dmglst2);
68  xDmsqst2 = expansionDepth.at(ExpansionDepth::Dmsqst2);
69  xMst = expansionDepth.at(ExpansionDepth::Mst);
70 }
71 
72 /**
73  * @return The diagonal (1, 1) matrix element of the Higgs mass matrix as a double for the hierarchy 'H6b2qg2'
74  */
75 double H6b2qg2::getS1() const {
76  return -(pow2(Mt)*((Al4p*xDmglst2*pow2(Dmglst2)*(Al4p*threeLoopFlag*((5*Dmsqst2*
77  (-1081 + 165*lmMst1 - 165*lmMst2)*pow2(s2t)*(-1 + pow2(Sbeta))*pow2(
78  Sbeta)*pow4(Mst1))/(9.*pow4(Mst2)) - (pow2(MuSUSY)*((36*pow2(Mt)*(24*
79  pow2(Mst2)*(50134 - 270*B4 + 270*D3 - 135*DN + 2160*lmMst1 + 120*(271 +
80  24*lmMst1)*lmMst2 - 120*lmMt - 29646*S2 - 720*(-2 + 3*lmMst1)*pow2(
81  lmMst2) + 2160*pow3(lmMst2)) + pow2(Mst1)*(3051661 - 12960*B4 + 12960*
82  D3 - 6480*DN + 304320*lmMst1 + 960*(2227 + 285*lmMst1)*lmMst2 + 2880*(4
83  + lmMst1 - lmMst2)*lmMt + 5600*OepS2 - 324*(5361 + 350*lmMst1 - 350*
84  lmMst2)*S2 - 2880*(23 + 72*lmMst1)*pow2(lmMst2) + 207360*pow3(lmMst2)))
85  )/pow4(Mst2) + 43740*pow2(s2t)*(90.77757201646091 - (100*B4)/9. + (112*
86  D3)/9. - (62*DN)/9. + (788*lmMst1)/9. - (103*pow2(lmMst1))/9. + (16*
87  lmMst2*(-241 - 171*lmMst1 + 18*pow2(lmMst1)))/27. + (125.33333333333333
88  - 82*lmMst1)*pow2(lmMst2) + ((-852 + 358*lmMst2 + 32*lmMst1*(-2 + 3*
89  lmMst2) + 497*pow2(lmMst2))*pow2(Mst2))/(9.*pow2(Mst1)) + (214*pow3(
90  lmMst2))/3. + ((80*Dmsqst2*(4 + lmMst1 - lmMst2))/3. + pow2(Mst1)*(
91  155.38193689986284 - (164*B4)/9. + (176*D3)/9. - (94*DN)/9. - (21449*
92  lmMst1)/675. - (7556*pow2(lmMst1))/135. + (lmMst2*(-54451 - 22990*
93  lmMst1 + 65550*pow2(lmMst1)))/675. + (2*(6077 - 17130*lmMst1)*pow2(
94  lmMst2))/135. - (10*pow3(lmMst1))/27. + (4240*pow3(lmMst2))/27.))/pow2(
95  Mst2) + Dmsqst2*(40/pow2(Mst1) + (10*(-23 + 42*lmMst1 - 42*lmMst2)*
96  pow2(Mst1))/(3.*pow4(Mst2))) + ((585.1892843532082 - (8*B4)/3. + (32*
97  D3)/9. - (20*DN)/9. - (20109937*lmMst1)/297675. - (15886*pow2(lmMst1))/
98  945. + lmMst2*(17.112243218274966 - (144628*lmMst1)/945. + (1180*pow2(
99  lmMst1))/9.) + (169.85608465608465 - (2632*lmMst1)/9.)*pow2(lmMst2) - (
100  92*pow3(lmMst1))/27. + (4448*pow3(lmMst2))/27.)*pow4(Mst1))/pow4(Mst2)
101  - (32*(-2 + lmMst2 + 5*pow2(lmMst2))*pow4(Mst2))/(9.*pow4(Mst1)) - (6*(
102  7400*OepS2 + 27*(1089707 - 5550*lmMst1 + 5550*lmMst2)*S2)*pow2(Mst1)*
103  pow2(Mst2) + 40*(17308*OepS2 + 27*(93919 - 12981*lmMst1 + 12981*lmMst2)
104  *S2)*pow4(Mst1) + 9*(1400*OepS2 + 81*(116129 - 350*lmMst1 + 350*lmMst2)
105  *S2)*pow4(Mst2))/(10935.*pow4(Mst2))) + (240*T1ep*(30*Mst2*pow2(Mst1)*(
106  311*Mst2*Mt*s2t - 42*pow2(Mt) + 37*pow2(Mst2)*pow2(s2t)) + 2*s2t*(-
107  16421*Mt + 8654*Mst2*s2t)*pow4(Mst1) + 63*s2t*(Mt + 5*Mst2*s2t)*pow4(
108  Mst2)))/pow5(Mst2) - (Mt*s2t*(6*pow2(Mst2)*(4580489 - 3285360*B4 +
109  68040*DN - 3918600*lmMst1 + 248800*OepS2 - 108*(-20803 + 46650*lmMst1 -
110  46650*lmMst2)*S2 + 103680*pow2(lmMst1) - 360*lmMst2*(11213 + 1368*
111  lmMst1 + 144*pow2(lmMst1)) + 6480*(-214 + 523*lmMst1)*pow2(lmMst2) -
112  3337200*pow3(lmMst2))*pow4(Mst1) - 2332800*Dmsqst2*((-2 - 5*lmMst1 + 5*
113  lmMst2)*pow2(Mst1)*pow2(Mst2) + (8 - 15*lmMst1 + 15*lmMst2)*pow4(Mst1))
114  + 9*pow2(Mst1)*(2601353 - 1058400*B4 + 23760*DN - 1779840*lmMst1 +
115  1120*OepS2 - 324*(-1387 + 70*lmMst1 - 70*lmMst2)*S2 - 69120*pow2(
116  lmMst1) + 1440*lmMst2*(-599 - 108*lmMst1 + 24*pow2(lmMst1)) + 4320*(-
117  222 + 217*lmMst1)*pow2(lmMst2) - 972000*pow3(lmMst2))*pow4(Mst2) + 10*(
118  2773621 - 1660176*B4 + 25272*DN + 2004408*lmMst1 - 525472*OepS2 + 108*(
119  123113 + 98526*lmMst1 - 98526*lmMst2)*S2 + 3888*pow2(lmMst1) - 144*
120  lmMst2*(36802 - 11421*lmMst1 + 1728*pow2(lmMst1)) + 167184*(-14 + 15*
121  lmMst1)*pow2(lmMst2) - 31104*pow3(lmMst1) - 2227824*pow3(lmMst2))*pow6(
122  Mst1) + 1244160*(2 + lmMst2 - 3*pow2(lmMst2))*pow6(Mst2)))/(pow2(Mst1)*
123  pow5(Mst2))))/43740.) + (s2t*twoLoopFlag*pow2(MuSUSY)*(2*(4*Mt*(-31 +
124  3*lmMst1*(-2 + lmMst2) + 4*lmMst2 - 3*pow2(lmMst2)) + 3*Mst2*s2t*(4 +
125  lmMst2 + lmMst1*(-1 + 2*lmMst2) - 2*pow2(lmMst2)))*pow2(Mst2)*pow4(
126  Mst1) + 2*(Mst2*s2t*(10 + lmMst1*(-3 + 6*lmMst2) - 6*pow2(lmMst2)) + 4*
127  Mt*(-14 + lmMst1*(-2 + lmMst2) - pow2(lmMst2)))*pow2(Mst1)*pow4(Mst2) +
128  (Mt*(-398 + 52*lmMst2 + lmMst1*(-68 + 40*lmMst2) - 40*pow2(lmMst2)) +
129  3*Mst2*s2t*(9 + 4*lmMst1*(-1 + lmMst2) + 4*lmMst2 - 4*pow2(lmMst2)))*
130  pow6(Mst1) + 2*(2 - 3*lmMst2)*s2t*pow7(Mst2)))/(3.*pow2(Mst1)*pow5(
131  Mst2))))/pow2(Mgl) + (s2t*((2*xMst*(27*(lmMst1 - lmMst2)*Mst2*
132  oneLoopFlag*s2t*pow2(MuSUSY) - (2*Al4p*twoLoopFlag*(4*(18*(lmMst1 -
133  lmMst2)*(-2 + 3*lmMst2)*Mst2*s2t*xDmglst2*xDR2DRMOD*pow2(Dmglst2) +
134  Dmglst2*Mgl*(Mt*(785 + 6*lmMst1*(85 - 42*lmMst2) - 438*lmMst2 + 252*
135  pow2(lmMst2)) - Mst2*s2t*(49 - 84*lmMst2 + lmMst1*(84 - 36*lmMst2*(-1 +
136  xDR2DRMOD)) + 36*(-1 + xDR2DRMOD)*pow2(lmMst2))) + (Mt*(193 + 474*
137  lmMst2 - 6*lmMst1*(67 + 42*lmMst2) + 252*pow2(lmMst2)) - Mst2*s2t*(1 +
138  3*lmMst2*(-37 + 6*xDR2DRMOD) - 3*lmMst1*(-37 + 6*lmMst2*(-12 +
139  xDR2DRMOD) + 6*xDR2DRMOD) - 81*pow2(lmMst1) + 9*(-15 + 2*xDR2DRMOD)*
140  pow2(lmMst2)))*pow2(Mgl))*pow2(MuSUSY) - (xDmglst2*pow2(Dmglst2)*(4*Mt*
141  Tbeta*(-2501 + 222*lmMst2 + 42*lmMst1*(-7 + 6*lmMst2) - 252*pow2(
142  lmMst2))*pow2(MuSUSY) + 6*Mst2*MuSUSY*(MuSUSY*s2t*Tbeta*(85 - 60*lmMst1
143  + 60*lmMst2 + 36*lmMst1*lmMst2 - 36*pow2(lmMst2)) + 10*(-43 + 60*lmMst1
144  - 60*lmMst2)*Mt*pow2(Sbeta)) + 15*(-43 + 60*lmMst1 - 60*lmMst2)*s2t*
145  Tbeta*(-1 + pow2(Sbeta))*pow2(Sbeta)*pow3(Mst2)))/Tbeta))/pow2(Mgl))*
146  pow6(Mst1))/pow7(Mst2) - pow2(MuSUSY)*(27*oneLoopFlag*s2t*(2 - lmMst1 +
147  lmMst2 - (2*(lmMst1 - lmMst2)*pow2(Mst1)*(pow2(Mst1) + pow2(Mst2)))/
148  pow4(Mst2)) + (4*Al4p*(9*Mgl*Mst2*twoLoopFlag*pow2(Mst1)*(Mgl*(4*(4*Mt*
149  (5 + 6*lmMst2 - lmMst1*(4 + 3*lmMst2) + 3*pow2(lmMst2)) + Mst2*s2t*(-1
150  + 13*lmMst2 - lmMst1*(13 + 8*lmMst2) + pow2(lmMst1) + 7*pow2(lmMst2)))*
151  pow2(Mst2)*pow4(Mst1) + 2*(-(Mst2*s2t*(-14 - 20*lmMst2 + 2*lmMst1*(5 +
152  3*lmMst2) + pow2(lmMst1) - 7*pow2(lmMst2))) + 8*Mt*(4 + 3*lmMst2 -
153  lmMst1*(1 + lmMst2) + pow2(lmMst2)))*pow2(Mst1)*pow4(Mst2) + (Mst2*s2t*
154  (-1 + 50*lmMst2 - 2*lmMst1*(25 + 32*lmMst2) + 20*pow2(lmMst1) + 44*
155  pow2(lmMst2)) + Mt*(84 + 152*lmMst2 - 40*lmMst1*(3 + 2*lmMst2) + 80*
156  pow2(lmMst2)))*pow6(Mst1) + 4*(1 + lmMst2)*s2t*pow7(Mst2)) + 4*Dmglst2*
157  ((Mst2*s2t*(-5 + 8*lmMst2 - 4*lmMst1*(2 + lmMst2) + 4*pow2(lmMst2)) +
158  Mt*(65 + lmMst1*(34 - 20*lmMst2) - 26*lmMst2 + 20*pow2(lmMst2)))*pow6(
159  Mst1) + 2*((Mst2*s2t*(-2 + 3*lmMst2 - lmMst1*(3 + 2*lmMst2) + 2*pow2(
160  lmMst2)) + Mt*(22 + lmMst1*(8 - 6*lmMst2) - 4*lmMst2 + 6*pow2(lmMst2)))
161  *pow2(Mst2)*pow4(Mst1) + (-(Mst2*s2t*(1 + lmMst1 - 2*lmMst2 + 2*lmMst1*
162  lmMst2 - 2*pow2(lmMst2))) + 2*Mt*(6 + lmMst1 + lmMst2 - lmMst1*lmMst2 +
163  pow2(lmMst2)))*pow2(Mst1)*pow4(Mst2) + lmMst2*s2t*pow7(Mst2)))) -
164  xDR2DRMOD*(9*s2t*pow2(Mst1)*(5*Al4p*threeLoopFlag*xDmsqst2*pow2(
165  Dmsqst2)*((14*Dmglst2*Mgl + 33*xDmglst2*pow2(Dmglst2) + pow2(Mgl))*
166  pow2(Mst2)*(pow2(Mst1) + pow2(Mst2)) + (-2*lmMst1 + 2*lmMst2)*pow2(
167  Mst1)*(14*Dmglst2*Mgl*pow2(Mst2) + 33*xDmglst2*pow2(Dmglst2)*pow2(Mst2)
168  + pow2(Mgl)*(pow2(Mst1) + pow2(Mst2)))) + 4*twoLoopFlag*(2*Dmglst2*
169  lmMst2*Mgl + (-2 + 3*lmMst2)*xDmglst2*pow2(Dmglst2) + (1 + lmMst2)*
170  pow2(Mgl))*pow2(Mst2)*((pow2(Mst1) + pow2(Mst2))*pow4(Mst2) - 2*(lmMst1
171  - lmMst2)*pow2(Mst1)*(pow2(Mst1)*pow2(Mst2) + pow4(Mst1) + pow4(Mst2)))
172  ) + 2*Al4p*Mst2*threeLoopFlag*xDmglst2*pow2(Dmglst2)*(-((s2t*(675*
173  Dmsqst2*(1 - 2*lmMst1 + 2*lmMst2) + pow2(Mst2)*(1180 + 1270*lmMst2 +
174  96*(2 - 3*lmMst2)*pow2(lmMst1) - 3255*pow2(lmMst2) + 6*lmMst1*(-468 +
175  454*lmMst2 + 369*pow2(lmMst2)) - 1926*pow3(lmMst2))) + 64*Mst2*Mt*(53 +
176  191*lmMst2 - 54*pow2(lmMst2) + 6*lmMst1*(-10 - 3*lmMst2 + 12*pow2(
177  lmMst2)) - 72*pow3(lmMst2)))*pow3(Mst2)*pow4(Mst1)) - 3*pow2(Mst1)*(
178  225*Dmsqst2*s2t + 256*Mst2*Mt*(2 + lmMst2 - 3*pow2(lmMst2)) + s2t*(420
179  + lmMst1*(64 - 96*lmMst2) - 358*lmMst2 - 497*pow2(lmMst2))*pow2(Mst2))*
180  pow5(Mst2) - 2*Mst2*(675*Dmsqst2*(-lmMst1 + lmMst2)*s2t + 32*Mst2*Mt*(
181  11 + 371*lmMst2 - 42*pow2(lmMst2) + 6*lmMst1*(-21 - 5*lmMst2 + 24*pow2(
182  lmMst2)) - 144*pow3(lmMst2)) - 3*s2t*pow2(Mst2)*(-240 - 468*lmMst2 +
183  144*(-2 + 3*lmMst2)*pow2(lmMst1) + lmMst1*(580 - 22*lmMst2 - 1137*pow2(
184  lmMst2)) + 310*pow2(lmMst2) + 705*pow3(lmMst2)))*pow6(Mst1) - 12*(16*
185  Mt*(49 + 103*lmMst2 - 36*(1 + lmMst2)*pow2(lmMst2) + 4*lmMst1*(-11 + 6*
186  lmMst2 + 9*pow2(lmMst2))) - Mst2*s2t*(48 + 4*lmMst2*(45 + 68*pow2(
187  lmMst1)) + 310*pow2(lmMst2) - lmMst1*(92 + 310*lmMst2 + 635*pow2(
188  lmMst2)) + 363*pow3(lmMst2)))*pow8(Mst1) - 96*s2t*(-2 + lmMst2 + 5*
189  pow2(lmMst2))*pow9(Mst2)))))/(pow2(Mgl)*pow4(Mst1)*pow6(Mst2)))))/216.)
190  ) - (308700*z2*pow2(Mst1)*(3240*Al4p*s2t*twoLoopFlag*pow2(Mst1)*pow2(
191  Mt)*pow2(MuSUSY)*(Mgl*pow2(Mst2)*(4*Mt*((9*Dmglst2 + Mgl)*pow2(Mst1)*
192  pow2(Mst2) + (13*Dmglst2 + Mgl)*pow4(Mst1) + (5*Dmglst2 + Mgl)*pow4(
193  Mst2)) - Mst2*s2t*(Mgl*pow4(Mst2) + 4*Dmglst2*(pow2(Mst1)*pow2(Mst2) +
194  pow4(Mst1) + pow4(Mst2)))) + 2*xMst*(Dmglst2*Mgl*(34*Mt - 2*Mst2*s2t) +
195  (82*Mt - 3*Mst2*s2t)*xDmglst2*pow2(Dmglst2) + 2*Mt*pow2(Mgl))*pow6(
196  Mst1)) + (2*Al4p*xDmglst2*pow2(Dmglst2)*pow2(Mst2)*pow2(Mt)*(9720*s2t*
197  twoLoopFlag*pow2(Mst1)*pow2(MuSUSY)*(-3*Mst2*s2t*(pow2(Mst1)*pow2(Mst2)
198  + pow4(Mst1) + pow4(Mst2)) + 2*Mt*(21*pow2(Mst1)*pow2(Mst2) + 31*pow4(
199  Mst1) + 11*pow4(Mst2))) + Al4p*threeLoopFlag*(pow2(MuSUSY)*(-9*pow2(
200  Mst1)*pow2(Mst2)*(43200*Dmsqst2*(2 + 3*lmMst1 - 3*lmMst2)*Mt*s2t - (
201  897737 + 47880*lmMst1 + 238680*lmMst2)*Mt*s2t*pow2(Mst2) - 48*Mst2*(4*(
202  617 + 2040*lmMst2)*pow2(Mt) + 675*Dmsqst2*(2 + lmMst1 - lmMst2)*pow2(
203  s2t)) + (88931 + 33120*lmMst1 + 13320*lmMst2)*pow2(s2t)*pow3(Mst2)) +
204  6*(Mt*s2t*(64800*Dmsqst2*(1 - 9*lmMst1 + 9*lmMst2) + (1263161 - 156600*
205  lmMst1 + 979560*lmMst2)*pow2(Mst2)) + 6*Mst2*((122051 + 1800*lmMst1 +
206  274680*lmMst2)*pow2(Mt) + 2700*Dmsqst2*(3 + 8*lmMst1 - 8*lmMst2)*pow2(
207  s2t)) - 5*(21223 + 13230*lmMst1 + 702*lmMst2)*pow2(s2t)*pow3(Mst2))*
208  pow4(Mst1) + 19440*(5*Dmsqst2 - 2*pow2(Mst2))*pow2(s2t)*pow5(Mst2)) +
209  2*s2t*((15057833 - 4014360*lmMst1 + 5563080*lmMst2)*Mt*pow2(MuSUSY) -
210  2*Mst2*s2t*((2128489 - 307800*lmMst1 + 377460*lmMst2)*pow2(MuSUSY) +
211  6075*Dmsqst2*(-93 + 10*lmMst1 - 10*lmMst2)*(-1 + pow2(Sbeta))*pow2(
212  Sbeta)))*pow6(Mst1))))/3. + Mst2*threeLoopFlag*pow2(Al4p)*(150*Mt*s2t*
213  xDmsqst2*pow2(Dmsqst2)*pow2(Mgl)*(864*(3 + lmMst1 - lmMst2)*Mst2*pow2(
214  Mst1)*pow2(Mt)*pow2(MuSUSY) - 27*s2t*pow2(Sbeta)*(2*(11 + 10*lmMst1 -
215  10*lmMst2)*Mst2*s2t*(-1 + pow2(Sbeta)) + 3*(17 - 2*lmMst1 + 2*lmMst2)*
216  Mt*pow2(Sbeta))*pow6(Mst1) - Mt*s2t*(pow2(MuSUSY)*(6*(209 + 18*lmMst1 -
217  18*lmMst2)*pow2(Mst1)*pow2(Mst2) + 8*(421 + 54*lmMst1 - 54*lmMst2)*
218  pow4(Mst1) + 108*pow4(Mst2)) + 81*(-17 + 2*lmMst1 - 2*lmMst2)*pow2(
219  Sbeta)*pow6(Mst1))) + (Mgl*pow2(Mt)*pow2(s2t)*(300*Dmsqst2*(162*
220  Dmglst2*pow2(Mst2)*(4*pow2(MuSUSY)*(3*(2 + lmMst1 - lmMst2)*pow2(Mst1)*
221  pow2(Mst2) + (3 + 8*lmMst1 - 8*lmMst2)*pow4(Mst1) + pow4(Mst2)) - (-93
222  + 10*lmMst1 - 10*lmMst2)*(-1 + pow2(Sbeta))*pow2(Sbeta)*pow6(Mst1)) +
223  Mgl*pow2(MuSUSY)*(9*(1097 + 72*(lmMst1 - lmMst2)*(-1 + shiftst1))*pow2(
224  Mst2)*pow4(Mst1) + 27*(53 + 12*(-1 + 2*lmMst1 - 2*lmMst2)*shiftst1)*
225  pow2(Mst1)*pow4(Mst2) + (20701 + 648*(lmMst1 - lmMst2)*(-1 + shiftst1))
226  *pow6(Mst1) - 324*(1 + shiftst1)*pow6(Mst2))) - pow2(Mst2)*pow2(MuSUSY)
227  *(4*Dmglst2*(162*(6803 - 1810*lmMst1 + 2670*lmMst2)*pow2(Mst2)*pow4(
228  Mst1) - 135*(648*lmMst1 - 7*(233 + 240*lmMst2))*pow2(Mst1)*pow4(Mst2) +
229  (4256978 - 615600*lmMst1 + 754920*lmMst2)*pow6(Mst1) - 22680*pow6(Mst2)
230  ) + 3*Mgl*(-6*(533629 - 1080*shiftst3 + 180*lmMst1*(-5 + 60*shiftst1 +
231  12*shiftst3) - 180*lmMst2*(-1 + 60*shiftst1 + 12*shiftst3))*pow2(Mst2)*
232  pow4(Mst1) - 90*(5597 - 360*shiftst1 - 72*shiftst3 - 24*lmMst2*(46 +
233  30*shiftst1 + 3*shiftst3) + 12*lmMst1*(47 + 60*shiftst1 + 6*shiftst3))*
234  pow2(Mst1)*pow4(Mst2) - (6649153 - 6480*shiftst3 + 540*lmMst1*(-151 +
235  120*shiftst1 + 36*shiftst3) - 540*lmMst2*(-143 + 120*shiftst1 + 36*
236  shiftst3))*pow6(Mst1) + 1080*(19 + 30*shiftst1 + 3*shiftst3)*pow6(Mst2)
237  ))))/3. - 2*pow2(MuSUSY)*(Mgl*pow2(Mst1)*(-(Mst2*s2t*pow3(Mt)*(3*Mgl*(
238  120*(3937 + 2988*lmMst1 - 2232*lmMst2)*pow2(Mst1)*pow2(Mst2) + 129600*
239  Dmsqst2*((5 + 3*lmMst1 - 3*lmMst2)*pow2(Mst1) + (2 + lmMst1 - lmMst2)*
240  pow2(Mst2)) + (533726 + 792720*lmMst1 - 693360*lmMst2)*pow4(Mst1) +
241  135*(2269 + 664*lmMst1 - 56*lmMst2)*pow4(Mst2)) + Dmglst2*(36*(364291 -
242  88560*lmMst1 + 147960*lmMst2)*pow2(Mst1)*pow2(Mst2) + 388800*Dmsqst2*((
243  1 - 9*lmMst1 + 9*lmMst2)*pow2(Mst1) + (-2 - 3*lmMst1 + 3*lmMst2)*pow2(
244  Mst2)) + (30115666 - 8028720*lmMst1 + 11126160*lmMst2)*pow4(Mst1) + 27*
245  (173947 - 25080*lmMst1 + 68760*lmMst2)*pow4(Mst2))))/3. + 90*(2*(
246  Dmglst2*(-7286 + 240*lmMst1 - 6384*lmMst2) + (353 - 72*lmMst1 - 696*
247  lmMst2)*Mgl)*pow2(Mst1)*pow2(Mst2) + ((38401 + 1080*lmMst1 - 7992*
248  lmMst2)*Mgl*pow4(Mst1))/3. - 32*(24*Dmglst2*(5 + 6*lmMst2) + (53 + 24*
249  lmMst2)*Mgl)*pow4(Mst2))*pow4(Mt)) - 2160*Mst2*s2t*xDR2DRMOD*pow2(Mt)*(
250  Mgl*(32*(Dmglst2 + 3*Dmglst2*lmMst2 + Mgl + lmMst2*Mgl)*Mt*pow2(Mst1)*(
251  2*pow2(Mst1)*pow2(Mst2) + 3*pow4(Mst1) + pow4(Mst2)) - Mst2*s2t*(-2*(
252  Dmglst2*(7*lmMst1 - 15*lmMst2) + (-4 - 13*lmMst1 + 9*lmMst2)*Mgl)*(
253  pow2(Mst1) + pow2(Mst2))*pow4(Mst1) + (Dmglst2*(7 - 14*lmMst1 + 30*
254  lmMst2) + (-5 + 26*lmMst1 - 18*lmMst2)*Mgl)*pow2(Mst1)*pow4(Mst2) + (7*
255  Dmglst2 - 13*Mgl)*pow6(Mst2))) - xDmglst2*pow2(Dmglst2)*(2*(-32*(-1 +
256  6*lmMst2)*Mt + (-8 - 27*lmMst1 + 39*lmMst2)*Mst2*s2t)*pow2(Mst2)*pow4(
257  Mst1) + (32*(1 - 6*lmMst2)*Mt + (11 - 54*lmMst1 + 78*lmMst2)*Mst2*s2t)*
258  pow2(Mst1)*pow4(Mst2) - 2*(48*(1 + 3*lmMst2)*Mt + (7*lmMst1 - 15*
259  lmMst2)*Mst2*s2t)*pow6(Mst1) + 27*s2t*pow7(Mst2)))))) + Mst2*Mt*
260  threeLoopFlag*pow2(Al4p)*(61740*s2t*xDmsqst2*pow2(Dmsqst2)*pow2(Mgl)*
261  pow2(Mst1)*(-300*Mt*(2160*(3 + 2*lmMst1 - 2*lmMst2)*Mst2*Mt*pow2(Mst1)
262  + 270*s2t*shiftst1*(2*(lmMst1 - lmMst2)*pow2(Mst1) - pow2(Mst2))*(pow2(
263  Mst1) + pow2(Mst2)) + 40*s2t*T1ep*pow2(Mst1)*(14*pow2(Mst1) + 3*pow2(
264  Mst2)))*pow2(MuSUSY) + s2t*(10125*pow2(Sbeta)*(2*(11 + 39*lmMst1 - 39*
265  lmMst2)*Mst2*s2t*(-1 + pow2(Sbeta)) + (167 - 5*lmMst1 + 5*lmMst2)*Mt*
266  pow2(Sbeta))*pow6(Mst1) + Mt*(pow2(MuSUSY)*(375*(1925 + 64*OepS2 -
267  27864*S2 - 72*(lmMst1 - lmMst2)*(-1 + 18*S2))*pow2(Mst1)*pow2(Mst2) +
268  2*(7*(-46499 + 8000*OepS2 - 1728000*S2) + 90*lmMst2*(-2137 + 12600*S2)
269  - 90*lmMst1*(-2137 + 1080*lmMst2 + 12600*S2) + 48600*(pow2(lmMst1) +
270  pow2(lmMst2)))*pow4(Mst1) + 162000*pow4(Mst2)) + 10125*(-167 + 5*lmMst1
271  - 5*lmMst2)*pow2(Sbeta)*pow6(Mst1)))) - 257250*z3*pow4(Mst1)*(45*s2t*
272  xDmsqst2*pow2(Dmsqst2)*pow2(Mgl)*(Mt*(3456*Mst2*Mt - 30208*s2t*pow2(
273  Mst1) - 13209*s2t*pow2(Mst2))*pow2(MuSUSY) - 216*s2t*(-3*Mt + 10*Mst2*
274  s2t)*(-1 + pow2(Sbeta))*pow2(Sbeta)*pow4(Mst1)) + Mt*(36*Mst2*xDmglst2*
275  pow2(Dmglst2)*(-5400*Dmsqst2*Mst2*pow2(s2t)*(-1 + pow2(Sbeta))*pow2(
276  Sbeta)*pow4(Mst1) + (pow2(MuSUSY)*(48*pow2(Mst1)*(-8100*Dmsqst2*Mt*s2t
277  + 152143*Mt*s2t*pow2(Mst2) - 40917*Mst2*pow2(Mt) + 3240*Dmsqst2*Mst2*
278  pow2(s2t) + 101147*pow2(s2t)*pow3(Mst2)) + 9*pow2(Mst2)*(-8640*Dmsqst2*
279  Mt*s2t + 443828*Mt*s2t*pow2(Mst2) - 95520*Mst2*pow2(Mt) + 6480*Dmsqst2*
280  Mst2*pow2(s2t) + 228607*pow2(s2t)*pow3(Mst2)) + 16*s2t*(395581*Mt +
281  176558*Mst2*s2t)*pow4(Mst1)))/9.) + 8*Mgl*pow2(s2t)*(-24300*Dmglst2*
282  Dmsqst2*pow2(Mst2)*(-1 + pow2(Sbeta))*pow2(Sbeta)*pow4(Mst1) + pow2(
283  MuSUSY)*(4*(353116*Dmglst2 + 3*(91963 + 162*lmMst1 - 162*lmMst2)*Mgl)*
284  pow2(Mst2)*pow4(Mst1) + 30*Dmsqst2*(9*(288*Dmglst2 + 35*Mgl)*pow2(Mst1)
285  *pow2(Mst2) + 1771*Mgl*pow4(Mst1)) + 18*(45*Dmsqst2*(36*Dmglst2 - 23*
286  Mgl) + (58482*Dmglst2 + (35719 + 108*lmMst1 - 108*lmMst2)*Mgl)*pow2(
287  Mst1))*pow4(Mst2) + 27*(17615*Dmglst2 + 6*(1319 + 6*lmMst1 - 6*lmMst2)*
288  Mgl)*pow6(Mst2))))) + Mgl*Mt*pow2(s2t)*(833490000*Dmglst2*Dmsqst2*(-
289  1081 + 165*lmMst1 - 165*lmMst2)*pow2(Mst2)*(-1 + pow2(Sbeta))*pow2(
290  Sbeta)*pow8(Mst1) - pow2(MuSUSY)*(61740*(2250*Dmsqst2*(288*Dmglst2*(4 +
291  lmMst1 - lmMst2) + Mgl*(-1141 + 264*lmMst2 + 48*lmMst1*(-7 + 3*lmMst2)
292  - 144*pow2(lmMst2))) - 75*pow2(Mst2)*(Mgl*(17297 + 1440*B4 - 144*D3 +
293  72*DN + 20064*lmMst1 - 42096*lmMst2 + 23328*lmMst1*lmMst2 + 1908*pow2(
294  lmMst1) - 1404*lmMst2*pow2(lmMst1) - 33840*pow2(lmMst2) + 10584*lmMst1*
295  pow2(lmMst2) + 576*pow3(lmMst1) - 9756*pow3(lmMst2)) + 2*Dmglst2*(-
296  14267 + 432*B4 - 576*D3 + 360*DN - 4752*lmMst1 + 4536*lmMst2 + 16704*
297  lmMst1*lmMst2 + 1404*pow2(lmMst1) - 1152*lmMst2*pow2(lmMst1) - 20232*
298  pow2(lmMst2) + 8856*lmMst1*pow2(lmMst2) - 7704*pow3(lmMst2))) + (pow2(
299  Mst1)*(-5*Mgl*(10552777 + 205200*B4 - 5400*DN + 4145280*lmMst1 -
300  1181700*pow2(lmMst1) - 240*lmMst2*(16192 - 26430*lmMst1 + 3465*pow2(
301  lmMst1)) + 900*(-5735 + 3072*lmMst1)*pow2(lmMst2) - 55800*pow3(lmMst1)
302  - 1877400*pow3(lmMst2)) + 8*Dmglst2*(2695042 - 40500*B4 + 54000*D3 -
303  33750*DN - 326895*lmMst1 - 324900*pow2(lmMst1) + 15*lmMst2*(-19607 -
304  129030*lmMst1 + 62550*pow2(lmMst1)) - 450*(-5023 + 5610*lmMst1)*pow2(
305  lmMst2) + 11250*pow3(lmMst1) + 1575000*pow3(lmMst2))))/5.)*pow4(Mst1)*
306  pow4(Mst2) + 686000*pow4(Mst1)*(30*Dmsqst2*Mgl*(9*(104*OepS2 + 27*(17 -
307  78*lmMst1 + 78*lmMst2)*S2)*pow2(Mst1)*pow2(Mst2) + 13*(136*OepS2 - 27*(
308  95 + 102*lmMst1 - 102*lmMst2)*S2)*pow4(Mst1) + 27*(8*OepS2 - 81*(-15 +
309  2*lmMst1 - 2*lmMst2)*S2)*pow4(Mst2)) - pow2(Mst2)*(3*Mgl*(-3*(8456*
310  OepS2 - 81*(11243 + 2114*lmMst1 - 2114*lmMst2)*S2)*pow2(Mst1)*pow2(
311  Mst2) + (-52948*OepS2 + 27*(194357 + 39711*lmMst1 - 39711*lmMst2)*S2)*
312  pow4(Mst1) + 27*(-184*OepS2 + 81*(307 + 46*lmMst1 - 46*lmMst2)*S2)*
313  pow4(Mst2)) + 2*Dmglst2*(54*(344*OepS2 + 9*(15643 - 774*lmMst1 + 774*
314  lmMst2)*S2)*pow2(Mst1)*pow2(Mst2) + 4*(17308*OepS2 + 27*(93919 - 12981*
315  lmMst1 + 12981*lmMst2)*S2)*pow4(Mst1) + 27*(56*OepS2 - 81*(-1677 + 14*
316  lmMst1 - 14*lmMst2)*S2)*pow4(Mst2)))) - 370440*Dmsqst2*pow2(Mst1)*((
317  13500*Dmglst2*(23 - 42*lmMst1 + 42*lmMst2) + Mgl*(817051 - 167940*
318  lmMst2 + 540*lmMst1*(311 + 10*lmMst2) - 29700*pow2(lmMst1) + 24300*
319  pow2(lmMst2)))*pow2(Mst2)*pow4(Mst1) + (5*Mgl*(593331163 + 10411380*
320  lmMst2 + 1260*lmMst1*(-8263 + 71820*lmMst2) - 61916400*pow2(lmMst1) -
321  28576800*pow2(lmMst2))*pow6(Mst1))/3087. - 13500*(12*Dmglst2 + Mgl - 2*
322  lmMst2*Mgl)*pow6(Mst2)) + 500094000*Mgl*pow2(Mst1)*(-10*shiftst1*(
323  Dmsqst2*(3 - 2*lmMst2) + (1 - 2*lmMst2)*pow2(Mst2))*((pow2(Mst1) +
324  pow2(Mst2))*pow4(Mst2) - 2*(lmMst1 - lmMst2)*pow2(Mst1)*(pow2(Mst1)*
325  pow2(Mst2) + pow4(Mst1) + pow4(Mst2))) - (1 - 2*lmMst2)*shiftst3*pow2(
326  Mst2)*(2*(1 - 2*lmMst1 + 2*lmMst2)*pow2(Mst2)*pow4(Mst1) + 2*(1 -
327  lmMst1 + lmMst2)*pow2(Mst1)*pow4(Mst2) + (2 - 6*lmMst1 + 6*lmMst2)*
328  pow6(Mst1) + pow6(Mst2))) + 3*pow2(Mst2)*(500094000*Dmglst2*(
329  585.1892843532082 - (8*B4)/3. + (32*D3)/9. - (20*DN)/9. - (20109937*
330  lmMst1)/297675. - (15886*pow2(lmMst1))/945. + lmMst2*(
331  17.112243218274966 - (144628*lmMst1)/945. + (1180*pow2(lmMst1))/9.) + (
332  169.85608465608465 - (2632*lmMst1)/9.)*pow2(lmMst2) - (92*pow3(lmMst1))
333  /27. + (4448*pow3(lmMst2))/27.) + Mgl*(-314145861731 - 4223016000*B4 +
334  111132000*DN - 7960477140*lmMst1 + 105268993200*pow2(lmMst1) + 1260*
335  lmMst2*(4972789 - 230465340*lmMst1 + 36250200*pow2(lmMst1)) + 3175200*(
336  58301 - 37135*lmMst1)*pow2(lmMst2) + 2444904000*pow3(lmMst1) +
337  69790896000*pow3(lmMst2)))*pow8(Mst1) - 166698000*(Dmglst2*(40 - 4*(99
338  + 16*lmMst1)*lmMst2 - 246*pow2(lmMst2)) - Mgl*(103 + 186*lmMst2 + 32*
339  lmMst1*(1 + lmMst2) + 91*pow2(lmMst2)))*pow2(Mst1)*pow8(Mst2) -
340  2667168000*(1 + lmMst2)*(4*Dmglst2*lmMst2 + Mgl + lmMst2*Mgl)*power10(
341  Mst2))) - 34300*Mt*pow2(MuSUSY)*(30*pow4(Mst1)*(2*Mst2*xDmglst2*pow2(
342  Dmglst2)*(6*Mst2*pow2(Mst1)*(Mst2*Mt*s2t*(12344*z4 - 88647*pow2(z2)) +
343  pow2(Mt)*(5412*z4 - 630*pow2(z2)) + pow2(Mst2)*pow2(s2t)*(10819*z4 +
344  3471*pow2(z2))) + 9*(1944*z4*pow2(Mt) + Mst2*Mt*s2t*(2498*z4 - 31083*
345  pow2(z2)) + pow2(Mst2)*pow2(s2t)*(4444*z4 + 2049*pow2(z2)))*pow3(Mst2)
346  + 2*s2t*(2636*Mt*z4 + 22654*Mst2*s2t*z4 - 259215*Mt*pow2(z2) + 31794*
347  Mst2*s2t*pow2(z2))*pow4(Mst1)) + 2*Dmglst2*Mgl*Mst2*(36*pow2(Mst1)*(-
348  5400*Dmsqst2*Mt*s2t*z3 + Mt*s2t*pow2(Mst2)*(47456*z3 + 709*z4 - 8535*
349  pow2(z2)) - 6*Mst2*pow2(Mt)*(250*z3 - 94*z4 + 21*pow2(z2)) + 3*pow2(
350  s2t)*(185*z4 + 237*pow2(z2))*pow3(Mst2)) + 27*pow2(Mst2)*(-1440*
351  Dmsqst2*Mt*s2t*z3 - 16*Mst2*(83*z3 - 27*z4)*pow2(Mt) + Mt*s2t*pow2(
352  Mst2)*(30274*z3 + 542*z4 - 5289*pow2(z2)) + 2*pow2(s2t)*(212*z4 + 237*
353  pow2(z2))*pow3(Mst2)) + 2*s2t*(1582324*Mt*z3 + 2636*Mt*z4 + 22654*Mst2*
354  s2t*z4 - 259215*Mt*pow2(z2) + 31794*Mst2*s2t*pow2(z2))*pow4(Mst1)) + 3*
355  pow2(Mgl)*((4*Mst2*Mt*s2t*(99632*z3 + 11764*z4 - 20505*pow2(z2)) + 12*
356  pow2(Mt)*(1502*z3 + 2062*z4 + 1635*pow2(z2)) - pow2(s2t)*(4420*Dmsqst2*
357  (2*z4 + 3*pow2(z2)) + pow2(Mst2)*(27446*z4 + 35823*pow2(z2))))*pow4(
358  Mst1) + 18*pow2(Mst2)*(4320*Dmsqst2*Mst2*Mt*s2t*z3 + 10*xDmsqst2*pow2(
359  Dmsqst2)*pow2(s2t)*(2*z4 + 3*pow2(z2)) + pow2(Mst2)*(8*(230*z3 + 27*z4)
360  *pow2(Mt) - 30*Dmsqst2*pow2(s2t)*(2*z4 + 3*pow2(z2))) + 5*Mt*s2t*(2386*
361  z3 + 102*z4 - 333*pow2(z2))*pow3(Mst2) + 3*pow2(s2t)*(-40*z4 + 3*pow2(
362  z2))*pow4(Mst2)) - 6*pow2(Mst1)*(-30240*Dmsqst2*Mst2*Mt*s2t*z3 - 140*
363  xDmsqst2*pow2(Dmsqst2)*pow2(s2t)*(2*z4 + 3*pow2(z2)) - 6*pow2(Mst2)*(-
364  65*Dmsqst2*pow2(s2t)*(2*z4 + 3*pow2(z2)) + 6*pow2(Mt)*(218*z3 + 50*z4 +
365  21*pow2(z2))) + 4*Mt*s2t*(-14636*z3 - 1135*z4 + 2388*pow2(z2))*pow3(
366  Mst2) + pow2(s2t)*(2276*z4 + 2523*pow2(z2))*pow4(Mst2)))) + Mgl*(180*
367  pow2(Mt)*pow4(Mst1)*(9*pow2(Mst1)*pow2(Mst2)*(Mgl*(10667 - 96*B4 + 96*
368  D3 - 48*DN - 3072*lmMst1 - 384*(-25 + 9*lmMst1)*lmMst2 - 384*(-1 +
369  lmMst1 - lmMst2)*lmMt - 384*(-13 + 4*lmMst1)*pow2(lmMst2) + 1536*pow3(
370  lmMst2)) + Dmglst2*(18936.666666666668 - 192*B4 + 192*D3 - 96*DN +
371  3648*lmMst1 - 192*(-89 + 2*lmMst1)*lmMst2 + 384*(-2 + lmMst1 - lmMst2)*
372  lmMt - 384*(-9 + 8*lmMst1)*pow2(lmMst2) + 3072*pow3(lmMst2))) + (Mgl*(
373  383185 - 2592*B4 + 2592*D3 - 1296*DN - 187704*lmMst1 + 216*lmMst2*(1733
374  + 859*lmMst2 - 6*lmMst1*(105 + 41*lmMst2) - 26*pow2(lmMst1)) - 7992*
375  pow2(lmMst1) + 3456*lmMt*(3 + 6*lmMst2 - 2*lmMst1*(3 + lmMst2) + pow2(
376  lmMst1) + pow2(lmMst2)) + 720*pow3(lmMst1) + 58032*pow3(lmMst2))*pow4(
377  Mst1))/2. + OepS2*(672*(2*Dmglst2 - 3*Mgl)*pow2(Mst1)*pow2(Mst2) -
378  8720*Mgl*pow4(Mst1)) + 72*(6*Dmglst2*(180 - 2*B4 + 2*D3 - DN + 16*
379  lmMst1 + 144*lmMst2 - 16*(-2 + lmMst1)*pow2(lmMst2) + 16*pow3(lmMst2))
380  + Mgl*(436 - 6*B4 + 6*D3 - 3*DN - 48*lmMst1 + (408 - 96*lmMst1)*lmMst2
381  + 24*lmMt - 48*(-4 + lmMst1)*pow2(lmMst2) + 48*pow3(lmMst2)))*pow4(
382  Mst2) - 243*S2*(4*(2*Dmglst2*(65 + 14*lmMst1 - 14*lmMst2) + 3*(43 - 14*
383  lmMst1 + 14*lmMst2)*Mgl)*pow2(Mst1)*pow2(Mst2) + (4*(57 - 545*lmMst1 +
384  545*lmMst2)*Mgl*pow4(Mst1))/3. + 96*(4*Dmglst2 + 3*Mgl)*pow4(Mst2))) +
385  120*T1ep*pow4(Mst1)*(36*pow2(Mt)*(-42*(2*Dmglst2 - 3*Mgl)*pow2(Mst1)*
386  pow2(Mst2) + 545*Mgl*pow4(Mst1)) - 2*Mst2*Mt*s2t*(36*(253*Dmglst2 - 68*
387  Mgl)*pow2(Mst1)*pow2(Mst2) + 2*(16421*Dmglst2 - 2823*Mgl)*pow4(Mst1) +
388  189*(5*Dmglst2 - 3*Mgl)*pow4(Mst2)) + pow2(s2t)*((34616*Dmglst2 -
389  39711*Mgl)*pow2(Mst2)*pow4(Mst1) - 780*Dmsqst2*Mgl*(9*pow2(Mst1)*pow2(
390  Mst2) + 17*pow4(Mst1)) - 18*(90*Dmsqst2*Mgl + (-516*Dmglst2 + 1057*Mgl)
391  *pow2(Mst1))*pow4(Mst2) + 54*(14*Dmglst2 - 69*Mgl)*pow6(Mst2))) + Mst2*
392  Mt*s2t*pow2(Mst1)*(Dmglst2*(36*pow2(Mst2)*(66761 + 301320*B4 - 4860*DN
393  - 205380*lmMst1 + 40480*OepS2 - 216*(2489 + 3795*lmMst1 - 3795*lmMst2)*
394  S2 + 23760*pow2(lmMst1) + 180*lmMst2*(4993 - 1956*lmMst1 + 48*pow2(
395  lmMst1)) - 1080*(-482 + 331*lmMst1)*pow2(lmMst2) + 348840*pow3(lmMst2))
396  *pow4(Mst1) + 2332800*Dmsqst2*((-2 - 5*lmMst1 + 5*lmMst2)*pow2(Mst1)*
397  pow2(Mst2) + (8 - 15*lmMst1 + 15*lmMst2)*pow4(Mst1)) + 27*pow2(Mst1)*(
398  23917 + 188640*B4 - 3600*DN - 37440*lmMst1 + 5600*OepS2 - 324*(-453 +
399  350*lmMst1 - 350*lmMst2)*S2 + 11520*pow2(lmMst1) - 2880*lmMst2*(-237 +
400  55*lmMst1 + 4*pow2(lmMst1)) - 1440*(-280 + 121*lmMst1)*pow2(lmMst2) +
401  185760*pow3(lmMst2))*pow4(Mst2) - 10*(2773621 - 1660176*B4 + 25272*DN +
402  2004408*lmMst1 - 525472*OepS2 + 108*(123113 + 98526*lmMst1 - 98526*
403  lmMst2)*S2 + 3888*pow2(lmMst1) - 144*lmMst2*(36802 - 11421*lmMst1 +
404  1728*pow2(lmMst1)) + 167184*(-14 + 15*lmMst1)*pow2(lmMst2) - 31104*
405  pow3(lmMst1) - 2227824*pow3(lmMst2))*pow6(Mst1) + 622080*(-1 + 2*lmMst2
406  + 3*pow2(lmMst2))*pow6(Mst2)) + 15*Mgl*(24*pow2(Mst2)*(75569 + 13716*B4
407  - 54*DN - 33426*lmMst1 - 1088*OepS2 + 162*(169 + 136*lmMst1 - 136*
408  lmMst2)*S2 - 2376*pow2(lmMst1) + 54*lmMst2*(1427 - 1012*lmMst1 + 16*
409  pow2(lmMst1)) - 108*(-642 + 203*lmMst1)*pow2(lmMst2) + 21060*pow3(
410  lmMst2))*pow4(Mst1) + 155520*Dmsqst2*((1 + lmMst1 - lmMst2)*pow2(Mst1)*
411  pow2(Mst2) + (1 + 3*lmMst1 - 3*lmMst2)*pow4(Mst1)) + 27*pow2(Mst1)*(
412  28683 + 5280*B4 - 48*DN - 5952*lmMst1 - 224*OepS2 + 324*(-1 + 14*lmMst1
413  - 14*lmMst2)*S2 - 768*pow2(lmMst1) - 192*lmMst2*(-214 + 73*lmMst1 + 4*
414  pow2(lmMst1)) - 96*(-268 + 57*lmMst1)*pow2(lmMst2) + 6240*pow3(lmMst2))
415  *pow4(Mst2) + 2*(1702429 + 257904*B4 - 648*DN - 748656*lmMst1 - 30112*
416  OepS2 + 108*(9185 + 5646*lmMst1 - 5646*lmMst2)*S2 + 41904*pow2(lmMst1)
417  + 216*lmMst2*(5971 - 6106*lmMst1 + 576*pow2(lmMst1)) - 41904*(-34 + 15*
418  lmMst1)*pow2(lmMst2) - 3456*pow3(lmMst1) + 507600*pow3(lmMst2))*pow6(
419  Mst1) + 41472*pow2(1 + lmMst2)*pow6(Mst2))) + 4860*s2t*xDR2DRMOD*(64*
420  Mst2*Mt*pow2(Mst1)*(((1 + lmMst2)*Mgl*(7 - 32*lmMst2 + 4*lmMst1*(7 + 3*
421  lmMst2) - 12*pow2(lmMst2)) + Dmglst2*(49 + 103*lmMst2 - 36*(1 + lmMst2)
422  *pow2(lmMst2) + 4*lmMst1*(-11 + 6*lmMst2 + 9*pow2(lmMst2))))*pow6(Mst1)
423  + 2*(pow2(Mst2)*((1 + lmMst2)*Mgl*(1 - 10*lmMst2 + 4*lmMst1*(2 +
424  lmMst2) - 4*pow2(lmMst2)) + 2*Dmglst2*(8 + 13*lmMst2 - 8*pow2(lmMst2) +
425  lmMst1*(-5 + 5*lmMst2 + 6*pow2(lmMst2)) - 6*pow3(lmMst2)))*pow4(Mst1) +
426  pow2(Mst1)*((1 + lmMst2)*Mgl*(-1 - 5*lmMst2 + lmMst1*(3 + 2*lmMst2) -
427  2*pow2(lmMst2)) + Dmglst2*(8 + 7*lmMst2 - 11*pow2(lmMst2) + lmMst1*(-3
428  + 5*lmMst2 + 6*pow2(lmMst2)) - 6*pow3(lmMst2)))*pow4(Mst2) - (1 +
429  lmMst2)*(-Dmglst2 + 3*Dmglst2*lmMst2 + Mgl + lmMst2*Mgl)*pow6(Mst2))) -
430  s2t*((15*Dmsqst2*(-1 + 2*lmMst1 - 2*lmMst2)*(2*Dmglst2 - 5*Mgl) + pow2(
431  Mst2)*(2*Dmglst2*(60 + 206*lmMst2 + 32*lmMst2*pow2(lmMst1) + lmMst1*(8
432  - 460*lmMst2 - 246*pow2(lmMst2)) + 519*pow2(lmMst2) + 214*pow3(lmMst2))
433  + Mgl*(189 + 726*lmMst2 + 32*(1 + lmMst2)*pow2(lmMst1) + 707*pow2(
434  lmMst2) - 2*lmMst1*(253 + 332*lmMst2 + 123*pow2(lmMst2)) + 214*pow3(
435  lmMst2))) + 2*pow2(Mst1)*(Mgl*(32 + 285*lmMst2 + 144*(1 + lmMst2)*pow2(
436  lmMst1) + 444*pow2(lmMst2) - lmMst1*(253 + 588*lmMst2 + 379*pow2(
437  lmMst2)) + 235*pow3(lmMst2)) + Dmglst2*(96 + 8*lmMst2*(31 + 36*pow2(
438  lmMst1)) + 556*pow2(lmMst2) - 2*lmMst1*(44 + 278*lmMst2 + 379*pow2(
439  lmMst2)) + 470*pow3(lmMst2))))*pow4(Mst1)*pow4(Mst2) + pow2(Mst1)*(-
440  135*Mgl*shiftst1*(Dmsqst2 + pow2(Mst2))*((pow2(Mst1) + pow2(Mst2))*
441  pow4(Mst2) - 2*(lmMst1 - lmMst2)*pow2(Mst1)*(pow2(Mst1)*pow2(Mst2) +
442  pow4(Mst1) + pow4(Mst2))) - 3*Dmsqst2*(10*(lmMst1 - lmMst2)*(-2*
443  Dmglst2*pow2(Mst2) + 5*Mgl*(pow2(Mst1) + pow2(Mst2)))*pow4(Mst1) + 5*(
444  2*Dmglst2 - 5*Mgl)*pow6(Mst2))) + 2*pow2(Mst2)*(2*Dmglst2*(48 + 4*
445  lmMst2*(45 + 68*pow2(lmMst1)) + 310*pow2(lmMst2) - lmMst1*(92 + 310*
446  lmMst2 + 635*pow2(lmMst2)) + 363*pow3(lmMst2)) + Mgl*(40 + 277*lmMst2 +
447  272*(1 + lmMst2)*pow2(lmMst1) + 556*pow2(lmMst2) - lmMst1*(237 + 828*
448  lmMst2 + 635*pow2(lmMst2)) + 363*pow3(lmMst2)))*pow8(Mst1) - (Dmglst2*(
449  40 - 4*(99 + 16*lmMst1)*lmMst2 - 246*pow2(lmMst2)) - Mgl*(205 + 252*
450  lmMst2 + 32*lmMst1*(1 + lmMst2) + 91*pow2(lmMst2)))*pow2(Mst1)*pow8(
451  Mst2) - 16*(1 + lmMst2)*(4*Dmglst2*lmMst2 + Mgl + lmMst2*Mgl)*power10(
452  Mst2)))))))/(1.500282e9*pow2(Mgl)*pow4(Mst1)*pow7(Mst2));
453 }
454 
455 /**
456  * @return The diagonal (2, 2) matrix element of the Higgs mass matrix as a double for the hierarchy 'H6b2qg2'
457  */
458 double H6b2qg2::getS2() const {
459  return -(oneLoopFlag*((4*Mt*MuSUSY*s2t*(4*(lmMst1 - lmMst2)*pow2(Mt) + ((-2 -
460  lmMst1 + lmMst2)*pow2(Mst1) + (2 - lmMst1 + lmMst2)*pow2(Mst2))*pow2(
461  s2t)))/Tbeta + 4*pow2(Mt)*pow2(s2t)*(2*(lmMst1 - lmMst2)*(pow2(Mst1) -
462  pow2(Mst2)) + pow2(MuSUSY)*(2 - lmMst1 + lmMst2 - (2*(lmMst1 - lmMst2)*
463  pow2(Mst1)*(pow2(Mst1) + pow2(Mst2)))/pow4(Mst2))) - (4*pow2(Mt)*pow2(
464  MuSUSY)*pow2(s2t)*(2 - lmMst1 + lmMst2 - (2*(lmMst1 - lmMst2)*pow2(
465  Mst1)*(pow2(Mst1) + pow2(Mst2)))/pow4(Mst2)))/pow2(Sbeta) + 16*(lmMst1
466  + lmMst2 - 2*lmMt)*pow4(Mt) - (-4*pow2(Mst1)*pow2(Mst2) + (2 + lmMst1 -
467  lmMst2)*pow4(Mst1) + (2 - lmMst1 + lmMst2)*pow4(Mst2))*pow4(s2t)))/32.
468  + threeLoopFlag*pow2(Al4p)*(-(pow2(Mt)*pow2(s2t)*((-5*Dmglst2*Dmsqst2*
469  (-1081 + 165*lmMst1 - 165*lmMst2)*(-2 + pow2(Sbeta))*pow2(Sbeta)*pow4(
470  Mst1))/(9.*Mgl*pow4(Mst2)) + (pow2(MuSUSY)*(53.385802469135804 + (40*
471  B4)/9. - (4*D3)/9. + (2*DN)/9. + (1672*lmMst1)/27. + (53*pow2(lmMst1))/
472  9. - lmMst2*(129.92592592592592 - 72*lmMst1 + (13*pow2(lmMst1))/3.) + (
473  2*(-470 + 147*lmMst1)*pow2(lmMst2))/9. + (16*pow3(lmMst1))/9. + (
474  Dmglst2*(-14267 + 432*B4 - 576*D3 + 360*DN - 4752*lmMst1 + 4536*lmMst2
475  + 16704*lmMst1*lmMst2 + 1404*pow2(lmMst1) - 1152*lmMst2*pow2(lmMst1) -
476  20232*pow2(lmMst2) + 8856*lmMst1*pow2(lmMst2) - 7704*pow3(lmMst2)))/(
477  162.*Mgl) - (271*pow3(lmMst2))/9. + ((628.1736268201578 + (76*B4)/9. -
478  (2*DN)/9. + (6317839*lmMst1)/396900. - (66307*pow2(lmMst1))/315. -
479  lmMst2*(12.52907281431091 - (182909*lmMst1)/315. + (274*pow2(lmMst1))/
480  3.) + (2*(-58301 + 37135*lmMst1)*pow2(lmMst2))/315. - (44*pow3(lmMst1))
481  /9. - (1256*pow3(lmMst2))/9. - (Dmglst2*(585.1892843532082 - (8*B4)/3.
482  + (32*D3)/
483  9. - (20*DN)/9. - (20109937*lmMst1)/297675. - (15886*pow2(lmMst1))/945.
484  + lmMst2*(17.112243218274966 - (144628*lmMst1)/945. + (1180*pow2(
485  lmMst1))/9.) + (2*(80257 - 138180*lmMst1)*pow2(lmMst2))/945. - (92*
486  pow3(lmMst1))/27. + (4448*pow3(lmMst2))/27.))/Mgl)*pow4(Mst1))/pow4(
487  Mst2) + (-((Mgl*(103 + 186*lmMst2 + 32*lmMst1*(1 + lmMst2) + 91*pow2(
488  lmMst2)) + Dmglst2*(-40 + 4*(99 + 16*lmMst1)*lmMst2 + 246*pow2(lmMst2))
489  )*pow2(Mst2))/(9.*pow2(Mst1)) + (5*Mgl*(2250*Dmsqst2*(1141 + 48*lmMst1*
490  (7 - 3*lmMst2) - 264*lmMst2 + 144*pow2(lmMst2)) + pow2(Mst1)*(10552777
491  + 205200*B4 - 5400*DN + 4145280*lmMst1 - 1181700*pow2(lmMst1) - 240*
492  lmMst2*(16192 - 26430*lmMst1 + 3465*pow2(lmMst1)) + 900*(-5735 + 3072*
493  lmMst1)*pow2(lmMst2) - 55800*pow3(lmMst1) - 1877400*pow3(lmMst2))) - 8*
494  Dmglst2*(405000*Dmsqst2*(4 + lmMst1 - lmMst2) + pow2(Mst1)*(2695042 -
495  40500*B4 + 54000*D3 - 33750*DN - 326895*lmMst1 - 324900*pow2(lmMst1) +
496  15*lmMst2*(-19607 - 129030*lmMst1 + 62550*pow2(lmMst1)) - 450*(-5023 +
497  5610*lmMst1)*pow2(lmMst2) + 11250*pow3(lmMst1) + 1575000*pow3(lmMst2)))
498  )/(121500.*pow2(Mst2)) + (16*(1 + lmMst2)*(4*Dmglst2*lmMst2 + Mgl +
499  lmMst2*Mgl)*pow4(Mst2))/(9.*pow4(Mst1)) + (-30*Dmsqst2*Mgl*(9*(104*
500  OepS2 + 27*(17 - 78*lmMst1 + 78*lmMst2)*S2)*pow2(Mst1)*pow2(Mst2) + 13*
501  (136*OepS2 - 27*(95 + 102*lmMst1 - 102*lmMst2)*S2)*pow4(Mst1) + 27*(8*
502  OepS2 - 81*(-15 + 2*lmMst1 - 2*lmMst2)*S2)*pow4(Mst2)) + pow2(Mst2)*(3*
503  Mgl*(-3*(8456*OepS2 - 81*(11243 + 2114*lmMst1 - 2114*lmMst2)*S2)*pow2(
504  Mst1)*pow2(Mst2) + (-52948*OepS2 + 27*(194357 + 39711*lmMst1 - 39711*
505  lmMst2)*S2)*pow4(Mst1) + 27*(-184*OepS2 + 81*(307 + 46*lmMst1 - 46*
506  lmMst2)*S2)*pow4(Mst2)) + 2*Dmglst2*(54*(344*OepS2 + 9*(15643 - 774*
507  lmMst1 + 774*lmMst2)*S2)*pow2(Mst1)*pow2(Mst2) + 4*(17308*OepS2 + 27*(
508  93919 - 12981*lmMst1 + 12981*lmMst2)*S2)*pow4(Mst1) + 27*(56*OepS2 -
509  81*(-1677 + 14*lmMst1 - 14*lmMst2)*S2)*pow4(Mst2))))/(2187.*pow6(Mst2))
510  )/Mgl - (Dmsqst2*(3.3333333333333335 - (20*lmMst2)/3. + (40*Dmglst2)/
511  Mgl - ((201.74098765432097 + (622*lmMst1)/15. + (2*(-311 + 10*lmMst1)*
512  lmMst2)/15. + (Dmglst2*(76.66666666666667 - 140*lmMst1 + 140*lmMst2))/
513  Mgl - (22*pow2(lmMst1))/3. + 6*pow2(lmMst2))*pow4(Mst1))/pow4(Mst2) - (
514  (237.28785508324435 + (16526*lmMst2)/3969. + (2*lmMst1*(-8263 + 71820*
515  lmMst2))/3969. - (520*pow2(lmMst1))/21. - (80*pow2(lmMst2))/7.)*pow6(
516  Mst1))/pow6(Mst2)))/pow2(Mst1)))/pow2(Sbeta))) + pow4(s2t)*(Dmsqst2*(
517  3.2221604938271606 + (467*lmMst1)/90. - (3.522222222222222 + 7*lmMst1)*
518  lmMst2 + (5*Dmglst2*(-75 + 26*lmMst1 - 26*lmMst2))/(6.*Mgl) + (11*pow2(
519  lmMst1))/6. + (31*pow2(lmMst2))/6.)*pow2(Mst1) + pow2(Mst2)*((5*
520  Dmsqst2*(288*Dmglst2*(1 + lmMst1 - lmMst2) + Mgl*(-1213 + 408*lmMst2 +
521  48*lmMst1*(-7 + 3*lmMst2) - 144*pow2(lmMst2))))/(216.*Mgl) - pow2(Mst1)
522  *(79.01365226337448 - B4/9. + (2*D3)/9. - DN/6. + (4372*lmMst1)/405. +
523  (lmMst2*(16051 + 22980*lmMst1 - 5175*pow2(lmMst1)))/810. - (1631*pow2(
524  lmMst1))/108. + ((-92 + 327*lmMst1)*pow2(lmMst2))/27. - (79*pow3(
525  lmMst1))/54. + (Dmglst2*(0.7822304526748971 - (2*B4)/3. + (8*D3)/9. - (
526  5*DN)/9. + (81193*lmMst1)/4050. + (137*pow2(lmMst1))/135. - (lmMst2*(
527  81643 + 86970*lmMst1 + 48150*pow2(lmMst1)))/4050. + ((4969 + 3840*
528  lmMst1)*pow2(lmMst2))/270. - (5*pow3(lmMst1))/27. - (58*pow3(lmMst2))/
529  27.))/Mgl - (115*pow3(lmMst2))/27.)) + (46.745471895783595 + B4 + D3/9.
530  - DN/9. + (34838747*lmMst1)/529200. + (50723*pow2(lmMst1))/1890. + (
531  lmMst2*(-23468297 - 17276980*lmMst1 + 3601500*pow2(lmMst1)))/529200. +
532  (4*(2941 - 2415*lmMst1)*pow2(lmMst2))/945. + (Dmsqst2*(
533  15.13649301931237 + (555521*lmMst1)/39690. - ((621671 + 200340*lmMst1)*
534  lmMst2)/39690. + (5*Dmglst2*(76 - 249*lmMst1 + 249*lmMst2))/(54.*Mgl) +
535  (53*pow2(lmMst1))/21. + (53*pow2(lmMst2))/21.))/pow2(Mst2) - (10*pow3(
536  lmMst1))/27. + (409*pow3(lmMst2))/108. + (Dmglst2*(79.58863384550371 +
537  (8287903*lmMst2)/1.1907e6 + (4.326984126984127 + (11*lmMst2)/3.)*pow2(
538  lmMst1) + lmMst1*(1.2061367262954565 - (101*lmMst2)/315. - (11*pow2(
539  lmMst2))/3.) - (51*pow2(lmMst2))/70. - (11*pow3(lmMst1))/9. + (11*pow3(
540  lmMst2))/9.))/Mgl)*pow4(Mst1) - ((25289 + 1440*B4 - 144*D3 + 72*DN +
541  22368*lmMst1 + 1908*pow2(lmMst1) - 12*lmMst2*(2296 - 2136*lmMst1 + 117*
542  pow2(lmMst1)) + 504*(-53 + 21*lmMst1)*pow2(lmMst2) + 576*pow3(lmMst1) -
543  9756*pow3(lmMst2) + ((-1080*Dmsqst2*(12*Dmglst2 + Mgl - 2*lmMst2*Mgl))/
544  pow2(Mst1) - 2*Dmglst2*(15707 - 432*B4 + 576*D3 - 360*DN + 4752*lmMst1
545  - 1404*pow2(lmMst1) + 72*lmMst2*(-277 - 264*lmMst1 + 16*pow2(lmMst1)) +
546  72*(142 - 123*lmMst1)*pow2(lmMst2) + 7704*pow3(lmMst2)))/Mgl)*pow4(
547  Mst2))/1296. - S2*((5*Dmsqst2*(253 + 42*lmMst1 - 42*lmMst2)*pow2(Mst1))
548  /6. + (15*Dmsqst2*(-15 + 2*lmMst1 - 2*lmMst2)*pow2(Mst2))/2. + (
549  476.4166666666667 + (643*lmMst1)/6. - (643*lmMst2)/6. + (Dmglst2*(
550  61.111111111111114 - 72*lmMst1 + 72*lmMst2))/Mgl)*pow2(Mst1)*pow2(Mst2)
551  + ((60*Dmsqst2*(163 + 42*lmMst1 - 42*lmMst2)*Mgl + (-2*Dmglst2*(51635 +
552  25194*lmMst1 - 25194*lmMst2) + 15*(3370 + 1077*lmMst1 - 1077*lmMst2)*
553  Mgl)*pow2(Mst2))*pow4(Mst1))/(324.*Mgl*pow2(Mst2)) + (230.25 + (69*
554  lmMst1)/2. - (69*lmMst2)/2. + (Dmglst2*(838.5 - 7*lmMst1 + 7*lmMst2))/
555  Mgl)*pow4(Mst2)) + ((OepS2*(60*Dmsqst2*Mgl*(63*pow2(Mst1)*pow2(Mst2) +
556  14*pow4(Mst1) + 27*pow4(Mst2)) + pow2(Mst2)*(-4*Dmglst2*(1944*pow2(
557  Mst1)*pow2(Mst2) + 4199*pow4(Mst1) + 189*pow4(Mst2)) + 3*Mgl*(3858*
558  pow2(Mst1)*pow2(Mst2) + 1795*pow4(Mst1) + 1242*pow4(Mst2)))))/(2187.*
559  pow2(Mst2)) + ((Mgl*(135 + 250*lmMst2 + 32*lmMst1*(1 + lmMst2) + 123*
560  pow2(lmMst2)) + Dmglst2*(-40 + (524 + 64*lmMst1)*lmMst2 + 374*pow2(
561  lmMst2)))*pow6(Mst2))/(36.*pow2(Mst1)))/Mgl) - (s2t*pow3(Mt)*(-(
562  Dmglst2*(-18*pow2(Mst2)*(-3*pow2(Mst2)*(322421 + 414720*lmMt - 73760*
563  OepS2 + 564876*S2 - 2880*(21 + 12*lmMst2 - 4*lmMt)*pow2(lmMst1) + 480*(
564  1097 - 24*lmMt)*pow2(lmMst2) - 69120*pow2(lmMt) - 40*lmMst2*(-11408 +
565  924*lmMt + 37341*S2 + 864*pow2(lmMt)) + 40*lmMst1*(-11876 - 8844*lmMst2
566  - 156*lmMt + 37341*S2 + 288*pow2(lmMst2) + 864*pow2(lmMt)) + 23040*
567  pow3(lmMst2)) + 2*pow2(MuSUSY)*(66761 + 301320*B4 - 4860*DN - 205380*
568  lmMst1 + 40480*OepS2 - 216*(2489 + 3795*lmMst1 - 3795*lmMst2)*S2 +
569  23760*pow2(lmMst1) + 180*lmMst2*(4993 - 1956*lmMst1 + 48*pow2(lmMst1))
570  - 1080*(-482 + 331*lmMst1)*pow2(lmMst2) + 348840*pow3(lmMst2)))*pow4(
571  Mst1) + 2*(5*pow2(MuSUSY)*(2773621 - 1660176*B4 + 25272*DN + 2004408*
572  lmMst1 - 525472*OepS2 + 108*(123113 + 98526*lmMst1 - 98526*lmMst2)*S2 +
573  3888*pow2(lmMst1) - 144*lmMst2*(36802 - 11421*lmMst1 + 1728*pow2(
574  lmMst1)) + 167184*(-14 + 15*lmMst1)*pow2(lmMst2) - 31104*pow3(lmMst1) -
575  2227824*pow3(lmMst2)) + 4*pow2(Mst2)*(20964397 + 4563540*lmMt -
576  2058400*OepS2 + 47545272*S2 - 9720*(266 + 74*lmMst2 - 55*lmMt)*pow2(
577  lmMst1) + 3240*(1493 + 39*lmMt)*pow2(lmMst2) + 360*lmMst2*(4724 + 5328*
578  lmMt - 115785*S2 - 1944*pow2(lmMt)) - 466560*pow2(lmMt) + 180*lmMst1*(-
579  32857 - 11844*lmMt - 18*lmMst2*(485 + 204*lmMt) + 231570*S2 + 1674*
580  pow2(lmMst2) + 3888*pow2(lmMt)) + 9720*pow3(lmMst1) + 408240*pow3(
581  lmMst2)))*pow6(Mst1) - 622080*(-1 + 2*lmMst2 + 3*pow2(lmMst2))*(2*pow2(
582  Mst2) + pow2(MuSUSY))*pow6(Mst2) + pow2(Mst1)*(-27*pow2(MuSUSY)*(23917
583  + 188640*B4 - 3600*DN - 37440*lmMst1 + 5600*OepS2 - 324*(-453 + 350*
584  lmMst1 - 350*lmMst2)*S2 + 11520*pow2(lmMst1) - 2880*lmMst2*(-237 + 55*
585  lmMst1 + 4*pow2(lmMst1)) - 1440*(-280 + 121*lmMst1)*pow2(lmMst2) +
586  185760*pow3(lmMst2))*pow4(Mst2) - 64800*Dmsqst2*(-36*(2 + 5*lmMst1 - 5*
587  lmMst2)*pow2(Mst2)*pow2(MuSUSY) + 36*pow2(Mst1)*(8*(7 - 3*lmMst1 + 6*
588  lmMst2 - 3*lmMt)*pow2(Mst2) + (8 - 15*lmMst1 + 15*lmMst2)*pow2(MuSUSY))
589  + 9*(465 + 374*lmMst2 - 4*lmMst1*(52 + 3*lmMst2 - 3*lmMt) - 2*(83 + 6*
590  lmMst2)*lmMt + 12*pow2(lmMst2))*pow4(Mst1) + (578 - 360*lmMst1 + 708*
591  lmMst2 - 348*lmMt)*pow4(Mst2)) + 270*(30183 + 45408*lmMt - 1120*OepS2 -
592  43740*S2 - 8*lmMst2*(-8398 + 588*lmMt + 2835*S2) + 2304*(-1 + lmMst2)*
593  pow2(lmMst1) + 96*(199 + 48*lmMt)*pow2(lmMst2) + 72*lmMst1*(-120 + 64*
594  lmMt - 8*lmMst2*(5 + 8*lmMt) + 315*S2 + 164*pow2(lmMst2)) - 14112*pow3(
595  lmMst2))*pow6(Mst2)))) + 3*Mgl*(6*pow2(Mst2)*(20*pow2(MuSUSY)*(75569 +
596  13716*B4 - 54*DN - 33426*lmMst1 - 1088*OepS2 + 162*(169 + 136*lmMst1 -
597  136*lmMst2)*S2 - 2376*pow2(lmMst1) + 54*lmMst2*(1427 - 1012*lmMst1 +
598  16*pow2(lmMst1)) - 108*(-642 + 203*lmMst1)*pow2(lmMst2) + 21060*pow3(
599  lmMst2)) + pow2(Mst2)*(1156193 + 198720*lmMt - 60320*OepS2 + 1414908*S2
600  - 3240*lmMst2*(42 + 32*lmMt*(1 + lmMt) + 377*S2) + 8640*(-13 + 4*lmMst2
601  + 4*lmMt)*pow2(lmMst1) + 17280*(51 - 2*lmMt)*pow2(lmMst2) - 1080*
602  lmMst1*(590 + 720*lmMst2 - 104*lmMt - 1131*S2 + 224*pow2(lmMst2) - 96*
603  pow2(lmMt)) + 207360*pow3(lmMst2)))*pow4(Mst1) + 2*(4*pow2(Mst2)*(
604  2016907 + 110160*lmMt - 109600*OepS2 + 3520152*S2 + 1080*(-158 + 6*
605  lmMst2 + 39*lmMt)*pow2(lmMst1) + 1080*(565 - 3*lmMt)*pow2(lmMst2) -
606  1080*lmMst1*(421 + 60*lmMt + lmMst2*(413 + 36*lmMt) - 2055*S2 + 129*
607  pow2(lmMst2) - 72*pow2(lmMt)) - 1080*lmMst2*(167 - 66*lmMt + 2055*S2 +
608  72*pow2(lmMt)) + 1080*pow3(lmMst1) + 131760*pow3(lmMst2)) + 5*pow2(
609  MuSUSY)*(1702429 + 257904*B4 - 648*DN - 748656*lmMst1 - 30112*OepS2 +
610  108*(9185 + 5646*lmMst1 - 5646*lmMst2)*S2 + 41904*pow2(lmMst1) + 216*
611  lmMst2*(5971 - 6106*lmMst1 + 576*pow2(lmMst1)) - 41904*(-34 + 15*
612  lmMst1)*pow2(lmMst2) - 3456*pow3(lmMst1) + 507600*pow3(lmMst2)))*pow6(
613  Mst1) + 207360*pow2(1 + lmMst2)*(2*pow2(Mst2) + pow2(MuSUSY))*pow6(
614  Mst2) + 27*pow2(Mst1)*(5*pow2(MuSUSY)*(28683 + 5280*B4 - 48*DN - 5952*
615  lmMst1 - 224*OepS2 + 324*(-1 + 14*lmMst1 - 14*lmMst2)*S2 - 768*pow2(
616  lmMst1) - 192*lmMst2*(-214 + 73*lmMst1 + 4*pow2(lmMst1)) - 96*(-268 +
617  57*lmMst1)*pow2(lmMst2) + 6240*pow3(lmMst2))*pow4(Mst2) - 7200*Dmsqst2*
618  (-4*(1 + lmMst1 - lmMst2)*pow2(Mst2)*pow2(MuSUSY) + 4*pow2(Mst1)*((6 -
619  4*lmMst1 + 8*lmMst2 - 4*lmMt)*pow2(Mst2) + (-1 - 3*lmMst1 + 3*lmMst2)*
620  pow2(MuSUSY)) + (35 + 50*lmMst2 - 4*lmMst1*(8 + lmMst2 - lmMt) - 2*(9 +
621  2*lmMst2)*lmMt + 4*pow2(lmMst2))*pow4(Mst1) - 2*(7 + 4*lmMst1 - 10*
622  lmMst2 + 6*lmMt)*pow4(Mst2)) + 2*(60759 - 12480*lmMt - 1120*OepS2 -
623  25596*S2 - 120*lmMst2*(26 + 132*lmMt + 189*S2) - 3840*(1 + lmMst2)*
624  pow2(lmMst1) + 480*(155 - 16*lmMt)*pow2(lmMst2) - 120*lmMst1*(216 + 8*
625  lmMst2*(61 - 8*lmMt) - 64*lmMt - 189*S2 + 164*pow2(lmMst2)) - 11520*
626  pow2(lmMt) + 23520*pow3(lmMst2))*pow6(Mst2)))))/(43740.*Mgl*pow2(Mst1)*
627  pow5(Mst2)) + (-3*Mgl*T1ep*(pow4(Mst1)*(16*Mst2*s2t*(941*pow2(MuSUSY)*(
628  -1 + pow2(Sbeta)) + 2740*pow2(Mst2)*pow2(Sbeta))*pow3(Mt) - 4*pow2(Mt)*
629  pow2(s2t)*(13237*pow2(Mst2)*pow2(MuSUSY)*(-1 + pow2(Sbeta)) + 20*
630  Dmsqst2*(221*pow2(MuSUSY)*(-1 + pow2(Sbeta)) + 8*pow2(Mst2)*pow2(Sbeta)
631  ) + 6857*pow2(Sbeta)*pow4(Mst2)) + 16*(1635*pow2(MuSUSY)*(-1 + pow2(
632  Sbeta)) + 1168*pow2(Mst2)*pow2(Sbeta))*pow4(Mt) + 5*(56*Dmsqst2 + 359*
633  pow2(Mst2))*pow2(Sbeta)*pow4(Mst2)*pow4(s2t) - 1756*Mt*pow2(Sbeta)*
634  pow3(s2t)*pow5(Mst2)) + 6*pow2(Mst1)*pow2(Mst2)*(8*Mst2*s2t*(136*pow2(
635  MuSUSY)*(-1 + pow2(Sbeta)) + 377*pow2(Mst2)*pow2(Sbeta))*pow3(Mt) - 4*
636  pow2(Mt)*pow2(s2t)*(390*Dmsqst2*pow2(MuSUSY)*(-1 + pow2(Sbeta)) + 1057*
637  pow2(Mst2)*pow2(MuSUSY)*(-1 + pow2(Sbeta)) + 60*Dmsqst2*pow2(Mst2)*
638  pow2(Sbeta) + 629*pow2(Sbeta)*pow4(Mst2)) + 8*(126*pow2(MuSUSY)*(-1 +
639  pow2(Sbeta)) + 209*pow2(Mst2)*pow2(Sbeta))*pow4(Mt) + (210*Dmsqst2 +
640  643*pow2(Mst2))*pow2(Sbeta)*pow4(Mst2)*pow4(s2t) - 292*Mt*pow2(Sbeta)*
641  pow3(s2t)*pow5(Mst2)) + 54*pow4(Mst2)*(-40*Dmsqst2*pow2(Mt)*pow2(
642  MuSUSY)*pow2(s2t)*(-1 + pow2(Sbeta)) + 4*pow2(Mst2)*pow2(Mt)*(-23*pow2(
643  MuSUSY)*pow2(s2t)*(-1 + pow2(Sbeta)) + 2*(7*pow2(Mt) - 5*Dmsqst2*pow2(
644  s2t))*pow2(Sbeta)) + 28*Mst2*s2t*pow2(MuSUSY)*(-1 + pow2(Sbeta))*pow3(
645  Mt) + 56*s2t*pow2(Sbeta)*pow3(Mst2)*pow3(Mt) + 2*pow2(s2t)*(-53*pow2(
646  Mt) + 5*Dmsqst2*pow2(s2t))*pow2(Sbeta)*pow4(Mst2) - 14*Mt*pow2(Sbeta)*
647  pow3(s2t)*pow5(Mst2) + 23*pow2(Sbeta)*pow4(s2t)*pow6(Mst2))) + 4*
648  Dmglst2*Mst2*T1ep*(189*pow4(Mst2)*(-4*Mst2*pow2(Mt)*pow2(MuSUSY)*pow2(
649  s2t)*(-1 + pow2(Sbeta)) + 10*s2t*(pow2(MuSUSY)*(-1 + pow2(Sbeta)) + 2*
650  pow2(Mst2)*pow2(Sbeta))*pow3(Mt) - 5*Mt*pow2(Sbeta)*pow3(s2t)*pow4(
651  Mst2) - 16*Mst2*pow2(Sbeta)*pow4(Mt) + pow2(Sbeta)*pow4(s2t)*pow5(Mst2)
652  ) + pow4(Mst1)*(-8*Mst2*pow2(Mt)*pow2(s2t)*(4327*pow2(MuSUSY)*(-1 +
653  pow2(Sbeta)) + 6921*pow2(Mst2)*pow2(Sbeta)) + 4*s2t*(16421*pow2(MuSUSY)
654  *(-1 + pow2(Sbeta)) + 51460*pow2(Mst2)*pow2(Sbeta))*pow3(Mt) - 15571*
655  Mt*pow2(Sbeta)*pow3(s2t)*pow4(Mst2) - 89312*Mst2*pow2(Sbeta)*pow4(Mt) +
656  4199*pow2(Sbeta)*pow4(s2t)*pow5(Mst2)) + 18*Mst2*pow2(Mst1)*(-12*pow2(
657  Mst2)*pow2(Mt)*pow2(s2t)*(43*pow2(MuSUSY)*(-1 + pow2(Sbeta)) + 50*pow2(
658  Mst2)*pow2(Sbeta)) + 2*Mst2*s2t*(506*pow2(MuSUSY)*(-1 + pow2(Sbeta)) +
659  1383*pow2(Mst2)*pow2(Sbeta))*pow3(Mt) + 56*(3*pow2(MuSUSY)*(-1 + pow2(
660  Sbeta)) - 23*pow2(Mst2)*pow2(Sbeta))*pow4(Mt) - 401*Mt*pow2(Sbeta)*
661  pow3(s2t)*pow5(Mst2) + 108*pow2(Sbeta)*pow4(s2t)*pow6(Mst2))))/(1458.*
662  Mgl*pow2(Sbeta)*pow6(Mst2)) - pow2(Mt)*pow2(s2t)*(((5*Dmsqst2*(368*
663  Dmglst2 + (-391 - 32*lmMst1 + 128*lmMst2)*Mgl))/18. - (pow2(Mst1)*(16*
664  Dmglst2*(1216808 + 1164855*lmMst2 - 162000*(2 + lmMst2)*lmMt + 225*(-
665  341 + 30*lmMst2)*pow2(lmMst1) + 30*lmMst1*(34484 - 16260*lmMst2 + 5400*
666  lmMt - 21825*pow2(lmMst2)) + 365400*pow2(lmMst2) - 2250*pow3(lmMst1) +
667  650250*pow3(lmMst2)) + 5*Mgl*(2367149 - 21600*D3 + 21600*DN - 5339040*
668  lmMst1 - 518400*(lmMst1 - lmMst2)*lmMt - 1564200*pow2(lmMst1) + 120*
669  lmMst2*(52322 - 4710*lmMst1 + 315*pow2(lmMst1)) - 3600*(-479 + 237*
670  lmMst1)*pow2(lmMst2) - 234000*pow3(lmMst1) + 1049400*pow3(lmMst2))))/
671  121500.)/Mgl - ((199.98139767323744 - (18614063*lmMst1)/66150. +
672  lmMst2*(293.39173091458804 - (25514*lmMst1)/945. - (286*pow2(lmMst1))/
673  9.) - (48143*pow2(lmMst1))/945. + (32*lmMt*(-2*lmMst1*(1 + lmMst2) +
674  lmMst2*(2 + lmMst2) + pow2(lmMst1)))/3. + (77.94391534391535 - (2*
675  lmMst1)/9.)*pow2(lmMst2) + (190*pow3(lmMst1))/27. - (Dmglst2*(
676  175.16754355781114 - (17578814*lmMst1)/33075. + lmMst2*(
677  257.7056386999244 + (105592*lmMst1)/315. - (208*pow2(lmMst1))/9.) - (
678  35576*pow2(lmMst1))/315. + (16*(-4376 + 2555*lmMst1)*pow2(lmMst2))/315.
679  + (64*lmMt*(2 + 5*lmMst2 - lmMst1*(5 + 2*lmMst2) + pow2(lmMst1) +
680  pow2(lmMst2)))/3. + (16*pow3(lmMst1))/27. - (2896*pow3(lmMst2))/27.))/
681  Mgl + (674*pow3(lmMst2))/27.)*pow4(Mst1))/pow2(Mst2) + (Dmsqst2*pow2(
682  Mst1)*(-((3.5881655848700444 - (470824*lmMst1)/19845. + (4*(117706 +
683  34965*lmMst1)*lmMst2)/19845. + (160*Dmglst2*(-41 + 12*lmMst1 - 12*
684  lmMst2))/(27.*Mgl) - (74*pow2(lmMst1))/21. - (74*pow2(lmMst2))/21.)*
685  pow2(Mst1)) + (17.999506172839506 + (1468*lmMst1)/45. - (4*(517 + 180*
686  lmMst1)*lmMst2)/45. + (20*Dmglst2*(113 - 6*lmMst1 + 6*lmMst2))/(9.*Mgl)
687  + 8*pow2(lmMst1) + 8*pow2(lmMst2))*pow2(Mst2)))/pow4(Mst2) - pow2(
688  MuSUSY)*(53.385802469135804 + (40*B4)/9. - (4*D3)/9. + (2*DN)/9. + (
689  1672*lmMst1)/27. + (53*pow2(lmMst1))/9. - lmMst2*(129.92592592592592 -
690  72*lmMst1 + (13*pow2(lmMst1))/3.) + (2*(-470 + 147*lmMst1)*pow2(lmMst2)
691  )/9. + (16*pow3(lmMst1))/9. - (271*pow3(lmMst2))/9. - (Dmglst2*(14267 -
692  432*B4 + 576*D3 - 360*DN + 4752*lmMst1 - 1404*pow2(lmMst1) + 72*lmMst2*
693  (-63 - 232*lmMst1 + 16*pow2(lmMst1)) + 72*(281 - 123*lmMst1)*pow2(
694  lmMst2) + 7704*pow3(lmMst2)))/(162.*Mgl) + ((628.1736268201578 + (76*
695  B4)/9. - (2*DN)/9. + (6317839*lmMst1)/396900. - (66307*pow2(lmMst1))/
696  315. - lmMst2*(12.52907281431091 - (182909*lmMst1)/315. + (274*pow2(
697  lmMst1))/3.) + (2*(-58301 + 37135*lmMst1)*pow2(lmMst2))/315. - (44*
698  pow3(lmMst1))/9. - (1256*pow3(lmMst2))/9. - (Dmglst2*(585.1892843532082
699  - (8*B4)/3. + (32*D3)/9. - (20*DN)/9. - (20109937*lmMst1)/297675. - (
700  15886*pow2(lmMst1))/945. + lmMst2*(17.112243218274966 - (144628*lmMst1)
701  /945. + (1180*pow2(lmMst1))/9.) + (169.85608465608465 - (2632*lmMst1)/
702  9.)*pow2(lmMst2) - (92*pow3(lmMst1))/27. + (4448*pow3(lmMst2))/27.))/
703  Mgl)*pow4(Mst1))/pow4(Mst2) + (-((Mgl*(103 + 186*lmMst2 + 32*lmMst1*(1
704  + lmMst2) + 91*pow2(lmMst2)) + Dmglst2*(-40 + 4*(99 + 16*lmMst1)*lmMst2
705  + 246*pow2(lmMst2)))*pow2(Mst2))/(9.*pow2(Mst1)) + (5*Mgl*(2250*
706  Dmsqst2*(1141 + 48*lmMst1*(7 - 3*lmMst2) - 264*lmMst2 + 144*pow2(
707  lmMst2)) + pow2(Mst1)*(10552777 + 205200*B4 - 5400*DN + 4145280*lmMst1
708  - 1181700*pow2(lmMst1) - 240*lmMst2*(16192 - 26430*lmMst1 + 3465*pow2(
709  lmMst1)) + 900*(-5735 + 3072*lmMst1)*pow2(lmMst2) - 55800*pow3(lmMst1)
710  - 1877400*pow3(lmMst2))) - 8*Dmglst2*(405000*Dmsqst2*(4 + lmMst1 -
711  lmMst2) + pow2(Mst1)*(2695042 - 40500*B4 + 54000*D3 - 33750*DN -
712  326895*lmMst1 - 324900*pow2(lmMst1) + 15*lmMst2*(-19607 - 129030*lmMst1
713  + 62550*pow2(lmMst1)) - 450*(-5023 + 5610*lmMst1)*pow2(lmMst2) + 11250*
714  pow3(lmMst1) + 1575000*pow3(lmMst2))))/(121500.*pow2(Mst2)) + (16*(1 +
715  lmMst2)*(4*Dmglst2*lmMst2 + Mgl + lmMst2*Mgl)*pow4(Mst2))/(9.*pow4(
716  Mst1)))/Mgl - (Dmsqst2*(3.3333333333333335 - (20*lmMst2)/3. + (40*
717  Dmglst2)/Mgl - ((201.74098765432097 + (622*lmMst1)/15. + (2*(-311 + 10*
718  lmMst1)*lmMst2)/15. + (10*Dmglst2*(23 - 42*lmMst1 + 42*lmMst2))/(3.*
719  Mgl) - (22*pow2(lmMst1))/3. + 6*pow2(lmMst2))*pow4(Mst1))/pow4(Mst2) -
720  ((237.28785508324435 + (16526*lmMst2)/3969. + (2*lmMst1*(-8263 + 71820*
721  lmMst2))/3969. - (520*pow2(lmMst1))/21. - (80*pow2(lmMst2))/7.)*pow6(
722  Mst1))/pow6(Mst2)))/pow2(Mst1)) + ((pow2(Mst2)*(259200*Dmglst2*Dmsqst2
723  + 21600*Dmsqst2*(1 - 2*lmMst2)*Mgl + 720*Mgl*(87 + 154*lmMst2 + 32*
724  lmMst1*(1 + lmMst2) + 75*pow2(lmMst2))*pow2(Mst2) + 1440*Dmglst2*(-52 +
725  2*(67 + 16*lmMst1)*lmMst2 + 91*pow2(lmMst2))*pow2(Mst2) - 96*Dmglst2*
726  pow2(Mst1)*(11674 - 120*B4 + 120*D3 - 60*DN + 690*lmMst1 + 345*pow2(
727  lmMst1) - 5*lmMst2*(-3427 - 54*lmMst1 + 96*pow2(lmMst1)) + (4515 - 480*
728  lmMst1)*pow2(lmMst2) + 960*pow3(lmMst2)) - Mgl*pow2(Mst1)*(1013263 +
729  2880*D3 - 2880*DN + 96720*lmMst1 + 34560*lmMt + 44640*pow2(lmMst1) -
730  240*lmMst2*(-2267 - 90*lmMst1 + 117*pow2(lmMst1)) + 1440*(133 + 8*
731  lmMst1)*pow2(lmMst2) + 11520*pow3(lmMst1) + 5040*pow3(lmMst2))))/(3240.
732  *pow2(Mst1)) - (32*(1 + lmMst2)*(4*Dmglst2*lmMst2 + Mgl + lmMst2*Mgl)*
733  pow6(Mst2))/(9.*pow4(Mst1)))/Mgl + (300*Dmsqst2*Mgl*(9*pow2(Mst1)*pow2(
734  Mst2)*(2*(8*OepS2 - 27*(23 + 6*lmMst1 - 6*lmMst2)*S2)*pow2(Mst2) + (
735  104*OepS2 + 27*(17 - 78*lmMst1 + 78*lmMst2)*S2)*pow2(MuSUSY)) + (4*(16*
736  OepS2 - 27*(35 + 12*lmMst1 - 12*lmMst2)*S2)*pow2(Mst2) + 13*(136*OepS2
737  - 27*(95 + 102*lmMst1 - 102*lmMst2)*S2)*pow2(MuSUSY))*pow4(Mst1) + 27*(
738  (8*OepS2 - 81*(9 + 2*lmMst1 - 2*lmMst2)*S2)*pow2(Mst2) + (8*OepS2 - 81*
739  (-15 + 2*lmMst1 - 2*lmMst2)*S2)*pow2(MuSUSY))*pow4(Mst2)) + pow2(Mst2)*
740  (3*Mgl*(6*pow2(Mst1)*pow2(Mst2)*((25160*OepS2 - 81*(9191 + 6290*lmMst1
741  - 6290*lmMst2)*S2)*pow2(Mst2) + 5*(8456*OepS2 - 81*(11243 + 2114*lmMst1
742  - 2114*lmMst2)*S2)*pow2(MuSUSY)) + ((274280*OepS2 - 27*(399127 +
743  205710*lmMst1 - 205710*lmMst2)*S2)*pow2(Mst2) + 10*(52948*OepS2 - 27*(
744  194357 + 39711*lmMst1 - 39711*lmMst2)*S2)*pow2(MuSUSY))*pow4(Mst1) +
745  27*((2120*OepS2 - 81*(-141 + 530*lmMst1 - 530*lmMst2)*S2)*pow2(Mst2) +
746  10*(184*OepS2 - 81*(307 + 46*lmMst1 - 46*lmMst2)*S2)*pow2(MuSUSY))*
747  pow4(Mst2)) - 4*Dmglst2*(54*pow2(Mst1)*pow2(Mst2)*((2000*OepS2 - 162*(
748  31 + 250*lmMst1 - 250*lmMst2)*S2)*pow2(Mst2) + 5*(344*OepS2 + 9*(15643
749  - 774*lmMst1 + 774*lmMst2)*S2)*pow2(MuSUSY)) + 2*(9*(30760*OepS2 - 27*(
750  28283 + 23070*lmMst1 - 23070*lmMst2)*S2)*pow2(Mst2) + 10*(17308*OepS2 +
751  27*(93919 - 12981*lmMst1 + 12981*lmMst2)*S2)*pow2(MuSUSY))*pow4(Mst1) +
752  135*(56*OepS2 - 81*(-1677 + 14*lmMst1 - 14*lmMst2)*S2)*pow2(MuSUSY)*
753  pow4(Mst2) - 2768742*S2*pow6(Mst2))))/(21870.*Mgl*pow6(Mst2))) + pow4(
754  Mt)*(480.98395061728394 - (640*lmMst1)/9. - (392*pow2(lmMst1))/9. + (4*
755  lmMst2*(-553 - 1224*lmMst1 + 63*pow2(lmMst1)))/81. + (32*(121 - 18*
756  lmMst1)*pow2(lmMst2))/27. + (4*lmMt*(926 - 749*lmMst2 + 6*lmMst1*(27 +
757  32*lmMst2) + 9*pow2(lmMst1) + 57*pow2(lmMst2)))/27. - (4*(-12 + lmMst1
758  + 55*lmMst2)*pow2(lmMt))/3. - (68*pow3(lmMst1))/9. + (4*Dmglst2*(773533
759  + 131775*lmMt + 35*lmMst2*(-6569 + 2220*lmMt) - 4410*pow2(lmMst1) -
760  199920*pow2(lmMst2) + 5040*lmMst1*(13 + 28*lmMst2 - 8*lmMt + 8*pow2(
761  lmMst2)) + 63000*pow2(lmMt) - 40320*pow3(lmMst2)))/(2835.*Mgl) + (8*
762  pow3(lmMst2))/9. + (184*pow3(lmMt))/3. + ((1500.0856244066115 + (
763  43574647*lmMst1)/99225. - (139432*pow2(lmMst1))/945. - (2*lmMst2*(
764  35585111 - 2612085*lmMst1 + 2072700*pow2(lmMst1)))/99225. + (2*(34339 +
765  46620*lmMst1)*pow2(lmMst2))/945. + (lmMt*(3155 + 1418*lmMst2 - 2*
766  lmMst1*(513 + 572*lmMst2) + 312*pow2(lmMst1) + 832*pow2(lmMst2)))/9. +
767  (64*(-1 + 3*lmMst1 - 3*lmMst2)*pow2(lmMt))/3. + (64*pow3(lmMst1))/27. -
768  (1600*pow3(lmMst2))/27. - (Dmglst2*(2929.938520304849 + (55510684*
769  lmMst1)/59535. - (126272*pow2(lmMst1))/189. - (4*lmMst2*(42300121 +
770  12578580*lmMst1 + 2487240*pow2(lmMst1)))/59535. + (32*(10166 - 693*
771  lmMst1)*pow2(lmMst2))/189. + (8*lmMt*(5695 + 1974*lmMst2 - 12*lmMst1*(
772  163 + 47*lmMst2) + 468*pow2(lmMst1) + 96*pow2(lmMst2)))/27. + (128*(-5
773  + 6*lmMst1 - 6*lmMst2)*pow2(lmMt))/3. + (256*pow3(lmMst1))/27. + (7424*
774  pow3(lmMst2))/27.))/Mgl)*pow4(Mst1))/pow4(Mst2) + ((4*(2*Dmglst2*(-84 +
775  (70 + 32*lmMst1)*lmMst2 + 59*pow2(lmMst2)) + Mgl*(71 + 122*lmMst2 + 32*
776  lmMst1*(1 + lmMst2) + 59*pow2(lmMst2)))*pow2(Mst2))/(9.*pow2(Mst1)) + (
777  210000*Dmglst2*Dmsqst2*(2954 - 864*lmMst1 + 1713*lmMst2 - 849*lmMt) +
778  630000*Dmsqst2*Mgl*(-103 + 42*lmMst1 + 78*lmMt - 6*lmMst2*(23 + 3*lmMt)
779  + 9*pow2(lmMst2) + 9*pow2(lmMt)) + 4*Dmglst2*pow2(Mst1)*(98884301 -
780  57865500*lmMt + 12600*(1213 + 285*lmMst2 - 225*lmMt)*pow2(lmMst1) +
781  18900*(-5953 + 310*lmMt)*pow2(lmMst2) + 13608000*pow2(lmMt) + 1260*(
782  lmMst1*(28194 + lmMst2*(61415 - 2400*lmMt) - 1075*lmMt + 13800*pow2(
783  lmMst2) - 7200*pow2(lmMt)) + lmMst2*(8581 + 6025*lmMt + 7200*pow2(lmMt)
784  )) - 252000*pow3(lmMst1) - 20727000*pow3(lmMst2)) + 35*Mgl*pow2(Mst1)*(
785  7319011 + 3223800*lmMt - 1800*(391 + 114*lmMst2 - 90*lmMt)*pow2(lmMst1)
786  + 3600*(568 + 99*lmMt)*pow2(lmMst2) - 259200*pow2(lmMt) - 120*lmMst2*(
787  22352 - 2835*lmMt + 4320*pow2(lmMt)) + 120*lmMst1*(4217 + 1215*lmMt -
788  15*lmMst2*(871 + 288*lmMt) + 3240*pow2(lmMst2) + 4320*pow2(lmMt)) +
789  14400*pow3(lmMst1) - 198000*pow3(lmMst2)))/(425250.*pow2(Mst2)) - (64*(
790  1 + lmMst2)*(4*Dmglst2*lmMst2 + Mgl + lmMst2*Mgl)*pow4(Mst2))/(9.*pow4(
791  Mst1)) + (-(pow2(MuSUSY)*(12*Dmglst2*pow2(Mst2)*(72*pow2(Mst2)*(180 -
792  2*B4 + 2*D3 - DN + 16*lmMst1 + 144*lmMst2 - 16*(-2 + lmMst1)*pow2(
793  lmMst2) + 16*pow3(lmMst2)) + pow2(Mst1)*(28405 - 288*B4 + 288*D3 - 144*
794  DN + 5472*lmMst1 - 288*(-89 + 2*lmMst1)*lmMst2 + 576*(-2 + lmMst1 -
795  lmMst2)*lmMt - 576*(-9 + 8*lmMst1)*pow2(lmMst2) + 4608*pow3(lmMst2))) +
796  Mgl*(18*pow2(Mst1)*pow2(Mst2)*(10667 - 96*B4 + 96*D3 - 48*DN - 3072*
797  lmMst1 - 384*(-25 + 9*lmMst1)*lmMst2 - 384*(-1 + lmMst1 - lmMst2)*lmMt
798  - 384*(-13 + 4*lmMst1)*pow2(lmMst2) + 1536*pow3(lmMst2)) + (383185 -
799  2592*B4 + 2592*D3 - 1296*DN - 187704*lmMst1 - 7992*pow2(lmMst1) - 216*
800  lmMst2*(-1733 + 630*lmMst1 + 26*pow2(lmMst1)) - 216*(-859 + 246*lmMst1)
801  *pow2(lmMst2) + 3456*lmMt*(3 + 6*lmMst2 - 2*lmMst1*(3 + lmMst2) + pow2(
802  lmMst1) + pow2(lmMst2)) + 720*pow3(lmMst1) + 58032*pow3(lmMst2))*pow4(
803  Mst1) + 144*(436 - 6*B4 + 6*D3 - 3*DN - 48*lmMst1 + (408 - 96*lmMst1)*
804  lmMst2 + 24*lmMt - 48*(-4 + lmMst1)*pow2(lmMst2) + 48*pow3(lmMst2))*
805  pow4(Mst2))))/486. + (16*OepS2*(4*Dmglst2*pow2(Mst2)*(63*pow2(Mst1)*(
806  23*pow2(Mst2) - 3*pow2(MuSUSY)) + 5582*pow4(Mst1) + 189*pow4(Mst2)) +
807  3*Mgl*((1168*pow2(Mst2) + 1635*pow2(MuSUSY))*pow4(Mst1) + pow2(Mst1)*(
808  378*pow2(Mst2)*pow2(MuSUSY) + 627*pow4(Mst2)) + 189*pow6(Mst2))))/2187.
809  + (4*Dmsqst2*(-771750*Dmglst2*pow2(Mst2)*((-401 - 274*lmMst2 + 2*
810  lmMst1*(71 + 2*lmMst2 - 2*lmMt) + 132*lmMt + 4*lmMst2*lmMt - 4*pow2(
811  lmMst2))*pow4(Mst1) - 12*pow4(Mst2)) + Mgl*(343*(-91321 + 30*lmMst1*(
812  1717 + 120*lmMst2 - 150*lmMt) + 40500*lmMt + 30*lmMst2*(-3067 + 150*
813  lmMt) + 450*pow2(lmMst1) - 4050*pow2(lmMst2))*pow2(Mst2)*pow4(Mst1) +
814  2*(-26331136 + 105*lmMst1*(236317 + 35070*lmMst2 - 36750*lmMt) +
815  11962125*lmMt + 210*lmMst2*(-175121 + 18375*lmMt) + 88200*pow2(lmMst1)
816  - 3770550*pow2(lmMst2))*pow6(Mst1) - 771750*(-1 + 2*lmMst2)*pow6(Mst2))
817  ))/(231525.*pow2(Mst1)) - (S2*(4*Dmglst2*pow2(Mst2)*(45*pow2(Mst1)*(23*
818  (115 + 588*lmMst1 - 588*lmMst2)*pow2(Mst2) - 126*(65 + 14*lmMst1 - 14*
819  lmMst2)*pow2(MuSUSY)) + (2001242 + 2344440*lmMst1 - 2344440*lmMst2)*
820  pow4(Mst1) - 81*(3360*pow2(Mst2)*pow2(MuSUSY) + (1593 - 980*lmMst1 +
821  980*lmMst2)*pow4(Mst2))) + 42*Mgl*((8*(8653 + 4380*lmMst1 - 4380*
822  lmMst2)*pow2(Mst2) + 90*(-57 + 545*lmMst1 - 545*lmMst2)*pow2(MuSUSY))*
823  pow4(Mst1) + 9*pow2(Mst1)*(90*(-43 + 14*lmMst1 - 14*lmMst2)*pow2(Mst2)*
824  pow2(MuSUSY) + (4163 + 2090*lmMst1 - 2090*lmMst2)*pow4(Mst2)) + 81*(-
825  240*pow2(MuSUSY)*pow4(Mst2) + (109 + 70*lmMst1 - 70*lmMst2)*pow6(Mst2))
826  )))/2835.)/pow6(Mst2))/Mgl) + (pow2(MuSUSY)*pow3(Mt)*(-(Dmglst2*Mst2*(-
827  27*pow2(Mst1)*pow2(Mst2)*(2880*Mst2*Mt*(180 - 2*B4 + 2*D3 - DN + 16*
828  lmMst1 + 144*lmMst2 - 216*S2 - 16*(-2 + lmMst1)*pow2(lmMst2) + 16*pow3(
829  lmMst2)) + s2t*(-86400*Dmsqst2*(2 + 5*lmMst1 - 5*lmMst2) + pow2(Mst2)*(
830  23917 + 188640*B4 - 3600*DN - 37440*lmMst1 + 5600*OepS2 - 324*(-453 +
831  350*lmMst1 - 350*lmMst2)*S2 + 11520*pow2(lmMst1) - 2880*lmMst2*(-237 +
832  55*lmMst1 + 4*pow2(lmMst1)) - 1440*(-280 + 121*lmMst1)*pow2(lmMst2) +
833  185760*pow3(lmMst2)))) - 36*(30*Mst2*Mt*(28405 - 288*B4 + 288*D3 - 144*
834  DN + 5472*lmMst1 - 288*(-89 + 2*lmMst1)*lmMst2 + 576*(-2 + lmMst1 -
835  lmMst2)*lmMt + 224*OepS2 - 324*(65 + 14*lmMst1 - 14*lmMst2)*S2 - 576*(-
836  9 + 8*lmMst1)*pow2(lmMst2) + 4608*pow3(lmMst2)) + s2t*(64800*Dmsqst2*(8
837  - 15*lmMst1 + 15*lmMst2) + pow2(Mst2)*(66761 + 301320*B4 - 4860*DN -
838  205380*lmMst1 + 40480*OepS2 - 216*(2489 + 3795*lmMst1 - 3795*lmMst2)*S2
839  + 23760*pow2(lmMst1) + 180*lmMst2*(4993 - 1956*lmMst1 + 48*pow2(lmMst1)
840  ) - 1080*(-482 + 331*lmMst1)*pow2(lmMst2) + 348840*pow3(lmMst2))))*
841  pow4(Mst1) + s2t*(10*(2773621 - 1660176*B4 + 25272*DN + 2004408*lmMst1
842  - 525472*OepS2 + 108*(123113 + 98526*lmMst1 - 98526*lmMst2)*S2 + 3888*
843  pow2(lmMst1) - 144*lmMst2*(36802 - 11421*lmMst1 + 1728*pow2(lmMst1)) +
844  167184*(-14 + 15*lmMst1)*pow2(lmMst2) - 31104*pow3(lmMst1) - 2227824*
845  pow3(lmMst2))*pow6(Mst1) - 622080*(-1 + 2*lmMst2 + 3*pow2(lmMst2))*
846  pow6(Mst2)))) + 15*Mgl*(27*pow2(Mst1)*(32*Mst2*Mt*(436 - 6*B4 + 6*D3 -
847  3*DN - 48*lmMst1 + (408 - 96*lmMst1)*lmMst2 + 24*lmMt - 972*S2 - 48*(-4
848  + lmMst1)*pow2(lmMst2) + 48*pow3(lmMst2)) + s2t*(5760*Dmsqst2*(1 +
849  lmMst1 - lmMst2) + pow2(Mst2)*(28683 + 5280*B4 - 48*DN - 5952*lmMst1 -
850  224*OepS2 + 324*(-1 + 14*lmMst1 - 14*lmMst2)*S2 - 768*pow2(lmMst1) -
851  192*lmMst2*(-214 + 73*lmMst1 + 4*pow2(lmMst1)) - 96*(-268 + 57*lmMst1)*
852  pow2(lmMst2) + 6240*pow3(lmMst2))))*pow3(Mst2) + 12*Mst2*(9*Mst2*Mt*(
853  10667 - 96*B4 + 96*D3 - 48*DN - 3072*lmMst1 - 384*(-25 + 9*lmMst1)*
854  lmMst2 - 384*(-1 + lmMst1 - lmMst2)*lmMt - 224*OepS2 + 324*(-43 + 14*
855  lmMst1 - 14*lmMst2)*S2 - 384*(-13 + 4*lmMst1)*pow2(lmMst2) + 1536*pow3(
856  lmMst2)) + s2t*(12960*Dmsqst2*(1 + 3*lmMst1 - 3*lmMst2) + 2*pow2(Mst2)*
857  (75569 + 13716*B4 - 54*DN - 33426*lmMst1 - 1088*OepS2 + 162*(169 + 136*
858  lmMst1 - 136*lmMst2)*S2 - 2376*pow2(lmMst1) + 54*lmMst2*(1427 - 1012*
859  lmMst1 + 16*pow2(lmMst1)) - 108*(-642 + 203*lmMst1)*pow2(lmMst2) +
860  21060*pow3(lmMst2))))*pow4(Mst1) + 2*(3*Mt*(383185 - 2592*B4 + 2592*D3
861  - 1296*DN - 187704*lmMst1 - 17440*OepS2 + 648*(-57 + 545*lmMst1 - 545*
862  lmMst2)*S2 - 7992*pow2(lmMst1) - 216*lmMst2*(-1733 + 630*lmMst1 + 26*
863  pow2(lmMst1)) - 216*(-859 + 246*lmMst1)*pow2(lmMst2) + 3456*lmMt*(3 +
864  6*lmMst2 - 2*lmMst1*(3 + lmMst2) + pow2(lmMst1) + pow2(lmMst2)) + 720*
865  pow3(lmMst1) + 58032*pow3(lmMst2)) + Mst2*s2t*(1702429 + 257904*B4 -
866  648*DN - 748656*lmMst1 - 30112*OepS2 + 108*(9185 + 5646*lmMst1 - 5646*
867  lmMst2)*S2 + 41904*pow2(lmMst1) + 216*lmMst2*(5971 - 6106*lmMst1 + 576*
868  pow2(lmMst1)) - 41904*(-34 + 15*lmMst1)*pow2(lmMst2) - 3456*pow3(
869  lmMst1) + 507600*pow3(lmMst2)))*pow6(Mst1) + 41472*s2t*pow2(1 + lmMst2)
870  *pow7(Mst2))))/(43740.*Mgl*pow2(Mst1)*pow2(Sbeta)*pow6(Mst2)) + (Mt*
871  pow3(s2t)*(-(Dmglst2*(-18*(27211 + 36720*B4 + 1080*DN - 298440*lmMst1 +
872  64160*OepS2 - 108*(14033 + 12030*lmMst1 - 12030*lmMst2)*S2 + 12960*
873  pow2(lmMst1) + 360*lmMst2*(-503 - 636*lmMst1 + 144*pow2(lmMst1)) -
874  2160*(30 + 89*lmMst1)*pow2(lmMst2) + 140400*pow3(lmMst2))*pow4(Mst1)*
875  pow4(Mst2) + pow2(Mst2)*(31897243 - 2491360*OepS2 + 90290268*S2 - 360*
876  lmMst2*(18652 + 140139*S2) + 38880*(37 - 40*lmMst2)*pow2(lmMst1) +
877  3188160*pow2(lmMst2) + 360*lmMst1*(17410 - 12852*lmMst2 + 140139*S2 +
878  11232*pow2(lmMst2)) - 311040*pow3(lmMst1) - 2177280*pow3(lmMst2))*pow6(
879  Mst1) + pow2(Mst1)*(-583200*Dmsqst2*(4*(12 - 5*lmMst1 + 5*lmMst2)*pow2(
880  Mst1)*pow2(Mst2) + (40 - 3*lmMst1 + 3*lmMst2)*pow4(Mst1) - 4*(2 + 5*
881  lmMst1 - 5*lmMst2)*pow4(Mst2)) - 27*(69997 + 188640*B4 - 3600*DN -
882  37440*lmMst1 + 5600*OepS2 - 324*(-453 + 350*lmMst1 - 350*lmMst2)*S2 +
883  11520*pow2(lmMst1) - 2880*lmMst2*(-205 + 55*lmMst1 + 4*pow2(lmMst1)) -
884  1440*(-184 + 121*lmMst1)*pow2(lmMst2) + 185760*pow3(lmMst2))*pow6(Mst2)
885  ) - 622080*(-1 + 2*lmMst2 + 3*pow2(lmMst2))*pow8(Mst2))) + 15*Mgl*(6*(
886  51041 + 7344*B4 + 216*DN - 80136*lmMst1 - 2336*OepS2 + 324*(347 + 146*
887  lmMst1 - 146*lmMst2)*S2 - 2592*pow2(lmMst1) + 216*lmMst2*(-221 - 428*
888  lmMst1 + 48*pow2(lmMst1)) - 432*(-122 + 89*lmMst1)*pow2(lmMst2) +
889  28080*pow3(lmMst2))*pow4(Mst1)*pow4(Mst2) - 38880*Dmsqst2*pow2(Mst1)*(
890  4*(1 - lmMst1 + lmMst2)*pow2(Mst1)*pow2(Mst2) + (4 - lmMst1 + lmMst2)*
891  pow4(Mst1) - 4*(1 + lmMst1 - lmMst2)*pow4(Mst2)) + pow2(Mst2)*(551987 -
892  14048*OepS2 + 661068*S2 - 216*lmMst2*(46 + 1317*S2) + 864*(205 + 216*
893  lmMst2)*pow2(lmMst1) + 216000*pow2(lmMst2) - 216*lmMst1*(248 + 1820*
894  lmMst2 - 1317*S2 + 1632*pow2(lmMst2)) - 6912*pow3(lmMst1) + 172800*
895  pow3(lmMst2))*pow6(Mst1) + 27*pow2(Mst1)*(25611 + 5280*B4 - 48*DN -
896  5952*lmMst1 - 224*OepS2 + 324*(-1 + 14*lmMst1 - 14*lmMst2)*S2 - 768*
897  pow2(lmMst1) - 192*lmMst2*(-182 + 73*lmMst1 + 4*pow2(lmMst1)) - 96*(-
898  236 + 57*lmMst1)*pow2(lmMst2) + 6240*pow3(lmMst2))*pow6(Mst2) + 41472*
899  pow2(1 + lmMst2)*pow8(Mst2))))/(87480.*Mgl*pow2(Mst1)*pow3(Mst2)) + ((-
900  10*shiftst1*(Dmsqst2*(3 - 2*lmMst2) + (1 - 2*lmMst2)*pow2(Mst2))*(pow4(
901  Mst2)*(pow2(s2t)*(-8*pow2(Mt) + (pow2(Mst1) - pow2(Mst2))*pow2(s2t))*
902  pow2(Sbeta)*pow4(Mst1) + pow2(Mst1)*(4*pow2(Mt)*pow2(s2t)*(pow2(MuSUSY)
903  + (4*pow2(Mst2) - pow2(MuSUSY))*pow2(Sbeta)) + pow2(Sbeta)*(16*pow4(Mt)
904  - pow4(Mst2)*pow4(s2t))) + pow2(Mst2)*(-4*pow2(Mt)*pow2(s2t)*(pow2(
905  MuSUSY)*(-1 + pow2(Sbeta)) + 2*pow2(Mst2)*pow2(Sbeta)) + pow2(Sbeta)*(
906  16*pow4(Mt) + pow4(Mst2)*pow4(s2t)))) + (-2*lmMst1 + 2*lmMst2)*pow2(
907  Mst1)*pow2(s2t)*(-4*pow2(Mt)*pow2(MuSUSY)*(-1 + pow2(Sbeta))*(pow4(
908  Mst1) + pow4(Mst2)) - pow2(Mst1)*pow2(Mst2)*(4*pow2(Mt)*pow2(MuSUSY)*(-
909  1 + pow2(Sbeta)) + pow2(s2t)*pow2(Sbeta)*pow4(Mst2)) + pow2(s2t)*pow2(
910  Sbeta)*pow8(Mst2))))/pow2(Sbeta) + (1 - 2*lmMst2)*shiftst3*pow2(Mst2)*(
911  (8*(-1 + lmMst1 - lmMst2)*pow2(Mst1)*pow2(Mt)*pow2(s2t) - 16*pow4(Mt) -
912  (-4*pow2(Mst1)*pow2(Mst2) + (3 + 2*lmMst1 - 2*lmMst2)*pow4(Mst1) +
913  pow4(Mst2))*pow4(s2t))*pow6(Mst2) - (4*pow2(Mt)*pow2(MuSUSY)*pow2(s2t)*
914  (2*(1 - 2*lmMst1 + 2*lmMst2)*pow2(Mst2)*pow4(Mst1) + 2*(1 - lmMst1 +
915  lmMst2)*pow2(Mst1)*pow4(Mst2) + (2 - 6*lmMst1 + 6*lmMst2)*pow6(Mst1) +
916  pow6(Mst2)))/pow2(Sbeta) + 4*pow2(Mt)*pow2(s2t)*(pow2(MuSUSY)*pow6(
917  Mst2) + 2*(pow2(MuSUSY)*((1 - 2*lmMst1 + 2*lmMst2)*pow2(Mst2)*pow4(
918  Mst1) + (1 - lmMst1 + lmMst2)*pow2(Mst1)*pow4(Mst2) + (1 - 3*lmMst1 +
919  3*lmMst2)*pow6(Mst1)) + pow8(Mst2)))))/(12.*pow2(Mst1)*pow6(Mst2)) + (
920  MuSUSY*(Mt*((-((-1 + 2*lmMst2)*pow2(Mst2)*(-(s2t*shiftst3*(4*pow2(Mt) +
921  (1 + lmMst1 - lmMst2)*pow2(Mst1)*pow2(s2t))) + (10*shiftst1 + shiftst3)
922  *pow2(Mst2)*pow3(s2t)))/3. - (10*s2t*shiftst1*((1 - 2*lmMst2)*pow2(
923  Mst2)*(4*pow2(Mst2)*pow2(Mt) - 2*pow2(Mst1)*(2*pow2(Mt) + (-lmMst1 +
924  lmMst2)*pow2(Mst2)*pow2(s2t)) + pow2(s2t)*pow4(Mst1)) + Dmsqst2*(3 - 2*
925  lmMst2)*(-4*pow2(Mst1)*pow2(Mt) + 4*pow2(Mst2)*pow2(Mt) + 2*(lmMst1 -
926  lmMst2)*pow2(Mst1)*pow2(Mst2)*pow2(s2t) + pow2(s2t)*(pow4(Mst1) - pow4(
927  Mst2)))))/(3.*pow2(Mst2)))/pow2(Mst1) - pow3(s2t)*(-(pow2(Mst2)*(21005
928  + 1440*B4 - 144*D3 + 72*DN + 21216*lmMst1 + 1908*pow2(lmMst1) - 12*
929  lmMst2*(2950 - 2040*lmMst1 + 117*pow2(lmMst1)) + 108*(-283 + 98*lmMst1)
930  *pow2(lmMst2) + 576*pow3(lmMst1) - 9756*pow3(lmMst2) + ((-1080*Dmsqst2*
931  (12*Dmglst2 + Mgl - 2*lmMst2*Mgl))/pow2(Mst1) - 2*Dmglst2*(14987 - 432*
932  B4 + 576*D3 - 360*DN + 4752*lmMst1 - 1404*pow2(lmMst1) + 144*lmMst2*(-
933  81 - 124*lmMst1 + 8*pow2(lmMst1)) + 36*(439 - 246*lmMst1)*pow2(lmMst2)
934  + 7704*pow3(lmMst2)))/Mgl))/324. + ((5*Dmsqst2*(144*Dmglst2*(5 + 2*
935  lmMst1 - 2*lmMst2) + Mgl*(-1177 + 336*lmMst2 + 48*lmMst1*(-7 + 3*
936  lmMst2) - 144*pow2(lmMst2))))/54. + (pow2(Mst1)*(-5*Mgl*(4627751 +
937  48600*B4 + 5400*D3 - 5400*DN + 1320240*lmMst1 - 662400*pow2(lmMst1) -
938  30*lmMst2*(12148 - 76560*lmMst1 + 12105*pow2(lmMst1)) + 2250*(-583 +
939  438*lmMst1)*pow2(lmMst2) - 49500*pow3(lmMst1) - 572850*pow3(lmMst2)) +
940  Dmglst2*(5430043 + 524580*lmMst2 + 900*(-859 + 3690*lmMst2)*pow2(
941  lmMst1) + 1454400*pow2(lmMst2) - 60*lmMst1*(51493 + 24630*lmMst2 +
942  112950*pow2(lmMst2)) + 45000*pow3(lmMst1) + 3411000*pow3(lmMst2))))/
943  60750.)/Mgl - ((193.90296838394383 - (61388401*lmMst1)/396900. +
944  lmMst2*(147.3919148400101 + (302047*lmMst1)/945. - (514*pow2(lmMst1))/
945  9.) - (152966*pow2(lmMst1))/945. - (157.75767195767196 - 122*lmMst1)*
946  pow2(lmMst2) - (70*pow3(lmMst1))/27. - (1682*pow3(lmMst2))/27. - (
947  Dmglst2*(407.7379592503276 + (2171669*lmMst2)/59535. + (2*(433 + 6552*
948  lmMst2)*pow2(lmMst1))/189. + (3974*pow2(lmMst2))/189. - (lmMst1*(
949  2740559 + 1524600*lmMst2 + 7514640*pow2(lmMst2)))/59535. - (112*pow3(
950  lmMst1))/27. + (1648*pow3(lmMst2))/27.))/Mgl)*pow4(Mst1))/pow2(Mst2) +
951  (((Mgl*(119 + 218*lmMst2 + 32*lmMst1*(1 + lmMst2) + 107*pow2(lmMst2)) +
952  Dmglst2*(-40 + (460 + 64*lmMst1)*lmMst2 + 310*pow2(lmMst2)))*pow4(Mst2)
953  )/(9.*pow2(Mst1)) + (-(Dmsqst2*pow2(Mst1)*(2315250*Dmglst2*((419 - 57*
954  lmMst1 + 57*lmMst2)*pow2(Mst1) + 9*(55 - 34*lmMst1 + 34*lmMst2)*pow2(
955  Mst2)) + Mgl*((222209689 + 285243840*lmMst2 + 1260*lmMst1*(-226384 +
956  172935*lmMst2) - 108949050*pow2(lmMst1) - 108949050*pow2(lmMst2))*pow2(
957  Mst1) - 6174*(-97294 + 17235*lmMst2 - 45*lmMst1*(233 + 330*lmMst2) +
958  7425*pow2(lmMst1) + 7425*pow2(lmMst2))*pow2(Mst2))))/6.251175e6 + (4*
959  OepS2*(60*Dmsqst2*Mgl*(90*pow2(Mst1)*pow2(Mst2) + 104*pow4(Mst1) + 27*
960  pow4(Mst2)) + pow2(Mst2)*(-4*Dmglst2*(2133*pow2(Mst1)*pow2(Mst2) +
961  6332*pow4(Mst1) + 189*pow4(Mst2)) + 3*Mgl*(5100*pow2(Mst1)*pow2(Mst2) +
962  6895*pow4(Mst1) + 1242*pow4(Mst2)))))/2187. - (S2*(30*Dmsqst2*Mgl*(18*(
963  59 + 30*lmMst1 - 30*lmMst2)*pow2(Mst1)*pow2(Mst2) + 4*(347 + 156*lmMst1
964  - 156*lmMst2)*pow4(Mst1) + 81*(-15 + 2*lmMst1 - 2*lmMst2)*pow4(Mst2)) +
965  pow2(Mst2)*(3*Mgl*(180*(424 + 85*lmMst1 - 85*lmMst2)*pow2(Mst1)*pow2(
966  Mst2) + 35*(2662 + 591*lmMst1 - 591*lmMst2)*pow4(Mst1) + 81*(307 + 46*
967  lmMst1 - 46*lmMst2)*pow4(Mst2)) + Dmglst2*(18*(16193 - 1422*lmMst1 +
968  1422*lmMst2)*pow2(Mst1)*pow2(Mst2) + (188204 - 75984*lmMst1 + 75984*
969  lmMst2)*pow4(Mst1) + 162*(1677 - 14*lmMst1 + 14*lmMst2)*pow4(Mst2)))))/
970  81.)/pow4(Mst2) - (16*(1 + lmMst2)*(4*Dmglst2*lmMst2 + Mgl + lmMst2*
971  Mgl)*pow6(Mst2))/(9.*pow4(Mst1)))/Mgl) + (6*Mgl*T1ep*(27*pow4(Mst2)*(-
972  40*Dmsqst2*s2t*pow2(Mt) - 21*Mt*pow2(s2t)*pow3(Mst2) + 28*Mst2*pow3(Mt)
973  + pow2(Mst2)*(-106*s2t*pow2(Mt) + 20*Dmsqst2*pow3(s2t)) + 46*pow3(s2t)*
974  pow4(Mst2)) + 3*pow2(Mst1)*pow2(Mst2)*(-600*Dmsqst2*s2t*pow2(Mt) - 627*
975  Mt*pow2(s2t)*pow3(Mst2) + 1760*Mst2*pow3(Mt) + pow2(Mst2)*(-3470*s2t*
976  pow2(Mt) + 600*Dmsqst2*pow3(s2t)) + 1700*pow3(s2t)*pow4(Mst2)) + pow4(
977  Mst1)*(-2120*Dmsqst2*s2t*pow2(Mt) - 3198*Mt*pow2(s2t)*pow3(Mst2) +
978  16240*Mst2*pow3(Mt) - 4*pow2(Mst2)*(6031*s2t*pow2(Mt) - 520*Dmsqst2*
979  pow3(s2t)) + 6895*pow3(s2t)*pow4(Mst2))) - 2*Dmglst2*Mst2*T1ep*(27*
980  pow2(Mst1)*pow2(Mst2)*(-800*Mst2*s2t*pow2(Mt) - 907*Mt*pow2(Mst2)*pow2(
981  s2t) + 1984*pow3(Mt) + 316*pow3(Mst2)*pow3(s2t)) + 2*(-66168*Mst2*s2t*
982  pow2(Mt) - 35601*Mt*pow2(Mst2)*pow2(s2t) + 129704*pow3(Mt) + 12664*
983  pow3(Mst2)*pow3(s2t))*pow4(Mst1) + 189*(20*pow3(Mt)*pow4(Mst2) - 15*Mt*
984  pow2(s2t)*pow6(Mst2) + 4*pow3(s2t)*pow7(Mst2))))/(729.*Mgl*pow6(Mst2)))
985  + (pow2(Mt)*(34300*Mst2*pow2(Mst1)*pow2(Mt)*(-(Dmglst2*(216*pow2(Mst2)*
986  (97837 + 71580*lmMt - 9920*OepS2 + 43272*S2 - 360*(23 + 8*lmMst2 - 4*
987  lmMt)*pow2(lmMst1) + 720*(97 + 2*lmMt)*pow2(lmMst2) - 8640*pow2(lmMt) -
988  30*lmMst2*(-2911 + 396*lmMt + 6696*S2 + 144*pow2(lmMt)) + 10*lmMst1*(-
989  6157 + 642*lmMt - 6*lmMst2*(791 + 48*lmMt) + 20088*S2 + 882*pow2(
990  lmMst2) + 432*pow2(lmMt)) - 5940*pow3(lmMst2))*pow4(Mst1) - 129600*
991  Dmsqst2*((101 - 90*lmMst1 + 177*lmMst2 - 87*lmMt)*pow2(Mst1)*pow2(Mst2)
992  + (497 - 306*lmMst1 + 609*lmMst2 - 303*lmMt)*pow4(Mst1)) + 135*pow2(
993  Mst1)*(57495 + 45408*lmMt - 1120*OepS2 - 43740*S2 - 8*lmMst2*(-6952 +
994  588*lmMt + 2835*S2) + 2304*(-1 + lmMst2)*pow2(lmMst1) + 96*(79 + 48*
995  lmMt)*pow2(lmMst2) + 72*lmMst1*(-88 + 64*lmMt - 8*lmMst2*(9 + 8*lmMt) +
996  315*S2 + 164*pow2(lmMst2)) - 14112*pow3(lmMst2))*pow4(Mst2) + 20*(
997  5659217 + 1592460*lmMt - 518816*OepS2 + 9976392*S2 - 972*(569 + 180*
998  lmMst2 - 126*lmMt)*pow2(lmMst1) + 324*(5353 + 126*lmMt)*pow2(lmMst2) -
999  186624*pow2(lmMt) + 72*lmMst1*(-27653 - 3015*lmMt - 18*lmMst2*(689 +
1000  126*lmMt) + 145917*S2 + 2160*pow2(lmMst2) + 2592*pow2(lmMt)) - 36*
1001  lmMst2*(-39031 - 3204*lmMt + 291834*S2 + 5184*pow2(lmMt)) + 1944*pow3(
1002  lmMst1) + 17496*pow3(lmMst2))*pow6(Mst1) - 622080*(-1 + 2*lmMst2 + 3*
1003  pow2(lmMst2))*pow6(Mst2))) + 3*Mgl*(48*pow2(Mst2)*(110219 - 1080*lmMt -
1004  4400*OepS2 + 74034*S2 + 540*(-15 + 4*lmMt)*pow2(lmMst1) + 810*(121 - 8*
1005  lmMt)*pow2(lmMst2) - 135*lmMst1*(337 + lmMst2*(588 - 32*lmMt) - 132*
1006  lmMt - 660*S2 + 194*pow2(lmMst2) - 48*pow2(lmMt)) - 6480*pow2(lmMt) -
1007  405*lmMst2*(31 + 54*lmMt + 220*S2 + 16*pow2(lmMt)) + 26190*pow3(lmMst2)
1008  )*pow4(Mst1) + 388800*Dmsqst2*((5 + 2*lmMst1 - 5*lmMst2 + 3*lmMt)*pow2(
1009  Mst1)*pow2(Mst2) + (1 + 6*lmMst1 - 13*lmMst2 + 7*lmMt)*pow4(Mst1)) +
1010  27*pow2(Mst1)*(56439 - 24000*lmMt - 1120*OepS2 - 25596*S2 - 360*lmMst2*
1011  (-12 + 44*lmMt + 63*S2) - 3840*(1 + lmMst2)*pow2(lmMst1) + 480*(163 -
1012  16*lmMt)*pow2(lmMst2) - 120*lmMst1*(184 + 8*lmMst2*(57 - 8*lmMt) - 64*
1013  lmMt - 189*S2 + 164*pow2(lmMst2)) - 11520*pow2(lmMt) + 23520*pow3(
1014  lmMst2))*pow4(Mst2) + 20*(678923 + 19440*lmMt - 32480*OepS2 + 881712*S2
1015  + 108*(-457 + 12*lmMst2 + 126*lmMt)*pow2(lmMst1) + 540*(661 - 30*lmMt)*
1016  pow2(lmMst2) - 108*lmMst1*(1841 + lmMst2*(2626 - 24*lmMt) - 420*lmMt -
1017  6090*S2 + 840*pow2(lmMst2) - 288*pow2(lmMt)) - 15552*pow2(lmMt) - 108*
1018  lmMst2*(619 + 498*lmMt + 6090*S2 + 288*pow2(lmMt)) + 216*pow3(lmMst1) +
1019  89208*pow3(lmMst2))*pow6(Mst1) + 207360*pow2(1 + lmMst2)*pow6(Mst2))) -
1020  25725*Mst2*pow2(Mst1)*pow2(s2t)*(Dmglst2*(9*(195293 + 639360*B4 - 8640*
1021  DN - 709200*lmMst1 + 145120*OepS2 - 108*(23989 + 27210*lmMst1 - 27210*
1022  lmMst2)*S2 + 60480*pow2(lmMst1) + 720*lmMst2*(2149 - 1296*lmMst1 + 96*
1023  pow2(lmMst1)) - 8640*(-101 + 105*lmMst1)*pow2(lmMst2) + 838080*pow3(
1024  lmMst2))*pow4(Mst1)*pow4(Mst2) - 2*pow2(Mst2)*(15069803 - 2877120*B4 +
1025  38880*DN + 6325200*lmMst1 - 1898720*OepS2 + 108*(525961 + 356010*lmMst1
1026  - 356010*lmMst2)*S2 + 447120*pow2(lmMst1) - 360*lmMst2*(28667 - 5238*
1027  lmMst1 + 3024*pow2(lmMst1)) + 38880*(-60 + 157*lmMst1)*pow2(lmMst2) -
1028  155520*pow3(lmMst1) - 4860000*pow3(lmMst2))*pow6(Mst1) + 583200*
1029  Dmsqst2*(40*(1 - lmMst1 + lmMst2)*pow2(Mst2)*pow4(Mst1) - 4*(2 + 5*
1030  lmMst1 - 5*lmMst2)*pow2(Mst1)*pow4(Mst2) + (80 - 43*lmMst1 + 43*lmMst2)
1031  *pow6(Mst1)) + 27*pow2(Mst1)*(46957 + 188640*B4 - 3600*DN - 37440*
1032  lmMst1 + 5600*OepS2 - 324*(-453 + 350*lmMst1 - 350*lmMst2)*S2 + 11520*
1033  pow2(lmMst1) - 2880*lmMst2*(-221 + 55*lmMst1 + 4*pow2(lmMst1)) - 1440*(
1034  -232 + 121*lmMst1)*pow2(lmMst2) + 185760*pow3(lmMst2))*pow6(Mst2) +
1035  622080*(-1 + 2*lmMst2 + 3*pow2(lmMst2))*pow8(Mst2)) + 15*Mgl*(3*(346405
1036  + 62208*B4 + 246672*lmMst2 - 6688*OepS2 - 324*(-685 + 418*lmMst2)*S2 +
1037  1728*(-7 + 8*lmMst2)*pow2(lmMst1) + 323136*pow2(lmMst2) - 216*lmMst1*(
1038  990 + 1440*lmMst2 - 627*S2 + 584*pow2(lmMst2)) + 112320*pow3(lmMst2))*
1039  pow4(Mst1)*pow4(Mst2) - 38880*Dmsqst2*pow2(Mst1)*(8*(-lmMst1 + lmMst2)*
1040  pow2(Mst1)*pow2(Mst2) + (4 - 9*lmMst1 + 9*lmMst2)*pow4(Mst1) - 4*(1 +
1041  lmMst1 - lmMst2)*pow4(Mst2)) + 2*pow2(Mst2)*(795601 + 93312*B4 +
1042  365040*lmMst2 - 17056*OepS2 + 663444*S2 - 345384*lmMst2*S2 + 432*(163 +
1043  264*lmMst2)*pow2(lmMst1) + 592704*pow2(lmMst2) - 216*lmMst1*(1609 +
1044  3070*lmMst2 - 1599*S2 + 1692*pow2(lmMst2)) - 3456*pow3(lmMst1) +
1045  254880*pow3(lmMst2))*pow6(Mst1) + 27*pow2(Mst1)*(27147 + 5280*B4 - 48*
1046  DN - 5952*lmMst1 - 224*OepS2 + 324*(-1 + 14*lmMst1 - 14*lmMst2)*S2 -
1047  768*pow2(lmMst1) - 192*lmMst2*(-198 + 73*lmMst1 + 4*pow2(lmMst1)) -
1048  288*(-84 + 19*lmMst1)*pow2(lmMst2) + 6240*pow3(lmMst2))*pow6(Mst2) +
1049  41472*pow2(1 + lmMst2)*pow8(Mst2))) - 6*Mt*s2t*(-20*Dmsqst2*pow2(Mst1)*
1050  (27783000*Dmglst2*pow2(Mst2)*(82*pow2(Mst1)*pow2(Mst2) + (195 - 6*
1051  lmMst1 + 6*lmMst2)*pow4(Mst1) + 36*pow4(Mst2)) + Mgl*(-3087*(339977 -
1052  20000*OepS2 + 1080*lmMst2*(89 - 375*S2) + 1714500*S2 + 1080*lmMst1*(-89
1053  + 60*lmMst2 + 375*S2) - 32400*(pow2(lmMst1) + pow2(lmMst2)))*pow2(Mst2)
1054  *pow4(Mst1) - 1157625*(1101 - 32*OepS2 + 2916*S2 + 24*lmMst1*(4 + 27*
1055  S2) - 24*lmMst2*(10 + 27*S2))*pow2(Mst1)*pow4(Mst2) - (1094369501 -
1056  72716000*OepS2 + 2520*lmMst2*(235453 - 584325*S2) + 5940931500*S2 +
1057  2520*lmMst1*(-235453 + 114345*lmMst2 + 584325*S2) - 144074700*(pow2(
1058  lmMst1) + pow2(lmMst2)))*pow6(Mst1) + 83349000*(1 - 2*lmMst2)*pow6(
1059  Mst2))) + pow2(Mst2)*(12*Dmglst2*(617400*(12454 - 120*B4 + 120*D3 - 60*
1060  DN + 690*lmMst1 - 17091*S2 + 345*pow2(lmMst1) - 5*lmMst2*(-3121 + 42*
1061  lmMst1 + 96*pow2(lmMst1)) + (3630 - 480*lmMst1)*pow2(lmMst2) + 960*
1062  pow3(lmMst2))*pow4(Mst1)*pow4(Mst2) + 2744*pow2(Mst2)*(3856958 - 27000*
1063  B4 + 27000*D3 - 13500*DN + 1270770*lmMst1 + 162000*(-2 + lmMst1 -
1064  lmMst2)*lmMt + 150000*OepS2 - 30375*(139 + 100*lmMst1 - 100*lmMst2)*S2
1065  + 900*pow2(lmMst1) - 30*lmMst2*(-153166 + 17835*lmMst1 + 3375*pow2(
1066  lmMst1)) - 450*(-2627 + 1695*lmMst1)*pow2(lmMst2) - 2250*pow3(lmMst1) +
1067  866250*pow3(lmMst2))*pow6(Mst1) - 9261000*(-52 + 2*(51 + 16*lmMst1)*
1068  lmMst2 + 59*pow2(lmMst2))*pow2(Mst1)*pow6(Mst2) + 5*(1297790971 -
1069  14817600*B4 + 14817600*D3 - 7408800*DN + 3134593140*lmMst1 + 504347200*
1070  OepS2 - 740880*(17269 + 13785*lmMst1 - 13785*lmMst2)*S2 + 426711600*
1071  pow2(lmMst1) + 420*lmMst2*(2917823 - 3813600*lmMst1 + 97020*pow2(
1072  lmMst1)) - 176400*(-8677 + 5439*lmMst1)*pow2(lmMst2) - 88905600*lmMt*(4
1073  + 6*lmMst2 - 2*lmMst1*(3 + lmMst2) + pow2(lmMst1) + pow2(lmMst2)) -
1074  3704400*pow3(lmMst1) + 922395600*pow3(lmMst2))*pow8(Mst1) + 296352000*
1075  lmMst2*(1 + lmMst2)*pow8(Mst2)) + Mgl*(77175*(979423 + 2880*D3 - 2880*
1076  DN + 73680*lmMst1 + 34560*lmMt - 25440*OepS2 + 972*(-141 + 530*lmMst1 -
1077  530*lmMst2)*S2 + 44640*pow2(lmMst1) - 240*lmMst2*(-1901 + 6*lmMst1 +
1078  117*pow2(lmMst1)) + 720*(207 + 16*lmMst1)*pow2(lmMst2) + 11520*pow3(
1079  lmMst1) + 5040*pow3(lmMst2))*pow4(Mst1)*pow4(Mst2) + 5145*pow2(Mst2)*(
1080  19425643 + 518400*lmMt - 1388000*OepS2 + 120*lmMst2*(165994 + 8640*lmMt
1081  - 234225*S2) + 27723060*S2 - 3600*(683 + 96*lmMst2)*pow2(lmMst1) +
1082  5684400*pow2(lmMst2) - 120*lmMst1*(84094 + 9600*lmMst2 + 8640*lmMt -
1083  234225*S2 + 12780*pow2(lmMst2)) - 295200*pow3(lmMst1) + 2174400*pow3(
1084  lmMst2))*pow6(Mst1) - 55566000*(71 + 122*lmMst2 + 32*lmMst1*(1 +
1085  lmMst2) + 59*pow2(lmMst2))*pow2(Mst1)*pow6(Mst2) + (149949681779 +
1086  2667168000*lmMt - 16549064000*OepS2 + 1260*lmMst2*(141677449 + 8467200*
1087  lmMt - 265967100*S2) + 512266658400*S2 - 264600*(90913 + 36750*lmMst2 -
1088  10080*lmMt)*pow2(lmMst1) + 264600*(189227 + 10080*lmMt)*pow2(lmMst2) -
1089  1260*lmMst1*(99165049 + 8467200*lmMt + 420*lmMst2*(28997 + 10080*lmMt)
1090  - 265967100*S2 + 6306300*pow2(lmMst2)) + 240786000*pow3(lmMst1) +
1091  17429202000*pow3(lmMst2))*pow8(Mst1) + 889056000*pow2(1 + lmMst2)*pow8(
1092  Mst2))))))/(7.50141e8*Mgl*pow4(Mst1)*pow6(Mst2))))/Tbeta) - Al4p*((
1093  twoLoopFlag*((-72*Mt*pow3(s2t)*(-(Mgl*(4*(3 + lmMst1*(2 + lmMst2) -
1094  pow2(lmMst2))*pow2(Mst1)*pow2(Mst2) + (3 + 2*lmMst1 - 2*lmMst2)*pow4(
1095  Mst1) + 4*(-4 + lmMst1 - 3*lmMst2 + lmMst1*lmMst2 - pow2(lmMst2))*pow4(
1096  Mst2))) + Dmglst2*(-4*(1 + lmMst1*(-2 + lmMst2) + 4*lmMst2 - pow2(
1097  lmMst2))*pow2(Mst1)*pow2(Mst2) + (1 + 6*lmMst1 - 6*lmMst2)*pow4(Mst1) +
1098  4*(6 + lmMst1 + lmMst2 - lmMst1*lmMst2 + pow2(lmMst2))*pow4(Mst2))))/
1099  Mst2 + (32*pow4(Mt)*(2*Dmglst2*((53 - 18*lmMst1 + 24*lmMst2 - 24*lmMt)*
1100  pow2(Mst1)*pow4(Mst2) + 18*((5 + lmMst2*(11 - 2*lmMt) - 2*lmMst1*(4 +
1101  lmMst2 - lmMt) - 3*lmMt + 2*pow2(lmMst2))*pow2(Mst2)*pow4(Mst1) + (3 -
1102  6*lmMst2*(-5 + lmMt) - 5*lmMt + lmMst1*(-25 - 6*lmMst2 + 6*lmMt) + 6*
1103  pow2(lmMst2))*pow6(Mst1)) - 18*lmMst2*pow6(Mst2)) + 9*Mgl*(2*(2 + 2*
1104  lmMst1*(3 + lmMst2 - lmMt) + lmMt + lmMst2*(-7 + 2*lmMt) - 2*pow2(
1105  lmMst2))*pow2(Mst2)*pow4(Mst1) + (3 + 2*lmMst1*(3 + lmMst2) + lmMt +
1106  lmMst2*(-5 + 4*lmMt) + pow2(lmMst1) - pow2(lmMst2) - 6*pow2(lmMt))*
1107  pow2(Mst1)*pow4(Mst2) + (9 + lmMst1*(22 + 6*lmMst2 - 6*lmMt) + 6*
1108  lmMst2*(-4 + lmMt) + 2*lmMt - 6*pow2(lmMst2))*pow6(Mst1) - 2*(1 +
1109  lmMst2)*pow6(Mst2))))/(pow2(Mst1)*pow4(Mst2)) - (144*s2t*pow3(Mt)*(
1110  Dmglst2*(4*pow2(Mst1)*pow2(Mst2)*((6 + 13*lmMst2 - 4*lmMt - 2*lmMst2*
1111  lmMt + lmMst1*(-9 - 2*lmMst2 + 2*lmMt) + 2*pow2(lmMst2))*pow2(Mst2) + (
1112  -11 + 2*lmMst2 + lmMst1*(-4 + 3*lmMst2) - 3*pow2(lmMst2))*pow2(MuSUSY))
1113  - (4*(1 - 29*lmMst2 + lmMst1*(25 + 6*lmMst2 - 6*lmMt) + 4*lmMt + 6*
1114  lmMst2*lmMt - 6*pow2(lmMst2))*pow2(Mst2) + (65 + lmMst1*(34 - 20*
1115  lmMst2) - 26*lmMst2 + 20*pow2(lmMst2))*pow2(MuSUSY))*pow4(Mst1) - 4*(6
1116  + lmMst1 + lmMst2 - lmMst1*lmMst2 + pow2(lmMst2))*pow2(MuSUSY)*pow4(
1117  Mst2) + 8*(5 + lmMst1*(-1 + lmMst2) + lmMst2 - pow2(lmMst2))*pow6(Mst2)
1118  ) + Mgl*((4*(5 - 7*lmMst2 + lmMst1*(7 + 2*lmMst2 - 2*lmMt) + 2*lmMst2*
1119  lmMt - 2*pow2(lmMst2))*pow2(Mst2) + (-21 - 38*lmMst2 + 10*lmMst1*(3 +
1120  2*lmMst2) - 20*pow2(lmMst2))*pow2(MuSUSY))*pow4(Mst1) + 4*((-4 + lmMst1
1121  - 3*lmMst2 + lmMst1*lmMst2 - pow2(lmMst2))*pow2(MuSUSY)*pow4(Mst2) +
1122  pow2(Mst1)*((-5 - 6*lmMst2 + lmMst1*(4 + 3*lmMst2) - 3*pow2(lmMst2))*
1123  pow2(Mst2)*pow2(MuSUSY) + (4 - 5*lmMst2 + lmMst1*(5 + 2*lmMst2 - 2*
1124  lmMt) + 2*lmMst2*lmMt - 2*pow2(lmMst2))*pow4(Mst2)) + (3 - 4*lmMst2 +
1125  2*(lmMst1 + lmMst1*lmMst2 + lmMt) - 2*pow2(lmMst2))*pow6(Mst2)))))/
1126  pow5(Mst2) + (36*Mt*MuSUSY*(16*pow3(Mt)*(Mgl*(13 + 2*lmMst1*(6 + 3*
1127  lmMst2 - 2*lmMt) + 2*lmMt + 2*lmMst2*(-7 + 2*lmMt) - 6*pow2(lmMst2))*
1128  pow4(Mst1) + Dmglst2*(11 - 6*lmMst1*lmMst2 - 8*lmMst2*(-5 + lmMt) + 8*
1129  lmMst1*(-4 + lmMt) - 8*lmMt + 6*pow2(lmMst2))*pow4(Mst1) + 2*Dmglst2*((
1130  7 + 7*lmMst2 + lmMst1*(-5 + lmMt) - 2*lmMt - lmMst2*lmMt)*pow2(Mst1)*
1131  pow2(Mst2) + (5 + lmMst1*(-1 + lmMst2) + lmMst2 - pow2(lmMst2))*pow4(
1132  Mst2)) + 2*Mgl*((4 + lmMst1*(3 + 2*lmMst2 - lmMt) + lmMst2*(-4 + lmMt)
1133  + lmMt - 2*pow2(lmMst2))*pow2(Mst1)*pow2(Mst2) + (2 + lmMst1 + (-2 +
1134  lmMst1)*lmMst2 + lmMt - pow2(lmMst2))*pow4(Mst2))) + 6*Mt*pow2(Mst2)*
1135  pow2(s2t)*(Dmglst2*(4*(5 + lmMst1*(3 - 2*lmMst2) - 3*lmMst2 + 2*pow2(
1136  lmMst2))*pow2(Mst1)*pow2(Mst2) + (21 + lmMst1*(18 - 8*lmMst2) - 18*
1137  lmMst2 + 8*pow2(lmMst2))*pow4(Mst1) + 4*(6 + lmMst1 + lmMst2 - lmMst1*
1138  lmMst2 + pow2(lmMst2))*pow4(Mst2)) + Mgl*(4*(1 + 3*lmMst2 - lmMst1*(3 +
1139  2*lmMst2) + 2*pow2(lmMst2))*pow2(Mst1)*pow2(Mst2) + (1 + 14*lmMst2 - 2*
1140  lmMst1*(7 + 4*lmMst2) + 8*pow2(lmMst2))*pow4(Mst1) + 4*(4 + 3*lmMst2 -
1141  lmMst1*(1 + lmMst2) + pow2(lmMst2))*pow4(Mst2))) + (pow3(Mst2)*pow3(
1142  s2t)*(-4*Dmglst2*(2*(1 + 2*lmMst1 - lmMst2)*pow2(Mst2)*pow4(Mst1) + 2*(
1143  1 + lmMst1 - lmMst2 + 2*lmMst1*lmMst2 - 2*pow2(lmMst2))*pow2(Mst1)*
1144  pow4(Mst2) + (1 + 2*lmMst1 - 2*lmMst2)*pow6(Mst1) - 2*lmMst2*pow6(Mst2)
1145  ) + Mgl*(2*(-16 + 6*lmMst2 - 2*lmMst1*(8 + 5*lmMst2) + 3*pow2(lmMst1) +
1146  7*pow2(lmMst2))*pow2(Mst2)*pow4(Mst1) - 2*(-12 - 18*lmMst2 + 2*lmMst1*(
1147  5 + 3*lmMst2) + pow2(lmMst1) - 7*pow2(lmMst2))*pow2(Mst1)*pow4(Mst2) +
1148  (3 + lmMst1*(2 - 32*lmMst2) - 2*lmMst2 + 16*pow2(lmMst1) + 16*pow2(
1149  lmMst2))*pow6(Mst1) + 4*(1 + lmMst2)*pow6(Mst2))))/pow2(Mst1) + (8*
1150  Mst2*s2t*pow2(Mt)*(Dmglst2*(4*(1 - lmMst1 + lmMst2)*pow2(Mst2)*pow4(
1151  Mst1) + 2*(1 + 2*lmMst2)*pow2(Mst1)*pow4(Mst2) + (4 - 8*lmMst1 + 8*
1152  lmMst2)*pow6(Mst1) - 4*lmMst2*pow6(Mst2)) - Mgl*(-2*lmMst1*((1 + 2*
1153  lmMst2)*(pow2(Mst1) + pow2(Mst2))*pow4(Mst1) + (3 + lmMst2)*pow2(Mst1)*
1154  pow4(Mst2)) + pow2(lmMst1)*(2*pow2(Mst2)*pow4(Mst1) - pow2(Mst1)*pow4(
1155  Mst2) + 2*pow6(Mst1)) + pow2(lmMst2)*(2*pow2(Mst2)*pow4(Mst1) + 3*pow2(
1156  Mst1)*pow4(Mst2) + 2*pow6(Mst1)) + 2*pow6(Mst2) + 2*lmMst2*(pow2(Mst2)*
1157  pow4(Mst1) + 2*pow2(Mst1)*pow4(Mst2) + pow6(Mst1) + pow6(Mst2)))))/
1158  pow2(Mst1)))/(Tbeta*pow5(Mst2)) - 36*pow2(Mt)*pow2(s2t)*(4*(Dmglst2*(2
1159  - 4*lmMst1) + Mgl*(2*lmMst1*(-2 + lmMst2) + lmMst2*(2 + lmMst2) - 3*
1160  pow2(lmMst1)))*pow2(Mst1) + 4*(Dmglst2*(2 + 8*lmMst2) + Mgl*(2 - 2*
1161  lmMst2 + 2*lmMst1*(3 + lmMst2) + pow2(lmMst1) - 3*pow2(lmMst2)))*pow2(
1162  Mst2) - (16*Dmglst2*(lmMst1 - lmMst2)*pow4(Mst1))/pow2(Mst2) + (-8*(2*
1163  Dmglst2*lmMst2 + Mgl + lmMst2*Mgl)*pow4(Mst2) + (pow2(MuSUSY)*(4*
1164  Dmglst2*(2*(2 - 3*lmMst2 + lmMst1*(3 + 2*lmMst2) - 2*pow2(lmMst2))*
1165  pow2(Mst2)*pow4(Mst1) + 2*(1 + lmMst1 - 2*lmMst2 + 2*lmMst1*lmMst2 - 2*
1166  pow2(lmMst2))*pow2(Mst1)*pow4(Mst2) + (5 - 8*lmMst2 + 4*lmMst1*(2 +
1167  lmMst2) - 4*pow2(lmMst2))*pow6(Mst1) - 2*lmMst2*pow6(Mst2)) + Mgl*(-4*(
1168  -1 - 13*lmMst1 + 13*lmMst2 - 8*lmMst1*lmMst2 + pow2(lmMst1) + 7*pow2(
1169  lmMst2))*pow2(Mst2)*pow4(Mst1) + 2*(-14 + 10*lmMst1 - 20*lmMst2 + 6*
1170  lmMst1*lmMst2 + pow2(lmMst1) - 7*pow2(lmMst2))*pow2(Mst1)*pow4(Mst2) +
1171  (1 + 50*lmMst1 - 50*lmMst2 + 64*lmMst1*lmMst2 - 20*pow2(lmMst1) - 44*
1172  pow2(lmMst2))*pow6(Mst1) - 4*(1 + lmMst2)*pow6(Mst2))))/pow4(Mst2))/
1173  pow2(Mst1)) + (-9*pow4(s2t)*(4*Dmglst2*(-2*(lmMst1 - 2*lmMst1*lmMst2 +
1174  2*pow2(lmMst2))*pow2(Mst2)*pow4(Mst1) - 2*(1 + lmMst1 + 2*lmMst1*lmMst2
1175  - 2*pow2(lmMst2))*pow2(Mst1)*pow4(Mst2) + (1 + 2*lmMst1)*pow6(Mst1) +
1176  2*lmMst2*pow6(Mst2)) + Mgl*(-4*(14 + 6*lmMst2 + lmMst1*(3 + 2*lmMst2) -
1177  2*pow2(lmMst1))*pow2(Mst2)*pow4(Mst1) - 2*(-10 - 16*lmMst2 + 2*lmMst1*(
1178  5 + 3*lmMst2) + pow2(lmMst1) - 7*pow2(lmMst2))*pow2(Mst1)*pow4(Mst2) +
1179  (35 + lmMst1*(34 - 12*lmMst2) - 14*lmMst2 + 10*pow2(lmMst1) + 2*pow2(
1180  lmMst2))*pow6(Mst1) + 4*(1 + lmMst2)*pow6(Mst2))) - (36*s2t*pow2(Mt)*
1181  pow2(MuSUSY)*(Mgl*(4*(4*Mt*(5 + 6*lmMst2 - lmMst1*(4 + 3*lmMst2) + 3*
1182  pow2(lmMst2)) + Mst2*s2t*(-1 + 13*lmMst2 - lmMst1*(13 + 8*lmMst2) +
1183  pow2(lmMst1) + 7*pow2(lmMst2)))*pow2(Mst2)*pow4(Mst1) + 2*(-(Mst2*s2t*(
1184  -14 - 20*lmMst2 + 2*lmMst1*(5 + 3*lmMst2) + pow2(lmMst1) - 7*pow2(
1185  lmMst2))) + 8*Mt*(4 + 3*lmMst2 - lmMst1*(1 + lmMst2) + pow2(lmMst2)))*
1186  pow2(Mst1)*pow4(Mst2) + (Mst2*s2t*(-1 + 50*lmMst2 - 2*lmMst1*(25 + 32*
1187  lmMst2) + 20*pow2(lmMst1) + 44*pow2(lmMst2)) + Mt*(84 + 152*lmMst2 -
1188  40*lmMst1*(3 + 2*lmMst2) + 80*pow2(lmMst2)))*pow6(Mst1) + 4*(1 +
1189  lmMst2)*s2t*pow7(Mst2)) + 4*Dmglst2*((Mst2*s2t*(-5 + 8*lmMst2 - 4*
1190  lmMst1*(2 + lmMst2) + 4*pow2(lmMst2)) + Mt*(65 + lmMst1*(34 - 20*
1191  lmMst2) - 26*lmMst2 + 20*pow2(lmMst2)))*pow6(Mst1) + 2*((Mst2*s2t*(-2 +
1192  3*lmMst2 - lmMst1*(3 + 2*lmMst2) + 2*pow2(lmMst2)) + Mt*(22 + lmMst1*(8
1193  - 6*lmMst2) - 4*lmMst2 + 6*pow2(lmMst2)))*pow2(Mst2)*pow4(Mst1) + (-(
1194  Mst2*s2t*(1 + lmMst1 - 2*lmMst2 + 2*lmMst1*lmMst2 - 2*pow2(lmMst2))) +
1195  2*Mt*(6 + lmMst1 + lmMst2 - lmMst1*lmMst2 + pow2(lmMst2)))*pow2(Mst1)*
1196  pow4(Mst2) + lmMst2*s2t*pow7(Mst2)))))/(pow2(Sbeta)*pow5(Mst2)))/pow2(
1197  Mst1)))/(216.*Mgl) + (xDmglst2*pow2(Dmglst2)*(-(twoLoopFlag*((36*Mt*
1198  pow3(s2t)*(4*(3 - lmMst1*(-2 + lmMst2) - 4*lmMst2 + pow2(lmMst2))*pow2(
1199  Mst1)*pow2(Mst2) + (7 - 6*lmMst1 + 6*lmMst2)*pow4(Mst1) + 4*(14 -
1200  lmMst1*(-2 + lmMst2) + pow2(lmMst2))*pow4(Mst2)))/Mst2 + (32*pow4(Mt)*(
1201  -9*(-27 - 19*lmMst2 + 2*lmMst1*(6 + lmMst2 - lmMt) + 7*lmMt + 2*lmMst2*
1202  lmMt - 2*pow2(lmMst2))*pow2(Mst2)*pow4(Mst1) + (-2 + 9*lmMst1 + 3*
1203  lmMst2 + 15*lmMt)*pow2(Mst1)*pow4(Mst2) + 27*(23 + 38*lmMst2 - 9*lmMt -
1204  6*lmMst2*lmMt + lmMst1*(-29 - 6*lmMst2 + 6*lmMt) + 6*pow2(lmMst2))*
1205  pow6(Mst1) + 9*(-2 + 3*lmMst2)*pow6(Mst2)))/(pow2(Mst1)*pow4(Mst2)) + (
1206  8*s2t*pow3(Mt)*(9*(4*(-28 - 41*lmMst2 + lmMst1*(31 + 6*lmMst2 - 6*lmMt)
1207  + 10*lmMt + 6*lmMst2*lmMt - 6*pow2(lmMst2))*pow2(Mst2) + (-199 + 26*
1208  lmMst2 + lmMst1*(-34 + 20*lmMst2) - 20*pow2(lmMst2))*pow2(MuSUSY))*
1209  pow4(Mst1) + 36*(-14 + lmMst1*(-2 + lmMst2) - pow2(lmMst2))*pow2(
1210  MuSUSY)*pow4(Mst2) + 36*pow2(Mst1)*((-31 + 3*lmMst1*(-2 + lmMst2) + 4*
1211  lmMst2 - 3*pow2(lmMst2))*pow2(Mst2)*pow2(MuSUSY) + (-13 + 2*lmMst1 - 4*
1212  lmMst2 + 2*lmMt)*pow4(Mst2)) + 2*(161 + 36*lmMst1*(-2 + lmMst2) + 78*
1213  lmMst2 - 6*lmMt - 36*pow2(lmMst2))*pow6(Mst2)))/pow5(Mst2) + (12*pow2(
1214  Mt)*pow2(s2t)*(2*pow4(Mst1)*(9*(4 - lmMst1 + lmMst2 + 2*lmMst1*lmMst2 -
1215  2*pow2(lmMst2))*pow2(Mst2)*pow2(MuSUSY) + (-7 + 6*lmMst1 - 24*lmMst2)*
1216  pow4(Mst2)) + (12*(-4 + 5*lmMst1 - 5*lmMst2)*pow2(Mst2) + 9*(9 + 4*
1217  lmMst1*(-1 + lmMst2) + 4*lmMst2 - 4*pow2(lmMst2))*pow2(MuSUSY))*pow6(
1218  Mst1) - 6*(-2 + 3*lmMst2)*(2*pow2(Mst2) + pow2(MuSUSY))*pow6(Mst2) + 2*
1219  pow2(Mst1)*(3*(10 - 3*lmMst1 + 6*lmMst1*lmMst2 - 6*pow2(lmMst2))*pow2(
1220  MuSUSY)*pow4(Mst2) + (-23 + 36*lmMst2)*pow6(Mst2))))/(pow2(Mst1)*pow4(
1221  Mst2)) + (9*pow4(s2t)*(-6*(-2 + lmMst1 - 2*lmMst1*lmMst2 + 2*pow2(
1222  lmMst2))*pow2(Mst2)*pow4(Mst1) + 6*(-2 + lmMst1 - 2*lmMst2 - 2*lmMst1*
1223  lmMst2 + 2*pow2(lmMst2))*pow2(Mst1)*pow4(Mst2) + (1 + 6*lmMst1)*pow6(
1224  Mst1) + 2*(-2 + 3*lmMst2)*pow6(Mst2)) + (4*Mt*MuSUSY*((9*Mt*MuSUSY*s2t*
1225  (-2*(4*Mt*(-31 + 3*lmMst1*(-2 + lmMst2) + 4*lmMst2 - 3*pow2(lmMst2)) +
1226  3*Mst2*s2t*(4 + lmMst2 + lmMst1*(-1 + 2*lmMst2) - 2*pow2(lmMst2)))*
1227  pow2(Mst2)*pow4(Mst1) - 2*(Mst2*s2t*(10 + lmMst1*(-3 + 6*lmMst2) - 6*
1228  pow2(lmMst2)) + 4*Mt*(-14 + lmMst1*(-2 + lmMst2) - pow2(lmMst2)))*pow2(
1229  Mst1)*pow4(Mst2) + (-3*Mst2*s2t*(9 + 4*lmMst1*(-1 + lmMst2) + 4*lmMst2
1230  - 4*pow2(lmMst2)) + Mt*(398 + lmMst1*(68 - 40*lmMst2) - 52*lmMst2 + 40*
1231  pow2(lmMst2)))*pow6(Mst1) + 2*(-2 + 3*lmMst2)*s2t*pow7(Mst2)))/pow2(
1232  Sbeta) - (-2*pow2(Mst2)*(36*(3 - lmMst1 + lmMst2)*Mst2*s2t*pow2(Mt) +
1233  54*Mt*(-17 + 2*lmMst1*(-2 + lmMst2) + 4*lmMst2 - 2*pow2(lmMst2))*pow2(
1234  Mst2)*pow2(s2t) + 4*(29 - 18*lmMst1*(-1 + lmMst2) - 3*lmMst2 - 15*lmMt
1235  + 18*pow2(lmMst2))*pow3(Mt) + 9*(2 + 3*lmMst2)*pow3(Mst2)*pow3(s2t))*
1236  pow4(Mst1) + 2*pow2(Mst1)*(6*(-11 + 18*lmMst2)*Mst2*s2t*pow2(Mt) + 54*
1237  Mt*(14 - lmMst1*(-2 + lmMst2) + pow2(lmMst2))*pow2(Mst2)*pow2(s2t) + 4*
1238  (79 + 18*lmMst1*(-2 + lmMst2) + 39*lmMst2 - 3*lmMt - 18*pow2(lmMst2))*
1239  pow3(Mt) - 9*(8 + 3*lmMst2 + lmMst1*(-3 + 6*lmMst2) - 6*pow2(lmMst2))*
1240  pow3(Mst2)*pow3(s2t))*pow4(Mst2) - (72*(7 - 6*lmMst1 + 6*lmMst2)*Mst2*
1241  s2t*pow2(Mt) - 27*Mt*(75 + lmMst1*(10 - 8*lmMst2) - 10*lmMst2 + 8*pow2(
1242  lmMst2))*pow2(Mst2)*pow2(s2t) + 8*(236 + 339*lmMst2 - 18*lmMst1*(13 +
1243  4*lmMst2 - 3*lmMt) - 3*(35 + 18*lmMst2)*lmMt + 72*pow2(lmMst2))*pow3(
1244  Mt) + 27*(1 - 2*lmMst1 + 2*lmMst2)*pow3(Mst2)*pow3(s2t))*pow6(Mst1) +
1245  18*(-2 + 3*lmMst2)*s2t*(-4*pow2(Mt) + pow2(Mst2)*pow2(s2t))*pow7(Mst2))
1246  /Tbeta))/pow5(Mst2))/pow2(Mst1)))/108. + Al4p*threeLoopFlag*(pow4(s2t)*
1247  ((5*Dmsqst2*(75 - 26*lmMst1 + 26*lmMst2)*pow2(Mst1))/6. - (20*Dmsqst2*(
1248  1 + lmMst1 - lmMst2)*pow2(Mst2))/3. + pow2(Mst1)*pow2(Mst2)*(
1249  30.209968449931413 - B4 + (4*D3)/3. - (5*DN)/6. + (144449*lmMst1)/2700.
1250  + (2233*pow2(lmMst1))/270. - (lmMst2*(165199 + 121010*lmMst1 + 51150*
1251  pow2(lmMst1)))/2700. + (26.353703703703705 + (202*lmMst1)/9.)*pow2(
1252  lmMst2) + (5*pow3(lmMst1))/54. - (97*pow3(lmMst2))/27.) - (
1253  79.58863384550371 + (1436147*lmMst1)/1.1907e6 + (1363*pow2(lmMst1))/
1254  315. + lmMst2*(6.96052994037121 - (101*lmMst1)/315. + (11*pow2(lmMst1))
1255  /3.) - (0.7285714285714285 + (11*lmMst1)/3.)*pow2(lmMst2) + (5*Dmsqst2*
1256  (76 - 249*lmMst1 + 249*lmMst2))/(54.*pow2(Mst2)) - (11*pow3(lmMst1))/9.
1257  + (11*pow3(lmMst2))/9.)*pow4(Mst1) - (71.80550411522634 - (25*B4)/9. +
1258  (28*D3)/9. - (31*DN)/18. + (229*lmMst1)/9. - (103*pow2(lmMst1))/36. + (
1259  lmMst2*(-1525 - 828*lmMst1 + 72*pow2(lmMst1)))/27. - ((13 + 369*lmMst1)
1260  *pow2(lmMst2))/18. + (10*Dmsqst2)/pow2(Mst1) + (107*pow3(lmMst2))/6.)*
1261  pow4(Mst2) + (2*OepS2*(480*pow2(Mst1)*pow2(Mst2) + 8398*pow4(Mst1) +
1262  315*pow4(Mst2)))/2187. - (S2*(12*(-22273 + 1200*lmMst1 - 1200*lmMst2)*
1263  pow2(Mst1)*pow2(Mst2) + 10*(51635 + 25194*lmMst1 - 25194*lmMst2)*pow4(
1264  Mst1) + 27*(-116129 + 350*lmMst1 - 350*lmMst2)*pow4(Mst2)))/1620. - ((-
1265  980 + 422*lmMst2 + 32*lmMst1*(-2 + 3*lmMst2) + 817*pow2(lmMst2))*pow6(
1266  Mst2))/(36.*pow2(Mst1))) - (s2t*pow3(Mt)*(6*pow2(Mst2)*(7*pow2(MuSUSY)*
1267  (4580489 - 3285360*B4 + 68040*DN - 3918600*lmMst1 + 248800*OepS2 - 108*
1268  (-20803 + 46650*lmMst1 - 46650*lmMst2)*S2 + 103680*pow2(lmMst1) - 360*
1269  lmMst2*(11213 + 1368*lmMst1 + 144*pow2(lmMst1)) + 6480*(-214 + 523*
1270  lmMst1)*pow2(lmMst2) - 3337200*pow3(lmMst2)) + pow2(Mst2)*(79386499 -
1271  72455040*lmMt + 4823840*OepS2 + 82155924*S2 + 7560*lmMst2*(14*lmMt +
1272  219*(35 + 59*S2)) + 725760*(5 - 2*lmMst2)*pow2(lmMst1) - 4460400*pow2(
1273  lmMst2) + 7560*lmMst1*(-3601 - 370*lmMst2 + 178*lmMt - 12921*S2 + 384*
1274  pow2(lmMst2)) + 2177280*pow2(lmMt) - 1451520*pow3(lmMst2)))*pow4(Mst1)
1275  + 14*(5*pow2(MuSUSY)*(2773621 - 1660176*B4 + 25272*DN + 2004408*lmMst1
1276  - 525472*OepS2 + 108*(123113 + 98526*lmMst1 - 98526*lmMst2)*S2 + 3888*
1277  pow2(lmMst1) - 144*lmMst2*(36802 - 11421*lmMst1 + 1728*pow2(lmMst1)) +
1278  167184*(-14 + 15*lmMst1)*pow2(lmMst2) - 31104*pow3(lmMst1) - 2227824*
1279  pow3(lmMst2)) + 4*pow2(Mst2)*(20964397 + 4563540*lmMt - 2058400*OepS2 +
1280  47545272*S2 - 9720*(266 + 74*lmMst2 - 55*lmMt)*pow2(lmMst1) + 3240*(
1281  1493 + 39*lmMt)*pow2(lmMst2) + 360*lmMst2*(4724 + 5328*lmMt - 115785*S2
1282  - 1944*pow2(lmMt)) - 466560*pow2(lmMt) + 180*lmMst1*(-32857 - 11844*
1283  lmMt - 18*lmMst2*(485 + 204*lmMt) + 231570*S2 + 1674*pow2(lmMst2) +
1284  3888*pow2(lmMt)) + 9720*pow3(lmMst1) + 408240*pow3(lmMst2)))*pow6(Mst1)
1285  + 8709120*(2 + lmMst2 - 3*pow2(lmMst2))*(2*pow2(Mst2) + pow2(MuSUSY))*
1286  pow6(Mst2) + 9*pow2(Mst1)*(7*pow2(MuSUSY)*(2601353 - 1058400*B4 +
1287  23760*DN - 1779840*lmMst1 + 1120*OepS2 - 324*(-1387 + 70*lmMst1 - 70*
1288  lmMst2)*S2 - 69120*pow2(lmMst1) + 1440*lmMst2*(-599 - 108*lmMst1 + 24*
1289  pow2(lmMst1)) + 4320*(-222 + 217*lmMst1)*pow2(lmMst2) - 972000*pow3(
1290  lmMst2))*pow4(Mst2) - 50400*Dmsqst2*(-36*(2 + 5*lmMst1 - 5*lmMst2)*
1291  pow2(Mst2)*pow2(MuSUSY) + 36*pow2(Mst1)*(8*(7 - 3*lmMst1 + 6*lmMst2 -
1292  3*lmMt)*pow2(Mst2) + (8 - 15*lmMst1 + 15*lmMst2)*pow2(MuSUSY)) + 9*(465
1293  + 374*lmMst2 - 4*lmMst1*(52 + 3*lmMst2 - 3*lmMt) - 2*(83 + 6*lmMst2)*
1294  lmMt + 12*pow2(lmMst2))*pow4(Mst1) + (578 - 360*lmMst1 + 708*lmMst2 -
1295  348*lmMt)*pow4(Mst2)) - 2*(6779161 + 4495680*lmMt - 7840*OepS2 + 2520*
1296  lmMst2*(-8618 + 420*lmMt - 63*S2) - 3032964*S2 - 241920*(-2 + lmMst2)*
1297  pow2(lmMst1) + 7560*lmMst1*(1200 - 128*lmMt + 16*lmMst2*(19 + 4*lmMt) +
1298  21*S2 - 164*pow2(lmMst2)) - 30240*(195 + 16*lmMt)*pow2(lmMst2) +
1299  120960*pow2(lmMt) + 1481760*pow3(lmMst2))*pow6(Mst2))))/(306180.*pow2(
1300  Mst1)*pow5(Mst2)) - (T1ep*(-2*pow4(Mst1)*(8*Mst2*pow2(Mt)*pow2(s2t)*(
1301  4327*pow2(MuSUSY)*(-1 + pow2(Sbeta)) + 6921*pow2(Mst2)*pow2(Sbeta)) -
1302  4*s2t*(16421*pow2(MuSUSY)*(-1 + pow2(Sbeta)) + 51460*pow2(Mst2)*pow2(
1303  Sbeta))*pow3(Mt) + 15571*Mt*pow2(Sbeta)*pow3(s2t)*pow4(Mst2) + 89312*
1304  Mst2*pow2(Sbeta)*pow4(Mt) - 4199*pow2(Sbeta)*pow4(s2t)*pow5(Mst2)) +
1305  63*pow4(Mst2)*(-4*Mst2*pow2(Mt)*pow2(s2t)*(5*pow2(MuSUSY)*(-1 + pow2(
1306  Sbeta)) + 18*pow2(Mst2)*pow2(Sbeta)) - 4*s2t*(pow2(MuSUSY)*(-1 + pow2(
1307  Sbeta)) + 2*pow2(Mst2)*pow2(Sbeta))*pow3(Mt) + 2*Mt*pow2(Sbeta)*pow3(
1308  s2t)*pow4(Mst2) + 208*Mst2*pow2(Sbeta)*pow4(Mt) + 5*pow2(Sbeta)*pow4(
1309  s2t)*pow5(Mst2)) + 24*Mst2*pow2(Mst1)*(pow2(Mst2)*pow2(Mt)*pow2(s2t)*(-
1310  185*pow2(MuSUSY)*(-1 + pow2(Sbeta)) - 1791*pow2(Mst2)*pow2(Sbeta)) +
1311  Mst2*s2t*(-1555*pow2(MuSUSY)*(-1 + pow2(Sbeta)) - 4307*pow2(Mst2)*pow2(
1312  Sbeta))*pow3(Mt) + (210*pow2(MuSUSY)*(-1 + pow2(Sbeta)) + 9406*pow2(
1313  Mst2)*pow2(Sbeta))*pow4(Mt) + 767*Mt*pow2(Sbeta)*pow3(s2t)*pow5(Mst2) +
1314  20*pow2(Sbeta)*pow4(s2t)*pow6(Mst2))))/(729.*pow2(Sbeta)*pow5(Mst2)) +
1315  pow2(Mt)*((-5*Dmsqst2*(-1081 + 165*lmMst1 - 165*lmMst2)*pow2(s2t)*(-2 +
1316  pow2(Sbeta))*pow2(Sbeta)*pow4(Mst1))/(9.*pow4(Mst2)) - (pow2(MuSUSY)*((
1317  pow2(Mt)*(24*pow2(Mst2)*(50134 - 270*B4 + 270*D3 - 135*DN + 2160*lmMst1
1318  + 120*(271 + 24*lmMst1)*lmMst2 - 120*lmMt - 29646*S2 - 720*(-2 + 3*
1319  lmMst1)*pow2(lmMst2) + 2160*pow3(lmMst2)) + pow2(Mst1)*(3051661 -
1320  12960*B4 + 12960*D3 - 6480*DN + 304320*lmMst1 + 960*(2227 + 285*lmMst1)
1321  *lmMst2 + 2880*(4 + lmMst1 - lmMst2)*lmMt + 5600*OepS2 - 324*(5361 +
1322  350*lmMst1 - 350*lmMst2)*S2 - 2880*(23 + 72*lmMst1)*pow2(lmMst2) +
1323  207360*pow3(lmMst2))))/(1215.*pow4(Mst2)) + pow2(s2t)*(
1324  90.77757201646091 - (100*B4)/9. + (112*D3)/9. - (62*DN)/9. + (788*
1325  lmMst1)/9. - (103*pow2(lmMst1))/9. + (16*lmMst2*(-241 - 171*lmMst1 +
1326  18*pow2(lmMst1)))/27. + (125.33333333333333 - 82*lmMst1)*pow2(lmMst2) +
1327  ((-852 + 358*lmMst2 + 32*lmMst1*(-2 + 3*lmMst2) + 497*pow2(lmMst2))*
1328  pow2(Mst2))/(9.*pow2(Mst1)) + (214*pow3(lmMst2))/3. + ((80*Dmsqst2*(4 +
1329  lmMst1 - lmMst2))/3. + pow2(Mst1)*(155.38193689986284 - (164*B4)/9. + (
1330  176*D3)/9. - (94*DN)/9. - (21449*lmMst1)/675. - (7556*pow2(lmMst1))/
1331  135. + (lmMst2*(-54451 - 22990*lmMst1 + 65550*pow2(lmMst1)))/675. + (2*
1332  (6077 - 17130*lmMst1)*pow2(lmMst2))/135. - (10*pow3(lmMst1))/27. + (
1333  4240*pow3(lmMst2))/27.))/pow2(Mst2) + Dmsqst2*(40/pow2(Mst1) + (10*(-23
1334  + 42*lmMst1 - 42*lmMst2)*pow2(Mst1))/(3.*pow4(Mst2))) + ((
1335  585.1892843532082 - (8*B4)/3. + (32*D3)/9. - (20*DN)/9. - (20109937*
1336  lmMst1)/297675. - (15886*pow2(lmMst1))/945. + lmMst2*(
1337  17.112243218274966 - (144628*lmMst1)/945. + (1180*pow2(lmMst1))/9.) + (
1338  2*(80257 - 138180*lmMst1)*pow2(lmMst2))/945. - (92*pow3(lmMst1))/27. +
1339  (4448*pow3(lmMst2))/27.)*pow4(Mst1))/pow4(Mst2) - (32*(-2 + lmMst2 + 5*
1340  pow2(lmMst2))*pow4(Mst2))/(9.*pow4(Mst1)) - (6*(7400*OepS2 + 27*(
1341  1089707 - 5550*lmMst1 + 5550*lmMst2)*S2)*pow2(Mst1)*pow2(Mst2) + 40*(
1342  17308*OepS2 + 27*(93919 - 12981*lmMst1 + 12981*lmMst2)*S2)*pow4(Mst1) +
1343  9*(1400*OepS2 + 81*(116129 - 350*lmMst1 + 350*lmMst2)*S2)*pow4(Mst2))/(
1344  10935.*pow4(Mst2))) - (Mt*s2t*(6*pow2(Mst2)*(4580489 - 3285360*B4 +
1345  68040*DN - 3918600*lmMst1 + 248800*OepS2 - 108*(-20803 + 46650*lmMst1 -
1346  46650*lmMst2)*S2 + 103680*pow2(lmMst1) - 360*lmMst2*(11213 + 1368*
1347  lmMst1 + 144*pow2(lmMst1)) + 6480*(-214 + 523*lmMst1)*pow2(lmMst2) -
1348  3337200*pow3(lmMst2))*pow4(Mst1) - 2332800*Dmsqst2*((-2 - 5*lmMst1 + 5*
1349  lmMst2)*pow2(Mst1)*pow2(Mst2) + (8 - 15*lmMst1 + 15*lmMst2)*pow4(Mst1))
1350  + 9*pow2(Mst1)*(2601353 - 1058400*B4 + 23760*DN - 1779840*lmMst1 +
1351  1120*OepS2 - 324*(-1387 + 70*lmMst1 - 70*lmMst2)*S2 - 69120*pow2(
1352  lmMst1) + 1440*lmMst2*(-599 - 108*lmMst1 + 24*pow2(lmMst1)) + 4320*(-
1353  222 + 217*lmMst1)*pow2(lmMst2) - 972000*pow3(lmMst2))*pow4(Mst2) + 10*(
1354  2773621 - 1660176*B4 + 25272*DN + 2004408*lmMst1 - 525472*OepS2 + 108*(
1355  123113 + 98526*lmMst1 - 98526*lmMst2)*S2 + 3888*pow2(lmMst1) - 144*
1356  lmMst2*(36802 - 11421*lmMst1 + 1728*pow2(lmMst1)) + 167184*(-14 + 15*
1357  lmMst1)*pow2(lmMst2) - 31104*pow3(lmMst1) - 2227824*pow3(lmMst2))*pow6(
1358  Mst1) + 1244160*(2 + lmMst2 - 3*pow2(lmMst2))*pow6(Mst2)))/(43740.*
1359  pow2(Mst1)*pow5(Mst2))))/pow2(Sbeta)) + (MuSUSY*(s2t*pow3(Mt)*(
1360  3314.980952380952 - (32*B4)/3. + (32*D3)/3. - (16*DN)/3. + (1472*
1361  lmMst1)/9. - (64*lmMt)/9. + lmMst2*(1916.5925925925926 + 136*lmMst1 - (
1362  128*pow2(lmMst1))/3.) + (116*pow2(lmMst1))/3. + (32*(37 - 12*lmMst1)*
1363  pow2(lmMst2))/9. - (4*(-756 + 134*lmMst2 + 32*lmMst1*(-2 + 3*lmMst2) +
1364  177*pow2(lmMst2))*pow2(Mst2))/(9.*pow2(Mst1)) + (256*pow3(lmMst2))/3. -
1365  ((3280*Dmsqst2)/9. - pow2(Mst1)*(4623.658770135215 - (32*B4)/3. + (32*
1366  D3)/3. - (16*DN)/3. + (2028488*lmMst1)/2025. + (64*(5 + lmMst1 -
1367  lmMst2)*lmMt)/9. + (8*lmMst2*(715964 + 124935*lmMst1 - 11025*pow2(
1368  lmMst1)))/2025. + (4064*pow2(lmMst1))/135. - (8*(4517 + 5025*lmMst1)*
1369  pow2(lmMst2))/135. + (8*pow3(lmMst1))/27. + (9208*pow3(lmMst2))/27.))/
1370  pow2(Mst2) - (40*Dmsqst2*(12 + ((65 - 2*lmMst1 + 2*lmMst2)*pow4(Mst1))/
1371  pow4(Mst2)))/(3.*pow2(Mst1)) + ((622.8225754358181 - (64*B4)/9. + (64*
1372  D3)/9. - (32*DN)/9. + (29853268*lmMst1)/19845. + (38704*pow2(lmMst1))/
1373  189. + (4*lmMst2*(2917823 - 3813600*lmMst1 + 97020*pow2(lmMst1)))/
1374  19845. + (16*(8677 - 5439*lmMst1)*pow2(lmMst2))/189. - (128*lmMt*(4 +
1375  6*lmMst2 - 2*lmMst1*(3 + lmMst2) + pow2(lmMst1) + pow2(lmMst2)))/3. - (
1376  16*pow3(lmMst1))/9. + (1328*pow3(lmMst2))/3.)*pow4(Mst1))/pow4(Mst2) +
1377  (128*(-2 + lmMst2 + 5*pow2(lmMst2))*pow4(Mst2))/(9.*pow4(Mst1)) + ((32*
1378  OepS2*(660*pow2(Mst1)*pow2(Mst2) + 1838*pow4(Mst1) + 63*pow4(Mst2)))/
1379  243. - (4*S2*(12*(18419 + 11550*lmMst1 - 11550*lmMst2)*pow2(Mst1)*pow2(
1380  Mst2) + 28*(17269 + 13785*lmMst1 - 13785*lmMst2)*pow4(Mst1) + 27*(3477
1381  + 490*lmMst1 - 490*lmMst2)*pow4(Mst2)))/315.)/pow4(Mst2)) - pow2(Mt)*
1382  pow2(s2t)*((80*Dmsqst2*(2 + 5*lmMst1 - 5*lmMst2) + pow2(Mst1)*(
1383  139.60072016460904 - (1048*B4)/3. + (20*DN)/3. - (6938*lmMst1)/27. + (
1384  128*pow2(lmMst1))/3. - (2*lmMst2*(7619 + 720*lmMst1 + 288*pow2(lmMst1))
1385  )/27. + (8*(4 + 153*lmMst1)*pow2(lmMst2))/3. - (1160*pow3(lmMst2))/3.))
1386  /Mst2 + Mst2*(717.5533950617285 - (980*B4)/3. + (22*DN)/3. - (1648*
1387  lmMst1)/3. - (64*pow2(lmMst1))/3. + (4*lmMst2*(-695 - 108*lmMst1 + 24*
1388  pow2(lmMst1)))/9. + (28*(-18 + 31*lmMst1)*pow2(lmMst2))/3. - 300*pow3(
1389  lmMst2)) + (128*(2 + lmMst2 - 3*pow2(lmMst2))*pow3(Mst2))/(3.*pow2(
1390  Mst1)) + ((1033.594170096022 - (592*B4)/3. + (8*DN)/3. + (35140*lmMst1)
1391  /81. + (92*pow2(lmMst1))/3. - (2*lmMst2*(28667 - 5238*lmMst1 + 3024*
1392  pow2(lmMst1)))/81. + (8*(-60 + 157*lmMst1)*pow2(lmMst2))/3. - (32*pow3(
1393  lmMst1))/3. - (1000*pow3(lmMst2))/3.)*pow4(Mst1))/pow3(Mst2) + ((-4*
1394  OepS2*(-9267*pow2(Mst1)*pow2(Mst2) + 23734*pow4(Mst1) - 63*pow4(Mst2)))
1395  /729. + (S2*(3*(29123 - 92670*lmMst1 + 92670*lmMst2)*pow2(Mst1)*pow2(
1396  Mst2) + 2*(525961 + 356010*lmMst1 - 356010*lmMst2)*pow4(Mst1) + 27*(
1397  1387 - 70*lmMst1 + 70*lmMst2)*pow4(Mst2)))/270.)/pow3(Mst2) - (20*
1398  Dmsqst2*(40*(1 - lmMst1 + lmMst2)*pow2(Mst1)*pow2(Mst2) + (80 - 43*
1399  lmMst1 + 43*lmMst2)*pow4(Mst1)))/pow5(Mst2)) + (pow4(Mt)*(24*pow2(Mst2)
1400  *(2848907 - 10515960*lmMt + 605920*OepS2 + 11406852*S2 + 1890*lmMst2*(
1401  8232 - 203*lmMt + 6492*S2) - 90720*(-3 + lmMst2)*pow2(lmMst1) - 1890*
1402  lmMst1*(3460 - 281*lmMt + lmMst2*(689 + 96*lmMt) + 6492*S2 - 438*pow2(
1403  lmMst2)) + 1890*(347 + 96*lmMt)*pow2(lmMst2) + 226800*pow2(lmMt) -
1404  737100*pow3(lmMst2))*pow4(Mst1) - 907200*Dmsqst2*((101 - 90*lmMst1 +
1405  177*lmMst2 - 87*lmMt)*pow2(Mst1)*pow2(Mst2) + (497 - 306*lmMst1 + 609*
1406  lmMst2 - 303*lmMt)*pow4(Mst1)) - 9*pow2(Mst1)*(7152121 + 4616640*lmMt -
1407  7840*OepS2 + 17640*lmMst2*(-1256 + 60*lmMt - 9*S2) - 3032964*S2 -
1408  241920*(-2 + lmMst2)*pow2(lmMst1) + 7560*lmMst1*(1136 - 128*lmMt + 16*
1409  lmMst2*(21 + 4*lmMt) + 21*S2 - 164*pow2(lmMst2)) - 30240*(107 + 16*
1410  lmMt)*pow2(lmMst2) + 120960*pow2(lmMt) + 1481760*pow3(lmMst2))*pow4(
1411  Mst2) + 140*(5659217 + 1592460*lmMt - 518816*OepS2 + 9976392*S2 - 972*(
1412  569 + 180*lmMst2 - 126*lmMt)*pow2(lmMst1) + 324*(5353 + 126*lmMt)*pow2(
1413  lmMst2) - 186624*pow2(lmMt) + 72*lmMst1*(-27653 - 3015*lmMt - 18*
1414  lmMst2*(689 + 126*lmMt) + 145917*S2 + 2160*pow2(lmMst2) + 2592*pow2(
1415  lmMt)) - 36*lmMst2*(-39031 - 3204*lmMt + 291834*S2 + 5184*pow2(lmMt)) +
1416  1944*pow3(lmMst1) + 17496*pow3(lmMst2))*pow6(Mst1) + 8709120*(2 +
1417  lmMst2 - 3*pow2(lmMst2))*pow6(Mst2)))/(153090.*pow2(Mst1)*pow5(Mst2)) +
1418  Mt*((2*T1ep*(3*pow2(Mst1)*pow2(Mst2)*(-15840*Mst2*s2t*pow2(Mt) + 9267*
1419  Mt*pow2(Mst2)*pow2(s2t) - 17312*pow3(Mt) + 530*pow3(Mst2)*pow3(s2t)) +
1420  2*(-66168*Mst2*s2t*pow2(Mt) - 35601*Mt*pow2(Mst2)*pow2(s2t) + 129704*
1421  pow3(Mt) + 12664*pow3(Mst2)*pow3(s2t))*pow4(Mst1) + 63*(-72*Mst2*s2t*
1422  pow2(Mt) + 3*Mt*pow2(Mst2)*pow2(s2t) - 4*pow3(Mt) + 10*pow3(Mst2)*pow3(
1423  s2t))*pow4(Mst2)))/(729.*pow5(Mst2)) + pow3(s2t)*((40*Dmsqst2*(5 + 2*
1424  lmMst1 - 2*lmMst2))/3. + pow2(Mst2)*(185.44423868312757 - (100*B4)/9. +
1425  (112*D3)/9. - (62*DN)/9. + (284*lmMst1)/3. - (103*pow2(lmMst1))/9. + (
1426  2*lmMst2*(-2465 - 1512*lmMst1 + 144*pow2(lmMst1)))/27. + (
1427  70.11111111111111 - 82*lmMst1)*pow2(lmMst2) + (40*Dmsqst2)/pow2(Mst1) +
1428  (214*pow3(lmMst2))/3.) + pow2(Mst1)*(64.60436488340191 - (64*B4)/9. + (
1429  64*D3)/9. - (32*DN)/9. - (80549*lmMst1)/675. - (6011*pow2(lmMst1))/135.
1430  + (lmMst2*(41949 + 45410*lmMst1 + 58350*pow2(lmMst1)))/675. - (2*(2383
1431  + 11595*lmMst1)*pow2(lmMst2))/135. - (10*pow3(lmMst1))/27. + (2314*
1432  pow3(lmMst2))/27.) + ((407.7379592503276 + (2171669*lmMst2)/59535. + (
1433  2*(433 + 6552*lmMst2)*pow2(lmMst1))/189. + (3974*pow2(lmMst2))/189. - (
1434  lmMst1*(2740559 + 1524600*lmMst2 + 7514640*pow2(lmMst2)))/59535. - (
1435  112*pow3(lmMst1))/27. + (1648*pow3(lmMst2))/27.)*pow4(Mst1))/pow2(Mst2)
1436  - (10*Dmsqst2*(9*(55 - 34*lmMst1 + 34*lmMst2)*pow2(Mst1)*pow2(Mst2) + (
1437  419 - 57*lmMst1 + 57*lmMst2)*pow4(Mst1)))/(27.*pow4(Mst2)) + ((-916 +
1438  390*lmMst2 + 32*lmMst1*(-2 + 3*lmMst2) + 657*pow2(lmMst2))*pow4(Mst2))/
1439  (9.*pow2(Mst1)) - (159*(200*OepS2 + 27*(21401 - 150*lmMst1 + 150*
1440  lmMst2)*S2)*pow2(Mst1)*pow2(Mst2) + 20*(25328*OepS2 + 27*(47051 -
1441  18996*lmMst1 + 18996*lmMst2)*S2)*pow4(Mst1) + 9*(1400*OepS2 + 81*(
1442  116129 - 350*lmMst1 + 350*lmMst2)*S2)*pow4(Mst2))/(10935.*pow2(Mst2)) -
1443  (32*(-2 + lmMst2 + 5*pow2(lmMst2))*pow6(Mst2))/(9.*pow4(Mst1))))))/
1444  Tbeta + (Mt*pow3(s2t)*(-60*(280885 + 11016*B4 + 324*DN - 142092*lmMst1
1445  - 24544*OepS2 + 2808*(-32 + 177*lmMst1 - 177*lmMst2)*S2 - 31104*pow2(
1446  lmMst1) + 36*lmMst2*(3449 + 72*lmMst1 + 432*pow2(lmMst1)) - 648*(134 +
1447  89*lmMst1)*pow2(lmMst2) + 42120*pow3(lmMst2))*pow4(Mst1)*pow4(Mst2) +
1448  pow2(Mst2)*(31897243 - 2491360*OepS2 + 90290268*S2 - 360*lmMst2*(18652
1449  + 140139*S2) + 38880*(37 - 40*lmMst2)*pow2(lmMst1) + 3188160*pow2(
1450  lmMst2) + 360*lmMst1*(17410 - 12852*lmMst2 + 140139*S2 + 11232*pow2(
1451  lmMst2)) - 311040*pow3(lmMst1) - 2177280*pow3(lmMst2))*pow6(Mst1) -
1452  583200*Dmsqst2*(4*(12 - 5*lmMst1 + 5*lmMst2)*pow2(Mst2)*pow4(Mst1) - 4*
1453  (2 + 5*lmMst1 - 5*lmMst2)*pow2(Mst1)*pow4(Mst2) + (40 - 3*lmMst1 + 3*
1454  lmMst2)*pow6(Mst1)) + 9*pow2(Mst1)*(2048393 - 1058400*B4 + 23760*DN -
1455  1779840*lmMst1 + 1120*OepS2 - 324*(-1387 + 70*lmMst1 - 70*lmMst2)*S2 -
1456  69120*pow2(lmMst1) + 1440*lmMst2*(-791 - 108*lmMst1 + 24*pow2(lmMst1))
1457  + 4320*(-30 + 217*lmMst1)*pow2(lmMst2) - 972000*pow3(lmMst2))*pow6(
1458  Mst2) + 1244160*(2 + lmMst2 - 3*pow2(lmMst2))*pow8(Mst2)))/(87480.*
1459  pow2(Mst1)*pow3(Mst2)) + (pow4(Mt)*(15435*pow2(Mst2)*(-(pow2(Mst2)*(
1460  13292051 + 3597840*lmMt - 72800*OepS2 + 12*lmMst2*(-50551 + 41160*lmMt
1461  - 122850*S2) - 3133890*S2 - 18900*pow2(lmMst1) - 223920*pow2(lmMst2) +
1462  5400*lmMst1*(170 - 16*lmMst2 - 32*lmMt + 273*S2 + 96*pow2(lmMst2)) +
1463  313200*pow2(lmMt) - 518400*pow3(lmMst2))) + 120*pow2(MuSUSY)*(50134 -
1464  270*B4 + 270*D3 - 135*DN + 2160*lmMst1 + 120*(271 + 24*lmMst1)*lmMst2 -
1465  120*lmMt - 29646*S2 - 720*(-2 + 3*lmMst1)*pow2(lmMst2) + 2160*pow3(
1466  lmMst2)))*pow4(Mst1) + 147*(525*pow2(MuSUSY)*(3051661 - 12960*B4 +
1467  12960*D3 - 6480*DN + 304320*lmMst1 + 960*(2227 + 285*lmMst1)*lmMst2 +
1468  2880*(4 + lmMst1 - lmMst2)*lmMt + 5600*OepS2 - 324*(5361 + 350*lmMst1 -
1469  350*lmMst2)*S2 - 2880*(23 + 72*lmMst1)*pow2(lmMst2) + 207360*pow3(
1470  lmMst2)) + pow2(Mst2)*(55610713 - 1448685000*lmMt + 131684000*OepS2 +
1471  173875950*S2 + 37800*(1783 + 285*lmMst2 - 225*lmMt)*pow2(lmMst1) +
1472  18900*(-43477 + 930*lmMt)*pow2(lmMst2) + 95256000*pow2(lmMt) - 3780*
1473  lmMst1*(-75993 + 19265*lmMt + 15*lmMst2*(-9947 + 160*lmMt) + 705450*S2
1474  + 5400*pow2(lmMst2) + 7200*pow2(lmMt)) + 1260*lmMst2*(-297379 + 133245*
1475  lmMt + 2116350*S2 + 21600*pow2(lmMt)) - 756000*pow3(lmMst1) + 10395000*
1476  pow3(lmMst2)))*pow6(Mst1) - 46305000*Dmsqst2*((2954 - 864*lmMst1 +
1477  1713*lmMst2 - 849*lmMt)*pow2(Mst2)*pow4(Mst1) + 324*pow2(Mst1)*pow4(
1478  Mst2) + 27*(401 + 274*lmMst2 - 2*lmMst1*(71 + 2*lmMst2 - 2*lmMt) - 4*(
1479  33 + lmMst2)*lmMt + 4*pow2(lmMst2))*pow6(Mst1)) + 41674500*(788 +
1480  lmMst1*(64 - 96*lmMst2) + 26*lmMst2 - 177*pow2(lmMst2))*pow2(Mst1)*
1481  pow6(Mst2) + 5*(54946675289 + 31644837000*lmMt - 3063401600*OepS2 +
1482  52952863320*S2 - 3175200*(3946 + 987*lmMst2 - 819*lmMt)*pow2(lmMst1) +
1483  6350400*(5083 + 84*lmMt)*pow2(lmMst2) - 4000752000*pow2(lmMt) - 1260*
1484  lmMst2*(42300121 - 8705340*lmMt + 49233240*S2 + 3810240*pow2(lmMt)) +
1485  1260*lmMst1*(13877671 - 8625960*lmMt - 1260*lmMst2*(9983 + 1974*lmMt) +
1486  49233240*S2 - 1746360*pow2(lmMst2) + 3810240*pow2(lmMt)) + 177811200*
1487  pow3(lmMst1) + 5156524800*pow3(lmMst2))*pow8(Mst1) + 1333584000*(-2 +
1488  lmMst2 + 5*pow2(lmMst2))*pow8(Mst2)))/(9.3767625e7*pow4(Mst1)*pow4(
1489  Mst2)) + (pow2(Mt)*pow2(s2t)*(-11025*(18*pow2(Mst2)*(2818497 - 10080*B4
1490  + 10080*D3 - 5040*DN + 127680*lmMst1 - 6720*lmMt + 7840*OepS2 - 324*(
1491  3477 + 490*lmMst1 - 490*lmMst2)*S2 + 36540*pow2(lmMst1) - 140*lmMst2*(-
1492  13339 - 1206*lmMst1 + 288*pow2(lmMst1)) - 420*(-473 + 96*lmMst1)*pow2(
1493  lmMst2) + 80640*pow3(lmMst2)) - 7*pow2(MuSUSY)*(441179 - 54000*B4 +
1494  60480*D3 - 33480*DN + 425520*lmMst1 - 5600*OepS2 + 324*(-116129 + 350*
1495  lmMst1 - 350*lmMst2)*S2 - 55620*pow2(lmMst1) + 2880*lmMst2*(-241 - 171*
1496  lmMst1 + 18*pow2(lmMst1)) - 3240*(-188 + 123*lmMst1)*pow2(lmMst2) +
1497  346680*pow3(lmMst2)))*pow4(Mst1)*pow4(Mst2) + 294*pow2(Mst2)*(-14*pow2(
1498  MuSUSY)*(-14159179 + 1660500*B4 - 1782000*D3 + 951750*DN + 2895615*
1499  lmMst1 + 7350885*lmMst2 + 3103650*lmMst1*lmMst2 + 370000*OepS2 +
1500  1471104450*S2 - 7492500*lmMst1*S2 + 7492500*lmMst2*S2 + 5100300*pow2(
1501  lmMst1) - 8849250*lmMst2*pow2(lmMst1) - 8203950*pow2(lmMst2) +
1502  23125500*lmMst1*pow2(lmMst2) + 33750*pow3(lmMst1) - 14310000*pow3(
1503  lmMst2)) - 3*pow2(Mst2)*(273721621 + 9072000*lmMt + 16716000*OepS2 -
1504  343302300*S2 + 420*lmMst2*(463453 - 3600*lmMt + 805950*S2) - 6300*(289
1505  + 30*lmMst2)*pow2(lmMst1) + 840*lmMst1*(211261 + 90510*lmMst2 + 1800*
1506  lmMt - 402975*S2 - 64575*pow2(lmMst2)) - 84886200*pow2(lmMst2) + 63000*
1507  pow3(lmMst1) + 54369000*pow3(lmMst2)))*pow6(Mst1) - 41674500*pow2(Mst1)
1508  *(-2*(-820 + 166*lmMst2 + 32*lmMst1*(-2 + 3*lmMst2) + 337*pow2(lmMst2))
1509  *pow2(Mst2) + (852 + lmMst1*(64 - 96*lmMst2) - 358*lmMst2 - 497*pow2(
1510  lmMst2))*pow2(MuSUSY))*pow6(Mst2) + (18*pow2(Mst2)*(3650009897 +
1511  889056000*lmMt - 2110136000*OepS2 + 1260*lmMst2*(4261807 + 1764000*lmMt
1512  - 33912900*S2) + 52385772600*S2 - 529200*(4447 + 910*lmMst2 - 840*lmMt)
1513  *pow2(lmMst1) + 4233600*(-1094 + 105*lmMt)*pow2(lmMst2) + 1260*lmMst1*(
1514  -8789407 - 1764000*lmMt - 420*lmMst2*(-13199 + 1680*lmMt) + 33912900*S2
1515  + 2146200*pow2(lmMst2)) + 12348000*pow3(lmMst1) - 2234988000*pow3(
1516  lmMst2)) + pow2(MuSUSY)*(219487237477 - 1000188000*B4 + 1333584000*D3 -
1517  833490000*DN - 25338520620*lmMst1 - 23746576000*OepS2 + 37044000*(-
1518  93919 + 12981*lmMst1 - 12981*lmMst2)*S2 - 6305153400*pow2(lmMst1) +
1519  1260*lmMst2*(5093887 - 45557820*lmMst1 + 39028500*pow2(lmMst1)) -
1520  793800*(-80257 + 138180*lmMst1)*pow2(lmMst2) - 1278018000*pow3(lmMst1)
1521  + 61789392000*pow3(lmMst2)))*pow8(Mst1) + 138915000*Dmsqst2*(108*pow2(
1522  Mst1)*(2*pow2(Mst2) + pow2(MuSUSY))*pow4(Mst2) + 12*pow4(Mst1)*(6*(4 +
1523  lmMst1 - lmMst2)*pow2(Mst2)*pow2(MuSUSY) + 23*pow4(Mst2)) + 3*(2*(113 -
1524  6*lmMst1 + 6*lmMst2)*pow2(Mst2) + 3*(-23 + 42*lmMst1 - 42*lmMst2)*pow2(
1525  MuSUSY))*pow6(Mst1) + 16*(41 - 12*lmMst1 + 12*lmMst2)*pow8(Mst1)) -
1526  1333584000*(-2 + lmMst2 + 5*pow2(lmMst2))*(2*pow2(Mst2) + pow2(MuSUSY))
1527  *pow8(Mst2)))/(3.750705e8*pow4(Mst1)*pow4(Mst2)))) + (xDR2DRMOD*((5*
1528  Al4p*threeLoopFlag*xDmsqst2*pow2(Dmsqst2)*(14*Dmglst2*Mgl*pow2(Mst2)*(
1529  pow2(s2t)*(4*Mt*MuSUSY*s2t - 8*Tbeta*pow2(Mt) + Tbeta*(pow2(Mst1) + (-1
1530  + 2*lmMst1 - 2*lmMst2)*pow2(Mst2))*pow2(s2t))*pow2(Sbeta)*pow4(Mst1) +
1531  pow2(Mst2)*(-4*Tbeta*pow2(Mt)*pow2(s2t)*(pow2(MuSUSY)*(-1 + pow2(Sbeta)
1532  ) + 2*pow2(Mst2)*pow2(Sbeta)) + pow2(Sbeta)*(16*MuSUSY*s2t*pow3(Mt) -
1533  4*Mt*MuSUSY*pow2(Mst2)*pow3(s2t) + 16*Tbeta*pow4(Mt) + Tbeta*pow4(Mst2)
1534  *pow4(s2t))) - pow2(Mst1)*(-4*Tbeta*pow2(Mt)*pow2(s2t)*((-1 + 2*lmMst1
1535  - 2*lmMst2)*pow2(MuSUSY)*(-1 + pow2(Sbeta)) + 4*pow2(Mst2)*pow2(Sbeta))
1536  + pow2(Sbeta)*(16*MuSUSY*s2t*pow3(Mt) + 8*(-lmMst1 + lmMst2)*Mt*MuSUSY*
1537  pow2(Mst2)*pow3(s2t) - 16*Tbeta*pow4(Mt) + (1 + 2*lmMst1 - 2*lmMst2)*
1538  Tbeta*pow4(Mst2)*pow4(s2t)))) + pow2(Mgl)*(-(pow2(s2t)*pow4(Mst1)*(-8*(
1539  lmMst1 - lmMst2)*Tbeta*pow2(Mt)*pow2(MuSUSY)*(-1 + pow2(Sbeta)) + 4*Mt*
1540  (-(MuSUSY*s2t) + 2*Mt*Tbeta)*pow2(Mst2)*pow2(Sbeta) + (1 - 2*lmMst1 +
1541  2*lmMst2)*Tbeta*pow2(s2t)*pow2(Sbeta)*pow4(Mst2))) + pow4(Mst2)*(-4*
1542  Tbeta*pow2(Mt)*pow2(s2t)*(pow2(MuSUSY)*(-1 + pow2(Sbeta)) + 2*pow2(
1543  Mst2)*pow2(Sbeta)) + pow2(Sbeta)*(16*MuSUSY*s2t*pow3(Mt) - 4*Mt*MuSUSY*
1544  pow2(Mst2)*pow3(s2t) + 16*Tbeta*pow4(Mt) + Tbeta*pow4(Mst2)*pow4(s2t)))
1545  - pow2(Mst1)*pow2(Mst2)*(-4*Tbeta*pow2(Mt)*pow2(s2t)*((-1 + 2*lmMst1 -
1546  2*lmMst2)*pow2(MuSUSY)*(-1 + pow2(Sbeta)) + 4*pow2(Mst2)*pow2(Sbeta)) +
1547  pow2(Sbeta)*(16*MuSUSY*s2t*pow3(Mt) + 8*(-lmMst1 + lmMst2)*Mt*MuSUSY*
1548  pow2(Mst2)*pow3(s2t) - 16*Tbeta*pow4(Mt) + (1 + 2*lmMst1 - 2*lmMst2)*
1549  Tbeta*pow4(Mst2)*pow4(s2t))) + Tbeta*pow2(Mst2)*pow2(Sbeta)*pow4(s2t)*
1550  pow6(Mst1)) + xDmglst2*pow2(Dmglst2)*pow2(Mst2)*(33*pow2(Mst2)*(-4*
1551  Tbeta*pow2(Mt)*pow2(s2t)*(pow2(MuSUSY)*(-1 + pow2(Sbeta)) + 2*pow2(
1552  Mst2)*pow2(Sbeta)) + pow2(Sbeta)*(16*MuSUSY*s2t*pow3(Mt) - 4*Mt*MuSUSY*
1553  pow2(Mst2)*pow3(s2t) + 16*Tbeta*pow4(Mt) + Tbeta*pow4(Mst2)*pow4(s2t)))
1554  - 33*pow2(Mst1)*(-4*Tbeta*pow2(Mt)*pow2(s2t)*((-1 + 2*lmMst1 - 2*
1555  lmMst2)*pow2(MuSUSY)*(-1 + pow2(Sbeta)) + 4*pow2(Mst2)*pow2(Sbeta)) +
1556  pow2(Sbeta)*(16*MuSUSY*s2t*pow3(Mt) + 8*(-lmMst1 + lmMst2)*Mt*MuSUSY*
1557  pow2(Mst2)*pow3(s2t) - 16*Tbeta*pow4(Mt) + (1 + 2*lmMst1 - 2*lmMst2)*
1558  Tbeta*pow4(Mst2)*pow4(s2t))) + pow2(Sbeta)*(-33*pow2(s2t)*(-4*Mt*
1559  MuSUSY*s2t + 8*Tbeta*pow2(Mt) + (1 - 2*lmMst1 + 2*lmMst2)*Tbeta*pow2(
1560  Mst2)*pow2(s2t))*pow4(Mst1) + 14*Tbeta*pow4(s2t)*pow6(Mst1)))))/(Tbeta*
1561  pow2(Mst1)*pow2(Sbeta)*pow6(Mst2)) + (4*Mgl*(2*Dmglst2*lmMst2 + Mgl +
1562  lmMst2*Mgl)*twoLoopFlag*(-(pow2(Mst2)*pow2(s2t)*pow4(Mst1)*(-8*(lmMst1
1563  - lmMst2)*Tbeta*pow2(Mt)*pow2(MuSUSY)*(-1 + pow2(Sbeta)) + 4*Mt*(-(
1564  MuSUSY*s2t) + 2*Mt*Tbeta)*pow2(Mst2)*pow2(Sbeta) + (1 - 2*lmMst1 + 2*
1565  lmMst2)*Tbeta*pow2(s2t)*pow2(Sbeta)*pow4(Mst2))) - pow2(Mst1)*pow4(
1566  Mst2)*(-4*Tbeta*pow2(Mt)*pow2(s2t)*((-1 + 2*lmMst1 - 2*lmMst2)*pow2(
1567  MuSUSY)*(-1 + pow2(Sbeta)) + 4*pow2(Mst2)*pow2(Sbeta)) + pow2(Sbeta)*(
1568  16*MuSUSY*s2t*pow3(Mt) + 8*(-lmMst1 + lmMst2)*Mt*MuSUSY*pow2(Mst2)*
1569  pow3(s2t) - 16*Tbeta*pow4(Mt) + (1 + 2*lmMst1 - 2*lmMst2)*Tbeta*pow4(
1570  Mst2)*pow4(s2t))) + Tbeta*pow2(s2t)*(8*(lmMst1 - lmMst2)*pow2(Mt)*pow2(
1571  MuSUSY)*(-1 + pow2(Sbeta)) + pow2(s2t)*pow2(Sbeta)*pow4(Mst2))*pow6(
1572  Mst1) + (-4*Tbeta*pow2(Mt)*pow2(s2t)*(pow2(MuSUSY)*(-1 + pow2(Sbeta)) +
1573  2*pow2(Mst2)*pow2(Sbeta)) + pow2(Sbeta)*(16*MuSUSY*s2t*pow3(Mt) - 4*Mt*
1574  MuSUSY*pow2(Mst2)*pow3(s2t) + 16*Tbeta*pow4(Mt) + Tbeta*pow4(Mst2)*
1575  pow4(s2t)))*pow6(Mst2)))/(Tbeta*pow2(Mst1)*pow2(Sbeta)*pow4(Mst2)) - (
1576  2*xDmglst2*pow2(Dmglst2)*(1350*(2 - 3*lmMst2)*twoLoopFlag*pow2(Mst1)*(
1577  4*Mt*MuSUSY*s2t*((-4*pow2(Mst1)*pow2(Mt) + 4*pow2(Mst2)*pow2(Mt) + 2*(
1578  lmMst1 - lmMst2)*pow2(Mst1)*pow2(Mst2)*pow2(s2t) + pow2(s2t)*(pow4(
1579  Mst1) - pow4(Mst2)))/Tbeta + (Mt*MuSUSY*s2t*((pow2(Mst1) + pow2(Mst2))*
1580  pow4(Mst2) - 2*(lmMst1 - lmMst2)*pow2(Mst1)*(pow2(Mst1)*pow2(Mst2) +
1581  pow4(Mst1) + pow4(Mst2))))/(pow2(Sbeta)*pow4(Mst2))) + 16*(pow2(Mst1) +
1582  pow2(Mst2))*pow4(Mt) + (pow2(Mst1) - pow2(Mst2))*(2*(lmMst1 - lmMst2)*
1583  pow2(Mst1)*pow2(Mst2) + pow4(Mst1) - pow4(Mst2))*pow4(s2t) - (4*pow2(
1584  Mt)*pow2(s2t)*(2*pow4(Mst1)*((-lmMst1 + lmMst2)*pow2(Mst2)*pow2(MuSUSY)
1585  + pow4(Mst2)) + 2*(-lmMst1 + lmMst2)*pow2(MuSUSY)*pow6(Mst1) + pow2(
1586  Mst1)*((1 - 2*lmMst1 + 2*lmMst2)*pow2(MuSUSY)*pow4(Mst2) - 4*pow6(Mst2)
1587  ) + (2*pow2(Mst2) + pow2(MuSUSY))*pow6(Mst2)))/pow4(Mst2)) + (Al4p*
1588  threeLoopFlag*(-6400*s2t*pow2(Mst1)*pow3(Mt)*(-3*pow4(Mst1)*(pow2(Mst2)
1589  *pow2(MuSUSY)*(-11 - 371*lmMst2 + 42*pow2(lmMst2) - 6*lmMst1*(-21 - 5*
1590  lmMst2 + 24*pow2(lmMst2)) + 144*pow3(lmMst2)) + 6*(93 + 88*lmMst2 - 22*
1591  lmMt - 8*lmMst2*lmMt + lmMst1*(-34 - 8*lmMst2 + 4*lmMt) + 12*pow2(
1592  lmMst2))*pow4(Mst2)) + 9*((49 + 103*lmMst2 - 36*(1 + lmMst2)*pow2(
1593  lmMst2) + 4*lmMst1*(-11 + 6*lmMst2 + 9*pow2(lmMst2)))*pow2(MuSUSY) +
1594  pow2(Mst2)*(28 + lmMst2*(378 - 96*lmMt) - 44*lmMt + lmMst1*(-274 + 60*
1595  lmMt + 18*lmMst2*(-13 + 2*lmMt) - 36*pow2(lmMst2)) + (270 - 36*lmMt)*
1596  pow2(lmMst2) + 36*pow3(lmMst2)))*pow6(Mst1) + 36*(2 + lmMst2 - 3*pow2(
1597  lmMst2))*(2*pow2(Mst2) + pow2(MuSUSY))*pow6(Mst2) - pow2(Mst1)*(3*pow2(
1598  MuSUSY)*(-53 - 191*lmMst2 + lmMst1*(60 + 18*lmMst2 - 72*pow2(lmMst2)) +
1599  54*pow2(lmMst2) + 72*pow3(lmMst2))*pow4(Mst2) + (300 + 72*lmMt +
1600  lmMst2*(-341 + 78*lmMt) + 18*lmMst1*(8 - 4*lmMt + lmMst2*(5 + 2*lmMt) -
1601  2*pow2(lmMst2)) - 12*(26 + 3*lmMt)*pow2(lmMst2) + 36*pow3(lmMst2))*
1602  pow6(Mst2))) + 300*Mst2*pow2(Mt)*pow2(s2t)*((4*pow2(Mst2)*(916 - 418*
1603  lmMst2 + 48*(-2 + 3*lmMst2)*pow2(lmMst1) - 387*pow2(lmMst2) - 48*
1604  lmMst1*(-5 + 2*lmMst2 + 6*pow2(lmMst2)) + 144*pow3(lmMst2)) + pow2(
1605  MuSUSY)*(-1180 - 1270*lmMst2 + 96*(-2 + 3*lmMst2)*pow2(lmMst1) + 3255*
1606  pow2(lmMst2) - 6*lmMst1*(-468 + 454*lmMst2 + 369*pow2(lmMst2)) + 1926*
1607  pow3(lmMst2)))*pow4(Mst1)*pow4(Mst2) + 2*pow2(Mst2)*((868 + 96*lmMst1*(
1608  -11 + lmMst2) + 1874*lmMst2 + 243*pow2(lmMst2))*pow2(Mst2) + 3*pow2(
1609  MuSUSY)*(-240 - 468*lmMst2 + 144*(-2 + 3*lmMst2)*pow2(lmMst1) + lmMst1*
1610  (580 - 22*lmMst2 - 1137*pow2(lmMst2)) + 310*pow2(lmMst2) + 705*pow3(
1611  lmMst2)))*pow6(Mst1) - 675*Dmsqst2*(pow4(Mst1)*((1 - 2*lmMst1 + 2*
1612  lmMst2)*pow2(Mst2)*pow2(MuSUSY) - 4*pow4(Mst2)) + pow2(Mst1)*(2*pow2(
1613  Mst2) + pow2(MuSUSY))*pow4(Mst2) + 2*(pow2(Mst2) + (-lmMst1 + lmMst2)*
1614  pow2(MuSUSY))*pow6(Mst1)) - 3*pow2(Mst1)*(-2*(-388 + 166*lmMst2 + 32*
1615  lmMst1*(-2 + 3*lmMst2) + 337*pow2(lmMst2))*pow2(Mst2) + (420 + lmMst1*(
1616  64 - 96*lmMst2) - 358*lmMst2 - 497*pow2(lmMst2))*pow2(MuSUSY))*pow6(
1617  Mst2) - 12*(32*(2 + 7*lmMst2 - lmMst1*(5 + 4*lmMst2) + 4*pow2(lmMst2))*
1618  pow2(Mst2) - pow2(MuSUSY)*(48 + 4*lmMst2*(45 + 68*pow2(lmMst1)) + 310*
1619  pow2(lmMst2) - lmMst1*(92 + 310*lmMst2 + 635*pow2(lmMst2)) + 363*pow3(
1620  lmMst2)))*pow8(Mst1) - 96*(-2 + lmMst2 + 5*pow2(lmMst2))*(2*pow2(Mst2)
1621  + pow2(MuSUSY))*pow8(Mst2)) + 16*Mst2*pow4(Mt)*(pow4(Mst1)*(50625*
1622  Dmsqst2*pow2(Mst2) + (-183748 + 240*(137 + 60*lmMst1)*lmMt - 6*lmMst2*(
1623  -587 + 4800*lmMst1 + 6120*lmMt) + 25695*pow2(lmMst2))*pow4(Mst2)) +
1624  225*pow2(Mst1)*(225*Dmsqst2*pow4(Mst2) + (356 + lmMst1*(64 - 96*lmMst2)
1625  + 26*lmMst2 - 177*pow2(lmMst2))*pow6(Mst2)) + 14400*(42 + lmMst2*(242 -
1626  62*lmMt) - 33*lmMt + 6*(29 - 4*lmMt)*pow2(lmMst2) - 2*lmMst1*(81 +
1627  lmMst2*(74 - 12*lmMt) - 18*lmMt + 12*pow2(lmMst2)) + 24*pow3(lmMst2))*
1628  pow8(Mst1) - 7200*(pow2(Mst2)*(221 + lmMst2*(299 - 47*lmMt) - 62*lmMt +
1629  (87 - 6*lmMt)*pow2(lmMst2) - 2*lmMst1*(65 + lmMst2*(32 - 3*lmMt) - 12*
1630  lmMt + 3*pow2(lmMst2)) + 6*pow3(lmMst2))*pow6(Mst1) - (-2 + lmMst2 + 5*
1631  pow2(lmMst2))*pow8(Mst2))) + 75*pow2(Mst1)*pow3(Mst2)*pow3(s2t)*(128*
1632  Mst2*Mt*((-71 + 6*lmMst1*(-1 + lmMst2) + lmMst2 + 30*pow2(lmMst2))*
1633  pow2(Mst2)*pow4(Mst1) + pow2(Mst1)*(5 + 167*lmMst2 + 18*pow2(lmMst2) +
1634  6*lmMst1*(-10 - 3*lmMst2 + 12*pow2(lmMst2)) - 72*pow3(lmMst2))*pow4(
1635  Mst2) + (3 + 39*lmMst2 - 6*lmMst1*(5 + 3*lmMst2) + 18*pow2(lmMst2))*
1636  pow6(Mst1) + 12*(2 + lmMst2 - 3*pow2(lmMst2))*pow6(Mst2)) + s2t*((340 -
1637  806*lmMst2 - 672*(-2 + 3*lmMst2)*pow2(lmMst1) + 3159*pow2(lmMst2) + 6*
1638  lmMst1*(388 - 934*lmMst2 + 399*pow2(lmMst2)) - 378*pow3(lmMst2))*pow4(
1639  Mst1)*pow4(Mst2) - 6*(-36 + (70 + 32*lmMst1)*lmMst2 + 27*pow2(lmMst2))*
1640  pow2(Mst2)*pow6(Mst1) + pow2(Mst1)*(-1532 + 3514*lmMst2 - 96*(-2 + 3*
1641  lmMst2)*pow2(lmMst1) + 207*pow2(lmMst2) + 6*lmMst1*(-532 + 550*lmMst2 +
1642  369*pow2(lmMst2)) - 1926*pow3(lmMst2))*pow6(Mst2) + 45*Dmsqst2*(15*(-1
1643  + 2*lmMst1 - 2*lmMst2)*pow2(Mst2)*pow4(Mst1) - 15*(1 + 2*lmMst1 - 2*
1644  lmMst2)*pow2(Mst1)*pow4(Mst2) + 2*pow6(Mst1) + 15*pow6(Mst2)) - 3*(-548
1645  + 422*lmMst2 + 32*lmMst1*(-2 + 3*lmMst2) + 817*pow2(lmMst2))*pow8(Mst2)
1646  )) + (300*s2t*pow2(Mt)*pow2(MuSUSY)*((-675*Dmsqst2*(-1 + 2*lmMst1 - 2*
1647  lmMst2)*s2t + s2t*pow2(Mst2)*(1180 + 1270*lmMst2 - 96*(-2 + 3*lmMst2)*
1648  pow2(lmMst1) - 3255*pow2(lmMst2) + 6*lmMst1*(-468 + 454*lmMst2 + 369*
1649  pow2(lmMst2)) - 1926*pow3(lmMst2)) + 64*Mst2*Mt*(53 + 191*lmMst2 - 54*
1650  pow2(lmMst2) + 6*lmMst1*(-10 - 3*lmMst2 + 12*pow2(lmMst2)) - 72*pow3(
1651  lmMst2)))*pow3(Mst2)*pow4(Mst1) - 3*pow2(Mst1)*(-225*Dmsqst2*s2t + 256*
1652  Mst2*Mt*(-2 - lmMst2 + 3*pow2(lmMst2)) + s2t*(-420 - 64*lmMst1 + 358*
1653  lmMst2 + 96*lmMst1*lmMst2 + 497*pow2(lmMst2))*pow2(Mst2))*pow5(Mst2) -
1654  2*Mst2*(675*Dmsqst2*(lmMst1 - lmMst2)*s2t - 32*Mst2*Mt*(11 + 371*lmMst2
1655  - 42*pow2(lmMst2) + 6*lmMst1*(-21 - 5*lmMst2 + 24*pow2(lmMst2)) - 144*
1656  pow3(lmMst2)) + 3*s2t*pow2(Mst2)*(-240 - 468*lmMst2 + 144*(-2 + 3*
1657  lmMst2)*pow2(lmMst1) + lmMst1*(580 - 22*lmMst2 - 1137*pow2(lmMst2)) +
1658  310*pow2(lmMst2) + 705*pow3(lmMst2)))*pow6(Mst1) + 12*(16*Mt*(49 + 103*
1659  lmMst2 - 36*pow2(lmMst2) + 4*lmMst1*(-11 + 6*lmMst2 + 9*pow2(lmMst2)) -
1660  36*pow3(lmMst2)) - Mst2*s2t*(48 + 180*lmMst2 + 272*lmMst2*pow2(lmMst1)
1661  + 310*pow2(lmMst2) - lmMst1*(92 + 310*lmMst2 + 635*pow2(lmMst2)) + 363*
1662  pow3(lmMst2)))*pow8(Mst1) + 96*s2t*(-2 + lmMst2 + 5*pow2(lmMst2))*pow9(
1663  Mst2)))/pow2(Sbeta) - (100*Mt*MuSUSY*(2*pow3(Mst2)*pow4(Mst1)*(4050*
1664  Dmsqst2*s2t*pow2(Mt) + 3*s2t*pow2(Mst2)*(-675*Dmsqst2*(lmMst1 - lmMst2)
1665  *pow2(s2t) + 2*pow2(Mt)*(860 - 434*lmMst2 + 96*(-2 + 3*lmMst2)*pow2(
1666  lmMst1) + 96*lmMst1*(3 + lmMst2 - 6*pow2(lmMst2)) - 243*pow2(lmMst2) +
1667  288*pow3(lmMst2))) - 144*Mt*pow2(s2t)*(-29 - 179*lmMst2 + lmMst1*(60 +
1668  18*lmMst2 - 72*pow2(lmMst2)) + 18*pow2(lmMst2) + 72*pow3(lmMst2))*pow3(
1669  Mst2) + 64*Mst2*(96 + 36*lmMt + lmMst2*(-187 + 39*lmMt) - 3*(19 + 6*
1670  lmMt)*pow2(lmMst2) - 18*lmMst1*(-3 + 2*lmMt - lmMst2*(3 + lmMt) + pow2(
1671  lmMst2)) + 18*pow3(lmMst2))*pow3(Mt) - 3*(40 - 1172*lmMst2 + 48*(-2 +
1672  3*lmMst2)*pow2(lmMst1) + 882*pow2(lmMst2) - 3*lmMst1*(-500 + 502*lmMst2
1673  + 369*pow2(lmMst2)) + 963*pow3(lmMst2))*pow3(s2t)*pow4(Mst2)) - 9*pow2(
1674  Mst1)*(900*Dmsqst2*s2t*pow2(Mt) - 384*Mt*(2 + lmMst2 - 3*pow2(lmMst2))*
1675  pow2(s2t)*pow3(Mst2) + 512*Mst2*(2 + lmMst2 - 3*pow2(lmMst2))*pow3(Mt)
1676  + pow2(Mst2)*(-4*s2t*(-324 + 134*lmMst2 + 32*lmMst1*(-2 + 3*lmMst2) +
1677  177*pow2(lmMst2))*pow2(Mt) - 225*Dmsqst2*pow3(s2t)) + (-484 + 390*
1678  lmMst2 + 32*lmMst1*(-2 + 3*lmMst2) + 657*pow2(lmMst2))*pow3(s2t)*pow4(
1679  Mst2))*pow5(Mst2) + pow2(Mst2)*(-1728*Mt*pow2(Mst2)*pow2(s2t)*(7 - 30*
1680  lmMst2 + lmMst1*(11 + 2*lmMst2 - 12*pow2(lmMst2)) - 2*pow2(lmMst2) +
1681  12*pow3(lmMst2)) - 1152*Mst2*s2t*pow2(Mt)*((2 - 3*lmMst2)*pow2(lmMst1)
1682  + lmMst1*(8 - 2*lmMst2 + 6*pow2(lmMst2)) - 3*(6 + 5*lmMst2 + pow3(
1683  lmMst2))) + 128*(834 + lmMst2*(569 - 33*lmMt) - 162*lmMt + (51 - 18*
1684  lmMt)*pow2(lmMst2) - 18*lmMst1*(13 + lmMst2 - lmMst2*lmMt + pow2(
1685  lmMst2)) + 18*pow3(lmMst2))*pow3(Mt) - 3*Mst2*(675*Dmsqst2 - pow2(Mst2)
1686  *(260 + 1538*lmMst2 + 768*(2 - 3*lmMst2)*pow2(lmMst1) + 1395*pow2(
1687  lmMst2) + 96*lmMst1*(-7 - 27*lmMst2 + 48*pow2(lmMst2)) - 2304*pow3(
1688  lmMst2)))*pow3(s2t))*pow6(Mst1) - 32*(-72*Mst2*s2t*pow2(Mt)*(-6 - 14*
1689  lmMst2 + lmMst2*pow2(lmMst1) + lmMst1*(9 + 6*lmMst2 - 2*pow2(lmMst2)) -
1690  6*pow2(lmMst2) + pow3(lmMst2)) + 27*Mt*pow2(Mst2)*pow2(s2t)*(-17 - 51*
1691  lmMst2 + 4*pow2(lmMst2) - 4*lmMst1*(-6 + lmMst2 + 3*pow2(lmMst2)) + 12*
1692  pow3(lmMst2)) + 4*(290 + lmMst2*(2447 - 645*lmMt) - 375*lmMt - 3*(-509
1693  + 60*lmMt)*pow2(lmMst2) - 18*lmMst1*(87 + lmMst2*(71 - 10*lmMt) - 22*
1694  lmMt + 10*pow2(lmMst2)) + 180*pow3(lmMst2))*pow3(Mt) + 9*(16*lmMst2*
1695  pow2(lmMst1) - 2*lmMst1*(3 + 2*lmMst2 + 16*pow2(lmMst2)) + lmMst2*(7 +
1696  4*lmMst2 + 16*pow2(lmMst2)))*pow3(Mst2)*pow3(s2t))*pow8(Mst1) + 288*
1697  s2t*(-2 + lmMst2 + 5*pow2(lmMst2))*(-4*pow2(Mt) + pow2(Mst2)*pow2(s2t))
1698  *pow9(Mst2)))/Tbeta))/pow5(Mst2)))/(675.*pow4(Mst1))))/24.)/pow2(Mgl))
1699  - (35*Mst2*threeLoopFlag*pow2(Al4p)*pow4(Mst1)*(-4*Dmglst2*Mst2*(2*Mgl*
1700  (27*pow2(Mst2)*(4*Mst2*pow2(Mt)*(8*Tbeta*(-135*Dmsqst2*z3*pow2(MuSUSY)*
1701  pow2(s2t)*(-1 + pow2(Sbeta)) + 2*pow2(Mt)*((83*z3 - 27*z4)*pow2(MuSUSY)
1702  *(-1 + pow2(Sbeta)) + 900*Dmsqst2*z3*pow2(Sbeta))) + Mst2*(2160*
1703  Dmsqst2*MuSUSY*z3*pow2(s2t)*pow2(Sbeta) + 2*MuSUSY*pow2(Mt)*pow2(Sbeta)
1704  *(18*z3 + 506*z4 - 105*pow2(z2)) + Mt*s2t*Tbeta*(-17280*Dmsqst2*z3*
1705  pow2(Sbeta) + pow2(MuSUSY)*(-1 + pow2(Sbeta))*(-30274*z3 - 542*z4 +
1706  5289*pow2(z2))))) + 5760*Dmsqst2*MuSUSY*z3*(MuSUSY*s2t*Tbeta*(-1 +
1707  pow2(Sbeta)) + 12*Mt*pow2(Sbeta))*pow3(Mt) - 4*Mt*pow3(Mst2)*(Mt*Tbeta*
1708  pow2(MuSUSY)*pow2(s2t)*(-1 + pow2(Sbeta))*(17615*z3 + 424*z4 + 474*
1709  pow2(z2)) + pow2(Sbeta)*(8*MuSUSY*s2t*(-439*z3 + 108*z4)*pow2(Mt) + 2*
1710  Tbeta*(9017*z3 + 56*z4 + 84*pow2(z2))*pow3(Mt) + 1080*Dmsqst2*MuSUSY*
1711  z3*pow3(s2t))) + s2t*pow2(Sbeta)*(2*s2t*pow2(Mt)*(8*Mst2*Tbeta*(-439*z3
1712  + 108*z4) + 3*MuSUSY*(-30274*z3 - 542*z4 + 5289*pow2(z2))) - 2*Mt*pow2(
1713  s2t)*(1440*Dmsqst2*Tbeta*z3 + 2*Mst2*MuSUSY*(17615*z3 + 424*z4 + 474*
1714  pow2(z2)) + Tbeta*pow2(Mst2)*(-30274*z3 - 542*z4 + 5289*pow2(z2))) + 8*
1715  Tbeta*(-18*z3 - 506*z4 + 105*pow2(z2))*pow3(Mt) + Mst2*Tbeta*(1080*
1716  Dmsqst2*z3 + pow2(Mst2)*(17615*z3 + 424*z4 + 474*pow2(z2)))*pow3(s2t))*
1717  pow4(Mst2)) - pow4(Mst1)*(8*s2t*(-(Tbeta*pow2(MuSUSY)*(-1 + pow2(Sbeta)
1718  )*(-4*(395581*z3 + 659*z4) + 259215*pow2(z2))) + pow2(Sbeta)*(855360*
1719  Dmsqst2*Tbeta*z3 - 36*Mst2*MuSUSY*(2806*z3 + 1514*z4 + 2757*pow2(z2)) -
1720  4*Tbeta*pow2(Mst2)*(-653582*z3 + 25730*z4 + 38595*pow2(z2))))*pow3(Mt)
1721  + pow2(Sbeta)*(2*Mt*(8*MuSUSY*(89947*z3 + 6332*z4 + 9498*pow2(z2)) +
1722  Mst2*Tbeta*(-565214*z3 + 31142*z4 + 46713*pow2(z2)))*pow3(Mst2)*pow3(
1723  s2t) + 32*(2*Mst2*Tbeta*(-591386*z3 + 5582*z4 + 8373*pow2(z2)) +
1724  MuSUSY*(-834482*z3 + 28538*z4 + 48639*pow2(z2)))*pow4(Mt) + Tbeta*(
1725  48600*Dmsqst2*z3 + pow2(Mst2)*(217283*z3 - 16796*z4 - 25194*pow2(z2)))*
1726  pow3(Mst2)*pow4(s2t)) - 4*pow2(Mt)*pow2(s2t)*(pow2(Sbeta)*(233280*
1727  Dmsqst2*MuSUSY*z3 + 3*MuSUSY*pow2(Mst2)*(-728116*z3 + 10126*z4 +
1728  105585*pow2(z2)) - 36*Tbeta*(-734*z3 + 1538*z4 + 2307*pow2(z2))*pow3(
1729  Mst2)) - 4*Mst2*Tbeta*(pow2(MuSUSY)*(-1 + pow2(Sbeta))*(353116*z3 +
1730  11327*z4 + 15897*pow2(z2)) - 6075*Dmsqst2*z3*(-2 + pow2(Sbeta))*pow4(
1731  Sbeta)))) + 18*pow2(Mst1)*(8*pow2(Mst2)*pow2(Mt)*(6480*Dmsqst2*MuSUSY*
1732  z3*pow2(s2t)*pow2(Sbeta) - 24*MuSUSY*pow2(Mt)*pow2(Sbeta)*(-1675*z3 +
1733  26*z4 + 93*pow2(z2)) + Mt*s2t*Tbeta*(-30240*Dmsqst2*z3*pow2(Sbeta) +
1734  pow2(MuSUSY)*(-1 + pow2(Sbeta))*(-47456*z3 - 709*z4 + 8535*pow2(z2))))
1735  + 43200*Dmsqst2*MuSUSY*z3*(MuSUSY*s2t*Tbeta*(-1 + pow2(Sbeta)) + 8*Mt*
1736  pow2(Sbeta))*pow3(Mt) + Mt*pow3(Mst2)*(12*s2t*pow2(Mt)*pow2(Sbeta)*(8*
1737  MuSUSY*(590*z3 - 4*z4 + 75*pow2(z2)) + Mst2*Tbeta*(-26782*z3 + 922*z4 +
1738  1383*pow2(z2))) + 3*Mt*MuSUSY*pow2(s2t)*(-8*MuSUSY*Tbeta*(-1 + pow2(
1739  Sbeta))*(9747*z3 + 185*z4 + 237*pow2(z2)) + Mst2*pow2(Sbeta)*(-99002*z3
1740  - 1210*z4 + 18273*pow2(z2))) - 16*Tbeta*pow2(Sbeta)*(-28846*z3 + 322*z4
1741  + 483*pow2(z2))*pow3(Mt) - 2160*Dmsqst2*(5*MuSUSY + 6*Mst2*Tbeta)*z3*
1742  pow2(Sbeta)*pow3(s2t)) + 6*pow2(s2t)*pow2(Sbeta)*(180*Dmsqst2*Tbeta*z3*
1743  pow2(s2t) - 4*Tbeta*pow2(Mt)*(741*z3 + 100*z4 + 150*pow2(z2)) - Mt*
1744  MuSUSY*s2t*(21373*z3 + 316*z4 + 474*pow2(z2)))*pow5(Mst2) + Tbeta*(48*
1745  Mst2*pow2(Mt)*(-360*Dmsqst2*z3*pow2(MuSUSY)*pow2(s2t)*(-1 + pow2(Sbeta)
1746  ) + pow2(Mt)*(6480*Dmsqst2*z3*pow2(Sbeta) + pow2(MuSUSY)*(-1 + pow2(
1747  Sbeta))*(250*z3 - 94*z4 + 21*pow2(z2)))) + pow2(Sbeta)*(3*Mst2*s2t*(
1748  1879*z3 - 54*z4) + Mt*(8180*z3 - 416*z4 - 2406*pow2(z2)))*pow3(s2t)*
1749  pow6(Mst2)))) + Dmglst2*xDmglst2*(-2*pow4(Mst1)*(8*s2t*(-(Tbeta*pow2(
1750  MuSUSY)*(-1 + pow2(Sbeta))*(-4*(395581*z3 + 659*z4) + 259215*pow2(z2)))
1751  + pow2(Sbeta)*(855360*Dmsqst2*Tbeta*z3 - 36*Mst2*MuSUSY*(2806*z3 +
1752  1514*z4 + 2757*pow2(z2)) - 4*Tbeta*pow2(Mst2)*(-653582*z3 + 25730*z4 +
1753  38595*pow2(z2))))*pow3(Mt) + pow2(Sbeta)*(2*Mt*(8*MuSUSY*(89947*z3 +
1754  6332*z4 + 9498*pow2(z2)) + Mst2*Tbeta*(-565214*z3 + 31142*z4 + 46713*
1755  pow2(z2)))*pow3(Mst2)*pow3(s2t) + 32*(2*Mst2*Tbeta*(-591386*z3 + 5582*
1756  z4 + 8373*pow2(z2)) + MuSUSY*(-834482*z3 + 28538*z4 + 48639*pow2(z2)))*
1757  pow4(Mt) + Tbeta*(48600*Dmsqst2*z3 + pow2(Mst2)*(217283*z3 - 16796*z4 -
1758  25194*pow2(z2)))*pow3(Mst2)*pow4(s2t)) - 4*pow2(Mt)*pow2(s2t)*(pow2(
1759  Sbeta)*(233280*Dmsqst2*MuSUSY*z3 + 3*MuSUSY*pow2(Mst2)*(-728116*z3 +
1760  10126*z4 + 105585*pow2(z2)) - 36*Tbeta*(-734*z3 + 1538*z4 + 2307*pow2(
1761  z2))*pow3(Mst2)) - 4*Mst2*Tbeta*(pow2(MuSUSY)*(-1 + pow2(Sbeta))*(
1762  353116*z3 + 11327*z4 + 15897*pow2(z2)) - 6075*Dmsqst2*z3*(-2 + pow2(
1763  Sbeta))*pow4(Sbeta)))) + 6*pow2(Mst1)*(8*pow2(Mst2)*pow2(Mt)*(38880*
1764  Dmsqst2*MuSUSY*z3*pow2(s2t)*pow2(Sbeta) + 2*MuSUSY*pow2(Mt)*pow2(Sbeta)
1765  *(-221681*z3 + 6920*z4 + 6492*pow2(z2)) + Mt*s2t*Tbeta*(-181440*
1766  Dmsqst2*z3*pow2(Sbeta) + pow2(MuSUSY)*(-1 + pow2(Sbeta))*(-608572*z3 -
1767  12344*z4 + 88647*pow2(z2)))) + 259200*Dmsqst2*MuSUSY*z3*(MuSUSY*s2t*
1768  Tbeta*(-1 + pow2(Sbeta)) + 8*Mt*pow2(Sbeta))*pow3(Mt) - 8*Mt*pow3(Mst2)
1769  *(Tbeta*(Mt*pow2(MuSUSY)*pow2(s2t)*(-1 + pow2(Sbeta))*(404588*z3 +
1770  10819*z4 + 3471*pow2(z2)) - 2*pow2(Sbeta)*(-446434*z3 + 9406*z4 +
1771  14109*pow2(z2))*pow3(Mt)) + MuSUSY*pow2(Sbeta)*(-72*s2t*pow2(Mt)*(3124*
1772  z3 + 29*z4 + 165*pow2(z2)) + 8100*Dmsqst2*z3*pow3(s2t))) + 2*s2t*pow2(
1773  Sbeta)*(-(Mt*pow2(s2t)*(38880*Dmsqst2*Tbeta*z3 + Mst2*MuSUSY*(932531*z3
1774  + 16612*z4 + 1590*pow2(z2)))) + 3*s2t*pow2(Mt)*(-3*Mst2*Tbeta*(-9125*z3
1775  + 1592*z4 + 2388*pow2(z2)) + MuSUSY*(-551402*z3 - 17194*z4 + 84045*
1776  pow2(z2))) - 4*Tbeta*(-249586*z3 + 8614*z4 + 12921*pow2(z2))*pow3(Mt) +
1777  3240*Dmsqst2*Mst2*Tbeta*z3*pow3(s2t))*pow4(Mst2) + Tbeta*(48*Mst2*pow2(
1778  Mt)*(-2160*Dmsqst2*z3*pow2(MuSUSY)*pow2(s2t)*(-1 + pow2(Sbeta)) + pow2(
1779  Mt)*(38880*Dmsqst2*z3*pow2(Sbeta) + pow2(MuSUSY)*(-1 + pow2(Sbeta))*(
1780  27278*z3 - 902*z4 + 105*pow2(z2)))) + pow2(Sbeta)*(Mst2*s2t*(123355*z3
1781  - 5026*z4 - 5352*pow2(z2)) + 8*Mt*(-28585*z3 + 2425*z4 + 2301*pow2(z2))
1782  )*pow3(s2t)*pow6(Mst2))) + 9*pow2(Mst2)*(8*pow2(Mst2)*pow2(Mt)*(6480*
1783  Dmsqst2*MuSUSY*z3*pow2(s2t)*pow2(Sbeta) + 2*MuSUSY*pow2(Mt)*pow2(Sbeta)
1784  *(-64592*z3 + 1742*z4 + 21*pow2(z2)) + Mt*s2t*Tbeta*(-51840*Dmsqst2*z3*
1785  pow2(Sbeta) + pow2(MuSUSY)*(-1 + pow2(Sbeta))*(-221914*z3 - 2498*z4 +
1786  31083*pow2(z2)))) + 34560*Dmsqst2*MuSUSY*z3*(MuSUSY*s2t*Tbeta*(-1 +
1787  pow2(Sbeta)) + 12*Mt*pow2(Sbeta))*pow3(Mt) - 4*Mt*pow3(Mst2)*(Tbeta*(
1788  Mt*pow2(MuSUSY)*pow2(s2t)*(-1 + pow2(Sbeta))*(228607*z3 + 8888*z4 +
1789  4098*pow2(z2)) - 2*pow2(Sbeta)*(-260483*z3 + 728*z4 + 1092*pow2(z2))*
1790  pow3(Mt)) + MuSUSY*pow2(Sbeta)*(-18*s2t*pow2(Mt)*(19703*z3 - 376*z4 +
1791  84*pow2(z2)) + 6480*Dmsqst2*z3*pow3(s2t))) + 4*s2t*pow2(Sbeta)*(-(Mt*
1792  pow2(s2t)*(4320*Dmsqst2*Tbeta*z3 + Mst2*MuSUSY*(228607*z3 + 8888*z4 +
1793  4098*pow2(z2)))) + 3*s2t*pow2(Mt)*(-3*Mst2*Tbeta*(19703*z3 - 376*z4 +
1794  84*pow2(z2)) + MuSUSY*(-221914*z3 - 2498*z4 + 31083*pow2(z2))) - 4*
1795  Tbeta*(-64592*z3 + 1742*z4 + 21*pow2(z2))*pow3(Mt) + 1620*Dmsqst2*Mst2*
1796  Tbeta*z3*pow3(s2t))*pow4(Mst2) + Tbeta*(192*Mst2*pow2(Mt)*(-135*
1797  Dmsqst2*z3*pow2(MuSUSY)*pow2(s2t)*(-1 + pow2(Sbeta)) + pow2(Mt)*((1990*
1798  z3 - 81*z4)*pow2(MuSUSY)*(-1 + pow2(Sbeta)) + 1800*Dmsqst2*z3*pow2(
1799  Sbeta))) + pow2(Sbeta)*(Mt*(887656*z3 + 9992*z4 - 124332*pow2(z2)) +
1800  Mst2*s2t*(228607*z3 + 8888*z4 + 4098*pow2(z2)))*pow3(s2t)*pow6(Mst2))))
1801  ) + 3*pow2(Mgl)*(-(pow4(Mst1)*(-32*s2t*pow2(Mt)*pow2(Sbeta)*(3*MuSUSY*
1802  s2t*(11816*z3 + 4954*z4 - 6177*pow2(z2)) + 8*Mt*Tbeta*(-57758*z3 +
1803  1370*z4 + 2055*pow2(z2)))*pow3(Mst2) + 4*pow2(s2t)*pow2(Sbeta)*(4*
1804  Tbeta*pow2(Mt)*(-65326*z3 + 13714*z4 + 20571*pow2(z2)) + 4*Mt*s2t*(
1805  Mst2*Tbeta*(-44630*z3 + 878*z4 + 1317*pow2(z2)) + 7*MuSUSY*(-43868*z3 +
1806  1970*z4 + 2955*pow2(z2))) - Tbeta*pow2(s2t)*(40*Dmsqst2*(-260*z3 + 14*
1807  z4 + 21*pow2(z2)) + pow2(Mst2)*(4*(-5225 + 162*lmMst1 - 162*lmMst2)*z3
1808  + 2294*z4 + 5385*pow2(z2))))*pow4(Mst2) - pow2(Mst2)*(16*Tbeta*pow2(Mt)
1809  *pow2(s2t)*(-160*Dmsqst2*pow2(Sbeta)*(2*(-7*z3 + z4) + 3*pow2(z2)) +
1810  pow2(MuSUSY)*(1 - pow2(Sbeta))*(-8*(91963 + 162*lmMst1 - 162*lmMst2)*z3
1811  + 27446*z4 + 35823*pow2(z2))) + pow2(Sbeta)*(64*MuSUSY*s2t*(-27086*z3 +
1812  12062*z4 + 18093*pow2(z2))*pow3(Mt) - 33280*Dmsqst2*Mt*MuSUSY*(2*(-7*z3
1813  + z4) + 3*pow2(z2))*pow3(s2t) + 1024*Tbeta*(24241*z3 + 146*z4 + 219*
1814  pow2(z2))*pow4(Mt) - 5*Tbeta*xDmsqst2*pow2(Dmsqst2)*(2453*z3 + 448*z4 +
1815  672*pow2(z2))*pow4(s2t))) - 64*Mst2*Mt*(-(s2t*Tbeta*pow2(Mt)*(25920*
1816  Dmsqst2*z3*pow2(Sbeta) + pow2(MuSUSY)*(-1 + pow2(Sbeta))*(-99632*z3 -
1817  11764*z4 + 20505*pow2(z2)))) - 4*MuSUSY*pow2(Sbeta)*(-107072*z3 + 3326*
1818  z4 + 3045*pow2(z2))*pow3(Mt) + 405*Dmsqst2*z3*pow2(s2t)*pow2(Sbeta)*(
1819  96*Mt*MuSUSY - 5*Dmsqst2*s2t*Tbeta*xDmsqst2*(-2 - 2*pow2(Sbeta) + pow4(
1820  Sbeta)))) + 32*Mt*(-10*Dmsqst2*Mt*(-(Tbeta*pow2(MuSUSY)*pow2(s2t)*(-1 +
1821  pow2(Sbeta))*(-1771*z3 + 442*z4 + 663*pow2(z2))) + 2*Mt*pow2(Sbeta)*(
1822  3888*Mt*Tbeta*z3 + MuSUSY*s2t*(-1930*z3 + 106*z4 + 159*pow2(z2)))) - 6*
1823  Tbeta*pow2(MuSUSY)*(-1 + pow2(Sbeta))*(1502*z3 + 2062*z4 + 1635*pow2(
1824  z2))*pow3(Mt) - 5*xDmsqst2*pow2(Dmsqst2)*pow2(s2t)*pow2(Sbeta)*(2*
1825  MuSUSY*s2t*(-3034*z3 + 94*z4 + 141*pow2(z2)) + 3*Mt*Tbeta*(20*z4 + 30*
1826  pow2(z2) + z3*(-140 - 162*pow2(Sbeta) + 81*pow4(Sbeta))))))) + 6*pow2(
1827  Mst1)*(34560*Dmsqst2*Mst2*z3*pow2(Mt)*(MuSUSY*(16*pow2(Mt) + 3*Dmsqst2*
1828  xDmsqst2*pow2(s2t))*pow2(Sbeta) - 2*Mt*s2t*Tbeta*(-7*pow2(MuSUSY)*(-1 +
1829  pow2(Sbeta)) + 4*Dmsqst2*xDmsqst2*pow2(Sbeta))) + 320*xDmsqst2*pow2(
1830  Dmsqst2)*pow2(Mt)*(1080*Tbeta*z3*pow2(Mt)*pow2(Sbeta) - 8*Mt*MuSUSY*
1831  s2t*pow2(Sbeta)*(2*(-7*z3 + z4) + 3*pow2(z2)) + Tbeta*pow2(MuSUSY)*
1832  pow2(s2t)*(-1 + pow2(Sbeta))*(-944*z3 + 14*z4 + 21*pow2(z2))) - 2*Mt*
1833  pow2(Mst2)*(-5*xDmsqst2*pow2(Dmsqst2)*pow2(s2t)*pow2(Sbeta)*(2*Mt*
1834  Tbeta*(7*z3 + 80*z4 + 120*pow2(z2)) + MuSUSY*s2t*(-16999*z3 + 352*z4 +
1835  528*pow2(z2))) - 240*Dmsqst2*Mt*(-(Tbeta*pow2(MuSUSY)*pow2(s2t)*(-1 +
1836  pow2(Sbeta))*(-35*z3 + 26*z4 + 39*pow2(z2))) + 2*Mt*pow2(Sbeta)*(288*
1837  Mt*Tbeta*z3 + MuSUSY*s2t*(-202*z3 + 10*z4 + 15*pow2(z2)))) - 288*Tbeta*
1838  pow2(MuSUSY)*(-1 + pow2(Sbeta))*(218*z3 + 50*z4 + 21*pow2(z2))*pow3(Mt)
1839  ) + 64*Mt*pow3(Mst2)*(-270*Dmsqst2*(-24*Mt*MuSUSY + Dmsqst2*s2t*Tbeta*
1840  xDmsqst2)*z3*pow2(s2t)*pow2(Sbeta) - s2t*Tbeta*pow2(Mt)*(4320*Dmsqst2*
1841  z3*pow2(Sbeta) + pow2(MuSUSY)*(-1 + pow2(Sbeta))*(-14636*z3 - 1135*z4 +
1842  2388*pow2(z2))) - 4*MuSUSY*pow2(Sbeta)*(-8219*z3 + 326*z4 + 165*pow2(
1843  z2))*pow3(Mt)) - pow4(Mst2)*(-16*Tbeta*pow2(Mt)*pow2(s2t)*(-60*Dmsqst2*
1844  pow2(Sbeta)*(2*(-7*z3 + z4) + 3*pow2(z2)) - pow2(MuSUSY)*(-1 + pow2(
1845  Sbeta))*((-71438 - 216*lmMst1 + 216*lmMst2)*z3 + 2276*z4 + 2523*pow2(
1846  z2))) + pow2(Sbeta)*(-16*MuSUSY*s2t*(3718*z3 + 3470*z4 + 5205*pow2(z2))
1847  *pow3(Mt) + 960*Dmsqst2*Mt*MuSUSY*(-52*z3 + 10*z4 + 15*pow2(z2))*pow3(
1848  s2t) - 32*Tbeta*(69050*z3 + 418*z4 + 627*pow2(z2))*pow4(Mt) + 5*Tbeta*
1849  xDmsqst2*pow2(Dmsqst2)*(-1895*z3 + 128*z4 + 192*pow2(z2))*pow4(s2t))) +
1850  8*s2t*pow2(Sbeta)*(-4*Mt*pow2(s2t)*(1080*Dmsqst2*Tbeta*z3 + Mst2*
1851  MuSUSY*((-23848 - 54*lmMst1 + 54*lmMst2)*z3 + 958*z4 + 1275*pow2(z2)))
1852  + s2t*pow2(Mt)*(MuSUSY*(68262*z3 + 9030*z4 - 13671*pow2(z2)) - 2*Mst2*
1853  Tbeta*(4*(-55 + 54*lmMst1 - 54*lmMst2)*z3 + 826*z4 + 1887*pow2(z2))) +
1854  4*Tbeta*(-48454*z3 + 754*z4 + 1131*pow2(z2))*pow3(Mt) + 15*Dmsqst2*
1855  Mst2*Tbeta*(-173*z3 + 14*z4 + 21*pow2(z2))*pow3(s2t))*pow5(Mst2) + 4*
1856  Tbeta*pow2(Sbeta)*(-4*Mt*(-6518*z3 + 740*z4 + 219*pow2(z2)) + Mst2*s2t*
1857  (-23954*z3 + 1556*z4 + 2577*pow2(z2)))*pow3(s2t)*pow7(Mst2)) + 9*Mst2*(
1858  11520*Dmsqst2*z3*pow2(Mt)*(2*Dmsqst2*Mt*MuSUSY*xDmsqst2*(MuSUSY*s2t*
1859  Tbeta*(-1 + pow2(Sbeta)) + 4*Mt*pow2(Sbeta)) + pow2(Mst2)*(MuSUSY*(16*
1860  pow2(Mt) + 3*Dmsqst2*xDmsqst2*pow2(s2t))*pow2(Sbeta) - 4*Mt*s2t*Tbeta*(
1861  -3*pow2(MuSUSY)*(-1 + pow2(Sbeta)) + 2*Dmsqst2*xDmsqst2*pow2(Sbeta))))
1862  + 20*Mst2*xDmsqst2*pow2(Dmsqst2)*pow2(Mt)*(4*Mt*pow2(Sbeta)*(675*Mt*
1863  Tbeta*z3 + MuSUSY*s2t*(301*z3 - 16*z4 - 24*pow2(z2))) + Tbeta*pow2(
1864  MuSUSY)*pow2(s2t)*(-1 + pow2(Sbeta))*(-4403*z3 + 32*z4 + 48*pow2(z2)))
1865  - 4*Mt*pow3(Mst2)*(-5*xDmsqst2*pow2(Dmsqst2)*pow2(s2t)*pow2(Sbeta)*(2*
1866  Mt*Tbeta*(-301*z3 + 16*z4 + 24*pow2(z2)) + MuSUSY*s2t*(-4403*z3 + 32*z4
1867  + 48*pow2(z2))) - 240*Dmsqst2*Mt*(-(Tbeta*pow2(MuSUSY)*pow2(s2t)*(-1 +
1868  pow2(Sbeta))*(23*z3 + 2*z4 + 3*pow2(z2))) + 2*Mt*pow2(Sbeta)*(48*Mt*
1869  Tbeta*z3 + MuSUSY*s2t*(-58*z3 + 2*z4 + 3*pow2(z2)))) - 64*Tbeta*(230*z3
1870  + 27*z4)*pow2(MuSUSY)*(-1 + pow2(Sbeta))*pow3(Mt)) - (96*Tbeta*pow2(Mt)
1871  *pow2(s2t)*(pow2(MuSUSY)*(1 - pow2(Sbeta))*(2*(1319 + 6*lmMst1 - 6*
1872  lmMst2)*z3 - 40*z4 + 3*pow2(z2)) + 10*Dmsqst2*pow2(Sbeta)*(-58*z3 + 2*
1873  z4 + 3*pow2(z2))) + pow2(Sbeta)*(-96*MuSUSY*s2t*(6*(77 - 8*lmMst1 + 8*
1874  lmMst2)*z3 + 202*z4 + 159*pow2(z2))*pow3(Mt) + 960*Dmsqst2*Mt*MuSUSY*(
1875  23*z3 + 2*z4 + 3*pow2(z2))*pow3(s2t) + Tbeta*(-192*(8*(514 - 3*(lmMst1
1876  + lmMst2) + 6*lmMt)*z3 + 14*z4 + 21*pow2(z2))*pow4(Mt) + 5*xDmsqst2*
1877  pow2(Dmsqst2)*(-4403*z3 + 32*z4 + 48*pow2(z2))*pow4(s2t))))*pow5(Mst2)
1878  + Mt*(32*(-360*Dmsqst2*(-18*Mt*MuSUSY + Dmsqst2*s2t*Tbeta*xDmsqst2)*z3*
1879  pow2(s2t)*pow2(Sbeta) - 5*s2t*Tbeta*pow2(Mt)*(1152*Dmsqst2*z3*pow2(
1880  Sbeta) + pow2(MuSUSY)*(-1 + pow2(Sbeta))*(-2386*z3 - 102*z4 + 333*pow2(
1881  z2))) - 6*MuSUSY*pow2(Sbeta)*(-1922*z3 + 206*z4 + 21*pow2(z2))*pow3(Mt)
1882  )*pow4(Mst2) - 48*s2t*pow2(Sbeta)*(1440*Dmsqst2*Tbeta*z3*pow2(s2t) - 4*
1883  Tbeta*pow2(Mt)*(-1922*z3 + 206*z4 + 21*pow2(z2)) + 5*Mt*MuSUSY*s2t*(-
1884  2386*z3 - 102*z4 + 333*pow2(z2)))*pow6(Mst2)) + 48*pow2(s2t)*pow2(
1885  Sbeta)*(2*Mt*MuSUSY*s2t*(2*(1319 + 6*lmMst1 - 6*lmMst2)*z3 - 40*z4 + 3*
1886  pow2(z2)) + Tbeta*(5*Dmsqst2*pow2(s2t)*(23*z3 + 2*z4 + 3*pow2(z2)) -
1887  pow2(Mt)*(6*(77 - 8*lmMst1 + 8*lmMst2)*z3 + 202*z4 + 159*pow2(z2))))*
1888  pow7(Mst2) + 8*Tbeta*pow2(Sbeta)*(-3*Mst2*s2t*(2*(1319 + 6*lmMst1 - 6*
1889  lmMst2)*z3 - 40*z4 + 3*pow2(z2)) + 10*Mt*(-2386*z3 - 102*z4 + 333*pow2(
1890  z2)))*pow3(s2t)*pow8(Mst2)))) + 2*Al4p*z2*pow2(Mst1)*(544320*
1891  twoLoopFlag*xMst*pow2(Mt)*(2*Mgl*(s2t*Tbeta*pow2(MuSUSY)*(17*Dmglst2*Mt
1892  + Mgl*Mt + Dmglst2*Mst2*s2t*(-1 + pow2(Sbeta))) + (16*(2*Dmglst2 - Mgl)
1893  *MuSUSY*pow2(Mt) + 8*(6*Dmglst2 - Mgl)*Mst2*Tbeta*pow2(Mt) - Mt*s2t*
1894  Tbeta*(4*(5*Dmglst2 - Mgl)*pow2(Mst2) + (17*Dmglst2 + Mgl)*pow2(MuSUSY)
1895  ) - 6*Dmglst2*MuSUSY*pow2(Mst2)*pow2(s2t))*pow2(Sbeta)) + xDmglst2*
1896  pow2(Dmglst2)*(-16*(7*MuSUSY + 15*Mst2*Tbeta)*pow2(Mt)*pow2(Sbeta) - 3*
1897  Mst2*MuSUSY*pow2(s2t)*(-(MuSUSY*Tbeta*(-1 + pow2(Sbeta))) + 10*Mst2*
1898  pow2(Sbeta)) + 2*Mt*s2t*Tbeta*(-41*pow2(MuSUSY)*(-1 + pow2(Sbeta)) +
1899  40*pow2(Mst2)*pow2(Sbeta))))*pow8(Mst1) - 420*Al4p*Mst2*threeLoopFlag*(
1900  xDmsqst2*pow2(Dmsqst2)*pow2(Mgl)*(4*Mt*MuSUSY*pow2(Sbeta)*(243*Mst2*Mt*
1901  pow2(Mst1)*(80*(1 + lmMst1 - lmMst2)*pow2(Mst1) + 40*(3 + lmMst1 -
1902  lmMst2)*pow2(Mst2))*pow2(s2t) - 12960*(-2 + lmMst1 - 2*lmMst2 + lmMt)*
1903  Mst2*pow2(Mst1)*pow3(Mt) + 30*s2t*pow2(Mt)*(627*pow2(Mst1)*pow2(Mst2) +
1904  1348*pow4(Mst1) + 108*pow4(Mst2)) - 5*pow3(s2t)*(3*(1057 + 162*lmMst1 -
1905  162*lmMst2)*pow2(Mst2)*pow4(Mst1) + 9*(191 + 18*lmMst1 - 18*lmMst2)*
1906  pow2(Mst1)*pow4(Mst2) + 4180*pow6(Mst1) + 162*pow6(Mst2))) + Tbeta*(-
1907  25920*(3 + lmMst1 - lmMst2)*Mst2*s2t*pow2(Mst1)*pow2(MuSUSY)*pow3(Mt) +
1908  162*Mt*pow2(s2t)*((10*(209 + 18*lmMst1 - 18*lmMst2)*Mt*pow2(Mst1)*pow2(
1909  Mst2)*pow2(MuSUSY))/9. + (40*(421 + 54*lmMst1 - 54*lmMst2)*Mt*pow2(
1910  MuSUSY)*pow4(Mst1))/27. + 20*Mt*pow2(MuSUSY)*pow4(Mst2) + 5*((-51 + 6*
1911  lmMst1 - 6*lmMst2)*Mt - 2*(11 + 10*lmMst1 - 10*lmMst2)*Mst2*s2t)*(-2 +
1912  pow2(Sbeta))*pow4(Sbeta)*pow6(Mst1)) + pow2(Sbeta)*(-25920*Mst2*s2t*
1913  pow2(Mst1)*((14 - 4*lmMst1 + 8*lmMst2 - 4*lmMt)*pow2(Mst1) + (5 - 2*
1914  lmMst1 + 4*lmMst2 - 2*lmMt)*pow2(Mst2) + (-3 - lmMst1 + lmMst2)*pow2(
1915  MuSUSY))*pow3(Mt) + 3240*Mst2*Mt*pow2(Mst1)*pow3(s2t)*(4*(1 - lmMst1 +
1916  lmMst2)*pow2(Mst1)*pow2(Mst2) + (17 + 10*lmMst1 - 10*lmMst2)*pow4(Mst1)
1917  - 4*(3 + lmMst1 - lmMst2)*pow4(Mst2)) + 12960*((13 - 3*lmMst1 + 6*
1918  lmMst2 - 3*lmMt)*pow2(Mst1)*pow2(Mst2) + 5*(9 - 2*lmMst1 + 4*lmMst2 -
1919  2*lmMt)*pow4(Mst1) + pow4(Mst2))*pow4(Mt) + 9*pow2(Mst2)*pow4(s2t)*((
1920  20*(121 + 27*lmMst1 - 27*lmMst2)*pow2(Mst2)*pow4(Mst1))/3. + 5*(173 +
1921  18*lmMst1 - 18*lmMst2)*pow2(Mst1)*pow4(Mst2) + (560.5555555555555 -
1922  270*lmMst1 + 270*lmMst2)*pow6(Mst1) + 90*pow6(Mst2)) - 60*pow2(Mt)*
1923  pow2(s2t)*(721*(pow2(Mst1) + pow2(Mst2))*pow4(Mst1) + 519*pow2(Mst1)*
1924  pow4(Mst2) + pow2(MuSUSY)*(3*(209 + 18*lmMst1 - 18*lmMst2)*pow2(Mst1)*
1925  pow2(Mst2) + 4*(421 + 54*lmMst1 - 54*lmMst2)*pow4(Mst1) + 54*pow4(Mst2)
1926  ) + 108*pow6(Mst2))))) - 108*Mst2*xDR2DRMOD*(-(xDmglst2*pow2(Dmglst2)*(
1927  Mt*MuSUSY*pow2(Sbeta)*(384*Mt*pow2(Mst1)*pow2(Mst2)*pow2(s2t)*((-1 + 6*
1928  lmMst2)*pow2(Mst2)*(pow2(Mst1) + pow2(Mst2)) + (1 + 3*lmMst2)*pow4(
1929  Mst1)) + 512*pow2(Mst1)*pow3(Mt)*(-(lmMst2*pow2(Mst1)*pow2(Mst2)) + 2*(
1930  11 + 5*lmMst2)*pow4(Mst1) - (-2 + lmMst2)*pow4(Mst2)) + 864*s2t*(-pow2(
1931  Mst1) + pow2(Mst2))*pow2(Mt)*pow5(Mst2) + 9*pow3(s2t)*((16*(8 + 27*
1932  lmMst1 - 39*lmMst2)*pow2(Mst1)*pow2(Mst2))/9. + 24*pow4(Mst1) - 24*
1933  pow4(Mst2))*pow5(Mst2)) + Tbeta*(8*s2t*pow2(Mt)*pow2(MuSUSY)*(2*(-32*(-
1934  1 + 6*lmMst2)*Mt + (-8 - 27*lmMst1 + 39*lmMst2)*Mst2*s2t)*pow2(Mst2)*
1935  pow4(Mst1) + (32*(1 - 6*lmMst2)*Mt + (11 - 54*lmMst1 + 78*lmMst2)*Mst2*
1936  s2t)*pow2(Mst1)*pow4(Mst2) - 2*(48*(1 + 3*lmMst2)*Mt + (7*lmMst1 - 15*
1937  lmMst2)*Mst2*s2t)*pow6(Mst1) + 27*s2t*pow7(Mst2)) + pow2(Sbeta)*(32*
1938  Mst2*pow4(Mt)*(-48*(4 + lmMst2)*pow2(Mst2)*pow4(Mst1) + 43*pow2(Mst1)*
1939  pow4(Mst2) + 192*(3 + 2*lmMst2)*pow6(Mst1) + 27*pow6(Mst2)) + pow4(s2t)
1940  *pow5(Mst2)*(2*(-11 + 54*lmMst1 - 78*lmMst2)*pow2(Mst2)*pow4(Mst1) - 2*
1941  (43 + 54*lmMst1 - 78*lmMst2)*pow2(Mst1)*pow4(Mst2) + 14*pow6(Mst1) +
1942  54*pow6(Mst2)) - 256*s2t*pow2(Mst1)*pow3(Mt)*(3*(2*(5 + 3*lmMst2)*pow2(
1943  Mst2) - (1 + 3*lmMst2)*pow2(MuSUSY))*pow4(Mst1) + (1 - 6*lmMst2)*pow2(
1944  MuSUSY)*pow4(Mst2) - 2*pow2(Mst1)*((-1 + 6*lmMst2)*pow2(Mst2)*pow2(
1945  MuSUSY) + 2*pow4(Mst2)) - 2*(-2 + lmMst2)*pow6(Mst2)) + 8*Mst2*pow2(Mt)
1946  *pow2(s2t)*(pow4(Mst1)*(2*(8 + 27*lmMst1 - 39*lmMst2)*pow2(Mst2)*pow2(
1947  MuSUSY) - 54*pow4(Mst2)) + 2*(7*lmMst1 - 15*lmMst2)*pow2(MuSUSY)*pow6(
1948  Mst1) - 27*(2*pow2(Mst2) + pow2(MuSUSY))*pow6(Mst2) + pow2(Mst1)*((-11
1949  + 54*lmMst1 - 78*lmMst2)*pow2(MuSUSY)*pow4(Mst2) + 108*pow6(Mst2))) +
1950  128*(1 - 6*lmMst2)*Mt*pow2(Mst1)*pow3(s2t)*pow8(Mst2))))) + Mgl*(Mt*
1951  MuSUSY*pow2(Sbeta)*(-384*(Dmglst2 + 3*Dmglst2*lmMst2 + Mgl + lmMst2*
1952  Mgl)*Mt*pow2(Mst1)*pow2(Mst2)*pow2(s2t)*(pow2(Mst1)*pow2(Mst2) + pow4(
1953  Mst1) + pow4(Mst2)) + 512*pow2(Mst1)*pow3(Mt)*(-(Dmglst2*(7 + lmMst2)*
1954  pow2(Mst1)*pow2(Mst2)) - 2*Dmglst2*(11 + 5*lmMst2)*pow4(Mst1) +
1955  Dmglst2*(-1 + lmMst2)*pow4(Mst2) + (1 + lmMst2)*Mgl*(3*pow2(Mst1)*pow2(
1956  Mst2) + 6*pow4(Mst1) + pow4(Mst2))) + 32*(7*Dmglst2 - 13*Mgl)*s2t*(
1957  pow2(Mst1) - pow2(Mst2))*pow2(Mt)*pow5(Mst2) - pow3(s2t)*(16*(Dmglst2*(
1958  7*lmMst1 - 15*lmMst2) + (-4 - 13*lmMst1 + 9*lmMst2)*Mgl)*pow2(Mst1)*
1959  pow2(Mst2) + 8*(7*Dmglst2 - 13*Mgl)*pow4(Mst1) - 8*(7*Dmglst2 - 13*Mgl)
1960  *pow4(Mst2))*pow5(Mst2)) + Tbeta*(s2t*pow2(Mt)*pow2(MuSUSY)*(256*(
1961  Dmglst2 + 3*Dmglst2*lmMst2 + Mgl + lmMst2*Mgl)*Mt*pow2(Mst1)*(2*pow2(
1962  Mst1)*pow2(Mst2) + 3*pow4(Mst1) + pow4(Mst2)) - 8*Mst2*s2t*(-2*(
1963  Dmglst2*(7*lmMst1 - 15*lmMst2) + (-4 - 13*lmMst1 + 9*lmMst2)*Mgl)*(
1964  pow2(Mst1) + pow2(Mst2))*pow4(Mst1) + (Dmglst2*(7 - 14*lmMst1 + 30*
1965  lmMst2) + (-5 + 26*lmMst1 - 18*lmMst2)*Mgl)*pow2(Mst1)*pow4(Mst2) + (7*
1966  Dmglst2 - 13*Mgl)*pow6(Mst2))) + pow2(Sbeta)*(-2*(pow2(Mst1) - pow2(
1967  Mst2))*(Dmglst2*(2*(7*lmMst1 - 15*lmMst2)*pow2(Mst1)*pow2(Mst2) + 7*
1968  pow4(Mst1) - 7*pow4(Mst2)) + Mgl*(-2*(4 + 13*lmMst1 - 9*lmMst2)*pow2(
1969  Mst1)*pow2(Mst2) - 13*pow4(Mst1) + 13*pow4(Mst2)))*pow4(s2t)*pow5(Mst2)
1970  + 256*s2t*pow2(Mst1)*pow3(Mt)*(6*(Dmglst2*(5 + 3*lmMst2) - (1 + lmMst2)
1971  *Mgl)*pow2(Mst2)*pow4(Mst1) + 4*(Dmglst2*(3 + lmMst2) - (1 + lmMst2)*
1972  Mgl)*pow2(Mst1)*pow4(Mst2) - (Dmglst2 + 3*Dmglst2*lmMst2 + Mgl +
1973  lmMst2*Mgl)*pow2(MuSUSY)*(2*pow2(Mst1)*pow2(Mst2) + 3*pow4(Mst1) +
1974  pow4(Mst2)) - 2*(Dmglst2*(-1 + lmMst2) + (1 + lmMst2)*Mgl)*pow6(Mst2))
1975  - 32*Mst2*pow4(Mt)*(Dmglst2*(96*(2 + lmMst2)*pow2(Mst2)*pow4(Mst1) +
1976  39*pow2(Mst1)*pow4(Mst2) + 192*(3 + 2*lmMst2)*pow6(Mst1) + 7*pow6(Mst2)
1977  ) - Mgl*(48*(1 + lmMst2)*(2*pow2(Mst1) + pow2(Mst2))*pow4(Mst1) + (29 +
1978  16*lmMst2)*pow2(Mst1)*pow4(Mst2) + 13*pow6(Mst2))) + 8*Mst2*pow2(Mt)*
1979  pow2(s2t)*(2*(7*Dmglst2 - 13*Mgl)*pow2(pow2(Mst1) - pow2(Mst2))*pow4(
1980  Mst2) + pow2(MuSUSY)*(-2*(Dmglst2*(7*lmMst1 - 15*lmMst2) + (-4 - 13*
1981  lmMst1 + 9*lmMst2)*Mgl)*(pow2(Mst1) + pow2(Mst2))*pow4(Mst1) + (
1982  Dmglst2*(7 - 14*lmMst1 + 30*lmMst2) + (-5 + 26*lmMst1 - 18*lmMst2)*Mgl)
1983  *pow2(Mst1)*pow4(Mst2) + (7*Dmglst2 - 13*Mgl)*pow6(Mst2))) + 128*(
1984  Dmglst2 + 3*Dmglst2*lmMst2 + Mgl + lmMst2*Mgl)*Mt*pow2(Mst1)*pow3(s2t)*
1985  pow8(Mst2)))))) + 2*xDmglst2*pow2(Dmglst2)*pow2(Mst2)*(-68040*
1986  twoLoopFlag*pow2(Mst1)*(-4*pow2(Mt)*(-8*(4*MuSUSY + 9*Mst2*Tbeta)*pow2(
1987  Mt)*pow2(Sbeta) - 3*Mst2*MuSUSY*pow2(s2t)*(-(MuSUSY*Tbeta*(-1 + pow2(
1988  Sbeta))) + 10*Mst2*pow2(Sbeta)) + 2*Mt*s2t*Tbeta*(-31*pow2(MuSUSY)*(-1
1989  + pow2(Sbeta)) + 12*pow2(Mst2)*pow2(Sbeta)))*pow4(Mst1) + pow2(Mst1)*
1990  pow2(Mst2)*(12*Mst2*MuSUSY*pow2(Mt)*pow2(s2t)*(-(MuSUSY*Tbeta*(-1 +
1991  pow2(Sbeta))) + 10*Mst2*pow2(Sbeta)) + Tbeta*(168*s2t*pow2(MuSUSY)*(-1
1992  + pow2(Sbeta))*pow3(Mt) + (4*Mt - 3*Mst2*s2t)*pow2(Sbeta)*pow3(s2t)*
1993  pow4(Mst2)) + 32*(MuSUSY + Mst2*Tbeta)*pow2(Sbeta)*pow4(Mt)) + pow4(
1994  Mst2)*(12*Mst2*MuSUSY*pow2(Mt)*pow2(s2t)*(-(MuSUSY*Tbeta*(-1 + pow2(
1995  Sbeta))) + 11*Mst2*pow2(Sbeta)) + 8*s2t*Tbeta*(11*pow2(MuSUSY)*(-1 +
1996  pow2(Sbeta)) - 4*pow2(Mst2)*pow2(Sbeta))*pow3(Mt) - 4*Mt*(3*MuSUSY +
1997  11*Mst2*Tbeta)*pow2(Sbeta)*pow3(Mst2)*pow3(s2t) + 32*MuSUSY*pow2(Sbeta)
1998  *pow4(Mt) + 3*Tbeta*pow2(Sbeta)*pow4(s2t)*pow5(Mst2))) + Al4p*
1999  threeLoopFlag*(Tbeta*(28*pow2(Mst1)*pow2(MuSUSY)*pow3(Mt)*(9*pow2(Mst2)
2000  *(192*(617 + 2040*lmMst2)*Mst2*Mt - 43200*Dmsqst2*(2 + 3*lmMst1 - 3*
2001  lmMst2)*s2t + (897737 + 47880*lmMst1 + 238680*lmMst2)*s2t*pow2(Mst2)) +
2002  6*pow2(Mst1)*(6*(122051 + 1800*lmMst1 + 274680*lmMst2)*Mst2*Mt + 64800*
2003  Dmsqst2*(1 - 9*lmMst1 + 9*lmMst2)*s2t + (1263161 - 156600*lmMst1 +
2004  979560*lmMst2)*s2t*pow2(Mst2)) + 2*(15057833 - 4014360*lmMst1 +
2005  5563080*lmMst2)*s2t*pow4(Mst1)) - 252*Mst2*pow2(Mt)*pow2(s2t)*(-2700*
2006  Dmsqst2*(-93 + 10*lmMst1 - 10*lmMst2)*(-2 + pow2(Sbeta))*pow4(Sbeta)*
2007  pow6(Mst1) + (pow2(MuSUSY)*(30*(21223 + 13230*lmMst1 + 702*lmMst2)*
2008  pow2(Mst2)*pow4(Mst1) + 9*(88931 + 33120*lmMst1 + 13320*lmMst2)*pow2(
2009  Mst1)*pow4(Mst2) - 97200*Dmsqst2*(3*(2 + lmMst1 - lmMst2)*pow2(Mst1)*
2010  pow2(Mst2) + (3 + 8*lmMst1 - 8*lmMst2)*pow4(Mst1) + pow4(Mst2)) + 4*(
2011  2128489 - 307800*lmMst1 + 377460*lmMst2)*pow6(Mst1) + 38880*pow6(Mst2))
2012  )/9.) + pow2(Sbeta)*(4*s2t*pow2(Mst1)*pow3(Mt)*(-6*pow2(Mst1)*pow2(
2013  Mst2)*((-47845349 + 6357960*lmMst1 - 13388760*lmMst2 + 7030800*lmMt)*
2014  pow2(Mst2) + 7*(1263161 - 156600*lmMst1 + 979560*lmMst2)*pow2(MuSUSY))
2015  + 14*(4*(-9908167 + 949320*lmMst1 - 1769040*lmMst2 + 217080*lmMt)*pow2(
2016  Mst2) + (-15057833 + 4014360*lmMst1 - 5563080*lmMst2)*pow2(MuSUSY))*
2017  pow4(Mst1) - 9*((-5322098 + 670320*lmMst1 - 2817360*lmMst2 + 816480*
2018  lmMt)*pow2(Mst2) + 7*(897737 + 47880*lmMst1 + 238680*lmMst2)*pow2(
2019  MuSUSY))*pow4(Mst2) + 2721600*Dmsqst2*((2 + 3*lmMst1 - 3*lmMst2)*pow2(
2020  Mst2)*pow2(MuSUSY) + pow2(Mst1)*((-51 + 14*lmMst1 - 28*lmMst2 + 14*
2021  lmMt)*pow2(Mst2) + (-1 + 9*lmMst1 - 9*lmMst2)*pow2(MuSUSY)) + (-87 +
2022  22*lmMst1 - 44*lmMst2 + 22*lmMt)*pow4(Mst1) + (-19 + 6*lmMst1 - 12*
2023  lmMst2 + 6*lmMt)*pow4(Mst2))) + 2520*Mst2*pow4(Mt)*((-2*pow2(Mst1)*
2024  pow2(Mst2)*(5*(66191 - 9288*lmMst1 + 11952*lmMst2 - 16488*lmMt)*pow2(
2025  Mst2) + 48*(617 + 2040*lmMst2)*pow2(MuSUSY)))/5. - (2*((52628795 -
2026  5738040*lmMst1 + 11332440*lmMst2 - 5972400*lmMt)*pow2(Mst2) + 21*(
2027  122051 + 1800*lmMst1 + 274680*lmMst2)*pow2(MuSUSY))*pow4(Mst1))/105. +
2028  4320*Dmsqst2*((23 - 5*lmMst1 + 10*lmMst2 - 5*lmMt)*pow2(Mst1)*pow2(
2029  Mst2) + (77 - 18*lmMst1 + 36*lmMst2 - 18*lmMt)*pow4(Mst1) + pow4(Mst2))
2030  + (972837.434920635 - 186624*lmMst1 + 349056*lmMst2 - 43200*lmMt)*pow6(
2031  Mst1) - 1728*pow6(Mst2)) + 36*Mst2*pow2(Mt)*pow2(s2t)*((-10*pow2(Mst2)*
2032  (9*(5208*lmMst1 - 37*(7339 + 3192*lmMst2))*pow2(Mst2) - 7*(21223 +
2033  13230*lmMst1 + 702*lmMst2)*pow2(MuSUSY))*pow4(Mst1))/3. + pow2(Mst1)*((
2034  2218086 - 32760*lmMst1 + 4145400*lmMst2)*pow2(Mst2) + 7*(88931 + 33120*
2035  lmMst1 + 13320*lmMst2)*pow2(MuSUSY))*pow4(Mst2) + (28*(45*(78533 +
2036  6732*lmMst1 + 180*lmMst2)*pow2(Mst2) + (2128489 - 307800*lmMst1 +
2037  377460*lmMst2)*pow2(MuSUSY))*pow6(Mst1))/9. - 75600*Dmsqst2*(pow2(Mst1)
2038  *pow2(Mst2)*(8*pow2(Mst2) + 3*(2 + lmMst1 - lmMst2)*pow2(MuSUSY)) + (8*
2039  pow2(Mst2) + (3 + 8*lmMst1 - 8*lmMst2)*pow2(MuSUSY))*pow4(Mst1) + (2*
2040  pow2(Mst2) + pow2(MuSUSY))*pow4(Mst2) + 8*pow6(Mst1)) + 30240*(2*pow2(
2041  Mst2) + pow2(MuSUSY))*pow6(Mst2)) + 68040*Mt*pow2(Mst1)*pow2(Mst2)*
2042  pow3(s2t)*(40*Dmsqst2*(2*(5 - 3*lmMst1 + 3*lmMst2)*pow2(Mst1)*pow2(
2043  Mst2) + 11*pow4(Mst1) - 2*(2 + 3*lmMst1 - 3*lmMst2)*pow4(Mst2)) + ((
2044  8583283 - 2329560*lmMst1 + 2329560*lmMst2)*pow2(Mst2)*pow4(Mst1) - 60*(
2045  143005 + 30024*lmMst1 - 26352*lmMst2)*pow2(Mst1)*pow4(Mst2) + 9*(897737
2046  + 47880*lmMst1 + 238680*lmMst2)*pow6(Mst2))/4860.) - 7*pow3(Mst2)*pow4(
2047  s2t)*(-12*(77099 + 16605*lmMst1 + 18225*lmMst2)*pow4(Mst1)*pow4(Mst2) +
2048  (4545982 - 233280*lmMst1 + 233280*lmMst2)*pow2(Mst2)*pow6(Mst1) + 9*(
2049  80291 + 33120*lmMst1 + 13320*lmMst2)*pow2(Mst1)*pow6(Mst2) + 48600*
2050  Dmsqst2*(4*(4 - lmMst1 + lmMst2)*pow2(Mst2)*pow4(Mst1) + (7 + 10*lmMst1
2051  - 10*lmMst2)*pow6(Mst1) - 2*((4 + 3*lmMst1 - 3*lmMst2)*pow2(Mst1)*pow4(
2052  Mst2) + pow6(Mst2))) + 38880*pow8(Mst2)))) + 2*Mt*MuSUSY*pow2(Sbeta)*(-
2053  3*pow2(Mst2)*(288*(434369 - 7875*lmMst1 + 320355*lmMst2)*Mst2*s2t*pow2(
2054  Mt) - 21*(166889 + 456840*lmMst1 - 1243080*lmMst2)*Mt*pow2(Mst2)*pow2(
2055  s2t) + 64*(3231296 - 460215*lmMst1 + 1100925*lmMst2 - 515970*lmMt)*
2056  pow3(Mt) + 14*(54563 - 32940*lmMst1 + 32940*lmMst2)*pow3(Mst2)*pow3(
2057  s2t))*pow4(Mst1) - 9*pow2(Mst1)*(72*(126587 - 1820*lmMst1 + 230300*
2058  lmMst2)*Mst2*s2t*pow2(Mt) + 21*(897737 + 47880*lmMst1 + 238680*lmMst2)*
2059  Mt*pow2(Mst2)*pow2(s2t) + 4*(2456929 - 335160*lmMst1 + 1408680*lmMst2 -
2060  408240*lmMt)*pow3(Mt) - 14*(84611 + 33120*lmMst1 + 13320*lmMst2)*pow3(
2061  Mst2)*pow3(s2t))*pow4(Mst2) + 14*(-72*(510139 + 44280*lmMst1 + 76680*
2062  lmMst2)*Mst2*s2t*pow2(Mt) + 15*(-1700119 + 484056*lmMst1 - 579960*
2063  lmMst2)*Mt*pow2(Mst2)*pow2(s2t) + 8*(13463149 - 1492020*lmMst1 +
2064  2713500*lmMst2 - 625320*lmMt)*pow3(Mt) + 8*(788723 - 80595*lmMst1 +
2065  80595*lmMst2)*pow3(Mst2)*pow3(s2t))*pow6(Mst1) + 680400*Dmsqst2*(2*
2066  pow2(Mst1)*pow2(Mst2)*(20*Mst2*s2t*pow2(Mt) + 6*(2 + 3*lmMst1 - 3*
2067  lmMst2)*Mt*pow2(Mst2)*pow2(s2t) - 8*(-8 + 3*lmMst1 - 6*lmMst2 + 3*lmMt)
2068  *pow3(Mt) + (-5 - 3*lmMst1 + 3*lmMst2)*pow3(Mst2)*pow3(s2t)) - 2*(-36*
2069  Mst2*s2t*pow2(Mt) + 18*(1 - 2*lmMst1 + 2*lmMst2)*Mt*pow2(Mst2)*pow2(
2070  s2t) + 80*(-3 + lmMst1 - 2*lmMst2 + lmMt)*pow3(Mt) + (-3 + 5*lmMst1 -
2071  5*lmMst2)*pow3(Mst2)*pow3(s2t))*pow4(Mst1) + 8*s2t*pow2(Mt)*pow5(Mst2)
2072  + (6*(-17 + 12*lmMst1 - 12*lmMst2)*Mt + 13*Mst2*s2t)*pow2(s2t)*pow6(
2073  Mst1) - 2*pow3(s2t)*pow7(Mst2)) + 544320*(-4*s2t*pow2(Mt)*pow7(Mst2) +
2074  pow3(s2t)*pow9(Mst2))))) + Mgl*Mst2*(68040*Mst2*twoLoopFlag*pow2(Mst1)*
2075  (4*Mt*MuSUSY*(Mt*MuSUSY*s2t*Tbeta*(4*Mt*((9*Dmglst2 + Mgl)*pow2(Mst1)*
2076  pow2(Mst2) + (13*Dmglst2 + Mgl)*pow4(Mst1) + (5*Dmglst2 + Mgl)*pow4(
2077  Mst2)) - Mst2*s2t*(Mgl*pow4(Mst2) + 4*Dmglst2*(pow2(Mst1)*pow2(Mst2) +
2078  pow4(Mst1) + pow4(Mst2)))) + pow2(Sbeta)*(16*pow3(Mt)*(-2*Mgl*pow2(
2079  Mst1)*pow2(Mst2) + 3*(Dmglst2 - Mgl)*pow4(Mst1) - (Dmglst2 + Mgl)*pow4(
2080  Mst2)) - 6*Mt*pow2(Mst2)*pow2(s2t)*(4*Dmglst2*pow2(Mst1)*(pow2(Mst1) +
2081  pow2(Mst2)) + (5*Dmglst2 + Mgl)*pow4(Mst2)) + (4*Dmglst2*pow2(Mst2) +
2082  Mgl*(-pow2(Mst1) + pow2(Mst2)))*pow3(s2t)*pow5(Mst2))) + Tbeta*pow2(
2083  Sbeta)*(4*Mst2*pow2(Mt)*pow2(MuSUSY)*pow2(s2t)*(Mgl*pow4(Mst2) + 4*
2084  Dmglst2*(pow2(Mst1)*pow2(Mst2) + pow4(Mst1) + pow4(Mst2))) + 32*Mst2*(
2085  4*Dmglst2*pow2(Mst1)*(3*pow2(Mst1) + pow2(Mst2)) - Mgl*(2*pow2(Mst1)*
2086  pow2(Mst2) + 3*pow4(Mst1) + pow4(Mst2)))*pow4(Mt) + pow3(s2t)*(-8*(
2087  Dmglst2 + Mgl)*Mst2*Mt*pow2(Mst1) + 2*(2*Dmglst2 + Mgl)*s2t*pow2(Mst1)*
2088  pow2(Mst2) + 8*(5*Dmglst2 + Mgl)*Mt*pow3(Mst2) - Mgl*s2t*pow4(Mst1) - (
2089  4*Dmglst2 + Mgl)*s2t*pow4(Mst2))*pow5(Mst2) - 16*s2t*pow3(Mt)*(pow2(
2090  MuSUSY)*((9*Dmglst2 + Mgl)*pow2(Mst1)*pow2(Mst2) + (13*Dmglst2 + Mgl)*
2091  pow4(Mst1) + (5*Dmglst2 + Mgl)*pow4(Mst2)) + 4*((3*Dmglst2 - Mgl)*pow2(
2092  Mst2)*pow4(Mst1) + (Dmglst2 - Mgl)*pow2(Mst1)*pow4(Mst2)) - 4*(Dmglst2
2093  + Mgl)*pow6(Mst2)))) + Al4p*threeLoopFlag*(Tbeta*(-56*pow2(Mst1)*pow2(
2094  MuSUSY)*pow3(Mt)*(-(Dmglst2*Mst2*(27*pow2(Mst2)*(7680*(5 + 6*lmMst2)*
2095  Mst2*Mt - 14400*Dmsqst2*(2 + 3*lmMst1 - 3*lmMst2)*s2t + (173947 -
2096  25080*lmMst1 + 68760*lmMst2)*s2t*pow2(Mst2)) + 36*pow2(Mst1)*(30*(3643
2097  - 120*lmMst1 + 3192*lmMst2)*Mst2*Mt + 10800*Dmsqst2*(1 - 9*lmMst1 + 9*
2098  lmMst2)*s2t + (364291 - 88560*lmMst1 + 147960*lmMst2)*s2t*pow2(Mst2)) +
2099  2*(15057833 - 4014360*lmMst1 + 5563080*lmMst2)*s2t*pow4(Mst1))) + 3*
2100  Mgl*(-60*Mst2*pow2(Mst1)*(3*(-353 + 72*lmMst1 + 696*lmMst2)*Mst2*Mt +
2101  2160*Dmsqst2*(5 + 3*lmMst1 - 3*lmMst2)*s2t + 2*(3937 + 2988*lmMst1 -
2102  2232*lmMst2)*s2t*pow2(Mst2)) - 45*(64*(53 + 24*lmMst2)*Mst2*Mt + 2880*
2103  Dmsqst2*(2 + lmMst1 - lmMst2)*s2t + 3*(2269 + 664*lmMst1 - 56*lmMst2)*
2104  s2t*pow2(Mst2))*pow3(Mst2) + 2*(15*(38401 + 1080*lmMst1 - 7992*lmMst2)*
2105  Mt + (-266863 - 396360*lmMst1 + 346680*lmMst2)*Mst2*s2t)*pow4(Mst1))) +
2106  28*pow2(Mt)*pow2(s2t)*(pow2(Mst2)*pow2(MuSUSY)*(-4*Dmglst2*(162*(6803 -
2107  1810*lmMst1 + 2670*lmMst2)*pow2(Mst2)*pow4(Mst1) + 135*(1631 - 648*
2108  lmMst1 + 1680*lmMst2)*pow2(Mst1)*pow4(Mst2) + (4256978 - 615600*lmMst1
2109  + 754920*lmMst2)*pow6(Mst1) - 22680*pow6(Mst2)) + 3*Mgl*(6*(533629 -
2110  900*lmMst1 + 180*lmMst2)*pow2(Mst2)*pow4(Mst1) + 90*(5597 + 564*lmMst1
2111  - 1104*lmMst2)*pow2(Mst1)*pow4(Mst2) + (6649153 - 81540*lmMst1 + 77220*
2112  lmMst2)*pow6(Mst1) - 20520*pow6(Mst2))) + 300*Dmsqst2*(162*Dmglst2*
2113  pow2(Mst2)*(4*pow2(MuSUSY)*(3*(2 + lmMst1 - lmMst2)*pow2(Mst1)*pow2(
2114  Mst2) + (3 + 8*lmMst1 - 8*lmMst2)*pow4(Mst1) + pow4(Mst2)) + (-93 + 10*
2115  lmMst1 - 10*lmMst2)*(-2 + pow2(Sbeta))*pow4(Sbeta)*pow6(Mst1)) + Mgl*
2116  pow2(MuSUSY)*(9*(1097 - 72*lmMst1 + 72*lmMst2)*pow2(Mst2)*pow4(Mst1) +
2117  1431*pow2(Mst1)*pow4(Mst2) + (20701 - 648*lmMst1 + 648*lmMst2)*pow6(
2118  Mst1) - 324*pow6(Mst2)))) + pow2(Sbeta)*(-56*Mst2*s2t*pow2(Mst1)*pow3(
2119  Mt)*(Dmglst2*(18*pow2(Mst1)*pow2(Mst2)*(3*(510149 - 55320*lmMst1 +
2120  118200*lmMst2 - 32160*lmMt)*pow2(Mst2) + 2*(364291 - 88560*lmMst1 +
2121  147960*lmMst2)*pow2(MuSUSY)) + 2*(4*(9908167 - 949320*lmMst1 + 1769040*
2122  lmMst2 - 217080*lmMt)*pow2(Mst2) + (15057833 - 4014360*lmMst1 +
2123  5563080*lmMst2)*pow2(MuSUSY))*pow4(Mst1) + 27*(30*(-1672*lmMst1 + 1448*
2124  lmMst2 + 59*(71 - 32*lmMt))*pow2(Mst2) + (173947 - 25080*lmMst1 +
2125  68760*lmMst2)*pow2(MuSUSY))*pow4(Mst2) + 388800*Dmsqst2*((-2 - 3*lmMst1
2126  + 3*lmMst2)*pow2(Mst2)*pow2(MuSUSY) + pow2(Mst1)*((51 - 14*lmMst1 + 28*
2127  lmMst2 - 14*lmMt)*pow2(Mst2) + (1 - 9*lmMst1 + 9*lmMst2)*pow2(MuSUSY))
2128  + (87 - 22*lmMst1 + 44*lmMst2 - 22*lmMt)*pow4(Mst1) + (19 - 6*lmMst1 +
2129  12*lmMst2 - 6*lmMt)*pow4(Mst2))) - 3*Mgl*(6*pow2(Mst1)*pow2(Mst2)*((
2130  470657 - 86040*lmMst1 + 178200*lmMst2)*pow2(Mst2) - 20*(3937 + 2988*
2131  lmMst1 - 2232*lmMst2)*pow2(MuSUSY)) + 2*((2299036 - 388800*lmMst1 +
2132  656640*lmMst2)*pow2(Mst2) + (-266863 - 396360*lmMst1 + 346680*lmMst2)*
2133  pow2(MuSUSY))*pow4(Mst1) + 9*(2*(68693 - 9960*lmMst1 + 45480*lmMst2 -
2134  3840*lmMt)*pow2(Mst2) - 15*(2269 + 664*lmMst1 - 56*lmMst2)*pow2(MuSUSY)
2135  )*pow4(Mst2) + 129600*Dmsqst2*((-2 - lmMst1 + lmMst2)*pow2(Mst2)*pow2(
2136  MuSUSY) + pow2(Mst1)*((5 - 2*lmMst1 + 4*lmMst2 - 2*lmMt)*pow2(Mst2) + (
2137  -5 - 3*lmMst1 + 3*lmMst2)*pow2(MuSUSY)) + (5 - 2*lmMst1 + 4*lmMst2 - 2*
2138  lmMt)*pow4(Mst1) + (1 - 2*lmMst1 + 4*lmMst2 - 2*lmMt)*pow4(Mst2)))) +
2139  28*Mt*pow2(Mst1)*pow3(Mst2)*pow3(s2t)*(-3*Mgl*(17*(6167 - 9720*lmMst1 +
2140  9720*lmMst2)*pow2(Mst2)*pow4(Mst1) + 30*(4673 - 5976*lmMst1 + 8424*
2141  lmMst2)*pow2(Mst1)*pow4(Mst2) + 64800*Dmsqst2*(-2*(1 + lmMst1 - lmMst2)
2142  *pow2(Mst1)*pow2(Mst2) + pow4(Mst1) - 2*(2 + lmMst1 - lmMst2)*pow4(
2143  Mst2)) - 135*(2269 + 664*lmMst1 - 56*lmMst2)*pow6(Mst2)) + Dmglst2*((
2144  8583283 - 2329560*lmMst1 + 2329560*lmMst2)*pow2(Mst2)*pow4(Mst1) + 18*(
2145  206741 - 101880*lmMst1 + 89640*lmMst2)*pow2(Mst1)*pow4(Mst2) + 194400*
2146  Dmsqst2*(2*(5 - 3*lmMst1 + 3*lmMst2)*pow2(Mst1)*pow2(Mst2) + 11*pow4(
2147  Mst1) - 2*(2 + 3*lmMst1 - 3*lmMst2)*pow4(Mst2)) + 27*(173947 - 25080*
2148  lmMst1 + 68760*lmMst2)*pow6(Mst2))) + 7*pow4(Mst2)*pow4(s2t)*(-4*
2149  Dmglst2*(-108*(-5917 + 1095*lmMst1 + 195*lmMst2)*pow4(Mst1)*pow4(Mst2)
2150  + (2272991 - 116640*lmMst1 + 116640*lmMst2)*pow2(Mst2)*pow6(Mst1) -
2151  135*(648*lmMst1 - 7*(281 + 240*lmMst2))*pow2(Mst1)*pow6(Mst2) + 24300*
2152  Dmsqst2*(4*(4 - lmMst1 + lmMst2)*pow2(Mst2)*pow4(Mst1) + (7 + 10*lmMst1
2153  - 10*lmMst2)*pow6(Mst1) - 2*((4 + 3*lmMst1 - 3*lmMst2)*pow2(Mst1)*pow4(
2154  Mst2) + pow6(Mst2))) - 22680*pow8(Mst2)) + 3*Mgl*(6*(362299 - 17820*
2155  lmMst1 + 33300*lmMst2)*pow4(Mst1)*pow4(Mst2) - 5*(-149867 + 3996*lmMst1
2156  + 4860*lmMst2)*pow2(Mst2)*pow6(Mst1) + 100*Dmsqst2*(9*(743 - 72*lmMst1
2157  + 72*lmMst2)*pow2(Mst2)*pow4(Mst1) + 2079*pow2(Mst1)*pow4(Mst2) + (2386
2158  + 648*lmMst1 - 648*lmMst2)*pow6(Mst1) - 324*pow6(Mst2)) + 90*(6053 +
2159  564*lmMst1 - 1104*lmMst2)*pow2(Mst1)*pow6(Mst2) - 20520*pow8(Mst2))) +
2160  16*pow4(Mt)*(4*Dmglst2*pow2(Mst2)*(9*((3184397 - 476280*lmMst1 +
2161  1156680*lmMst2 - 161280*lmMt)*pow2(Mst2) + 105*(-3643 + 120*lmMst1 -
2162  3192*lmMst2)*pow2(MuSUSY))*pow4(Mst1) + 27*pow2(Mst1)*(-6720*(5 + 6*
2163  lmMst2)*pow2(Mst2)*pow2(MuSUSY) + (209341 - 26880*lmMst1 + 82320*lmMst2
2164  - 1680*lmMt)*pow4(Mst2)) + 4*(19152737 - 3674160*lmMst1 + 6872040*
2165  lmMst2 - 850500*lmMt)*pow6(Mst1) + 158760*pow6(Mst2)) + 680400*Dmsqst2*
2166  (2*Dmglst2*pow2(Mst2)*((23 - 5*lmMst1 + 10*lmMst2 - 5*lmMt)*pow2(Mst1)*
2167  pow2(Mst2) + (77 - 18*lmMst1 + 36*lmMst2 - 18*lmMt)*pow4(Mst1) + pow4(
2168  Mst2)) - Mgl*(-2*(-3 + lmMst1 - 2*lmMst2 + lmMt)*pow2(Mst1)*pow2(Mst2)*
2169  (2*pow2(Mst1) + pow2(Mst2)) + 2*(7 - 3*lmMst1 + 6*lmMst2 - 3*lmMt)*
2170  pow6(Mst1) + pow6(Mst2))) - 21*Mgl*(3*pow4(Mst1)*(30*(-353 + 72*lmMst1
2171  + 696*lmMst2)*pow2(Mst2)*pow2(MuSUSY) + (310039 - 91080*lmMst1 +
2172  145080*lmMst2 - 43920*lmMt)*pow4(Mst2)) + (2*(626869 - 300240*lmMst1 +
2173  395280*lmMst2 - 78840*lmMt)*pow2(Mst2) - 15*(38401 + 1080*lmMst1 -
2174  7992*lmMst2)*pow2(MuSUSY))*pow6(Mst1) + 9*pow2(Mst1)*(160*(53 + 24*
2175  lmMst2)*pow2(MuSUSY)*pow4(Mst2) + (48983 - 12480*lmMst1 + 26820*lmMst2
2176  - 12180*lmMt)*pow6(Mst2)) + 20520*pow8(Mst2))) - 28*pow2(Mt)*pow2(s2t)*
2177  (4*Dmglst2*pow2(Mst2)*(-162*pow2(Mst2)*(20*(505 + 68*lmMst1 + 124*
2178  lmMst2)*pow2(Mst2) + (6803 - 1810*lmMst1 + 2670*lmMst2)*pow2(MuSUSY))*
2179  pow4(Mst1) - 27*pow2(Mst1)*(4*(4849 - 270*lmMst1 + 8910*lmMst2)*pow2(
2180  Mst2) + 5*(1631 - 648*lmMst1 + 1680*lmMst2)*pow2(MuSUSY))*pow4(Mst2) -
2181  2*(45*(78533 + 6732*lmMst1 + 180*lmMst2)*pow2(Mst2) + (2128489 -
2182  307800*lmMst1 + 377460*lmMst2)*pow2(MuSUSY))*pow6(Mst1) + 48600*
2183  Dmsqst2*((8*pow2(Mst2) + (3 + 8*lmMst1 - 8*lmMst2)*pow2(MuSUSY))*pow4(
2184  Mst1) + (2*pow2(Mst2) + pow2(MuSUSY))*pow4(Mst2) + pow2(Mst1)*(3*(2 +
2185  lmMst1 - lmMst2)*pow2(Mst2)*pow2(MuSUSY) + 8*pow4(Mst2)) + 8*pow6(Mst1)
2186  ) + 22680*(2*pow2(Mst2) + pow2(MuSUSY))*pow6(Mst2)) - 3*Mgl*(-6*((
2187  309749 + 12240*lmMst1 - 12240*lmMst2)*pow2(Mst2) + (533629 - 900*lmMst1
2188  + 180*lmMst2)*pow2(MuSUSY))*pow4(Mst1)*pow4(Mst2) - pow2(Mst2)*((
2189  3291029 + 210600*lmMst1 - 210600*lmMst2)*pow2(Mst2) + (6649153 - 81540*
2190  lmMst1 + 77220*lmMst2)*pow2(MuSUSY))*pow6(Mst1) - 9*pow2(Mst1)*((5927 +
2191  13560*lmMst1 - 36600*lmMst2)*pow2(Mst2) + 10*(5597 + 564*lmMst1 - 1104*
2192  lmMst2)*pow2(MuSUSY))*pow6(Mst2) - 100*Dmsqst2*(9*pow2(Mst2)*(202*pow2(
2193  Mst2) + (1097 - 72*lmMst1 + 72*lmMst2)*pow2(MuSUSY))*pow4(Mst1) + (808*
2194  pow2(Mst2) + (20701 - 648*lmMst1 + 648*lmMst2)*pow2(MuSUSY))*pow6(Mst1)
2195  - 324*(2*pow2(Mst2) + pow2(MuSUSY))*pow6(Mst2) + 27*pow2(Mst1)*(53*
2196  pow2(MuSUSY)*pow4(Mst2) + 77*pow6(Mst2))) + 20520*(2*pow2(Mst2) + pow2(
2197  MuSUSY))*pow8(Mst2)))) + 68040*Mgl*(-10*shiftst1*(Dmsqst2 + pow2(Mst2))
2198  *(pow4(Mst2)*(pow2(s2t)*(-8*pow2(Mt) + (pow2(Mst1) - pow2(Mst2))*pow2(
2199  s2t))*pow2(Sbeta)*pow4(Mst1) + pow2(Mst1)*(4*pow2(Mt)*pow2(s2t)*(pow2(
2200  MuSUSY) + (4*pow2(Mst2) - pow2(MuSUSY))*pow2(Sbeta)) + pow2(Sbeta)*(16*
2201  pow4(Mt) - pow4(Mst2)*pow4(s2t))) + pow2(Mst2)*(-4*pow2(Mt)*pow2(s2t)*(
2202  pow2(MuSUSY)*(-1 + pow2(Sbeta)) + 2*pow2(Mst2)*pow2(Sbeta)) + pow2(
2203  Sbeta)*(16*pow4(Mt) + pow4(Mst2)*pow4(s2t)))) + (-2*lmMst1 + 2*lmMst2)*
2204  pow2(Mst1)*pow2(s2t)*(-4*pow2(Mt)*pow2(MuSUSY)*(-1 + pow2(Sbeta))*(
2205  pow4(Mst1) + pow4(Mst2)) - pow2(Mst1)*pow2(Mst2)*(4*pow2(Mt)*pow2(
2206  MuSUSY)*(-1 + pow2(Sbeta)) + pow2(s2t)*pow2(Sbeta)*pow4(Mst2)) + pow2(
2207  s2t)*pow2(Sbeta)*pow8(Mst2))) - shiftst3*pow2(Mst2)*(pow2(Sbeta)*(8*(1
2208  - lmMst1 + lmMst2)*pow2(Mst1)*pow2(Mt)*pow2(s2t) + 16*pow4(Mt) + (-4*
2209  pow2(Mst1)*pow2(Mst2) + (3 + 2*lmMst1 - 2*lmMst2)*pow4(Mst1) + pow4(
2210  Mst2))*pow4(s2t))*pow6(Mst2) + pow2(Mt)*pow2(s2t)*(2*pow2(MuSUSY)*(4*((
2211  1 - 2*lmMst1 + 2*lmMst2)*pow2(Mst2)*pow4(Mst1) + (1 - lmMst1 + lmMst2)*
2212  pow2(Mst1)*pow4(Mst2) + (1 - 3*lmMst1 + 3*lmMst2)*pow6(Mst1)) + 2*pow6(
2213  Mst2)) - 2*pow2(Sbeta)*(2*pow2(MuSUSY)*pow6(Mst2) + 4*(pow2(MuSUSY)*((1
2214  - 2*lmMst1 + 2*lmMst2)*pow2(Mst2)*pow4(Mst1) + (1 - lmMst1 + lmMst2)*
2215  pow2(Mst1)*pow4(Mst2) + (1 - 3*lmMst1 + 3*lmMst2)*pow6(Mst1)) + pow8(
2216  Mst2))))))) + 28*Mt*MuSUSY*pow2(Sbeta)*(-3*Mgl*(3*pow3(Mst2)*(-2*(
2217  623599 + 65160*lmMst1 - 134280*lmMst2)*Mst2*s2t*pow2(Mt) + 15*(11075 +
2218  17928*lmMst1 - 17352*lmMst2)*Mt*pow2(Mst2)*pow2(s2t) + 64*(41936 -
2219  7245*lmMst1 + 19665*lmMst2 - 720*lmMt)*pow3(Mt) + 4*(224837 - 4680*
2220  lmMst1 + 8370*lmMst2 + 2700*shiftst1)*pow3(Mst2)*pow3(s2t))*pow4(Mst1)
2221  + 9*pow2(Mst1)*(-2*Mst2*s2t*(1367 + 13560*lmMst1 - 36600*lmMst2 + 7200*
2222  shiftst1)*pow2(Mt) + 45*(2269 + 664*lmMst1 - 56*lmMst2)*Mt*pow2(Mst2)*
2223  pow2(s2t) + 4*(66773 - 9960*lmMst1 + 45480*lmMst2 - 3840*lmMt)*pow3(Mt)
2224  + 10*(5825 + 36*shiftst3 + 12*lmMst1*(47 + 60*shiftst1 + 3*shiftst3) -
2225  12*lmMst2*(92 + 60*shiftst1 + 3*shiftst3))*pow3(Mst2)*pow3(s2t))*pow5(
2226  Mst2) + Mst2*(-4*(2580913 + 203040*lmMst1 - 306720*lmMst2)*Mst2*s2t*
2227  pow2(Mt) + 6*(30643 + 217080*lmMst1 - 212760*lmMst2)*Mt*pow2(Mst2)*
2228  pow2(s2t) + 16*(1077991 - 184140*lmMst1 + 400140*lmMst2 - 8640*lmMt)*
2229  pow3(Mt) + (3447379 - 76140*lmMst1 + 76140*lmMst2)*pow3(Mst2)*pow3(s2t)
2230  )*pow6(Mst1) - 100*Dmsqst2*(27*pow2(Mst1)*pow3(Mst2)*(106*Mst2*s2t*
2231  pow2(Mt) + 48*Mst2*s2t*shiftst1*pow2(Mt) - 288*Mt*pow2(Mst2)*pow2(s2t)
2232  + 144*lmMst2*Mt*pow2(Mst2)*pow2(s2t) - 384*lmMst2*pow3(Mt) + 192*lmMt*
2233  pow3(Mt) - 65*pow3(Mst2)*pow3(s2t) + 24*lmMst2*shiftst1*pow3(Mst2)*
2234  pow3(s2t) + 24*lmMst1*(-6*Mt*pow2(Mst2)*pow2(s2t) + 8*pow3(Mt) -
2235  shiftst1*pow3(Mst2)*pow3(s2t))) + 18*Mst2*(361*Mst2*s2t*pow2(Mt) - 216*
2236  (3 + 2*lmMst1 - 2*lmMst2)*Mt*pow2(Mst2)*pow2(s2t) + 576*(-1 + lmMst1 -
2237  2*lmMst2 + lmMt)*pow3(Mt) + (-469 + 36*lmMst1 - 36*lmMst2 - 18*
2238  shiftst1)*pow3(Mst2)*pow3(s2t))*pow4(Mst1) + 2*s2t*(-972*(5 + 4*lmMst1
2239  - 4*lmMst2)*Mst2*Mt*s2t + 4057*pow2(Mt) - 5414*pow2(Mst2)*pow2(s2t))*
2240  pow6(Mst1) + 324*s2t*(1 + shiftst1)*(-4*pow2(Mt) + pow2(Mst2)*pow2(s2t)
2241  )*pow6(Mst2)) - 1080*s2t*(19 + 30*shiftst1 + 3*shiftst3)*(-4*pow2(Mt) +
2242  pow2(Mst2)*pow2(s2t))*pow8(Mst2)) + Dmglst2*Mst2*(27*(pow2(Mst2)*(-32*(
2243  19579 + 1770*lmMst1 + 12630*lmMst2)*Mst2*s2t*pow2(Mt) + (-935323 +
2244  279000*lmMst1 - 385560*lmMst2)*Mt*pow2(Mst2)*pow2(s2t) + 32*(67843 -
2245  10050*lmMst1 + 17490*lmMst2 - 7560*lmMt)*pow3(Mt) + 4*(32663 - 7620*
2246  lmMst1 + 7620*lmMst2)*pow3(Mst2)*pow3(s2t))*pow4(Mst1) + pow2(Mst1)*(
2247  32*(-4429 + 270*lmMst1 - 8910*lmMst2)*Mst2*s2t*pow2(Mt) + 3*(-173947 +
2248  25080*lmMst1 - 68760*lmMst2)*Mt*pow2(Mst2)*pow2(s2t) - 60*(-3245 +
2249  1672*lmMst1 - 1448*lmMst2 + 1888*lmMt)*pow3(Mt) + 20*(1799 - 648*lmMst1
2250  + 1680*lmMst2)*pow3(Mst2)*pow3(s2t))*pow4(Mst2)) + 2*(-72*(510139 +
2251  44280*lmMst1 + 76680*lmMst2)*Mst2*s2t*pow2(Mt) + 15*(-1700119 + 484056*
2252  lmMst1 - 579960*lmMst2)*Mt*pow2(Mst2)*pow2(s2t) + 8*(13463149 -
2253  1492020*lmMst1 + 2713500*lmMst2 - 625320*lmMt)*pow3(Mt) + 8*(788723 -
2254  80595*lmMst1 + 80595*lmMst2)*pow3(Mst2)*pow3(s2t))*pow6(Mst1) + 97200*
2255  Dmsqst2*(2*pow2(Mst1)*pow2(Mst2)*(20*Mst2*s2t*pow2(Mt) + 6*(2 + 3*
2256  lmMst1 - 3*lmMst2)*Mt*pow2(Mst2)*pow2(s2t) - 8*(-8 + 3*lmMst1 - 6*
2257  lmMst2 + 3*lmMt)*pow3(Mt) + (-5 - 3*lmMst1 + 3*lmMst2)*pow3(Mst2)*pow3(
2258  s2t)) - 2*(-36*Mst2*s2t*pow2(Mt) + 18*(1 - 2*lmMst1 + 2*lmMst2)*Mt*
2259  pow2(Mst2)*pow2(s2t) + 80*(-3 + lmMst1 - 2*lmMst2 + lmMt)*pow3(Mt) + (-
2260  3 + 5*lmMst1 - 5*lmMst2)*pow3(Mst2)*pow3(s2t))*pow4(Mst1) + 8*s2t*pow2(
2261  Mt)*pow5(Mst2) + (6*(-17 + 12*lmMst1 - 12*lmMst2)*Mt + 13*Mst2*s2t)*
2262  pow2(s2t)*pow6(Mst1) - 2*pow3(s2t)*pow7(Mst2)) - 90720*(-4*s2t*pow2(Mt)
2263  *pow7(Mst2) + pow3(s2t)*pow9(Mst2))))))) - 7560*xMst*(Mgl*(27*(lmMst1 -
2264  lmMst2)*Mgl*Mst2*oneLoopFlag*Tbeta*pow2(Mt)*pow2(MuSUSY)*pow2(s2t)*(-1
2265  + pow2(Sbeta)) + 2*Al4p*Mt*MuSUSY*twoLoopFlag*pow2(Sbeta)*(8*Dmglst2*(
2266  36*(-1 + 3*lmMst1 - 3*lmMst2)*Mst2*s2t*pow2(Mt) - 3*Mt*(50 + lmMst1*(51
2267  - 18*lmMst2) - 51*lmMst2 + 18*pow2(lmMst2))*pow2(Mst2)*pow2(s2t) + 4*(7
2268  - 381*lmMst2 + lmMst1*(327 + 72*lmMst2 - 81*lmMt) + 54*lmMt + 81*
2269  lmMst2*lmMt - 72*pow2(lmMst2))*pow3(Mt) + 2*(1 + 3*lmMst1 - 3*lmMst2)*
2270  pow3(Mst2)*pow3(s2t)) - Mgl*(-144*Mst2*s2t*(-lmMst1 + lmMst2 - 2*
2271  lmMst1*lmMst2 + pow2(lmMst1) + pow2(lmMst2))*pow2(Mt) + 24*Mt*(1 + 33*
2272  lmMst2 - 3*lmMst1*(11 + 6*lmMst2) + 18*pow2(lmMst2))*pow2(Mst2)*pow2(
2273  s2t) + 32*(83 - 96*lmMst2 + 3*lmMst1*(29 + 12*lmMst2 - 9*lmMt) + 9*lmMt
2274  + 27*lmMst2*lmMt - 36*pow2(lmMst2))*pow3(Mt) + (5 + lmMst1*(6 - 288*
2275  lmMst2) - 6*lmMst2 + 144*pow2(lmMst1) + 144*pow2(lmMst2))*pow3(Mst2)*
2276  pow3(s2t))) + Al4p*s2t*Tbeta*twoLoopFlag*(8*pow2(Mt)*((Dmglst2*Mst2*
2277  s2t*(-49 + 84*lmMst2 - 12*lmMst1*(7 + 3*lmMst2) + 36*pow2(lmMst2)) +
2278  Mgl*Mst2*s2t*(-1 + 111*lmMst2 - 3*lmMst1*(37 + 72*lmMst2) + 81*pow2(
2279  lmMst1) + 135*pow2(lmMst2)) + Dmglst2*Mt*(785 - 438*lmMst2 - 6*lmMst1*(
2280  -85 + 42*lmMst2) + 252*pow2(lmMst2)) + Mgl*Mt*(193 + 474*lmMst2 - 6*
2281  lmMst1*(67 + 42*lmMst2) + 252*pow2(lmMst2)))*pow2(MuSUSY) - Mt*((4*
2282  Dmglst2*(95 - 447*lmMst2 + lmMst1*(411 + 90*lmMst2 - 90*lmMt) + 36*lmMt
2283  + 90*lmMst2*lmMt - 90*pow2(lmMst2)) - 4*Mgl*(49 - 75*lmMst2 + 3*lmMst1*
2284  (25 + 6*lmMst2 - 6*lmMt) + 18*lmMst2*lmMt - 18*pow2(lmMst2)))*pow2(
2285  Mst2) + (Dmglst2*(785 + 6*lmMst1*(85 - 42*lmMst2) - 438*lmMst2 + 252*
2286  pow2(lmMst2)) + Mgl*(193 + 474*lmMst2 - 6*lmMst1*(67 + 42*lmMst2) +
2287  252*pow2(lmMst2)))*pow2(MuSUSY))*pow2(Sbeta)) + Mst2*s2t*pow2(Sbeta)*(
2288  8*pow2(Mt)*(Mgl*(1 - 111*lmMst2 + 3*lmMst1*(37 + 72*lmMst2) - 81*pow2(
2289  lmMst1) - 135*pow2(lmMst2))*pow2(MuSUSY) - Dmglst2*(36*(lmMst1 -
2290  lmMst2)*pow2(Mst2) + (-49 + 84*lmMst2 - 12*lmMst1*(7 + 3*lmMst2) + 36*
2291  pow2(lmMst2))*pow2(MuSUSY))) + 4*(Dmglst2*(11 + 42*lmMst1 - 42*lmMst2)
2292  + (-5 - 6*lmMst1 + 6*lmMst2)*Mgl)*Mt*s2t*pow3(Mst2) + (2*Dmglst2*(5 +
2293  6*lmMst1 - 6*lmMst2) + (-11 - 6*lmMst1 + 6*lmMst2)*Mgl)*pow2(s2t)*pow4(
2294  Mst2))) + 32*Al4p*Mst2*Tbeta*twoLoopFlag*(-(Mgl*(65 - 159*lmMst2 + 6*
2295  lmMst1*(25 + 6*lmMst2 - 6*lmMt) + 9*lmMt + 36*lmMst2*lmMt - 36*pow2(
2296  lmMst2))) + 18*Dmglst2*(4 - 61*lmMst2 + 6*lmMst1*(9 + 2*lmMst2 - 2*
2297  lmMt) + 7*lmMt + 12*lmMst2*lmMt - 12*pow2(lmMst2)))*pow2(Sbeta)*pow4(
2298  Mt))*power10(Mst1) + Al4p*twoLoopFlag*(-144*(lmMst1 - lmMst2)*Mgl*(2*
2299  Dmglst2*lmMst2 + Mgl + lmMst2*Mgl)*Mst2*Tbeta*xDR2DRMOD*pow2(Mt)*pow2(
2300  MuSUSY)*pow2(s2t)*(-1 + pow2(Sbeta)) + xDmglst2*pow2(Dmglst2)*(8*s2t*(
2301  Tbeta*(2501 + 42*lmMst1*(7 - 6*lmMst2) - 222*lmMst2 + 252*pow2(lmMst2))
2302  *pow2(MuSUSY)*(1 - pow2(Sbeta)) + Mst2*pow2(Sbeta)*(-4*Mst2*Tbeta*(257
2303  + 6*lmMst2*(179 - 30*lmMt) - 12*lmMst1*(76 + 15*lmMst2 - 15*lmMt) -
2304  162*lmMt + 180*pow2(lmMst2)) + 3*MuSUSY*(132 - 215*pow2(Sbeta) + 60*(
2305  lmMst1 - lmMst2)*(-3 + 5*pow2(Sbeta)))))*pow3(Mt) - 6*Mst2*pow2(Mt)*
2306  pow2(s2t)*(4*Mst2*MuSUSY*(355 + 6*lmMst2 - 6*lmMst1*(1 + 6*lmMst2) +
2307  36*pow2(lmMst2))*pow2(Sbeta) + Tbeta*(-2*(85 + 60*lmMst2 + 12*lmMst1*(-
2308  5 + 3*lmMst2) - 36*pow2(lmMst2))*pow2(MuSUSY)*(-1 + pow2(Sbeta)) +
2309  pow2(Mst2)*pow2(Sbeta)*(96 - 430*pow2(Sbeta) + 215*pow4(Sbeta) - 12*(
2310  lmMst1 - lmMst2)*(18 - 50*pow2(Sbeta) + 25*pow4(Sbeta))))) + pow2(
2311  Sbeta)*(4*Mt*(12*(1 - 6*lmMst1 + 6*lmMst2)*MuSUSY + (35 - 102*lmMst1 +
2312  102*lmMst2)*Mst2*Tbeta)*pow3(Mst2)*pow3(s2t) + 32*(9*Mst2*Tbeta*(102 +
2313  lmMst2*(353 - 60*lmMt) - 6*lmMst1*(49 + 10*lmMst2 - 10*lmMt) - 59*lmMt
2314  + 60*pow2(lmMst2)) + MuSUSY*(412 - 6*lmMst1*(176 + 42*lmMst2 - 39*lmMt)
2315  + 9*lmMst2*(147 - 26*lmMt) - 267*lmMt + 252*pow2(lmMst2)))*pow4(Mt) +
2316  3*(5 + 6*lmMst1 - 6*lmMst2)*Tbeta*pow4(s2t)*pow5(Mst2))))*power10(Mst1)
2317  + 48*Al4p*Mst2*Tbeta*xDmglst2*pow2(Dmglst2)*pow2(s2t)*(2*Al4p*
2318  threeLoopFlag*pow14(Mst2)*(2 + lmMst2 - 3*pow2(lmMst2))*pow2(s2t)*pow2(
2319  Sbeta) - 2*Al4p*threeLoopFlag*xDR2DRMOD*pow14(Mst2)*(2 + lmMst2 - 3*
2320  pow2(lmMst2))*pow2(s2t)*pow2(Sbeta) + 3*(-lmMst1 + lmMst2)*(-2 + 3*
2321  lmMst2)*twoLoopFlag*xDR2DRMOD*pow2(Mt)*pow2(MuSUSY)*(-1 + pow2(Sbeta))*
2322  power10(Mst1))) + 70*Mgl*Mst2*threeLoopFlag*pow2(Al4p)*(Mgl*xDmsqst2*
2323  pow2(Dmsqst2)*pow2(Mst1)*(16*Mt*MuSUSY*pow2(Sbeta)*((45*Mst2*pow2(Mst1)
2324  *(16*Mst2*s2t*(88 + 8*OepS2 - 81*S2 - 18*(lmMst1 - lmMst2)*(2 + 9*S2) -
2325  54*shiftst1 - 12*T1ep)*pow2(Mt) + 2592*(3 + 2*lmMst1 - 2*lmMst2)*Mt*
2326  pow2(Mst2)*pow2(s2t) + 864*(4 - 8*lmMst1 + 15*lmMst2 - 7*lmMt)*pow3(Mt)
2327  - (1493 + 64*OepS2 - 27864*S2 - 72*(lmMst1 - lmMst2)*(-1 + 18*S2 + 6*
2328  shiftst1) - 96*T1ep)*pow3(Mst2)*pow3(s2t)))/4. + (3*s2t*(972000*(1 + 4*
2329  lmMst1 - 4*lmMst2)*Mst2*Mt*s2t + 8*(187757 + 16000*OepS2 - 540000*S2 +
2330  90*lmMst2*(-587 + 3600*S2) - 90*lmMst1*(-587 + 630*lmMst2 + 3600*S2) -
2331  24000*T1ep + 28350*(pow2(lmMst1) + pow2(lmMst2)))*pow2(Mt) + (1372861 -
2332  88000*OepS2 + 180*lmMst2*(1987 - 9900*S2) + 13743000*S2 + 180*lmMst1*(-
2333  1987 + 1080*lmMst2 + 9900*S2) + 81000*shiftst1 + 132000*T1ep - 97200*(
2334  pow2(lmMst1) + pow2(lmMst2)))*pow2(Mst2)*pow2(s2t))*pow4(Mst1))/100. -
2335  2430*s2t*(2 + shiftst1)*(-4*pow2(Mt) + pow2(Mst2)*pow2(s2t))*pow4(Mst2)
2336  + ((610359812 - 64484000*OepS2 + 315*lmMst2*(540413 - 4145400*S2) +
2337  8117266500*S2 + 315*lmMst1*(-540413 + 884520*lmMst2 + 4145400*S2) +
2338  96726000*T1ep - 139311900*(pow2(lmMst1) + pow2(lmMst2)))*pow3(s2t)*
2339  pow6(Mst1))/17150.) + Tbeta*(-311040*(3 + 2*lmMst1 - 2*lmMst2)*Mst2*
2340  s2t*pow2(Mst1)*pow2(MuSUSY)*pow3(Mt) - 144*pow2(Mt)*pow2(s2t)*(270*
2341  shiftst1*(2*(lmMst1 - lmMst2)*pow2(Mst1) - pow2(Mst2))*(pow2(Mst1) +
2342  pow2(Mst2))*pow2(MuSUSY) - 40*T1ep*pow2(Mst1)*pow2(Sbeta)*(3*pow2(Mst2)
2343  *(pow2(Mst2) + pow2(MuSUSY)) + pow2(Mst1)*(5*pow2(Mst2) + 14*pow2(
2344  MuSUSY)) + 5*pow4(Mst1))) + 1944*shiftst1*pow2(Sbeta)*(20*pow2(Mt)*
2345  pow2(s2t)*((2*(lmMst1 - lmMst2)*pow2(Mst1) - pow2(Mst2))*(pow2(Mst1) +
2346  pow2(Mst2))*pow2(MuSUSY) + 4*pow2(Mst1)*pow4(Mst2) - 2*pow2(Mst2)*(
2347  pow4(Mst1) + pow4(Mst2))) + 80*pow2(Mst2)*(pow2(Mst1) + pow2(Mst2))*
2348  pow4(Mt) + 5*(pow2(Mst1) - pow2(Mst2))*pow2(Mst2)*(2*(lmMst1 - lmMst2)*
2349  pow2(Mst1)*pow2(Mst2) + pow4(Mst1) - pow4(Mst2))*pow4(s2t)) - 480*T1ep*
2350  pow2(Mst1)*(12*(14*pow2(Mst1) + 3*pow2(Mst2))*pow2(Mt)*pow2(MuSUSY)*
2351  pow2(s2t) + pow2(Mst2)*pow2(Sbeta)*(24*pow2(Mst1)*pow2(Mst2) + 14*pow4(
2352  Mst1) + 9*pow4(Mst2))*pow4(s2t)) + pow2(s2t)*(-4860*Mt*(2*(11 + 39*
2353  lmMst1 - 39*lmMst2)*Mst2*s2t*(-2 + pow2(Sbeta)) + (167 - 5*lmMst1 + 5*
2354  lmMst2)*Mt*pow2(Sbeta))*pow4(Sbeta)*pow6(Mst1) + (12*pow2(Mt)*(pow2(
2355  MuSUSY)*(375*(1925 + 64*OepS2 - 27864*S2 - 72*(lmMst1 - lmMst2)*(-1 +
2356  18*S2))*pow2(Mst1)*pow2(Mst2) + 2*(7*(-46499 + 8000*OepS2 - 1728000*S2)
2357  + 90*lmMst2*(-2137 + 12600*S2) - 90*lmMst1*(-2137 + 1080*lmMst2 +
2358  12600*S2) + 48600*(pow2(lmMst1) + pow2(lmMst2)))*pow4(Mst1) + 162000*
2359  pow4(Mst2)) + 20250*(167 - 5*lmMst1 + 5*lmMst2)*pow4(Sbeta)*pow6(Mst1))
2360  )/25.) + pow2(Sbeta)*(-77760*Mst2*s2t*pow2(Mst1)*(4*(11 - 6*lmMst1 +
2361  12*lmMst2 - 6*lmMt)*pow2(Mst1) + (15 - 16*lmMst1 + 30*lmMst2 - 14*lmMt)
2362  *pow2(Mst2) - 4*(3 + 2*lmMst1 - 2*lmMst2)*pow2(MuSUSY))*pow3(Mt) +
2363  19440*Mst2*Mt*pow2(Mst1)*pow3(s2t)*(16*(1 - lmMst1 + lmMst2)*pow2(Mst1)
2364  *pow2(Mst2) + (29 + 41*lmMst1 - 41*lmMst2)*pow4(Mst1) - 8*(3 + 2*lmMst1
2365  - 2*lmMst2)*pow4(Mst2)) + (144*(125*(3095 - 1224*lmMst1 + 6*lmMst2*(365
2366  - 36*lmMt) - 966*lmMt + 108*pow2(lmMst2) + 108*pow2(lmMt))*pow2(Mst1)*
2367  pow2(Mst2) + 6*(176473 + 30*lmMst1*(-1771 + 90*lmMst2 - 150*lmMt) -
2368  63000*lmMt + 30*lmMst2*(3871 + 150*lmMt) + 900*pow2(lmMst1) - 3600*
2369  pow2(lmMst2))*pow4(Mst1) + 54000*pow4(Mst2))*pow4(Mt))/25. - (12*pow2(
2370  Mt)*pow2(s2t)*(686*(2*(121757 + 10000*OepS2 - 479250*S2 + 90*lmMst2*(-
2371  887 + 2250*S2) - 90*lmMst1*(-887 + 630*lmMst2 + 2250*S2) + 28350*(pow2(
2372  lmMst1) + pow2(lmMst2)))*pow2(Mst2) + (7*(-46499 + 8000*OepS2 -
2373  1728000*S2) + 90*lmMst2*(-2137 + 12600*S2) - 90*lmMst1*(-2137 + 1080*
2374  lmMst2 + 12600*S2) + 48600*(pow2(lmMst1) + pow2(lmMst2)))*pow2(MuSUSY))
2375  *pow4(Mst1) + 55566000*(2*pow2(Mst2) + pow2(MuSUSY))*pow4(Mst2) -
2376  128625*pow2(Mst1)*(-((1925 + 64*OepS2 - 27864*S2 - 72*(lmMst1 - lmMst2)
2377  *(-1 + 18*S2))*pow2(Mst2)*pow2(MuSUSY)) + 8*(20 - 8*OepS2 + 81*S2 + 18*
2378  (lmMst1 - lmMst2)*(2 + 9*S2))*pow4(Mst2)) + 250*(397737 + 54880*OepS2 -
2379  2580732*S2 + 252*lmMst2*(-2333 + 4410*S2) - 252*lmMst1*(-2333 + 1134*
2380  lmMst2 + 4410*S2) + 142884*(pow2(lmMst1) + pow2(lmMst2)))*pow6(Mst1)))/
2381  8575. + (pow2(Mst2)*pow4(s2t)*(-4116*(483184 - 16000*OepS2 + 45*lmMst2*
2382  (1837 - 7200*S2) + 823500*S2 + 45*lmMst1*(-1837 + 1080*lmMst2 + 7200*
2383  S2) - 24300*(pow2(lmMst1) + pow2(lmMst2)))*pow2(Mst2)*pow4(Mst1) +
2384  385875*(1061 + 64*OepS2 - 27864*S2 - 72*(lmMst1 - lmMst2)*(-1 + 18*S2))
2385  *pow2(Mst1)*pow4(Mst2) + 5*(38390869 + 7683200*OepS2 - 418597200*S2 +
2386  630*lmMst2*(8753 + 246960*S2) - 630*lmMst1*(8753 + 113400*lmMst2 +
2387  246960*S2) + 35721000*(pow2(lmMst1) + pow2(lmMst2)))*pow6(Mst1) +
2388  166698000*pow6(Mst2)))/8575.))) - 36*xDR2DRMOD*(4*Mst2*Mt*MuSUSY*pow2(
2389  Sbeta)*(2*Dmglst2*(2*pow3(Mst2)*pow4(Mst1)*(-270*Dmsqst2*s2t*pow2(Mt) +
2390  3*s2t*pow2(Mst2)*(45*Dmsqst2*(lmMst1 - lmMst2)*pow2(s2t) + 2*pow2(Mt)*(
2391  52 + 370*lmMst2 - 96*lmMst2*pow2(lmMst1) + 81*pow2(lmMst2) + 96*lmMst1*
2392  (-1 + lmMst2 + 2*pow2(lmMst2)) - 96*pow3(lmMst2))) - 432*Mt*pow2(s2t)*(
2393  7 + 9*lmMst2 - 8*pow2(lmMst2) + lmMst1*(-3 + 5*lmMst2 + 6*pow2(lmMst2))
2394  - 6*pow3(lmMst2))*pow3(Mst2) + 32*Mst2*(119 + lmMst2*(224 - 15*lmMt) -
2395  51*lmMt + 3*(5 + 6*lmMt)*pow2(lmMst2) + 18*lmMst1*(-4 + lmMt - lmMst2*(
2396  1 + lmMt) + pow2(lmMst2)) - 18*pow3(lmMst2))*pow3(Mt) + 9*(40 + 4*
2397  lmMst2 + 16*lmMst2*pow2(lmMst1) + lmMst1*(4 - 246*lmMst2 - 123*pow2(
2398  lmMst2)) + 198*pow2(lmMst2) + 107*pow3(lmMst2))*pow3(s2t)*pow4(Mst2)) +
2399  9*pow2(Mst1)*(60*Dmsqst2*s2t*pow2(Mt) + 96*Mt*(-1 + 2*lmMst2 + 3*pow2(
2400  lmMst2))*pow2(s2t)*pow3(Mst2) - 128*Mst2*(-1 + 2*lmMst2 + 3*pow2(
2401  lmMst2))*pow3(Mt) - pow2(Mst2)*(4*s2t*(-52 + 102*lmMst2 + 32*lmMst1*
2402  lmMst2 + 59*pow2(lmMst2))*pow2(Mt) + 15*Dmsqst2*pow3(s2t)) + (-20 + (
2403  230 + 32*lmMst1)*lmMst2 + 155*pow2(lmMst2))*pow3(s2t)*pow4(Mst2))*pow5(
2404  Mst2) + pow2(Mst2)*(-1152*Mst2*s2t*(lmMst2*pow2(lmMst1) + lmMst1*(4 +
2405  2*lmMst2 - 2*pow2(lmMst2)) + (-4 + lmMst2)*pow2(1 + lmMst2))*pow2(Mt) -
2406  864*Mt*pow2(Mst2)*pow2(s2t)*(8 + 19*lmMst2 - 5*pow2(lmMst2) + lmMst1*(-
2407  7 + 5*lmMst2 + 6*pow2(lmMst2)) - 6*pow3(lmMst2)) + 64*(263 + lmMst2*(
2408  962 - 213*lmMt) - 177*lmMt + (393 - 18*lmMt)*pow2(lmMst2) - 18*lmMst1*(
2409  26 - lmMst2*(-17 + lmMt) - 7*lmMt + pow2(lmMst2)) + 18*pow3(lmMst2))*
2410  pow3(Mt) + 9*Mst2*(15*Dmsqst2 + pow2(Mst2)*(36 + 42*lmMst2 + 256*
2411  lmMst2*pow2(lmMst1) + 37*pow2(lmMst2) - 32*lmMst1*(3 + 3*lmMst2 + 16*
2412  pow2(lmMst2)) + 256*pow3(lmMst2)))*pow3(s2t))*pow6(Mst1) + 16*(-72*
2413  Mst2*s2t*pow2(Mt)*(-6 - 14*lmMst2 + lmMst2*pow2(lmMst1) + lmMst1*(9 +
2414  6*lmMst2 - 2*pow2(lmMst2)) - 6*pow2(lmMst2) + pow3(lmMst2)) + 27*Mt*
2415  pow2(Mst2)*pow2(s2t)*(-17 - 51*lmMst2 + 4*pow2(lmMst2) - 4*lmMst1*(-6 +
2416  lmMst2 + 3*pow2(lmMst2)) + 12*pow3(lmMst2)) + 4*(290 + lmMst2*(2447 -
2417  645*lmMt) - 375*lmMt - 3*(-509 + 60*lmMt)*pow2(lmMst2) - 18*lmMst1*(87
2418  + lmMst2*(71 - 10*lmMt) - 22*lmMt + 10*pow2(lmMst2)) + 180*pow3(lmMst2)
2419  )*pow3(Mt) + 9*(16*lmMst2*pow2(lmMst1) - 2*lmMst1*(3 + 2*lmMst2 + 16*
2420  pow2(lmMst2)) + lmMst2*(7 + 4*lmMst2 + 16*pow2(lmMst2)))*pow3(Mst2)*
2421  pow3(s2t))*pow8(Mst1) - 288*lmMst2*(1 + lmMst2)*s2t*(-4*pow2(Mt) +
2422  pow2(Mst2)*pow2(s2t))*pow9(Mst2)) + 9*Mgl*(-2*pow3(Mst2)*pow4(Mst1)*(
2423  30*Dmsqst2*s2t*(-5 + 9*shiftst1)*pow2(Mt) + s2t*pow2(Mst2)*(15*Dmsqst2*
2424  (lmMst1 - lmMst2)*(5 - 9*shiftst1)*pow2(s2t) - 2*pow2(Mt)*(109 + 76*
2425  lmMst2 - 135*shiftst1 - 21*pow2(lmMst2) + 64*lmMst1*pow2(1 + lmMst2) -
2426  32*((1 + lmMst2)*pow2(lmMst1) + pow3(lmMst2)))) + (1 + lmMst2)*(-96*(2*
2427  lmMst2*(2 + lmMst2) - lmMst1*(3 + 2*lmMst2))*Mt*pow2(s2t)*pow3(Mst2) +
2428  64*Mst2*(1 + lmMst2*(7 - 2*lmMt) - 2*lmMst1*(2 + lmMst2 - lmMt) - 3*
2429  lmMt + 2*pow2(lmMst2))*pow3(Mt)) + (8 + 3*lmMst2*(-79 + 45*shiftst1) -
2430  16*(1 + lmMst2)*pow2(lmMst1) - 308*pow2(lmMst2) + lmMst1*(269 + 348*
2431  lmMst2 - 135*shiftst1 + 123*pow2(lmMst2)) - 107*pow3(lmMst2))*pow3(s2t)
2432  *pow4(Mst2)) - pow2(Mst1)*(60*Dmsqst2*s2t*(5 - 9*shiftst1)*pow2(Mt) -
2433  64*pow2(1 + lmMst2)*(3*Mt*pow2(s2t)*pow3(Mst2) - 4*Mst2*pow3(Mt)) +
2434  pow2(Mst2)*(4*s2t*(173 + 188*lmMst2 + 32*lmMst1*(1 + lmMst2) - 135*
2435  shiftst1 + 59*pow2(lmMst2))*pow2(Mt) + 15*Dmsqst2*(-5 + 9*shiftst1)*
2436  pow3(s2t)) - (221 + 284*lmMst2 + 32*lmMst1*(1 + lmMst2) - 135*shiftst1
2437  + 107*pow2(lmMst2))*pow3(s2t)*pow4(Mst2))*pow5(Mst2) + pow2(Mst2)*(64*(
2438  1 + lmMst2)*Mt*(-2*Mst2*Mt*s2t*pow2(1 - lmMst1 + lmMst2) + 2*(3 - 21*
2439  lmMst2 + 2*lmMst1*(8 + 3*lmMst2 - 3*lmMt) + 5*lmMt + 6*lmMst2*lmMt - 6*
2440  pow2(lmMst2))*pow2(Mt) + 3*(-2 + 5*lmMst2 - lmMst1*(5 + 2*lmMst2) + 2*
2441  pow2(lmMst2))*pow2(Mst2)*pow2(s2t)) - Mst2*(15*Dmsqst2*(5 - 9*shiftst1)
2442  + pow2(Mst2)*(125 + 156*lmMst2 + 512*lmMst1*lmMst2*(1 + lmMst2) - 135*
2443  shiftst1 - 181*pow2(lmMst2) - 256*((1 + lmMst2)*pow2(lmMst1) + pow3(
2444  lmMst2))))*pow3(s2t))*pow6(Mst1) + 16*(1 + lmMst2)*((-8*Mst2*s2t*(1 +
2445  3*lmMst2 - lmMst1*(3 + 2*lmMst2) + pow2(lmMst1) + pow2(lmMst2))*pow2(
2446  Mt) - 6*Mt*(5 - 12*lmMst2 + 4*lmMst1*(3 + lmMst2) - 4*pow2(lmMst2))*
2447  pow2(Mst2)*pow2(s2t) + 8*(12 - 45*lmMst2 + 2*lmMst1*(19 + 6*lmMst2 - 6*
2448  lmMt) + 7*lmMt + 12*lmMst2*lmMt - 12*pow2(lmMst2))*pow3(Mt) + (1 +
2449  lmMst1*(2 - 32*lmMst2) - 2*lmMst2 + 16*pow2(lmMst1) + 16*pow2(lmMst2))*
2450  pow3(Mst2)*pow3(s2t))*pow8(Mst1) + (1 + lmMst2)*s2t*(4*pow2(Mt) - pow2(
2451  Mst2)*pow2(s2t))*pow9(Mst2)))) + Tbeta*(1215*Mgl*shiftst1*pow2(Mst1)*(
2452  pow2(Sbeta)*pow4(Mst2)*(16*(Dmsqst2*pow2(Mst1)*pow2(Mst2)*pow2(Mt)*
2453  pow2(s2t) + (Dmsqst2 + pow2(Mst2))*(pow2(Mst1) + pow2(Mst2))*pow4(Mt))
2454  + (pow2(Mst1) - pow2(Mst2))*(Dmsqst2 + pow2(Mst2))*(2*(lmMst1 - lmMst2)
2455  *pow2(Mst1)*pow2(Mst2) + pow4(Mst1) - pow4(Mst2))*pow4(s2t)) + pow2(Mt)
2456  *pow2(s2t)*(4*(Dmsqst2 + pow2(Mst2))*pow2(MuSUSY)*((pow2(Mst1) + pow2(
2457  Mst2))*pow4(Mst2) - 2*(lmMst1 - lmMst2)*pow2(Mst1)*(pow2(Mst1)*pow2(
2458  Mst2) + pow4(Mst1) + pow4(Mst2))) - 4*pow2(Sbeta)*((Dmsqst2 + pow2(
2459  Mst2))*pow2(MuSUSY)*((pow2(Mst1) + pow2(Mst2))*pow4(Mst2) - 2*(lmMst1 -
2460  lmMst2)*pow2(Mst1)*(pow2(Mst1)*pow2(Mst2) + pow4(Mst1) + pow4(Mst2))) +
2461  2*(Dmsqst2*pow4(Mst2)*(pow4(Mst1) + pow4(Mst2)) + pow2(pow2(Mst1) -
2462  pow2(Mst2))*pow6(Mst2))))) + pow2(Sbeta)*(256*Mst2*s2t*pow2(Mst1)*pow3(
2463  Mt)*(9*(1 + lmMst2)*Mgl*(-2*pow2(Mst2)*((3 + 2*lmMst1*(7 + 2*lmMst2 -
2464  2*lmMt) + 4*lmMst2*(-4 + lmMt) + 2*lmMt - 4*pow2(lmMst2))*pow2(Mst2) +
2465  (1 - 10*lmMst2 + 4*lmMst1*(2 + lmMst2) - 4*pow2(lmMst2))*pow2(MuSUSY))*
2466  pow4(Mst1) + pow2(Mst1)*((1 - 2*lmMst1*(5 + 2*lmMst2 - 2*lmMt) - 4*
2467  lmMst2*(-3 + lmMt) - 6*lmMt + 4*pow2(lmMst2))*pow2(Mst2) + 2*(1 + 5*
2468  lmMst2 - lmMst1*(3 + 2*lmMst2) + 2*pow2(lmMst2))*pow2(MuSUSY))*pow4(
2469  Mst2) - (2*(8 - 27*lmMst2 + lmMst1*(25 + 6*lmMst2 - 6*lmMt) + 2*lmMt +
2470  6*lmMst2*lmMt - 6*pow2(lmMst2))*pow2(Mst2) + (7 - 32*lmMst2 + 4*lmMst1*
2471  (7 + 3*lmMst2) - 12*pow2(lmMst2))*pow2(MuSUSY))*pow6(Mst1) + 2*(1 +
2472  lmMst2)*(2*pow2(Mst2) + pow2(MuSUSY))*pow6(Mst2)) - Dmglst2*(pow2(Mst1)
2473  *(pow2(Mst2)*(253 + 5*lmMst2*(107 - 6*lmMt) - 102*lmMt - 18*lmMst1*(9 +
2474  lmMst2 - 2*lmMt + 2*lmMst2*lmMt - 2*pow2(lmMst2)) + 12*(10 + 3*lmMt)*
2475  pow2(lmMst2) - 36*pow3(lmMst2)) + 18*pow2(MuSUSY)*(8 + 7*lmMst2 - 11*
2476  pow2(lmMst2) + lmMst1*(-3 + 5*lmMst2 + 6*pow2(lmMst2)) - 6*pow3(lmMst2)
2477  ))*pow4(Mst2) + 9*((49 + 103*lmMst2 - 36*(1 + lmMst2)*pow2(lmMst2) + 4*
2478  lmMst1*(-11 + 6*lmMst2 + 9*pow2(lmMst2)))*pow2(MuSUSY) + pow2(Mst2)*(28
2479  + lmMst2*(378 - 96*lmMt) - 44*lmMt + lmMst1*(-274 + 60*lmMt + 18*
2480  lmMst2*(-13 + 2*lmMt) - 36*pow2(lmMst2)) + (270 - 36*lmMt)*pow2(lmMst2)
2481  + 36*pow3(lmMst2)))*pow6(Mst1) + 18*(pow2(Mst2)*(2*pow2(MuSUSY)*(8 +
2482  13*lmMst2 - 8*pow2(lmMst2) + lmMst1*(-5 + 5*lmMst2 + 6*pow2(lmMst2)) -
2483  6*pow3(lmMst2)) + pow2(Mst2)*(23 + lmMst2*(93 - 22*lmMt) - 14*lmMt - 4*
2484  (-11 + lmMt)*pow2(lmMst2) - 2*lmMst1*(25 + lmMst2*(17 - 2*lmMt) - 6*
2485  lmMt + 2*pow2(lmMst2)) + 4*pow3(lmMst2)))*pow4(Mst1) + (1 - 2*lmMst2 -
2486  3*pow2(lmMst2))*(2*pow2(Mst2) + pow2(MuSUSY))*pow6(Mst2)))) + 16*pow2(
2487  Mst2)*pow4(Mt)*(Mgl*(-(pow4(Mst1)*(675*Dmsqst2*pow2(Mst2) + (2117 +
2488  lmMst2*(4796 - 1248*lmMt) - 576*lmMst1*(1 + lmMst2)*(3 + lmMst2 - lmMt)
2489  - 672*lmMt + (3651 - 576*lmMt)*pow2(lmMst2) + 576*pow3(lmMst2))*pow4(
2490  Mst2))) + 288*(1 + lmMst2)*((5 - 57*lmMst2 + 2*lmMst1*(25 + 6*lmMst2 -
2491  6*lmMt) + 7*lmMt + 12*lmMst2*lmMt - 12*pow2(lmMst2))*pow2(Mst1) + (-2 -
2492  27*lmMst2 + lmMst1*(22 + 6*lmMst2 - 6*lmMt) + 5*lmMt + 6*lmMst2*lmMt -
2493  6*pow2(lmMst2))*pow2(Mst2))*pow6(Mst1) - 9*pow2(Mst1)*(75*Dmsqst2*pow4(
2494  Mst2) + (173 + 188*lmMst2 + 32*lmMst1*(1 + lmMst2) + 59*pow2(lmMst2))*
2495  pow6(Mst2)) + 144*pow2(1 + lmMst2)*pow8(Mst2)) + 2*Dmglst2*(pow4(Mst1)*
2496  (135*Dmsqst2*pow2(Mst2) + (4220 + 6114*lmMst2 - 576*lmMst1*(4 + 2*
2497  lmMst2 - lmMt) - 48*(29 + 27*lmMst2)*lmMt + 1341*pow2(lmMst2))*pow4(
2498  Mst2)) + 9*pow2(Mst1)*(15*Dmsqst2*pow4(Mst2) - (-84 + (70 + 32*lmMst1)*
2499  lmMst2 + 59*pow2(lmMst2))*pow6(Mst2)) + 288*(pow2(Mst2)*(31 + lmMst2*(
2500  95 - 23*lmMt) - 16*lmMt + (51 - 6*lmMt)*pow2(lmMst2) - 2*lmMst1*(25 +
2501  lmMst2*(20 - 3*lmMt) - 6*lmMt + 3*pow2(lmMst2)) + 6*pow3(lmMst2))*pow6(
2502  Mst1) + (42 + lmMst2*(242 - 62*lmMt) - 33*lmMt + 6*(29 - 4*lmMt)*pow2(
2503  lmMst2) - 2*lmMst1*(81 + lmMst2*(74 - 12*lmMt) - 18*lmMt + 12*pow2(
2504  lmMst2)) + 24*pow3(lmMst2))*pow8(Mst1) + lmMst2*(1 + lmMst2)*pow8(Mst2)
2505  ))) + 9*pow2(Mst1)*pow3(s2t)*pow4(Mst2)*(128*Mst2*Mt*((1 + lmMst2)*Mgl*
2506  (2*(2 + 2*lmMst1 - lmMst2)*pow2(Mst2)*pow4(Mst1) + 2*(1 - 3*lmMst2 +
2507  lmMst1*(3 + 2*lmMst2) - 2*pow2(lmMst2))*pow2(Mst1)*pow4(Mst2) + (1 + 2*
2508  lmMst1 - 2*lmMst2)*pow6(Mst1) - 2*(1 + lmMst2)*pow6(Mst2)) + Dmglst2*(
2509  2*(1 - 4*lmMst1 + 10*lmMst2 + 3*pow2(lmMst2))*pow2(Mst2)*pow4(Mst1) +
2510  2*pow2(Mst1)*(6 + 11*lmMst2 - 5*pow2(lmMst2) + lmMst1*(-3 + 5*lmMst2 +
2511  6*pow2(lmMst2)) - 6*pow3(lmMst2))*pow4(Mst2) + (1 + 13*lmMst2 - 2*
2512  lmMst1*(5 + 3*lmMst2) + 6*pow2(lmMst2))*pow6(Mst1) - 2*(-1 + 2*lmMst2 +
2513  3*pow2(lmMst2))*pow6(Mst2))) + s2t*(30*Dmglst2*Dmsqst2*(pow2(Mst1) -
2514  pow2(Mst2))*(2*(lmMst1 - lmMst2)*pow2(Mst1)*pow2(Mst2) + pow4(Mst1) -
2515  pow4(Mst2)) - 2*Dmglst2*pow2(Mst2)*(pow2(Mst2)*(-44 + 34*lmMst2 + 224*
2516  lmMst2*pow2(lmMst1) - 359*pow2(lmMst2) - 2*lmMst1*(52 - 198*lmMst2 +
2517  133*pow2(lmMst2)) + 42*pow3(lmMst2))*pow4(Mst1) + pow2(Mst1)*(100 -
2518  222*lmMst2 + 32*lmMst2*pow2(lmMst1) + lmMst1*(8 - 524*lmMst2 - 246*
2519  pow2(lmMst2)) + 241*pow2(lmMst2) + 214*pow3(lmMst2))*pow4(Mst2) + (-36
2520  + (70 + 32*lmMst1)*lmMst2 + 27*pow2(lmMst2))*pow6(Mst1) + (-20 + (262 +
2521  32*lmMst1)*lmMst2 + 187*pow2(lmMst2))*pow6(Mst2)) - Mgl*(75*Dmsqst2*(
2522  pow2(Mst1) - pow2(Mst2))*(2*(lmMst1 - lmMst2)*pow2(Mst1)*pow2(Mst2) +
2523  pow4(Mst1) - pow4(Mst2)) + (-109 - 630*lmMst2 + 224*(1 + lmMst2)*pow2(
2524  lmMst1) + lmMst1*(538 + 184*lmMst2 - 266*pow2(lmMst2)) - 435*pow2(
2525  lmMst2) + 42*pow3(lmMst2))*pow4(Mst1)*pow4(Mst2) + (141 + 140*lmMst2 +
2526  32*lmMst1*(1 + lmMst2) + 43*pow2(lmMst2))*pow2(Mst2)*pow6(Mst1) + pow2(
2527  Mst1)*(-237 + 190*lmMst2 + 32*(1 + lmMst2)*pow2(lmMst1) + 509*pow2(
2528  lmMst2) - 2*lmMst1*(285 + 364*lmMst2 + 123*pow2(lmMst2)) + 214*pow3(
2529  lmMst2))*pow6(Mst2) + (237 + 316*lmMst2 + 32*lmMst1*(1 + lmMst2) + 123*
2530  pow2(lmMst2))*pow8(Mst2)))) - 12*pow2(Mt)*pow2(s2t)*(2*Dmglst2*pow2(
2531  Mst2)*(-((3*pow2(MuSUSY)*(60 + 206*lmMst2 + 32*lmMst2*pow2(lmMst1) +
2532  lmMst1*(8 - 460*lmMst2 - 246*pow2(lmMst2)) + 519*pow2(lmMst2) + 214*
2533  pow3(lmMst2)) + 4*pow2(Mst2)*(52 + lmMst2*(-338 + 48*pow2(lmMst1)) -
2534  129*pow2(lmMst2) + 48*(lmMst1 - 2*lmMst1*lmMst2*(1 + lmMst2) + pow3(
2535  lmMst2))))*pow4(Mst1)*pow4(Mst2)) + 2*pow2(Mst2)*((332 + 302*lmMst2 -
2536  288*lmMst1*(1 + lmMst2) + 111*pow2(lmMst2))*pow2(Mst2) - 3*pow2(MuSUSY)
2537  *(48 + 4*lmMst2*(31 + 36*pow2(lmMst1)) + 278*pow2(lmMst2) - lmMst1*(44
2538  + 278*lmMst2 + 379*pow2(lmMst2)) + 235*pow3(lmMst2)))*pow6(Mst1) + 45*
2539  Dmsqst2*(pow4(Mst1)*((1 - 2*lmMst1 + 2*lmMst2)*pow2(Mst2)*pow2(MuSUSY)
2540  - 4*pow4(Mst2)) + pow2(Mst1)*(2*pow2(Mst2) + pow2(MuSUSY))*pow4(Mst2) +
2541  2*(pow2(Mst2) + (-lmMst1 + lmMst2)*pow2(MuSUSY))*pow6(Mst1)) + 3*pow2(
2542  Mst1)*(-2*(-52 + 2*(67 + 16*lmMst1)*lmMst2 + 91*pow2(lmMst2))*pow2(
2543  Mst2) - (-20 + 2*(99 + 16*lmMst1)*lmMst2 + 123*pow2(lmMst2))*pow2(
2544  MuSUSY))*pow6(Mst2) + 6*(32*(2 + 7*lmMst2 - lmMst1*(5 + 4*lmMst2) + 4*
2545  pow2(lmMst2))*pow2(Mst2) - pow2(MuSUSY)*(48 + 4*lmMst2*(45 + 68*pow2(
2546  lmMst1)) + 310*pow2(lmMst2) - lmMst1*(92 + 310*lmMst2 + 635*pow2(
2547  lmMst2)) + 363*pow3(lmMst2)))*pow8(Mst1) + 96*lmMst2*(1 + lmMst2)*(2*
2548  pow2(Mst2) + pow2(MuSUSY))*pow8(Mst2)) + 3*Mgl*(75*Dmsqst2*pow2(Mst1)*(
2549  -2*pow4(Mst1)*((-lmMst1 + lmMst2)*pow2(Mst2)*pow2(MuSUSY) + pow4(Mst2))
2550  + 2*(lmMst1 - lmMst2)*pow2(MuSUSY)*pow6(Mst1) - (2*pow2(Mst2) + pow2(
2551  MuSUSY))*pow6(Mst2) + pow2(Mst1)*((-1 + 2*lmMst1 - 2*lmMst2)*pow2(
2552  MuSUSY)*pow4(Mst2) + 4*pow6(Mst2))) - pow2(Mst2)*(282*pow4(Mst2)*pow6(
2553  Mst1) - 564*pow4(Mst1)*pow6(Mst2) + pow4(Mst1)*(32*(1 + lmMst2)*pow2(
2554  lmMst1)*(pow2(MuSUSY)*(9*pow2(Mst1)*pow2(Mst2) + 17*pow4(Mst1) + pow4(
2555  Mst2)) + 2*pow6(Mst2)) + 2*pow3(lmMst2)*(pow2(MuSUSY)*(235*pow2(Mst1)*
2556  pow2(Mst2) + 363*pow4(Mst1) + 107*pow4(Mst2)) + 32*pow6(Mst2))) - 2*
2557  lmMst1*((253 + 588*lmMst2 + 379*pow2(lmMst2))*pow2(Mst2)*pow2(MuSUSY)*
2558  pow6(Mst1) - 16*(1 + lmMst2)*pow2(Mst1)*(2*pow2(Mst2) + pow2(MuSUSY))*
2559  pow6(Mst2) + pow4(Mst1)*((253 + 332*lmMst2 + 123*pow2(lmMst2))*pow2(
2560  MuSUSY)*pow4(Mst2) + 32*(3 + 5*lmMst2 + 2*pow2(lmMst2))*pow6(Mst2)) + (
2561  32*(1 + lmMst2)*pow2(Mst2) + (237 + 828*lmMst2 + 635*pow2(lmMst2))*
2562  pow2(MuSUSY))*pow8(Mst1)) + pow2(MuSUSY)*(189*pow4(Mst1)*pow4(Mst2) +
2563  64*pow2(Mst2)*pow6(Mst1) + 205*pow2(Mst1)*pow6(Mst2) + 80*pow8(Mst1) -
2564  16*pow8(Mst2)) + 378*pow2(Mst1)*pow8(Mst2) + 2*lmMst2*((285*pow2(Mst2)*
2565  pow2(MuSUSY) + 172*pow4(Mst2))*pow6(Mst1) - 33*pow4(Mst1)*(-11*pow2(
2566  MuSUSY)*pow4(Mst2) + 8*pow6(Mst2)) + (32*pow2(Mst2) + 277*pow2(MuSUSY))
2567  *pow8(Mst1) - 16*(2*pow2(Mst2) + pow2(MuSUSY))*pow8(Mst2) + 2*pow2(
2568  Mst1)*(63*pow2(MuSUSY)*pow6(Mst2) + 110*pow8(Mst2))) - pow2(lmMst2)*(-
2569  6*(148*pow2(Mst2)*pow2(MuSUSY) + 25*pow4(Mst2))*pow6(Mst1) + pow4(Mst1)
2570  *(-707*pow2(MuSUSY)*pow4(Mst2) + 76*pow6(Mst2)) - 8*(8*pow2(Mst2) +
2571  139*pow2(MuSUSY))*pow8(Mst1) + 16*(2*pow2(Mst2) + pow2(MuSUSY))*pow8(
2572  Mst2) - pow2(Mst1)*(91*pow2(MuSUSY)*pow6(Mst2) + 150*pow8(Mst2))) - 32*
2573  power10(Mst2))))) + 36*s2t*pow2(Mt)*pow2(MuSUSY)*(2*Dmglst2*Mst2*((15*
2574  Dmsqst2*(1 - 2*lmMst1 + 2*lmMst2)*s2t + 64*Mst2*Mt*(8 + 7*lmMst2 - 11*
2575  pow2(lmMst2) + lmMst1*(-3 + 5*lmMst2 + 6*pow2(lmMst2)) - 6*pow3(lmMst2)
2576  ) - s2t*pow2(Mst2)*(60 + 206*lmMst2 + 32*lmMst2*pow2(lmMst1) + lmMst1*(
2577  8 - 460*lmMst2 - 246*pow2(lmMst2)) + 519*pow2(lmMst2) + 214*pow3(
2578  lmMst2)))*pow3(Mst2)*pow4(Mst1) + pow2(Mst1)*(15*Dmsqst2*s2t - 64*Mst2*
2579  Mt*(-1 + 2*lmMst2 + 3*pow2(lmMst2)) - s2t*(-20 + 2*(99 + 16*lmMst1)*
2580  lmMst2 + 123*pow2(lmMst2))*pow2(Mst2))*pow5(Mst2) + 2*Mst2*(15*Dmsqst2*
2581  (-lmMst1 + lmMst2)*s2t + 64*Mst2*Mt*(8 + 13*lmMst2 - 8*pow2(lmMst2) +
2582  lmMst1*(-5 + 5*lmMst2 + 6*pow2(lmMst2)) - 6*pow3(lmMst2)) - s2t*pow2(
2583  Mst2)*(48 + 124*lmMst2 + 144*lmMst2*pow2(lmMst1) + 278*pow2(lmMst2) -
2584  lmMst1*(44 + 278*lmMst2 + 379*pow2(lmMst2)) + 235*pow3(lmMst2)))*pow6(
2585  Mst1) + 2*(16*Mt*(49 + 103*lmMst2 - 36*(1 + lmMst2)*pow2(lmMst2) + 4*
2586  lmMst1*(-11 + 6*lmMst2 + 9*pow2(lmMst2))) - Mst2*s2t*(48 + 4*lmMst2*(45
2587  + 68*pow2(lmMst1)) + 310*pow2(lmMst2) - lmMst1*(92 + 310*lmMst2 + 635*
2588  pow2(lmMst2)) + 363*pow3(lmMst2)))*pow8(Mst1) + 32*lmMst2*(1 + lmMst2)*
2589  s2t*pow9(Mst2)) + Mgl*(-((75*Dmsqst2*(1 - 2*lmMst1 + 2*lmMst2)*s2t +
2590  128*(1 + lmMst2)*Mst2*Mt*(1 + 5*lmMst2 - lmMst1*(3 + 2*lmMst2) + 2*
2591  pow2(lmMst2)) + s2t*pow2(Mst2)*(189 + 726*lmMst2 + 32*(1 + lmMst2)*
2592  pow2(lmMst1) + 707*pow2(lmMst2) - 2*lmMst1*(253 + 332*lmMst2 + 123*
2593  pow2(lmMst2)) + 214*pow3(lmMst2)))*pow4(Mst1)*pow4(Mst2)) - pow2(Mst1)*
2594  (75*Dmsqst2*s2t + 128*Mst2*Mt*pow2(1 + lmMst2) + s2t*(205 + 252*lmMst2
2595  + 32*lmMst1*(1 + lmMst2) + 91*pow2(lmMst2))*pow2(Mst2))*pow6(Mst2) + 2*
2596  (pow2(Mst2)*(75*Dmsqst2*(lmMst1 - lmMst2)*s2t + 64*(1 + lmMst2)*Mst2*
2597  Mt*(1 - 10*lmMst2 + 4*lmMst1*(2 + lmMst2) - 4*pow2(lmMst2)) - s2t*pow2(
2598  Mst2)*(32 + 285*lmMst2 + 144*(1 + lmMst2)*pow2(lmMst1) + 444*pow2(
2599  lmMst2) - lmMst1*(253 + 588*lmMst2 + 379*pow2(lmMst2)) + 235*pow3(
2600  lmMst2)))*pow6(Mst1) + (75*Dmsqst2*(lmMst1 - lmMst2)*s2t + 32*(1 +
2601  lmMst2)*Mst2*Mt*(7 - 32*lmMst2 + 4*lmMst1*(7 + 3*lmMst2) - 12*pow2(
2602  lmMst2)) - s2t*pow2(Mst2)*(40 + 277*lmMst2 + 272*(1 + lmMst2)*pow2(
2603  lmMst1) + 556*pow2(lmMst2) - lmMst1*(237 + 828*lmMst2 + 635*pow2(
2604  lmMst2)) + 363*pow3(lmMst2)))*pow8(Mst1)) + 16*s2t*pow2(1 + lmMst2)*
2605  power10(Mst2)))))))/(816480.*Tbeta*pow2(Mgl)*pow2(Sbeta)*pow4(Mst1)*
2606  pow7(Mst2));
2607 }
2608 
2609 /**
2610  * @return The off-diagonal (1, 2) = (2, 1) matrix element of the Higgs mass matrix as a double for the hierarchy 'H6b2qg2'
2611  */
2612 double H6b2qg2::getS12() const {
2613  return (Al4p*(xDmglst2*pow2(Dmglst2)*(-(Mt*MuSUSY*twoLoopFlag*(-(Mt*pow2(s2t)*(
2614  Mst2*(28 + 4*lmMst1 - 2*lmMst1*lmMst2 + 2*pow2(lmMst2)) + ((34 + 8*
2615  lmMst1 - 4*(2 + lmMst1)*lmMst2 + 4*pow2(lmMst2))*pow2(Mst1))/Mst2 + ((
2616  37.5 + lmMst1*(5 - 4*lmMst2) - 5*lmMst2 + 4*pow2(lmMst2))*pow4(Mst1))/
2617  pow3(Mst2))) + (2*s2t*pow2(Mt)*(11 - 18*lmMst2 + (6*(3 - lmMst1 +
2618  lmMst2)*pow2(Mst1))/pow2(Mst2) + (6*(-2 + 3*lmMst2)*pow2(Mst2))/pow2(
2619  Mst1) + (6*(7 - 6*lmMst1 + 6*lmMst2)*pow4(Mst1))/pow4(Mst2)))/9. +
2620  pow3(s2t)*(((2 + 3*lmMst2)*pow2(Mst1))/3. + (2.6666666666666665 +
2621  lmMst2 + lmMst1*(-1 + 2*lmMst2) - 2*pow2(lmMst2))*pow2(Mst2) + ((0.5 -
2622  lmMst1 + lmMst2)*pow4(Mst1))/pow2(Mst2) + ((0.6666666666666666 -
2623  lmMst2)*pow4(Mst2))/pow2(Mst1)) + (4*pow3(Mt)*((29 - 18*lmMst1*(-1 +
2624  lmMst2) - 3*lmMst2 - 15*lmMt + 18*pow2(lmMst2))*pow2(Mst1)*pow2(Mst2) +
2625  (236 + 339*lmMst2 - 18*lmMst1*(13 + 4*lmMst2 - 3*lmMt) - 105*lmMt - 54*
2626  lmMst2*lmMt + 72*pow2(lmMst2))*pow4(Mst1) + (-79 - 18*lmMst1*(-2 +
2627  lmMst2) - 39*lmMst2 + 3*lmMt + 18*pow2(lmMst2))*pow4(Mst2)))/(27.*pow5(
2628  Mst2)))) + Al4p*MuSUSY*threeLoopFlag*(s2t*pow3(Mt)*(1657.490476190476 -
2629  (16*B4)/3. + (16*D3)/3. - (8*DN)/3. + (736*lmMst1)/9. - (32*lmMt)/9. +
2630  lmMst2*(958.2962962962963 + 68*lmMst1 - (64*pow2(lmMst1))/3.) + (58*
2631  pow2(lmMst1))/3. + (16*(37 - 12*lmMst1)*pow2(lmMst2))/9. + (128*pow3(
2632  lmMst2))/3. - ((1640*Dmsqst2)/9. - pow2(Mst1)*(2311.8293850676073 - (
2633  16*B4)/3. + (16*D3)/3. - (8*DN)/3. + (1014244*lmMst1)/2025. + (32*(5 +
2634  lmMst1 - lmMst2)*lmMt)/9. + (4*lmMst2*(715964 + 124935*lmMst1 - 11025*
2635  pow2(lmMst1)))/2025. + (2032*pow2(lmMst1))/135. - (4*(4517 + 5025*
2636  lmMst1)*pow2(lmMst2))/135. + (4*pow3(lmMst1))/27. + (4604*pow3(lmMst2))
2637  /27.))/pow2(Mst2) + (2*((756 + lmMst1*(64 - 96*lmMst2) - 134*lmMst2 -
2638  177*pow2(lmMst2))*pow2(Mst2) - 30*Dmsqst2*(12 + ((65 - 2*lmMst1 + 2*
2639  lmMst2)*pow4(Mst1))/pow4(Mst2))))/(9.*pow2(Mst1)) - S2*(
2640  596.0571428571428 + 84*lmMst1 - 84*lmMst2 + ((1403.352380952381 + 880*
2641  lmMst1 - 880*lmMst2)*pow2(Mst1))/pow2(Mst2) + (8*(17269 + 13785*lmMst1
2642  - 13785*lmMst2)*pow4(Mst1))/(45.*pow4(Mst2))) + (64*(-2 + lmMst2 + 5*
2643  pow2(lmMst2))*pow4(Mst2))/(9.*pow4(Mst1)) + ((311.41128771790903 - (32*
2644  B4)/9. + (32*D3)/9. - (16*DN)/9. + (14926634*lmMst1)/19845. + (19352*
2645  pow2(lmMst1))/189. + (2*lmMst2*(2917823 - 3813600*lmMst1 + 97020*pow2(
2646  lmMst1)))/19845. + (8*(8677 - 5439*lmMst1)*pow2(lmMst2))/189. - (64*
2647  lmMt*(4 + 6*lmMst2 - 2*lmMst1*(3 + lmMst2) + pow2(lmMst1) + pow2(
2648  lmMst2)))/3. - (8*pow3(lmMst1))/9. + (664*pow3(lmMst2))/3.)*pow4(Mst1)
2649  + (16*OepS2*(660*pow2(Mst1)*pow2(Mst2) + 1838*pow4(Mst1) + 63*pow4(
2650  Mst2)))/243.)/pow4(Mst2)) - pow2(Mt)*pow2(s2t)*((40*Dmsqst2*(2 + 5*
2651  lmMst1 - 5*lmMst2) + pow2(Mst1)*(69.80036008230452 - (524*B4)/3. + (10*
2652  DN)/3. - (3469*lmMst1)/27. + (64*pow2(lmMst1))/3. - (lmMst2*(7619 +
2653  720*lmMst1 + 288*pow2(lmMst1)))/27. + (4*(4 + 153*lmMst1)*pow2(lmMst2))
2654  /3. - (580*pow3(lmMst2))/3.))/Mst2 + Mst2*(358.7766975308642 - (490*B4)
2655  /3. + (11*DN)/3. - (824*lmMst1)/3. - (32*pow2(lmMst1))/3. + (2*lmMst2*(
2656  -695 - 108*lmMst1 + 24*pow2(lmMst1)))/9. + (14*(-18 + 31*lmMst1)*pow2(
2657  lmMst2))/3. - 150*pow3(lmMst2)) + (64*(2 + lmMst2 - 3*pow2(lmMst2))*
2658  pow3(Mst2))/(3.*pow2(Mst1)) + ((516.797085048011 - (296*B4)/3. + (4*DN)
2659  /3. + (17570*lmMst1)/81. + (46*pow2(lmMst1))/3. - (lmMst2*(28667 -
2660  5238*lmMst1 + 3024*pow2(lmMst1)))/81. + (4*(-60 + 157*lmMst1)*pow2(
2661  lmMst2))/3. - (16*pow3(lmMst1))/3. - (500*pow3(lmMst2))/3.)*pow4(Mst1)
2662  - (2*OepS2*(-9267*pow2(Mst1)*pow2(Mst2) + 23734*pow4(Mst1) - 63*pow4(
2663  Mst2)))/729. + (S2*(3*(29123 - 92670*lmMst1 + 92670*lmMst2)*pow2(Mst1)*
2664  pow2(Mst2) + 2*(525961 + 356010*lmMst1 - 356010*lmMst2)*pow4(Mst1) +
2665  27*(1387 - 70*lmMst1 + 70*lmMst2)*pow4(Mst2)))/540.)/pow3(Mst2) - (10*
2666  Dmsqst2*(40*(1 - lmMst1 + lmMst2)*pow2(Mst1)*pow2(Mst2) + (80 - 43*
2667  lmMst1 + 43*lmMst2)*pow4(Mst1)))/pow5(Mst2)) + (pow4(Mt)*(24*pow2(Mst2)
2668  *(2848907 - 10515960*lmMt + 605920*OepS2 + 11406852*S2 + 1890*lmMst2*(
2669  8232 - 203*lmMt + lmMst2*(347 + 96*lmMt) + 6492*S2) - 90720*(-3 +
2670  lmMst2)*pow2(lmMst1) - 1890*lmMst1*(3460 - 281*lmMt + lmMst2*(689 + 96*
2671  lmMt) + 6492*S2 - 438*pow2(lmMst2)) + 226800*pow2(lmMt) - 737100*pow3(
2672  lmMst2))*pow4(Mst1) - 907200*Dmsqst2*((101 - 90*lmMst1 + 177*lmMst2 -
2673  87*lmMt)*pow2(Mst1)*pow2(Mst2) + (497 - 306*lmMst1 + 609*lmMst2 - 303*
2674  lmMt)*pow4(Mst1)) - 9*pow2(Mst1)*(7152121 + 4616640*lmMt - 7840*OepS2 +
2675  17640*lmMst2*(-1256 + 60*lmMt - 9*S2) - 3032964*S2 - 241920*(-2 +
2676  lmMst2)*pow2(lmMst1) + 7560*lmMst1*(1136 - 128*lmMt + 16*lmMst2*(21 +
2677  4*lmMt) + 21*S2 - 164*pow2(lmMst2)) - 30240*(107 + 16*lmMt)*pow2(
2678  lmMst2) + 120960*pow2(lmMt) + 1481760*pow3(lmMst2))*pow4(Mst2) + 140*(
2679  5659217 + 1592460*lmMt - 518816*OepS2 + 9976392*S2 - 972*(569 + 180*
2680  lmMst2 - 126*lmMt)*pow2(lmMst1) + 324*(5353 + 126*lmMt)*pow2(lmMst2) -
2681  186624*pow2(lmMt) + 72*lmMst1*(-27653 - 3015*lmMt - 18*lmMst2*(689 +
2682  126*lmMt) + 145917*S2 + 2160*pow2(lmMst2) + 2592*pow2(lmMt)) - 36*
2683  lmMst2*(-39031 - 3204*lmMt + 291834*S2 + 5184*pow2(lmMt)) + 1944*pow3(
2684  lmMst1) + 17496*pow3(lmMst2))*pow6(Mst1) + 8709120*(2 + lmMst2 - 3*
2685  pow2(lmMst2))*pow6(Mst2)))/(306180.*pow2(Mst1)*pow5(Mst2)) + Mt*((T1ep*
2686  (3*pow2(Mst1)*pow2(Mst2)*(-15840*Mst2*s2t*pow2(Mt) + 9267*Mt*pow2(Mst2)
2687  *pow2(s2t) - 17312*pow3(Mt) + 530*pow3(Mst2)*pow3(s2t)) + 2*(-66168*
2688  Mst2*s2t*pow2(Mt) - 35601*Mt*pow2(Mst2)*pow2(s2t) + 129704*pow3(Mt) +
2689  12664*pow3(Mst2)*pow3(s2t))*pow4(Mst1) + 63*(-72*Mst2*s2t*pow2(Mt) + 3*
2690  Mt*pow2(Mst2)*pow2(s2t) - 4*pow3(Mt) + 10*pow3(Mst2)*pow3(s2t))*pow4(
2691  Mst2)))/(729.*pow5(Mst2)) + pow3(s2t)*(pow2(Mst2)*(92.72211934156378 -
2692  (50*B4)/9. + (56*D3)/9. - (31*DN)/9. + (142*lmMst1)/3. - lmMst2*(
2693  91.29629629629629 + 56*lmMst1 - (16*pow2(lmMst1))/3.) - (103*pow2(
2694  lmMst1))/18. + (35.05555555555556 - 41*lmMst1)*pow2(lmMst2) + (20*
2695  Dmsqst2)/pow2(Mst1) + (107*pow3(lmMst2))/3.) + pow2(Mst1)*(
2696  32.30218244170096 - (32*B4)/9. + (32*D3)/9. - (16*DN)/9. - (80549*
2697  lmMst1)/1350. - (6011*pow2(lmMst1))/270. + (lmMst2*(41949 + 45410*
2698  lmMst1 + 58350*pow2(lmMst1)))/1350. - ((2383 + 11595*lmMst1)*pow2(
2699  lmMst2))/135. - (5*pow3(lmMst1))/27. + (1157*pow3(lmMst2))/27.) + ((-
2700  916 + 390*lmMst2 + 32*lmMst1*(-2 + 3*lmMst2) + 657*pow2(lmMst2))*pow4(
2701  Mst2))/(18.*pow2(Mst1)) - (5*Dmsqst2*(9*(55 - 34*lmMst1 + 34*lmMst2)*
2702  pow2(Mst1)*pow2(Mst2) + (419 - 57*lmMst1 + 57*lmMst2)*pow4(Mst1) - 36*(
2703  5 + 2*lmMst1 - 2*lmMst2)*pow4(Mst2)))/(27.*pow4(Mst2)) + ((
2704  203.8689796251638 + (2171669*lmMst2)/119070. + ((433 + 6552*lmMst2)*
2705  pow2(lmMst1))/189. + (1987*pow2(lmMst2))/189. - (lmMst1*(2740559 +
2706  1524600*lmMst2 + 7514640*pow2(lmMst2)))/119070. - (56*pow3(lmMst1))/27.
2707  + (824*pow3(lmMst2))/27.)*pow4(Mst1) - (4*OepS2*(795*pow2(Mst1)*pow2(
2708  Mst2) + 12664*pow4(Mst1) + 315*pow4(Mst2)))/2187. - (S2*(159*(21401 -
2709  150*lmMst1 + 150*lmMst2)*pow2(Mst1)*pow2(Mst2) + 20*(47051 - 18996*
2710  lmMst1 + 18996*lmMst2)*pow4(Mst1) + 27*(116129 - 350*lmMst1 + 350*
2711  lmMst2)*pow4(Mst2)))/810.)/pow2(Mst2) - (16*(-2 + lmMst2 + 5*pow2(
2712  lmMst2))*pow6(Mst2))/(9.*pow4(Mst1))))) + (Al4p*threeLoopFlag*pow2(Mt)*
2713  ((5*Dmsqst2*(-1081 + 165*lmMst1 - 165*lmMst2)*pow2(s2t)*(-1 + pow2(
2714  Sbeta))*pow2(Sbeta)*pow4(Mst1))/(9.*pow4(Mst2)) - (pow2(MuSUSY)*((36*
2715  pow2(Mt)*(pow2(Mst1)*(3051661 - 12960*B4 + 12960*D3 - 6480*DN + 304320*
2716  lmMst1 + 960*(2227 + 285*lmMst1)*lmMst2 + 2880*(4 + lmMst1 - lmMst2)*
2717  lmMt + 5600*OepS2 - 324*(5361 + 350*lmMst1 - 350*lmMst2)*S2 - 2880*(23
2718  + 72*lmMst1)*pow2(lmMst2) + 207360*pow3(lmMst2)) + 24*pow2(Mst2)*(50134
2719  - 270*B4 + 270*D3 - 135*DN + 120*(271 + 24*lmMst1)*lmMst2 - 120*lmMt -
2720  29646*S2 - 720*(-2 + 3*lmMst1)*pow2(lmMst2) + 2160*(lmMst1 + pow3(
2721  lmMst2)))))/pow4(Mst2) + 43740*pow2(s2t)*(90.77757201646091 - (100*B4)/
2722  9. + (112*D3)/9. - (62*DN)/9. + (788*lmMst1)/9. - (103*pow2(lmMst1))/9.
2723  + (16*lmMst2*(-241 - 171*lmMst1 + 18*pow2(lmMst1)))/27. + (
2724  125.33333333333333 - 82*lmMst1)*pow2(lmMst2) + ((-852 + 358*lmMst2 +
2725  32*lmMst1*(-2 + 3*lmMst2) + 497*pow2(lmMst2))*pow2(Mst2))/(9.*pow2(
2726  Mst1)) + (214*pow3(lmMst2))/3. + ((80*Dmsqst2*(4 + lmMst1 - lmMst2))/3.
2727  + pow2(Mst1)*(155.38193689986284 - (164*B4)/9. + (176*D3)/9. - (94*DN)
2728  /9. - (21449*lmMst1)/675. - (7556*pow2(lmMst1))/135. + (lmMst2*(-54451
2729  - 22990*lmMst1 + 65550*pow2(lmMst1)))/675. + (2*(6077 - 17130*lmMst1)*
2730  pow2(lmMst2))/135. - (10*pow3(lmMst1))/27. + (4240*pow3(lmMst2))/27.))/
2731  pow2(Mst2) + Dmsqst2*(40/pow2(Mst1) + (10*(-23 + 42*lmMst1 - 42*lmMst2)
2732  *pow2(Mst1))/(3.*pow4(Mst2))) - (32*(-2 + lmMst2 + 5*pow2(lmMst2))*
2733  pow4(Mst2))/(9.*pow4(Mst1)) + ((585.1892843532082 - (8*B4)/3. + (32*D3)
2734  /9. - (20*DN)/9. - (20109937*lmMst1)/297675. - (15886*pow2(lmMst1))/
2735  945. + lmMst2*(17.112243218274966 - (144628*lmMst1)/945. + (1180*pow2(
2736  lmMst1))/9.) + (2*(80257 - 138180*lmMst1)*pow2(lmMst2))/945. - (92*
2737  pow3(lmMst1))/27. + (4448*pow3(lmMst2))/27.)*pow4(Mst1) - (8*OepS2*(
2738  1110*pow2(Mst1)*pow2(Mst2) + 17308*pow4(Mst1) + 315*pow4(Mst2)))/2187.
2739  - (S2*(6*(1089707 - 5550*lmMst1 + 5550*lmMst2)*pow2(Mst1)*pow2(Mst2) +
2740  40*(93919 - 12981*lmMst1 + 12981*lmMst2)*pow4(Mst1) + 27*(116129 - 350*
2741  lmMst1 + 350*lmMst2)*pow4(Mst2)))/405.)/pow4(Mst2)) + (240*T1ep*(30*
2742  Mst2*pow2(Mst1)*(311*Mst2*Mt*s2t - 42*pow2(Mt) + 37*pow2(Mst2)*pow2(
2743  s2t)) + 2*s2t*(-16421*Mt + 8654*Mst2*s2t)*pow4(Mst1) + 63*s2t*(Mt + 5*
2744  Mst2*s2t)*pow4(Mst2)) - (Mt*s2t*(6*pow2(Mst2)*(4580489 - 3285360*B4 +
2745  68040*DN - 3918600*lmMst1 + 248800*OepS2 - 108*(-20803 + 46650*lmMst1 -
2746  46650*lmMst2)*S2 + 103680*pow2(lmMst1) - 360*lmMst2*(11213 + 1368*
2747  lmMst1 + 144*pow2(lmMst1)) + 6480*(-214 + 523*lmMst1)*pow2(lmMst2) -
2748  3337200*pow3(lmMst2))*pow4(Mst1) - 2332800*Dmsqst2*((-2 - 5*lmMst1 + 5*
2749  lmMst2)*pow2(Mst1)*pow2(Mst2) + (8 - 15*lmMst1 + 15*lmMst2)*pow4(Mst1))
2750  + 9*pow2(Mst1)*(2601353 - 1058400*B4 + 23760*DN - 1779840*lmMst1 +
2751  1120*OepS2 - 324*(-1387 + 70*lmMst1 - 70*lmMst2)*S2 - 69120*pow2(
2752  lmMst1) + 1440*lmMst2*(-599 - 108*lmMst1 + 24*pow2(lmMst1)) + 4320*(-
2753  222 + 217*lmMst1)*pow2(lmMst2) - 972000*pow3(lmMst2))*pow4(Mst2) + 10*(
2754  2773621 - 1660176*B4 + 25272*DN + 2004408*lmMst1 - 525472*OepS2 + 108*(
2755  123113 + 98526*lmMst1 - 98526*lmMst2)*S2 + 3888*pow2(lmMst1) - 144*
2756  lmMst2*(36802 - 11421*lmMst1 + 1728*pow2(lmMst1)) + 167184*(-14 + 15*
2757  lmMst1)*pow2(lmMst2) - 31104*pow3(lmMst1) - 2227824*pow3(lmMst2))*pow6(
2758  Mst1) + 1244160*(2 + lmMst2 - 3*pow2(lmMst2))*pow6(Mst2)))/pow2(Mst1))/
2759  pow5(Mst2)))/43740.))/Tbeta + (s2t*twoLoopFlag*pow2(Mt)*pow2(MuSUSY)*(
2760  2*(4*Mt*(-31 + 3*lmMst1*(-2 + lmMst2) + 4*lmMst2 - 3*pow2(lmMst2)) + 3*
2761  Mst2*s2t*(4 + lmMst2 + lmMst1*(-1 + 2*lmMst2) - 2*pow2(lmMst2)))*pow2(
2762  Mst2)*pow4(Mst1) + 2*(Mst2*s2t*(10 + lmMst1*(-3 + 6*lmMst2) - 6*pow2(
2763  lmMst2)) + 4*Mt*(-14 + lmMst1*(-2 + lmMst2) - pow2(lmMst2)))*pow2(Mst1)
2764  *pow4(Mst2) + (Mt*(-398 + 52*lmMst2 + lmMst1*(-68 + 40*lmMst2) - 40*
2765  pow2(lmMst2)) + 3*Mst2*s2t*(9 + 4*lmMst1*(-1 + lmMst2) + 4*lmMst2 - 4*
2766  pow2(lmMst2)))*pow6(Mst1) + 2*(2 - 3*lmMst2)*s2t*pow7(Mst2)))/(3.*
2767  Tbeta*pow2(Mst1)*pow5(Mst2))) - (Mt*MuSUSY*xDR2DRMOD*(54*s2t*pow2(Mst1)
2768  *(-5*Al4p*threeLoopFlag*xDmsqst2*pow2(Dmsqst2)*((14*Dmglst2*Mgl + 33*
2769  xDmglst2*pow2(Dmglst2) + pow2(Mgl))*pow2(Mst2)*(2*Mt*(MuSUSY*s2t - 2*
2770  Mt*Tbeta)*pow2(Mst1) + pow2(Mst2)*(2*Mt*MuSUSY*s2t + 4*Tbeta*pow2(Mt) -
2771  Tbeta*pow2(Mst2)*pow2(s2t)) + Tbeta*pow2(s2t)*pow4(Mst1)) + (-2*lmMst1
2772  + 2*lmMst2)*s2t*pow2(Mst1)*(Dmglst2*(14*Mgl + 33*Dmglst2*xDmglst2)*
2773  pow2(Mst2)*(2*Mt*MuSUSY - s2t*Tbeta*pow2(Mst2)) + pow2(Mgl)*(2*Mt*
2774  MuSUSY*(pow2(Mst1) + pow2(Mst2)) - s2t*Tbeta*pow4(Mst2)))) + 4*Mgl*(2*
2775  Dmglst2*lmMst2 + Mgl + lmMst2*Mgl)*twoLoopFlag*pow2(Mst2)*(-((2*Mt*(
2776  MuSUSY*s2t - 2*Mt*Tbeta)*pow2(Mst1) + pow2(Mst2)*(2*Mt*MuSUSY*s2t + 4*
2777  Tbeta*pow2(Mt) - Tbeta*pow2(Mst2)*pow2(s2t)) + Tbeta*pow2(s2t)*pow4(
2778  Mst1))*pow4(Mst2)) + 2*(lmMst1 - lmMst2)*s2t*pow2(Mst1)*(2*Mt*MuSUSY*(
2779  pow2(Mst1)*pow2(Mst2) + pow4(Mst1) + pow4(Mst2)) - s2t*Tbeta*pow6(Mst2)
2780  ))) - Mst2*xDmglst2*pow2(Dmglst2)*(216*(2 - 3*lmMst2)*Mst2*s2t*
2781  twoLoopFlag*pow2(Mst1)*(-(Tbeta*(-4*pow2(Mst1)*pow2(Mt) + 4*pow2(Mst2)*
2782  pow2(Mt) + 2*(lmMst1 - lmMst2)*pow2(Mst1)*pow2(Mst2)*pow2(s2t) + pow2(
2783  s2t)*(pow4(Mst1) - pow4(Mst2)))*pow4(Mst2)) - 2*Mt*MuSUSY*s2t*((pow2(
2784  Mst1) + pow2(Mst2))*pow4(Mst2) - 2*(lmMst1 - lmMst2)*pow2(Mst1)*(pow2(
2785  Mst1)*pow2(Mst2) + pow4(Mst1) + pow4(Mst2)))) + Al4p*threeLoopFlag*(24*
2786  Mt*MuSUSY*s2t*(-((s2t*(675*Dmsqst2*(1 - 2*lmMst1 + 2*lmMst2) + pow2(
2787  Mst2)*(1180 + 1270*lmMst2 + 96*(2 - 3*lmMst2)*pow2(lmMst1) - 3255*pow2(
2788  lmMst2) + 6*lmMst1*(-468 + 454*lmMst2 + 369*pow2(lmMst2)) - 1926*pow3(
2789  lmMst2))) + 64*Mst2*Mt*(53 + 191*lmMst2 - 54*pow2(lmMst2) + 6*lmMst1*(-
2790  10 - 3*lmMst2 + 12*pow2(lmMst2)) - 72*pow3(lmMst2)))*pow3(Mst2)*pow4(
2791  Mst1)) - 3*pow2(Mst1)*(225*Dmsqst2*s2t + 256*Mst2*Mt*(2 + lmMst2 - 3*
2792  pow2(lmMst2)) + s2t*(420 + lmMst1*(64 - 96*lmMst2) - 358*lmMst2 - 497*
2793  pow2(lmMst2))*pow2(Mst2))*pow5(Mst2) - 2*Mst2*(675*Dmsqst2*(-lmMst1 +
2794  lmMst2)*s2t + 32*Mst2*Mt*(11 + 371*lmMst2 - 42*pow2(lmMst2) + 6*lmMst1*
2795  (-21 - 5*lmMst2 + 24*pow2(lmMst2)) - 144*pow3(lmMst2)) - 3*s2t*pow2(
2796  Mst2)*(-240 - 468*lmMst2 + 144*(-2 + 3*lmMst2)*pow2(lmMst1) + lmMst1*(
2797  580 - 22*lmMst2 - 1137*pow2(lmMst2)) + 310*pow2(lmMst2) + 705*pow3(
2798  lmMst2)))*pow6(Mst1) - 12*(16*Mt*(49 + 103*lmMst2 - 36*(1 + lmMst2)*
2799  pow2(lmMst2) + 4*lmMst1*(-11 + 6*lmMst2 + 9*pow2(lmMst2))) - Mst2*s2t*(
2800  48 + 4*lmMst2*(45 + 68*pow2(lmMst1)) + 310*pow2(lmMst2) - lmMst1*(92 +
2801  310*lmMst2 + 635*pow2(lmMst2)) + 363*pow3(lmMst2)))*pow8(Mst1) - 96*
2802  s2t*(-2 + lmMst2 + 5*pow2(lmMst2))*pow9(Mst2)) + Tbeta*(8*pow3(Mst2)*
2803  pow4(Mst1)*(s2t*(4050*Dmsqst2*pow2(Mt) + 3*pow2(Mst2)*(-675*Dmsqst2*(
2804  lmMst1 - lmMst2)*pow2(s2t) + 2*pow2(Mt)*(860 - 434*lmMst2 + 96*(-2 + 3*
2805  lmMst2)*pow2(lmMst1) + 96*lmMst1*(3 + lmMst2 - 6*pow2(lmMst2)) - 243*
2806  pow2(lmMst2) + 288*pow3(lmMst2)))) - 144*Mt*pow2(s2t)*(-29 - 179*lmMst2
2807  + lmMst1*(60 + 18*lmMst2 - 72*pow2(lmMst2)) + 18*pow2(lmMst2) + 72*
2808  pow3(lmMst2))*pow3(Mst2) + 64*Mst2*(96 + 36*lmMt + lmMst2*(-187 + 39*
2809  lmMt) - 3*(19 + 6*lmMt)*pow2(lmMst2) + 18*(lmMst1*(3 - 2*lmMt + lmMst2*
2810  (3 + lmMt) - pow2(lmMst2)) + pow3(lmMst2)))*pow3(Mt) - 3*(40 - 1172*
2811  lmMst2 + 48*(-2 + 3*lmMst2)*pow2(lmMst1) + 882*pow2(lmMst2) - 3*lmMst1*
2812  (-500 + 502*lmMst2 + 369*pow2(lmMst2)) + 963*pow3(lmMst2))*pow3(s2t)*
2813  pow4(Mst2)) + 4*pow2(Mst2)*(-1728*Mt*pow2(Mst2)*pow2(s2t)*(7 - 30*
2814  lmMst2 + lmMst1*(11 + 2*lmMst2 - 12*pow2(lmMst2)) - 2*pow2(lmMst2) +
2815  12*pow3(lmMst2)) + 128*(834 + lmMst2*(569 - 33*lmMt) - 162*lmMt + (51 -
2816  18*lmMt)*pow2(lmMst2) - 18*lmMst1*(13 + lmMst2 - lmMst2*lmMt + pow2(
2817  lmMst2)) + 18*pow3(lmMst2))*pow3(Mt) + Mst2*(1152*s2t*pow2(Mt)*((-2 +
2818  3*lmMst2)*pow2(lmMst1) + lmMst1*(-8 + 2*lmMst2 - 6*pow2(lmMst2)) + 3*(6
2819  + 5*lmMst2 + pow3(lmMst2))) + 3*(-675*Dmsqst2 + pow2(Mst2)*(260 + 1538*
2820  lmMst2 - 768*(-2 + 3*lmMst2)*pow2(lmMst1) + 1395*pow2(lmMst2) + 96*
2821  lmMst1*(-7 - 27*lmMst2 + 48*pow2(lmMst2)) - 2304*pow3(lmMst2)))*pow3(
2822  s2t)))*pow6(Mst1) - 128*(-27*Mt*pow2(Mst2)*pow2(s2t)*(17 + 51*lmMst2 -
2823  4*pow2(lmMst2) + 4*lmMst1*(-6 + lmMst2 + 3*pow2(lmMst2)) - 12*pow3(
2824  lmMst2)) - 72*Mst2*s2t*pow2(Mt)*(-6 - 14*lmMst2 + lmMst2*pow2(lmMst1) +
2825  lmMst1*(9 + 6*lmMst2 - 2*pow2(lmMst2)) - 6*pow2(lmMst2) + pow3(lmMst2))
2826  + 4*(290 + lmMst2*(2447 - 645*lmMt) - 375*lmMt - 3*(-509 + 60*lmMt)*
2827  pow2(lmMst2) - 18*lmMst1*(87 + lmMst2*(71 - 10*lmMt) - 22*lmMt + 10*
2828  pow2(lmMst2)) + 180*pow3(lmMst2))*pow3(Mt) + 9*(-2*lmMst1*(3 + 2*lmMst2
2829  + 16*pow2(lmMst2)) + lmMst2*(7 + 4*lmMst2 + 16*(pow2(lmMst1) + pow2(
2830  lmMst2))))*pow3(Mst2)*pow3(s2t))*pow8(Mst1) + 1152*s2t*(-2 + lmMst2 +
2831  5*pow2(lmMst2))*(-4*pow2(Mt) + pow2(Mst2)*pow2(s2t))*pow9(Mst2) - 9*
2832  pow2(Mst1)*(3600*Dmsqst2*s2t*pow2(Mt)*pow5(Mst2) + 4*(-4*s2t*(-324 +
2833  134*lmMst2 + 32*lmMst1*(-2 + 3*lmMst2) + 177*pow2(lmMst2))*pow2(Mt) -
2834  225*Dmsqst2*pow3(s2t))*pow7(Mst2) + 512*(-2 - lmMst2 + 3*pow2(lmMst2))*
2835  (-4*pow3(Mt)*pow6(Mst2) + 3*Mt*pow2(s2t)*pow8(Mst2)) + pow3(s2t)*(135*
2836  Mst2*pow4(Dmsqst2) + 4*(-484 + 390*lmMst2 + 32*lmMst1*(-2 + 3*lmMst2) +
2837  657*pow2(lmMst2))*pow9(Mst2))))))))/(648.*Tbeta*pow4(Mst1)*pow6(Mst2)))
2838  )/pow2(Mgl) + Mt*((MuSUSY*(3*oneLoopFlag*s2t*(4*(lmMst1 - lmMst2)*pow2(
2839  Mt) - ((2 + lmMst1 - lmMst2)*pow2(Mst1) + (-2 + lmMst1 - lmMst2)*pow2(
2840  Mst2))*pow2(s2t) - (2*Mt*MuSUSY*s2t*(2 - lmMst1 + lmMst2 - (2*(lmMst1 -
2841  lmMst2)*pow2(Mst1)*(pow2(Mst1) + pow2(Mst2)))/pow4(Mst2)))/Tbeta) + 4*
2842  Al4p*twoLoopFlag*(12*Mt*pow2(s2t)*(2*Mst2*(4 + 3*lmMst2 - lmMst1*(1 +
2843  lmMst2) + pow2(lmMst2) + (Dmglst2*(6 + lmMst1 + lmMst2 - lmMst1*lmMst2
2844  + pow2(lmMst2)))/Mgl) + ((2 - 6*lmMst1 + (6 - 4*lmMst1)*lmMst2 + 4*
2845  pow2(lmMst2) + (Dmglst2*(10 + lmMst1*(6 - 4*lmMst2) - 6*lmMst2 + 4*
2846  pow2(lmMst2)))/Mgl)*pow2(Mst1))/Mst2 + ((0.5 - 7*lmMst1 + (7 - 4*
2847  lmMst1)*lmMst2 + 4*pow2(lmMst2) + (Dmglst2*(10.5 + lmMst1*(9 - 4*
2848  lmMst2) - 9*lmMst2 + 4*pow2(lmMst2)))/Mgl)*pow4(Mst1))/pow3(Mst2)) + 8*
2849  s2t*pow2(Mt)*(6*lmMst1 + 2*(-2 + lmMst1)*lmMst2 + pow2(lmMst1) - 3*
2850  pow2(lmMst2) + (2*(Dmglst2 + 2*Dmglst2*lmMst2 + ((1 - lmMst1 + lmMst2)*
2851  (2*Dmglst2 + (lmMst1 - lmMst2)*Mgl)*pow2(Mst1))/pow2(Mst2) - ((2*
2852  Dmglst2*lmMst2 + Mgl + lmMst2*Mgl)*pow2(Mst2))/pow2(Mst1) - ((Dmglst2*(
2853  -2 + 4*lmMst1 - 4*lmMst2) + Mgl*(-lmMst1 + lmMst2 - 2*lmMst1*lmMst2 +
2854  pow2(lmMst1) + pow2(lmMst2)))*pow4(Mst1))/pow4(Mst2)))/Mgl) + (16*
2855  Tbeta*pow2(Mst1)*pow3(Mt)*(Mgl*(13 + 2*lmMst1*(6 + 3*lmMst2 - 2*lmMt) +
2856  2*lmMt + 2*lmMst2*(-7 + 2*lmMt) - 6*pow2(lmMst2))*pow4(Mst1) + Dmglst2*
2857  (11 - 6*lmMst1*lmMst2 - 8*lmMst2*(-5 + lmMt) + 8*lmMst1*(-4 + lmMt) -
2858  8*lmMt + 6*pow2(lmMst2))*pow4(Mst1) + 2*Dmglst2*((7 + 7*lmMst2 +
2859  lmMst1*(-5 + lmMt) - 2*lmMt - lmMst2*lmMt)*pow2(Mst1)*pow2(Mst2) + (5 +
2860  lmMst1*(-1 + lmMst2) + lmMst2 - pow2(lmMst2))*pow4(Mst2)) + 2*Mgl*((4 +
2861  lmMst1*(3 + 2*lmMst2 - lmMt) + lmMst2*(-4 + lmMt) + lmMt - 2*pow2(
2862  lmMst2))*pow2(Mst1)*pow2(Mst2) + (2 + lmMst1 + (-2 + lmMst1)*lmMst2 +
2863  lmMt - pow2(lmMst2))*pow4(Mst2))) + Tbeta*pow3(Mst2)*pow3(s2t)*(-4*
2864  Dmglst2*(2*(1 + 2*lmMst1 - lmMst2)*pow2(Mst2)*pow4(Mst1) + 2*(1 +
2865  lmMst1 - lmMst2 + 2*lmMst1*lmMst2 - 2*pow2(lmMst2))*pow2(Mst1)*pow4(
2866  Mst2) + (1 + 2*lmMst1 - 2*lmMst2)*pow6(Mst1) - 2*lmMst2*pow6(Mst2)) +
2867  Mgl*(2*(-16 + 6*lmMst2 - 2*lmMst1*(8 + 5*lmMst2) + 3*pow2(lmMst1) + 7*
2868  pow2(lmMst2))*pow2(Mst2)*pow4(Mst1) - 2*(-12 - 18*lmMst2 + 2*lmMst1*(5
2869  + 3*lmMst2) + pow2(lmMst1) - 7*pow2(lmMst2))*pow2(Mst1)*pow4(Mst2) + (3
2870  + lmMst1*(2 - 32*lmMst2) - 2*lmMst2 + 16*(pow2(lmMst1) + pow2(lmMst2)))
2871  *pow6(Mst1) + 4*(1 + lmMst2)*pow6(Mst2))) - 2*Mt*MuSUSY*s2t*(2*Mgl*(-(
2872  Mst2*s2t*(-14 - 20*lmMst2 + 2*lmMst1*(5 + 3*lmMst2) + pow2(lmMst1) - 7*
2873  pow2(lmMst2))) + 8*Mt*(4 + 3*lmMst2 - lmMst1*(1 + lmMst2) + pow2(
2874  lmMst2)))*pow2(Mst1)*pow4(Mst2) + 4*Dmglst2*(Mst2*s2t*(-5 + 8*lmMst2 -
2875  4*lmMst1*(2 + lmMst2) + 4*pow2(lmMst2)) + Mt*(65 + lmMst1*(34 - 20*
2876  lmMst2) - 26*lmMst2 + 20*pow2(lmMst2)))*pow6(Mst1) + Mgl*(Mst2*s2t*(-1
2877  + 50*lmMst2 - 2*lmMst1*(25 + 32*lmMst2) + 20*pow2(lmMst1) + 44*pow2(
2878  lmMst2)) + Mt*(84 + 152*lmMst2 - 40*lmMst1*(3 + 2*lmMst2) + 80*pow2(
2879  lmMst2)))*pow6(Mst1) + 8*Dmglst2*((Mst2*s2t*(-2 + 3*lmMst2 - lmMst1*(3
2880  + 2*lmMst2) + 2*pow2(lmMst2)) + Mt*(22 + lmMst1*(8 - 6*lmMst2) - 4*
2881  lmMst2 + 6*pow2(lmMst2)))*pow2(Mst2)*pow4(Mst1) + (-(Mst2*s2t*(1 +
2882  lmMst1 - 2*lmMst2 + 2*lmMst1*lmMst2 - 2*pow2(lmMst2))) + 2*Mt*(6 +
2883  lmMst1 + lmMst2 - lmMst1*lmMst2 + pow2(lmMst2)))*pow2(Mst1)*pow4(Mst2)
2884  + lmMst2*s2t*pow7(Mst2)) + 4*Mgl*((4*Mt*(5 + 6*lmMst2 - lmMst1*(4 + 3*
2885  lmMst2) + 3*pow2(lmMst2)) + Mst2*s2t*(-1 + 13*lmMst2 - lmMst1*(13 + 8*
2886  lmMst2) + pow2(lmMst1) + 7*pow2(lmMst2)))*pow2(Mst2)*pow4(Mst1) + (1 +
2887  lmMst2)*s2t*pow7(Mst2))))/(Mgl*Tbeta*pow2(Mst1)*pow5(Mst2)))))/48. + (
2888  630*xMst*(27*(lmMst1 - lmMst2)*Mst2*Mt*oneLoopFlag*pow2(Mgl)*pow2(
2889  MuSUSY)*pow2(s2t) - Al4p*twoLoopFlag*(8*Mt*s2t*(18*(lmMst1 - lmMst2)*(-
2890  2 + 3*lmMst2)*Mst2*s2t*xDmglst2*xDR2DRMOD*pow2(Dmglst2) + Dmglst2*Mgl*(
2891  Mt*(785 + 6*lmMst1*(85 - 42*lmMst2) - 438*lmMst2 + 252*pow2(lmMst2)) -
2892  Mst2*s2t*(49 - 84*lmMst2 + lmMst1*(84 - 36*lmMst2*(-1 + xDR2DRMOD)) +
2893  36*(-1 + xDR2DRMOD)*pow2(lmMst2))) + (Mt*(193 + 474*lmMst2 - 6*lmMst1*(
2894  67 + 42*lmMst2) + 252*pow2(lmMst2)) - Mst2*s2t*(1 + 3*lmMst2*(-37 + 6*
2895  xDR2DRMOD) - 3*lmMst1*(-37 + 6*lmMst2*(-12 + xDR2DRMOD) + 6*xDR2DRMOD)
2896  - 81*pow2(lmMst1) + 9*(-15 + 2*xDR2DRMOD)*pow2(lmMst2)))*pow2(Mgl))*
2897  pow2(MuSUSY) + Mgl*MuSUSY*Tbeta*(8*Dmglst2*(36*(-1 + 3*lmMst1 - 3*
2898  lmMst2)*Mst2*s2t*pow2(Mt) - 3*Mt*(50 + lmMst1*(51 - 18*lmMst2) - 51*
2899  lmMst2 + 18*pow2(lmMst2))*pow2(Mst2)*pow2(s2t) + 4*(7 - 381*lmMst2 +
2900  lmMst1*(327 + 72*lmMst2 - 81*lmMt) + 54*lmMt + 81*lmMst2*lmMt - 72*
2901  pow2(lmMst2))*pow3(Mt) + 2*(1 + 3*lmMst1 - 3*lmMst2)*pow3(Mst2)*pow3(
2902  s2t)) - Mgl*(-144*Mst2*s2t*(-lmMst1 + lmMst2 - 2*lmMst1*lmMst2 + pow2(
2903  lmMst1) + pow2(lmMst2))*pow2(Mt) + 24*Mt*(1 + 33*lmMst2 - 3*lmMst1*(11
2904  + 6*lmMst2) + 18*pow2(lmMst2))*pow2(Mst2)*pow2(s2t) + 32*(83 + 3*
2905  lmMst1*(29 + 12*lmMst2 - 9*lmMt) + 9*lmMt + 3*lmMst2*(-32 + 9*lmMt) -
2906  36*pow2(lmMst2))*pow3(Mt) + (5 + lmMst1*(6 - 288*lmMst2) - 6*lmMst2 +
2907  144*(pow2(lmMst1) + pow2(lmMst2)))*pow3(Mst2)*pow3(s2t))) + 2*xDmglst2*
2908  pow2(Dmglst2)*(-3*Mst2*Mt*pow2(s2t)*(2*Mst2*MuSUSY*Tbeta*(355 + 6*
2909  lmMst2 - 6*lmMst1*(1 + 6*lmMst2) + 36*pow2(lmMst2)) + 2*(85 + 60*lmMst2
2910  + 12*lmMst1*(-5 + 3*lmMst2) - 36*pow2(lmMst2))*pow2(MuSUSY) + 5*(-43 +
2911  60*lmMst1 - 60*lmMst2)*pow2(Mst2)*(-1 + pow2(Sbeta))*pow2(Sbeta)) +
2912  MuSUSY*(2*s2t*pow2(Mt)*(MuSUSY*(5002 + 84*lmMst1*(7 - 6*lmMst2) - 444*
2913  lmMst2 + 504*pow2(lmMst2)) + 3*Mst2*Tbeta*(347 - 430*pow2(Sbeta) + 120*
2914  (lmMst1 - lmMst2)*(-4 + 5*pow2(Sbeta)))) + Tbeta*(8*(412 - 6*lmMst1*(
2915  176 + 42*lmMst2 - 39*lmMt) + 9*lmMst2*(147 - 26*lmMt) - 267*lmMt + 252*
2916  pow2(lmMst2))*pow3(Mt) + 12*(1 - 6*lmMst1 + 6*lmMst2)*pow3(Mst2)*pow3(
2917  s2t))))))*pow8(Mst1) - (7*Mst2*threeLoopFlag*z2*pow2(Al4p)*(300*
2918  xDmsqst2*pow2(Dmsqst2)*pow2(Mgl)*(3*s2t*(Mt*pow2(MuSUSY)*(6*Mst2*(-144*
2919  (3 + lmMst1 - lmMst2)*Mt + (209 + 18*lmMst1 - 18*lmMst2)*Mst2*s2t)*
2920  pow2(Mst1) + 8*(421 + 54*lmMst1 - 54*lmMst2)*s2t*pow4(Mst1) + 108*s2t*
2921  pow4(Mst2)) + 27*s2t*((51 - 6*lmMst1 + 6*lmMst2)*Mt + 2*(11 + 10*lmMst1
2922  - 10*lmMst2)*Mst2*s2t)*(-1 + pow2(Sbeta))*pow2(Sbeta)*pow6(Mst1)) -
2923  MuSUSY*Tbeta*(9*Mst2*pow2(Mst1)*(-418*Mst2*s2t*pow2(Mt) - 216*(3 +
2924  lmMst1 - lmMst2)*Mt*pow2(Mst2)*pow2(s2t) + 288*(-2 + lmMst1 - 2*lmMst2
2925  + lmMt)*pow3(Mt) + (191 + 18*lmMst1 - 18*lmMst2)*pow3(Mst2)*pow3(s2t))
2926  + 3*s2t*(-1296*(1 + lmMst1 - lmMst2)*Mst2*Mt*s2t - 2696*pow2(Mt) + (
2927  1057 + 162*lmMst1 - 162*lmMst2)*pow2(Mst2)*pow2(s2t))*pow4(Mst1) +
2928  4180*pow3(s2t)*pow6(Mst1) + 162*(-4*s2t*pow2(Mt)*pow4(Mst2) + pow3(s2t)
2929  *pow6(Mst2)))) - 3240*Mst2*MuSUSY*xDR2DRMOD*(Mgl*(Tbeta*(64*Mt*pow2(
2930  Mst1)*(-3*(Dmglst2 + 3*Dmglst2*lmMst2 + Mgl + lmMst2*Mgl)*pow2(Mst2)*
2931  pow2(s2t)*(pow2(Mst1)*pow2(Mst2) + pow4(Mst1) + pow4(Mst2)) + 4*pow2(
2932  Mt)*(-(Dmglst2*(7 + lmMst2)*pow2(Mst1)*pow2(Mst2)) - 2*Dmglst2*(11 + 5*
2933  lmMst2)*pow4(Mst1) + Dmglst2*(-1 + lmMst2)*pow4(Mst2) + (1 + lmMst2)*
2934  Mgl*(3*pow2(Mst1)*pow2(Mst2) + 6*pow4(Mst1) + pow4(Mst2)))) + (16*(7*
2935  Dmglst2 - 13*Mgl)*s2t*(pow2(Mst1) - pow2(Mst2))*pow2(Mt) - pow3(s2t)*(
2936  8*(Dmglst2*(7*lmMst1 - 15*lmMst2) + (-4 - 13*lmMst1 + 9*lmMst2)*Mgl)*
2937  pow2(Mst1)*pow2(Mst2) + 4*(7*Dmglst2 - 13*Mgl)*(pow4(Mst1) - pow4(Mst2)
2938  )))*pow5(Mst2)) + Mt*MuSUSY*s2t*(256*(Dmglst2 + 3*Dmglst2*lmMst2 + Mgl
2939  + lmMst2*Mgl)*Mt*pow2(Mst1)*(2*pow2(Mst1)*pow2(Mst2) + 3*pow4(Mst1) +
2940  pow4(Mst2)) - 8*Mst2*s2t*(-2*(Dmglst2*(7*lmMst1 - 15*lmMst2) + (-4 -
2941  13*lmMst1 + 9*lmMst2)*Mgl)*(pow2(Mst1) + pow2(Mst2))*pow4(Mst1) + (
2942  Dmglst2*(7 - 14*lmMst1 + 30*lmMst2) + (-5 + 26*lmMst1 - 18*lmMst2)*Mgl)
2943  *pow2(Mst1)*pow4(Mst2) + (7*Dmglst2 - 13*Mgl)*pow6(Mst2)))) - xDmglst2*
2944  pow2(Dmglst2)*(Tbeta*(64*Mt*pow2(Mst1)*(3*pow2(Mst2)*pow2(s2t)*((-1 +
2945  6*lmMst2)*pow2(Mst2)*(pow2(Mst1) + pow2(Mst2)) + (1 + 3*lmMst2)*pow4(
2946  Mst1)) + 4*pow2(Mt)*(-(lmMst2*pow2(Mst1)*pow2(Mst2)) + 2*(11 + 5*
2947  lmMst2)*pow4(Mst1) - (-2 + lmMst2)*pow4(Mst2))) + (-432*s2t*(pow2(Mst1)
2948  - pow2(Mst2))*pow2(Mt) + 9*pow3(s2t)*((8*(8 + 27*lmMst1 - 39*lmMst2)*
2949  pow2(Mst1)*pow2(Mst2))/9. + 12*pow4(Mst1) - 12*pow4(Mst2)))*pow5(Mst2))
2950  + 8*Mt*MuSUSY*s2t*(2*(-32*(-1 + 6*lmMst2)*Mt + (-8 - 27*lmMst1 + 39*
2951  lmMst2)*Mst2*s2t)*pow2(Mst2)*pow4(Mst1) + (32*(1 - 6*lmMst2)*Mt + (11 -
2952  54*lmMst1 + 78*lmMst2)*Mst2*s2t)*pow2(Mst1)*pow4(Mst2) - 2*(48*(1 + 3*
2953  lmMst2)*Mt + (7*lmMst1 - 15*lmMst2)*Mst2*s2t)*pow6(Mst1) + 27*s2t*pow7(
2954  Mst2)))) + Mgl*(4*pow2(Mst1)*pow2(Mt)*pow2(MuSUSY)*(-(Dmglst2*Mst2*(27*
2955  pow2(Mst2)*(7680*(5 + 6*lmMst2)*Mst2*Mt - 14400*Dmsqst2*(2 + 3*lmMst1 -
2956  3*lmMst2)*s2t + (173947 - 25080*lmMst1 + 68760*lmMst2)*s2t*pow2(Mst2))
2957  + 36*pow2(Mst1)*(30*(3643 - 120*lmMst1 + 3192*lmMst2)*Mst2*Mt + 10800*
2958  Dmsqst2*(1 - 9*lmMst1 + 9*lmMst2)*s2t + (364291 - 88560*lmMst1 +
2959  147960*lmMst2)*s2t*pow2(Mst2)) + 2*(15057833 - 4014360*lmMst1 +
2960  5563080*lmMst2)*s2t*pow4(Mst1))) + 3*Mgl*(-60*Mst2*pow2(Mst1)*(3*(-353
2961  + 72*lmMst1 + 696*lmMst2)*Mst2*Mt + 2160*Dmsqst2*(5 + 3*lmMst1 - 3*
2962  lmMst2)*s2t + 2*(3937 + 2988*lmMst1 - 2232*lmMst2)*s2t*pow2(Mst2)) -
2963  45*(64*(53 + 24*lmMst2)*Mst2*Mt + 2880*Dmsqst2*(2 + lmMst1 - lmMst2)*
2964  s2t + 3*(2269 + 664*lmMst1 - 56*lmMst2)*s2t*pow2(Mst2))*pow3(Mst2) + 2*
2965  (15*(38401 + 1080*lmMst1 - 7992*lmMst2)*Mt + (-266863 - 396360*lmMst1 +
2966  346680*lmMst2)*Mst2*s2t)*pow4(Mst1))) - 2*Mt*pow2(s2t)*(300*Dmsqst2*(
2967  162*Dmglst2*pow2(Mst2)*(4*pow2(MuSUSY)*(3*(2 + lmMst1 - lmMst2)*pow2(
2968  Mst1)*pow2(Mst2) + (3 + 8*lmMst1 - 8*lmMst2)*pow4(Mst1) + pow4(Mst2)) -
2969  (-93 + 10*lmMst1 - 10*lmMst2)*(-1 + pow2(Sbeta))*pow2(Sbeta)*pow6(Mst1)
2970  ) + Mgl*pow2(MuSUSY)*(9*(1097 + 72*(lmMst1 - lmMst2)*(-1 + shiftst1))*
2971  pow2(Mst2)*pow4(Mst1) + 27*(53 + 12*(-1 + 2*lmMst1 - 2*lmMst2)*
2972  shiftst1)*pow2(Mst1)*pow4(Mst2) + (20701 + 648*(lmMst1 - lmMst2)*(-1 +
2973  shiftst1))*pow6(Mst1) - 324*(1 + shiftst1)*pow6(Mst2))) - pow2(Mst2)*
2974  pow2(MuSUSY)*(4*Dmglst2*(162*(6803 - 1810*lmMst1 + 2670*lmMst2)*pow2(
2975  Mst2)*pow4(Mst1) - 135*(648*lmMst1 - 7*(233 + 240*lmMst2))*pow2(Mst1)*
2976  pow4(Mst2) + (4256978 - 615600*lmMst1 + 754920*lmMst2)*pow6(Mst1) -
2977  22680*pow6(Mst2)) + 3*Mgl*(-6*(533629 - 1080*shiftst3 + 180*lmMst1*(-5
2978  + 60*shiftst1 + 12*shiftst3) - 180*lmMst2*(-1 + 60*shiftst1 + 12*
2979  shiftst3))*pow2(Mst2)*pow4(Mst1) - 90*(5597 - 360*shiftst1 - 72*
2980  shiftst3 - 24*lmMst2*(46 + 30*shiftst1 + 3*shiftst3) + 12*lmMst1*(47 +
2981  60*shiftst1 + 6*shiftst3))*pow2(Mst1)*pow4(Mst2) - (6649153 - 6480*
2982  shiftst3 + 540*lmMst1*(-151 + 120*shiftst1 + 36*shiftst3) - 540*lmMst2*
2983  (-143 + 120*shiftst1 + 36*shiftst3))*pow6(Mst1) + 1080*(19 + 30*
2984  shiftst1 + 3*shiftst3)*pow6(Mst2)))) + 3*Mgl*MuSUSY*Tbeta*(3*pow3(Mst2)
2985  *(-2*(623599 + 65160*lmMst1 - 134280*lmMst2)*Mst2*s2t*pow2(Mt) + 15*(
2986  11075 + 17928*lmMst1 - 17352*lmMst2)*Mt*pow2(Mst2)*pow2(s2t) + 64*(
2987  41936 - 7245*lmMst1 + 19665*lmMst2 - 720*lmMt)*pow3(Mt) + 4*(224837 -
2988  4680*lmMst1 + 8370*lmMst2 + 2700*shiftst1)*pow3(Mst2)*pow3(s2t))*pow4(
2989  Mst1) + 9*pow2(Mst1)*(-2*Mst2*s2t*(1367 + 13560*lmMst1 - 36600*lmMst2 +
2990  7200*shiftst1)*pow2(Mt) + 45*(2269 + 664*lmMst1 - 56*lmMst2)*Mt*pow2(
2991  Mst2)*pow2(s2t) + 4*(66773 - 9960*lmMst1 + 45480*lmMst2 - 3840*lmMt)*
2992  pow3(Mt) + 10*(5825 + 36*shiftst3 + 12*lmMst1*(47 + 60*shiftst1 + 3*
2993  shiftst3) - 12*lmMst2*(92 + 60*shiftst1 + 3*shiftst3))*pow3(Mst2)*pow3(
2994  s2t))*pow5(Mst2) + Mst2*(-4*(2580913 + 203040*lmMst1 - 306720*lmMst2)*
2995  Mst2*s2t*pow2(Mt) + 6*(30643 + 217080*lmMst1 - 212760*lmMst2)*Mt*pow2(
2996  Mst2)*pow2(s2t) + 16*(1077991 - 184140*lmMst1 + 400140*lmMst2 - 8640*
2997  lmMt)*pow3(Mt) + (3447379 - 76140*lmMst1 + 76140*lmMst2)*pow3(Mst2)*
2998  pow3(s2t))*pow6(Mst1) - 100*Dmsqst2*(27*pow2(Mst1)*pow3(Mst2)*(2*Mst2*
2999  s2t*(53 + 24*shiftst1)*pow2(Mt) - 288*Mt*pow2(Mst2)*pow2(s2t) + 192*
3000  lmMt*pow3(Mt) - 65*pow3(Mst2)*pow3(s2t) + 24*lmMst1*(-6*Mt*pow2(Mst2)*
3001  pow2(s2t) + 8*pow3(Mt) - shiftst1*pow3(Mst2)*pow3(s2t)) - 24*lmMst2*(-
3002  6*Mt*pow2(Mst2)*pow2(s2t) + 16*pow3(Mt) - shiftst1*pow3(Mst2)*pow3(s2t)
3003  )) - 18*Mst2*(-361*Mst2*s2t*pow2(Mt) + 216*(3 + 2*lmMst1 - 2*lmMst2)*
3004  Mt*pow2(Mst2)*pow2(s2t) - 576*(-1 + lmMst1 - 2*lmMst2 + lmMt)*pow3(Mt)
3005  + (469 - 36*lmMst1 + 36*lmMst2 + 18*shiftst1)*pow3(Mst2)*pow3(s2t))*
3006  pow4(Mst1) + s2t*(2*(-972*(5 + 4*lmMst1 - 4*lmMst2)*Mst2*Mt*s2t + 4057*
3007  pow2(Mt) - 5414*pow2(Mst2)*pow2(s2t))*pow6(Mst1) + 324*(1 + shiftst1)*(
3008  -4*pow2(Mt) + pow2(Mst2)*pow2(s2t))*pow6(Mst2))) - 1080*s2t*(19 + 30*
3009  shiftst1 + 3*shiftst3)*(-4*pow2(Mt) + pow2(Mst2)*pow2(s2t))*pow8(Mst2))
3010  - Dmglst2*Mst2*MuSUSY*Tbeta*(27*(pow2(Mst2)*(-32*(19579 + 1770*lmMst1 +
3011  12630*lmMst2)*Mst2*s2t*pow2(Mt) + (-935323 + 279000*lmMst1 - 385560*
3012  lmMst2)*Mt*pow2(Mst2)*pow2(s2t) + 32*(67843 - 10050*lmMst1 + 17490*
3013  lmMst2 - 7560*lmMt)*pow3(Mt) + 4*(32663 - 7620*lmMst1 + 7620*lmMst2)*
3014  pow3(Mst2)*pow3(s2t))*pow4(Mst1) + pow2(Mst1)*(32*(-4429 + 270*lmMst1 -
3015  8910*lmMst2)*Mst2*s2t*pow2(Mt) + 3*(-173947 + 25080*lmMst1 - 68760*
3016  lmMst2)*Mt*pow2(Mst2)*pow2(s2t) - 60*(-3245 + 1672*lmMst1 - 1448*lmMst2
3017  + 1888*lmMt)*pow3(Mt) + 20*(1799 - 648*lmMst1 + 1680*lmMst2)*pow3(Mst2)
3018  *pow3(s2t))*pow4(Mst2)) + 2*(-72*(510139 + 44280*lmMst1 + 76680*lmMst2)
3019  *Mst2*s2t*pow2(Mt) + 15*(-1700119 + 484056*lmMst1 - 579960*lmMst2)*Mt*
3020  pow2(Mst2)*pow2(s2t) + 8*(13463149 - 1492020*lmMst1 + 2713500*lmMst2 -
3021  625320*lmMt)*pow3(Mt) + 8*(788723 - 80595*lmMst1 + 80595*lmMst2)*pow3(
3022  Mst2)*pow3(s2t))*pow6(Mst1) + 97200*Dmsqst2*(2*(pow2(Mst1)*pow2(Mst2)*(
3023  20*Mst2*s2t*pow2(Mt) + 6*(2 + 3*lmMst1 - 3*lmMst2)*Mt*pow2(Mst2)*pow2(
3024  s2t) + 8*(8 + 6*lmMst2 - 3*(lmMst1 + lmMt))*pow3(Mt) - (5 + 3*lmMst1 -
3025  3*lmMst2)*pow3(Mst2)*pow3(s2t)) + (36*Mst2*s2t*pow2(Mt) + 18*(-1 + 2*
3026  lmMst1 - 2*lmMst2)*Mt*pow2(Mst2)*pow2(s2t) - 80*(-3 + lmMst1 - 2*lmMst2
3027  + lmMt)*pow3(Mt) + (3 - 5*lmMst1 + 5*lmMst2)*pow3(Mst2)*pow3(s2t))*
3028  pow4(Mst1)) + 8*s2t*pow2(Mt)*pow5(Mst2) + (6*(-17 + 12*lmMst1 - 12*
3029  lmMst2)*Mt + 13*Mst2*s2t)*pow2(s2t)*pow6(Mst1) - 2*pow3(s2t)*pow7(Mst2)
3030  ) - 90720*(-4*s2t*pow2(Mt)*pow7(Mst2) + pow3(s2t)*pow9(Mst2))))))/3. +
3031  Al4p*z2*(22680*MuSUSY*twoLoopFlag*pow2(Mst1)*(Mgl*pow2(Mst2)*(2*Mt*
3032  MuSUSY*s2t*(4*Mt*((9*Dmglst2 + Mgl)*pow2(Mst1)*pow2(Mst2) + (13*Dmglst2
3033  + Mgl)*pow4(Mst1) + (5*Dmglst2 + Mgl)*pow4(Mst2)) - Mst2*s2t*(Mgl*pow4(
3034  Mst2) + 4*Dmglst2*(pow2(Mst1)*pow2(Mst2) + pow4(Mst1) + pow4(Mst2)))) +
3035  Tbeta*(16*pow3(Mt)*(-2*Mgl*pow2(Mst1)*pow2(Mst2) + 3*(Dmglst2 - Mgl)*
3036  pow4(Mst1) - (Dmglst2 + Mgl)*pow4(Mst2)) - 6*Mt*pow2(Mst2)*pow2(s2t)*(
3037  4*Dmglst2*pow2(Mst1)*(pow2(Mst1) + pow2(Mst2)) + (5*Dmglst2 + Mgl)*
3038  pow4(Mst2)) + (4*Dmglst2*pow2(Mst2) + Mgl*(-pow2(Mst1) + pow2(Mst2)))*
3039  pow3(s2t)*pow5(Mst2))) + 4*Mt*xMst*(xDmglst2*pow2(Dmglst2)*(82*Mt*
3040  MuSUSY*s2t - 56*Tbeta*pow2(Mt) - 3*Mst2*(MuSUSY + 5*Mst2*Tbeta)*pow2(
3041  s2t)) + 2*Mgl*(Mgl*Mt*(MuSUSY*s2t - 8*Mt*Tbeta) + Dmglst2*(17*Mt*
3042  MuSUSY*s2t + 16*Tbeta*pow2(Mt) - Mst2*(MuSUSY + 3*Mst2*Tbeta)*pow2(s2t)
3043  )))*pow6(Mst1)) + 6*xDmglst2*pow2(Dmglst2)*pow2(Mst2)*(7560*MuSUSY*
3044  twoLoopFlag*pow2(Mst1)*(-6*Mst2*Mt*MuSUSY*pow2(s2t)*(pow2(Mst1)*pow2(
3045  Mst2) + pow4(Mst1) + pow4(Mst2)) - 8*Tbeta*pow3(Mt)*(pow2(Mst1)*pow2(
3046  Mst2) + 4*pow4(Mst1) + pow4(Mst2)) - 3*Mt*Tbeta*pow2(Mst2)*pow2(s2t)*(
3047  10*pow2(Mst1)*(pow2(Mst1) + pow2(Mst2)) + 11*pow4(Mst2)) + 4*MuSUSY*
3048  s2t*pow2(Mt)*(21*pow2(Mst1)*pow2(Mst2) + 31*pow4(Mst1) + 11*pow4(Mst2))
3049  + 3*Tbeta*pow3(s2t)*pow7(Mst2)) + (Al4p*threeLoopFlag*(28*Mt*(pow2(
3050  MuSUSY)*(-9*pow2(Mst1)*pow2(Mst2)*(43200*Dmsqst2*(2 + 3*lmMst1 - 3*
3051  lmMst2)*Mt*s2t - (897737 + 47880*lmMst1 + 238680*lmMst2)*Mt*s2t*pow2(
3052  Mst2) - 48*Mst2*(4*(617 + 2040*lmMst2)*pow2(Mt) + 675*Dmsqst2*(2 +
3053  lmMst1 - lmMst2)*pow2(s2t)) + (88931 + 33120*lmMst1 + 13320*lmMst2)*
3054  pow2(s2t)*pow3(Mst2)) + 6*(Mt*s2t*(64800*Dmsqst2*(1 - 9*lmMst1 + 9*
3055  lmMst2) + (1263161 - 156600*lmMst1 + 979560*lmMst2)*pow2(Mst2)) + 6*
3056  Mst2*((122051 + 1800*lmMst1 + 274680*lmMst2)*pow2(Mt) + 2700*Dmsqst2*(3
3057  + 8*lmMst1 - 8*lmMst2)*pow2(s2t)) - 5*(21223 + 13230*lmMst1 + 702*
3058  lmMst2)*pow2(s2t)*pow3(Mst2))*pow4(Mst1) + 19440*(5*Dmsqst2 - 2*pow2(
3059  Mst2))*pow2(s2t)*pow5(Mst2)) + 2*s2t*((15057833 - 4014360*lmMst1 +
3060  5563080*lmMst2)*Mt*pow2(MuSUSY) - 2*Mst2*s2t*((2128489 - 307800*lmMst1
3061  + 377460*lmMst2)*pow2(MuSUSY) + 6075*Dmsqst2*(-93 + 10*lmMst1 - 10*
3062  lmMst2)*(-1 + pow2(Sbeta))*pow2(Sbeta)))*pow6(Mst1)) + MuSUSY*Tbeta*(-
3063  3*pow2(Mst2)*(288*(434369 - 7875*lmMst1 + 320355*lmMst2)*Mst2*s2t*pow2(
3064  Mt) - 21*(166889 + 456840*lmMst1 - 1243080*lmMst2)*Mt*pow2(Mst2)*pow2(
3065  s2t) + 64*(3231296 - 460215*lmMst1 + 1100925*lmMst2 - 515970*lmMt)*
3066  pow3(Mt) + 14*(54563 - 32940*lmMst1 + 32940*lmMst2)*pow3(Mst2)*pow3(
3067  s2t))*pow4(Mst1) - 9*pow2(Mst1)*(72*(126587 - 1820*lmMst1 + 230300*
3068  lmMst2)*Mst2*s2t*pow2(Mt) + 21*(897737 + 47880*lmMst1 + 238680*lmMst2)*
3069  Mt*pow2(Mst2)*pow2(s2t) + 4*(2456929 - 335160*lmMst1 + 1408680*lmMst2 -
3070  408240*lmMt)*pow3(Mt) - 14*(84611 + 33120*lmMst1 + 13320*lmMst2)*pow3(
3071  Mst2)*pow3(s2t))*pow4(Mst2) + 14*(-72*(510139 + 44280*lmMst1 + 76680*
3072  lmMst2)*Mst2*s2t*pow2(Mt) + 15*(-1700119 + 484056*lmMst1 - 579960*
3073  lmMst2)*Mt*pow2(Mst2)*pow2(s2t) + 8*(13463149 - 1492020*lmMst1 +
3074  2713500*lmMst2 - 625320*lmMt)*pow3(Mt) + 8*(788723 - 80595*lmMst1 +
3075  80595*lmMst2)*pow3(Mst2)*pow3(s2t))*pow6(Mst1) + 680400*Dmsqst2*(2*(
3076  pow2(Mst1)*pow2(Mst2)*(20*Mst2*s2t*pow2(Mt) + 6*(2 + 3*lmMst1 - 3*
3077  lmMst2)*Mt*pow2(Mst2)*pow2(s2t) + 8*(8 + 6*lmMst2 - 3*(lmMst1 + lmMt))*
3078  pow3(Mt) - (5 + 3*lmMst1 - 3*lmMst2)*pow3(Mst2)*pow3(s2t)) + (36*Mst2*
3079  s2t*pow2(Mt) + 18*(-1 + 2*lmMst1 - 2*lmMst2)*Mt*pow2(Mst2)*pow2(s2t) -
3080  80*(-3 + lmMst1 - 2*lmMst2 + lmMt)*pow3(Mt) + (3 - 5*lmMst1 + 5*lmMst2)
3081  *pow3(Mst2)*pow3(s2t))*pow4(Mst1)) + 8*s2t*pow2(Mt)*pow5(Mst2) + (6*(-
3082  17 + 12*lmMst1 - 12*lmMst2)*Mt + 13*Mst2*s2t)*pow2(s2t)*pow6(Mst1) - 2*
3083  pow3(s2t)*pow7(Mst2)) + 544320*(-4*s2t*pow2(Mt)*pow7(Mst2) + pow3(s2t)*
3084  pow9(Mst2)))))/18.)))/(68040.*Tbeta*pow2(Mgl)*pow2(Mst1)*pow7(Mst2))) -
3085  (threeLoopFlag*pow2(Al4p)*(11664*MuSUSY*(-(s2t*pow3(Mt)*(
3086  302.29104938271604 + (8*D3)/9. - (8*DN)/9. + (614*lmMst1)/27. + (32*
3087  lmMt)/3. + (124*pow2(lmMst1))/9. - (2*lmMst2*(-1901 + 6*lmMst1 + 117*
3088  pow2(lmMst1)))/27. + (46 + (32*lmMst1)/9.)*pow2(lmMst2) + (32*pow3(
3089  lmMst1))/9. + (14*pow3(lmMst2))/9. + ((599.6859861506036 - (99165049*
3090  lmMst1)/198450. + lmMst2*(713.9201259763164 - (57994*lmMst1)/945. - (
3091  350*pow2(lmMst1))/9.) - (90913*pow2(lmMst1))/945. + (200.24021164021164
3092  - (286*lmMst1)/9.)*pow2(lmMst2) + (32*lmMt*(1 + 4*lmMst2 - 2*lmMst1*(2
3093  + lmMst2) + pow2(lmMst1) + pow2(lmMst2)))/3. + (26*pow3(lmMst1))/27. +
3094  (1882*pow3(lmMst2))/27. + (Dmglst2*(311.41128771790903 - (32*B4)/9. + (
3095  32*D3)/9. - (16*DN)/9. + (14926634*lmMst1)/19845. + (19352*pow2(lmMst1)
3096  )/189. + (2*lmMst2*(2917823 - 3813600*lmMst1 + 97020*pow2(lmMst1)))/
3097  19845. + (8*(8677 - 5439*lmMst1)*pow2(lmMst2))/189. - (64*lmMt*(4 + 6*
3098  lmMst2 - 2*lmMst1*(3 + lmMst2) + pow2(lmMst1) + pow2(lmMst2)))/3. - (8*
3099  pow3(lmMst1))/9. + (664*pow3(lmMst2))/3.))/Mgl)*pow4(Mst1))/pow4(Mst2)
3100  + ((-2*(2*Dmglst2*(-52 + 2*(51 + 16*lmMst1)*lmMst2 + 59*pow2(lmMst2)) +
3101  Mgl*(71 + 122*lmMst2 + 32*lmMst1*(1 + lmMst2) + 59*pow2(lmMst2)))*pow2(
3102  Mst2))/(9.*pow2(Mst1)) + (4*Dmglst2*(12454 - 120*B4 + 120*D3 - 60*DN +
3103  690*lmMst1 + 345*pow2(lmMst1) - 5*lmMst2*(-3121 + 42*lmMst1 + 96*pow2(
3104  lmMst1)) + (3630 - 480*lmMst1)*pow2(lmMst2) + 960*pow3(lmMst2)))/135. -
3105  (64*Dmglst2*(691875*Dmsqst2 - pow2(Mst1)*(1928479 - 13500*B4 + 13500*D3
3106  - 6750*DN + 635385*lmMst1 + 81000*(-2 + lmMst1 - lmMst2)*lmMt + 450*
3107  pow2(lmMst1) - 15*lmMst2*(-153166 + 17835*lmMst1 + 3375*pow2(lmMst1)) -
3108  225*(-2627 + 1695*lmMst1)*pow2(lmMst2) - 1125*pow3(lmMst1) + 433125*
3109  pow3(lmMst2))) - 5*Mgl*(13500*Dmsqst2*(367 + 32*lmMst1 - 80*lmMst2) +
3110  pow2(Mst1)*(19425643 + 518400*lmMt + 240*lmMst2*(82997 + 4320*lmMt) -
3111  3600*(683 + 96*lmMst2)*pow2(lmMst1) + 5684400*pow2(lmMst2) - 240*
3112  lmMst1*(42047 + 4800*lmMst2 + 4320*lmMt + 6390*pow2(lmMst2)) - 295200*
3113  pow3(lmMst1) + 2174400*pow3(lmMst2))))/(243000.*pow2(Mst2)) + (32*(1 +
3114  lmMst2)*(4*Dmglst2*lmMst2 + Mgl + lmMst2*Mgl)*pow4(Mst2))/(9.*pow4(
3115  Mst1)) - (100*Dmsqst2*Mgl*(9*(40*OepS2 - 27*(127 + 30*lmMst1 - 30*
3116  lmMst2)*S2)*pow2(Mst1)*pow2(Mst2) + (424*OepS2 - 27*(1283 + 318*lmMst1
3117  - 318*lmMst2)*S2)*pow4(Mst1) + 27*(8*OepS2 - 81*(9 + 2*lmMst1 - 2*
3118  lmMst2)*S2)*pow4(Mst2)) + pow2(Mst2)*(-24*Dmglst2*(15*(400*OepS2 - 81*(
3119  139 + 100*lmMst1 - 100*lmMst2)*S2)*pow2(Mst1)*pow2(Mst2) + (36760*OepS2
3120  - 54*(17269 + 13785*lmMst1 - 13785*lmMst2)*S2)*pow4(Mst1) - 153819*S2*
3121  pow4(Mst2)) + Mgl*(3*(69400*OepS2 - 81*(17113 + 17350*lmMst1 - 17350*
3122  lmMst2)*S2)*pow2(Mst1)*pow2(Mst2) + 4*(120620*OepS2 - 27*(138286 +
3123  90465*lmMst1 - 90465*lmMst2)*S2)*pow4(Mst1) + 27*(2120*OepS2 - 81*(-141
3124  + 530*lmMst1 - 530*lmMst2)*S2)*pow4(Mst2))))/(7290.*pow6(Mst2)))/Mgl -
3125  (Dmsqst2*(6.666666666666667 - (40*lmMst2)/3. + (80*Dmglst2)/Mgl - ((
3126  83.94493827160494 - (356*lmMst1)/15. + (4*(89 + 60*lmMst1)*lmMst2)/15.
3127  + (20*Dmglst2*(-65 + 2*lmMst1 - 2*lmMst2))/(
3128  3.*Mgl) - 8*(pow2(lmMst1) + pow2(lmMst2)))*pow4(Mst1))/pow4(Mst2) - ((
3129  87.53310385647498 - (941812*lmMst1)/19845. + (47.45840262030738 + (484*
3130  lmMst1)/21.)*lmMst2 - (242*(pow2(lmMst1) + pow2(lmMst2)))/21.)*pow6(
3131  Mst1))/pow6(Mst2)))/pow2(Mst1))) + Mt*(((1 - 2*lmMst2)*s2t*pow2(Mst2)*(
3132  -2*shiftst3*pow2(Mt) + 5*shiftst1*pow2(Mst2)*pow2(s2t)))/(3.*pow2(Mst1)
3133  ) - pow3(s2t)*(((-1 + 2*lmMst2)*shiftst3*pow2(Mst2)*((-1 - lmMst1 +
3134  lmMst2)*pow2(Mst1) + pow2(Mst2)))/(6.*pow2(Mst1)) - (pow2(Mst2)*(21005
3135  + 1440*B4 - 144*D3 + 72*DN + 21216*lmMst1 + 1908*pow2(lmMst1) - 12*
3136  lmMst2*(2950 - 2040*lmMst1 + 117*pow2(lmMst1)) + 108*(-283 + 98*lmMst1)
3137  *pow2(lmMst2) + 576*pow3(lmMst1) - 9756*pow3(lmMst2) + ((-1080*Dmsqst2*
3138  (12*Dmglst2 + Mgl - 2*lmMst2*Mgl))/pow2(Mst1) - 2*Dmglst2*(14987 - 432*
3139  B4 + 576*D3 - 360*DN + 4752*lmMst1 - 1404*pow2(lmMst1) + 144*lmMst2*(-
3140  81 - 124*lmMst1 + 8*pow2(lmMst1)) - 36*(-439 + 246*lmMst1)*pow2(lmMst2)
3141  + 7704*pow3(lmMst2)))/Mgl))/648. - ((96.95148419197191 - (61388401*
3142  lmMst1)/793800. + lmMst2*(73.69595742000504 + (302047*lmMst1)/1890. - (
3143  257*pow2(lmMst1))/9.) - (76483*pow2(lmMst1))/945. - (78.87883597883598
3144  - 61*lmMst1)*pow2(lmMst2) - (35*pow3(lmMst1))/
3145  27. - (841*pow3(lmMst2))/27. - (Dmglst2*(203.8689796251638 + (2171669*
3146  lmMst2)/119070. + ((433 + 6552*lmMst2)*pow2(lmMst1))/189. + (1987*pow2(
3147  lmMst2))/189. - (lmMst1*(2740559 + 1524600*lmMst2 + 7514640*pow2(
3148  lmMst2)))/119070. - (56*pow3(lmMst1))/27. + (824*pow3(lmMst2))/27.))/
3149  Mgl)*pow4(Mst1))/pow2(Mst2) - Dmsqst2*(54.49074074074074 + (140*lmMst1)
3150  /9. - (20*(7 + 3*lmMst1)*lmMst2)/9. - (20*Dmglst2*(5 + 2*lmMst1 - 2*
3151  lmMst2))/(3.*Mgl) + (20*pow2(lmMst2))/3. + ((3375*Dmglst2*(55 - 34*
3152  lmMst1 + 34*lmMst2) + Mgl*(97294 - 17235*lmMst2 + 45*lmMst1*(233 + 330*
3153  lmMst2) - 7425*pow2(lmMst1) - 7425*pow2(lmMst2)))*pow2(Mst1))/(2025.*
3154  Mgl*pow2(Mst2)) + ((17.77343371446168 - (452768*lmMst1)/19845. + (
3155  22.815217939027463 + (122*lmMst1)/7.)*lmMst2 + (5*Dmglst2*(419 - 57*
3156  lmMst1 + 57*lmMst2))/(27.*Mgl) - (61*(pow2(lmMst1) + pow2(lmMst2)))/7.)
3157  *pow4(Mst1))/pow4(Mst2)) + ((pow2(Mst1)*(-5*Mgl*(4627751 + 48600*B4 +
3158  5400*D3 - 5400*DN + 1320240*lmMst1 - 662400*pow2(lmMst1) - 30*lmMst2*(
3159  12148 - 76560*lmMst1 + 12105*pow2(lmMst1)) + 2250*(-583 + 438*lmMst1)*
3160  pow2(lmMst2) - 49500*pow3(lmMst1) - 572850*pow3(lmMst2)) + Dmglst2*(
3161  5430043 + 524580*lmMst2 + 900*(-859 + 3690*lmMst2)*pow2(lmMst1) +
3162  1454400*pow2(lmMst2) - 60*lmMst1*(51493 + 24630*lmMst2 + 112950*pow2(
3163  lmMst2)) + 45000*pow3(lmMst1) + 3411000*pow3(lmMst2))))/121500. + ((
3164  Mgl*(119 + 218*lmMst2 + 32*lmMst1*(1 + lmMst2) + 107*pow2(lmMst2)) +
3165  Dmglst2*(-40 + (460 + 64*lmMst1)*lmMst2 + 310*pow2(lmMst2)))*pow4(Mst2)
3166  )/(18.*pow2(Mst1)) + (30*Dmsqst2*Mgl*(18*(40*OepS2 - 27*(59 + 30*lmMst1
3167  - 30*lmMst2)*S2)*pow2(Mst1)*pow2(Mst2) + 4*(208*OepS2 - 27*(347 + 156*
3168  lmMst1 - 156*lmMst2)*S2)*pow4(Mst1) + 27*(8*OepS2 - 81*(-15 + 2*lmMst1
3169  - 2*lmMst2)*S2)*pow4(Mst2)) - pow2(Mst2)*(3*Mgl*(-60*(340*OepS2 - 81*(
3170  424 + 85*lmMst1 - 85*lmMst2)*S2)*pow2(Mst1)*pow2(Mst2) - 35*(788*OepS2
3171  - 27*(2662 + 591*lmMst1 - 591*lmMst2)*S2)*pow4(Mst1) + 27*(-184*OepS2 +
3172  81*(307 + 46*lmMst1 - 46*lmMst2)*S2)*pow4(Mst2)) + 2*Dmglst2*(27*(632*
3173  OepS2 + 9*(16193 - 1422*lmMst1 + 1422*lmMst2)*S2)*pow2(Mst1)*pow2(Mst2)
3174  + 2*(25328*OepS2 + 27*(47051 - 18996*lmMst1 + 18996*lmMst2)*S2)*pow4(
3175  Mst1) + 27*(56*OepS2 - 81*(-1677 + 14*lmMst1 - 14*lmMst2)*S2)*pow4(
3176  Mst2))))/(4374.*pow4(Mst2)) - (8*(1 + lmMst2)*(4*Dmglst2*lmMst2 + Mgl +
3177  lmMst2*Mgl)*pow6(Mst2))/(9.*pow4(Mst1)))/Mgl) + (T1ep*(3*Mgl*(27*pow4(
3178  Mst2)*(-40*Dmsqst2*s2t*pow2(Mt) - 21*Mt*pow2(s2t)*pow3(Mst2) + 28*Mst2*
3179  pow3(Mt) + pow2(Mst2)*(-106*s2t*pow2(Mt) + 20*Dmsqst2*pow3(s2t)) + 46*
3180  pow3(s2t)*pow4(Mst2)) + 3*pow2(Mst1)*pow2(Mst2)*(-600*Dmsqst2*s2t*pow2(
3181  Mt) - 627*Mt*pow2(s2t)*pow3(Mst2) + 1760*Mst2*pow3(Mt) + pow2(Mst2)*(-
3182  3470*s2t*pow2(Mt) + 600*Dmsqst2*pow3(s2t)) + 1700*pow3(s2t)*pow4(Mst2))
3183  + pow4(Mst1)*(-2120*Dmsqst2*s2t*pow2(Mt) - 3198*Mt*pow2(s2t)*pow3(Mst2)
3184  + 16240*Mst2*pow3(Mt) - 4*pow2(Mst2)*(6031*s2t*pow2(Mt) - 520*Dmsqst2*
3185  pow3(s2t)) + 6895*pow3(s2t)*pow4(Mst2))) + Dmglst2*Mst2*(-27*pow2(Mst1)
3186  *pow2(Mst2)*(-800*Mst2*s2t*pow2(Mt) - 907*Mt*pow2(Mst2)*pow2(s2t) +
3187  1984*pow3(Mt) + 316*pow3(Mst2)*pow3(s2t)) + (132336*Mst2*s2t*pow2(Mt) +
3188  71202*Mt*pow2(Mst2)*pow2(s2t) - 259408*pow3(Mt) - 25328*pow3(Mst2)*
3189  pow3(s2t))*pow4(Mst1) - 189*(20*pow3(Mt)*pow4(Mst2) - 15*Mt*pow2(s2t)*
3190  pow6(Mst2) + 4*pow3(s2t)*pow7(Mst2)))))/(729.*Mgl*pow6(Mst2))) + ((-5*
3191  Mt*s2t*shiftst1*((1 - 2*lmMst2)*pow2(Mst2)*(4*pow2(Mst2)*pow2(Mt) - 2*
3192  pow2(Mst1)*(2*pow2(Mt) + (-lmMst1 + lmMst2)*pow2(Mst2)*pow2(s2t)) +
3193  pow2(s2t)*pow4(Mst1)) + Dmsqst2*(3 - 2*lmMst2)*(-4*pow2(Mst1)*pow2(Mt)
3194  + 4*pow2(Mst2)*pow2(Mt) + 2*(lmMst1 - lmMst2)*pow2(Mst1)*pow2(Mst2)*
3195  pow2(s2t) + pow2(s2t)*(pow4(Mst1) - pow4(Mst2)))))/(3.*pow2(Mst2)) + (
3196  pow2(Mt)*(4*pow2(Mt)*(-(Dmglst2*(216*pow2(Mst2)*(97837 + 71580*lmMt -
3197  9920*OepS2 + 43272*S2 - 360*(23 + 8*lmMst2 - 4*lmMt)*pow2(lmMst1) +
3198  720*(97 + 2*lmMt)*pow2(lmMst2) - 8640*pow2(lmMt) - 30*lmMst2*(-2911 +
3199  396*lmMt + 6696*S2 + 144*pow2(lmMt)) + 10*lmMst1*(-6157 + 642*lmMt - 6*
3200  lmMst2*(791 + 48*lmMt) + 20088*S2 + 882*pow2(lmMst2) + 432*pow2(lmMt))
3201  - 5940*pow3(lmMst2))*pow4(Mst1) - 129600*Dmsqst2*((101 - 90*lmMst1 +
3202  177*lmMst2 - 87*lmMt)*pow2(Mst1)*pow2(Mst2) + (497 - 306*lmMst1 + 609*
3203  lmMst2 - 303*lmMt)*pow4(Mst1)) + 135*pow2(Mst1)*(57495 + 45408*lmMt -
3204  1120*OepS2 - 43740*S2 - 8*lmMst2*(-6952 + 588*lmMt + 2835*S2) + 2304*(-
3205  1 + lmMst2)*pow2(lmMst1) + 96*(79 + 48*lmMt)*pow2(lmMst2) + 72*lmMst1*(
3206  -88 + 64*lmMt - 8*lmMst2*(9 + 8*lmMt) + 315*S2 + 164*pow2(lmMst2)) -
3207  14112*pow3(lmMst2))*pow4(Mst2) + 20*(5659217 + 1592460*lmMt - 518816*
3208  OepS2 + 9976392*S2 - 972*(569 + 180*lmMst2 - 126*lmMt)*pow2(lmMst1) +
3209  324*(5353 + 126*lmMt)*pow2(lmMst2) - 186624*pow2(lmMt) + 72*lmMst1*(-
3210  27653 - 3015*lmMt - 18*lmMst2*(689 + 126*lmMt) + 145917*S2 + 2160*pow2(
3211  lmMst2) + 2592*pow2(lmMt)) - 36*lmMst2*(-39031 - 3204*lmMt + 291834*S2
3212  + 5184*pow2(lmMt)) + 1944*pow3(lmMst1) + 17496*pow3(lmMst2))*pow6(Mst1)
3213  - 622080*(-1 + 2*lmMst2 + 3*pow2(lmMst2))*pow6(Mst2))) + 3*Mgl*(48*
3214  pow2(Mst2)*(110219 - 1080*lmMt - 4400*OepS2 + 74034*S2 + 540*(-15 + 4*
3215  lmMt)*pow2(lmMst1) + 810*(121 - 8*lmMt)*pow2(lmMst2) - 135*lmMst1*(337
3216  + lmMst2*(588 - 32*lmMt) - 132*lmMt - 660*S2 + 194*pow2(lmMst2) - 48*
3217  pow2(lmMt)) - 6480*pow2(lmMt) - 405*lmMst2*(31 + 54*lmMt + 220*S2 + 16*
3218  pow2(lmMt)) + 26190*pow3(lmMst2))*pow4(Mst1) + 388800*Dmsqst2*((5 + 2*
3219  lmMst1 - 5*lmMst2 + 3*lmMt)*pow2(Mst1)*pow2(Mst2) + (1 + 6*lmMst1 - 13*
3220  lmMst2 + 7*lmMt)*pow4(Mst1)) + 27*pow2(Mst1)*(56439 - 24000*lmMt -
3221  1120*OepS2 - 25596*S2 - 360*lmMst2*(-12 + 44*lmMt + 63*S2) - 3840*(1 +
3222  lmMst2)*pow2(lmMst1) + 480*(163 - 16*lmMt)*pow2(lmMst2) - 120*lmMst1*(
3223  184 + 8*lmMst2*(57 - 8*lmMt) - 64*lmMt - 189*S2 + 164*pow2(lmMst2)) -
3224  11520*pow2(lmMt) + 23520*pow3(lmMst2))*pow4(Mst2) + 20*(678923 + 19440*
3225  lmMt - 32480*OepS2 + 881712*S2 + 540*(661 - 30*lmMt)*pow2(lmMst2) -
3226  15552*pow2(lmMt) - 108*((457 - 12*lmMst2 - 126*lmMt)*pow2(lmMst1) +
3227  lmMst1*(1841 + lmMst2*(2626 - 24*lmMt) - 420*lmMt - 6090*S2 + 840*pow2(
3228  lmMst2) - 288*pow2(lmMt)) + lmMst2*(619 + 498*lmMt + 6090*S2 + 288*
3229  pow2(lmMt))) + 216*pow3(lmMst1) + 89208*pow3(lmMst2))*pow6(Mst1) +
3230  207360*pow2(1 + lmMst2)*pow6(Mst2))) - 3*pow2(s2t)*(Dmglst2*(9*(195293
3231  + 639360*B4 - 8640*DN - 709200*lmMst1 + 145120*OepS2 - 108*(23989 +
3232  27210*lmMst1 - 27210*lmMst2)*S2 + 60480*pow2(lmMst1) + 720*lmMst2*(2149
3233  - 1296*lmMst1 + 96*pow2(lmMst1)) - 8640*(-101 + 105*lmMst1)*pow2(
3234  lmMst2) + 838080*pow3(lmMst2))*pow4(Mst1)*pow4(Mst2) - 2*pow2(Mst2)*(
3235  15069803 - 2877120*B4 + 38880*DN + 6325200*lmMst1 - 1898720*OepS2 +
3236  108*(525961 + 356010*lmMst1 - 356010*lmMst2)*S2 + 447120*pow2(lmMst1) -
3237  360*lmMst2*(28667 - 5238*lmMst1 + 3024*pow2(lmMst1)) + 38880*(-60 +
3238  157*lmMst1)*pow2(lmMst2) - 155520*pow3(lmMst1) - 4860000*pow3(lmMst2))*
3239  pow6(Mst1) + 583200*Dmsqst2*(40*(1 - lmMst1 + lmMst2)*pow2(Mst2)*pow4(
3240  Mst1) - 4*(2 + 5*lmMst1 - 5*lmMst2)*pow2(Mst1)*pow4(Mst2) + (80 - 43*
3241  lmMst1 + 43*lmMst2)*pow6(Mst1)) + 27*pow2(Mst1)*(46957 + 188640*B4 -
3242  3600*DN - 37440*lmMst1 + 5600*OepS2 - 324*(-453 + 350*lmMst1 - 350*
3243  lmMst2)*S2 + 11520*pow2(lmMst1) - 2880*lmMst2*(-221 + 55*lmMst1 + 4*
3244  pow2(lmMst1)) - 1440*(-232 + 121*lmMst1)*pow2(lmMst2) + 185760*pow3(
3245  lmMst2))*pow6(Mst2) + 622080*(-1 + 2*lmMst2 + 3*pow2(lmMst2))*pow8(
3246  Mst2)) + 15*Mgl*(3*(346405 + 62208*B4 + 246672*lmMst2 - 6688*OepS2 -
3247  324*(-685 + 418*lmMst2)*S2 + 1728*(-7 + 8*lmMst2)*pow2(lmMst1) +
3248  323136*pow2(lmMst2) - 216*lmMst1*(990 + 1440*lmMst2 - 627*S2 + 584*
3249  pow2(lmMst2)) + 112320*pow3(lmMst2))*pow4(Mst1)*pow4(Mst2) + 2*pow2(
3250  Mst2)*(795601 + 93312*B4 + 365040*lmMst2 - 17056*OepS2 + 663444*S2 -
3251  345384*lmMst2*S2 + 432*(163 + 264*lmMst2)*pow2(lmMst1) + 592704*pow2(
3252  lmMst2) - 216*lmMst1*(1609 + 3070*lmMst2 - 1599*S2 + 1692*pow2(lmMst2))
3253  - 3456*pow3(lmMst1) + 254880*pow3(lmMst2))*pow6(Mst1) + pow2(Mst1)*(-
3254  38880*Dmsqst2*(8*(-lmMst1 + lmMst2)*pow2(Mst1)*pow2(Mst2) + (4 - 9*
3255  lmMst1 + 9*lmMst2)*pow4(Mst1) - 4*(1 + lmMst1 - lmMst2)*pow4(Mst2)) +
3256  27*(27147 + 5280*B4 - 48*DN - 5952*lmMst1 - 224*OepS2 + 324*(-1 + 14*
3257  lmMst1 - 14*lmMst2)*S2 - 768*pow2(lmMst1) - 192*lmMst2*(-198 + 73*
3258  lmMst1 + 4*pow2(lmMst1)) - 288*(-84 + 19*lmMst1)*pow2(lmMst2) + 6240*
3259  pow3(lmMst2))*pow6(Mst2)) + 41472*pow2(1 + lmMst2)*pow8(Mst2)))))/(
3260  174960.*Mgl*pow5(Mst2)))/pow2(Mst1)) + (-11664*pow2(Mt)*pow2(s2t)*((5*
3261  Dmglst2*Dmsqst2*(-1081 + 165*lmMst1 - 165*lmMst2)*(-1 + pow2(Sbeta))*
3262  pow2(Sbeta)*pow4(Mst1))/(9.*Mgl*pow4(Mst2)) + pow2(MuSUSY)*(
3263  53.385802469135804 + (40*B4)/9. - (4*D3)/9. + (2*DN)/9. + (1672*lmMst1)
3264  /27. + (53*pow2(lmMst1))/9. - lmMst2*(129.92592592592592 - 72*lmMst1 +
3265  (13*pow2(lmMst1))/3.) + (2*(-470 + 147*lmMst1)*pow2(lmMst2))/9. + (16*
3266  pow3(lmMst1))/9. + (Dmglst2*(-14267 + 432*B4 - 576*D3 + 360*DN - 4752*
3267  lmMst1 + 4536*lmMst2 + 16704*lmMst1*lmMst2 + 1404*pow2(lmMst1) - 1152*
3268  lmMst2*pow2(lmMst1) - 20232*pow2(lmMst2) + 8856*lmMst1*pow2(lmMst2) -
3269  7704*pow3(lmMst2)))/(162.*Mgl) - (271*pow3(lmMst2))/9. + ((
3270  628.1736268201578 + (76*B4)/9. - (2*DN)/9. + (6317839*lmMst1)/396900. -
3271  (66307*pow2(lmMst1))/315. - lmMst2*(12.52907281431091 - (182909*lmMst1)
3272  /315. + (274*pow2(lmMst1))/3.) + (2*(-58301 + 37135*lmMst1)*pow2(
3273  lmMst2))/315. - (44*pow3(lmMst1))/9. - (1256*pow3(lmMst2))/9. - (
3274  Dmglst2*(585.1892843532082 - (8*B4)/3. + (32*D3)/9. - (20*DN)/9. - (
3275  20109937*lmMst1)/297675. - (15886*pow2(lmMst1))/945. + lmMst2*(
3276  17.112243218274966 - (144628*lmMst1)/945. + (1180*pow2(lmMst1))/9.) + (
3277  2*(80257 - 138180*lmMst1)*pow2(lmMst2))/945. - (92*pow3(lmMst1))/27. +
3278  (4448*pow3(lmMst2))/27.))/Mgl)*pow4(Mst1))/pow4(Mst2) + (-((Mgl*(103 +
3279  186*lmMst2 + 32*lmMst1*(1 + lmMst2) + 91*pow2(lmMst2)) + Dmglst2*(-40 +
3280  4*(99 + 16*lmMst1)*lmMst2 + 246*pow2(lmMst2)))*pow2(Mst2))/(9.*pow2(
3281  Mst1)) + (5*Mgl*(2250*Dmsqst2*(1141 + 48*lmMst1*(7 - 3*lmMst2) - 264*
3282  lmMst2 + 144*pow2(lmMst2)) + pow2(Mst1)*(10552777 + 205200*B4 - 5400*DN
3283  + 4145280*lmMst1 - 1181700*pow2(lmMst1) - 240*lmMst2*(16192 - 26430*
3284  lmMst1 + 3465*pow2(lmMst1)) + 900*(-5735 + 3072*lmMst1)*pow2(lmMst2) -
3285  55800*pow3(lmMst1) - 1877400*pow3(lmMst2))) - 8*Dmglst2*(405000*
3286  Dmsqst2*(4 + lmMst1 - lmMst2) + pow2(Mst1)*(2695042 - 40500*B4 + 54000*
3287  D3 - 33750*DN - 326895*lmMst1 - 324900*pow2(lmMst1) + 15*lmMst2*(-19607
3288  - 129030*lmMst1 + 62550*pow2(lmMst1)) - 450*(-5023 + 5610*lmMst1)*pow2(
3289  lmMst2) + 11250*pow3(lmMst1) + 1575000*pow3(lmMst2))))/(121500.*pow2(
3290  Mst2)) + (16*(1 + lmMst2)*(4*Dmglst2*lmMst2 + Mgl + lmMst2*Mgl)*pow4(
3291  Mst2))/(9.*pow4(Mst1)) + (-30*Dmsqst2*Mgl*(9*(104*OepS2 + 27*(17 - 78*
3292  lmMst1 + 78*lmMst2)*S2)*pow2(Mst1)*pow2(Mst2) + 13*(136*OepS2 - 27*(95
3293  + 102*lmMst1 - 102*lmMst2)*S2)*pow4(Mst1) + 27*(8*OepS2 - 81*(-15 + 2*
3294  lmMst1 - 2*lmMst2)*S2)*pow4(Mst2)) + pow2(Mst2)*(3*Mgl*(-3*(8456*OepS2
3295  - 81*(11243 + 2114*lmMst1 - 2114*lmMst2)*S2)*pow2(Mst1)*pow2(Mst2) + (-
3296  52948*OepS2 + 27*(194357 + 39711*lmMst1 - 39711*lmMst2)*S2)*pow4(Mst1)
3297  + 27*(-184*OepS2 + 81*(307 + 46*lmMst1 - 46*lmMst2)*S2)*pow4(Mst2)) +
3298  2*Dmglst2*(54*(344*OepS2 + 9*(15643 - 774*lmMst1 + 774*lmMst2)*S2)*
3299  pow2(Mst1)*pow2(Mst2) + 4*(17308*OepS2 + 27*(93919 - 12981*lmMst1 +
3300  12981*lmMst2)*S2)*pow4(Mst1) + 27*(56*OepS2 - 81*(-1677 + 14*lmMst1 -
3301  14*lmMst2)*S2)*pow4(Mst2))))/(2187.*pow6(Mst2)))/Mgl - (Dmsqst2*(
3302  3.3333333333333335 - (20*lmMst2)/3. + (40*Dmglst2)/Mgl - ((
3303  201.74098765432097 + (622*lmMst1)/15. + (2*(-311 + 10*lmMst1)*lmMst2)/
3304  15. + (Dmglst2*(76.66666666666667 - 140*lmMst1 + 140*lmMst2))/Mgl - (
3305  22*pow2(lmMst1))/3. + 6*pow2(lmMst2))*pow4(Mst1))/pow4(Mst2) - ((
3306  237.28785508324435 + (16526*lmMst2)/3969. + (2*lmMst1*(-8263 + 71820*
3307  lmMst2))/3969. - (520*pow2(lmMst1))/21. - (80*pow2(lmMst2))/7.)*pow6(
3308  Mst1))/pow6(Mst2)))/pow2(Mst1) + (10*shiftst1*(Dmsqst2*(3 - 2*lmMst2) +
3309  (1 - 2*lmMst2)*pow2(Mst2))*((pow2(Mst1) + pow2(Mst2))*pow4(Mst2) - 2*(
3310  lmMst1 - lmMst2)*pow2(Mst1)*(pow2(Mst1)*pow2(Mst2) + pow4(Mst1) + pow4(
3311  Mst2))) + (1 - 2*lmMst2)*shiftst3*pow2(Mst2)*(2*(1 - 2*lmMst1 + 2*
3312  lmMst2)*pow2(Mst2)*pow4(Mst1) + 2*(1 - lmMst1 + lmMst2)*pow2(Mst1)*
3313  pow4(Mst2) + (2 - 6*lmMst1 + 6*lmMst2)*pow6(Mst1) + pow6(Mst2)))/(3.*
3314  pow2(Mst1)*pow6(Mst2)))) + (4*pow2(MuSUSY)*((Mst2*s2t*pow3(Mt)*(
3315  Dmglst2*(36*pow2(Mst2)*(66761 + 301320*B4 - 4860*DN - 205380*lmMst1 +
3316  40480*OepS2 - 216*(2489 + 3795*lmMst1 - 3795*lmMst2)*S2 + 23760*pow2(
3317  lmMst1) + 180*lmMst2*(4993 - 1956*lmMst1 + 48*pow2(lmMst1)) - 1080*(-
3318  482 + 331*lmMst1)*pow2(lmMst2) + 348840*pow3(lmMst2))*pow4(Mst1) +
3319  2332800*Dmsqst2*((-2 - 5*lmMst1 + 5*lmMst2)*pow2(Mst1)*pow2(Mst2) + (8
3320  - 15*lmMst1 + 15*lmMst2)*pow4(Mst1)) + 27*pow2(Mst1)*(23917 + 188640*B4
3321  - 3600*DN - 37440*lmMst1 + 5600*OepS2 - 324*(-453 + 350*lmMst1 - 350*
3322  lmMst2)*S2 + 11520*pow2(lmMst1) - 2880*lmMst2*(-237 + 55*lmMst1 + 4*
3323  pow2(lmMst1)) - 1440*(-280 + 121*lmMst1)*pow2(lmMst2) + 185760*pow3(
3324  lmMst2))*pow4(Mst2) - 10*(2773621 - 1660176*B4 + 25272*DN + 2004408*
3325  lmMst1 - 525472*OepS2 + 108*(123113 + 98526*lmMst1 - 98526*lmMst2)*S2 +
3326  3888*pow2(lmMst1) - 144*lmMst2*(36802 - 11421*lmMst1 + 1728*pow2(
3327  lmMst1)) + 167184*(-14 + 15*lmMst1)*pow2(lmMst2) - 31104*pow3(lmMst1) -
3328  2227824*pow3(lmMst2))*pow6(Mst1) + 622080*(-1 + 2*lmMst2 + 3*pow2(
3329  lmMst2))*pow6(Mst2)) + 15*Mgl*(24*pow2(Mst2)*(75569 + 13716*B4 - 54*DN
3330  - 33426*lmMst1 - 1088*OepS2 + 162*(169 + 136*lmMst1 - 136*lmMst2)*S2 -
3331  2376*pow2(lmMst1) + 54*lmMst2*(1427 - 1012*lmMst1 + 16*pow2(lmMst1)) -
3332  108*(-642 + 203*lmMst1)*pow2(lmMst2) + 21060*pow3(lmMst2))*pow4(Mst1) +
3333  155520*Dmsqst2*((1 + lmMst1 - lmMst2)*pow2(Mst1)*pow2(Mst2) + (1 + 3*
3334  lmMst1 - 3*lmMst2)*pow4(Mst1)) + 27*pow2(Mst1)*(28683 + 5280*B4 - 48*DN
3335  - 5952*lmMst1 - 224*OepS2 + 324*(-1 + 14*lmMst1 - 14*lmMst2)*S2 - 768*
3336  pow2(lmMst1) - 192*lmMst2*(-214 + 73*lmMst1 + 4*pow2(lmMst1)) - 96*(-
3337  268 + 57*lmMst1)*pow2(lmMst2) + 6240*pow3(lmMst2))*pow4(Mst2) + 2*(
3338  1702429 + 257904*B4 - 648*DN - 748656*lmMst1 - 30112*OepS2 + 108*(9185
3339  + 5646*lmMst1 - 5646*lmMst2)*S2 + 41904*pow2(lmMst1) + 216*lmMst2*(5971
3340  - 6106*lmMst1 + 576*pow2(lmMst1)) - 41904*(-34 + 15*lmMst1)*pow2(
3341  lmMst2) - 3456*pow3(lmMst1) + 507600*pow3(lmMst2))*pow6(Mst1) + 41472*
3342  pow2(1 + lmMst2)*pow6(Mst2))))/5. + pow2(Mst1)*(36*(3*pow2(Mst1)*pow2(
3343  Mst2)*(3*Mgl*(10667 - 96*B4 + 96*D3 - 48*DN - 3072*lmMst1 - 384*(-25 +
3344  9*lmMst1)*lmMst2 - 384*lmMst1*lmMt + 384*(1 + lmMst2)*lmMt - 384*(-13 +
3345  4*lmMst1)*pow2(lmMst2) + 1536*pow3(lmMst2)) + 2*Dmglst2*(28405 - 288*B4
3346  + 288*D3 - 144*DN + 5472*lmMst1 - 288*(-89 + 2*lmMst1)*lmMst2 + 576*(-2
3347  + lmMst1 - lmMst2)*lmMt - 576*(-9 + 8*lmMst1)*pow2(lmMst2) + 4608*pow3(
3348  lmMst2))) + (Mgl*(383185 - 2592*B4 + 2592*D3 - 1296*DN - 187704*lmMst1
3349  + 216*lmMst2*(1733 + 859*lmMst2 - 6*lmMst1*(105 + 41*lmMst2) - 26*pow2(
3350  lmMst1)) - 7992*pow2(lmMst1) + 3456*lmMt*(3 + 6*lmMst2 - 2*lmMst1*(3 +
3351  lmMst2) + pow2(lmMst1) + pow2(lmMst2)) + 720*pow3(lmMst1) + 58032*pow3(
3352  lmMst2))*pow4(Mst1))/2. + OepS2*(672*(2*Dmglst2 - 3*Mgl)*pow2(Mst1)*
3353  pow2(Mst2) - 8720*Mgl*pow4(Mst1)) + 72*(Mgl*(436 - 6*B4 + 6*D3 - 3*DN -
3354  48*lmMst1 + (408 - 96*lmMst1)*lmMst2 + 24*lmMt - 48*(-4 + lmMst1)*pow2(
3355  lmMst2) + 48*pow3(lmMst2)) + 6*Dmglst2*(180 - 2*B4 + 2*D3 - DN + 144*
3356  lmMst2 - 16*(-2 + lmMst1)*pow2(lmMst2) + 16*(lmMst1 + pow3(lmMst2))))*
3357  pow4(Mst2) - 243*S2*(4*(2*Dmglst2*(65 + 14*lmMst1 - 14*lmMst2) + 3*(43
3358  - 14*lmMst1 + 14*lmMst2)*Mgl)*pow2(Mst1)*pow2(Mst2) + (4*(57 - 545*
3359  lmMst1 + 545*lmMst2)*Mgl*pow4(Mst1))/3. + 96*(4*Dmglst2 + 3*Mgl)*pow4(
3360  Mst2)))*pow4(Mt) + 24*T1ep*pow2(Mt)*(36*pow2(Mt)*(-42*(2*Dmglst2 - 3*
3361  Mgl)*pow2(Mst1)*pow2(Mst2) + 545*Mgl*pow4(Mst1)) - 2*Mst2*Mt*s2t*(36*(
3362  253*Dmglst2 - 68*Mgl)*pow2(Mst1)*pow2(Mst2) + 2*(16421*Dmglst2 - 2823*
3363  Mgl)*pow4(Mst1) + 189*(5*Dmglst2 - 3*Mgl)*pow4(Mst2)) + pow2(s2t)*((
3364  34616*Dmglst2 - 39711*Mgl)*pow2(Mst2)*pow4(Mst1) - 780*Dmsqst2*Mgl*(9*
3365  pow2(Mst1)*pow2(Mst2) + 17*pow4(Mst1)) - 18*(90*Dmsqst2*Mgl + (-516*
3366  Dmglst2 + 1057*Mgl)*pow2(Mst1))*pow4(Mst2) + 54*(14*Dmglst2 - 69*Mgl)*
3367  pow6(Mst2))))))/(3.*Mgl*pow2(Mst1)*pow6(Mst2)) + (Mt*((-8*Dmglst2*Mst2*
3368  (-2*(8*MuSUSY*s2t*(MuSUSY*(395581*z3 + 659*z4) + 9*Mst2*Tbeta*(1403*z3
3369  + 757*z4))*pow2(Mt) + Mt*pow2(s2t)*(116640*Dmsqst2*MuSUSY*Tbeta*z3 - 3*
3370  MuSUSY*Tbeta*(364058*z3 - 5063*z4)*pow2(Mst2) + 4*Mst2*((353116*z3 +
3371  11327*z4)*pow2(MuSUSY) - 6075*Dmsqst2*z3*(-1 + pow2(Sbeta))*pow2(Sbeta)
3372  )) + 8*MuSUSY*Tbeta*(417241*z3 - 14269*z4)*pow3(Mt) - 2*MuSUSY*Tbeta*(
3373  89947*z3 + 6332*z4)*pow3(Mst2)*pow3(s2t))*pow4(Mst1) + 9*MuSUSY*pow2(
3374  Mst1)*(-43200*Dmsqst2*(-(MuSUSY*s2t) + 4*Mt*Tbeta)*z3*pow2(Mt) + 96*
3375  Mst2*Mt*MuSUSY*((125*z3 - 47*z4)*pow2(Mt) - 180*Dmsqst2*z3*pow2(s2t)) -
3376  8*Mt*pow2(Mst2)*(Mt*MuSUSY*s2t*(47456*z3 + 709*z4) + 12*Tbeta*(1675*z3
3377  - 26*z4)*pow2(Mt) + 3240*Dmsqst2*Tbeta*z3*pow2(s2t)) + 24*s2t*(-(Mt*
3378  MuSUSY*s2t*(9747*z3 + 185*z4)) + Tbeta*(-1180*z3 + 8*z4)*pow2(Mt) +
3379  225*Dmsqst2*Tbeta*z3*pow2(s2t))*pow3(Mst2) + 3*Mt*Tbeta*(49501*z3 +
3380  605*z4)*pow2(s2t)*pow4(Mst2) + 3*Tbeta*(21373*z3 + 316*z4)*pow3(s2t)*
3381  pow5(Mst2)) + 27*MuSUSY*pow2(Mst2)*(-2880*Dmsqst2*(-(MuSUSY*s2t) + 6*
3382  Mt*Tbeta)*z3*pow2(Mt) + 16*Mst2*Mt*MuSUSY*(2*(83*z3 - 27*z4)*pow2(Mt) -
3383  135*Dmsqst2*z3*pow2(s2t)) - 4*Mt*pow2(Mst2)*(Mt*MuSUSY*s2t*(15137*z3 +
3384  271*z4) + Tbeta*(9*z3 + 253*z4)*pow2(Mt) + 540*Dmsqst2*Tbeta*z3*pow2(
3385  s2t)) + 2*s2t*(-(Mt*MuSUSY*s2t*(17615*z3 + 424*z4)) + Tbeta*(-1756*z3 +
3386  432*z4)*pow2(Mt) + 540*Dmsqst2*Tbeta*z3*pow2(s2t))*pow3(Mst2) + 3*Mt*
3387  Tbeta*(15137*z3 + 271*z4)*pow2(s2t)*pow4(Mst2) + Tbeta*(17615*z3 + 424*
3388  z4)*pow3(s2t)*pow5(Mst2))))/Mgl - (4*Mst2*xDmglst2*pow2(Dmglst2)*(-4*(
3389  8*MuSUSY*s2t*(MuSUSY*(395581*z3 + 659*z4) + 9*Mst2*Tbeta*(1403*z3 +
3390  757*z4))*pow2(Mt) + Mt*pow2(s2t)*(116640*Dmsqst2*MuSUSY*Tbeta*z3 - 3*
3391  MuSUSY*Tbeta*(364058*z3 - 5063*z4)*pow2(Mst2) + 4*Mst2*((353116*z3 +
3392  11327*z4)*pow2(MuSUSY) - 6075*Dmsqst2*z3*(-1 + pow2(Sbeta))*pow2(Sbeta)
3393  )) + 8*MuSUSY*Tbeta*(417241*z3 - 14269*z4)*pow3(Mt) - 2*MuSUSY*Tbeta*(
3394  89947*z3 + 6332*z4)*pow3(Mst2)*pow3(s2t))*pow4(Mst1) + 9*MuSUSY*pow2(
3395  Mst2)*(-17280*Dmsqst2*(-(MuSUSY*s2t) + 6*Mt*Tbeta)*z3*pow2(Mt) + 96*
3396  Mst2*Mt*MuSUSY*((1990*z3 - 81*z4)*pow2(Mt) - 135*Dmsqst2*z3*pow2(s2t))
3397  + 8*Mt*pow2(Mst2)*(-(Mt*MuSUSY*s2t*(110957*z3 + 1249*z4)) + Tbeta*(
3398  32296*z3 - 871*z4)*pow2(Mt) - 1620*Dmsqst2*Tbeta*z3*pow2(s2t)) - 2*s2t*
3399  (Mt*MuSUSY*s2t*(228607*z3 + 8888*z4) + 9*Tbeta*(19703*z3 - 376*z4)*
3400  pow2(Mt) - 3240*Dmsqst2*Tbeta*z3*pow2(s2t))*pow3(Mst2) + 6*Mt*Tbeta*(
3401  110957*z3 + 1249*z4)*pow2(s2t)*pow4(Mst2) + Tbeta*(228607*z3 + 8888*z4)
3402  *pow3(s2t)*pow5(Mst2)) - 3*MuSUSY*pow2(Mst1)*(259200*Dmsqst2*(-(MuSUSY*
3403  s2t) + 4*Mt*Tbeta)*z3*pow2(Mt) - 96*Mst2*Mt*MuSUSY*((13639*z3 - 451*z4)
3404  *pow2(Mt) - 1080*Dmsqst2*z3*pow2(s2t)) + 8*Mt*pow2(Mst2)*(4*Mt*MuSUSY*
3405  s2t*(152143*z3 + 3086*z4) + Tbeta*(-221681*z3 + 6920*z4)*pow2(Mt) +
3406  19440*Dmsqst2*Tbeta*z3*pow2(s2t)) + 8*s2t*(Mt*MuSUSY*s2t*(404588*z3 +
3407  10819*z4) + 36*Tbeta*(3124*z3 + 29*z4)*pow2(Mt) - 4050*Dmsqst2*Tbeta*
3408  z3*pow2(s2t))*pow3(Mst2) - 6*Mt*Tbeta*(275701*z3 + 8597*z4)*pow2(s2t)*
3409  pow4(Mst2) - Tbeta*(932531*z3 + 16612*z4)*pow3(s2t)*pow5(Mst2))))/pow2(
3410  Mgl) - (16*xDmsqst2*pow2(Dmsqst2)*(-9*Mt*s2t*(2160*(3 + 2*lmMst1 - 2*
3411  lmMst2)*Mst2*Mt*pow2(Mst1) + 270*s2t*shiftst1*(2*(lmMst1 - lmMst2)*
3412  pow2(Mst1) - pow2(Mst2))*(pow2(Mst1) + pow2(Mst2)) + 40*s2t*T1ep*pow2(
3413  Mst1)*(14*pow2(Mst1) + 3*pow2(Mst2)))*pow2(MuSUSY) + MuSUSY*Tbeta*((45*
3414  Mst2*pow2(Mst1)*(16*Mst2*s2t*(88 + 8*OepS2 - 81*S2 - 18*(lmMst1 -
3415  lmMst2)*(2 + 9*S2) - 54*shiftst1 - 12*T1ep)*pow2(Mt) + 2592*(3 + 2*
3416  lmMst1 - 2*lmMst2)*Mt*pow2(Mst2)*pow2(s2t) + 864*(4 - 8*lmMst1 + 15*
3417  lmMst2 - 7*lmMt)*pow3(Mt) - (1493 + 64*OepS2 - 27864*S2 - 72*(lmMst1 -
3418  lmMst2)*(-1 + 18*S2 + 6*shiftst1) - 96*T1ep)*pow3(Mst2)*pow3(s2t)))/8.
3419  + s2t*((3*(972000*(1 + 4*lmMst1 - 4*lmMst2)*Mst2*Mt*s2t + 8*(187757 +
3420  16000*OepS2 - 540000*S2 + 90*lmMst2*(-587 + 3600*S2) - 90*lmMst1*(-587
3421  + 630*lmMst2 + 3600*S2) - 24000*T1ep + 28350*(pow2(lmMst1) + pow2(
3422  lmMst2)))*pow2(Mt) + (1372861 - 88000*OepS2 + 180*lmMst2*(1987 - 9900*
3423  S2) + 13743000*S2 + 180*lmMst1*(-1987 + 1080*lmMst2 + 9900*S2) + 81000*
3424  shiftst1 + 132000*T1ep - 97200*(pow2(lmMst1) + pow2(lmMst2)))*pow2(
3425  Mst2)*pow2(s2t))*pow4(Mst1))/200. - 1215*(2 + shiftst1)*(-4*pow2(Mt) +
3426  pow2(Mst2)*pow2(s2t))*pow4(Mst2)) + ((610359812 - 64484000*OepS2 + 315*
3427  lmMst2*(540413 - 4145400*S2) + 8117266500*S2 + 315*lmMst1*(-540413 +
3428  884520*lmMst2 + 4145400*S2) + 96726000*T1ep - 139311900*(pow2(lmMst1) +
3429  pow2(lmMst2)))*pow3(s2t)*pow6(Mst1))/34300.) + (3*pow2(s2t)*(10125*
3430  pow2(Sbeta)*(2*(11 + 39*lmMst1 - 39*lmMst2)*Mst2*s2t*(-1 + pow2(Sbeta))
3431  + (167 - 5*lmMst1 + 5*lmMst2)*Mt*pow2(Sbeta))*pow6(Mst1) + Mt*(pow2(
3432  MuSUSY)*(375*(1925 + 64*OepS2 - 27864*S2 - 72*(lmMst1 - lmMst2)*(-1 +
3433  18*S2))*pow2(Mst1)*pow2(Mst2) + 2*(7*(-46499 + 8000*OepS2 - 1728000*S2)
3434  + 90*lmMst2*(-2137 + 12600*S2) - 90*lmMst1*(-2137 + 1080*lmMst2 +
3435  12600*S2) + 48600*(pow2(lmMst1) + pow2(lmMst2)))*pow4(Mst1) + 162000*
3436  pow4(Mst2)) + 10125*(-167 + 5*lmMst1 - 5*lmMst2)*pow2(Sbeta)*pow6(Mst1)
3437  )))/100.))/pow2(Mst1) + 3*(8*pow4(Mst1)*(4*MuSUSY*s2t*(10*Dmsqst2*
3438  Tbeta*(965*z3 - 53*z4) + 4*Mst2*MuSUSY*(24908*z3 + 2941*z4) + Tbeta*(
3439  13543*z3 - 6031*z4)*pow2(Mst2))*pow2(Mt) + 2*Mt*pow2(s2t)*(10*Dmsqst2*
3440  MuSUSY*(1771*MuSUSY*z3 - 3888*Mst2*Tbeta*z3 - 442*MuSUSY*z4) - MuSUSY*(
3441  -4*(91963 + 162*lmMst1 - 162*lmMst2)*MuSUSY*z3 + 13723*MuSUSY*z4 + 3*
3442  Mst2*Tbeta*(5908*z3 + 2477*z4))*pow2(Mst2) + 1215*xDmsqst2*z3*pow2(
3443  Dmsqst2)*(-1 + pow2(Sbeta))*pow2(Sbeta)) + 8*MuSUSY*(2253*MuSUSY*z3 -
3444  107072*Mst2*Tbeta*z3 + 3093*MuSUSY*z4 + 3326*Mst2*Tbeta*z4)*pow3(Mt) +
3445  pow3(s2t)*(-2080*Dmsqst2*MuSUSY*Tbeta*(7*z3 - z4)*pow2(Mst2) - 20*
3446  xDmsqst2*pow2(Dmsqst2)*(MuSUSY*Tbeta*(-1517*z3 + 47*z4) + 405*Mst2*z3*(
3447  -1 + pow2(Sbeta))*pow2(Sbeta)) + 7*MuSUSY*Tbeta*(-21934*z3 + 985*z4)*
3448  pow4(Mst2))) - 3*MuSUSY*pow2(Mst1)*(640*Mt*s2t*xDmsqst2*(MuSUSY*s2t*(
3449  472*z3 - 7*z4) + 4*Mt*Tbeta*(7*z3 - z4))*pow2(Dmsqst2) + 17280*Dmsqst2*
3450  Mst2*Mt*z3*(-28*Mt*MuSUSY*s2t + 16*Tbeta*pow2(Mt) + 3*Dmsqst2*Tbeta*
3451  xDmsqst2*pow2(s2t)) + 64*Mt*(-(Mt*MuSUSY*s2t*(14636*z3 + 1135*z4)) + 2*
3452  Tbeta*(8219*z3 - 326*z4)*pow2(Mt) + 3240*Dmsqst2*Tbeta*z3*pow2(s2t))*
3453  pow3(Mst2) - pow2(Mst2)*(960*Dmsqst2*s2t*Tbeta*(101*z3 - 5*z4)*pow2(Mt)
3454  + 480*Dmsqst2*Mt*MuSUSY*(35*z3 - 26*z4)*pow2(s2t) + 1152*MuSUSY*(109*z3
3455  + 25*z4)*pow3(Mt) + 5*Tbeta*xDmsqst2*(16999*z3 - 352*z4)*pow2(Dmsqst2)*
3456  pow3(s2t)) + 16*s2t*(2*Mt*MuSUSY*s2t*((-35719 - 108*lmMst1 + 108*
3457  lmMst2)*z3 + 1138*z4) + Tbeta*(1859*z3 + 1735*z4)*pow2(Mt) + 60*
3458  Dmsqst2*Tbeta*(26*z3 - 5*z4)*pow2(s2t))*pow4(Mst2) + 24*Mt*Tbeta*(
3459  11377*z3 + 1505*z4)*pow2(s2t)*pow5(Mst2) + 32*Tbeta*((11924 + 27*lmMst1
3460  - 27*lmMst2)*z3 - 479*z4)*pow3(s2t)*pow6(Mst2)) - 9*Mst2*MuSUSY*(10*
3461  Mst2*Mt*s2t*xDmsqst2*(4403*MuSUSY*s2t*z3 + 602*Mt*Tbeta*z3 - 32*MuSUSY*
3462  s2t*z4 - 32*Mt*Tbeta*z4)*pow2(Dmsqst2) + 11520*(-(MuSUSY*s2t) + 2*Mt*
3463  Tbeta)*xDmsqst2*z3*pow2(Dmsqst2)*pow2(Mt) + 2880*Dmsqst2*Mt*z3*pow2(
3464  Mst2)*(-24*Mt*MuSUSY*s2t + 16*Tbeta*pow2(Mt) + 3*Dmsqst2*Tbeta*
3465  xDmsqst2*pow2(s2t)) + pow3(Mst2)*(-960*Dmsqst2*s2t*Tbeta*(29*z3 - z4)*
3466  pow2(Mt) + 480*Dmsqst2*Mt*MuSUSY*(23*z3 + 2*z4)*pow2(s2t) - 128*MuSUSY*
3467  (230*z3 + 27*z4)*pow3(Mt) + 5*Tbeta*xDmsqst2*(-4403*z3 + 32*z4)*pow2(
3468  Dmsqst2)*pow3(s2t)) + 32*Mt*(-5*Mt*MuSUSY*s2t*(1193*z3 + 51*z4) + 3*
3469  Tbeta*(961*z3 - 103*z4)*pow2(Mt) + 1620*Dmsqst2*Tbeta*z3*pow2(s2t))*
3470  pow4(Mst2) - 48*s2t*(2*Mt*MuSUSY*s2t*((1319 + 6*lmMst1 - 6*lmMst2)*z3 -
3471  20*z4) + Tbeta*(3*(-77 + 8*lmMst1 - 8*lmMst2)*z3 - 101*z4)*pow2(Mt) +
3472  5*Dmsqst2*Tbeta*(23*z3 + 2*z4)*pow2(s2t))*pow5(Mst2) + 120*Mt*Tbeta*(
3473  1193*z3 + 51*z4)*pow2(s2t)*pow6(Mst2) + 48*Tbeta*((1319 + 6*lmMst1 - 6*
3474  lmMst2)*z3 - 20*z4)*pow3(s2t)*pow7(Mst2))) + (6*MuSUSY*(-2*pow2(z2)*(
3475  Dmglst2*Mst2*(Dmglst2*xDmglst2*(2*(4*s2t*(86405*MuSUSY - 16542*Mst2*
3476  Tbeta)*pow2(Mt) - Mst2*Mt*(42392*MuSUSY + 105585*Mst2*Tbeta)*pow2(s2t)
3477  + 129704*Tbeta*pow3(Mt) + 12664*Tbeta*pow3(Mst2)*pow3(s2t))*pow4(Mst1)
3478  - 9*((-41444*MuSUSY*s2t + 504*Mst2*s2t*Tbeta)*pow2(Mt) + Mst2*Mt*(2732*
3479  MuSUSY + 31083*Mst2*Tbeta)*pow2(s2t) + 28*Tbeta*pow3(Mt) - 1366*Tbeta*
3480  pow3(Mst2)*pow3(s2t))*pow4(Mst2) + 3*Mst2*pow2(Mst1)*(8*Mst2*s2t*(
3481  29549*MuSUSY - 1980*Mst2*Tbeta)*pow2(Mt) - 13*Mt*(712*MuSUSY + 6465*
3482  Mst2*Tbeta)*pow2(Mst2)*pow2(s2t) + 16*(105*MuSUSY - 1082*Mst2*Tbeta)*
3483  pow3(Mt) + 530*Tbeta*pow3(s2t)*pow4(Mst2))) + Mgl*(2*(4*s2t*(86405*
3484  MuSUSY - 16542*Mst2*Tbeta)*pow2(Mt) - Mst2*Mt*(42392*MuSUSY + 105585*
3485  Mst2*Tbeta)*pow2(s2t) + 129704*Tbeta*pow3(Mt) + 12664*Tbeta*pow3(Mst2)*
3486  pow3(s2t))*pow4(Mst1) + 27*(7052*MuSUSY*s2t*pow2(Mt) - Mst2*Mt*(632*
3487  MuSUSY + 5289*Mst2*Tbeta)*pow2(s2t) + 140*Tbeta*pow3(Mt) + 316*Tbeta*
3488  pow3(Mst2)*pow3(s2t))*pow4(Mst2) + 9*Mst2*pow2(Mst1)*(80*Mst2*s2t*(569*
3489  MuSUSY - 30*Mst2*Tbeta)*pow2(Mt) - 3*Mt*(1264*MuSUSY + 6091*Mst2*Tbeta)
3490  *pow2(Mst2)*pow2(s2t) + 96*(7*MuSUSY + 62*Mst2*Tbeta)*pow3(Mt) + 948*
3491  Tbeta*pow3(s2t)*pow4(Mst2)))) - 3*pow2(Mgl)*(pow4(Mst1)*(-4*s2t*(13670*
3492  Mst2*MuSUSY + 530*Dmsqst2*Tbeta + 6031*Tbeta*pow2(Mst2))*pow2(Mt) - 2*
3493  Mt*(4420*Dmsqst2*MuSUSY + (11941*MuSUSY - 6177*Mst2*Tbeta)*pow2(Mst2))*
3494  pow2(s2t) + 40*(327*MuSUSY + 406*Mst2*Tbeta)*pow3(Mt) + 5*Tbeta*pow3(
3495  s2t)*(-188*xDmsqst2*pow2(Dmsqst2) + 416*Dmsqst2*pow2(Mst2) + 1379*pow4(
3496  Mst2))) + 9*pow2(Mst2)*(12*(-185*MuSUSY*s2t + 7*Mt*Tbeta)*pow2(Mt)*
3497  pow3(Mst2) + s2t*(40*Mt*(MuSUSY*s2t + Mt*Tbeta)*xDmsqst2*pow2(Dmsqst2)
3498  - 20*Dmsqst2*pow2(Mst2)*(6*Mt*MuSUSY*s2t + 6*Tbeta*pow2(Mt) + Dmsqst2*
3499  Tbeta*xDmsqst2*pow2(s2t)) + 6*(2*Mt*MuSUSY*s2t - 53*Tbeta*pow2(Mt) +
3500  10*Dmsqst2*Tbeta*pow2(s2t))*pow4(Mst2)) + 3*(555*Mt - 2*Mst2*s2t)*
3501  Tbeta*pow2(s2t)*pow5(Mst2)) + 3*pow2(Mst1)*(80*Mt*s2t*(7*MuSUSY*s2t +
3502  4*Mt*Tbeta)*xDmsqst2*pow2(Dmsqst2) + 32*(-398*MuSUSY*s2t + 55*Mt*Tbeta)
3503  *pow2(Mt)*pow3(Mst2) + 4*pow2(Mst2)*(-150*Dmsqst2*s2t*Tbeta*pow2(Mt) -
3504  390*Dmsqst2*Mt*MuSUSY*pow2(s2t) + 252*MuSUSY*pow3(Mt) - 55*Tbeta*
3505  xDmsqst2*pow2(Dmsqst2)*pow3(s2t)) + s2t*(-3364*Mt*MuSUSY*s2t - 3470*
3506  Tbeta*pow2(Mt) + 600*Dmsqst2*Tbeta*pow2(s2t))*pow4(Mst2) + (4557*Mt +
3507  1700*Mst2*s2t)*Tbeta*pow2(s2t)*pow5(Mst2)))) + (3*Mgl*xDR2DRMOD*(Tbeta*
3508  (pow2(Mst1)*(512*Mst2*pow3(Mt)*(9*(1 + lmMst2)*Mgl*((3 - 21*lmMst2 + 2*
3509  lmMst1*(8 + 3*lmMst2 - 3*lmMt) + 5*lmMt + 6*lmMst2*lmMt - 6*pow2(
3510  lmMst2))*pow2(Mst2)*pow4(Mst1) + (-1 - 7*lmMst2 + 2*lmMst1*(2 + lmMst2
3511  - lmMt) + 3*lmMt + 2*lmMst2*lmMt - 2*pow2(lmMst2))*pow2(Mst1)*pow4(
3512  Mst2) + (12 - 45*lmMst2 + 2*lmMst1*(19 + 6*lmMst2 - 6*lmMt) + 7*lmMt +
3513  12*lmMst2*lmMt - 12*pow2(lmMst2))*pow6(Mst1) - 2*(1 + lmMst2)*pow6(
3514  Mst2)) + Dmglst2*(pow2(Mst2)*(263 + lmMst2*(962 - 213*lmMt) - 177*lmMt
3515  + (393 - 18*lmMt)*pow2(lmMst2) - 18*lmMst1*(26 - lmMst2*(-17 + lmMt) -
3516  7*lmMt + pow2(lmMst2)) + 18*pow3(lmMst2))*pow4(Mst1) - pow2(Mst1)*(17*(
3517  -7 + 3*lmMt) + lmMst2*(-224 + 15*lmMt) - 3*(5 + 6*lmMt)*pow2(lmMst2) -
3518  18*lmMst1*(-4 + lmMt - lmMst2*(1 + lmMt) + pow2(lmMst2)) + 18*pow3(
3519  lmMst2))*pow4(Mst2) + (290 + lmMst2*(2447 - 645*lmMt) - 375*lmMt - 3*(-
3520  509 + 60*lmMt)*pow2(lmMst2) - 18*lmMst1*(87 + lmMst2*(71 - 10*lmMt) -
3521  22*lmMt + 10*pow2(lmMst2)) + 180*pow3(lmMst2))*pow6(Mst1) - 18*(-1 + 2*
3522  lmMst2 + 3*pow2(lmMst2))*pow6(Mst2))) - 3456*Mt*pow2(s2t)*pow3(Mst2)*((
3523  1 + lmMst2)*Mgl*(2*(2 - 5*lmMst2 + lmMst1*(5 + 2*lmMst2) - 2*pow2(
3524  lmMst2))*pow2(Mst2)*pow4(Mst1) + 2*(-2*lmMst2*(2 + lmMst2) + lmMst1*(3
3525  + 2*lmMst2))*pow2(Mst1)*pow4(Mst2) + (5 - 12*lmMst2 + 4*lmMst1*(3 +
3526  lmMst2) - 4*pow2(lmMst2))*pow6(Mst1) - 2*(1 + lmMst2)*pow6(Mst2)) +
3527  Dmglst2*(2*pow2(Mst2)*(8 + 19*lmMst2 - 5*pow2(lmMst2) + lmMst1*(-7 + 5*
3528  lmMst2 + 6*pow2(lmMst2)) - 6*pow3(lmMst2))*pow4(Mst1) + 2*pow2(Mst1)*(7
3529  + 9*lmMst2 - 8*pow2(lmMst2) + lmMst1*(-3 + 5*lmMst2 + 6*pow2(lmMst2)) -
3530  6*pow3(lmMst2))*pow4(Mst2) + (17 + 51*lmMst2 - 4*pow2(lmMst2) + 4*
3531  lmMst1*(-6 + lmMst2 + 3*pow2(lmMst2)) - 12*pow3(lmMst2))*pow6(Mst1) -
3532  2*(-1 + 2*lmMst2 + 3*pow2(lmMst2))*pow6(Mst2)))) - 9*pow3(s2t)*(pow2(
3533  Mst1)*(45*(2*(lmMst1 - lmMst2)*Mgl*pow2(Mst1) - (2*Dmglst2 + Mgl)*pow2(
3534  Mst2))*pow4(Dmsqst2) - 60*Dmsqst2*(2*Dmglst2 - 5*Mgl)*(2*(lmMst1 -
3535  lmMst2)*pow2(Mst1)*pow2(Mst2) + pow4(Mst1) - pow4(Mst2))*pow4(Mst2)) -
3536  4*pow4(Mst2)*(2*Dmglst2*(4*pow2(Mst1)*pow2(Mst2)*(20*pow2(Mst1)*pow2(
3537  Mst2) + 9*pow4(Mst1) - 5*pow4(Mst2)) - 2*lmMst1*(-4 + 246*lmMst2 + 123*
3538  pow2(lmMst2))*pow4(Mst1)*pow4(Mst2) + 214*pow3(lmMst2)*pow4(Mst1)*pow4(
3539  Mst2) + 32*lmMst2*pow2(lmMst1)*pow4(Mst1)*(8*pow2(Mst1)*pow2(Mst2) + 8*
3540  pow4(Mst1) + pow4(Mst2)) + 256*(pow2(Mst1) + pow2(Mst2))*pow3(lmMst2)*
3541  pow6(Mst1) + 32*lmMst1*lmMst2*pow2(Mst1)*pow6(Mst2) - 32*lmMst1*((3 +
3542  3*lmMst2 + 16*pow2(lmMst2))*pow2(Mst2)*pow6(Mst1) + (3 + 2*lmMst2 + 16*
3543  pow2(lmMst2))*pow8(Mst1)) + pow2(lmMst2)*(396*pow4(Mst1)*pow4(Mst2) +
3544  37*pow2(Mst2)*pow6(Mst1) + 155*pow2(Mst1)*pow6(Mst2) + 64*pow8(Mst1) -
3545  32*pow8(Mst2)) + 2*lmMst2*(4*pow4(Mst1)*pow4(Mst2) + 21*pow2(Mst2)*
3546  pow6(Mst1) + 115*pow2(Mst1)*pow6(Mst2) + 56*pow8(Mst1) - 16*pow8(Mst2))
3547  ) + Mgl*(-2*(8 - 237*lmMst2 - 16*(1 + lmMst2)*pow2(lmMst1) - 308*pow2(
3548  lmMst2) + lmMst1*(269 + 348*lmMst2 + 123*pow2(lmMst2)) - 107*pow3(
3549  lmMst2))*pow4(Mst1)*pow4(Mst2) - pow2(Mst2)*(125 + lmMst2*(156 + 512*
3550  lmMst1*(1 + lmMst2)) - 181*pow2(lmMst2) - 256*((1 + lmMst2)*pow2(
3551  lmMst1) + pow3(lmMst2)))*pow6(Mst1) + (221 + 284*lmMst2 + 32*lmMst1*(1
3552  + lmMst2) + 107*pow2(lmMst2))*pow2(Mst1)*pow6(Mst2) + 16*(1 + lmMst2)*(
3553  1 + lmMst1*(2 - 32*lmMst2) - 2*lmMst2 + 16*(pow2(lmMst1) + pow2(lmMst2)
3554  ))*pow8(Mst1) - 16*pow2(1 + lmMst2)*pow8(Mst2)))) + s2t*(4860*Mgl*
3555  shiftst1*pow2(Mst1)*(Dmsqst2 + pow2(Mst2))*(-4*pow2(Mst1)*pow2(Mt) + 4*
3556  pow2(Mst2)*pow2(Mt) + 2*(lmMst1 - lmMst2)*pow2(Mst1)*pow2(Mst2)*pow2(
3557  s2t) + pow2(s2t)*(pow4(Mst1) - pow4(Mst2)))*pow4(Mst2) - 12*pow2(Mt)*(
3558  45*Dmsqst2*pow2(Mst1)*(3*Mgl*pow3(Dmsqst2) + 4*(2*Dmglst2 - 5*Mgl)*(
3559  pow2(Mst1) - pow2(Mst2))*pow4(Mst2)) - 4*pow2(Mst2)*(2*Dmglst2*((52 +
3560  370*lmMst2 - 96*lmMst2*pow2(lmMst1) + 81*pow2(lmMst2) + 96*lmMst1*(-1 +
3561  lmMst2 + 2*pow2(lmMst2)) - 96*pow3(lmMst2))*pow4(Mst1)*pow4(Mst2) - 96*
3562  (lmMst2*pow2(lmMst1) + lmMst1*(4 + 2*lmMst2 - 2*pow2(lmMst2)) + (-4 +
3563  lmMst2)*pow2(1 + lmMst2))*pow2(Mst2)*pow6(Mst1) - 3*(-52 + 2*(51 + 16*
3564  lmMst1)*lmMst2 + 59*pow2(lmMst2))*pow2(Mst1)*pow6(Mst2) - 96*(-6 - 14*
3565  lmMst2 + lmMst2*pow2(lmMst1) + lmMst1*(9 + 6*lmMst2 - 2*pow2(lmMst2)) -
3566  6*pow2(lmMst2) + pow3(lmMst2))*pow8(Mst1) + 96*lmMst2*(1 + lmMst2)*
3567  pow8(Mst2)) - 3*Mgl*(-((109 + 76*lmMst2 - 21*pow2(lmMst2) + 64*lmMst1*
3568  pow2(1 + lmMst2) - 32*((1 + lmMst2)*pow2(lmMst1) + pow3(lmMst2)))*pow4(
3569  Mst1)*pow4(Mst2)) + (173 + 188*lmMst2 + 32*lmMst1*(1 + lmMst2) + 59*
3570  pow2(lmMst2))*pow2(Mst1)*pow6(Mst2) + 32*(1 + lmMst2)*(pow2(1 - lmMst1
3571  + lmMst2)*pow2(Mst2)*pow6(Mst1) + (1 + 3*lmMst2 - lmMst1*(3 + 2*lmMst2)
3572  + pow2(lmMst1) + pow2(lmMst2))*pow8(Mst1)) - 16*pow2(1 + lmMst2)*pow8(
3573  Mst2)))))) + 18*Mt*MuSUSY*s2t*(8*Dmglst2*Mst2*((15*Dmsqst2*(1 - 2*
3574  lmMst1 + 2*lmMst2)*s2t + 64*Mst2*Mt*(8 + 7*lmMst2 - 11*pow2(lmMst2) +
3575  lmMst1*(-3 + 5*lmMst2 + 6*pow2(lmMst2)) - 6*pow3(lmMst2)) - s2t*pow2(
3576  Mst2)*(60 + 206*lmMst2 + 32*lmMst2*pow2(lmMst1) + lmMst1*(8 - 460*
3577  lmMst2 - 246*pow2(lmMst2)) + 519*pow2(lmMst2) + 214*pow3(lmMst2)))*
3578  pow3(Mst2)*pow4(Mst1) + pow2(Mst1)*(15*Dmsqst2*s2t - 64*Mst2*Mt*(-1 +
3579  2*lmMst2 + 3*pow2(lmMst2)) - s2t*(-20 + 2*(99 + 16*lmMst1)*lmMst2 +
3580  123*pow2(lmMst2))*pow2(Mst2))*pow5(Mst2) + 2*(Mst2*(15*Dmsqst2*(-lmMst1
3581  + lmMst2)*s2t + 64*Mst2*Mt*(8 + 13*lmMst2 - 8*pow2(lmMst2) + lmMst1*(-5
3582  + 5*lmMst2 + 6*pow2(lmMst2)) - 6*pow3(lmMst2)) - s2t*pow2(Mst2)*(48 +
3583  124*lmMst2 + 144*lmMst2*pow2(lmMst1) + 278*pow2(lmMst2) - lmMst1*(44 +
3584  278*lmMst2 + 379*pow2(lmMst2)) + 235*pow3(lmMst2)))*pow6(Mst1) + (16*
3585  Mt*(49 + 103*lmMst2 - 36*(1 + lmMst2)*pow2(lmMst2) + 4*lmMst1*(-11 + 6*
3586  lmMst2 + 9*pow2(lmMst2))) - Mst2*s2t*(48 + 4*lmMst2*(45 + 68*pow2(
3587  lmMst1)) + 310*pow2(lmMst2) - lmMst1*(92 + 310*lmMst2 + 635*pow2(
3588  lmMst2)) + 363*pow3(lmMst2)))*pow8(Mst1)) + 32*lmMst2*(1 + lmMst2)*s2t*
3589  pow9(Mst2)) + Mgl*(-4*(128*(1 + lmMst2)*Mst2*Mt*(1 + 5*lmMst2 - lmMst1*
3590  (3 + 2*lmMst2) + 2*pow2(lmMst2)) + s2t*(15*Dmsqst2*(1 - 2*lmMst1 + 2*
3591  lmMst2)*(5 - 9*shiftst1) + pow2(Mst2)*(189 + 726*lmMst2 - 135*(1 + 2*
3592  lmMst2)*shiftst1 + 32*(1 + lmMst2)*pow2(lmMst1) + 707*pow2(lmMst2) - 2*
3593  lmMst1*(253 + 332*lmMst2 - 135*shiftst1 + 123*pow2(lmMst2)) + 214*pow3(
3594  lmMst2))))*pow4(Mst1)*pow4(Mst2) + 8*(pow2(Mst2)*(64*(1 + lmMst2)*Mst2*
3595  Mt*(1 - 10*lmMst2 + 4*lmMst1*(2 + lmMst2) - 4*pow2(lmMst2)) + s2t*(15*
3596  Dmsqst2*(lmMst1 - lmMst2)*(5 - 9*shiftst1) - pow2(Mst2)*(32 + 15*
3597  lmMst2*(19 - 9*shiftst1) + 144*(1 + lmMst2)*pow2(lmMst1) + 444*pow2(
3598  lmMst2) - lmMst1*(253 + 588*lmMst2 - 135*shiftst1 + 379*pow2(lmMst2)) +
3599  235*pow3(lmMst2))))*pow6(Mst1) + (-15*Dmsqst2*(lmMst1 - lmMst2)*s2t*(-5
3600  + 9*shiftst1) + 32*(1 + lmMst2)*Mst2*Mt*(7 - 32*lmMst2 + 4*lmMst1*(7 +
3601  3*lmMst2) - 12*pow2(lmMst2)) - s2t*pow2(Mst2)*(40 + 277*lmMst2 - 135*
3602  lmMst2*shiftst1 + 272*(1 + lmMst2)*pow2(lmMst1) + 556*pow2(lmMst2) -
3603  lmMst1*(237 + 828*lmMst2 - 135*shiftst1 + 635*pow2(lmMst2)) + 363*pow3(
3604  lmMst2)))*pow8(Mst1)) - pow2(Mst1)*(512*Mt*pow2(1 + lmMst2)*pow7(Mst2)
3605  + s2t*(45*pow4(Dmsqst2) + 60*Dmsqst2*(5 - 9*shiftst1)*pow6(Mst2) + 4*(
3606  205 + 252*lmMst2 + 32*lmMst1*(1 + lmMst2) - 135*shiftst1 + 91*pow2(
3607  lmMst2))*pow8(Mst2))) + 64*s2t*pow2(1 + lmMst2)*power10(Mst2)))))/pow4(
3608  Mst1)))/pow2(Mgl)))/pow6(Mst2))/Tbeta))/11664.;
3609 }
3610 
3611 /**
3612  * @return returns the susy log^0 term of Mh^2 @ O(at*as^2) without any log(mu^2) terms normalized to DO (H3m*12/Mt^4/Sbeta^2)
3613  */
3615 
3616  const double result =
3617  (55566000*pow2(Mst2)*pow3(log(pow2(Mst1)/pow2(Mst2)))*pow4(Mst1)*(-4*
3618  Dmglst2*Mgl*(pow4(Mst1)*(-2896*pow2(Mst2)*pow2(Mt)*pow2(s2t) - 2016*
3619  Mst2*s2t*pow3(Mt) - 672*Mt*pow3(Mst2)*pow3(s2t) + 7424*pow4(Mt) - 33*
3620  pow4(Mst2)*pow4(s2t)) - 2*pow2(Mst1)*pow2(Mst2)*(1156*pow2(Mst2)*pow2(
3621  Mt)*pow2(s2t) + 384*Mst2*s2t*pow3(Mt) + 390*Mt*pow3(Mst2)*pow3(s2t) -
3622  2632*pow4(Mt) + 29*pow4(Mst2)*pow4(s2t)) - 3*pow4(Mst2)*(256*pow2(Mst2)
3623  *pow2(Mt)*pow2(s2t) - 784*Mst2*s2t*pow3(Mt) + 516*Mt*pow3(Mst2)*pow3(
3624  s2t) - 512*pow4(Mt) + 107*pow4(Mst2)*pow4(s2t))) + pow2(Dmglst2)*(4*
3625  pow4(Mst1)*(2896*pow2(Mst2)*pow2(Mt)*pow2(s2t) + 2016*Mst2*s2t*pow3(Mt)
3626  + 672*Mt*pow3(Mst2)*pow3(s2t) - 7424*pow4(Mt) + 33*pow4(Mst2)*pow4(s2t)
3627  ) + 4*pow2(Mst1)*pow2(Mst2)*(3452*pow2(Mst2)*pow2(Mt)*pow2(s2t) - 768*
3628  Mst2*s2t*pow3(Mt) + 780*Mt*pow3(Mst2)*pow3(s2t) - 440*pow4(Mt) + 97*
3629  pow4(Mst2)*pow4(s2t)) + 6*pow4(Mst2)*(768*pow2(Mst2)*pow2(Mt)*pow2(s2t)
3630  - 1568*Mst2*s2t*pow3(Mt) + 1800*Mt*pow3(Mst2)*pow3(s2t) - 1536*pow4(Mt)
3631  + 321*pow4(Mst2)*pow4(s2t))) + pow2(Mgl)*(4*pow2(Mst1)*pow2(Mst2)*(
3632  1166*pow2(Mst2)*pow2(Mt)*pow2(s2t) - 2304*Mst2*s2t*pow3(Mt) + 780*Mt*
3633  pow3(Mst2)*pow3(s2t) - 440*pow4(Mt) + 115*pow4(Mst2)*pow4(s2t)) + 3*
3634  pow4(Mst2)*(56*pow2(Mst2)*pow2(Mt)*pow2(s2t) - 3136*Mst2*s2t*pow3(Mt) +
3635  1040*Mt*pow3(Mst2)*pow3(s2t) + 32*pow4(Mt) + 271*pow4(Mst2)*pow4(s2t))
3636  + pow4(Mst1)*(2696*pow2(Mst2)*pow2(Mt)*pow2(s2t) - 7808*Mst2*s2t*pow3(
3637  Mt) + 3200*Mt*pow3(Mst2)*pow3(s2t) - 6400*pow4(Mt) + 409*pow4(Mst2)*
3638  pow4(s2t)))) + 30*pow2(Dmsqst2)*pow2(Mgl)*pow2(Mst1)*(166698000*(-2 +
3639  z2)*pow2(-4*pow2(Mt) + pow2(Mst2)*pow2(s2t))*pow4(Mst2) - 385875*pow2(
3640  Mst1)*pow2(Mst2)*(-8*pow2(Mst2)*pow2(Mt)*pow2(s2t)*(-160 + 64*OepS2 -
3641  648*S2 - 96*T1ep - 2076*z2 + 903*z3 - 48*z4 - 72*pow2(z2)) + 3456*Mst2*
3642  s2t*(-15 + 20*z2 - 16*z3)*pow3(Mt) + 6912*Mt*(-3 + 3*z2 - z3)*pow3(
3643  Mst2)*pow3(s2t) + (99040 - 89856*z2 + 32400*z3)*pow4(Mt) + (2122 + 128*
3644  OepS2 - 55728*S2 - 192*T1ep - 4152*z2 + 13209*z3 - 96*z4 - 144*pow2(z2)
3645  )*pow4(Mst2)*pow4(s2t)) + 2058*pow4(Mst1)*(4*pow2(Mst2)*pow2(Mt)*pow2(
3646  s2t)*(487028 + 40000*OepS2 - 1917000*S2 - 60000*T1ep - 1081500*z2 -
3647  2625*z3 - 30000*z4 - 45000*pow2(z2)) - 2592000*Mst2*s2t*(-11 + 14*z2 -
3648  8*z3)*pow3(Mt) + 1296000*Mt*(-2 + z2 + z3)*pow3(Mst2)*pow3(s2t) + 288*(
3649  -176473 + 202500*z2 - 90000*z3)*pow4(Mt) + (1932736 - 64000*OepS2 +
3650  3294000*S2 + 96000*T1ep + 726000*z2 - 710625*z3 + 48000*z4 + 72000*
3651  pow2(z2))*pow4(Mst2)*pow4(s2t)) - 5*pow2(s2t)*(-100018800*Mst2*Mt*s2t*(
3652  -23 + 30*z2 - 20*z3) + pow2(Mst2)*pow2(s2t)*(76781738 + 15366400*OepS2
3653  - 837194400*S2 - 23049600*T1ep - 207652200*z2 - 63103425*z3 - 11524800*
3654  z4 - 17287200*pow2(z2)) - 600*pow2(Mt)*(109760*OepS2 - 3*(1281429 +
3655  1720488*S2 + 54880*T1ep + 44590*z2 - 303212*z3 + 27440*z4 + 41160*pow2(
3656  z2))))*pow6(Mst1)) + 120*Dmsqst2*pow2(Mst1)*(-1543500*Dmglst2*Mgl*Mst2*
3657  (4*pow2(Mst1)*pow3(Mst2)*(36*(23 - 24*z2)*pow2(Mst2)*pow2(Mt)*pow2(s2t)
3658  + 24*Mst2*s2t*(289 - 342*z2 + 216*z3)*pow3(Mt) - 216*Mt*(-2 + 2*z2 -
3659  z3)*pow3(Mst2)*pow3(s2t) + 8*(-1477 + 1242*z2 - 540*z3)*pow4(Mt) + 27*(
3660  -2 + 4*z2 - 3*z3)*pow4(Mst2)*pow4(s2t)) - 9*Mst2*pow4(Mst1)*(8*(-113 +
3661  48*z2)*pow2(Mst2)*pow2(Mt)*pow2(s2t) + 192*Mst2*s2t*(51*z2 - 28*(2 +
3662  z3))*pow3(Mt) - 96*Mt*(5*z2 + 3*(-4 + z3))*pow3(Mst2)*pow3(s2t) - 48*(-
3663  401 + 308*z2 - 144*z3)*pow4(Mt) + 3*(-75 + 32*z2 + 8*z3)*pow4(Mst2)*
3664  pow4(s2t)) + 108*(-3 + z2)*pow2(-4*pow2(Mt) + pow2(Mst2)*pow2(s2t))*
3665  pow5(Mst2) - 6*s2t*(Mst2*s2t*(1931 - 1098*z2 - 180*z3)*pow2(Mt) - 72*
3666  Mt*(-20 + 11*z2)*pow2(Mst2)*pow2(s2t) + 72*(-465 + 348*z2 - 176*z3)*
3667  pow3(Mt) + (38 + 63*z2 - 90*z3)*pow3(Mst2)*pow3(s2t))*pow6(Mst1)) -
3668  1543500*Mst2*pow2(Dmglst2)*(4*pow2(Mst1)*pow3(Mst2)*(36*(23 - 24*z2)*
3669  pow2(Mst2)*pow2(Mt)*pow2(s2t) + 24*Mst2*s2t*(289 - 342*z2 + 216*z3)*
3670  pow3(Mt) - 216*Mt*(-2 + 2*z2 - z3)*pow3(Mst2)*pow3(s2t) + 8*(-1477 +
3671  1242*z2 - 540*z3)*pow4(Mt) + 27*(-2 + 4*z2 - 3*z3)*pow4(Mst2)*pow4(s2t)
3672  ) - 9*Mst2*pow4(Mst1)*(8*(-113 + 48*z2)*pow2(Mst2)*pow2(Mt)*pow2(s2t) +
3673  192*Mst2*s2t*(51*z2 - 28*(2 + z3))*pow3(Mt) - 96*Mt*(5*z2 + 3*(-4 + z3)
3674  )*pow3(Mst2)*pow3(s2t) - 48*(-401 + 308*z2 - 144*z3)*pow4(Mt) + 3*(-75
3675  + 32*z2 + 8*z3)*pow4(Mst2)*pow4(s2t)) + 108*(-3 + z2)*pow2(-4*pow2(Mt)
3676  + pow2(Mst2)*pow2(s2t))*pow5(Mst2) - 6*s2t*(Mst2*s2t*(1931 - 1098*z2 -
3677  180*z3)*pow2(Mt) - 72*Mt*(-20 + 11*z2)*pow2(Mst2)*pow2(s2t) + 72*(-465
3678  + 348*z2 - 176*z3)*pow3(Mt) + (38 + 63*z2 - 90*z3)*pow3(Mst2)*pow3(s2t)
3679  )*pow6(Mst1)) + pow2(Mgl)*(3087*pow2(Mst2)*pow4(Mst1)*(-8*pow2(Mst2)*
3680  pow2(Mt)*pow2(s2t)*(36449 + 4000*OepS2 - 310500*S2 - 6000*T1ep - 75750*
3681  z2 + 21000*z3 - 3000*z4 - 4500*pow2(z2)) - 864000*Mst2*s2t*(-6 + 5*z2 -
3682  4*z3)*pow3(Mt) - 432000*Mt*(1 + z2 - z3)*pow3(Mst2)*pow3(s2t) + 96*(-
3683  91321 + 54000*z2 - 36000*z3)*pow4(Mt) + (52199 + 28000*OepS2 - 3415500*
3684  S2 - 42000*T1ep - 557250*z2 + 259500*z3 - 21000*z4 - 31500*pow2(z2))*
3685  pow4(Mst2)*pow4(s2t)) + 1157625*pow2(Mst1)*pow4(Mst2)*(-4*pow2(Mst2)*
3686  pow2(Mt)*pow2(s2t)*(32*OepS2 - 3*(391 + 972*S2 + 16*T1ep + 154*z2 -
3687  232*z3 + 8*z4 + 12*pow2(z2))) - 1152*Mst2*s2t*(7 + 2*z2 - 8*z3)*pow3(
3688  Mt) - 1152*Mt*(-1 + 2*z2 - 3*z3)*pow3(Mst2)*pow3(s2t) + 64*(-103 + 108*
3689  z2 - 72*z3)*pow4(Mt) + (-1213 + 32*OepS2 + 4860*S2 - 48*T1ep - 462*z2 -
3690  276*z3 - 24*z4 - 36*pow2(z2))*pow4(Mst2)*pow4(s2t)) + 2*(-4*pow2(Mst2)*
3691  pow2(Mt)*pow2(s2t)*(-22430251 + 5488000*OepS2 - 324135000*S2 - 8232000*
3692  T1ep - 103929000*z2 + 28812000*z3 - 4116000*z4 - 6174000*pow2(z2)) -
3693  333396000*Mst2*s2t*(-35 + 20*z2 - 16*z3)*pow3(Mt) + 333396000*Mt*(-2 +
3694  z2)*pow3(Mst2)*pow3(s2t) + 3456*(-6582784 + 2701125*z2 - 2315250*z3)*
3695  pow4(Mt) + (378483467 + 9604000*OepS2 - 754771500*S2 - 14406000*T1ep -
3696  306899250*z2 + 133770000*z3 - 7203000*z4 - 10804500*pow2(z2))*pow4(
3697  Mst2)*pow4(s2t))*pow6(Mst1) + 41674500*(1 + 2*z2)*pow2(-4*pow2(Mt) +
3698  pow2(Mst2)*pow2(s2t))*pow6(Mst2))) + pow2(Mst2)*(4*Dmglst2*Mgl*pow2(
3699  Mst1)*(-1764*pow2(Mst2)*pow4(Mst1)*(-112*pow2(Mst2)*pow2(Mt)*pow2(s2t)*
3700  (1216808 + 150000*OepS2 - 376650*S2 - 225000*T1ep - 3408750*z2 -
3701  833625*z3 - 112500*z4 - 168750*pow2(z2)) + 1050*Mst2*s2t*(-322421 +
3702  73760*OepS2 - 564876*S2 - 110640*T1ep - 3060894*z2 + 1606920*z3 -
3703  55320*z4 - 82980*pow2(z2))*pow3(Mt) - 175*Mt*(27211 + 36720*B4 + 1080*
3704  DN + 64160*OepS2 - 1515564*S2 - 96240*T1ep - 1240446*z2 + 245400*z3 -
3705  12480*z4 - 72180*pow2(z2))*pow3(Mst2)*pow3(s2t) - 8*(98884301 +
3706  4508000*OepS2 - 17853750*S2 - 6762000*T1ep - 477659550*z2 + 302883000*
3707  z3 - 3381000*z4 - 5071500*pow2(z2))*pow4(Mt) - 7*(-95041 + 81000*B4 -
3708  108000*D3 + 67500*DN - 432000*OepS2 - 7425000*S2 + 648000*T1ep +
3709  5325300*z2 + 4227750*z3 - 121500*z4)*pow4(Mst2)*pow4(s2t)) - 66150*
3710  pow2(Mst1)*pow4(Mst2)*(672*(-11674 + 120*B4 - 120*D3 + 60*DN + 17091*S2
3711  + 4849*z2 + 2195*z3 - 540*z4)*pow2(Mst2)*pow2(Mt)*pow2(s2t) + 140*Mst2*
3712  s2t*(1120*OepS2 + 3*(-10061 + 14580*S2 - 560*T1ep - 25134*z2 + 72*z3 +
3713  2024*z4 - 420*pow2(z2)))*pow3(Mt) - 7*Mt*(69997 + 188640*B4 - 3600*DN +
3714  5600*OepS2 + 146772*S2 - 8400*T1ep - 1043682*z2 + 1816440*z3 + 32520*z4
3715  - 317340*pow2(z2))*pow3(Mst2)*pow3(s2t) - 16*(1547066 + 7840*OepS2 +
3716  258066*S2 - 11760*T1ep - 1256046*z2 - 946785*z3 - 5880*z4 - 8820*pow2(
3717  z2))*pow4(Mt) + 35*(-15707 + 432*B4 - 576*D3 + 360*DN + 224*OepS2 +
3718  543348*S2 - 336*T1ep - 11802*z2 - 105690*z3 - 2544*z4 - 2844*pow2(z2))*
3719  pow4(Mst2)*pow4(s2t)) + (72*pow2(Mst2)*pow2(Mt)*pow2(s2t)*(-3650009897
3720  + 2110136000*OepS2 - 52385772600*S2 - 3165204000*T1ep - 40405228500*z2
3721  + 755286000*z3 - 1582602000*z4 - 2373903000*pow2(z2)) - 274400*Mst2*
3722  s2t*(-20964397 + 2058400*OepS2 - 47545272*S2 - 3087600*T1ep - 59449002*
3723  z2 + 39214920*z3 - 1543800*z4 - 2315700*pow2(z2))*pow3(Mt) + 17150*Mt*(
3724  -31897243 + 2491360*OepS2 - 90290268*S2 - 3737040*T1ep - 51499698*z2 +
3725  33912840*z3 - 1868520*z4 - 2802780*pow2(z2))*pow3(Mst2)*pow3(s2t) + 80*
3726  (-54946675289 + 3063401600*OepS2 - 52952863320*S2 - 4595102400*T1ep -
3727  225236187120*z2 + 243414477600*z3 - 2297551200*z4 - 3446326800*pow2(z2)
3728  )*pow4(Mt) + (119405394763 - 11522056000*OepS2 + 478191735000*S2 +
3729  17283084000*T1ep + 233890773900*z2 - 111792103500*z3 + 8641542000*z4 +
3730  12962313000*pow2(z2))*pow4(Mst2)*pow4(s2t))*pow6(Mst1) - 333396000*(2*
3731  Mt + Mst2*s2t)*(14*Mt*(3 + z2) + Mst2*s2t*(5 + 7*z2))*pow2(-2*Mt +
3732  Mst2*s2t)*pow6(Mst2)) + 3*pow2(Mgl)*(308700*pow4(Mst1)*pow4(Mst2)*(2*
3733  pow2(Mst2)*pow2(Mt)*pow2(s2t)*(1013263 + 2880*D3 - 2880*DN - 25440*
3734  OepS2 - 137052*S2 + 38160*T1ep + 35562*z2 + 83160*z3 + 36360*z4 +
3735  28620*pow2(z2)) + 24*Mst2*s2t*(-60759 + 1120*OepS2 + 25596*S2 - 1680*
3736  T1ep - 137386*z2 + 115320*z3 - 12360*z4 - 1260*pow2(z2))*pow3(Mt) + 30*
3737  Mt*(25611 + 5280*B4 - 48*DN - 224*OepS2 - 324*S2 + 336*T1ep - 13614*z2
3738  + 47720*z3 + 2040*z4 - 6660*pow2(z2))*pow3(Mst2)*pow3(s2t) + 8*(389597
3739  + 3360*OepS2 - 105948*S2 - 5040*T1ep + 293898*z2 - 740160*z3 - 2520*z4
3740  - 3780*pow2(z2))*pow4(Mt) - 5*(25289 + 1440*B4 - 144*D3 + 72*DN - 2208*
3741  OepS2 + 298404*S2 + 3312*T1ep + 36318*z2 - 94968*z3 + 1440*z4 - 108*
3742  pow2(z2))*pow4(Mst2)*pow4(s2t)) + 20580*pow2(Mst2)*(4*pow2(Mst2)*pow2(
3743  Mt)*pow2(s2t)*(2367149 - 21600*D3 + 21600*DN - 503200*OepS2 + 14889420*
3744  S2 + 754800*T1ep + 9292470*z2 - 66000*z3 + 247800*z4 + 566100*pow2(z2))
3745  + 40*Mst2*s2t*(-1156193 + 60320*OepS2 - 1414908*S2 - 90480*T1ep -
3746  2823942*z2 + 2907240*z3 - 45240*z4 - 67860*pow2(z2))*pow3(Mt) + 100*Mt*
3747  (51041 + 7344*B4 + 216*DN - 2336*OepS2 + 112428*S2 + 3504*T1ep + 28038*
3748  z2 - 78216*z3 + 8880*z4 + 2628*pow2(z2))*pow3(Mst2)*pow3(s2t) + 8*(
3749  7319011 + 167200*OepS2 - 6744060*S2 - 250800*T1ep + 9301170*z2 -
3750  20715000*z3 - 125400*z4 - 188100*pow2(z2))*pow4(Mt) + (-7680127 +
3751  10800*B4 - 21600*D3 + 16200*DN + 514400*OepS2 - 46307700*S2 - 771600*
3752  T1ep - 10868970*z2 + 7186200*z3 - 466800*z4 - 773100*pow2(z2))*pow4(
3753  Mst2)*pow4(s2t))*pow6(Mst1) + 55566000*pow2(Mst1)*(-8*(87 + 38*z2)*
3754  pow2(Mst2)*pow2(Mt)*pow2(s2t) - 1024*Mst2*s2t*pow3(Mt) + 256*Mt*pow3(
3755  Mst2)*pow3(s2t) + 16*(71 + 38*z2)*pow4(Mt) + (135 + 38*z2)*pow4(Mst2)*
3756  pow4(s2t))*pow6(Mst2) + (-16*pow2(Mst2)*pow2(Mt)*pow2(s2t)*(-
3757  25002374272 + 4703902000*OepS2 - 184815757350*S2 - 7055853000*T1ep -
3758  84661721025*z2 + 16805113500*z3 - 3527926500*z4 - 5291889750*pow2(z2))
3759  + 1097600*Mst2*s2t*(-2016907 + 109600*OepS2 - 3520152*S2 - 164400*T1ep
3760  - 3448554*z2 + 3465480*z3 - 82200*z4 - 123300*pow2(z2))*pow3(Mt) -
3761  68600*Mt*(-2759935 + 70240*OepS2 - 3305340*S2 - 105360*T1ep - 629034*z2
3762  + 2677800*z3 - 52680*z4 - 79020*pow2(z2))*pow3(Mst2)*pow3(s2t) + 16*(
3763  187545955063 + 3204992000*OepS2 - 128216692800*S2 - 4807488000*T1ep +
3764  129009640200*z2 - 399103824000*z3 - 2403744000*z4 - 3605616000*pow2(z2)
3765  )*pow4(Mt) + (93508520089 + 2000376000*B4 + 222264000*D3 - 222264000*DN
3766  + 4925480000*OepS2 - 312095700000*S2 - 7388220000*T1ep - 77106571500*z2
3767  + 21506100000*z3 - 2360526000*z4 - 5541165000*pow2(z2))*pow4(Mst2)*
3768  pow4(s2t))*pow8(Mst1) + 7112448000*pow2(Mt)*(-2*pow2(Mt) + pow2(Mst2)*
3769  pow2(s2t))*pow8(Mst2)) + 4*pow2(Dmglst2)*(-2205*pow4(Mst1)*pow4(Mst2)*(
3770  360*pow2(Mst2)*pow2(Mt)*pow2(s2t)*(-2818497 + 10080*B4 - 10080*D3 +
3771  5040*DN - 7840*OepS2 + 1126548*S2 + 11760*T1ep + 739362*z2 + 2068815*z3
3772  - 39480*z4 + 8820*pow2(z2)) - 40*Mst2*s2t*(-6779161 + 7840*OepS2 +
3773  3032964*S2 - 11760*T1ep - 15966294*z2 + 27128640*z3 - 731640*z4 - 8820*
3774  pow2(z2))*pow3(Mt) - 70*Mt*(-2048393 + 1058400*B4 - 23760*DN - 1120*
3775  OepS2 - 449388*S2 + 1680*T1ep - 5386422*z2 + 13314840*z3 + 149880*z4 -
3776  1864980*pow2(z2))*pow3(Mst2)*pow3(s2t) + 112*(-13292051 + 72800*OepS2 +
3777  3133890*S2 - 109200*T1ep - 9928650*z2 + 19536225*z3 - 54600*z4 - 81900*
3778  pow2(z2))*pow4(Mt) + 35*(-1395899 + 54000*B4 - 60480*D3 + 33480*DN +
3779  5600*OepS2 + 37625796*S2 - 8400*T1ep - 481746*z2 - 6858210*z3 - 266640*
3780  z4 - 122940*pow2(z2))*pow4(Mst2)*pow4(s2t)) - 294*pow2(Mst2)*(-12*pow2(
3781  Mst2)*pow2(Mt)*pow2(s2t)*(273721621 + 16716000*OepS2 - 343302300*S2 -
3782  25074000*T1ep - 610971750*z2 + 71859375*z3 - 12537000*z4 - 18805500*
3783  pow2(z2)) - 100*Mst2*s2t*(79386499 + 4823840*OepS2 + 82155924*S2 -
3784  7235760*T1ep - 287072094*z2 + 104826120*z3 - 3617880*z4 - 5426820*pow2(
3785  z2))*pow3(Mt) - 3500*Mt*(280885 + 11016*B4 + 324*DN - 24544*OepS2 -
3786  89856*S2 + 36816*T1ep + 858030*z2 - 343020*z3 + 29100*z4 + 27612*pow2(
3787  z2))*pow3(Mst2)*pow3(s2t) + 8*(55610713 + 131684000*OepS2 + 173875950*
3788  S2 - 197526000*T1ep - 7894319250*z2 + 4687557000*z3 - 98763000*z4 -
3789  148144500*pow2(z2))*pow4(Mt) - 7*(-22023067 + 729000*B4 - 972000*D3 +
3790  607500*DN - 320000*OepS2 - 120274200*S2 + 480000*T1ep - 23129700*z2 +
3791  92516250*z3 - 3769500*z4 - 4014000*pow2(z2))*pow4(Mst2)*pow4(s2t))*
3792  pow6(Mst1) + 166698000*pow2(Mst1)*(8*(205 - 12*z2)*pow2(Mst2)*pow2(Mt)*
3793  pow2(s2t) + 1024*Mst2*s2t*pow3(Mt) - 256*Mt*pow3(Mst2)*pow3(s2t) + 16*(
3794  -197 + 12*z2)*pow4(Mt) + (-245 + 12*z2)*pow4(Mst2)*pow4(s2t))*pow6(
3795  Mst2) + (72*pow2(Mst2)*pow2(Mt)*pow2(s2t)*(-3650009897 + 2110136000*
3796  OepS2 - 52385772600*S2 - 3165204000*T1ep - 40405228500*z2 + 755286000*
3797  z3 - 1582602000*z4 - 2373903000*pow2(z2)) - 274400*Mst2*s2t*(-20964397
3798  + 2058400*OepS2 - 47545272*S2 - 3087600*T1ep - 59449002*z2 + 39214920*
3799  z3 - 1543800*z4 - 2315700*pow2(z2))*pow3(Mt) + 17150*Mt*(-31897243 +
3800  2491360*OepS2 - 90290268*S2 - 3737040*T1ep - 51499698*z2 + 33912840*z3
3801  - 1868520*z4 - 2802780*pow2(z2))*pow3(Mst2)*pow3(s2t) + 80*(-
3802  54946675289 + 3063401600*OepS2 - 52952863320*S2 - 4595102400*T1ep -
3803  225236187120*z2 + 243414477600*z3 - 2297551200*z4 - 3446326800*pow2(z2)
3804  )*pow4(Mt) + (119405394763 - 11522056000*OepS2 + 478191735000*S2 +
3805  17283084000*T1ep + 233890773900*z2 - 111792103500*z3 + 8641542000*z4 +
3806  12962313000*pow2(z2))*pow4(Mst2)*pow4(s2t))*pow8(Mst1) + 2667168000*
3807  pow2(-4*pow2(Mt) + pow2(Mst2)*pow2(s2t))*pow8(Mst2))) + 1260*log(pow2(
3808  Mst1)/pow2(Mst2))*(30*pow2(Dmsqst2)*pow2(Mgl)*pow4(Mst1)*(5*pow2(s2t)*(
3809  -26460*Mst2*Mt*s2t*(-121 + 60*z2) + 30*(-20869 + 35280*S2 + 5292*z2)*
3810  pow2(Mt) + (-8753 - 246960*S2 + 79380*z2)*pow2(Mst2)*pow2(s2t))*pow4(
3811  Mst1) + 294*pow2(Mst1)*(8*(-887 + 2250*S2)*pow2(Mst2)*pow2(Mt)*pow2(
3812  s2t) - 57600*Mst2*s2t*(-3 + 2*z2)*pow3(Mt) + 7200*Mt*(-2 + z2)*pow3(
3813  Mst2)*pow3(s2t) + 48*(-3871 + 3000*z2)*pow4(Mt) + (1837 - 7200*S2 -
3814  900*z2)*pow4(Mst2)*pow4(s2t)) - 14700*pow2(Mst2)*(-24*(2 + 9*S2)*pow2(
3815  Mst2)*pow2(Mt)*pow2(s2t) + 144*Mst2*s2t*(-15 + 8*z2)*pow3(Mt) - 144*Mt*
3816  (-2 + z2)*pow3(Mst2)*pow3(s2t) + (1460 - 864*z2)*pow4(Mt) + 3*(-1 + 18*
3817  S2 + 3*z2)*pow4(Mst2)*pow4(s2t))) + 120*Dmsqst2*pow2(Mst1)*(-3675*
3818  Dmglst2*Mgl*Mst2*pow2(Mst1)*(-3*s2t*(2*Mst2*s2t*(37 - 60*z2)*pow2(Mt) +
3819  72*Mt*pow2(Mst2)*pow2(s2t) + 1056*(-17 + 8*z2)*pow3(Mt) + (83 - 60*z2)*
3820  pow3(Mst2)*pow3(s2t))*pow4(Mst1) + 4*pow3(Mst2)*(-48*Mst2*s2t*(-59 +
3821  36*z2)*pow3(Mt) + 72*Mt*(-5 + 3*z2)*pow3(Mst2)*pow3(s2t) + 4*(-571 +
3822  360*z2)*pow4(Mt) + 9*(2 - 3*z2)*pow4(Mst2)*pow4(s2t)) - 18*Mst2*pow2(
3823  Mst1)*(-8*pow2(Mst2)*pow2(Mt)*pow2(s2t) + 128*Mst2*s2t*(-12 + 7*z2)*
3824  pow3(Mt) + 16*Mt*(5 - 3*z2)*pow3(Mst2)*pow3(s2t) - 16*(-137 + 72*z2)*
3825  pow4(Mt) + (-13 + 4*z2)*pow4(Mst2)*pow4(s2t))) - 3675*Mst2*pow2(
3826  Dmglst2)*pow2(Mst1)*(-3*s2t*(2*Mst2*s2t*(37 - 60*z2)*pow2(Mt) + 72*Mt*
3827  pow2(Mst2)*pow2(s2t) + 1056*(-17 + 8*z2)*pow3(Mt) + (83 - 60*z2)*pow3(
3828  Mst2)*pow3(s2t))*pow4(Mst1) + 4*pow3(Mst2)*(-48*Mst2*s2t*(-59 + 36*z2)*
3829  pow3(Mt) + 72*Mt*(-5 + 3*z2)*pow3(Mst2)*pow3(s2t) + 4*(-571 + 360*z2)*
3830  pow4(Mt) + 9*(2 - 3*z2)*pow4(Mst2)*pow4(s2t)) - 18*Mst2*pow2(Mst1)*(-8*
3831  pow2(Mst2)*pow2(Mt)*pow2(s2t) + 128*Mst2*s2t*(-12 + 7*z2)*pow3(Mt) +
3832  16*Mt*(5 - 3*z2)*pow3(Mst2)*pow3(s2t) - 16*(-137 + 72*z2)*pow4(Mt) + (-
3833  13 + 4*z2)*pow4(Mst2)*pow4(s2t))) + pow2(Mgl)*(22050*pow2(Mst1)*pow4(
3834  Mst2)*(-4*(16 + 27*S2)*pow2(Mst2)*pow2(Mt)*pow2(s2t) - 96*Mst2*s2t*(-5
3835  + 4*z2)*pow3(Mt) + 48*Mt*(-1 + z2)*pow3(Mst2)*pow3(s2t) + 16*(-23 + 12*
3836  z2)*pow4(Mt) + (17 + 27*S2)*pow4(Mst2)*pow4(s2t)) + 441*pow2(Mst2)*
3837  pow4(Mst1)*(-8*(-517 + 450*S2)*pow2(Mst2)*pow2(Mt)*pow2(s2t) - 19200*
3838  Mst2*s2t*(-2 + z2)*pow3(Mt) + 2400*Mt*(-1 + z2)*pow3(Mst2)*pow3(s2t) +
3839  16*(-3067 + 1200*z2)*pow4(Mt) + (-317 + 3150*S2 - 300*z2)*pow4(Mst2)*
3840  pow4(s2t)) + (16*(58853 - 44100*S2)*pow2(Mst2)*pow2(Mt)*pow2(s2t) -
3841  1058400*Mst2*s2t*(-25 + 8*z2)*pow3(Mt) - 264600*Mt*pow3(Mst2)*pow3(s2t)
3842  + 288*(-175121 + 44100*z2)*pow4(Mt) + (-621671 + 308700*S2 + 132300*z2)
3843  *pow4(Mst2)*pow4(s2t))*pow6(Mst1) - 66150*pow2(-4*pow2(Mt) + pow2(Mst2)
3844  *pow2(s2t))*pow6(Mst2))) + pow2(Mst2)*(3*pow2(Mgl)*(9800*pow4(Mst1)*
3845  pow4(Mst2)*(-6*(-4534 + 4293*S2 + 1830*z2 - 72*z3)*pow2(Mst2)*pow2(Mt)*
3846  pow2(s2t) + 72*Mst2*s2t*(26 + 189*S2 - 758*z2)*pow3(Mt) - 126*Mt*(-208
3847  + 27*S2 - 2*z2)*pow3(Mst2)*pow3(s2t) + 8*(-553 + 1701*S2 + 4023*z2 +
3848  108*z3)*pow4(Mt) + 3*(1148 + 1863*S2 + 276*z2 - 18*z3)*pow4(Mst2)*pow4(
3849  s2t)) + 1960*pow2(Mst2)*(-4*(-52322 + 84915*S2 + 3060*z2 + 540*z3)*
3850  pow2(Mst2)*pow2(Mt)*pow2(s2t) + 1080*Mst2*s2t*(42 + 377*S2 - 330*z2)*
3851  pow3(Mt) - 180*Mt*(221 + 219*S2 - 234*z2)*pow3(Mst2)*pow3(s2t) + 8*(-
3852  22352 + 28215*S2 + 36270*z2)*pow4(Mt) + (-16051 + 86805*S2 - 8325*z2)*
3853  pow4(Mst2)*pow4(s2t))*pow6(Mst1) + 88200*pow2(Mst1)*(-616*pow2(Mst2)*
3854  pow2(Mt)*pow2(s2t) - 1024*Mst2*s2t*pow3(Mt) + 256*Mt*pow3(Mst2)*pow3(
3855  s2t) + 976*pow4(Mt) + 125*pow4(Mst2)*pow4(s2t))*pow6(Mst2) + (-24*(-
3856  19407863 + 50398950*S2 + 2866500*z2)*pow2(Mst2)*pow2(Mt)*pow2(s2t) +
3857  940800*Mst2*s2t*(167 + 2055*S2 - 912*z2)*pow3(Mt) - 58800*Mt*(46 +
3858  1317*S2 - 918*z2)*pow3(Mst2)*pow3(s2t) + 32*(-35585111 + 25754400*S2 +
3859  32281200*z2)*pow4(Mt) + 3*(-23468297 + 26386500*S2 + 661500*z2 +
3860  176400*z3)*pow4(Mst2)*pow4(s2t))*pow8(Mst1) + 11289600*pow2(Mt)*(-2*
3861  pow2(Mt) + pow2(Mst2)*pow2(s2t))*pow8(Mst2)) + 4*Dmglst2*Mgl*(-14700*
3862  pow4(Mst1)*pow4(Mst2)*(12*(-3427 + 1782*z2)*pow2(Mst2)*pow2(Mt)*pow2(
3863  s2t) + 4*Mst2*s2t*(-8398 + 2835*S2 - 3258*z2)*pow3(Mt) - 9*Mt*(1640 +
3864  315*S2 - 1146*z2)*pow3(Mst2)*pow3(s2t) + (26276 - 9072*S2 + 28224*z2)*
3865  pow4(Mt) + 9*(277 + 63*S2 - 140*z2)*pow4(Mst2)*pow4(s2t)) - 294*pow2(
3866  Mst2)*(-8*(77657 + 202500*S2 - 55800*z2)*pow2(Mst2)*pow2(Mt)*pow2(s2t)
3867  + 200*Mst2*s2t*(-11408 + 37341*S2 - 17730*z2)*pow3(Mt) - 300*Mt*(-503 +
3868  3609*S2 - 1494*z2)*pow3(Mst2)*pow3(s2t) - 48*(8581 + 72450*S2 - 137700*
3869  z2)*pow4(Mt) + (-81643 + 291600*S2 + 5850*z2)*pow4(Mst2)*pow4(s2t))*
3870  pow6(Mst1) + 132300*pow2(Mst1)*(-536*pow2(Mst2)*pow2(Mt)*pow2(s2t) -
3871  512*Mst2*s2t*pow3(Mt) + 128*Mt*pow3(Mst2)*pow3(s2t) + 560*pow4(Mt) +
3872  131*pow4(Mst2)*pow4(s2t))*pow6(Mst2) + (72*(-4261807 + 33912900*S2 -
3873  73500*z2)*pow2(Mst2)*pow2(Mt)*pow2(s2t) - 78400*Mst2*s2t*(-4724 +
3874  115785*S2 - 29484*z2)*pow3(Mt) + 4900*Mt*(18652 + 140139*S2 - 38826*z2)
3875  *pow3(Mst2)*pow3(s2t) + 80*(42300121 + 49233240*S2 - 64139040*z2)*pow4(
3876  Mt) + (8287903 - 185175900*S2 + 9525600*z2)*pow4(Mst2)*pow4(s2t))*pow8(
3877  Mst1) + 16934400*pow2(Mt)*(-2*pow2(Mt) + pow2(Mst2)*pow2(s2t))*pow8(
3878  Mst2)) + 4*pow2(Dmglst2)*(-294*pow4(Mst1)*pow4(Mst2)*(-300*(13339 +
3879  1134*S2 - 9870*z2)*pow2(Mst2)*pow2(Mt)*pow2(s2t) - 600*Mst2*s2t*(8618 +
3880  63*S2 - 3354*z2)*pow3(Mt) + 150*Mt*(-3164 + 63*S2 + 3978*z2)*pow3(Mst2)
3881  *pow3(s2t) + 8*(50551 + 122850*S2 - 149400*z2)*pow4(Mt) + 75*(3050 +
3882  315*S2 - 222*z2)*pow4(Mst2)*pow4(s2t)) - 147*pow2(Mst2)*(-8*(463453 +
3883  805950*S2 - 632700*z2)*pow2(Mst2)*pow2(Mt)*pow2(s2t) - 3600*Mst2*s2t*(
3884  2555 + 4307*S2 - 3542*z2)*pow3(Mt) + 200*Mt*(-3449 + 13806*S2 + 4392*
3885  z2)*pow3(Mst2)*pow3(s2t) + 16*(-297379 + 2116350*S2 - 1349100*z2)*pow4(
3886  Mt) + 3*(-165199 + 24000*S2 + 20250*z2)*pow4(Mst2)*pow4(s2t))*pow6(
3887  Mst1) + 66150*pow2(Mst1)*(-664*pow2(Mst2)*pow2(Mt)*pow2(s2t) + 1024*
3888  Mst2*s2t*pow3(Mt) - 256*Mt*pow3(Mst2)*pow3(s2t) - 208*pow4(Mt) + 211*
3889  pow4(Mst2)*pow4(s2t))*pow6(Mst2) + (72*(-4261807 + 33912900*S2 - 73500*
3890  z2)*pow2(Mst2)*pow2(Mt)*pow2(s2t) - 78400*Mst2*s2t*(-4724 + 115785*S2 -
3891  29484*z2)*pow3(Mt) + 4900*Mt*(18652 + 140139*S2 - 38826*z2)*pow3(Mst2)*
3892  pow3(s2t) + 80*(42300121 + 49233240*S2 - 64139040*z2)*pow4(Mt) + (
3893  8287903 - 185175900*S2 + 9525600*z2)*pow4(Mst2)*pow4(s2t))*pow8(Mst1) +
3894  1058400*(8*pow2(Mst2)*pow2(Mt)*pow2(s2t) - 16*pow4(Mt) + pow4(Mst2)*
3895  pow4(s2t))*pow8(Mst2)))) + 1587600*pow2(log(pow2(Mst1)/pow2(Mst2)))*(
3896  90*pow2(Dmsqst2)*pow2(Mgl)*pow4(Mst1)*(-280*pow2(Mst2)*pow4(Mt) + 15*
3897  pow4(Mst1)*(12*pow2(Mt)*pow2(s2t) - 5*pow2(Mst2)*pow4(s2t)) + 14*pow2(
3898  Mst1)*(14*pow2(Mst2)*pow2(Mt)*pow2(s2t) + 32*pow4(Mt) - 3*pow4(Mst2)*
3899  pow4(s2t))) + pow2(Mst2)*(-2*Dmglst2*Mgl*(-140*pow4(Mst1)*pow4(Mst2)*(
3900  1806*pow2(Mst2)*pow2(Mt)*pow2(s2t) + 1592*Mst2*s2t*pow3(Mt) + 1104*Mt*
3901  pow3(Mst2)*pow3(s2t) - 3808*pow4(Mt) + 213*pow4(Mst2)*pow4(s2t)) + 7*
3902  pow2(Mst2)*(-12992*pow2(Mst2)*pow2(Mt)*pow2(s2t) - 175520*Mst2*s2t*
3903  pow3(Mt) + 3600*Mt*pow3(Mst2)*pow3(s2t) + 285744*pow4(Mt) + 4969*pow4(
3904  Mst2)*pow4(s2t))*pow6(Mst1) - 105*pow2(Mst1)*(-728*pow2(Mst2)*pow2(Mt)*
3905  pow2(s2t) - 1536*Mst2*s2t*pow3(Mt) + 384*Mt*pow3(Mst2)*pow3(s2t) + 944*
3906  pow4(Mt) + 187*pow4(Mst2)*pow4(s2t))*pow6(Mst2) + (-420096*pow2(Mst2)*
3907  pow2(Mt)*pow2(s2t) - 1672160*Mst2*s2t*pow3(Mt) + 68880*Mt*pow3(Mst2)*
3908  pow3(s2t) + 3253120*pow4(Mt) + 1377*pow4(Mst2)*pow4(s2t))*pow8(Mst1) -
3909  26880*pow2(Mt)*(-2*pow2(Mt) + pow2(Mst2)*pow2(s2t))*pow8(Mst2)) + pow2(
3910  Mgl)*(70*pow4(Mst1)*pow4(Mst2)*(3192*pow2(Mst2)*pow2(Mt)*pow2(s2t) -
3911  14880*Mst2*s2t*pow3(Mt) + 5664*Mt*pow3(Mst2)*pow3(s2t) + 7744*pow4(Mt)
3912  + 1113*pow4(Mst2)*pow4(s2t)) + 560*pow2(Mst2)*(479*pow2(Mst2)*pow2(Mt)*
3913  pow2(s2t) - 2448*Mst2*s2t*pow3(Mt) + 366*Mt*pow3(Mst2)*pow3(s2t) +
3914  1136*pow4(Mt) + 23*pow4(Mst2)*pow4(s2t))*pow6(Mst1) + 105*pow2(Mst1)*(-
3915  600*pow2(Mst2)*pow2(Mt)*pow2(s2t) - 1024*Mst2*s2t*pow3(Mt) + 256*Mt*
3916  pow3(Mst2)*pow3(s2t) + 944*pow4(Mt) + 123*pow4(Mst2)*pow4(s2t))*pow6(
3917  Mst2) + 4*(73657*pow2(Mst2)*pow2(Mt)*pow2(s2t) - 316400*Mst2*s2t*pow3(
3918  Mt) + 35000*Mt*pow3(Mst2)*pow3(s2t) + 68678*pow4(Mt) + 11764*pow4(Mst2)
3919  *pow4(s2t))*pow8(Mst1) + 13440*pow2(Mt)*(-2*pow2(Mt) + pow2(Mst2)*pow2(
3920  s2t))*pow8(Mst2)) - pow2(Dmglst2)*(14*pow4(Mst1)*pow4(Mst2)*(-28380*
3921  pow2(Mst2)*pow2(Mt)*pow2(s2t) - 93600*Mst2*s2t*pow3(Mt) - 3600*Mt*pow3(
3922  Mst2)*pow3(s2t) + 9952*pow4(Mt) + 195*pow4(Mst2)*pow4(s2t)) + 7*pow2(
3923  Mst2)*(107792*pow2(Mst2)*pow2(Mt)*pow2(s2t) + 47200*Mst2*s2t*pow3(Mt) +
3924  32160*Mt*pow3(Mst2)*pow3(s2t) - 695632*pow4(Mt) + 14231*pow4(Mst2)*
3925  pow4(s2t))*pow6(Mst1) - 105*pow2(Mst1)*(-2696*pow2(Mst2)*pow2(Mt)*pow2(
3926  s2t) - 6144*Mst2*s2t*pow3(Mt) + 1536*Mt*pow3(Mst2)*pow3(s2t) + 2832*
3927  pow4(Mt) + 817*pow4(Mst2)*pow4(s2t))*pow6(Mst2) + 2*(-420096*pow2(Mst2)
3928  *pow2(Mt)*pow2(s2t) - 1672160*Mst2*s2t*pow3(Mt) + 68880*Mt*pow3(Mst2)*
3929  pow3(s2t) + 3253120*pow4(Mt) + 1377*pow4(Mst2)*pow4(s2t))*pow8(Mst1) +
3930  3360*(-40*pow2(Mst2)*pow2(Mt)*pow2(s2t) + 80*pow4(Mt) + 3*pow4(Mst2)*
3931  pow4(s2t))*pow8(Mst2))) - 90*Dmsqst2*(2240*Dmglst2*Mgl*Mst2*(-(Mst2*Mt)
3932  + 3*s2t*pow2(Mst1))*pow3(Mt)*pow6(Mst1) + 2240*Mst2*pow2(Dmglst2)*(-(
3933  Mst2*Mt) + 3*s2t*pow2(Mst1))*pow3(Mt)*pow6(Mst1) + pow2(Mgl)*pow4(Mst1)
3934  *(2*pow4(Mst1)*(74*pow2(Mst2)*pow2(Mt)*pow2(s2t) - 1120*Mst2*s2t*pow3(
3935  Mt) + 2736*pow4(Mt) - 53*pow4(Mst2)*pow4(s2t)) - 7*pow2(Mst1)*(-48*
3936  pow2(Mt)*pow2(s2t)*pow4(Mst2) - 144*pow2(Mst2)*pow4(Mt) + 31*pow4(s2t)*
3937  pow6(Mst2)) + 140*(-4*pow4(Mst2)*pow4(Mt) + pow4(s2t)*pow8(Mst2))))))/(
3938  5.00094e8*pow2(Mgl)*pow4(Mst1)*pow4(Mt)*pow6(Mst2));
3939 
3940  return result;
3941 }
3942 
3943 /**
3944  * @return returns the susy log^1 term of Mh^2 @ O(at*as^2) without any log(mu^2) terms normalized to DO (H3m*12/Mt^4/Sbeta^2)
3945  */
3947 
3948  const double result =
3949  (6000*pow2(Dmsqst2)*pow2(Mgl)*(72*(2*Mst2*s2t*(3 - 2*z2) + Mt*(-7 + 5*z2)
3950  )*pow2(Mst1) + (36*Mst2*s2t*(7 - 4*z2) + Mt*(-161 + 108*z2))*pow2(Mst2)
3951  )*pow3(Mt)*pow4(Mst1) + 450*pow2(Mst2)*pow2(log(pow2(Mst1)/pow2(Mst2)))
3952  *pow4(Mst1)*(-8*Dmglst2*Mgl*(8*Mt*(-157*Mst2*s2t*pow2(Mt) - 108*Mt*
3953  pow2(Mst2)*pow2(s2t) + 398*pow3(Mt) - 16*pow3(Mst2)*pow3(s2t))*pow4(
3954  Mst1) + pow4(Mst2)*(-320*pow2(Mst2)*pow2(Mt)*pow2(s2t) + 848*Mst2*s2t*
3955  pow3(Mt) - 532*Mt*pow3(Mst2)*pow3(s2t) + 512*pow4(Mt) - 99*pow4(Mst2)*
3956  pow4(s2t)) + pow2(Mst1)*pow2(Mst2)*(-768*pow2(Mst2)*pow2(Mt)*pow2(s2t)
3957  - 448*Mst2*s2t*pow3(Mt) - 212*Mt*pow3(Mst2)*pow3(s2t) + 1896*pow4(Mt) +
3958  35*pow4(Mst2)*pow4(s2t))) - 4*pow2(Dmglst2)*(16*Mt*(-157*Mst2*s2t*pow2(
3959  Mt) - 108*Mt*pow2(Mst2)*pow2(s2t) + 398*pow3(Mt) - 16*pow3(Mst2)*pow3(
3960  s2t))*pow4(Mst1) + pow4(Mst2)*(-960*pow2(Mst2)*pow2(Mt)*pow2(s2t) +
3961  1696*Mst2*s2t*pow3(Mt) - 1832*Mt*pow3(Mst2)*pow3(s2t) + 1536*pow4(Mt) -
3962  297*pow4(Mst2)*pow4(s2t)) + pow2(Mst1)*pow2(Mst2)*(-2304*pow2(Mst2)*
3963  pow2(Mt)*pow2(s2t) + 256*Mst2*s2t*pow3(Mt) - 424*Mt*pow3(Mst2)*pow3(
3964  s2t) + 152*pow4(Mt) + 105*pow4(Mst2)*pow4(s2t))) + pow2(Mgl)*(8*pow2(
3965  Mst1)*pow2(Mst2)*(425*pow2(Mst2)*pow2(Mt)*pow2(s2t) - 704*Mst2*s2t*
3966  pow3(Mt) + 212*Mt*pow3(Mst2)*pow3(s2t) - 76*pow4(Mt) + 3*pow4(Mst2)*
3967  pow4(s2t)) + pow4(Mst1)*(2688*pow2(Mst2)*pow2(Mt)*pow2(s2t) - 5056*
3968  Mst2*s2t*pow3(Mt) + 1024*Mt*pow3(Mst2)*pow3(s2t) - 2848*pow4(Mt) + 41*
3969  pow4(Mst2)*pow4(s2t)) + pow4(Mst2)*(296*pow2(Mst2)*pow2(Mt)*pow2(s2t) -
3970  6784*Mst2*s2t*pow3(Mt) + 2208*Mt*pow3(Mst2)*pow3(s2t) - 672*pow4(Mt) +
3971  519*pow4(Mst2)*pow4(s2t)))) + 3000*Dmsqst2*pow2(Mst1)*(8*Dmglst2*Mgl*
3972  Mst2*pow2(Mst1)*pow3(Mt)*(36*Mst2*(Mt*(33 - 18*z2) + 2*Mst2*s2t*(-12 +
3973  7*z2))*pow2(Mst1) + (Mt*(283 - 180*z2) + 12*Mst2*s2t*(-29 + 18*z2))*
3974  pow3(Mst2) + 18*s2t*(-83 + 44*z2)*pow4(Mst1)) + 8*Mst2*pow2(Dmglst2)*
3975  pow2(Mst1)*pow3(Mt)*(36*Mst2*(Mt*(33 - 18*z2) + 2*Mst2*s2t*(-12 + 7*z2)
3976  )*pow2(Mst1) + (Mt*(283 - 180*z2) + 12*Mst2*s2t*(-29 + 18*z2))*pow3(
3977  Mst2) + 18*s2t*(-83 + 44*z2)*pow4(Mst1)) + 3*pow2(Mgl)*(3*pow2(Mst2)*
3978  pow4(Mst1)*(8*pow2(Mst2)*pow2(Mt)*pow2(s2t) - 64*Mst2*s2t*(-2 + z2)*
3979  pow3(Mt) + 16*(-9 + 4*z2)*pow4(Mt) + pow4(Mst2)*pow4(s2t)) + pow2(Mst1)
3980  *pow4(Mst2)*(-48*pow2(Mst2)*pow2(Mt)*pow2(s2t) - 96*Mst2*s2t*(-3 + 2*
3981  z2)*pow3(Mt) + 32*(-8 + 3*z2)*pow4(Mt) + 3*pow4(Mst2)*pow4(s2t)) + 3*(-
3982  16*Mst2*s2t*(-9 + 4*z2)*pow3(Mt) + 8*(-31 + 12*z2)*pow4(Mt) - pow4(
3983  Mst2)*pow4(s2t))*pow6(Mst1) - 3*pow2(-4*pow2(Mt) + pow2(Mst2)*pow2(s2t)
3984  )*pow6(Mst2))) + pow2(Mst2)*(-100*Dmglst2*Mgl*(2*pow4(Mst1)*pow4(Mst2)*
3985  (12*(-3565 + 1728*z2)*pow2(Mst2)*pow2(Mt)*pow2(s2t) + 8*Mst2*s2t*(-3659
3986  + 252*z2)*pow3(Mt) + 72*Mt*(-192 + 91*z2)*pow3(Mst2)*pow3(s2t) + 44*(
3987  427 + 432*z2)*pow4(Mt) + 9*(211 - 86*z2)*pow4(Mst2)*pow4(s2t)) + 6*
3988  pow2(Mst2)*(4*(-1955 + 1152*z2)*pow2(Mst2)*pow2(Mt)*pow2(s2t) - 48*
3989  Mst2*s2t*(-13 + 262*z2)*pow3(Mt) + 24*Mt*(111 - 17*z2)*pow3(Mst2)*pow3(
3990  s2t) + 8*(-1471 + 3240*z2)*pow4(Mt) + 3*(-1 + 86*z2)*pow4(Mst2)*pow4(
3991  s2t))*pow6(Mst1) - 18*pow2(Mst1)*(-536*pow2(Mst2)*pow2(Mt)*pow2(s2t) -
3992  512*Mst2*s2t*pow3(Mt) + 128*Mt*pow3(Mst2)*pow3(s2t) + 560*pow4(Mt) +
3993  131*pow4(Mst2)*pow4(s2t))*pow6(Mst2) + 3*(192*(-77 + 48*z2)*pow2(Mst2)*
3994  pow2(Mt)*pow2(s2t) - 48*Mst2*s2t*(-867 + 1012*z2)*pow3(Mt) - 276*Mt*
3995  pow3(Mst2)*pow3(s2t) + 16*(-6445 + 6768*z2)*pow4(Mt) - 441*pow4(Mst2)*
3996  pow4(s2t))*pow8(Mst1) - 2304*pow2(Mt)*(-2*pow2(Mt) + pow2(Mst2)*pow2(
3997  s2t))*pow8(Mst2)) + 25*pow2(Mgl)*(4*pow4(Mst1)*pow4(Mst2)*(-72*(-445 +
3998  96*z2)*pow2(Mst2)*pow2(Mt)*pow2(s2t) - 144*Mst2*s2t*(-121 + 296*z2)*
3999  pow3(Mt) - 144*Mt*(-151 + 19*z2)*pow3(Mst2)*pow3(s2t) + 8*(-1993 +
4000  2151*z2 + 216*z3)*pow4(Mt) + 81*(8 + 5*z2)*pow4(Mst2)*pow4(s2t)) - 36*
4001  pow2(Mst2)*(-696*pow2(Mst2)*pow2(Mt)*pow2(s2t) + 32*Mst2*s2t*(-179 +
4002  128*z2)*pow3(Mt) + 16*Mt*(148 - 17*z2)*pow3(Mst2)*pow3(s2t) - 8*(-403 +
4003  300*z2)*pow4(Mt) + (551 + 86*z2)*pow4(Mst2)*pow4(s2t))*pow6(Mst1) + 36*
4004  pow2(Mst1)*(-744*pow2(Mst2)*pow2(Mt)*pow2(s2t) - 1024*Mst2*s2t*pow3(Mt)
4005  + 256*Mt*pow3(Mst2)*pow3(s2t) + 1232*pow4(Mt) + 141*pow4(Mst2)*pow4(
4006  s2t))*pow6(Mst2) + 9*(864*pow2(Mst2)*pow2(Mt)*pow2(s2t) - 512*Mst2*s2t*
4007  (-49 + 31*z2)*pow3(Mt) - 784*Mt*pow3(Mst2)*pow3(s2t) + 8*(-2503 + 1408*
4008  z2)*pow4(Mt) + (1547 + 164*z2)*pow4(Mst2)*pow4(s2t))*pow8(Mst1) + 4608*
4009  pow2(Mt)*(-2*pow2(Mt) + pow2(Mst2)*pow2(s2t))*pow8(Mst2)) - 4*pow2(
4010  Dmglst2)*(-2*pow4(Mst1)*pow4(Mst2)*(-150*(-14251 + 9792*z2)*pow2(Mst2)*
4011  pow2(Mt)*pow2(s2t) - 600*Mst2*s2t*(-2509 + 1278*z2)*pow3(Mt) - 300*Mt*(
4012  -2027 + 1194*z2)*pow3(Mst2)*pow3(s2t) + 4*(25949 + 33300*z2)*pow4(Mt) +
4013  75*(-838 + 387*z2)*pow4(Mst2)*pow4(s2t)) + 25*pow2(Mst2)*(12*(-11813 +
4014  8064*z2)*pow2(Mst2)*pow2(Mt)*pow2(s2t) + 96*Mst2*s2t*(-1016 + 1395*z2)*
4015  pow3(Mt) - 24*Mt*(-83 + 102*z2)*pow3(Mst2)*pow3(s2t) - 64*(347 + 3330*
4016  z2)*pow4(Mt) + 3*(-415 + 774*z2)*pow4(Mst2)*pow4(s2t))*pow6(Mst1) -
4017  225*pow2(Mst1)*(-408*pow2(Mst2)*pow2(Mt)*pow2(s2t) + 1024*Mst2*s2t*
4018  pow3(Mt) - 256*Mt*pow3(Mst2)*pow3(s2t) - 720*pow4(Mt) + 179*pow4(Mst2)*
4019  pow4(s2t))*pow6(Mst2) + 75*(192*(-77 + 48*z2)*pow2(Mst2)*pow2(Mt)*pow2(
4020  s2t) - 48*Mst2*s2t*(-867 + 1012*z2)*pow3(Mt) - 276*Mt*pow3(Mst2)*pow3(
4021  s2t) + 16*(-6445 + 6768*z2)*pow4(Mt) - 441*pow4(Mst2)*pow4(s2t))*pow8(
4022  Mst1) - 3600*(8*pow2(Mst2)*pow2(Mt)*pow2(s2t) - 16*pow4(Mt) + pow4(
4023  Mst2)*pow4(s2t))*pow8(Mst2))) + 30*log(pow2(Mst1)/pow2(Mst2))*(7200*
4024  pow2(Dmsqst2)*pow2(Mgl)*(pow2(Mst1) - pow2(Mst2))*pow4(Mst1)*pow4(Mt) -
4025  1800*Dmsqst2*(16*Dmglst2*Mgl*Mst2*(-(Mst2*Mt) + 3*s2t*pow2(Mst1))*pow3(
4026  Mt)*pow6(Mst1) + 16*Mst2*pow2(Dmglst2)*(-(Mst2*Mt) + 3*s2t*pow2(Mst1))*
4027  pow3(Mt)*pow6(Mst1) + pow2(Mgl)*pow4(Mst1)*(8*(5*Mt - 2*Mst2*s2t)*pow3(
4028  Mt)*pow4(Mst1) - 8*pow4(Mst2)*pow4(Mt) + pow2(Mst1)*(8*pow2(Mst2)*pow4(
4029  Mt) - pow4(s2t)*pow6(Mst2)) + pow4(s2t)*pow8(Mst2))) + pow2(Mst2)*(-20*
4030  Dmglst2*Mgl*(-4*pow4(Mst1)*pow4(Mst2)*(1860*pow2(Mst2)*pow2(Mt)*pow2(
4031  s2t) + 1472*Mst2*s2t*pow3(Mt) + 774*Mt*pow3(Mst2)*pow3(s2t) - 2464*
4032  pow4(Mt) + 15*pow4(Mst2)*pow4(s2t)) + 2*pow2(Mst2)*(-432*pow2(Mst2)*
4033  pow2(Mt)*pow2(s2t) - 11656*Mst2*s2t*pow3(Mt) + 996*Mt*pow3(Mst2)*pow3(
4034  s2t) + 18748*pow4(Mt) + 207*pow4(Mst2)*pow4(s2t))*pow6(Mst1) - 3*pow2(
4035  Mst1)*(-856*pow2(Mst2)*pow2(Mt)*pow2(s2t) - 1536*Mst2*s2t*pow3(Mt) +
4036  384*Mt*pow3(Mst2)*pow3(s2t) + 1200*pow4(Mt) + 203*pow4(Mst2)*pow4(s2t))
4037  *pow6(Mst2) + 4*(-738*pow2(Mst2)*pow2(Mt)*pow2(s2t) - 10004*Mst2*s2t*
4038  pow3(Mt) + 135*Mt*pow3(Mst2)*pow3(s2t) + 17532*pow4(Mt) + 12*pow4(Mst2)
4039  *pow4(s2t))*pow8(Mst1) - 768*pow2(Mt)*(-2*pow2(Mt) + pow2(Mst2)*pow2(
4040  s2t))*pow8(Mst2)) + 5*pow2(Mgl)*(4*pow4(Mst1)*pow4(Mst2)*(3372*pow2(
4041  Mst2)*pow2(Mt)*pow2(s2t) - 9024*Mst2*s2t*pow3(Mt) + 3912*Mt*pow3(Mst2)*
4042  pow3(s2t) + 6112*pow4(Mt) + 579*pow4(Mst2)*pow4(s2t)) - 24*pow2(Mst2)*(
4043  -534*pow2(Mst2)*pow2(Mt)*pow2(s2t) + 1824*Mst2*s2t*pow3(Mt) - 60*Mt*
4044  pow3(Mst2)*pow3(s2t) - 934*pow4(Mt) + 97*pow4(Mst2)*pow4(s2t))*pow6(
4045  Mst1) + 6*pow2(Mst1)*(-728*pow2(Mst2)*pow2(Mt)*pow2(s2t) - 1024*Mst2*
4046  s2t*pow3(Mt) + 256*Mt*pow3(Mst2)*pow3(s2t) + 1200*pow4(Mt) + 139*pow4(
4047  Mst2)*pow4(s2t))*pow6(Mst2) + 3*(4640*pow2(Mst2)*pow2(Mt)*pow2(s2t) -
4048  15296*Mst2*s2t*pow3(Mt) + 240*Mt*pow3(Mst2)*pow3(s2t) + 7128*pow4(Mt) -
4049  279*pow4(Mst2)*pow4(s2t))*pow8(Mst1) + 768*pow2(Mt)*(-2*pow2(Mt) +
4050  pow2(Mst2)*pow2(s2t))*pow8(Mst2)) - 2*pow2(Dmglst2)*(2*pow4(Mst1)*pow4(
4051  Mst2)*(-40440*pow2(Mst2)*pow2(Mt)*pow2(s2t) - 75360*Mst2*s2t*pow3(Mt) -
4052  5760*Mt*pow3(Mst2)*pow3(s2t) + 11872*pow4(Mt) + 4335*pow4(Mst2)*pow4(
4053  s2t)) + 2*pow2(Mst2)*(29760*pow2(Mst2)*pow2(Mt)*pow2(s2t) + 31000*Mst2*
4054  s2t*pow3(Mt) + 15840*Mt*pow3(Mst2)*pow3(s2t) - 228452*pow4(Mt) + 1065*
4055  pow4(Mst2)*pow4(s2t))*pow6(Mst1) - 15*pow2(Mst1)*(-3080*pow2(Mst2)*
4056  pow2(Mt)*pow2(s2t) - 6144*Mst2*s2t*pow3(Mt) + 1536*Mt*pow3(Mst2)*pow3(
4057  s2t) + 3600*pow4(Mt) + 865*pow4(Mst2)*pow4(s2t))*pow6(Mst2) + 40*(-738*
4058  pow2(Mst2)*pow2(Mt)*pow2(s2t) - 10004*Mst2*s2t*pow3(Mt) + 135*Mt*pow3(
4059  Mst2)*pow3(s2t) + 17532*pow4(Mt) + 12*pow4(Mst2)*pow4(s2t))*pow8(Mst1)
4060  + 480*(-40*pow2(Mst2)*pow2(Mt)*pow2(s2t) + 80*pow4(Mt) + 3*pow4(Mst2)*
4061  pow4(s2t))*pow8(Mst2)))))/(1350.*pow2(Mgl)*pow4(Mst1)*pow4(Mt)*pow6(
4062  Mst2));
4063 
4064  return result;
4065 }
4066 
4067 /**
4068  * @return returns the susy log^2 term of Mh^2 @ O(at*as^2) without any log(mu^2) terms normalized to DO (H3m*12/Mt^4/Sbeta^2)
4069  */
4071 
4072  const double result =
4073  (-3600*pow2(Dmsqst2)*pow2(Mgl)*pow4(Mst1)*pow4(Mt) + 7200*Dmsqst2*pow2(
4074  Mgl)*pow2(Mst2)*pow4(Mst1)*pow4(Mt) - 48160*Dmglst2*Mgl*pow4(Mst1)*
4075  pow4(Mst2)*pow4(Mt) - 29264*pow2(Dmglst2)*pow4(Mst1)*pow4(Mst2)*pow4(
4076  Mt) + 21280*pow2(Mgl)*pow4(Mst1)*pow4(Mst2)*pow4(Mt) - 1440*pow12(Mst2)
4077  *pow2(Dmglst2)*pow4(s2t) + 46400*Dmglst2*Mgl*s2t*pow3(Mt)*pow4(Mst1)*
4078  pow5(Mst2) + 98880*s2t*pow2(Dmglst2)*pow3(Mt)*pow4(Mst1)*pow5(Mst2) -
4079  24000*s2t*pow2(Mgl)*pow3(Mt)*pow4(Mst1)*pow5(Mst2) + 74880*Dmglst2*Mgl*
4080  s2t*pow3(Mst2)*pow3(Mt)*pow6(Mst1) - 38400*s2t*pow2(Dmglst2)*pow3(Mst2)
4081  *pow3(Mt)*pow6(Mst1) + 1920*s2t*pow2(Mgl)*pow3(Mst2)*pow3(Mt)*pow6(
4082  Mst1) - 14160*Dmglst2*Mgl*pow2(Mt)*pow2(s2t)*pow4(Mst2)*pow6(Mst1) -
4083  13560*pow2(Dmglst2)*pow2(Mt)*pow2(s2t)*pow4(Mst2)*pow6(Mst1) - 9000*
4084  pow2(Mgl)*pow2(Mt)*pow2(s2t)*pow4(Mst2)*pow6(Mst1) - 100800*Dmglst2*
4085  Mgl*pow2(Mst2)*pow4(Mt)*pow6(Mst1) + 161120*pow2(Dmglst2)*pow2(Mst2)*
4086  pow4(Mt)*pow6(Mst1) - 10080*pow2(Mgl)*pow2(Mst2)*pow4(Mt)*pow6(Mst1) -
4087  31200*Dmglst2*Mgl*Mt*pow3(s2t)*pow5(Mst2)*pow6(Mst1) - 42720*Mt*pow2(
4088  Dmglst2)*pow3(s2t)*pow5(Mst2)*pow6(Mst1) - 23520*Mt*pow2(Mgl)*pow3(s2t)
4089  *pow5(Mst2)*pow6(Mst1) + 82080*Dmglst2*Mgl*pow2(Mt)*pow2(s2t)*pow4(
4090  Mst1)*pow6(Mst2) + 115440*pow2(Dmglst2)*pow2(Mt)*pow2(s2t)*pow4(Mst1)*
4091  pow6(Mst2) + 42960*pow2(Mgl)*pow2(Mt)*pow2(s2t)*pow4(Mst1)*pow6(Mst2) +
4092  43680*Dmglst2*Mgl*pow2(Mst1)*pow4(Mt)*pow6(Mst2) + 65520*pow2(Dmglst2)*
4093  pow2(Mst1)*pow4(Mt)*pow6(Mst2) + 21840*pow2(Mgl)*pow2(Mst1)*pow4(Mt)*
4094  pow6(Mst2) + 1110*Dmglst2*Mgl*pow4(s2t)*pow6(Mst1)*pow6(Mst2) + 5505*
4095  pow2(Dmglst2)*pow4(s2t)*pow6(Mst1)*pow6(Mst2) - 5325*pow2(Mgl)*pow4(
4096  s2t)*pow6(Mst1)*pow6(Mst2) - 30*log(pow2(Mst1)/pow2(Mst2))*pow4(Mst1)*(
4097  pow2(Mgl)*(-4*pow4(Mst2)*(14*pow2(Mst2)*pow2(Mt)*pow2(s2t) - 456*Mst2*
4098  s2t*pow3(Mt) + 146*Mt*pow3(Mst2)*pow3(s2t) - 166*pow4(Mt) + 33*pow4(
4099  Mst2)*pow4(s2t)) + pow4(Mst1)*(-768*pow2(Mst2)*pow2(Mt)*pow2(s2t) +
4100  1216*Mst2*s2t*pow3(Mt) + 400*pow4(Mt) + 41*pow4(Mst2)*pow4(s2t)) +
4101  pow2(Mst1)*pow2(Mst2)*(-1096*pow2(Mst2)*pow2(Mt)*pow2(s2t) + 1280*Mst2*
4102  s2t*pow3(Mt) - 328*Mt*pow3(Mst2)*pow3(s2t) + 32*pow4(Mt) + 91*pow4(
4103  Mst2)*pow4(s2t))) + 2*Dmglst2*Mgl*(32*pow2(Mt)*(-57*Mst2*Mt*s2t + 119*
4104  pow2(Mt) - 24*pow2(Mst2)*pow2(s2t))*pow4(Mst1) + pow4(Mst2)*(-384*pow2(
4105  Mst2)*pow2(Mt)*pow2(s2t) + 912*Mst2*s2t*pow3(Mt) - 548*Mt*pow3(Mst2)*
4106  pow3(s2t) + 512*pow4(Mt) - 91*pow4(Mst2)*pow4(s2t)) + pow2(Mst1)*pow2(
4107  Mst2)*(-768*pow2(Mst2)*pow2(Mt)*pow2(s2t) - 640*Mst2*s2t*pow3(Mt) -
4108  164*Mt*pow3(Mst2)*pow3(s2t) + 2016*pow4(Mt) + 91*pow4(Mst2)*pow4(s2t)))
4109  + pow2(Dmglst2)*(64*pow2(Mt)*(-57*Mst2*Mt*s2t + 119*pow2(Mt) - 24*pow2(
4110  Mst2)*pow2(s2t))*pow4(Mst1) + pow4(Mst2)*(-1152*pow2(Mst2)*pow2(Mt)*
4111  pow2(s2t) + 1824*Mst2*s2t*pow3(Mt) - 1864*Mt*pow3(Mst2)*pow3(s2t) +
4112  1536*pow4(Mt) - 273*pow4(Mst2)*pow4(s2t)) + pow2(Mst1)*(-2304*pow2(Mt)*
4113  pow2(s2t)*pow4(Mst2) + 32*pow2(Mst2)*pow4(Mt) - 328*Mt*pow3(s2t)*pow5(
4114  Mst2) + 273*pow4(s2t)*pow6(Mst2)))) - 46080*Dmglst2*Mgl*s2t*pow2(Mst1)*
4115  pow3(Mt)*pow7(Mst2) - 92160*s2t*pow2(Dmglst2)*pow2(Mst1)*pow3(Mt)*pow7(
4116  Mst2) - 15360*s2t*pow2(Mgl)*pow2(Mst1)*pow3(Mt)*pow7(Mst2) + 19680*
4117  Dmglst2*Mgl*Mt*pow3(s2t)*pow4(Mst1)*pow7(Mst2) + 19680*Mt*pow2(Dmglst2)
4118  *pow3(s2t)*pow4(Mst1)*pow7(Mst2) + 19680*Mt*pow2(Mgl)*pow3(s2t)*pow4(
4119  Mst1)*pow7(Mst2) + 67200*Dmglst2*Mgl*Mst2*s2t*pow3(Mt)*pow8(Mst1) +
4120  67200*Mst2*s2t*pow2(Dmglst2)*pow3(Mt)*pow8(Mst1) + 1920*Mst2*s2t*pow2(
4121  Mgl)*pow3(Mt)*pow8(Mst1) - 112320*Dmglst2*Mgl*pow4(Mt)*pow8(Mst1) -
4122  112320*pow2(Dmglst2)*pow4(Mt)*pow8(Mst1) - 12000*pow2(Mgl)*pow4(Mt)*
4123  pow8(Mst1) + 1770*Dmglst2*Mgl*pow4(Mst2)*pow4(s2t)*pow8(Mst1) + 1770*
4124  pow2(Dmglst2)*pow4(Mst2)*pow4(s2t)*pow8(Mst1) + 3585*pow2(Mgl)*pow4(
4125  Mst2)*pow4(s2t)*pow8(Mst1) - 29520*Dmglst2*Mgl*pow2(Mst1)*pow2(Mt)*
4126  pow2(s2t)*pow8(Mst2) - 51960*pow2(Dmglst2)*pow2(Mst1)*pow2(Mt)*pow2(
4127  s2t)*pow8(Mst2) - 12840*pow2(Mgl)*pow2(Mst1)*pow2(Mt)*pow2(s2t)*pow8(
4128  Mst2) - 15360*Dmglst2*Mgl*pow4(Mt)*pow8(Mst2) - 38400*pow2(Dmglst2)*
4129  pow4(Mt)*pow8(Mst2) - 3840*pow2(Mgl)*pow4(Mt)*pow8(Mst2) - 8490*
4130  Dmglst2*Mgl*pow4(Mst1)*pow4(s2t)*pow8(Mst2) - 18495*pow2(Dmglst2)*pow4(
4131  Mst1)*pow4(s2t)*pow8(Mst2) - 345*pow2(Mgl)*pow4(Mst1)*pow4(s2t)*pow8(
4132  Mst2) + 11520*Dmglst2*Mgl*Mt*pow2(Mst1)*pow3(s2t)*pow9(Mst2) + 23040*
4133  Mt*pow2(Dmglst2)*pow2(Mst1)*pow3(s2t)*pow9(Mst2) + 3840*Mt*pow2(Mgl)*
4134  pow2(Mst1)*pow3(s2t)*pow9(Mst2) + 7680*Dmglst2*Mgl*pow2(Mt)*pow2(s2t)*
4135  power10(Mst2) + 19200*pow2(Dmglst2)*pow2(Mt)*pow2(s2t)*power10(Mst2) +
4136  1920*pow2(Mgl)*pow2(Mt)*pow2(s2t)*power10(Mst2) + 6570*Dmglst2*Mgl*
4137  pow2(Mst1)*pow4(s2t)*power10(Mst2) + 13695*pow2(Dmglst2)*pow2(Mst1)*
4138  pow4(s2t)*power10(Mst2) + 2325*pow2(Mgl)*pow2(Mst1)*pow4(s2t)*power10(
4139  Mst2))/(45.*pow2(Mgl)*pow4(Mst1)*pow4(Mst2)*pow4(Mt));
4140 
4141  return result;
4142 }
4143 
4144 /**
4145  * @return returns the susy log^3 term of Mh^2 @ O(at*as^2) without any log(mu^2) terms normalized to DO (H3m*12/Mt^4/Sbeta^2)
4146  */
4148 
4149  const double result =
4150  -298.6666666666667;
4151 
4152  return result;
4153 }
4154 
4155 } // namespace hierarchies
4156 } // namespace himalaya
int xMst
MDR and truncation flags.
Definition: H6b2qg2.hpp:73
H6b2qg2(const ExpansionFlags_t &expansionDepth, double Al4p, double beta, double Dmglst2, double Dmsqst2, double lmMt, double lmMst1, double lmMst2, double Mgl, double Mt, double Mst1, double Mst2, double MuSUSY, double s2t, int mdrFlag, int oneLoopFlag, int twoLoopFlag, int threeLoopFlag)
Definition: H6b2qg2.cpp:38
std::array< int, ExpansionDepth::NUMBER_OF_EXPANSIONS > ExpansionFlags_t
double calc_coef_at_as2_no_sm_logs_log3() const
Definition: H6b2qg2.cpp:4147
Definition: H3.cpp:14
truncate the expansion depth in the stop/sbottom masses by one order
truncate the expansion depth in the gluino mass by one order
double Al4p
common variables
Definition: H6b2qg2.hpp:72
double calc_coef_at_as2_no_sm_logs_log0() const
Definition: H6b2qg2.cpp:3614
truncate the expansion depth in the difference of the average squark mass and the stop/sbottom 2 mass...
double calc_coef_at_as2_no_sm_logs_log2() const
Definition: H6b2qg2.cpp:4070
int threeLoopFlag
loop flags
Definition: H6b2qg2.hpp:74
Complex< T > log(const Complex< T > &z_) noexcept
Definition: complex.hpp:45
double calc_coef_at_as2_no_sm_logs_log1() const
Definition: H6b2qg2.cpp:3946
truncate the expansion depth in the difference of the stop/sbottom 2 mass and the gluino mass by one ...