version="$Id: jinvariant.lib,v 1.3 2009/07/10 Singular Exp $"; info=" LIBRARY: jinvariant.lib AUTHORS: Eric Katz, email: eekatz@math.duke.edu Hannah Markwig, email: markwig@ima.umn.edu Thomas Markwig, email: keilen@mathematik.uni-kl.de KEYWORDS: j-invariant, Newton polytope, normal fan, Groebner fan, secondary fan PURPOSE: This library provides the procedures used in the proof of the result that given a plane cubic over the Puiseux series whose associated tropical curve has a cycle then the cycle length is the negative of the generic valuation of the j-invariant of the associated elliptic curve. For the definitions and details we refer to: Eric Katz, Hannah Markwig, Thomas Markwig: The j-invariant of a Plane Tropical Cubic. Preprint 2007. IMPORTANT NOTE: Even though this is a Singular library, many of the hard computations involving polytopes are done by calling other two programs, namely - polymake by Ewgenij Gawrilow, TU Berlin and Michael Joswig, TU Darmstadt see http://www.tu-berlin.de/polymake - topcom by Joerg Rambau, Universitaet Bayreuth see http://www.uni-bayreuth.de/departments/wirtschaftsmathematik/rambau/TOPCOM Many procedures will not work unless polymake and topcom are installed. It is, however, not necessary to be familiar with the syntax of these programs unless you want to compute more information about the polytopes in question than Singular provides you by calling them internally. Whenever one of these programs is used, we assume that there is a directory /tmp which is accessible for the user to write and read data. Moreover, some procedures produce latex files and compile them to display post script output. Again we assume the presence of /tmp, and we assume that the programs latex, dvips and kghostview are present as well. PROCEDURES DEALING WITH THE FANS AND POLYTOPES ASSOCICATED TO ELLIPTIC CURVES: displayFan(string,string) produces a post script file showing the information computed with 'fan' fan(string,string) computes the Groebner fan of the discriminant or the secondary fan polytope(string,string) computes Newton polytopes respectively secondary polytopes testInteriorInequalities(string) compares a cone for the numerator of the j-invariant to another cone PROCEDURES DEALING WITH THE DISCRIMINANT OF CUBICS: nonRefinementC() shows that the secondary fan is no refinement for the numerator of the j-invariant raysC() compares cycle length and j-invariant on rays randomEllipticC(int,int,int) computes an elliptic cubic polynomial with random coefficients examplesC(int) computes examples of elliptic cubics PROCEDURES DEALING WITH THE DISCRIMINANT OF CURVES ON P1xP1 OF TYPE (2,2): randomElliptic2x2(int,int,int) computes an elliptic (2,2)-curve on P^1xP^1 examples2X2(int) computes examples of elliptic (2,2)-curves on P^1xP^1 PROCEDURES DEALING WITH THE STORED DATA FOR THE DIFFERENT TYPES OF POLYGONS: polygonDB(string) stores the points of the polygon invariantsDB(string,string) stores the discriminant and other invariants of the curves affineHullDB(string,string) stores the affine hull of the Groebner and secondary fans verticesDB(string,string) stores the vertices of the Groebner and secondary fans vertexEdgeGraphDB(string,string) stores the vertex edge graph of the Groebner and secondary fans extremeRaysDB(n,string,string) stores the extreme rays of the Groebner and secondary fans triangulationsDB(n,string,string) stores the triangulations of the polygons edgeInequalitiesDB(string) stores the inequalities for inner edges in a subdivision interiorInequalitiesDB(string) stores the inequalities for inner edges in a subdivision affineHullToDB(list) translates polytope output into database format verticesToDB(list) translates polytope output into database format vertexEdgeGraphToDB(list) translates polytope output into database format extremeRaysToDB(list) translates fan output into database format triangulationsToDB(list) translates triangulations output into database format "; ////////////////////////////////////////////////////////////////////////////// /// AUXILARY PROCEDURES ////////////////////////////////////////////////////////////////////////////// /// - equation /// - abs /// - stringdelete /// - stringinsert /// - poly2intvec /// - newtoncycle /// - orderboundaryC /// - texinequality /// - specialtexpolynomial /// - specialtexmonomial /// - specialtexcoefficient /// - stringcontainment /// - simplifyToOrder /// - scalarproduct /// - generalisedcyclelengthC /// - compintmats /// - polygonToCoordinates /// - displayFantexintro /// - polygonToTex /// - etatable /// - xstr /////////////////////////////////////////////////////////////////////////////// /// DATABASES /////////////////////////////////////////////////////////////////////////////// /// - invariantsDatabase /// - affineHullDatabase /// - verticesDatabase /// - vertexEdgeGraphDatabase /// - triangulationsDatabase /// - extremeRaysDatabase /// - edgeInequalitiesDatabase /// - interiorInequalitiesDatabase ////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////// LIB "./tropical.lib"; LIB "./polymake.lib"; ////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////// // PROCEDURES DEALING WITH THE FANS AND POLYTOPES ASSOCICATED TO ELLIPTIC CURVES: ////////////////////////////////////////////////////////////////////////////// proc displayFan (string polygon,string art) "USAGE: displayFan(polygon,art); polygon,art string ASSUME: polygon is one of the following strings discribing the type of curve to be considered: - 'cubic' : describing a cubic - '2x2' : describing a curve of type (2,2) - '4x2' : describing a curve of type (4,2) art is one of the following strings: - 'discriminant' : refering to the discriminant of the curve - 'secondary' : refering to the secondary polytope of the curve RETURN: none NOTE: - the procedure produces a latex file /tmp/.tex, compiles this file and shows it with the aid of kghostview, where is the string _fan_of_ with and refering to the input - it computes for each vertex of the Newton polytope of the discriminant of a plane cubic (or equivalently for each cone in the Groebner fan of the discriminant of a plane cubic) the coarsest subdivision in the corresponding Delta-equivalence class of cones of the secondary fan of the Newton polygon of the plane cubic; moreover, for each cone in the Groebner fan corresponding to plane tropical curves with a cycle it computes the cycle length and the generic valuation of the j-invariant, while for the remaining cones it just computes the generic valuation of the discriminant; finally, the inequalities describing the cone in the Groebner fan are computed, and all the computed information is displayed - for the tropical setting we work with MINIMUM" { // create the latex file name string dateiname=art+"_fan_of_"+polygon; // get the polygon list pg=polygonDB(polygon); // the interior point is always the first point in pg intvec interior=pg[1]; // compute the fan list FAN=fan(polygon,art); // extract the inequalities of the cones list ineq=FAN[1]; // the ith row in VERTICES contains the coordinates of the ith vertex in // the polytope ordered as in the output of polygonDB intmat VERTICES=verticesDB(polygon,art); // prepare the intro of the latex output string latex=displayFantexintro(polygon,art); // save this in .tex write(":w /tmp/"+dateiname+".tex",latex); latex=""; // get the coordinates which are used list unknowns=polygonToCoordinates(polygonDB(polygon)); ///////////////////////////////////////////////////// int i,j,k,l; // indices // we work over the following ring execute("ring r=0,("+unknowns[1]+"),lp;"); matrix VAR[1][ncols(VERTICES)]=maxideal(1); matrix EXP[ncols(VERTICES)][1]; // stores the exponent vector of the vertex list boundary; // stores the lattice points connected to the interior point in a triangulation string valjinv; // stores the valuation of the j-invariant string valdelta; // stores the valuation of the discriminant poly valjinvpoly; // stores the valuation of the j-invariant as poly string cycle; // stores the cycle length poly cyclepoly; // stores the cycle length as poly list etavector; // stores the eta vectors for the vertices int interiorda; // checks if the interior point is present matrix cmatrix[ncols(VERTICES)][1]; // stores the c vector of a vertex intvec cvector; // stores the c vector of a vertex // there are some differences between the discriminant and the secondary case if (art=="discriminant") { poly p; // stores a monomial string sp; // stores its string intmat testvt; // stores the rays of the ith normal cone int nichtda; // checks if a certain edge is present or not intvec da,start,ziel; // stores the edges present, respectively the start and end point of an edge intvec zerorows; // stores the rows which are zero in column string kantenda; // stores texdraw code for edges present // get the inequalities for inner edges of the polygon and the edges list edges=edgeInequalitiesDB(polygon); list edgeineq=edges[1]; list edgeendpts=edges[2]; // split the marked polygon into its vertices, facets and interior points list ecken=splitPolygon(pg)[1]; for (j=1;j<=size(ecken);j++) { ecken[j]=ecken[j][1]; } } if (art=="secondary") { list triang; // stores a triangulation // split the marked polygon into its vertices, facets and interior points list splitpg=splitPolygon(pg); // at the end we have to reorder the vertices intmat discriminant=verticesDB(polygon,"discriminant"); // stores the vertices of the discriminant intvec zeile; // stores one vertex of the discriminant list latexcode; // stores the latex code for each of the vertices list newlatexcode; // stores the reordered latexcode } // consider all vertices of the polytope for (i=1;i<=size(ineq);i++) { // print i in order to show how the procedure progresses i; ///////////////////////////////////////////////////////////////////////////////////////// // next we want to check, which inner edges of the Newton subdivision should be present; // this is of course much harder if we are not dealing with the secondary fan where // this information is available via the previously computed triangulations // moreover, there are some differences in computing the cycle if (art=="discriminant") { ///////////////////////////////////////////////////////////////////////////////////////// // the basic idea here is as follows: // 1. we compute for the ith cone in the Groebner fan its extreme rays; this has // been done with the help of polymake, and the result has been stored // in the procedure testraysC // 2. that a certain inner edge in the Newton subdivision lies above all other edges which // cross its projection to the xy-plane gives a number of linear inequalities on the // coefficients (more precisely on their valuation) of the cubic; we can test, if these // inequalities are satisfied in the ith-cone by testing if the extreme rays satisfy // them; we want to have strict inequalities for the points in the interior of a cone, // but on the boundary (hence for the rays) we can only ask for non-strict inequalities; // this way we get all inner edges which are potentially there, but their presence is // not yet ensured; we only know that the involved coefficients cannot be zero and // that no edge crossing them can be present; it might still be the case that they are // contained in a plane which is completely contained in the three-dimensional // Newton polytope of a member in the cone; we can however check if this is the case: // namely, if the extreme rays for which the inequality is actually an equality span // a cone of dimension at most 6 (i.e. a cone of lower dimension) then each // interior point is a strict-positive linear combination of extreme rays where at least // one ray occurs which satisfies a strict inequality, and thus this interior point also // satisfies the strict inequality (note for this that we have checked that on the // linearity space all inequalities are actually equalities) ////////////////////////////////////////////////////////////////////////////////////////// // get the extreme rays of the normal cone dual to the ith vertex in the Newton polytope testvt=extremeRaysDB(i,polygon,art); da=0; // this integer vector stores the edges which are found to be present // check for each possible inner edge, if the rays of the ith normal fan satisfy the // inequalities imposed by this edge for (j=1;j<=size(edgeineq);j++) { // only if all entries in testedgeineq are non-negative, the inequalities are satisfied intmat testedgeineq=testvt*edgeineq[j]; nichtda=0; for (k=1;k<=ncols(testedgeineq) and nichtda==0;k++) { zerorows=0; // initialise zerorows for (l=1;l<=nrows(testedgeineq) and nichtda==0;l++) { if (testedgeineq[l,k]<0) { nichtda=1; // if one entry is negative, then the edge is not present } if (testedgeineq[l,k]==0) { zerorows=zerorows,l; } } // if in the kth column of testedgeineq all entries are non-negative // we have to check if those, which are zero span a cone of lower // dimension, i.e. of dimension strictly less than 7; // if the number of rows, which are zero, (i.e. size(zerorows)-1) // is strictly less than 7, this is certainly the case if ((nichtda==0) and (size(zerorows)>7)) { zerorows=zerorows[2..size(zerorows)]; // delete the superflous 0 at the beginning // "Ecke",i," Kante",j,"k=",k,"#0=",size(zerorows),"rang=",mat_rk(submat(testvt,zerorows,1..ncols(testvt))); if (mat_rk(submat(testvt,zerorows,1..ncols(testvt)))>6) { nichtda=1; } } } kill testedgeineq; // if the edge is present, we store its number in da if (nichtda==0) { da=da,j; } } // for all edges which are potentially present edges we prepare the texdraw code // and check if the interior point is present kantenda=""; interiorda=0; for (k=1;k<=size(da)-1;k++) { start=edgeendpts[da[k+1]][1]; // start point for the kth edge ziel=edgeendpts[da[k+1]][2]; // end point for the kath edge kantenda=kantenda+" \\move ("+string(start[1])+" "+string(start[2])+") \\lvec ("+string(ziel[1])+" "+string(ziel[2])+")"; // check if either of the end points is the interior point if ((start==interior) or (ziel==interior)) { interiorda=1; } } // if polygon is 4x2 then there is one edge, namely from (1,1) to (0,2) which // whose presence has not been tested by edge inequalities; this one is present // if and only if the interior point is present in the subdivision; its endpoints // are then the last pair of endpoints in edgeendpts if ((polygon=="4x2") and (interiorda==1)) { start=edgeendpts[size(edgeendpts)][1]; // start point for the kth edge ziel=edgeendpts[size(edgeendpts)][2]; // end point for the kath edge kantenda=kantenda+" \\move ("+string(start[1])+" "+string(start[2])+") \\lvec ("+string(ziel[1])+" "+string(ziel[2])+")"; } // store the eta vector etavector[i]=intvec(VERTICES[i,1..ncols(VERTICES)]); // if the considered polygon is 4x2, then the denominator of the j-invariant is // u02^2*Delta, where Delta is the discriminant, and the regular A-determinant D_A // is then just u02*Delta -- in particular the Newton polytope of D_A and of the // denominator of the j-invariant differ by a translation by the vector (0,...,0,1), // i.e. we have to subtract that vector in order to get the correct eta vectors if (polygon=="4x2") { etavector[i][size(etavector[i])]=etavector[i][size(etavector[i])]-1; } //////////////////////////////////////////////////////////////////////// // next we compute which coefficients of the cubic are involved in the ith vertex // of the Newton polytope of the discriminant, and we compute // the boundary of the polygone spanned by the corrsponding points in the Newton // subdivision of the cubic; the dual to this circle in the Newton subdivision is // supposed to constitute the cycle in the corresponding tropical elliptic curve // for a large subclass of curves in the ith normal cone; and the length of that // cycle turns out to be the negative of the valuation of the j-invariant of // all curves in the ith normal cone boundary=newtoncycle(intvec(VERTICES[i,1..ncols(VERTICES)])); if ((polygon=="cubic") and (i>79)) // the boundary has to be ordered appropriately { boundary=orderboundaryC(boundary,intvec(VERTICES[i,1..ncols(VERTICES)])); } // compute the cyclelength of the boundary cycle execute("cyclepoly="+cycleLength(boundary,interior)+";"); // compute the monomial which represents the ith vertex in the Newton polytope p=1; for (j=1;j<=ncols(VERTICES);j++) { p=p*var(j)^VERTICES[i,j]; } sp=specialtexpolynomial(p); // get the latex code for this monomial } if (art=="secondary") { // get the ith triangulation triang=triangulationsDB(i,polygon,"secondary"); // check if the inner point is there interiorda=0; for (j=1;j<=size(triang);j++) { if ((pg[triang[j][1]]==interior) or (pg[triang[j][2]]==interior) or (pg[triang[j][3]]==interior)) { interiorda=1; // the interior point is present j=size(triang); } } // compute the eta vector of the triangulation etavector[i]=eta(triang,splitpg); // compute which marked points are connected to the interior point, i.e. the boundary cycle boundary=cyclepoints(triang,pg,1); // compute the cyclelength of the boundary cycle // note, if boundary is the empty set then the inner point is not visible and // hence the cycle length is zero if (size(boundary)>0) { execute("cyclepoly="+cycleLength(boundary,intvec(1,1))+";"); } else { cyclepoly=0; } } // compute the cmatrix cmatrix=coeffs(cyclepoly,maxideal(1)); for (j=1;j<=nrows(cmatrix);j++) { execute("cvector[j]="+string(cmatrix[j,1])+";"); } // compute the valuation of the j-invariant EXP=etavector[i]; // in the case of a 4x2-curve we have to translate the exponent vector by (0,...,0,1) // since the the Newton polytope of D_A and of the denominator of the j-invariant // differ just by this translation if (polygon=="4x2") { EXP[size(EXP),1]=EXP[size(EXP),1]+1; } valjinvpoly=12*u11-(VAR*EXP)[1,1]; // transform some data into latex format cycle=specialtexpolynomial(-cyclepoly); // get the latex code for the -cyclelength valjinv=specialtexpolynomial(valjinvpoly); // get the latex code for the valuation of the j-invariant valdelta=specialtexpolynomial(12*u11-valjinvpoly); // get latex code for valuation of discriminant ////////////////////////////////////////////////////////////////////////////// // we then prepare the latex code for the Newton subdivision corresponding to // a large subclass of curves in the ith normal cone, and containing those // inner edges which must be there for sure, as well as the cycle given // by the ith vertex if (art=="discriminant") { latex=latex+" \\begin{center} \\Large\\bf "+string(i)+". Vertex: $"+sp+"\\;\\;\\equiv\\;\\;$("+string(intvec(VERTICES[i,1..ncols(VERTICES)]))+") \\end{center} \\vspace*{0.5cm} The coarsest Newton subdivision of this cone in the Groebner fan is: \\vspace*{0.7cm} \\begin{center} \\begin{texdraw} \\drawdim cm \\relunitscale 1.2 \\setgray 0 "; latex=latex+"\\move ("+string(ecken[size(ecken)][1])+" "+string(ecken[size(ecken)][2])+") "; for (j=1;j<=size(ecken);j++) { latex=latex+"\\lvec ("+string(ecken[j][1])+" "+string(ecken[j][2])+") "; } for (j=1;j<=size(boundary)-1;j++) { latex=latex+" \\move ("+string(boundary[j][1])+" "+string(boundary[j][2])+") \\fcir f:0 r:0.1 \\lvec ("+string(boundary[j+1][1])+" "+string(boundary[j+1][2])+")"; } latex=latex+" \\move ("+string(boundary[size(boundary)][1])+" "+string(boundary[size(boundary)][2])+") \\fcir f:0 r:0.1 \\lvec ("+string(boundary[1][1])+" "+string(boundary[1][2])+") "; latex=latex+kantenda; if (VERTICES[i,1]!=0) { latex=latex+" \\move (1 1) \\fcir f:0 r:0.1"; } for (j=1;j<=size(pg);j++) { latex=latex+" \\move ("+string(pg[j][1])+" "+string(pg[j][2])+") \\fcir f:0.6 r:0.05"; } } if (art=="secondary") { latex=latex+" \\renewcommand{\\seite}{No. "+string(i)+"} \\begin{center} \\Large\\bf \\arabic{vertex}. Vertex: $("+string(intvec(VERTICES[i,1..ncols(VERTICES)]))+")\\;\\;\\;$ \\end{center} \\vspace*{0.7cm} The marked subdivision of this cone in the secondary fan of a cubic is: \\vspace{0.5cm} \\begin{center} \\begin{texdraw} "; latex=latex+texDrawTriangulation(triangulationsDB(i,polygon,art),pg); latex=latex+" \\setgray 0.8"; } for (j=1;j<=size(pg);j++) { latex=latex+" \\htext ("+decimal(poly(pg[j][1])+1/10)+" "+decimal(poly(pg[j][2])+1/10)+") {$u_{"+string(pg[j][1])+string(pg[j][2])+"}$}"; } latex=latex+" \\end{texdraw} \\end{center} "; if (interiorda==1) { latex=latex+" \\vspace*{1cm} The negative of the cycle length is:\\hspace{1.8cm} $"+cycle+"$ \\vspace*{0.5cm} "; latex=latex+" The generic valuation of the j-invariant is:\\hspace{0.5cm} $"+valjinv+"$ \\vspace*{0.5cm} "; } else { latex=latex+" \\vspace*{1cm} The negative of the cycle length is:\\hspace{0.7cm} $0$ \\vspace{0.5cm} "; latex=latex+" The generic valuation of $\\Delta$ is:\\hspace{1.5cm} $"+valdelta+"$ \\vspace{0.5cm} "; } latex=latex+" \\begin{center}"+ etatable(cvector,pg,"c_T")+" \\hspace{1cm}"+etatable(etavector[i],pg,"\\eta_T")+" \\end{center} \\vspace{0.5cm} "; if (art=="discriminant") { latex=latex+" The inequalities describing the cone of the Groebner fan of $\\Delta$ dual to the above vertex: "; } if (art=="secondary") { latex=latex+" The inequalities describing the cone of the secondary fan dual to the above vertex: "; } latex=latex+" \\begin{displaymath} \\renewcommand{\\arraystretch}{1.2} \\begin{array}{rcl} "; // write the inequalities into the latex code for (j=1;j<=size(ineq[i][2]);j++) { latex=latex+texinequality(ineq[i][2][j]); } latex=latex+" \\end{array} \\end{displaymath} "; // if art is discriminant then we can right away append the latex part to the output file if (art=="discriminant") { if (i.tex write(":a /tmp/"+dateiname+".tex",latex); } else // ... otherwise we have to sort it first, and for that we have to store it { // save the latexcode in a list latexcode[i]=latex; } latex=""; } // if art is secondary then reorder the latex code so that it // fits with the Groebner fan of the discriminant if (art=="secondary") { k=1; for (i=1;i<=nrows(discriminant);i++) { zeile=discriminant[i,1..ncols(discriminant)]; // if polygon is 4x2 then the etavector is short by (0,...,0,1) if (polygon=="4x2") { zeile[size(zeile)]=zeile[size(zeile)]-1; } for (j=1;j<=size(etavector);j++) { if (etavector[j]==zeile) { etavector=delete(etavector,j); latexcode[j]=" \\setcounter{vertex}{"+string(k)+"} "+latexcode[j]; if (size(etavector)>0) { latexcode[j]=latexcode[j]+" \\newpage "; } else { latexcode[j]=latexcode[j]+" \\end{document}"; } newlatexcode[k]=latexcode[j]; latexcode=delete(latexcode,j); k++; j--; } } } // append the latex code for each vertex to secondaryfanC.tex for (i=1;i<=size(newlatexcode);i++) { write(":a /tmp/"+dateiname+".tex",newlatexcode[i]); } } // create the post script file and display it system("sh","cd /tmp; latex /tmp/"+dateiname+".tex; dvips /tmp/"+dateiname+".dvi -o; kghostview "+dateiname+".ps &"); } proc fan (string polygon,string art,list #) "USAGE: fan(polygon,art,extrays[,#]); polygon,art string, # int ASSUME: polygon is one of the following strings discribing the type of curve to be considered: - 'cubic' : describing a cubic - '2x2' : describing a curve of type (2,2) - '4x2' : describing a curve of type (4,2) art is one of the following strings: - 'discriminant' : refering to the Groebner fan of the discriminant of the curve - 'numerator' : refering to the Groebner fan of the numerator of the j-invariant of the curve - 'secondary' : refering to the secondary fan of the curve PURPOSE: the procedure computes the either the Groebner fan of the discriminant of the curve determined by 'art' or it computes its secondary fan; in any case the inequalities for each cone are determined and the linearity space; if an optional argument # is given, then also the extreme rays of each cone are computed as well RETURN: list, say L, whose first entry is again a list such that L[1][i][1] = integer matrix representing the inequalities of the ith cone of the fan, where the rows correspond to the coefficients ordered as follows as the output of polygonDB called with input 'polygon' L[1][i][2] = a list which contains the inequalities represented by L[1][i][1] as a list of strings L[1][i][3] = only present if an optional argument was given, then it is an integer matrix whose rows are the extreme rays of the ith cone onf the fan L[2] = the linearity space of the fan NOTE: - the procedure calls for its computation polymake by Ewgenij Gawrilow, TU Berlin and Michael Joswig, so it only works if polymake is installed; see http://www.tu-berlin.de/polymake - the computations are done with respect to MAXIMUM, but by duality they are the same as for MINIMUM and we display them with respect to MINIMUM if the optional argument is given, since they refer to a paper where the 'minimum' convention is used" { // get the vertices of the polytope intmat vertices=verticesDB(polygon,art); // get the affine hull of the polytope intmat affineHull=affineHullDB(polygon,art); // get the vertex edge graph of the polytope list graph=vertexEdgeGraphDB(polygon,art); // get the lattice points of the polygon list points=polygonDB(polygon); // check if the extreme rays should be computed if (size(#)>0) { int extrays=1; } else { int extrays=0; } // compute the normal fan and do so with respect to < return(normalFan(vertices,affineHull,graph,extrays,polygonToCoordinates(points)[1],"<")); } example { "EXAMPLE:"; echo=2; list FAN=fan("cubic","discriminant"); // the inequalities of the 83rd cone are print(FAN[1][83][1]); // or as string FAN[1][83][2]; // the linearity space of the Groebner fan of the discriminant of a cubic // is spanned by the rows of the following matrix print(FAN[2]); } proc polytope (string polygon,string art) "USAGE: polytope(polygon,art); polygon,art string ASSUME: polygon is one of the following strings discribing the type of curve to be considered: - 'cubic' : describing a cubic - '2x2' : describing a curve of type (2,2) - '4x2' : describing a curve of type (4,2) art is one of the following strings: - 'discriminant' : refering to the discriminant of the curve - 'numerator' : refering to the numerator of the j-invariant of the curve - 'secondary' : refering to the secondary polytope of the curve PURPOSE: the procedure computes either the Newton polytope of the discriminant of the curve defined by polygon, or the Newton polytope of the numerator of the j-invariant of that curve, or the secondary polytope of the polygon RETURN: list, L with four entries L[1] : an integer matrix whose rows are the coordinates of vertices of the polytope L[2] : the dimension of the polytope L[3] : a list whose ith entry explains to which vertices the ith vertex of the polytope is connected L[4] : an integer matrix which gives the linear system of equations describing the affine hull of the polytope, i.e. the smallest affine space it L[5] : only present if 'art' was 'secondary' and then it is a list whose ith entry contains the triangulation corresponding to the ith vertex NOTE: - polygonToCoordinates()[2] returns a list and the ith entry is the variable to which the ith coordinate in the polytope refers -- here is the same as the input polygon in the procedure; in particular, if u_1,...,u_n are the variables then multiply L[4] by the matrix (1,u_1,...,u_n) and set the result to zero in order to get the mentioned linear system of equations for the affine hull - the procedure calls polymake by Ewgenij Gawrilow, TU Berlin and Michael Joswig, so it only works if polymake is installed; see http://www.tu-berlin.de/polymake - the procedure creates one of the files /tmp/np--.polymake respectively /tmp/sp-.polymake which contains the polytope in polymake format and which can be used for further computations with polymake - if 'art' is 'secondary' then: - the procedure calls for its computation of these triangulations the program points2triangs from the program topcom by Joerg Rambau, Universitaet Bayreuth; it therefore is necessary that this program is installed in order to use this procedure; see http://www.uni-bayreuth.de/departments/wirtschaftsmathematik/rambau/TOPCOM - moreover, the procedure creates the file /tmp/polytope.polymake which contains the polytope in polymake format and which can be used for further computations with polymake; and for intermediate computations the file /tmp/polytope.output is created which however is deleted again before ending - the computations are rather hard and depending on your computer IT MIGHT TAKE HOURS OR DAYS BEFORE THE COMPUTATIONS ARE DONE" { // create the latex file name if (art!="secondary") { string dateiname="np-"+polygon+"-"+art; } else { string dateiname="sp-"+polygon; } // use the following ring execute("ring polytopering=0,("+polygonToCoordinates(polygonDB(polygon))[1]+"),lp;"); // compute the polytope if (art=="discriminant") { execute("poly Delta="+invariantsDB(polygon,art)+";"); return(newtonpolytope(Delta,dateiname)); } if (art=="numerator") { execute("poly A="+invariantsDB(polygon,art)+";"); return(newtonpolytope(A,dateiname)); } if (art=="secondary") { list secpoly=secondarypolytope(polygonDB(polygon)); list erg=polymakepolytope(secpoly[1]); erg[size(erg)+1]=secpoly[2]; return(erg); } } proc testInteriorInequalities (string polygon) "USAGE: testInteriorInequalities(polygon); polygon string ASSUME: polygon is one of the following strings discribing the type of curve to be considered: - 'cubic' : describing a cubic - '2x2' : describing a curve of type (2,2) - '4x2' : describing a curve of type (4,2) RETURN: list, L of three matrices L[1] : the rows are the inequalities of the distinguished cone, say C, in the Groebner fan of the numerator of the j-invariant of the elliptic curve defined by the polygon which is supposed to contain all cones of the secondary fan of the polyon whose corresponding marked subdivision is dual to a curve of type 'polygon' with cycle (these cones are contained in (actually equal to) the cone, say D, whose inequalities can be called by interiorInequalitiesDB) L[2] : the rows are the extreme rays of the cone whose inequalities called by interiorInequalities(), where refers to the input polygon L[3] : the product of the matrices L[1] and transpose(L[2]) NOTE: - the procedure produces the file /tmp/u11inequalities.polymake and calls polymake by Ewgenij Gawrilow, TU Berlin and Michael Joswig, TU Darmstadt with this in order to compute the dimension and the extreme rays (VERTICES) of D; it can thus only be used if the program polymake is installed; see http://www.tu-berlin.de/polymake - that the matrix L[3] contains only non-negative entries shows that D is contained in C" { string dateiname="interiorineq-"+polygon; // compute the inequalities which ensure the presence of the interior point in the subdivision of the intmat ineq=interiorInequalitiesDB(polygon); // compute the inequalities for the first cone in the numerator list numeratorfan=fan(polygon,"numerator"); intmat ineqofC=numeratorfan[1][1][1]; // prepare the header for the polymake file string head="_application polytope _version 2.2 _type RationalPolytope INEQUALITIES "; // the following equation describe the linear space of points giving rise to // the coarsest subdivision of the cubic; of course it is contained in the // cone which shows xy string tail=" EQUATIONS "; tail=tail+intmattopolymake(numeratorfan[2],"rays"); // transform the inequalities in ineq into polymake format int i,k; string ungleichungen; ungleichungen=intmattopolymake(ineq,"rays"); // save the polymake file write(":w /tmp/"+dateiname+".polymake",head+ungleichungen+tail); // create this file and remove it again to avoid error messages write(":w /tmp/"+dateiname+".output",""); // apply polymake to the inequalities in order to compute the rays system("sh","cd /tmp; rm "+dateiname+".output; polymake "+dateiname+".polymake VERTICES > "+dateiname+".output"); // read in the rays and save them into an integer matrix // note, the coordinates are homogeneous, i.e. they have a superflous 0 as first entry string rays=read("/tmp/"+dateiname+".output"); intmat extrays=polymaketointmat(rays,"affine"); return(list(ineqofC,extrays,ineqofC*transpose(extrays))); } ////////////////////////////////////////////////////////////////////////////// // PROCEDURES DEALING WITH THE DISCRIMINANT OF CUBICS: ////////////////////////////////////////////////////////////////////////////// proc nonRefinementC () "USAGE: nonRefinementC(); PURPOSE: the procedure intersects the cone cone of the Groebner fan of the numerator of the j-invariant of a cubic which is dual to the vertex 12u_11 in the Newton polytope with the cone number 851 in the secondary fan of the cubic; it computes the dimension of the cone and its extreme rays; it then computes the same information just for the cone numer 851 in the secondary fan; it turns out that both cones have the same dimension but the extreme rays do not coincide (i.e. they intersect in a full dimensional cone which is strictly contained in the cone number 851 of the secondary fan); in particular, this proves that the secondary fan is not a refinement of the Groebner fan of the numerator of the j-invariant of a cubic RETURN: list, a list L with the following entries L[1] : an integer matrix whose rows are the extreme rays of the intersection of the two above mentioned cones L[2] : the dimension of the intersection of the two above mentioned cones L[3] : an integer matrix whose rows are the extreme rays of the above mentioned cone number 851 in the secondary fan of a cubic L[4] : the dimension of the intersection of this cone number 851 NOTE: - the procedure takes no input - the procudure produces the file nonRefinementC.polymake in /tmp and it calls the program polymake by Ewgenij Gawrilow, TU Berlin and Michael Joswig, TU Darmstadt which creates ineq.output in /tmp; the result is used by the procedure for further computations; in particular the procedure can only be called if polymake is installed on your computer see http://www.tu-berlin.de/polymake" { // compute the Newton polytope of the Numerator of the j-invariant for a cubic list npnum=newtonpolytopeNumeratorC(); // compute its normal fan list numfan=normalFan(npnum[1],npnum[4],npnum[3],0); // compute the inequalities for cones in the the secondary fan list secfan=inequalitiesSecC(); // the header for ineq.polymake string head="_application polytope _version 2.2 _type RationalPolytope INEQUALITIES "; // the inequalities of the cone in the numerator of the j-invariant of a cubic // for which supposedly contains all cones of the discriminant of the cubic // the tail for all polymake files string tail=" EQUATIONS "; // the equations are given by the tail=tail+intmattopolymake(numfan[2],"rays"); // get the inequalities for the cone for the numerator string ungleichungenNum=intmattopolymake(numfan[1][1][1],"rays"); // get the inequalities for the cone in the secondary fan string ungleichungenSec=intmattopolymake(secfan[851][1],"rays"); // write the inequalities for the intersection of the cones to nonRefinementC.polymake and call polymake write(":w /tmp/nonRefinementC.polymake",head+ungleichungenSec+ungleichungenNum+tail); // compute the extreme rays of the intersecion system("sh","cd /tmp; /bin/rm ineq.output; polymake nonRefinementC.polymake VERTICES > ineq.output"); string polymake=read("/tmp/ineq.output"); intmat verticesinter=polymaketointmat(polymake,"affine"); // compute the dimension of the intersection system("sh","cd /tmp; /bin/rm ineq.output; polymake nonRefinementC.polymake DIM > ineq.output"); polymake=read("/tmp/ineq.output"); execute("int dimensioninter="+polymake[5]+";"); // write the inequalities for the cones in the secondary fan to nonRefinementC.polymake and call polymake write(":w /tmp/nonRefinementC.polymake",head+ungleichungenSec+tail); // compute the extreme rays for the cone in the secondary fan system("sh","cd /tmp; /bin/rm ineq.output; polymake nonRefinementC.polymake VERTICES > ineq.output"); polymake=read("/tmp/ineq.output"); intmat vertices=polymaketointmat(polymake,"affine"); // compute the dimension for the cone in the secondary fan system("sh","cd /tmp; /bin/rm ineq.output; polymake nonRefinementC.polymake DIM > ineq.output"); polymake=read("/tmp/ineq.output"); execute("int dimension="+polymake[5]+";"); // the output is supposed to be /* [1]: 3,9,5,1,-3,-23,-1,5,1,3, 9,3,-1,-5,-9,-2,5,-7,19,-12, 9,15,-5,-25,15,-1,-11,-17,23,-3, 3,3,1,-1,-3,5,1,-23,5,9, 6,6,-4,-14,6,1,-4,-4,16,-9, 3,3,5,-23,9,1,5,-1,1,-3, 3,9,-23,5,3,5,1,1,-1,-3, 3,-3,1,5,9,-1,-23,1,5,3 [2]: 6 [3]: -9,1,1,1,1,1,1,1,1,1, 9,3,-1,-5,-9,-2,5,-7,19,-12, 3,3,1,-1,-3,5,1,-23,5,9, 3,-3,1,5,9,-1,-23,1,5,3, 3,9,5,1,-3,-23,-1,5,1,3, 3,3,5,-23,9,1,5,-1,1,-3, 3,9,-23,5,3,5,1,1,-1,-3 [4]: 6 */ return(list(verticesinter,dimensioninter,vertices,dimension)); } proc raysC () "USAGE: raysC() RETURN: none NOTE: - the procedure is called without any argument; - it produces a latex file /tmp/raysC.tex, compiles this file and shows it with the aid of kghostview - it computes for each (up to symmetry) ray in the secondary fan of a cubic the generalised cycle length and the generic valuation of the j-invariant; one is the negative of the other one - this is part of a proof in the paper Eric Katz, Hannah Markwig, Thomas Markwig: The $j$-invariant of a Plane Tropical Cubic. Preprint 2007." { int i,j; // save the generic polynomials defining the 10 rays which have to be considered ring rayring=(0,t),(x,y),dp; poly gencyclelength; // takes the generalised cycle length of the rays list rays=x3+tx2y+t2xy2+t6y3+x2+xy+t4y2+x+t2y+1,x3+3tx2y+t2xy2+t3y3+x2+xy+t2y2+x+ty+1, x3+t2x2y+t4xy2+t6y3+x2+xy+t2y2+x+ty+1,x3+x2y+txy2+t3y3+x2+xy+t2y2+x+ty+1, x3+x2y+t2xy2+t4y3+x2+xy+t2y2+x+2ty+1,t2x3+tx2y+txy2+ty3+tx2+xy+y2+3x+y+1, x3+x2y+xy2+y3+tx2+xy+y2+t2x+y+t3,x3+x2y+xy2+y3+x2+xy+y2+tx+y+t2, x3+x2y+xy2+y3+x2+xy+y2+x+y+t,x3+x2y+xy2+y3+x2+xy+y2+tx+ty+t2, x3+x2y+xy2+y3+x2+xy+y2+tx+y+1,x3+x2y+xy2+y3+x2+txy+y2+x+y+1; list rayintvecs; // takes the weight vectors defined by the polynomials matrix M[10][1]; // stores coefficients of a polynomial intvec rayintvec; // stores a weightvector // compute for each polynomial in rays the weight vector defined by the valuations of // the coefficients where the variables are ordered as xy,x3,x2,x,1,x2y,y,xy2,y2,y3 for (i=1;i<=size(rays);i++) { M=coeffs(rays[i],ideal(xy,x3,x2,x,1,x2y,y,xy2,y2,y3)); for (j=1;j<=10;j++) { rayintvec[j]=simplifyToOrder(M[j,1])[1]; } rayintvecs[i]=rayintvec; } // define the ring in which the discriminant lives ring invring=0,(u11,u30,u20,u10,u00,u21,u01,u12,u02,u03),lp; // make the numerator of the j-invariant available execute("poly invnum="+invariantsDB("cubic","numerator")+";"); // make the discriminant avaialable execute("poly invdenom="+invariantsDB("cubic","discriminant")+";"); poly indenom; // takes the initial form of invdenom poly innum; // takes the initial form of invnum int wdegdenom; // takes the weighted degree of the initial form of invdenom int wdegnum; // takes the weighted degree of the initial form of invdnum int genericvalj; // takes the generic valuation of the j-invariant for the polynomial defining the ray // initialise the latex output string latex="\\documentclass[12pt]{amsart} \\usepackage{texdraw,amsmath,bbm} \\setlength{\\topmargin}{30mm} \\addtolength{\\topmargin}{-1in} \\addtolength{\\topmargin}{-\\headsep} \\addtolength{\\topmargin}{-\\headheight} \\addtolength{\\topmargin}{-\\topskip} \\setlength{\\textheight}{267mm} \\addtolength{\\textheight}{\\topskip} \\addtolength{\\textheight}{-\\footskip} \\addtolength{\\textheight}{-30pt} \\setlength{\\oddsidemargin}{-1in} \\addtolength{\\oddsidemargin}{30mm} \\setlength{\\evensidemargin}{\\oddsidemargin} \\setlength{\\textwidth}{150mm} \\renewcommand{\\baselinestretch}{1.2} \\DeclareMathOperator{\\val}{val} \\begin{document} \\parindent0cm \\thispagestyle{empty} \\vspace*{2cm} \\begin{center} \\Large\\bf The $12$ Types of Rays of the Secondary Fan of a Cubic \\end{center} \\vspace{2cm} The computational results listed below prove some of the results in the paper \\begin{center} \\begin{minipage}{12cm} \\parindent-1cm \\em Eric Katz, Hannah Markwig, Thomas Markwig: The $j$-invariant of a Plane Tropical Cubic. Preprint 2007. \\end{minipage} \\end{center} For an explantion of the terms used in the following, for some of the notation, like $\\val_{\\cdot}(j)$, and for a thorough explanation of the results we refer to this paper. \\vspace{0.5cm} We consider a general plane cubic given by the polynomial \\begin{displaymath} f=u_{30}x^3+u_{21}x^2y+u_{12}xy^2+u_{03}y^3+u_{20}x^2+u_{11}xy+u_{02}y^2+u_{10}x+u_{01}y+u_{00} \\end{displaymath} and the associated secondary fan which is the secondary fan of the marked polytope $(Q_3,\\mathcal{A}_3)$, where $\\mathcal{A}_3=\\{(3,0),(2,1),(1,2),(0,3),(2,0),(1,1),(0,2),(1,0), (0,1),(0,0)\\}$ is the set of marked points of $Q_3$ and $Q_3$ is the convex hull of $\\mathcal{A}_3$. \\vspace{0.5cm} In the above mentioned paper the rays of the secondary fan have been classified as \\emph{lifts}, \\emph{folds}, and \\emph{pinwheels}, and we list them below up to symmetry. Moreover, we give in each of the cases a particular polynomial representative and compute for this one the \\emph{generalised cycle length} and the \\emph{generic valuation of the j-invariant}. \\vspace{0.5cm} It is out aim to see that the negative of the one of the functions coincide with the other one on each ray of the secondary fan of $\\mathcal{A}_3$. However, since they are linear on a cone of the secondary fan of $\\mathcal{A}_3$, since they coincide on the the linearity space space anyhow and since a ray is generated by the linearity space plus one additional vector, it suffices to show that they coincide for a particular representative of a ray in order to see that they coincide on the whole ray. Thus our investigation proves this claim for all rays that we consider. However, since all other rays are obtained from these by integral unimodular affine transformations, which respects the generic valuation of the j-invariant as well as the generalised cycle length, we get the result indeed for all rays of the secondary fan of $\\mathcal{A}_3$. \\vspace{0.5cm} Note that in the marked subdivisions on the following pages black lattice points correspond to markings, while grey lattice points are not marked. \\newpage \\setcounter{page}{1} "; write(":w /tmp/raysC.tex",latex); latex=""; // compute for each ray the generic valuation of the j-invariant // of the representing polynomial and the generalised cycle length setring rayring; list graph; // takes the graph of a tropical curve for (i=1;i<=size(rays);i++) { setring invring; // compute the initial forms of invdenom and invnum with respect to the weight given by the ray indenom=inform(invdenom,-rayintvecs[i]); innum=inform(invnum,-rayintvecs[i]); // compute their weighted degree wdegdenom=scalarproduct(rayintvecs[i],leadexp(indenom)); wdegnum=scalarproduct(rayintvecs[i],leadexp(innum)); // compute the generic valuation of the j-invariant for the polynomial defining the ray genericvalj=wdegnum-wdegdenom; // compute the generalised cycle length setring rayring; graph=tropicalCurve(rays[i]); gencyclelength=generalisedcyclelengthC(graph); // prepare the latex output latex=latex+" \\begin{center} \\large\\bf "+string(i)+". Ray: "; if (i<=6) { latex=latex+" a pinwheel given by the equation:"; } if ((i>6) and (i<=10)) { latex=latex+" a fold given by the equation:"; } if (i>10) { latex=latex+" a lift given by the equation:"; } latex=latex+" \\end{center} \\vspace{0.5cm} \\begin{displaymath} "+texPolynomial(rays[i])+". \\end{displaymath} \\vspace{0.5cm} The corresponding Newton polygon is: \\vspace*{0.5cm} \\begin{center} "+texDrawNewtonSubdivision(graph)+" \\end{center} \\vspace{0.5cm} The dual tropical curve looks like: \\begin{center} \\begin{texdraw} \\drawdim cm \\relunitscale 0.5 "+texDrawTropical(graph)+" \\end{texdraw} \\end{center} \\vspace{0.5cm} The generic valuation of the $j$-invariant is:\\;\\;\\;"+string(genericvalj)+" \\vspace{0.5cm} The generalised cycle length is:\\hspace*{2.5cm}"+string(gencyclelength); if (i=1;i--) { k=random(0,1); if ((k==1) and (m[i]!=var(1)*var(2))) { mm=mm+m[i]; } } m=mm; } for (l=1;l<=n;l++) { for (i=1;i<=size(m);i++) { if (m[i]!=xy) { if (size(#)!=0) { k=random(0,2); } else { k=0; } if (k==0) { j=random(ug,og); randompolynomial=randompolynomial+t^j*m[i]; } } if (m[i]==xy) { j=random(ug-20,ug-1); randompolynomial=randompolynomial+t^j*m[i]; } } } setring BASERING; poly randompolynomial=imap(RANDOMRING,randompolynomial); if (size(randompolynomial)<3) { randompolynomial=randomEllipticC(ug,og,n,#); } return(randompolynomial); } example { "EXAMPLE:"; echo=2; ring r=(0,t),(x,y),dp; randomEllipticC(-2,5,2); randomEllipticC(-2,5,2,1); } proc examplesC (int n,list #) "USAGE: examplesC(n[,#]); n int, # list RETURN: NONE NOTE: - the procedure computes n cubic random cubic polynomials in Q(t)[x,y] defining an elliptic curve; it computes their Weierstrass form and the reduced Weierstrass form; for the curve and its Weierstrass form it computes the tropical j-invariant; for all three cuves it computes the classical j-invariant; it saves these data in the file /tmp/examplesC.txt; finally it creates 3n latex files in the folder /tmp, namely for each example, say j, files examplesC-f-j.tex, examplesC-wf-j.tex, and examplesC-swf-j.tex, containing the tropical curves and the Newton diagrams of the three curves - if an additional argument is given, then no latex files are produced; moreover, the file /tmp/examplesC.txt only contains the equations of the examples, their j-invariants and their tropical j-invariants EXAMPLE: example cubicexample; shows an example" { int oldprintlevel=printlevel; printlevel=-1; if(defined(basering)) { def BASERING=basering; } ring CUBICRING=(0,t),(x,y),dp; int i; number tf,j; poly f,wf,swf; list graph; string cubicexample,dateiname,texbsp; for (i=1;i<=n;i++) { f=randomEllipticC(-20,20,1,1); wf=weierstrassform(f); swf=weierstrassform(f,1); graph[1]=tropicalCurve(f); tf=tropicalJInvariant(graph[1]); if (tf!=-1) { if (size(#)!=0) { j=-jInvariantOfPuiseuxCubic(f,"ord"); cubicexample=" "+string(i)+". Example: "+string(f)+" "+string(j)+","+string(tf); write(":a /tmp/examplesC.txt",cubicexample); } else { cubicexample=" "+string(i)+". Example: "+string(f); write(":a /tmp/examplesC.txt",cubicexample); texbsp=drawTropicalCurve(graph[1],"onlytexfile"); dateiname="cubicexample-f-"+string(i)+".tex"; write(":w /tmp/"+dateiname,texbsp); graph[2]=tropicalCurve(wf); texbsp=drawTropicalCurve(graph[2],"onlytexfile"); dateiname="cubicexample-wf-"+string(i)+".tex"; write(":w /tmp/"+dateiname,texbsp); graph[3]=tropicalCurve(swf); texbsp=drawTropicalCurve(graph[3],"onlytexfile"); dateiname="cubicexample-swf-"+string(i)+".tex"; write(":w /tmp/"+dateiname,texbsp); cubicexample=" -j-invariant-order: "+string(-jInvariantOfPuiseuxCubic(f,"ord"))+" trop-j-invariant: "+string(tf)+" Weierstrassform: "+string(wf)+" its -j-inv-ord: "+string(-jInvariantOfPuiseuxCubic(wf,"ord"))+" its trop-j-inv: "+string(tropicalJInvariant(graph[2]))+" Simple-W-Form: "+string(swf)+" its -j-inv-ord: "+string(-jInvariantOfPuiseuxCubic(swf,"ord"))+" --------------------------------------------------------------- "; write(":a /tmp/examplesC.txt",cubicexample); } } else { i--; } } if (defined(BASERING)) { setring BASERING; } printlevel=oldprintlevel; } example { "EXAMPLE:"; echo=2; examplesC(5); } //////////////////////////////////////////////////////////////////////////////////////// /// PROCEDURES DEALING WITH THE DISCRIMINANT OF CURVES ON P1xP1 OF TYPE (2,2) //////////////////////////////////////////////////////////////////////////////////////// proc randomElliptic2x2 (int ug, int og, int n, list #) "USAGE: randomElliptic2x2(ug,og,n[,#]); ug, og, n int, # list ASSUME: the basering is Q(t)[x,y] RETURN: poly, a polynomial in the variables x and y where the coefficients are of the sums of up to n summands of the form t^j with j a random integer between ug and og defining an elliptic curve of type (2,2) on P^1xP^1 NOTE: - if an optional argument # is given, then the coefficients are instead either of the form as above or they are zero, and this is chosen randomly - the coefficient of xy will always be a sum of n summands of the form t^j, but with j randomly chosen between ug-20 and ug-1 - the polynomial will always have at least three terms EXAMPLE: example randomElliptic2x2; shows an example" { int i,j,k,l; ideal m=1,var(1),var(1)^2,var(2),var(1)*var(2),var(1)^2*var(2),var(2)^2,var(1)var(2)^2,var(1)^2*var(2)^2; poly randompolynomial; if (size(#)!=0) { ideal mm=var(1)*var(2); for (i=size(m);i>=1;i--) { k=random(0,1); if ((k==1) and (m[i]!=var(1)*var(2))) { mm=mm+m[i]; } } m=mm; } for (l=1;l<=n;l++) { for (i=1;i<=size(m);i++) { if (m[i]!=var(1)*var(2)) { if (size(#)!=0) { k=random(0,2); } else { k=0; } if (k==0) { j=random(ug,og); randompolynomial=randompolynomial+t^j*m[i]; } } if (m[i]==var(1)*var(2)) { j=random(ug-20,ug-1); randompolynomial=randompolynomial+t^j*m[i]; } } } if (size(randompolynomial)<3) { randompolynomial=randomElliptic2x2(ug,og,n,#); } return(randompolynomial); } example { "EXAMPLE:"; echo=2; ring r=(0,t),(x,y),dp; randomElliptic2x2(-2,5,2); randomElliptic2x2(-2,5,2,1); } proc examples2x2 (int n,list #) "USAGE: examples2x2(n[,#]); n int, # list RETURN: NONE NOTE: - the procedure computes n cubic random polynomial in Q(t)[x,y] defining an elliptic curve of type (2,2) on P^1xP^1 elliptic curve; it computes their Weierstrass form and the reduced Weierstrass form; for the curve and its Weierstrass form it computes the tropical j-invariant; for all three cuves it computes the classical j-invariant; it saves these data in the file /tmp/examples2x2.txt; finally it creates 3n latex files in the folder /tmp, namely for each example, say j, files examples2x2-f-j.tex, examples2x2-wf-j.tex, and examples2x2-swf-j.tex, containing the tropical curves and the Newton diagrams of the three curves - if an additional argument is given, then no latex files are produced; moreover, the file /tmp/examples2x2.txt only contains the equations of the examples, their j-invariants and their tropical j-invariants EXAMPLE: example p1xp1example; shows an example" { int oldprintlevel=printlevel; printlevel=-1; if(defined(basering)) { def BASERING=basering; } ring CUBICRING=(0,t),(x,y),dp; int i; number tf,j; poly f,wf; list graph; list j_ws; string cubicexample,dateiname,texbsp; for (i=1;i<=n;i++) { if (i mod 2==0) { f=randomElliptic2x2(21,60,1,1); } else { f=randomElliptic2x2(21,60,1); } graph[1]=tropicalCurve(f); tf=tropicalJInvariant(graph[1]); if (tf!=-1) { i; if (size(#)!=0) { j=jInvariantOfA2x2Curve(f,1); cubicexample=" "+string(i)+". Example: "+string(f)+" "+string(j)+","+string(tf); write(":a /tmp/examples2x2.txt",cubicexample); } else { cubicexample=" "+string(i)+". Example: "+string(f); write(":a /tmp/examples2x2.txt",cubicexample); texbsp=drawTropicalCurve(graph[1],"onlytexfile"); dateiname="example2x2-f-"+string(i)+".tex"; write(":w /tmp/"+dateiname,texbsp); j_ws=jInvariantOfA2x2Curve(f,"ws"); j=j_ws[1]; wf=j_ws[2]; graph[2]=tropicalCurve(wf); texbsp=drawTropicalCurve(graph[2],"onlytexfile"); dateiname="example2x2-wf-"+string(i)+".tex"; write(":w /tmp/"+dateiname,texbsp); cubicexample=" -j-invariant-order: "+string(j)+" trop-j-invariant: "+string(tf)+" Weierstrassform: "+string(wf)+" its -j-inv-ord: "+string(-jInvariantOfPuiseuxCubic(wf,"ord"))+" its trop-j-inv: "+string(tropicalJInvariant(graph[2]))+" --------------------------------------------------------------- "; write(":a /tmp/examples2x2.txt",cubicexample); } } else { i--; } } if (defined(BASERING)) { setring BASERING; } printlevel=oldprintlevel; } example { "EXAMPLE:"; echo=2; examples2x2(5); } //////////////////////////////////////////////////////////////////////////////////////// /// PROCEDURES DEALING WITH THE STORED DATA FOR THE DIFFERENT TYPES OF POLYGONS / CURVES: //////////////////////////////////////////////////////////////////////////////////////// proc polygonDB (string polygon) "USAGE: polygonDB(polygon,art); polygon,art string ASSUME: polygon is one of the following strings discribing the type of curve to be considered: - 'cubic' : describing a cubic - '2x2' : describing a curve of type (2,2) - '4x2' : describing a curve of type (4,2) RETURN: list, the coordinates of the polygon in question ordered such that the interior point is the first one" { if (polygon=="cubic") { list points=intvec(1,1),intvec(3,0),intvec(2,0),intvec(1,0),intvec(0,0), intvec(2,1),intvec(0,1),intvec(1,2),intvec(0,2),intvec(0,3); } if (polygon=="2x2") { list points=intvec(1,1),intvec(2,0),intvec(1,0),intvec(0,0),intvec(2,1), intvec(0,1),intvec(2,2),intvec(1,2),intvec(0,2); } if (polygon=="4x2") { list points=intvec(1,1),intvec(4,0),intvec(3,0),intvec(2,0),intvec(1,0),intvec(0,0), intvec(2,1),intvec(0,1),intvec(0,2); } return(points); } example { "EXAMPLE:"; echo=2; // show the invariant c4 in the case of a plane cubic polygonDB("cubic"); } proc invariantsDB (string polygon, string invar) "USAGE: invariantsDB(polygon,invar); invar, polygon string ASSUME: polygon tells which type of elliptic curve we are looking at and it is one of the following: - 'cubic' : for a cubic in the projective plane - '2x2' : for a curve of type (2,2) on P1xP1 - '4x2' : for a curve of type (4,2) on the weighted projective plane with weights (1,2,1) invar tells which invariant of the elliptic curve defined by polygon should be returned and it is one of the following: - 'discriminant' : referring to the discriminant - 'c4' : referring to the invariant c4 - 'numerator' : referring to the numerator of the j-invariant, which is just c4^3 RETURN: string, the invariant of the elliptic curve asked for as a string NOTE: - the invariant is a polynomial in the unknowns uij, with i,j integers, where the uij can be thought of as coefficients of a defining affine euqation - the invariants are not computed here, they are just stored - note that j=c4^3/discriminant is the j-invariant of the corresponding elliptic curve" { // the procedure calls the data from another procedure in which they are stored // and which is the very last procedure in this library in order to keep // it readably, since the data pass over many lines without linebreak return(invariantsDatabase(polygon,invar)); } example { "EXAMPLE:"; echo=2; // show the invariant c4 in the case of a plane cubic invariantsDB("cubic","c4"); // save the same invariant as a polynomial for later use ring r=0,(u11,u30,u20,u10,u00,u21,u01,u12,u02,u03),dp; execute("poly c4="+invariantsDB("cubic","c4")+";"); c4; } proc affineHullDB (string polygon,string art) "USAGE: affineHullDB(polygon,art); polygon,art string ASSUME: polygon is one of the following strings discribing the type of curve to be considered: - 'cubic' : describing a cubic - '2x2' : describing a curve of type (2,2) - '4x2' : describing a curve of type (4,2) art is one of the following strings: - 'discriminant' : refering to the discriminant of the curve - 'numerator' : refering to the numerator of the j-invariant of the curve - 'secondary' : refering to the secondary polytope of the curve RETURN: intmat, whose rows are the equations of the affine hull of the polytope respectively span the linearity space of the fan after removing the first column" { // the procedure calls the data from another procedure in which they are stored // and which is the very last procedure in this library in order to keep // it readably, since the data pass over many lines without linebreak return(affineHullDatabase(polygon,art)); } example { "EXAMPLE:"; echo=2; // show the affine hull for the discriminant of a cubic affineHullDB("cubic","discriminant"); } proc verticesDB (string polygon,string art) "USAGE: verticesDB(polygon,art); polygon,art string ASSUME: polygon is one of the following strings discribing the type of curve to be considered: - 'cubic' : describing a cubic - '2x2' : describing a curve of type (2,2) - '4x2' : describing a curve of type (4,2) art is one of the following strings: - 'discriminant' : refering to the discriminant of the curve - 'secondary' : refering to the secondary polytope of the curve RETURN: intmat, the ith row contains the coordinates of the ith vertex of the polytope" { // the procedure calls the data from another procedure in which they are stored // and which is the very last procedure in this library in order to keep // it readably, since the data pass over many lines without linebreak return(verticesDatabase(polygon,art)); } example { "EXAMPLE:"; echo=2; // show the vertices for the discriminant of a cubic verticesDB("cubic","discriminant"); } proc vertexEdgeGraphDB (string polygon,string art) "USAGE: vertexEdgeGraphDB(polygon,art); polygon,art string ASSUME: polygon is one of the following strings discribing the type of curve to be considered: - 'cubic' : describing a cubic - '2x2' : describing a curve of type (2,2) - '4x2' : describing a curve of type (4,2) art is one of the following strings: - 'discriminant' : refering to the discriminant of the curve - 'secondary' : refering to the secondary polytope of the curve RETURN: list, vertex edge graph of the polytope; NOTE: the ith integer vector in the list explains with which vertices the ith vertex in the polytope is connected; this information was computed with the help of polymake via vertex-edge-graph" { // the procedure calls the data from another procedure in which they are stored // and which is the very last procedure in this library in order to keep // it readably, since the data pass over many lines without linebreak return(vertexEdgeGraphDatabase(polygon,art)); } example { "EXAMPLE:"; echo=2; // show the vertex edge graph for the discriminant of a cubic list graph=vertexEdgeGraphDB("cubic","discriminant"); graph[1]; } proc extremeRaysDB (int n,string polygon,string art) "USAGE: extremeRaysDB(n,polygon,art); n int, polygon,art string ASSUME: polygon is one of the following strings discribing the type of curve to be considered: - 'cubic' : describing a cubic - '2x2' : describing a curve of type (2,2) - '4x2' : describing a curve of type (4,2) art is one of the following strings: - 'discriminant' : refering to the discriminant of the curve - 'secondary' : refering to the secondary polytope of the curve RETURN: intmat, the rows of the matrix are the extreme rays of the cone dual to the nth vertex of the polytope NOTE: the matrices have been produced by fan with the help of polymake" { // the procedure calls the data from another procedure in which they are stored // and which is the very last procedure in this library in order to keep // it readably, since the data pass over many lines without linebreak return(extremeRaysDatabase(n,polygon,art)); } example { "EXAMPLE:"; echo=2; // show the extreme rays for the first cone of the discriminant of a cubic print(extremeRaysDB(1,"cubic","discriminant")); } proc triangulationsDB (int n,string polygon) "USAGE: triangulationsDB(n,polygon,art); n int, polygon,art string ASSUME: polygon is one of the following strings discribing the type of curve to be considered: - 'cubic' : describing a cubic - '2x2' : describing a curve of type (2,2) - '4x2' : describing a curve of type (4,2) RETURN: list, the nth triangulation of the polytope" { // the procedure calls the data from another procedure in which they are stored // and which is the very last procedure in this library in order to keep // it readably, since the data pass over many lines without linebreak return(triangulationsDatabase(n,polygon)); } example { "EXAMPLE:"; echo=2; // show the invariant c4 in the case of a plane cubic triangulationsDB(1,"cubic"); } proc edgeInequalitiesDB (string polygon) "USAGE: edgeInequalitiesDB(polygon); polygon string ASSUME: polygon is one of the following strings discribing the type of curve to be considered: - 'cubic' : describing a cubic - '2x2' : describing a curve of type (2,2) - '4x2' : describing a curve of type (4,2) RETURN: list, say L of lists L[1] : of integer matrices such that the ith matrix describes the inequalities which are necessary for the presence of the ith inner edge in a subdivision of the polygon L[2] : endpoints of the corresponding edges" { // the procedure calls the data from another procedure in which they are stored // and which is the very last procedure in this library in order to keep // it readably, since the data pass over many lines without linebreak return(edgeInequalitiesDatabase(polygon)); } example { "EXAMPLE:"; echo=2; // get the edge inequalities for a cubic list ei=edgeInequalitiesDB("cubic"); // display the inequalities for the first edge print(ei[1]); } proc interiorInequalitiesDB (string polygon) "USAGE: interiorInequalitiesDB(polygon); polygon string ASSUME: polygon is one of the following strings discribing the type of curve to be considered: - 'cubic' : describing a cubic - '2x2' : describing a curve of type (2,2) - '4x2' : describing a curve of type (4,2) RETURN: intmat, the inequalities describing the cone such that the interior point of the polygon is a vertex of some polygon in the corresponding marked subdivision of the polygon" { // the procedure calls the data from another procedure in which they are stored // and which is the very last procedure in this library in order to keep // it readably, since the data pass over many lines without linebreak return(interiorInequalitiesDatabase(polygon)); } example { "EXAMPLE:"; echo=2; // display the inequalities for the interior edges in the case of a cubic print(interiorInequalitiesDB("cubic")); } proc verticesToDB (list polytopelist) "USAGE: verticesToDB(polytopelist); polytopelist list ASSUME: polytopelist is the output of secondarypolytope or of newtonpolytope PURPOSE: the procedure creates the file /tmp/vertices.db which stores the affine hull in the format needed in verticesDB RETURN: none" { intmat vertices=polytopelist[1]; int i; intvec row; write(":w /tmp/vertices.db"," intmat VERTICES["+string(nrows(vertices))+"]["+string(ncols(vertices))+"]="); for (i=1;i<=nrows(vertices);i++) { row=vertices[i,1..ncols(vertices)]; if (i=0) { return(n); } else { return(-n); } } static proc stringdelete (string w,int i) "USAGE: stringdelete(w,i); w string, i int RETURN: string, the string w with the ith component deleted NOTE: the procedure is called by specialtexmonomial" { if ((i>size(w)) or (i<=0)) { return(w); } if ((size(w)==1) and (i==1)) { return(""); } if (i==1) { return(w[2..size(w)]); } if (i==size(w)) { return(w[1..size(w)-1]); } else { string erg=w[1..i-1],w[i+1..size(w)]; return(erg); } } static proc stringinsert (string w,string v,int i) "USAGE: stringinsert(w,v,i); w string, v string, i int RETURN: string, the string w where at the ith component v has been inserted NOTE: the procedure is called by specialtexmonomial" { if (i==1) { return(v[1]+w); } if (i==size(w)+1) { return(w+v[1]); } else { string anfang=w[1..i-1]; string ende=w[i..size(w)]; string erg=anfang+v+ende; return(erg); } } static proc poly2intvec (poly p,int n) "USAGE: poly2intvec(p,n); poly p, int n RETURN: intvec, the negative of leading exponent of p with first component set to n NOTE: the procedure is called by interiorInequalitiesDatabase" { intvec v=-leadexp(p); v[1]=n; return(v); } static proc newtoncycle (intvec v) "USAGE: newtoncycle(v); intvec v ASSUME: v is the exponent vector of a vertex in the Newton polytope of the discriminant of a cubic, a curve of type 2x2 or a curve of type 4x2, hence intvec has either length 10 or 9 and contains only non-negative entries RETURN: list, the list L contains integer vectors corresponding to the points in the Newton polytope in the general cubic whose coefficient is involved in the monomial descibed by the integer vector, but the u11-component is ignored NOTE: - the points are ordered in such a way that they form a cycle in the Newton polytope - the procedure is called by displayFan" { // check for all entries in v (but the first) if it is non-zero and if so, add the corresponding // point in the Newton polytope to the list L list L; int j=1; for (int i=2;i<=size(v);i++) { if (v[i]!=0) { execute("L[j]=intvec("+string(var(i))[2]+","+string(var(i))[3]+");"); j++; } } // order the points in L so that they form a cycle return(findOrientedBoundary(L)[1]); } static proc orderboundaryC (list boundary,intvec v) "USAGE: orderboundaryC(boundary,v); list boundary, invec v ASSUME: boundary is a list of integer vectors describing a cycle in the Newton polytope of a cubic around the inner vertex xy ordered clock wise RETURN: list, boundary reordered NOTE: the procedure is called by groebnerfanC" { int i; if ((v[3]!=0) and (v[9]!=0)) // u20*u02 is involved { while (boundary[1]!=intvec(2,0)) { boundary[size(boundary)+1]=boundary[1]; boundary=delete(boundary,1); } } if ((v[6]!=0) and (v[7]!=0)) // u21*u01 is involved { while (boundary[1]!=intvec(2,1)) { boundary[size(boundary)+1]=boundary[1]; boundary=delete(boundary,1); } } if ((v[4]!=0) and (v[8]!=0)) // u10*u12 is involved { while (boundary[1]!=intvec(1,0)) { boundary[size(boundary)+1]=boundary[1]; boundary=delete(boundary,1); } } return(boundary); } static proc texinequality (string st) "USAGE: texinequality(st); st string RETURN: string, the tex command representing the inequality given by st NOTE : the procedure is called from secondaryfanC" { int i,j; string newst; for (i=1;i<=size(st);i++) { if (st[i]!=" ") { if (st[i]=="u") { newst=newst+"u_{"+st[i+1]+st[i+2]+"}"; i=i+2; } else { if (st[i]=="*") { newst=newst+"\\cdot "; } else { if (st[i]=="<") { newst=newst+" & < & "; } else { newst=newst+st[i]; } } } } } newst=newst+"\\\\"; return(newst); } static proc specialtexpolynomial (poly f) "USAGE: specialtexpolynomial(f); f poly RETURN: string, the tex command representing f NOTE : the procedure is called from groebnerfanC" { int altshort=short; short=0; if (f==0) { return("0"); } string texmf; string texco; string texf; string plus; int laenge=size(f); while (f!=0) { if (size(f)5) { string tfractest=koeffizient[2..6]; if (tfractest=="tfrac") { return(koeffizient+cdot); } } int anzahlplus,anzahlminus; for(int j=1;j<=size(koeffizient);j++) { if (koeffizient[j]=="+") { anzahlplus++; } if (koeffizient[j]=="-") { anzahlminus++; } } if ((anzahlplus==0) and (anzahlminus==1) and (koeffizient[1]=="-")) { return(koeffizient+cdot); } else { if (anzahlplus+anzahlminus>=1) { return("("+koeffizient+")"+cdot); } else { return(koeffizient+cdot); } } } static proc simplifyToOrder (poly f) "USAGE: simplifyToOrder(f); f a polynomial ASSUME: f is a polynomial in Q(t)[x_1,...,x_n] RETURN: list, l[1] = t-order of leading term of f l[2] = the rational coefficient of the term of lowest t-order in lead(f) NOTE: the procedure is called by initialform" { string denom=string(denominator(leadcoef(f))); string num=string(numerator(leadcoef(f))); def BASERING=basering; execute("ring r=0,t,ls;"); execute("poly denomi="+denom+";"); execute("poly numer="+num+";"); int ordnung=ord(numer)-ord(denomi); string koeffizient=string(leadcoef(numer)/leadcoef(denomi)); setring BASERING; return(list(ordnung,koeffizient)); } static proc scalarproduct (intvec w,intvec v) "USAGE: scalarproduct(w,v); w,v intvec ASSUME: w and v are integer vectors of the same length RETURN: int, the scalarproduct of v and w NOTE: the procedure is called by tropicalparametriseNoabs" { int sp; for (int i=1;i<=size(w);i++) { sp=sp+v[i]*w[i]; } return(sp); } static proc generalisedcyclelengthC (list tc) "USAGE: generalisedcyclelength(tc); tc list ASSUME: tc is the graph of a plane tropical cubic where the monomials 1, x3 and y3 were present RETURN: int, the generalised cycle length of the tropical curve defined by h NOTE: the procedure is called by raysC" { // save only the interior edges of the Newton polygon list NP=tc[size(tc)][2]; // if there are more than two edges, then the interior point // is there and we can use the standard procedure for the cyclelength if (size(NP)>2) { return(tropicalJInvariant(tc)); } else { // if the curve has less than two inner edges .... if (size(NP)<2) { // if it has none, then return zero if (size(NP)==0) { return(0); } // if it has one, check if (1,1) lies on the inner edge else { // if not, then return 0 if ((NP[1][1]-intvec(1,1))!=(intvec(1,1)-NP[1][2])) { return(0); } // otherwise set save the edge in zwNP else { list zwNP=NP[1]; } } } // if the Newton polytope has 2 inner edges, then both contain (1,1) and they are actually // a single inner edge whose endpoints are the lattice points other than (1,1); store them in zwNP; // do the same if NP has only one if (size(NP)==2) { list zwNP; if (NP[1][1]!=intvec(1,1)) { zwNP[1]=NP[1][1]; } else { zwNP[1]=NP[1][2]; } if (NP[2][1]!=intvec(1,1)) { zwNP[2]=NP[2][1]; } else { zwNP[2]=NP[2][2]; } } // compute the generalised cyclelength intvec v=zwNP[1]-zwNP[2]; poly laenge=4*abs(((tc[1][1]-tc[2][1])*v[2]-(tc[1][2]-tc[2][2])*v[1])/(v[1]*v[1]+v[2]*v[2])); return(laenge); } } static proc decimal (poly n,list #) "USAGE: decimal(f[,#]); f poly, # list ASSUME: f is a polynomial in Q[x_1,...,x_n], and # is either empty or #[1] is a positive integer RETURN: string, a decimal expansion of the leading coefficient of f up to order two respectively #[1] NOTE: the procedure is called by texDrawTropical and conicWithTangents and f will actually be a number" { def BASERING=basering; execute("ring INTERRING=0,("+varstr(basering)+"),("+ordstr(basering)+");"); poly n=imap(BASERING,n); execute("ring REALRING=(real,50,100),("+varstr(basering)+"),("+ordstr(basering)+");"); map phi=INTERRING,maxideal(1); string s=string(phi(n)); int check=0; int i=1; int j; string news; int nachkomma=2; if (size(#)>0) { nachkomma=#[1]; } while ((check==0) and i<=size(s)) { if (s[i]==".") { if (i+nachkomma>size(s)) { nachkomma=size(s)-i; } for (j=i;j<=i+nachkomma;j++) { news=news+s[j]; } check=1; } else { news=news+s[i]; } i++; } setring BASERING; return(news); } static proc compintmats (intmat M,intmat N) "USAGE: compintmats(M,N); M,N intmat PURPOSE: check if after reordering the rows (and possibly deleting the last row of M if it is zero) the two matrices coincide RETURN: list, L of two integer matrices L[1] : the rows of M who occur in N have been replaced by zeros L[2] : the rows of N who occur in M have been replaced by zeros NOTE: - the procedure is called from intersectionNumeratorSecC" { int i,j,k; intvec v,w; intmat null[1][ncols(M)]; intmat last[1][ncols(M)]=M[nrows(M),1..ncols(M)]; if (null==last) { intmat MM[nrows(M)-1][ncols(M)]=M[1..nrows(M)-1,1..ncols(M)]; kill M; intmat M=MM; } for (i=1;i<=nrows(M);i++) { v=M[i,1..ncols(M)]; for (j=1;j<=nrows(N);j++) { w=N[j,1..ncols(N)]; if (v==w) { for (k=1;k<=ncols(M);k++) { M[i,k]=0; } for (k=1;k<=ncols(N);k++) { N[j,k]=0; } j=nrows(N); } } } return(list(M,N)); } proc polygonToCoordinates (list points) "USAGE: polygonToCoordinates(points); points list ASSUME: points is a list of integer vectors each of size two describing the marked points of a convex lattice polygon like the output of polygonDB RETURN: list, the first entry is a string representing the coordinates corresponding to the latticpoints seperated by commata the second entry is a list where the ith entry is a string representing the coordinate of corresponding to the ith lattice point the third entry is the latex format of the first entry NOTE: the procedure is called by fan" { string coord; list coords; string latex; for (int i=1;i<=size(points);i++) { coords[i]="u"+string(points[i][1])+string(points[i][2]); coord=coord+coords[i]+","; latex=latex+"u_{"+string(points[i][1])+string(points[i][2])+"},"; } coord=coord[1,size(coord)-1]; latex=latex[1,size(latex)-1]; return(list(coord,coords,latex)); } static proc displayFantexintro (string polygon,string art) "USAGE: displayFantexintro(polygon,art); polygon,art string ASSUME: polygon is one of the following strings discribing the type of curve to be considered: - 'cubic' : describing a cubic - '2x2' : describing a curve of type (2,2) - '4x2' : describing a curve of type (4,2) art is one of the following strings: - 'discriminant' : refering to the discriminant of the curve - 'secondary' : refering to the secondary polytope of the curve RETURN: string, the introduction of the latex file for displayFan NOTE: the procedure is called by displayFan" { // get the lattice points of the polygon list pg=polygonDB(polygon); // get the corresponding polynomial and the texdraw code for the polygon list pgtex=polygonToTex(pg); string pgpolynom=pgtex[1]; string pgtexdraw=pgtex[2]; // get the unknowns corresponding to the polygon list unknowns=polygonToCoordinates(pg); // check how many vertices have to be considered string nvert=string(nrows(verticesDB(polygon,art))); string pgtitledisc; // stores the title in the discriminant case string pgtitlesec; // stores the title in the secondary fan case string paper; // stores the paper that has to be referred to string goodremark; // stores a remark string latex; // stores the latex string string polynom; // stores whether the discriminant or a multiple thereof has do be considered string Adetremark; // stores a remark on the A-determinant // get the size of the numerator of the j-invariant and of the discriminant execute("ring introring=0,("+unknowns[1]+"),lp;"); execute("poly num="+invariantsDB(polygon,"numerator")+";"); execute("poly denom="+invariantsDB(polygon,"discriminant")+";"); // consider the different polygons if (polygon=="cubic") { polynom="the discriminant"; pgtitledisc="The Groebner Fan of the Discriminant of a Plane Cubic"; pgtitlesec="The Secondary Fan of a Plane Cubic"; paper="Eric Katz, Hannah Markwig, Thomas Markwig: The $j$-invariant of a Plane Tropical Cubic. Preprint 2007."; goodremark="79"; Adetremark="Note that the regular $A$-determinant coincides with the discriminant of $f$, which at the same time is the denominator of the $j$-invariant of $f$."; } if (polygon=="2x2") { polynom="the discriminant"; pgtitledisc="The Groebner Fan of the Discriminant of a Curve of Type (2,2) of $\\mathbbm{P}^1\\times\\mathbbm{P}^1$"; pgtitlesec="The Secondary Fan of a Curve of Type (2,2) of $\\mathbbm{P}^1\\times\\mathbbm{P}^1$"; paper="Eric Katz, Hannah Markwig, Thomas Markwig: The $j$-invariant ... Preprint 2007."; goodremark="64"; Adetremark="Note that the regular $A$-determinant coincides with the discriminant of $f$, which at the same time is the denominator of the $j$-invariant of $f$."; } if (polygon=="4x2") { polynom="$u_{02}^2$ times the discriminant"; pgtitledisc="The Groebner Fan of the Denominator of the $j$-Invariant of a Curve of Type (4,2)"; pgtitlesec="The Secondary Fan of a Curve of Type (4,2)"; paper="Eric Katz, Hannah Markwig, Thomas Markwig: The $j$-invariant ... Preprint 2007."; goodremark="24"; Adetremark="Note that the regular $A$-determinant is the product of the discriminant of $f$, and $u_{02}$, and that the denominator of the $j$-invariant of $f$ is the discriminant of $f$ times $u_{02}^2$."; } // consider the different types of fans to be considered if (art=="discriminant") { latex="\\documentclass[12pt]{amsart} \\usepackage{texdraw,amsmath,bbm} \\setlength{\\topmargin}{30mm} \\addtolength{\\topmargin}{-1in} \\addtolength{\\topmargin}{-\\headsep} \\addtolength{\\topmargin}{-\\headheight} \\addtolength{\\topmargin}{-\\topskip} \\setlength{\\textheight}{267mm} \\addtolength{\\textheight}{\\topskip} \\addtolength{\\textheight}{-\\footskip} \\addtolength{\\textheight}{-30pt} \\setlength{\\oddsidemargin}{-1in} \\addtolength{\\oddsidemargin}{20mm} \\setlength{\\evensidemargin}{\\oddsidemargin} \\setlength{\\textwidth}{170mm} \\pagestyle{plain} \\begin{document} \\parindent0cm \\thispagestyle{empty} \\vspace*{0cm} \\begin{center} \\Large\\bf "+pgtitledisc+" \\end{center} \\vspace{1cm} The computational results listed below prove some of the results in the paper \\bigskip \\begin{center} \\begin{minipage}{14cm} \\parindent-1cm \\em "+paper+" \\end{minipage} \\end{center} \\bigskip For an explantion of the terms used in the following, for some of the notation, like $c_T(i,j)$ or $\\eta_T(i,j)$, and for a thorough explanation of the results we refer to this paper. \\vspace{0.5cm} If we consider a curve given by the general polynomial \\begin{displaymath} f="+pgpolynom+"; \\end{displaymath} then the j-invariant of $f$ is a quotient of two homogeneous polynomials of degree "+string(deg(num))+", where the numerator has "+string(size(num))+" terms and the denominator has "+string(size(denom))+" terms in the unknowns \\begin{displaymath} "+unknowns[3]+". \\end{displaymath} Here we just want to consider the denominator $\\Delta$, which is "+polynom+" of $f$, and its Newton polytope $N(\\Delta)$. With the help of \\texttt{polymake} we computed the "+nvert+" vertices of $N(\\Delta)$ and the corresponding edges. Fixing one vertex and subtracting from it the vertices to which it is connected gives inequalities for the dual cone corresponding to this vertex in the Groebner fan of $\\Delta$, which is the normal fan dual to $N(\\Delta)$. These are precisely the inequalities which the valuations of the coefficients of $f$ have to fulfill if the corresponding vertex of the Newton polytope $N(\\Delta)$ is the leading term of $\\Delta$ of $f$ in the sense that its valuation is minimal. (We do not distinguish between the coefficients and their valuaions when writing down inequalities!) \\vspace{0.5cm} In what follows we give for each vertex in $N(\\Delta)$ the coarsest Newton subdivision whose cone in the secondary fan of \\begin{center} "+pgtexdraw+" \\end{center} is contained in the cone of $N(\\Delta)$ dual to this vertex. This should be interpreted as follows: the vertices which correspond to a fat black dot are those whose coefficient occurs in the corresponding vertex of $N(\\Delta)$; the black inner edges are those which are expected to be present, since due to the given inequalities all crossing edges lie beneath these. \\vspace{0.5cm} Moreover, we check that the cycle length of a tropical curve with this Newton subdivison is the negative of the generic valuation of the $j$-invariant in that case if the tropical curve has a cycle. Note that only the first $"+goodremark+"$ vertices of $N(\\Delta)$ correspond to tropical curves which have a cycle! \\vspace{0.5cm} Finally, we give for each vertex in the Newton polytope $N(\\Delta)$ a list of inequalities which describe the corresponding dual cone in the Groebner fan of $\\Delta$. Here one should in principle replace the coefficients by their valuation. \\newpage \\setcounter{page}{1} "; } if (art=="secondary") { latex="\\documentclass[12pt]{amsart} \\usepackage{texdraw,amsmath,bbm} \\setlength{\\topmargin}{30mm} \\addtolength{\\topmargin}{-1in} \\addtolength{\\topmargin}{-\\headsep} \\addtolength{\\topmargin}{-\\headheight} \\addtolength{\\topmargin}{-\\topskip} \\setlength{\\textheight}{267mm} \\addtolength{\\textheight}{\\topskip} \\addtolength{\\textheight}{-\\footskip} \\addtolength{\\textheight}{-30pt} \\setlength{\\oddsidemargin}{-1in} \\addtolength{\\oddsidemargin}{20mm} \\setlength{\\evensidemargin}{\\oddsidemargin} \\setlength{\\textwidth}{170mm} \\newcounter{vertex} \\newcommand{\\seite}{} \\renewcommand{\\thepage}{\\seite} \\pagestyle{plain} \\begin{document} \\parindent0cm \\thispagestyle{empty} \\vspace*{1cm} \\begin{center} \\Large\\bf "+pgtitlesec+" \\end{center} \\vspace{1cm} The computational results listed below prove some of the results in the paper \\bigskip \\begin{center} \\begin{minipage}{14cm} \\parindent-1cm \\em "+paper+" \\end{minipage} \\end{center} \\bigskip For an explantion of the terms used in the following, for some of the notation, like $c_T(i,j)$ or $\\eta_T(i,j)$, and for a thorough explanation of the results we refer to this paper. \\vspace{0.5cm} If we consider a curve given by the general polynomial \\begin{displaymath} f="+pgpolynom+"; \\end{displaymath} then the secondary fan associated to $f$ is the by definition the secondary fan of the the following marked polytope $(Q,\\mathcal{A})$: \\bigskip \\begin{center} "+pgtexdraw+" \\end{center} \\bigskip As coordinates on the $"+string(nvars(basering))+"$-dimensional real space in which the secondary fan lives we use by abuse of notation \\begin{displaymath} "+unknowns[3]+" \\end{displaymath} \\vspace{0.5cm} In what follows we give for each vertex in the secondary fan the corresponding marked subdivision and the inequalities describing the cone. Moreover, we compute the cycle length of a tropical curve dual to the subdivision in terms of the $u_{ij}$, and we determine the corresponding vertex in the Newton polytope of the regular $A$-determinant of $f$ to which the cone belongs by computing the coefficients $\\eta_{ij}$. From these we can compute the generic valuation of the $j$-invariant of $f$ provided that the associated tropical curve has a cycle. In particular, we will see that in these cases the cycle length is just the negative of this generic valuation. "+Adetremark+" \\newpage \\setcounter{page}{1} "; } return(latex); } static proc polygonToTex (list p) "USAGE: polygonToTex(polygon); polygon list ASSUME: polygon is a list as in the output of polygonDB RETURN: list, the first entry is a string representing the general polynomial whose Newton polygon is polygon; the second entry is the marked polygon in texdraw format NOTE: the procedure is called by displayFan" { execute("ring texring=0,("+polygonToCoordinates(p)[1]+",x,y),dp;"); int i; poly pp; string latex=" \\begin{texdraw} \\drawdim cm \\relunitscale 1.2 \\arrowheadtype t:V \\setgray 0 "; list boundary=findOrientedBoundary(p)[2]; latex=latex+" \\move ("+string(boundary[size(boundary)][1])+" "+string(boundary[size(boundary)][2])+") "; for (i=1;i<=size(boundary);i++) { latex=latex+" \\lvec ("+string(boundary[i][1])+" "+string(boundary[i][2])+") "; } latex=latex+" \\lfill f:0.8 "; for (i=1;i<=size(p);i++) { execute("pp=pp+u"+string(p[i][1])+string(p[i][2])+"*x^"+string(p[i][1])+"*y^"+string(p[i][2])); latex=latex+" \\move ("+string(p[i][1])+" "+string(p[i][2])+") \\fcir f:0 r:0.1 "; latex=latex+" \\htext ("+decimal(poly(p[i][1])+1/10)+" "+decimal(poly(p[i][2])+1/10)+") {$u_{"+string(p[i][1])+string(p[i][2])+"}$} "; } latex=latex+" \\htext (3 1.5) {$(Q,\\mathcal{A})$} \\end{texdraw} "; return(list(specialtexpolynomial(pp),latex)); } static proc etatable (intvec etavector,list polygon,string ETA) "USAGE: etatable(etavector,polygon,eta); etavector intvec, polygon list, eta string RETURN: string, transforms etavector into a table in latex format NOTE: the procedure is called by displayFan" { int i,j; // find the size of the table int n=polygon[1][1]; int m=polygon[1][2]; for (i=2;i<=size(polygon);i++) { if (polygon[i][1]>n) { n=polygon[i][1]; } if (polygon[i][2]>m) { m=polygon[i][2]; } } // create a matrix of the table size ring etaring=0,x,lp; matrix etaarray[m+1][n+1]; for (i=0;i<=m;i++) { for (j=0;j<=n;j++) { etaarray[i+1,j+1]=x; } } // fill the matrix with the vector entries for (i=1;i<=size(polygon);i++) { execute("etaarray["+string(polygon[i][2]+1)+","+string(polygon[i][1]+1)+"]="+string(etavector[i])+";"); } // create the latex output string spalten="c|"; for (i=0;i<=n;i++) { spalten=spalten+"p{0.5cm}"; } string latex=" \\begin{tabular}{"+spalten+"}"; for (i=m;i>=0;i--) { latex=latex+" "+string(i); for (j=0;j<=n;j++) { latex=latex+" & "+xstr(etaarray[i+1,j+1]); } latex=latex+"\\\\"; } latex=latex+" \\hline $"+ETA+"(i,j)$"; for (j=0;j<=n;j++) { latex=latex+" & "+string(j); } latex=latex+"\\\\ \\end{tabular} "; return(latex); } static proc xstr (poly p) "USAGE: xstr(p); p poly RETURN: string, transforms p into a string if p is not x, otherwise it returns the empty string NOTE: the procedure is called by etatable" { if (p==x) { return(""); } else { return(string(p)); } } //////////////////////////////////////////////////////////////////////////////////////// /// Databases //////////////////////////////////////////////////////////////////////////////////////// static proc invariantsDatabase (string curve,string invar) "USAGE: invariantsDatabase(curve,invar); curve,invar string ASSUME: polygon tells which type of elliptic curve we are looking at and it is one of the following: - 'cubic' : for a cubic in the projective plane - '2x2' : for a curve of type (2,2) on P1xP1 - '4x2' : for a curve of type (4,2) on the weighted projective plane with weights (1,2,1) invar tells which invariant of the elliptic curve defined by polygon should be returned and it is one of the following: - 'discriminant' : referring to the discriminant - 'c4' : referring to the invariant c4 - 'numerator' : referring to the numerator of the j-invariant, which is just c4^3 RETURN: string, the invariant of the elliptic curve asked for as a string NOTE: - the invariant is a polynomial in the unknowns uij, with i,j integers, where the uij can be thought of as coefficients of a defining affine euqation - the invariants are not computed here, they are just stored - note that j=c4^3/discriminant is the j-invariant of the corresponding elliptic curve" { if ((invar=="discriminant") and (curve=="cubic")) { string Delta="19683*u30^4*u00^4*u03^4-26244*u30^4*u00^3*u01*u02*u03^3+5832*u30^4*u00^3*u02^3*u03^2+5832*u30^4*u00^2*u01^3*u03^3+7290*u30^4*u00^2*u01^2*u02^2*u03^2-3888*u30^4*u00^2*u01*u02^4*u03+432*u30^4*u00^2*u02^6-3888*u30^4*u00*u01^4*u02*u03^2+1836*u30^4*u00*u01^3*u02^3*u03-216*u30^4*u00*u01^2*u02^5+432*u30^4*u01^6*u03^2-216*u30^4*u01^5*u02^2*u03+27*u30^4*u01^4*u02^4-26244*u30^3*u20*u10*u00^3*u03^4+26244*u30^3*u20*u10*u00^2*u01*u02*u03^3-5832*u30^3*u20*u10*u00^2*u02^3*u03^2-3888*u30^3*u20*u10*u00*u01^3*u03^3-4860*u30^3*u20*u10*u00*u01^2*u02^2*u03^2+2592*u30^3*u20*u10*u00*u01*u02^4*u03-288*u30^3*u20*u10*u00*u02^6+1296*u30^3*u20*u10*u01^4*u02*u03^2-612*u30^3*u20*u10*u01^3*u02^3*u03+72*u30^3*u20*u10*u01^2*u02^5+8748*u30^3*u20*u00^3*u11*u02*u03^3+8748*u30^3*u20*u00^3*u01*u12*u03^3-5832*u30^3*u20*u00^3*u12*u02^2*u03^2-5832*u30^3*u20*u00^2*u11*u01^2*u03^3-4860*u30^3*u20*u00^2*u11*u01*u02^2*u03^2+1296*u30^3*u20*u00^2*u11*u02^4*u03-4860*u30^3*u20*u00^2*u01^2*u12*u02*u03^2+5184*u30^3*u20*u00^2*u01*u12*u02^3*u03-864*u30^3*u20*u00^2*u12*u02^5+5184*u30^3*u20*u00*u11*u01^3*u02*u03^2-1836*u30^3*u20*u00*u11*u01^2*u02^3*u03+144*u30^3*u20*u00*u11*u01*u02^5+1296*u30^3*u20*u00*u01^4*u12*u03^2-1836*u30^3*u20*u00*u01^3*u12*u02^2*u03+360*u30^3*u20*u00*u01^2*u12*u02^4-864*u30^3*u20*u11*u01^5*u03^2+360*u30^3*u20*u11*u01^4*u02^2*u03-36*u30^3*u20*u11*u01^3*u02^4+144*u30^3*u20*u01^5*u12*u02*u03-36*u30^3*u20*u01^4*u12*u02^3+5832*u30^3*u10^3*u00^2*u03^4-3888*u30^3*u10^3*u00*u01*u02*u03^3+864*u30^3*u10^3*u00*u02^3*u03^2-864*u30^3*u10^3*u01^3*u03^3+1512*u30^3*u10^3*u01^2*u02^2*u03^2-576*u30^3*u10^3*u01*u02^4*u03+64*u30^3*u10^3*u02^6-5832*u30^3*u10^2*u00^2*u11*u02*u03^3-5832*u30^3*u10^2*u00^2*u01*u12*u03^3+3888*u30^3*u10^2*u00^2*u12*u02^2*u03^2+7776*u30^3*u10^2*u00*u11*u01^2*u03^3-1296*u30^3*u10^2*u00*u11*u01*u02^2*u03^2-1296*u30^3*u10^2*u00*u01^2*u12*u02*u03^2-1728*u30^3*u10^2*u11*u01^3*u02*u03^2+792*u30^3*u10^2*u11*u01^2*u02^3*u03-96*u30^3*u10^2*u11*u01*u02^5+864*u30^3*u10^2*u01^4*u12*u03^2-360*u30^3*u10^2*u01^3*u12*u02^2*u03+48*u30^3*u10^2*u01^2*u12*u02^4+8748*u30^3*u10*u00^3*u21*u02*u03^3+8748*u30^3*u10*u00^3*u11*u12*u03^3-5832*u30^3*u10*u00^3*u12^2*u02*u03^2-5832*u30^3*u10*u00^2*u21*u01^2*u03^3-4860*u30^3*u10*u00^2*u21*u01*u02^2*u03^2+1296*u30^3*u10*u00^2*u21*u02^4*u03-7290*u30^3*u10*u00^2*u11^2*u01*u03^3+4374*u30^3*u10*u00^2*u11^2*u02^2*u03^2+4860*u30^3*u10*u00^2*u11*u01*u12*u02*u03^2-3888*u30^3*u10*u00^2*u11*u12*u02^3*u03+3888*u30^3*u10*u00^2*u01^2*u12^2*u03^2-1296*u30^3*u10*u00^2*u01*u12^2*u02^2*u03+864*u30^3*u10*u00^2*u12^2*u02^4+5184*u30^3*u10*u00*u21*u01^3*u02*u03^2-1836*u30^3*u10*u00*u21*u01^2*u02^3*u03+144*u30^3*u10*u00*u21*u01*u02^5-324*u30^3*u10*u00*u11^2*u01^2*u02*u03^2-540*u30^3*u10*u00*u11^2*u01*u02^3*u03+72*u30^3*u10*u00*u11^2*u02^5-3888*u30^3*u10*u00*u11*u01^3*u12*u03^2+2916*u30^3*u10*u00*u11*u01^2*u12*u02^2*u03-144*u30^3*u10*u00*u11*u01*u12*u02^4-360*u30^3*u10*u00*u01^2*u12^2*u02^3-864*u30^3*u10*u21*u01^5*u03^2+360*u30^3*u10*u21*u01^4*u02^2*u03-36*u30^3*u10*u21*u01^3*u02^4+648*u30^3*u10*u11^2*u01^4*u03^2-234*u30^3*u10*u11^2*u01^3*u02^2*u03+30*u30^3*u10*u11^2*u01^2*u02^4-144*u30^3*u10*u11*u01^4*u12*u02*u03-12*u30^3*u10*u11*u01^3*u12*u02^3+48*u30^3*u10*u01^4*u12^2*u02^2-26244*u30^3*u00^4*u21*u12*u03^3+5832*u30^3*u00^4*u12^3*u03^2+8748*u30^3*u00^3*u21*u11*u01*u03^3-5832*u30^3*u00^3*u21*u11*u02^2*u03^2+26244*u30^3*u00^3*u21*u01*u12*u02*u03^2-3888*u30^3*u00^3*u21*u12*u02^3*u03+2187*u30^3*u00^3*u11^3*u03^3-7290*u30^3*u00^3*u11^2*u12*u02*u03^2-5832*u30^3*u00^3*u11*u01*u12^2*u03^2+7776*u30^3*u00^3*u11*u12^2*u02^2*u03-3888*u30^3*u00^3*u01*u12^3*u02*u03-864*u30^3*u00^3*u12^3*u02^3-4860*u30^3*u00^2*u21*u11*u01^2*u02*u03^2+5184*u30^3*u00^2*u21*u11*u01*u02^3*u03-864*u30^3*u00^2*u21*u11*u02^5-5832*u30^3*u00^2*u21*u01^3*u12*u03^2-4860*u30^3*u00^2*u21*u01^2*u12*u02^2*u03+1296*u30^3*u00^2*u21*u01*u12*u02^4+243*u30^3*u00^2*u11^3*u01*u02*u03^2-540*u30^3*u00^2*u11^3*u02^3*u03+4374*u30^3*u00^2*u11^2*u01^2*u12*u03^2-324*u30^3*u00^2*u11^2*u01*u12*u02^2*u03+648*u30^3*u00^2*u11^2*u12*u02^4-1296*u30^3*u00^2*u11*u01^2*u12^2*u02*u03-1728*u30^3*u00^2*u11*u01*u12^2*u02^3+864*u30^3*u00^2*u01^3*u12^3*u03+1512*u30^3*u00^2*u01^2*u12^3*u02^2+1296*u30^3*u00*u21*u11*u01^4*u03^2-1836*u30^3*u00*u21*u11*u01^3*u02^2*u03+360*u30^3*u00*u21*u11*u01^2*u02^4+2592*u30^3*u00*u21*u01^4*u12*u02*u03-612*u30^3*u00*u21*u01^3*u12*u02^3-540*u30^3*u00*u11^3*u01^3*u03^2+513*u30^3*u00*u11^3*u01^2*u02^2*u03-36*u30^3*u00*u11^3*u01*u02^4-540*u30^3*u00*u11^2*u01^3*u12*u02*u03-234*u30^3*u00*u11^2*u01^2*u12*u02^3+792*u30^3*u00*u11*u01^3*u12^2*u02^2-576*u30^3*u00*u01^4*u12^3*u02+144*u30^3*u21*u11*u01^5*u02*u03-36*u30^3*u21*u11*u01^4*u02^3-288*u30^3*u21*u01^6*u12*u03+72*u30^3*u21*u01^5*u12*u02^2-36*u30^3*u11^3*u01^4*u02*u03+u30^3*u11^3*u01^3*u02^3+72*u30^3*u11^2*u01^5*u12*u03+30*u30^3*u11^2*u01^4*u12*u02^2-96*u30^3*u11*u01^5*u12^2*u02+64*u30^3*u01^6*u12^3+5832*u30^2*u20^3*u00^3*u03^4-5832*u30^2*u20^3*u00^2*u01*u02*u03^3+1296*u30^2*u20^3*u00^2*u02^3*u03^2+864*u30^2*u20^3*u00*u01^3*u03^3+1080*u30^2*u20^3*u00*u01^2*u02^2*u03^2-576*u30^2*u20^3*u00*u01*u02^4*u03+64*u30^2*u20^3*u00*u02^6-288*u30^2*u20^3*u01^4*u02*u03^2+136*u30^2*u20^3*u01^3*u02^3*u03-16*u30^2*u20^3*u01^2*u02^5+7290*u30^2*u20^2*u10^2*u00^2*u03^4-4860*u30^2*u20^2*u10^2*u00*u01*u02*u03^3+1080*u30^2*u20^2*u10^2*u00*u02^3*u03^2+1512*u30^2*u20^2*u10^2*u01^3*u03^3-702*u30^2*u20^2*u10^2*u01^2*u02^2*u03^2+144*u30^2*u20^2*u10^2*u01*u02^4*u03-16*u30^2*u20^2*u10^2*u02^6-4860*u30^2*u20^2*u10*u00^2*u11*u02*u03^3-4860*u30^2*u20^2*u10*u00^2*u01*u12*u03^3+3240*u30^2*u20^2*u10*u00^2*u12*u02^2*u03^2-1296*u30^2*u20^2*u10*u00*u11*u01^2*u03^3+4104*u30^2*u20^2*u10*u00*u11*u01*u02^2*u03^2-864*u30^2*u20^2*u10*u00*u11*u02^4*u03+4104*u30^2*u20^2*u10*u00*u01^2*u12*u02*u03^2-3456*u30^2*u20^2*u10*u00*u01*u12*u02^3*u03+576*u30^2*u20^2*u10*u00*u12*u02^5-576*u30^2*u20^2*u10*u11*u01^3*u02*u03^2+84*u30^2*u20^2*u10*u11*u01^2*u02^3*u03+16*u30^2*u20^2*u10*u11*u01*u02^5-1008*u30^2*u20^2*u10*u01^4*u12*u03^2+852*u30^2*u20^2*u10*u01^3*u12*u02^2*u03-152*u30^2*u20^2*u10*u01^2*u12*u02^4-5832*u30^2*u20^2*u00^3*u21*u02*u03^3-5832*u30^2*u20^2*u00^3*u11*u12*u03^3+3888*u30^2*u20^2*u00^3*u12^2*u02*u03^2+3888*u30^2*u20^2*u00^2*u21*u01^2*u03^3+3240*u30^2*u20^2*u00^2*u21*u01*u02^2*u03^2-864*u30^2*u20^2*u00^2*u21*u02^4*u03+4374*u30^2*u20^2*u00^2*u11^2*u01*u03^3-648*u30^2*u20^2*u00^2*u11^2*u02^2*u03^2+1620*u30^2*u20^2*u00^2*u11*u01*u12*u02*u03^2-432*u30^2*u20^2*u00^2*u11*u12*u02^3*u03-486*u30^2*u20^2*u00^2*u01^2*u12^2*u03^2-2160*u30^2*u20^2*u00^2*u01*u12^2*u02^2*u03+432*u30^2*u20^2*u00^2*u12^2*u02^4-3456*u30^2*u20^2*u00*u21*u01^3*u02*u03^2+1224*u30^2*u20^2*u00*u21*u01^2*u02^3*u03-96*u30^2*u20^2*u00*u21*u01*u02^5-2484*u30^2*u20^2*u00*u11^2*u01^2*u02*u03^2+792*u30^2*u20^2*u00*u11^2*u01*u02^3*u03-48*u30^2*u20^2*u00*u11^2*u02^5-432*u30^2*u20^2*u00*u11*u01^3*u12*u03^2+864*u30^2*u20^2*u00*u11*u01^2*u12*u02^2*u03-192*u30^2*u20^2*u00*u11*u01*u12*u02^4+612*u30^2*u20^2*u00*u01^3*u12^2*u02*u03-120*u30^2*u20^2*u00*u01^2*u12^2*u02^3+576*u30^2*u20^2*u21*u01^5*u03^2-240*u30^2*u20^2*u21*u01^4*u02^2*u03+24*u30^2*u20^2*u21*u01^3*u02^4+504*u30^2*u20^2*u11^2*u01^4*u03^2-162*u30^2*u20^2*u11^2*u01^3*u02^2*u03+8*u30^2*u20^2*u11^2*u01^2*u02^4-192*u30^2*u20^2*u11*u01^4*u12*u02*u03+52*u30^2*u20^2*u11*u01^3*u12*u02^3-24*u30^2*u20^2*u01^5*u12^2*u03+2*u30^2*u20^2*u01^4*u12^2*u02^2-3888*u30^2*u20*u10^4*u00*u03^4+1296*u30^2*u20*u10^4*u01*u02*u03^3-288*u30^2*u20*u10^4*u02^3*u03^2+5184*u30^2*u20*u10^3*u00*u11*u02*u03^3+5184*u30^2*u20*u10^3*u00*u01*u12*u03^3-3456*u30^2*u20*u10^3*u00*u12*u02^2*u03^2-1728*u30^2*u20*u10^3*u11*u01^2*u03^3-576*u30^2*u20*u10^3*u11*u01*u02^2*u03^2+192*u30^2*u20*u10^3*u11*u02^4*u03-576*u30^2*u20*u10^3*u01^2*u12*u02*u03^2+768*u30^2*u20*u10^3*u01*u12*u02^3*u03-128*u30^2*u20*u10^3*u12*u02^5-4860*u30^2*u20*u10^2*u00^2*u21*u02*u03^3-4860*u30^2*u20*u10^2*u00^2*u11*u12*u03^3+3240*u30^2*u20*u10^2*u00^2*u12^2*u02*u03^2-1296*u30^2*u20*u10^2*u00*u21*u01^2*u03^3+4104*u30^2*u20*u10^2*u00*u21*u01*u02^2*u03^2-864*u30^2*u20*u10^2*u00*u21*u02^4*u03-324*u30^2*u20*u10^2*u00*u11^2*u01*u03^3-2484*u30^2*u20*u10^2*u00*u11^2*u02^2*u03^2-1512*u30^2*u20*u10^2*u00*u11*u01*u12*u02*u03^2+2592*u30^2*u20*u10^2*u00*u11*u12*u02^3*u03-2160*u30^2*u20*u10^2*u00*u01^2*u12^2*u03^2+864*u30^2*u20*u10^2*u00*u01*u12^2*u02^2*u03-576*u30^2*u20*u10^2*u00*u12^2*u02^4-576*u30^2*u20*u10^2*u21*u01^3*u02*u03^2+84*u30^2*u20*u10^2*u21*u01^2*u02^3*u03+16*u30^2*u20*u10^2*u21*u01*u02^5+1836*u30^2*u20*u10^2*u11^2*u01^2*u02*u03^2-348*u30^2*u20*u10^2*u11^2*u01*u02^3*u03+8*u30^2*u20*u10^2*u11^2*u02^5+720*u30^2*u20*u10^2*u11*u01^3*u12*u03^2-1404*u30^2*u20*u10^2*u11*u01^2*u12*u02^2*u03+176*u30^2*u20*u10^2*u11*u01*u12*u02^4+240*u30^2*u20*u10^2*u01^3*u12^2*u02*u03+56*u30^2*u20*u10^2*u01^2*u12^2*u02^3+26244*u30^2*u20*u10*u00^3*u21*u12*u03^3-5832*u30^2*u20*u10*u00^3*u12^3*u03^2+4860*u30^2*u20*u10*u00^2*u21*u11*u01*u03^3+1620*u30^2*u20*u10*u00^2*u21*u11*u02^2*u03^2-26244*u30^2*u20*u10*u00^2*u21*u01*u12*u02*u03^2+4752*u30^2*u20*u10*u00^2*u21*u12*u02^3*u03+243*u30^2*u20*u10*u00^2*u11^3*u03^3+2754*u30^2*u20*u10*u00^2*u11^2*u12*u02*u03^2+1620*u30^2*u20*u10*u00^2*u11*u01*u12^2*u03^2-3456*u30^2*u20*u10*u00^2*u11*u12^2*u02^2*u03+4752*u30^2*u20*u10*u00^2*u01*u12^3*u02*u03-288*u30^2*u20*u10*u00^2*u12^3*u02^3-1512*u30^2*u20*u10*u00*u21*u11*u01^2*u02*u03^2-1512*u30^2*u20*u10*u00*u21*u11*u01*u02^3*u03+432*u30^2*u20*u10*u00*u21*u11*u02^5+4752*u30^2*u20*u10*u00*u21*u01^3*u12*u03^2+3132*u30^2*u20*u10*u00*u21*u01^2*u12*u02^2*u03-1008*u30^2*u20*u10*u00*u21*u01*u12*u02^4+54*u30^2*u20*u10*u00*u11^3*u01*u02*u03^2+540*u30^2*u20*u10*u00*u11^3*u02^3*u03+1080*u30^2*u20*u10*u00*u11^2*u01^2*u12*u03^2-1188*u30^2*u20*u10*u00*u11^2*u01*u12*u02^2*u03-504*u30^2*u20*u10*u00*u11^2*u12*u02^4-1080*u30^2*u20*u10*u00*u11*u01^2*u12^2*u02*u03+1584*u30^2*u20*u10*u00*u11*u01*u12^2*u02^3-576*u30^2*u20*u10*u00*u01^3*u12^3*u03-648*u30^2*u20*u10*u00*u01^2*u12^3*u02^2+144*u30^2*u20*u10*u21*u11*u01^4*u03^2+444*u30^2*u20*u10*u21*u11*u01^3*u02^2*u03-124*u30^2*u20*u10*u21*u11*u01^2*u02^4-1008*u30^2*u20*u10*u21*u01^4*u12*u02*u03+260*u30^2*u20*u10*u21*u01^3*u12*u02^3-684*u30^2*u20*u10*u11^3*u01^3*u03^2+63*u30^2*u20*u10*u11^3*u01^2*u02^2*u03-8*u30^2*u20*u10*u11^3*u01*u02^4+528*u30^2*u20*u10*u11^2*u01^3*u12*u02*u03+50*u30^2*u20*u10*u11^2*u01^2*u12*u02^3+48*u30^2*u20*u10*u11*u01^4*u12^2*u03-316*u30^2*u20*u10*u11*u01^3*u12^2*u02^2+160*u30^2*u20*u10*u01^4*u12^3*u02-5832*u30^2*u20*u00^3*u21^2*u01*u03^3+3888*u30^2*u20*u00^3*u21^2*u02^2*u03^2-7290*u30^2*u20*u00^3*u21*u11^2*u03^3+4860*u30^2*u20*u00^3*u21*u11*u12*u02*u03^2-4860*u30^2*u20*u00^3*u21*u01*u12^2*u03^2-1296*u30^2*u20*u00^3*u21*u12^2*u02^2*u03+4374*u30^2*u20*u00^3*u11^2*u12^2*u03^2-3888*u30^2*u20*u00^3*u11*u12^3*u02*u03+1296*u30^2*u20*u00^3*u01*u12^4*u03+864*u30^2*u20*u00^3*u12^4*u02^2+3240*u30^2*u20*u00^2*u21^2*u01^2*u02*u03^2-3456*u30^2*u20*u00^2*u21^2*u01*u02^3*u03+576*u30^2*u20*u00^2*u21^2*u02^5+2754*u30^2*u20*u00^2*u21*u11^2*u01*u02*u03^2-648*u30^2*u20*u00^2*u21*u11^2*u02^3*u03+1620*u30^2*u20*u00^2*u21*u11*u01^2*u12*u03^2-1512*u30^2*u20*u00^2*u21*u11*u01*u12*u02^2*u03+144*u30^2*u20*u00^2*u21*u11*u12*u02^4+4104*u30^2*u20*u00^2*u21*u01^2*u12^2*u02*u03-576*u30^2*u20*u00^2*u21*u01*u12^2*u02^3-81*u30^2*u20*u00^2*u11^4*u02*u03^2-2997*u30^2*u20*u00^2*u11^3*u01*u12*u03^2+648*u30^2*u20*u00^2*u11^3*u12*u02^2*u03+1080*u30^2*u20*u00^2*u11^2*u01*u12^2*u02*u03-288*u30^2*u20*u00^2*u11^2*u12^2*u02^3-432*u30^2*u20*u00^2*u11*u01^2*u12^3*u03+720*u30^2*u20*u00^2*u11*u01*u12^3*u02^2-1008*u30^2*u20*u00^2*u01^2*u12^4*u02-864*u30^2*u20*u00*u21^2*u01^4*u03^2+1224*u30^2*u20*u00*u21^2*u01^3*u02^2*u03-240*u30^2*u20*u00*u21^2*u01^2*u02^4-648*u30^2*u20*u00*u21*u11^2*u01^3*u03^2+810*u30^2*u20*u00*u21*u11^2*u01^2*u02^2*u03-168*u30^2*u20*u00*u21*u11^2*u01*u02^4-1512*u30^2*u20*u00*u21*u11*u01^3*u12*u02*u03+444*u30^2*u20*u00*u21*u11*u01^2*u12*u02^3-864*u30^2*u20*u00*u21*u01^4*u12^2*u03+84*u30^2*u20*u00*u21*u01^3*u12^2*u02^2+540*u30^2*u20*u00*u11^4*u01^2*u03^2-342*u30^2*u20*u00*u11^4*u01*u02^2*u03+12*u30^2*u20*u00*u11^4*u02^4+198*u30^2*u20*u00*u11^3*u01^2*u12*u02*u03+204*u30^2*u20*u00*u11^3*u01*u12*u02^3+180*u30^2*u20*u00*u11^2*u01^3*u12^2*u03-558*u30^2*u20*u00*u11^2*u01^2*u12^2*u02^2+240*u30^2*u20*u00*u11*u01^3*u12^3*u02+192*u30^2*u20*u00*u01^4*u12^4-96*u30^2*u20*u21^2*u01^5*u02*u03+24*u30^2*u20*u21^2*u01^4*u02^3-168*u30^2*u20*u21*u11^2*u01^4*u02*u03+46*u30^2*u20*u21*u11^2*u01^3*u02^3+432*u30^2*u20*u21*u11*u01^5*u12*u03-124*u30^2*u20*u21*u11*u01^4*u12*u02^2+16*u30^2*u20*u21*u01^5*u12^2*u02+48*u30^2*u20*u11^4*u01^3*u02*u03-u30^2*u20*u11^4*u01^2*u02^3-108*u30^2*u20*u11^3*u01^4*u12*u03-41*u30^2*u20*u11^3*u01^3*u12*u02^2+140*u30^2*u20*u11^2*u01^4*u12^2*u02-96*u30^2*u20*u11*u01^5*u12^3+432*u30^2*u10^6*u03^4-864*u30^2*u10^5*u11*u02*u03^3-864*u30^2*u10^5*u01*u12*u03^3+576*u30^2*u10^5*u12*u02^2*u03^2+1296*u30^2*u10^4*u00*u21*u02*u03^3+1296*u30^2*u10^4*u00*u11*u12*u03^3-864*u30^2*u10^4*u00*u12^2*u02*u03^2+864*u30^2*u10^4*u21*u01^2*u03^3-1008*u30^2*u10^4*u21*u01*u02^2*u03^2+192*u30^2*u10^4*u21*u02^4*u03+648*u30^2*u10^4*u11^2*u01*u03^3+504*u30^2*u10^4*u11^2*u02^2*u03^2+144*u30^2*u10^4*u11*u01*u12*u02*u03^2-576*u30^2*u10^4*u11*u12*u02^3*u03+432*u30^2*u10^4*u01^2*u12^2*u03^2-192*u30^2*u10^4*u01*u12^2*u02^2*u03+128*u30^2*u10^4*u12^2*u02^4-5832*u30^2*u10^3*u00^2*u21*u12*u03^3+1296*u30^2*u10^3*u00^2*u12^3*u03^2-3888*u30^2*u10^3*u00*u21*u11*u01*u03^3-432*u30^2*u10^3*u00*u21*u11*u02^2*u03^2+4752*u30^2*u10^3*u00*u21*u01*u12*u02*u03^2-576*u30^2*u10^3*u00*u21*u12*u02^3*u03-540*u30^2*u10^3*u00*u11^3*u03^3-648*u30^2*u10^3*u00*u11^2*u12*u02*u03^2-432*u30^2*u10^3*u00*u11*u01*u12^2*u03^2+1152*u30^2*u10^3*u00*u11*u12^2*u02^2*u03-576*u30^2*u10^3*u00*u01*u12^3*u02*u03-128*u30^2*u10^3*u00*u12^3*u02^3+720*u30^2*u10^3*u21*u11*u01^2*u02*u03^2+240*u30^2*u10^3*u21*u11*u01*u02^3*u03-96*u30^2*u10^3*u21*u11*u02^5-288*u30^2*u10^3*u21*u01^3*u12*u03^2-648*u30^2*u10^3*u21*u01^2*u12*u02^2*u03+160*u30^2*u10^3*u21*u01*u12*u02^4-684*u30^2*u10^3*u11^3*u01*u02*u03^2-72*u30^2*u10^3*u11^3*u02^3*u03-288*u30^2*u10^3*u11^2*u01^2*u12*u03^2+888*u30^2*u10^3*u11^2*u01*u12*u02^2*u03+80*u30^2*u10^3*u11^2*u12*u02^4-48*u30^2*u10^3*u11*u01^2*u12^2*u02*u03-416*u30^2*u10^3*u11*u01*u12^2*u02^3-128*u30^2*u10^3*u01^3*u12^3*u03+240*u30^2*u10^3*u01^2*u12^3*u02^2+3888*u30^2*u10^2*u00^2*u21^2*u01*u03^3-486*u30^2*u10^2*u00^2*u21^2*u02^2*u03^2+4374*u30^2*u10^2*u00^2*u21*u11^2*u03^3+1620*u30^2*u10^2*u00^2*u21*u11*u12*u02*u03^2+3240*u30^2*u10^2*u00^2*u21*u01*u12^2*u03^2-2160*u30^2*u10^2*u00^2*u21*u12^2*u02^2*u03-648*u30^2*u10^2*u00^2*u11^2*u12^2*u03^2-432*u30^2*u10^2*u00^2*u11*u12^3*u02*u03-864*u30^2*u10^2*u00^2*u01*u12^4*u03+432*u30^2*u10^2*u00^2*u12^4*u02^2-2160*u30^2*u10^2*u00*u21^2*u01^2*u02*u03^2+612*u30^2*u10^2*u00*u21^2*u01*u02^3*u03-24*u30^2*u10^2*u00*u21^2*u02^5+1080*u30^2*u10^2*u00*u21*u11^2*u01*u02*u03^2+180*u30^2*u10^2*u00*u21*u11^2*u02^3*u03-3456*u30^2*u10^2*u00*u21*u11*u01^2*u12*u03^2-1080*u30^2*u10^2*u00*u21*u11*u01*u12*u02^2*u03+48*u30^2*u10^2*u00*u21*u11*u12*u02^4+864*u30^2*u10^2*u00*u21*u01^2*u12^2*u02*u03+240*u30^2*u10^2*u00*u21*u01*u12^2*u02^3+540*u30^2*u10^2*u00*u11^4*u02*u03^2+648*u30^2*u10^2*u00*u11^3*u01*u12*u03^2-612*u30^2*u10^2*u00*u11^3*u12*u02^2*u03-432*u30^2*u10^2*u00*u11^2*u01*u12^2*u02*u03+120*u30^2*u10^2*u00*u11^2*u12^2*u02^3+1152*u30^2*u10^2*u00*u11*u01^2*u12^3*u03-48*u30^2*u10^2*u00*u11*u01*u12^3*u02^2-192*u30^2*u10^2*u00*u01^2*u12^4*u02+432*u30^2*u10^2*u21^2*u01^4*u03^2-120*u30^2*u10^2*u21^2*u01^3*u02^2*u03+2*u30^2*u10^2*u21^2*u01^2*u02^4-288*u30^2*u10^2*u21*u11^2*u01^3*u03^2-558*u30^2*u10^2*u21*u11^2*u01^2*u02^2*u03+140*u30^2*u10^2*u21*u11^2*u01*u02^4+1584*u30^2*u10^2*u21*u11*u01^3*u12*u02*u03-316*u30^2*u10^2*u21*u11*u01^2*u12*u02^3-576*u30^2*u10^2*u21*u01^4*u12^2*u03+56*u30^2*u10^2*u21*u01^3*u12^2*u02^2+207*u30^2*u10^2*u11^4*u01^2*u03^2+114*u30^2*u10^2*u11^4*u01*u02^2*u03-u30^2*u10^2*u11^4*u02^4-480*u30^2*u10^2*u11^3*u01^2*u12*u02*u03-116*u30^2*u10^2*u11^3*u01*u12*u02^3+120*u30^2*u10^2*u11^2*u01^3*u12^2*u03+456*u30^2*u10^2*u11^2*u01^2*u12^2*u02^2-416*u30^2*u10^2*u11*u01^3*u12^3*u02+128*u30^2*u10^2*u01^4*u12^4-5832*u30^2*u10*u00^3*u21^2*u11*u03^3-4860*u30^2*u10*u00^3*u21^2*u12*u02*u03^2-4860*u30^2*u10*u00^3*u21*u11*u12^2*u03^2+5184*u30^2*u10*u00^3*u21*u12^3*u02*u03+1296*u30^2*u10*u00^3*u11*u12^4*u03-864*u30^2*u10*u00^3*u12^5*u02+1620*u30^2*u10*u00^2*u21^2*u11*u01*u02*u03^2-432*u30^2*u10*u00^2*u21^2*u11*u02^3*u03+3240*u30^2*u10*u00^2*u21^2*u01^2*u12*u03^2+4104*u30^2*u10*u00^2*u21^2*u01*u12*u02^2*u03-1008*u30^2*u10*u00^2*u21^2*u12*u02^4-2997*u30^2*u10*u00^2*u21*u11^3*u02*u03^2+2754*u30^2*u10*u00^2*u21*u11^2*u01*u12*u03^2+1080*u30^2*u10*u00^2*u21*u11^2*u12*u02^2*u03-1512*u30^2*u10*u00^2*u21*u11*u01*u12^2*u02*u03+720*u30^2*u10*u00^2*u21*u11*u12^2*u02^3-3456*u30^2*u10*u00^2*u21*u01^2*u12^3*u03-576*u30^2*u10*u00^2*u21*u01*u12^3*u02^2-81*u30^2*u10*u00^2*u11^4*u12*u03^2+648*u30^2*u10*u00^2*u11^3*u12^2*u02*u03-648*u30^2*u10*u00^2*u11^2*u01*u12^3*u03-288*u30^2*u10*u00^2*u11^2*u12^3*u02^2+144*u30^2*u10*u00^2*u11*u01*u12^4*u02+576*u30^2*u10*u00^2*u01^2*u12^5-432*u30^2*u10*u00*u21^2*u11*u01^3*u03^2+864*u30^2*u10*u00*u21^2*u11*u01^2*u02^2*u03-192*u30^2*u10*u00*u21^2*u11*u01*u02^4-3456*u30^2*u10*u00*u21^2*u01^3*u12*u02*u03+852*u30^2*u10*u00*u21^2*u01^2*u12*u02^3+648*u30^2*u10*u00*u21*u11^3*u01^2*u03^2+198*u30^2*u10*u00*u21*u11^3*u01*u02^2*u03-108*u30^2*u10*u00*u21*u11^3*u02^4-1188*u30^2*u10*u00*u21*u11^2*u01^2*u12*u02*u03+528*u30^2*u10*u00*u21*u11^2*u01*u12*u02^3+2592*u30^2*u10*u00*u21*u11*u01^3*u12^2*u03-1404*u30^2*u10*u00*u21*u11*u01^2*u12^2*u02^2+768*u30^2*u10*u00*u21*u01^3*u12^3*u02-297*u30^2*u10*u00*u11^5*u01*u03^2-81*u30^2*u10*u00*u11^5*u02^2*u03+612*u30^2*u10*u00*u11^4*u01*u12*u02*u03+90*u30^2*u10*u00*u11^4*u12*u02^3-612*u30^2*u10*u00*u11^3*u01^2*u12^2*u03-480*u30^2*u10*u00*u11^3*u01*u12^2*u02^2+888*u30^2*u10*u00*u11^2*u01^2*u12^3*u02-576*u30^2*u10*u00*u11*u01^3*u12^4-192*u30^2*u10*u21^2*u11*u01^4*u02*u03+52*u30^2*u10*u21^2*u11*u01^3*u02^3+576*u30^2*u10*u21^2*u01^5*u12*u03-152*u30^2*u10*u21^2*u01^4*u12*u02^2+204*u30^2*u10*u21*u11^3*u01^3*u02*u03-41*u30^2*u10*u21*u11^3*u01^2*u02^3-504*u30^2*u10*u21*u11^2*u01^4*u12*u03+50*u30^2*u10*u21*u11^2*u01^3*u12*u02^2+176*u30^2*u10*u21*u11*u01^4*u12^2*u02-128*u30^2*u10*u21*u01^5*u12^3-39*u30^2*u10*u11^5*u01^2*u02*u03+u30^2*u10*u11^5*u01*u02^3+90*u30^2*u10*u11^4*u01^3*u12*u03+33*u30^2*u10*u11^4*u01^2*u12*u02^2-116*u30^2*u10*u11^3*u01^3*u12^2*u02+80*u30^2*u10*u11^2*u01^4*u12^3+5832*u30^2*u00^4*u21^3*u03^3+7290*u30^2*u00^4*u21^2*u12^2*u03^2-3888*u30^2*u00^4*u21*u12^4*u03+432*u30^2*u00^4*u12^6-5832*u30^2*u00^3*u21^3*u01*u02*u03^2+864*u30^2*u00^3*u21^3*u02^3*u03+4374*u30^2*u00^3*u21^2*u11^2*u02*u03^2-4860*u30^2*u00^3*u21^2*u11*u01*u12*u03^2-1296*u30^2*u00^3*u21^2*u11*u12*u02^2*u03-4860*u30^2*u00^3*u21^2*u01*u12^2*u02*u03+1512*u30^2*u00^3*u21^2*u12^2*u02^3+243*u30^2*u00^3*u21*u11^3*u12*u03^2-324*u30^2*u00^3*u21*u11^2*u12^2*u02*u03+5184*u30^2*u00^3*u21*u11*u01*u12^3*u03-1728*u30^2*u00^3*u21*u11*u12^3*u02^2+1296*u30^2*u00^3*u21*u01*u12^4*u02-540*u30^2*u00^3*u11^3*u12^3*u03+648*u30^2*u00^3*u11^2*u12^4*u02-864*u30^2*u00^3*u11*u01*u12^5+1296*u30^2*u00^2*u21^3*u01^3*u03^2+1080*u30^2*u00^2*u21^3*u01^2*u02^2*u03-288*u30^2*u00^2*u21^3*u01*u02^4-648*u30^2*u00^2*u21^2*u11^2*u01^2*u03^2-2484*u30^2*u00^2*u21^2*u11^2*u01*u02^2*u03+504*u30^2*u00^2*u21^2*u11^2*u02^4+4104*u30^2*u00^2*u21^2*u11*u01^2*u12*u02*u03-576*u30^2*u00^2*u21^2*u11*u01*u12*u02^3+1080*u30^2*u00^2*u21^2*u01^3*u12^2*u03-702*u30^2*u00^2*u21^2*u01^2*u12^2*u02^2-81*u30^2*u00^2*u21*u11^4*u01*u03^2+540*u30^2*u00^2*u21*u11^4*u02^2*u03+54*u30^2*u00^2*u21*u11^3*u01*u12*u02*u03-684*u30^2*u00^2*u21*u11^3*u12*u02^3-2484*u30^2*u00^2*u21*u11^2*u01^2*u12^2*u03+1836*u30^2*u00^2*u21*u11^2*u01*u12^2*u02^2-576*u30^2*u00^2*u21*u11*u01^2*u12^3*u02-288*u30^2*u00^2*u21*u01^3*u12^4+81*u30^2*u00^2*u11^6*u03^2-297*u30^2*u00^2*u11^5*u12*u02*u03+540*u30^2*u00^2*u11^4*u01*u12^2*u03+207*u30^2*u00^2*u11^4*u12^2*u02^2-684*u30^2*u00^2*u11^3*u01*u12^3*u02+504*u30^2*u00^2*u11^2*u01^2*u12^4-576*u30^2*u00*u21^3*u01^4*u02*u03+136*u30^2*u00*u21^3*u01^3*u02^3+792*u30^2*u00*u21^2*u11^2*u01^3*u02*u03-162*u30^2*u00*u21^2*u11^2*u01^2*u02^3-864*u30^2*u00*u21^2*u11*u01^4*u12*u03+84*u30^2*u00*u21^2*u11*u01^3*u12*u02^2+144*u30^2*u00*u21^2*u01^4*u12^2*u02-342*u30^2*u00*u21*u11^4*u01^2*u02*u03+48*u30^2*u00*u21*u11^4*u01*u02^3+540*u30^2*u00*u21*u11^3*u01^3*u12*u03+63*u30^2*u00*u21*u11^3*u01^2*u12*u02^2-348*u30^2*u00*u21*u11^2*u01^3*u12^2*u02+192*u30^2*u00*u21*u11*u01^4*u12^3+45*u30^2*u00*u11^6*u01*u02*u03-u30^2*u00*u11^6*u02^3-81*u30^2*u00*u11^5*u01^2*u12*u03-39*u30^2*u00*u11^5*u01*u12*u02^2+114*u30^2*u00*u11^4*u01^2*u12^2*u02-72*u30^2*u00*u11^3*u01^3*u12^3+64*u30^2*u21^3*u01^6*u03-16*u30^2*u21^3*u01^5*u02^2-48*u30^2*u21^2*u11^2*u01^5*u03+8*u30^2*u21^2*u11^2*u01^4*u02^2+16*u30^2*u21^2*u11*u01^5*u12*u02-16*u30^2*u21^2*u01^6*u12^2+12*u30^2*u21*u11^4*u01^4*u03-u30^2*u21*u11^4*u01^3*u02^2-8*u30^2*u21*u11^3*u01^4*u12*u02+8*u30^2*u21*u11^2*u01^5*u12^2-u30^2*u11^6*u01^3*u03+u30^2*u11^5*u01^3*u12*u02-u30^2*u11^4*u01^4*u12^2-3888*u30*u20^4*u10*u00^2*u03^4+2592*u30*u20^4*u10*u00*u01*u02*u03^3-576*u30*u20^4*u10*u00*u02^3*u03^2-576*u30*u20^4*u10*u01^3*u03^3+144*u30*u20^4*u10*u01^2*u02^2*u03^2+1296*u30*u20^4*u00^2*u11*u02*u03^3+1296*u30*u20^4*u00^2*u01*u12*u03^3-864*u30*u20^4*u00^2*u12*u02^2*u03^2-864*u30*u20^4*u00*u11*u01*u02^2*u03^2+192*u30*u20^4*u00*u11*u02^4*u03-864*u30*u20^4*u00*u01^2*u12*u02*u03^2+768*u30*u20^4*u00*u01*u12*u02^3*u03-128*u30*u20^4*u00*u12*u02^5+192*u30*u20^4*u11*u01^3*u02*u03^2-48*u30*u20^4*u11*u01^2*u02^3*u03+192*u30*u20^4*u01^4*u12*u03^2-176*u30*u20^4*u01^3*u12*u02^2*u03+32*u30*u20^4*u01^2*u12*u02^4+1836*u30*u20^3*u10^3*u00*u03^4-612*u30*u20^3*u10^3*u01*u02*u03^3+136*u30*u20^3*u10^3*u02^3*u03^2-1836*u30*u20^3*u10^2*u00*u11*u02*u03^3-1836*u30*u20^3*u10^2*u00*u01*u12*u03^3+1224*u30*u20^3*u10^2*u00*u12*u02^2*u03^2+792*u30*u20^3*u10^2*u11*u01^2*u03^3+84*u30*u20^3*u10^2*u11*u01*u02^2*u03^2-48*u30*u20^3*u10^2*u11*u02^4*u03+84*u30*u20^3*u10^2*u01^2*u12*u02*u03^2-192*u30*u20^3*u10^2*u01*u12*u02^3*u03+32*u30*u20^3*u10^2*u12*u02^5+5184*u30*u20^3*u10*u00^2*u21*u02*u03^3+5184*u30*u20^3*u10*u00^2*u11*u12*u03^3-3456*u30*u20^3*u10*u00^2*u12^2*u02*u03^2-3456*u30*u20^3*u10*u00*u21*u01*u02^2*u03^2+768*u30*u20^3*u10*u00*u21*u02^4*u03-540*u30*u20^3*u10*u00*u11^2*u01*u03^3+792*u30*u20^3*u10*u00*u11^2*u02^2*u03^2-1512*u30*u20^3*u10*u00*u11*u01*u12*u02*u03^2-288*u30*u20^3*u10*u00*u11*u12*u02^3*u03+612*u30*u20^3*u10*u00*u01^2*u12^2*u03^2+1248*u30*u20^3*u10*u00*u01*u12^2*u02^2*u03-160*u30*u20^3*u10*u00*u12^2*u02^4+768*u30*u20^3*u10*u21*u01^3*u02*u03^2-192*u30*u20^3*u10*u21*u01^2*u02^3*u03-348*u30*u20^3*u10*u11^2*u01^2*u02*u03^2+48*u30*u20^3*u10*u11^2*u01*u02^3*u03+240*u30*u20^3*u10*u11*u01^3*u12*u03^2+216*u30*u20^3*u10*u11*u01^2*u12*u02^2*u03-32*u30*u20^3*u10*u11*u01*u12*u02^4-364*u30*u20^3*u10*u01^3*u12^2*u02*u03+56*u30*u20^3*u10*u01^2*u12^2*u02^3-3888*u30*u20^3*u00^3*u21*u12*u03^3+864*u30*u20^3*u00^3*u12^3*u03^2-3888*u30*u20^3*u00^2*u21*u11*u01*u03^3-432*u30*u20^3*u00^2*u21*u11*u02^2*u03^2+4752*u30*u20^3*u00^2*u21*u01*u12*u02*u03^2-576*u30*u20^3*u00^2*u21*u12*u02^3*u03-540*u30*u20^3*u00^2*u11^3*u03^3-648*u30*u20^3*u00^2*u11^2*u12*u02*u03^2-432*u30*u20^3*u00^2*u11*u01*u12^2*u03^2+1152*u30*u20^3*u00^2*u11*u12^2*u02^2*u03-576*u30*u20^3*u00^2*u01*u12^3*u02*u03-128*u30*u20^3*u00^2*u12^3*u02^3+2592*u30*u20^3*u00*u21*u11*u01^2*u02*u03^2-288*u30*u20^3*u00*u21*u11*u01*u02^3*u03-64*u30*u20^3*u00*u21*u11*u02^5-576*u30*u20^3*u00*u21*u01^3*u12*u03^2-1296*u30*u20^3*u00*u21*u01^2*u12*u02^2*u03+320*u30*u20^3*u00*u21*u01*u12*u02^4+540*u30*u20^3*u00*u11^3*u01*u02*u03^2-208*u30*u20^3*u00*u11^3*u02^3*u03+180*u30*u20^3*u00*u11^2*u01^2*u12*u03^2-192*u30*u20^3*u00*u11^2*u01*u12*u02^2*u03+160*u30*u20^3*u00*u11^2*u12*u02^4-156*u30*u20^3*u00*u11*u01^2*u12^2*u02*u03-240*u30*u20^3*u00*u11*u01*u12^2*u02^3+60*u30*u20^3*u00*u01^3*u12^3*u03+184*u30*u20^3*u00*u01^2*u12^3*u02^2-576*u30*u20^3*u21*u11*u01^4*u03^2+80*u30*u20^3*u21*u11*u01^3*u02^2*u03+16*u30*u20^3*u21*u11*u01^2*u02^4+320*u30*u20^3*u21*u01^4*u12*u02*u03-80*u30*u20^3*u21*u01^3*u12*u02^3-72*u30*u20^3*u11^3*u01^3*u03^2+40*u30*u20^3*u11^3*u01^2*u02^2*u03+4*u30*u20^3*u11^2*u01^3*u12*u02*u03-32*u30*u20^3*u11^2*u01^2*u12*u02^3+24*u30*u20^3*u11*u01^4*u12^2*u03+52*u30*u20^3*u11*u01^3*u12^2*u02^2-36*u30*u20^3*u01^4*u12^3*u02-216*u30*u20^2*u10^5*u03^4+360*u30*u20^2*u10^4*u11*u02*u03^3+360*u30*u20^2*u10^4*u01*u12*u03^3-240*u30*u20^2*u10^4*u12*u02^2*u03^2-1836*u30*u20^2*u10^3*u00*u21*u02*u03^3-1836*u30*u20^2*u10^3*u00*u11*u12*u03^3+1224*u30*u20^2*u10^3*u00*u12^2*u02*u03^2-360*u30*u20^2*u10^3*u21*u01^2*u03^3+852*u30*u20^2*u10^3*u21*u01*u02^2*u03^2-176*u30*u20^2*u10^3*u21*u02^4*u03-234*u30*u20^2*u10^3*u11^2*u01*u03^3-162*u30*u20^2*u10^3*u11^2*u02^2*u03^2+444*u30*u20^2*u10^3*u11*u01*u12*u02*u03^2+80*u30*u20^2*u10^3*u11*u12*u02^3*u03-120*u30*u20^2*u10^3*u01^2*u12^2*u03^2-272*u30*u20^2*u10^3*u01*u12^2*u02^2*u03+32*u30*u20^2*u10^3*u12^2*u02^4-4860*u30*u20^2*u10^2*u00^2*u21*u12*u03^3+1080*u30*u20^2*u10^2*u00^2*u12^3*u03^2+2916*u30*u20^2*u10^2*u00*u21*u11*u01*u03^3+864*u30*u20^2*u10^2*u00*u21*u11*u02^2*u03^2+3132*u30*u20^2*u10^2*u00*u21*u01*u12*u02*u03^2-1296*u30*u20^2*u10^2*u00*u21*u12*u02^3*u03+513*u30*u20^2*u10^2*u00*u11^3*u03^3+810*u30*u20^2*u10^2*u00*u11^2*u12*u02*u03^2+864*u30*u20^2*u10^2*u00*u11*u01*u12^2*u03^2-1440*u30*u20^2*u10^2*u00*u11*u12^2*u02^2*u03-1296*u30*u20^2*u10^2*u00*u01*u12^3*u02*u03+608*u30*u20^2*u10^2*u00*u12^3*u02^3-1404*u30*u20^2*u10^2*u21*u11*u01^2*u02*u03^2+216*u30*u20^2*u10^2*u21*u11*u01*u02^3*u03+16*u30*u20^2*u10^2*u21*u11*u02^5-648*u30*u20^2*u10^2*u21*u01^3*u12*u03^2+552*u30*u20^2*u10^2*u21*u01^2*u12*u02^2*u03-64*u30*u20^2*u10^2*u21*u01*u12*u02^4+63*u30*u20^2*u10^2*u11^3*u01*u02*u03^2+40*u30*u20^2*u10^2*u11^3*u02^3*u03-558*u30*u20^2*u10^2*u11^2*u01^2*u12*u03^2-48*u30*u20^2*u10^2*u11^2*u01*u12*u02^2*u03-32*u30*u20^2*u10^2*u11^2*u12*u02^4+576*u30*u20^2*u10^2*u11*u01^2*u12^2*u02*u03+16*u30*u20^2*u10^2*u11*u01*u12^2*u02^3+184*u30*u20^2*u10^2*u01^3*u12^3*u03-160*u30*u20^2*u10^2*u01^2*u12^3*u02^2-1296*u30*u20^2*u10*u00^2*u21^2*u01*u03^3-2160*u30*u20^2*u10*u00^2*u21^2*u02^2*u03^2-324*u30*u20^2*u10*u00^2*u21*u11^2*u03^3-1512*u30*u20^2*u10*u00^2*u21*u11*u12*u02*u03^2+4104*u30*u20^2*u10*u00^2*u21*u01*u12^2*u03^2+864*u30*u20^2*u10*u00^2*u21*u12^2*u02^2*u03-2484*u30*u20^2*u10*u00^2*u11^2*u12^2*u03^2+2592*u30*u20^2*u10*u00^2*u11*u12^3*u02*u03-864*u30*u20^2*u10*u00^2*u01*u12^4*u03-576*u30*u20^2*u10*u00^2*u12^4*u02^2+864*u30*u20^2*u10*u00*u21^2*u01^2*u02*u03^2+1248*u30*u20^2*u10*u00*u21^2*u01*u02^3*u03-320*u30*u20^2*u10*u00*u21^2*u02^5-1188*u30*u20^2*u10*u00*u21*u11^2*u01*u02*u03^2-192*u30*u20^2*u10*u00*u21*u11^2*u02^3*u03-1080*u30*u20^2*u10*u00*u21*u11*u01^2*u12*u03^2+1728*u30*u20^2*u10*u00*u21*u11*u01*u12*u02^2*u03+64*u30*u20^2*u10*u00*u21*u11*u12*u02^4-2628*u30*u20^2*u10*u00*u21*u01^2*u12^2*u02*u03+176*u30*u20^2*u10*u00*u21*u01*u12^2*u02^3-342*u30*u20^2*u10*u00*u11^4*u02*u03^2+198*u30*u20^2*u10*u00*u11^3*u01*u12*u03^2+120*u30*u20^2*u10*u00*u11^3*u12*u02^2*u03+684*u30*u20^2*u10*u00*u11^2*u01*u12^2*u02*u03+88*u30*u20^2*u10*u00*u11^2*u12^2*u02^3-156*u30*u20^2*u10*u00*u11*u01^2*u12^3*u03-784*u30*u20^2*u10*u00*u11*u01*u12^3*u02^2+680*u30*u20^2*u10*u00*u01^2*u12^4*u02-192*u30*u20^2*u10*u21^2*u01^4*u03^2-272*u30*u20^2*u10*u21^2*u01^3*u02^2*u03+80*u30*u20^2*u10*u21^2*u01^2*u02^4+888*u30*u20^2*u10*u21*u11^2*u01^3*u03^2-48*u30*u20^2*u10*u21*u11^2*u01^2*u02^2*u03-16*u30*u20^2*u10*u21*u11^2*u01*u02^4-632*u30*u20^2*u10*u21*u11*u01^3*u12*u02*u03+56*u30*u20^2*u10*u21*u11*u01^2*u12*u02^3+680*u30*u20^2*u10*u21*u01^4*u12^2*u03-76*u30*u20^2*u10*u21*u01^3*u12^2*u02^2+114*u30*u20^2*u10*u11^4*u01^2*u03^2-40*u30*u20^2*u10*u11^4*u01*u02^2*u03+2*u30*u20^2*u10*u11^3*u01^2*u12*u02*u03+32*u30*u20^2*u10*u11^3*u01*u12*u02^3-230*u30*u20^2*u10*u11^2*u01^3*u12^2*u03-78*u30*u20^2*u10*u11^2*u01^2*u12^2*u02^2+236*u30*u20^2*u10*u11*u01^3*u12^3*u02-144*u30*u20^2*u10*u01^4*u12^4+7776*u30*u20^2*u00^3*u21^2*u11*u03^3-1296*u30*u20^2*u00^3*u21^2*u12*u02*u03^2-1296*u30*u20^2*u00^3*u21*u11*u12^2*u03^2-3456*u30*u20^2*u00^2*u21^2*u11*u01*u02*u03^2+1152*u30*u20^2*u00^2*u21^2*u11*u02^3*u03-2160*u30*u20^2*u00^2*u21^2*u01^2*u12*u03^2+864*u30*u20^2*u00^2*u21^2*u01*u12*u02^2*u03-192*u30*u20^2*u00^2*u21^2*u12*u02^4+648*u30*u20^2*u00^2*u21*u11^3*u02*u03^2+1080*u30*u20^2*u00^2*u21*u11^2*u01*u12*u03^2-432*u30*u20^2*u00^2*u21*u11^2*u12*u02^2*u03-1080*u30*u20^2*u00^2*u21*u11*u01*u12^2*u02*u03-48*u30*u20^2*u00^2*u21*u11*u12^2*u02^3+612*u30*u20^2*u00^2*u21*u01^2*u12^3*u03+240*u30*u20^2*u00^2*u21*u01*u12^3*u02^2+540*u30*u20^2*u00^2*u11^4*u12*u03^2-612*u30*u20^2*u00^2*u11^3*u12^2*u02*u03+180*u30*u20^2*u00^2*u11^2*u01*u12^3*u03+120*u30*u20^2*u00^2*u11^2*u12^3*u02^2+48*u30*u20^2*u00^2*u11*u01*u12^4*u02-24*u30*u20^2*u00^2*u01^2*u12^5+1152*u30*u20^2*u00*u21^2*u11*u01^3*u03^2-1440*u30*u20^2*u00*u21^2*u11*u01^2*u02^2*u03+256*u30*u20^2*u00*u21^2*u11*u01*u02^4+1248*u30*u20^2*u00*u21^2*u01^3*u12*u02*u03-272*u30*u20^2*u00*u21^2*u01^2*u12*u02^3-612*u30*u20^2*u00*u21*u11^3*u01^2*u03^2+120*u30*u20^2*u00*u21*u11^3*u01*u02^2*u03+48*u30*u20^2*u00*u21*u11^3*u02^4+684*u30*u20^2*u00*u21*u11^2*u01^2*u12*u02*u03-416*u30*u20^2*u00*u21*u11^2*u01*u12*u02^3-156*u30*u20^2*u00*u21*u11*u01^3*u12^2*u03+576*u30*u20^2*u00*u21*u11*u01^2*u12^2*u02^2-364*u30*u20^2*u00*u21*u01^3*u12^3*u02-81*u30*u20^2*u00*u11^5*u01*u03^2+84*u30*u20^2*u00*u11^5*u02^2*u03-156*u30*u20^2*u00*u11^4*u01*u12*u02*u03-72*u30*u20^2*u00*u11^4*u12*u02^3+81*u30*u20^2*u00*u11^3*u01^2*u12^2*u03+244*u30*u20^2*u00*u11^3*u01*u12^2*u02^2-230*u30*u20^2*u00*u11^2*u01^2*u12^3*u02+24*u30*u20^2*u00*u11*u01^3*u12^4+256*u30*u20^2*u21^2*u11*u01^4*u02*u03-64*u30*u20^2*u21^2*u11*u01^3*u02^3-320*u30*u20^2*u21^2*u01^5*u12*u03+80*u30*u20^2*u21^2*u01^4*u12*u02^2-20*u30*u20^2*u21*u11^3*u01^3*u02*u03-8*u30*u20^2*u21*u11^3*u01^2*u02^3-56*u30*u20^2*u21*u11^2*u01^4*u12*u03+84*u30*u20^2*u21*u11^2*u01^3*u12*u02^2-124*u30*u20^2*u21*u11*u01^4*u12^2*u02+72*u30*u20^2*u21*u01^5*u12^3-11*u30*u20^2*u11^5*u01^2*u02*u03+34*u30*u20^2*u11^4*u01^3*u12*u03+10*u30*u20^2*u11^4*u01^2*u12*u02^2-41*u30*u20^2*u11^3*u01^3*u12^2*u02+30*u30*u20^2*u11^2*u01^4*u12^3+144*u30*u20*u10^5*u21*u02*u03^3+144*u30*u20*u10^5*u11*u12*u03^3-96*u30*u20*u10^5*u12^2*u02*u03^2+2592*u30*u20*u10^4*u00*u21*u12*u03^3-576*u30*u20*u10^4*u00*u12^3*u03^2-144*u30*u20*u10^4*u21*u11*u01*u03^3-192*u30*u20*u10^4*u21*u11*u02^2*u03^2-1008*u30*u20*u10^4*u21*u01*u12*u02*u03^2+320*u30*u20*u10^4*u21*u12*u02^3*u03-36*u30*u20*u10^4*u11^3*u03^3-168*u30*u20*u10^4*u11^2*u12*u02*u03^2-192*u30*u20*u10^4*u11*u01*u12^2*u03^2+256*u30*u20*u10^4*u11*u12^2*u02^2*u03+320*u30*u20*u10^4*u01*u12^3*u02*u03-128*u30*u20*u10^4*u12^3*u02^3+612*u30*u20*u10^3*u00*u21^2*u02^2*u03^2-540*u30*u20*u10^3*u00*u21*u11^2*u03^3-1512*u30*u20*u10^3*u00*u21*u11*u12*u02*u03^2-3456*u30*u20*u10^3*u00*u21*u01*u12^2*u03^2+1248*u30*u20*u10^3*u00*u21*u12^2*u02^2*u03+792*u30*u20*u10^3*u00*u11^2*u12^2*u03^2-288*u30*u20*u10^3*u00*u11*u12^3*u02*u03+768*u30*u20*u10^3*u00*u01*u12^4*u03-160*u30*u20*u10^3*u00*u12^4*u02^2+240*u30*u20*u10^3*u21^2*u01^2*u02*u03^2-364*u30*u20*u10^3*u21^2*u01*u02^3*u03+72*u30*u20*u10^3*u21^2*u02^5+528*u30*u20*u10^3*u21*u11^2*u01*u02*u03^2+4*u30*u20*u10^3*u21*u11^2*u02^3*u03+1584*u30*u20*u10^3*u21*u11*u01^2*u12*u03^2-632*u30*u20*u10^3*u21*u11*u01*u12*u02^2*u03-16*u30*u20*u10^3*u21*u11*u12*u02^4+176*u30*u20*u10^3*u21*u01^2*u12^2*u02*u03-16*u30*u20*u10^3*u21*u01*u12^2*u02^3+48*u30*u20*u10^3*u11^4*u02*u03^2+204*u30*u20*u10^3*u11^3*u01*u12*u03^2-20*u30*u20*u10^3*u11^3*u12*u02^2*u03-416*u30*u20*u10^3*u11^2*u01*u12^2*u02*u03-8*u30*u20*u10^3*u11^2*u12^2*u02^3-240*u30*u20*u10^3*u11*u01^2*u12^3*u03+272*u30*u20*u10^3*u11*u01*u12^3*u02^2-96*u30*u20*u10^3*u01^2*u12^4*u02-1296*u30*u20*u10^2*u00^2*u21^2*u11*u03^3+4104*u30*u20*u10^2*u00^2*u21^2*u12*u02*u03^2+4104*u30*u20*u10^2*u00^2*u21*u11*u12^2*u03^2-3456*u30*u20*u10^2*u00^2*u21*u12^3*u02*u03-864*u30*u20*u10^2*u00^2*u11*u12^4*u03+576*u30*u20*u10^2*u00^2*u12^5*u02-1080*u30*u20*u10^2*u00*u21^2*u11*u01*u02*u03^2-156*u30*u20*u10^2*u00*u21^2*u11*u02^3*u03+864*u30*u20*u10^2*u00*u21^2*u01^2*u12*u03^2-2628*u30*u20*u10^2*u00*u21^2*u01*u12*u02^2*u03+680*u30*u20*u10^2*u00*u21^2*u12*u02^4+198*u30*u20*u10^2*u00*u21*u11^3*u02*u03^2-1188*u30*u20*u10^2*u00*u21*u11^2*u01*u12*u03^2+684*u30*u20*u10^2*u00*u21*u11^2*u12*u02^2*u03+1728*u30*u20*u10^2*u00*u21*u11*u01*u12^2*u02*u03-784*u30*u20*u10^2*u00*u21*u11*u12^2*u02^3+1248*u30*u20*u10^2*u00*u21*u01^2*u12^3*u03+176*u30*u20*u10^2*u00*u21*u01*u12^3*u02^2-342*u30*u20*u10^2*u00*u11^4*u12*u03^2+120*u30*u20*u10^2*u00*u11^3*u12^2*u02*u03-192*u30*u20*u10^2*u00*u11^2*u01*u12^3*u03+88*u30*u20*u10^2*u00*u11^2*u12^3*u02^2+64*u30*u20*u10^2*u00*u11*u01*u12^4*u02-320*u30*u20*u10^2*u00*u01^2*u12^5-48*u30*u20*u10^2*u21^2*u11*u01^3*u03^2+576*u30*u20*u10^2*u21^2*u11*u01^2*u02^2*u03-124*u30*u20*u10^2*u21^2*u11*u01*u02^4+176*u30*u20*u10^2*u21^2*u01^3*u12*u02*u03-76*u30*u20*u10^2*u21^2*u01^2*u12*u02^3-480*u30*u20*u10^2*u21*u11^3*u01^2*u03^2+2*u30*u20*u10^2*u21*u11^3*u01*u02^2*u03-8*u30*u20*u10^2*u21*u11^3*u02^4+144*u30*u20*u10^2*u21*u11^2*u01^2*u12*u02*u03+80*u30*u20*u10^2*u21*u11^2*u01*u12*u02^3-784*u30*u20*u10^2*u21*u11*u01^3*u12^2*u03+120*u30*u20*u10^2*u21*u11*u01^2*u12^2*u02^2-16*u30*u20*u10^2*u21*u01^3*u12^3*u02-39*u30*u20*u10^2*u11^5*u01*u03^2-11*u30*u20*u10^2*u11^5*u02^2*u03+40*u30*u20*u10^2*u11^4*u01*u12*u02*u03+10*u30*u20*u10^2*u11^4*u12*u02^3+244*u30*u20*u10^2*u11^3*u01^2*u12^2*u03-28*u30*u20*u10^2*u11^3*u01*u12^2*u02^2-184*u30*u20*u10^2*u11^2*u01^2*u12^3*u02+160*u30*u20*u10^2*u11*u01^3*u12^4-3888*u30*u20*u10*u00^3*u21^3*u03^3-4860*u30*u20*u10*u00^3*u21^2*u12^2*u03^2+2592*u30*u20*u10*u00^3*u21*u12^4*u03-288*u30*u20*u10*u00^3*u12^6+4752*u30*u20*u10*u00^2*u21^3*u01*u02*u03^2-576*u30*u20*u10*u00^2*u21^3*u02^3*u03+1080*u30*u20*u10*u00^2*u21^2*u11^2*u02*u03^2-1512*u30*u20*u10*u00^2*u21^2*u11*u01*u12*u03^2-1080*u30*u20*u10*u00^2*u21^2*u11*u12*u02^2*u03+3132*u30*u20*u10*u00^2*u21^2*u01*u12^2*u02*u03-648*u30*u20*u10*u00^2*u21^2*u12^2*u02^3+54*u30*u20*u10*u00^2*u21*u11^3*u12*u03^2-1188*u30*u20*u10*u00^2*u21*u11^2*u12^2*u02*u03-1512*u30*u20*u10*u00^2*u21*u11*u01*u12^3*u03+1584*u30*u20*u10*u00^2*u21*u11*u12^3*u02^2-1008*u30*u20*u10*u00^2*u21*u01*u12^4*u02+540*u30*u20*u10*u00^2*u11^3*u12^3*u03-504*u30*u20*u10*u00^2*u11^2*u12^4*u02+432*u30*u20*u10*u00^2*u11*u01*u12^5-576*u30*u20*u10*u00*u21^3*u01^3*u03^2-1296*u30*u20*u10*u00*u21^3*u01^2*u02^2*u03+320*u30*u20*u10*u00*u21^3*u01*u02^4-432*u30*u20*u10*u00*u21^2*u11^2*u01^2*u03^2+684*u30*u20*u10*u00*u21^2*u11^2*u01*u02^2*u03-56*u30*u20*u10*u00*u21^2*u11^2*u02^4+1728*u30*u20*u10*u00*u21^2*u11*u01^2*u12*u02*u03-632*u30*u20*u10*u00*u21^2*u11*u01*u12*u02^3-1296*u30*u20*u10*u00*u21^2*u01^3*u12^2*u03+552*u30*u20*u10*u00*u21^2*u01^2*u12^2*u02^2+612*u30*u20*u10*u00*u21*u11^4*u01*u03^2-156*u30*u20*u10*u00*u21*u11^4*u02^2*u03-1008*u30*u20*u10*u00*u21*u11^3*u01*u12*u02*u03+184*u30*u20*u10*u00*u21*u11^3*u12*u02^3+684*u30*u20*u10*u00*u21*u11^2*u01^2*u12^2*u03+144*u30*u20*u10*u00*u21*u11^2*u01*u12^2*u02^2-632*u30*u20*u10*u00*u21*u11*u01^2*u12^3*u02+320*u30*u20*u10*u00*u21*u01^3*u12^4+45*u30*u20*u10*u00*u11^6*u03^2+48*u30*u20*u10*u00*u11^5*u12*u02*u03-156*u30*u20*u10*u00*u11^4*u01*u12^2*u03-68*u30*u20*u10*u00*u11^4*u12^2*u02^2+184*u30*u20*u10*u00*u11^3*u01*u12^3*u02-56*u30*u20*u10*u00*u11^2*u01^2*u12^4+320*u30*u20*u10*u21^3*u01^4*u02*u03-80*u30*u20*u10*u21^3*u01^3*u02^3-416*u30*u20*u10*u21^2*u11^2*u01^3*u02*u03+84*u30*u20*u10*u21^2*u11^2*u01^2*u02^3+64*u30*u20*u10*u21^2*u11*u01^4*u12*u03+56*u30*u20*u10*u21^2*u11*u01^3*u12*u02^2-64*u30*u20*u10*u21^2*u01^4*u12^2*u02+40*u30*u20*u10*u21*u11^4*u01^2*u02*u03+8*u30*u20*u10*u21*u11^4*u01*u02^3+184*u30*u20*u10*u21*u11^3*u01^3*u12*u03-118*u30*u20*u10*u21*u11^3*u01^2*u12*u02^2+80*u30*u20*u10*u21*u11^2*u01^3*u12^2*u02-16*u30*u20*u10*u21*u11*u01^4*u12^3+11*u30*u20*u10*u11^6*u01*u02*u03-50*u30*u20*u10*u11^5*u01^2*u12*u03-10*u30*u20*u10*u11^5*u01*u12*u02^2+56*u30*u20*u10*u11^4*u01^2*u12^2*u02-44*u30*u20*u10*u11^3*u01^3*u12^3-3888*u30*u20*u00^3*u21^3*u11*u02*u03^2+5184*u30*u20*u00^3*u21^3*u01*u12*u03^2-324*u30*u20*u00^3*u21^2*u11^2*u12*u03^2+2916*u30*u20*u00^3*u21^2*u11*u12^2*u02*u03-1836*u30*u20*u00^3*u21^2*u01*u12^3*u03-360*u30*u20*u00^3*u21^2*u12^3*u02^2-540*u30*u20*u00^3*u21*u11^2*u12^3*u03-144*u30*u20*u00^3*u21*u11*u12^4*u02+144*u30*u20*u00^3*u21*u01*u12^5+72*u30*u20*u00^3*u11^2*u12^5-432*u30*u20*u00^2*u21^3*u11*u01^2*u03^2+2592*u30*u20*u00^2*u21^3*u11*u01*u02^2*u03-576*u30*u20*u00^2*u21^3*u11*u02^4-3456*u30*u20*u00^2*u21^3*u01^2*u12*u02*u03+768*u30*u20*u00^2*u21^3*u01*u12*u02^3+648*u30*u20*u00^2*u21^2*u11^3*u01*u03^2-612*u30*u20*u00^2*u21^2*u11^3*u02^2*u03-1188*u30*u20*u00^2*u21^2*u11^2*u01*u12*u02*u03+888*u30*u20*u00^2*u21^2*u11^2*u12*u02^3+864*u30*u20*u00^2*u21^2*u11*u01^2*u12^2*u03-1404*u30*u20*u00^2*u21^2*u11*u01*u12^2*u02^2+852*u30*u20*u00^2*u21^2*u01^2*u12^3*u02-297*u30*u20*u00^2*u21*u11^5*u03^2+612*u30*u20*u00^2*u21*u11^4*u12*u02*u03+198*u30*u20*u00^2*u21*u11^3*u01*u12^2*u03-480*u30*u20*u00^2*u21*u11^3*u12^2*u02^2+528*u30*u20*u00^2*u21*u11^2*u01*u12^3*u02-192*u30*u20*u00^2*u21*u11*u01^2*u12^4-81*u30*u20*u00^2*u11^5*u12^2*u03+90*u30*u20*u00^2*u11^4*u12^3*u02-108*u30*u20*u00^2*u11^3*u01*u12^4-288*u30*u20*u00*u21^3*u11*u01^3*u02*u03+80*u30*u20*u00*u21^3*u11*u01^2*u02^3+768*u30*u20*u00*u21^3*u01^4*u12*u03-192*u30*u20*u00*u21^3*u01^3*u12*u02^2+120*u30*u20*u00*u21^2*u11^3*u01^2*u02*u03-20*u30*u20*u00*u21^2*u11^3*u01*u02^3-192*u30*u20*u00*u21^2*u11^2*u01^3*u12*u03-48*u30*u20*u00*u21^2*u11^2*u01^2*u12*u02^2+216*u30*u20*u00*u21^2*u11*u01^3*u12^2*u02-176*u30*u20*u00*u21^2*u01^4*u12^3+48*u30*u20*u00*u21*u11^5*u01*u02*u03-12*u30*u20*u00*u21*u11^5*u02^3-156*u30*u20*u00*u21*u11^4*u01^2*u12*u03+40*u30*u20*u00*u21*u11^4*u01*u12*u02^2+2*u30*u20*u00*u21*u11^3*u01^2*u12^2*u02+4*u30*u20*u00*u21*u11^2*u01^3*u12^3-15*u30*u20*u00*u11^7*u02*u03+39*u30*u20*u00*u11^6*u01*u12*u03+14*u30*u20*u00*u11^6*u12*u02^2-50*u30*u20*u00*u11^5*u01*u12^2*u02+34*u30*u20*u00*u11^4*u01^2*u12^3-64*u30*u20*u21^3*u11*u01^5*u03+16*u30*u20*u21^3*u11*u01^4*u02^2+48*u30*u20*u21^2*u11^3*u01^4*u03-8*u30*u20*u21^2*u11^3*u01^3*u02^2-16*u30*u20*u21^2*u11^2*u01^4*u12*u02+16*u30*u20*u21^2*u11*u01^5*u12^2-12*u30*u20*u21*u11^5*u01^3*u03+u30*u20*u21*u11^5*u01^2*u02^2+8*u30*u20*u21*u11^4*u01^3*u12*u02-8*u30*u20*u21*u11^3*u01^4*u12^2+u30*u20*u11^7*u01^2*u03-u30*u20*u11^6*u01^2*u12*u02+u30*u20*u11^5*u01^3*u12^2-288*u30*u10^6*u21*u12*u03^3+64*u30*u10^6*u12^3*u03^2-24*u30*u10^5*u21^2*u02^2*u03^2+72*u30*u10^5*u21*u11^2*u03^3+432*u30*u10^5*u21*u11*u12*u02*u03^2+576*u30*u10^5*u21*u01*u12^2*u03^2-320*u30*u10^5*u21*u12^2*u02^2*u03-48*u30*u10^5*u11^2*u12^2*u03^2-64*u30*u10^5*u11*u12^3*u02*u03-128*u30*u10^5*u01*u12^4*u03+64*u30*u10^5*u12^4*u02^2-864*u30*u10^4*u00*u21^2*u12*u02*u03^2-864*u30*u10^4*u00*u21*u11*u12^2*u03^2+768*u30*u10^4*u00*u21*u12^3*u02*u03+192*u30*u10^4*u00*u11*u12^4*u03-128*u30*u10^4*u00*u12^5*u02+48*u30*u10^4*u21^2*u11*u01*u02*u03^2+24*u30*u10^4*u21^2*u11*u02^3*u03-576*u30*u10^4*u21^2*u01^2*u12*u03^2+680*u30*u10^4*u21^2*u01*u12*u02^2*u03-144*u30*u10^4*u21^2*u12*u02^4-108*u30*u10^4*u21*u11^3*u02*u03^2-504*u30*u10^4*u21*u11^2*u01*u12*u03^2-56*u30*u10^4*u21*u11^2*u12*u02^2*u03+64*u30*u10^4*u21*u11*u01*u12^2*u02*u03+160*u30*u10^4*u21*u11*u12^2*u02^3-160*u30*u10^4*u21*u01^2*u12^3*u03-96*u30*u10^4*u21*u01*u12^3*u02^2+12*u30*u10^4*u11^4*u12*u03^2+48*u30*u10^4*u11^3*u12^2*u02*u03+160*u30*u10^4*u11^2*u01*u12^3*u03-48*u30*u10^4*u11^2*u12^3*u02^2-64*u30*u10^4*u11*u01*u12^4*u02+64*u30*u10^4*u01^2*u12^5+864*u30*u10^3*u00^2*u21^3*u03^3+1080*u30*u10^3*u00^2*u21^2*u12^2*u03^2-576*u30*u10^3*u00^2*u21*u12^4*u03+64*u30*u10^3*u00^2*u12^6-576*u30*u10^3*u00*u21^3*u01*u02*u03^2+60*u30*u10^3*u00*u21^3*u02^3*u03+180*u30*u10^3*u00*u21^2*u11^2*u02*u03^2+2592*u30*u10^3*u00*u21^2*u11*u01*u12*u03^2-156*u30*u10^3*u00*u21^2*u11*u12*u02^2*u03-1296*u30*u10^3*u00*u21^2*u01*u12^2*u02*u03+184*u30*u10^3*u00*u21^2*u12^2*u02^3+540*u30*u10^3*u00*u21*u11^3*u12*u03^2-192*u30*u10^3*u00*u21*u11^2*u12^2*u02*u03-288*u30*u10^3*u00*u21*u11*u01*u12^3*u03-240*u30*u10^3*u00*u21*u11*u12^3*u02^2+320*u30*u10^3*u00*u21*u01*u12^4*u02-208*u30*u10^3*u00*u11^3*u12^3*u03+160*u30*u10^3*u00*u11^2*u12^4*u02-64*u30*u10^3*u00*u11*u01*u12^5-128*u30*u10^3*u21^3*u01^3*u03^2+184*u30*u10^3*u21^3*u01^2*u02^2*u03-36*u30*u10^3*u21^3*u01*u02^4+120*u30*u10^3*u21^2*u11^2*u01^2*u03^2-230*u30*u10^3*u21^2*u11^2*u01*u02^2*u03+30*u30*u10^3*u21^2*u11^2*u02^4-784*u30*u10^3*u21^2*u11*u01^2*u12*u02*u03+236*u30*u10^3*u21^2*u11*u01*u12*u02^3+608*u30*u10^3*u21^2*u01^3*u12^2*u03-160*u30*u10^3*u21^2*u01^2*u12^2*u02^2+90*u30*u10^3*u21*u11^4*u01*u03^2+34*u30*u10^3*u21*u11^4*u02^2*u03+184*u30*u10^3*u21*u11^3*u01*u12*u02*u03-44*u30*u10^3*u21*u11^3*u12*u02^3+88*u30*u10^3*u21*u11^2*u01^2*u12^2*u03-184*u30*u10^3*u21*u11^2*u01*u12^2*u02^2+272*u30*u10^3*u21*u11*u01^2*u12^3*u02-128*u30*u10^3*u21*u01^3*u12^4-u30*u10^3*u11^6*u03^2-12*u30*u10^3*u11^5*u12*u02*u03-72*u30*u10^3*u11^4*u01*u12^2*u03+12*u30*u10^3*u11^4*u12^2*u02^2+48*u30*u10^3*u11^3*u01*u12^3*u02-48*u30*u10^3*u11^2*u01^2*u12^4-432*u30*u10^2*u00^2*u21^3*u11*u02*u03^2-3456*u30*u10^2*u00^2*u21^3*u01*u12*u03^2+612*u30*u10^2*u00^2*u21^3*u12*u02^2*u03-2484*u30*u10^2*u00^2*u21^2*u11^2*u12*u03^2+864*u30*u10^2*u00^2*u21^2*u11*u12^2*u02*u03+1224*u30*u10^2*u00^2*u21^2*u01*u12^3*u03-120*u30*u10^2*u00^2*u21^2*u12^3*u02^2+792*u30*u10^2*u00^2*u21*u11^2*u12^3*u03-192*u30*u10^2*u00^2*u21*u11*u12^4*u02-96*u30*u10^2*u00^2*u21*u01*u12^5-48*u30*u10^2*u00^2*u11^2*u12^5+1152*u30*u10^2*u00*u21^3*u11*u01^2*u03^2-156*u30*u10^2*u00*u21^3*u11*u01*u02^2*u03+24*u30*u10^2*u00*u21^3*u11*u02^4+1248*u30*u10^2*u00*u21^3*u01^2*u12*u02*u03-364*u30*u10^2*u00*u21^3*u01*u12*u02^3-612*u30*u10^2*u00*u21^2*u11^3*u01*u03^2+81*u30*u10^2*u00*u21^2*u11^3*u02^2*u03+684*u30*u10^2*u00*u21^2*u11^2*u01*u12*u02*u03-230*u30*u10^2*u00*u21^2*u11^2*u12*u02^3-1440*u30*u10^2*u00*u21^2*u11*u01^2*u12^2*u03+576*u30*u10^2*u00*u21^2*u11*u01*u12^2*u02^2-272*u30*u10^2*u00*u21^2*u01^2*u12^3*u02-81*u30*u10^2*u00*u21*u11^5*u03^2-156*u30*u10^2*u00*u21*u11^4*u12*u02*u03+120*u30*u10^2*u00*u21*u11^3*u01*u12^2*u03+244*u30*u10^2*u00*u21*u11^3*u12^2*u02^2-416*u30*u10^2*u00*u21*u11^2*u01*u12^3*u02+256*u30*u10^2*u00*u21*u11*u01^2*u12^4+84*u30*u10^2*u00*u11^5*u12^2*u03-72*u30*u10^2*u00*u11^4*u12^3*u02+48*u30*u10^2*u00*u11^3*u01*u12^4-240*u30*u10^2*u21^3*u11*u01^3*u02*u03+52*u30*u10^2*u21^3*u11*u01^2*u02^3-160*u30*u10^2*u21^3*u01^4*u12*u03+56*u30*u10^2*u21^3*u01^3*u12*u02^2+244*u30*u10^2*u21^2*u11^3*u01^2*u02*u03-41*u30*u10^2*u21^2*u11^3*u01*u02^3+88*u30*u10^2*u21^2*u11^2*u01^3*u12*u03-78*u30*u10^2*u21^2*u11^2*u01^2*u12*u02^2+16*u30*u10^2*u21^2*u11*u01^3*u12^2*u02+32*u30*u10^2*u21^2*u01^4*u12^3-50*u30*u10^2*u21*u11^5*u01*u02*u03+u30*u10^2*u21*u11^5*u02^3-68*u30*u10^2*u21*u11^4*u01^2*u12*u03+56*u30*u10^2*u21*u11^4*u01*u12*u02^2-28*u30*u10^2*u21*u11^3*u01^2*u12^2*u02-8*u30*u10^2*u21*u11^2*u01^3*u12^3+u30*u10^2*u11^7*u02*u03+14*u30*u10^2*u11^6*u01*u12*u03-u30*u10^2*u11^6*u12*u02^2-12*u30*u10^2*u11^5*u01*u12^2*u02+12*u30*u10^2*u11^4*u01^2*u12^3+1296*u30*u10*u00^3*u21^4*u02*u03^2+5184*u30*u10*u00^3*u21^3*u11*u12*u03^2-1836*u30*u10*u00^3*u21^3*u12^2*u02*u03-1836*u30*u10*u00^3*u21^2*u11*u12^3*u03+360*u30*u10*u00^3*u21^2*u12^4*u02+144*u30*u10*u00^3*u21*u11*u12^5-864*u30*u10*u00^2*u21^4*u01^2*u03^2-864*u30*u10*u00^2*u21^4*u01*u02^2*u03+192*u30*u10*u00^2*u21^4*u02^4-648*u30*u10*u00^2*u21^3*u11^2*u01*u03^2+180*u30*u10*u00^2*u21^3*u11^2*u02^2*u03-1512*u30*u10*u00^2*u21^3*u11*u01*u12*u02*u03+240*u30*u10*u00^2*u21^3*u11*u12*u02^3+1224*u30*u10*u00^2*u21^3*u01^2*u12^2*u03+84*u30*u10*u00^2*u21^3*u01*u12^2*u02^2+540*u30*u10*u00^2*u21^2*u11^4*u03^2+198*u30*u10*u00^2*u21^2*u11^3*u12*u02*u03+810*u30*u10*u00^2*u21^2*u11^2*u01*u12^2*u03-558*u30*u10*u00^2*u21^2*u11^2*u12^2*u02^2+444*u30*u10*u00^2*u21^2*u11*u01*u12^3*u02-240*u30*u10*u00^2*u21^2*u01^2*u12^4-342*u30*u10*u00^2*u21*u11^4*u12^2*u03+204*u30*u10*u00^2*u21*u11^3*u12^3*u02-168*u30*u10*u00^2*u21*u11^2*u01*u12^4+12*u30*u10*u00^2*u11^4*u12^4+768*u30*u10*u00*u21^4*u01^3*u02*u03-176*u30*u10*u00*u21^4*u01^2*u02^3-192*u30*u10*u00*u21^3*u11^2*u01^2*u02*u03+4*u30*u10*u00*u21^3*u11^2*u01*u02^3-288*u30*u10*u00*u21^3*u11*u01^3*u12*u03+216*u30*u10*u00*u21^3*u11*u01^2*u12*u02^2-192*u30*u10*u00*u21^3*u01^3*u12^2*u02-156*u30*u10*u00*u21^2*u11^4*u01*u02*u03+34*u30*u10*u00*u21^2*u11^4*u02^3+120*u30*u10*u00*u21^2*u11^3*u01^2*u12*u03+2*u30*u10*u00*u21^2*u11^3*u01*u12*u02^2-48*u30*u10*u00*u21^2*u11^2*u01^2*u12^2*u02+80*u30*u10*u00*u21^2*u11*u01^3*u12^3+39*u30*u10*u00*u21*u11^6*u02*u03+48*u30*u10*u00*u21*u11^5*u01*u12*u03-50*u30*u10*u00*u21*u11^5*u12*u02^2+40*u30*u10*u00*u21*u11^4*u01*u12^2*u02-20*u30*u10*u00*u21*u11^3*u01^2*u12^3-15*u30*u10*u00*u11^7*u12*u03+14*u30*u10*u00*u11^6*u12^2*u02-12*u30*u10*u00*u11^5*u01*u12^3-128*u30*u10*u21^4*u01^5*u03+32*u30*u10*u21^4*u01^4*u02^2+160*u30*u10*u21^3*u11^2*u01^4*u03-32*u30*u10*u21^3*u11^2*u01^3*u02^2-32*u30*u10*u21^3*u11*u01^4*u12*u02+32*u30*u10*u21^3*u01^5*u12^2-72*u30*u10*u21^2*u11^4*u01^3*u03+10*u30*u10*u21^2*u11^4*u01^2*u02^2+32*u30*u10*u21^2*u11^3*u01^3*u12*u02-32*u30*u10*u21^2*u11^2*u01^4*u12^2+14*u30*u10*u21*u11^6*u01^2*u03-u30*u10*u21*u11^6*u01*u02^2-10*u30*u10*u21*u11^5*u01^2*u12*u02+10*u30*u10*u21*u11^4*u01^3*u12^2-u30*u10*u11^8*u01*u03+u30*u10*u11^7*u01*u12*u02-u30*u10*u11^6*u01^2*u12^2-3888*u30*u00^4*u21^4*u12*u03^2+1836*u30*u00^4*u21^3*u12^3*u03-216*u30*u00^4*u21^2*u12^5+1296*u30*u00^3*u21^4*u11*u01*u03^2+2592*u30*u00^3*u21^4*u01*u12*u02*u03-576*u30*u00^3*u21^4*u12*u02^3-540*u30*u00^3*u21^3*u11^3*u03^2-540*u30*u00^3*u21^3*u11^2*u12*u02*u03-1836*u30*u00^3*u21^3*u11*u01*u12^2*u03+792*u30*u00^3*u21^3*u11*u12^2*u02^2-612*u30*u00^3*u21^3*u01*u12^3*u02+513*u30*u00^3*u21^2*u11^3*u12^2*u03-234*u30*u00^3*u21^2*u11^2*u12^3*u02+360*u30*u00^3*u21^2*u11*u01*u12^4-36*u30*u00^3*u21*u11^3*u12^4-864*u30*u00^2*u21^4*u11*u01^2*u02*u03+192*u30*u00^2*u21^4*u11*u01*u02^3-576*u30*u00^2*u21^4*u01^3*u12*u03+144*u30*u00^2*u21^4*u01^2*u12*u02^2+540*u30*u00^2*u21^3*u11^3*u01*u02*u03-72*u30*u00^2*u21^3*u11^3*u02^3+792*u30*u00^2*u21^3*u11^2*u01^2*u12*u03-348*u30*u00^2*u21^3*u11^2*u01*u12*u02^2+84*u30*u00^2*u21^3*u11*u01^2*u12^2*u02+136*u30*u00^2*u21^3*u01^3*u12^3-81*u30*u00^2*u21^2*u11^5*u02*u03-342*u30*u00^2*u21^2*u11^4*u01*u12*u03+114*u30*u00^2*u21^2*u11^4*u12*u02^2+63*u30*u00^2*u21^2*u11^3*u01*u12^2*u02-162*u30*u00^2*u21^2*u11^2*u01^2*u12^3+45*u30*u00^2*u21*u11^6*u12*u03-39*u30*u00^2*u21*u11^5*u12^2*u02+48*u30*u00^2*u21*u11^4*u01*u12^3-u30*u00^2*u11^6*u12^3+192*u30*u00*u21^4*u11*u01^4*u03-48*u30*u00*u21^4*u11*u01^3*u02^2-208*u30*u00*u21^3*u11^3*u01^3*u03+40*u30*u00*u21^3*u11^3*u01^2*u02^2+48*u30*u00*u21^3*u11^2*u01^3*u12*u02-48*u30*u00*u21^3*u11*u01^4*u12^2+84*u30*u00*u21^2*u11^5*u01^2*u03-11*u30*u00*u21^2*u11^5*u01*u02^2-40*u30*u00*u21^2*u11^4*u01^2*u12*u02+40*u30*u00*u21^2*u11^3*u01^3*u12^2-15*u30*u00*u21*u11^7*u01*u03+u30*u00*u21*u11^7*u02^2+11*u30*u00*u21*u11^6*u01*u12*u02-11*u30*u00*u21*u11^5*u01^2*u12^2+u30*u00*u11^9*u03-u30*u00*u11^8*u12*u02+u30*u00*u11^7*u01*u12^2+432*u20^6*u00^2*u03^4-288*u20^6*u00*u01*u02*u03^3+64*u20^6*u00*u02^3*u03^2+64*u20^6*u01^3*u03^3-16*u20^6*u01^2*u02^2*u03^2-216*u20^5*u10^2*u00*u03^4+72*u20^5*u10^2*u01*u02*u03^3-16*u20^5*u10^2*u02^3*u03^2+144*u20^5*u10*u00*u11*u02*u03^3+144*u20^5*u10*u00*u01*u12*u03^3-96*u20^5*u10*u00*u12*u02^2*u03^2-96*u20^5*u10*u11*u01^2*u03^3+16*u20^5*u10*u11*u01*u02^2*u03^2+16*u20^5*u10*u01^2*u12*u02*u03^2-864*u20^5*u00^2*u21*u02*u03^3-864*u20^5*u00^2*u11*u12*u03^3+576*u20^5*u00^2*u12^2*u02*u03^2+576*u20^5*u00*u21*u01*u02^2*u03^2-128*u20^5*u00*u21*u02^4*u03+72*u20^5*u00*u11^2*u01*u03^3-48*u20^5*u00*u11^2*u02^2*u03^2+432*u20^5*u00*u11*u01*u12*u02*u03^2-64*u20^5*u00*u11*u12*u02^3*u03-24*u20^5*u00*u01^2*u12^2*u03^2-320*u20^5*u00*u01*u12^2*u02^2*u03+64*u20^5*u00*u12^2*u02^4-128*u20^5*u21*u01^3*u02*u03^2+32*u20^5*u21*u01^2*u02^3*u03+8*u20^5*u11^2*u01^2*u02*u03^2-96*u20^5*u11*u01^3*u12*u03^2+16*u20^5*u11*u01^2*u12*u02^2*u03+72*u20^5*u01^3*u12^2*u02*u03-16*u20^5*u01^2*u12^2*u02^3+27*u20^4*u10^4*u03^4-36*u20^4*u10^3*u11*u02*u03^3-36*u20^4*u10^3*u01*u12*u03^3+24*u20^4*u10^3*u12*u02^2*u03^2+360*u20^4*u10^2*u00*u21*u02*u03^3+360*u20^4*u10^2*u00*u11*u12*u03^3-240*u20^4*u10^2*u00*u12^2*u02*u03^2+48*u20^4*u10^2*u21*u01^2*u03^3-152*u20^4*u10^2*u21*u01*u02^2*u03^2+32*u20^4*u10^2*u21*u02^4*u03+30*u20^4*u10^2*u11^2*u01*u03^3+8*u20^4*u10^2*u11^2*u02^2*u03^2-124*u20^4*u10^2*u11*u01*u12*u02*u03^2+16*u20^4*u10^2*u11*u12*u02^3*u03+2*u20^4*u10^2*u01^2*u12^2*u03^2+80*u20^4*u10^2*u01*u12^2*u02^2*u03-16*u20^4*u10^2*u12^2*u02^4+1296*u20^4*u10*u00^2*u21*u12*u03^3-288*u20^4*u10*u00^2*u12^3*u03^2-144*u20^4*u10*u00*u21*u11*u01*u03^3-192*u20^4*u10*u00*u21*u11*u02^2*u03^2-1008*u20^4*u10*u00*u21*u01*u12*u02*u03^2+320*u20^4*u10*u00*u21*u12*u02^3*u03-36*u20^4*u10*u00*u11^3*u03^3-168*u20^4*u10*u00*u11^2*u12*u02*u03^2-192*u20^4*u10*u00*u11*u01*u12^2*u03^2+256*u20^4*u10*u00*u11*u12^2*u02^2*u03+320*u20^4*u10*u00*u01*u12^3*u02*u03-128*u20^4*u10*u00*u12^3*u02^3+176*u20^4*u10*u21*u11*u01^2*u02*u03^2-32*u20^4*u10*u21*u11*u01*u02^3*u03+160*u20^4*u10*u21*u01^3*u12*u03^2-64*u20^4*u10*u21*u01^2*u12*u02^2*u03-8*u20^4*u10*u11^3*u01*u02*u03^2+140*u20^4*u10*u11^2*u01^2*u12*u03^2-16*u20^4*u10*u11^2*u01*u12*u02^2*u03-124*u20^4*u10*u11*u01^2*u12^2*u02*u03+16*u20^4*u10*u11*u01*u12^2*u02^3-36*u20^4*u10*u01^3*u12^3*u03+24*u20^4*u10*u01^2*u12^3*u02^2+864*u20^4*u00^2*u21^2*u01*u03^3+432*u20^4*u00^2*u21^2*u02^2*u03^2+648*u20^4*u00^2*u21*u11^2*u03^3+144*u20^4*u00^2*u21*u11*u12*u02*u03^2-1008*u20^4*u00^2*u21*u01*u12^2*u03^2-192*u20^4*u00^2*u21*u12^2*u02^2*u03+504*u20^4*u00^2*u11^2*u12^2*u03^2-576*u20^4*u00^2*u11*u12^3*u02*u03+192*u20^4*u00^2*u01*u12^4*u03+128*u20^4*u00^2*u12^4*u02^2-576*u20^4*u00*u21^2*u01^2*u02*u03^2-160*u20^4*u00*u21^2*u01*u02^3*u03+64*u20^4*u00*u21^2*u02^5-504*u20^4*u00*u21*u11^2*u01*u02*u03^2+160*u20^4*u00*u21*u11^2*u02^3*u03+48*u20^4*u00*u21*u11*u01^2*u12*u03^2+64*u20^4*u00*u21*u11*u01*u12*u02^2*u03-64*u20^4*u00*u21*u11*u12*u02^4+680*u20^4*u00*u21*u01^2*u12^2*u02*u03-96*u20^4*u00*u21*u01*u12^2*u02^3+12*u20^4*u00*u11^4*u02*u03^2-108*u20^4*u00*u11^3*u01*u12*u03^2+48*u20^4*u00*u11^3*u12*u02^2*u03-56*u20^4*u00*u11^2*u01*u12^2*u02*u03-48*u20^4*u00*u11^2*u12^2*u02^3+24*u20^4*u00*u11*u01^2*u12^3*u03+160*u20^4*u00*u11*u01*u12^3*u02^2-144*u20^4*u00*u01^2*u12^4*u02+128*u20^4*u21^2*u01^4*u03^2+32*u20^4*u21^2*u01^3*u02^2*u03-16*u20^4*u21^2*u01^2*u02^4+80*u20^4*u21*u11^2*u01^3*u03^2-32*u20^4*u21*u11^2*u01^2*u02^2*u03-16*u20^4*u21*u11*u01^3*u12*u02*u03+16*u20^4*u21*u11*u01^2*u12*u02^3-144*u20^4*u21*u01^4*u12^2*u03+24*u20^4*u21*u01^3*u12^2*u02^2-u20^4*u11^4*u01^2*u03^2-8*u20^4*u11^3*u01^2*u12*u02*u03+30*u20^4*u11^2*u01^3*u12^2*u03+8*u20^4*u11^2*u01^2*u12^2*u02^2-36*u20^4*u11*u01^3*u12^3*u02+27*u20^4*u01^4*u12^4-36*u20^3*u10^4*u21*u02*u03^3-36*u20^3*u10^4*u11*u12*u03^3+24*u20^3*u10^4*u12^2*u02*u03^2-612*u20^3*u10^3*u00*u21*u12*u03^3+136*u20^3*u10^3*u00*u12^3*u03^2-12*u20^3*u10^3*u21*u11*u01*u03^3+52*u20^3*u10^3*u21*u11*u02^2*u03^2+260*u20^3*u10^3*u21*u01*u12*u02*u03^2-80*u20^3*u10^3*u21*u12*u02^3*u03+u20^3*u10^3*u11^3*u03^3+46*u20^3*u10^3*u11^2*u12*u02*u03^2+52*u20^3*u10^3*u11*u01*u12^2*u03^2-64*u20^3*u10^3*u11*u12^2*u02^2*u03-80*u20^3*u10^3*u01*u12^3*u02*u03+32*u20^3*u10^3*u12^3*u02^3-360*u20^3*u10^2*u00*u21^2*u01*u03^3-120*u20^3*u10^2*u00*u21^2*u02^2*u03^2-234*u20^3*u10^2*u00*u21*u11^2*u03^3+444*u20^3*u10^2*u00*u21*u11*u12*u02*u03^2+852*u20^3*u10^2*u00*u21*u01*u12^2*u03^2-272*u20^3*u10^2*u00*u21*u12^2*u02^2*u03-162*u20^3*u10^2*u00*u11^2*u12^2*u03^2+80*u20^3*u10^2*u00*u11*u12^3*u02*u03-176*u20^3*u10^2*u00*u01*u12^4*u03+32*u20^3*u10^2*u00*u12^4*u02^2+56*u20^3*u10^2*u21^2*u01^2*u02*u03^2+56*u20^3*u10^2*u21^2*u01*u02^3*u03-16*u20^3*u10^2*u21^2*u02^5+50*u20^3*u10^2*u21*u11^2*u01*u02*u03^2-32*u20^3*u10^2*u21*u11^2*u02^3*u03-316*u20^3*u10^2*u21*u11*u01^2*u12*u03^2+56*u20^3*u10^2*u21*u11*u01*u12*u02^2*u03+16*u20^3*u10^2*u21*u11*u12*u02^4-76*u20^3*u10^2*u21*u01^2*u12^2*u02*u03+16*u20^3*u10^2*u21*u01*u12^2*u02^3-u20^3*u10^2*u11^4*u02*u03^2-41*u20^3*u10^2*u11^3*u01*u12*u03^2-8*u20^3*u10^2*u11^3*u12*u02^2*u03+84*u20^3*u10^2*u11^2*u01*u12^2*u02*u03+8*u20^3*u10^2*u11^2*u12^2*u02^3+52*u20^3*u10^2*u11*u01^2*u12^3*u03-64*u20^3*u10^2*u11*u01*u12^3*u02^2+24*u20^3*u10^2*u01^2*u12^4*u02-1728*u20^3*u10*u00^2*u21^2*u11*u03^3-576*u20^3*u10*u00^2*u21^2*u12*u02*u03^2-576*u20^3*u10*u00^2*u21*u11*u12^2*u03^2+768*u20^3*u10*u00^2*u21*u12^3*u02*u03+192*u20^3*u10*u00^2*u11*u12^4*u03-128*u20^3*u10*u00^2*u12^5*u02+1584*u20^3*u10*u00*u21^2*u11*u01*u02*u03^2-240*u20^3*u10*u00*u21^2*u11*u02^3*u03+240*u20^3*u10*u00*u21^2*u01^2*u12*u03^2+176*u20^3*u10*u00*u21^2*u01*u12*u02^2*u03-96*u20^3*u10*u00*u21^2*u12*u02^4+204*u20^3*u10*u00*u21*u11^3*u02*u03^2+528*u20^3*u10*u00*u21*u11^2*u01*u12*u03^2-416*u20^3*u10*u00*u21*u11^2*u12*u02^2*u03-632*u20^3*u10*u00*u21*u11*u01*u12^2*u02*u03+272*u20^3*u10*u00*u21*u11*u12^2*u02^3-364*u20^3*u10*u00*u21*u01^2*u12^3*u03-16*u20^3*u10*u00*u21*u01*u12^3*u02^2+48*u20^3*u10*u00*u11^4*u12*u03^2-20*u20^3*u10*u00*u11^3*u12^2*u02*u03+4*u20^3*u10*u00*u11^2*u01*u12^3*u03-8*u20^3*u10*u00*u11^2*u12^3*u02^2-16*u20^3*u10*u00*u11*u01*u12^4*u02+72*u20^3*u10*u00*u01^2*u12^5-416*u20^3*u10*u21^2*u11*u01^3*u03^2+16*u20^3*u10*u21^2*u11*u01^2*u02^2*u03+16*u20^3*u10*u21^2*u11*u01*u02^4-16*u20^3*u10*u21^2*u01^3*u12*u02*u03+16*u20^3*u10*u21^2*u01^2*u12*u02^3-116*u20^3*u10*u21*u11^3*u01^2*u03^2+32*u20^3*u10*u21*u11^3*u01*u02^2*u03+80*u20^3*u10*u21*u11^2*u01^2*u12*u02*u03-16*u20^3*u10*u21*u11^2*u01*u12*u02^3+236*u20^3*u10*u21*u11*u01^3*u12^2*u03-76*u20^3*u10*u21*u11*u01^2*u12^2*u02^2+12*u20^3*u10*u21*u01^3*u12^3*u02+u20^3*u10*u11^5*u01*u03^2+8*u20^3*u10*u11^4*u01*u12*u02*u03-41*u20^3*u10*u11^3*u01^2*u12^2*u03-8*u20^3*u10*u11^3*u01*u12^2*u02^2+46*u20^3*u10*u11^2*u01^2*u12^3*u02-36*u20^3*u10*u11*u01^3*u12^4-864*u20^3*u00^3*u21^3*u03^3+1512*u20^3*u00^3*u21^2*u12^2*u03^2-576*u20^3*u00^3*u21*u12^4*u03+64*u20^3*u00^3*u12^6-288*u20^3*u00^2*u21^3*u01*u02*u03^2-128*u20^3*u00^2*u21^3*u02^3*u03-288*u20^3*u00^2*u21^2*u11^2*u02*u03^2+720*u20^3*u00^2*u21^2*u11*u01*u12*u03^2-48*u20^3*u00^2*u21^2*u11*u12*u02^2*u03-648*u20^3*u00^2*u21^2*u01*u12^2*u02*u03+240*u20^3*u00^2*u21^2*u12^2*u02^3-684*u20^3*u00^2*u21*u11^3*u12*u03^2+888*u20^3*u00^2*u21*u11^2*u12^2*u02*u03+240*u20^3*u00^2*u21*u11*u01*u12^3*u03-416*u20^3*u00^2*u21*u11*u12^3*u02^2+160*u20^3*u00^2*u21*u01*u12^4*u02-72*u20^3*u00^2*u11^3*u12^3*u03+80*u20^3*u00^2*u11^2*u12^4*u02-96*u20^3*u00^2*u11*u01*u12^5-128*u20^3*u00*u21^3*u01^3*u03^2+608*u20^3*u00*u21^3*u01^2*u02^2*u03-128*u20^3*u00*u21^3*u01*u02^4+120*u20^3*u00*u21^2*u11^2*u01^2*u03^2+88*u20^3*u00*u21^2*u11^2*u01*u02^2*u03-48*u20^3*u00*u21^2*u11^2*u02^4-784*u20^3*u00*u21^2*u11*u01^2*u12*u02*u03+272*u20^3*u00*u21^2*u11*u01*u12*u02^3+184*u20^3*u00*u21^2*u01^3*u12^2*u03-160*u20^3*u00*u21^2*u01^2*u12^2*u02^2+90*u20^3*u00*u21*u11^4*u01*u03^2-72*u20^3*u00*u21*u11^4*u02^2*u03+184*u20^3*u00*u21*u11^3*u01*u12*u02*u03+48*u20^3*u00*u21*u11^3*u12*u02^3-230*u20^3*u00*u21*u11^2*u01^2*u12^2*u03-184*u20^3*u00*u21*u11^2*u01*u12^2*u02^2+236*u20^3*u00*u21*u11*u01^2*u12^3*u02-36*u20^3*u00*u21*u01^3*u12^4-u20^3*u00*u11^6*u03^2-12*u20^3*u00*u11^5*u12*u02*u03+34*u20^3*u00*u11^4*u01*u12^2*u03+12*u20^3*u00*u11^4*u12^2*u02^2-44*u20^3*u00*u11^3*u01*u12^3*u02+30*u20^3*u00*u11^2*u01^2*u12^4-128*u20^3*u21^3*u01^4*u02*u03+32*u20^3*u21^3*u01^3*u02^3-8*u20^3*u21^2*u11^2*u01^3*u02*u03+8*u20^3*u21^2*u11^2*u01^2*u02^3+160*u20^3*u21^2*u11*u01^4*u12*u03-64*u20^3*u21^2*u11*u01^3*u12*u02^2+24*u20^3*u21^2*u01^4*u12^2*u02+10*u20^3*u21*u11^4*u01^2*u02*u03-44*u20^3*u21*u11^3*u01^3*u12*u03-8*u20^3*u21*u11^3*u01^2*u12*u02^2+46*u20^3*u21*u11^2*u01^3*u12^2*u02-36*u20^3*u21*u11*u01^4*u12^3+u20^3*u11^5*u01^2*u12*u03-u20^3*u11^4*u01^2*u12^2*u02+u20^3*u11^3*u01^3*u12^3+72*u20^2*u10^5*u21*u12*u03^3-16*u20^2*u10^5*u12^3*u03^2+48*u20^2*u10^4*u21^2*u01*u03^3+2*u20^2*u10^4*u21^2*u02^2*u03^2+30*u20^2*u10^4*u21*u11^2*u03^3-124*u20^2*u10^4*u21*u11*u12*u02*u03^2-152*u20^2*u10^4*u21*u01*u12^2*u03^2+80*u20^2*u10^4*u21*u12^2*u02^2*u03+8*u20^2*u10^4*u11^2*u12^2*u03^2+16*u20^2*u10^4*u11*u12^3*u02*u03+32*u20^2*u10^4*u01*u12^4*u03-16*u20^2*u10^4*u12^4*u02^2+792*u20^2*u10^3*u00*u21^2*u11*u03^3+84*u20^2*u10^3*u00*u21^2*u12*u02*u03^2+84*u20^2*u10^3*u00*u21*u11*u12^2*u03^2-192*u20^2*u10^3*u00*u21*u12^3*u02*u03-48*u20^2*u10^3*u00*u11*u12^4*u03+32*u20^2*u10^3*u00*u12^5*u02-316*u20^2*u10^3*u21^2*u11*u01*u02*u03^2+52*u20^2*u10^3*u21^2*u11*u02^3*u03+56*u20^2*u10^3*u21^2*u01^2*u12*u03^2-76*u20^2*u10^3*u21^2*u01*u12*u02^2*u03+24*u20^2*u10^3*u21^2*u12*u02^4-41*u20^2*u10^3*u21*u11^3*u02*u03^2+50*u20^2*u10^3*u21*u11^2*u01*u12*u03^2+84*u20^2*u10^3*u21*u11^2*u12*u02^2*u03+56*u20^2*u10^3*u21*u11*u01*u12^2*u02*u03-64*u20^2*u10^3*u21*u11*u12^2*u02^3+56*u20^2*u10^3*u21*u01^2*u12^3*u03+16*u20^2*u10^3*u21*u01*u12^3*u02^2-u20^2*u10^3*u11^4*u12*u03^2-8*u20^2*u10^3*u11^3*u12^2*u02*u03-32*u20^2*u10^3*u11^2*u01*u12^3*u03+8*u20^2*u10^3*u11^2*u12^3*u02^2+16*u20^2*u10^3*u11*u01*u12^4*u02-16*u20^2*u10^3*u01^2*u12^5+1512*u20^2*u10^2*u00^2*u21^3*u03^3-702*u20^2*u10^2*u00^2*u21^2*u12^2*u03^2+144*u20^2*u10^2*u00^2*u21*u12^4*u03-16*u20^2*u10^2*u00^2*u12^6-648*u20^2*u10^2*u00*u21^3*u01*u02*u03^2+184*u20^2*u10^2*u00*u21^3*u02^3*u03-558*u20^2*u10^2*u00*u21^2*u11^2*u02*u03^2-1404*u20^2*u10^2*u00*u21^2*u11*u01*u12*u03^2+576*u20^2*u10^2*u00*u21^2*u11*u12*u02^2*u03+552*u20^2*u10^2*u00*u21^2*u01*u12^2*u02*u03-160*u20^2*u10^2*u00*u21^2*u12^2*u02^3+63*u20^2*u10^2*u00*u21*u11^3*u12*u03^2-48*u20^2*u10^2*u00*u21*u11^2*u12^2*u02*u03+216*u20^2*u10^2*u00*u21*u11*u01*u12^3*u03+16*u20^2*u10^2*u00*u21*u11*u12^3*u02^2-64*u20^2*u10^2*u00*u21*u01*u12^4*u02+40*u20^2*u10^2*u00*u11^3*u12^3*u03-32*u20^2*u10^2*u00*u11^2*u12^4*u02+16*u20^2*u10^2*u00*u11*u01*u12^5+240*u20^2*u10^2*u21^3*u01^3*u03^2-160*u20^2*u10^2*u21^3*u01^2*u02^2*u03+24*u20^2*u10^2*u21^3*u01*u02^4+456*u20^2*u10^2*u21^2*u11^2*u01^2*u03^2-78*u20^2*u10^2*u21^2*u11^2*u01*u02^2*u03+8*u20^2*u10^2*u21^2*u11^2*u02^4+120*u20^2*u10^2*u21^2*u11*u01^2*u12*u02*u03-76*u20^2*u10^2*u21^2*u11*u01*u12*u02^3-160*u20^2*u10^2*u21^2*u01^3*u12^2*u03+66*u20^2*u10^2*u21^2*u01^2*u12^2*u02^2+33*u20^2*u10^2*u21*u11^4*u01*u03^2+10*u20^2*u10^2*u21*u11^4*u02^2*u03-118*u20^2*u10^2*u21*u11^3*u01*u12*u02*u03-8*u20^2*u10^2*u21*u11^3*u12*u02^3-78*u20^2*u10^2*u21*u11^2*u01^2*u12^2*u03+108*u20^2*u10^2*u21*u11^2*u01*u12^2*u02^2-76*u20^2*u10^2*u21*u11*u01^2*u12^3*u02+24*u20^2*u10^2*u21*u01^3*u12^4+u20^2*u10^2*u11^5*u12*u02*u03+10*u20^2*u10^2*u11^4*u01*u12^2*u03-u20^2*u10^2*u11^4*u12^2*u02^2-8*u20^2*u10^2*u11^3*u01*u12^3*u02+8*u20^2*u10^2*u11^2*u01^2*u12^4+720*u20^2*u10*u00^2*u21^3*u11*u02*u03^2-576*u20^2*u10*u00^2*u21^3*u01*u12*u03^2+240*u20^2*u10*u00^2*u21^3*u12*u02^2*u03+1836*u20^2*u10*u00^2*u21^2*u11^2*u12*u03^2-1404*u20^2*u10*u00^2*u21^2*u11*u12^2*u02*u03+84*u20^2*u10*u00^2*u21^2*u01*u12^3*u03+56*u20^2*u10*u00^2*u21^2*u12^3*u02^2-348*u20^2*u10*u00^2*u21*u11^2*u12^3*u03+176*u20^2*u10*u00^2*u21*u11*u12^4*u02+16*u20^2*u10*u00^2*u21*u01*u12^5+8*u20^2*u10*u00^2*u11^2*u12^5-48*u20^2*u10*u00*u21^3*u11*u01^2*u03^2-784*u20^2*u10*u00*u21^3*u11*u01*u02^2*u03+160*u20^2*u10*u00*u21^3*u11*u02^4+176*u20^2*u10*u00*u21^3*u01^2*u12*u02*u03-16*u20^2*u10*u00*u21^3*u01*u12*u02^3-480*u20^2*u10*u00*u21^2*u11^3*u01*u03^2+244*u20^2*u10*u00*u21^2*u11^3*u02^2*u03+144*u20^2*u10*u00*u21^2*u11^2*u01*u12*u02*u03-184*u20^2*u10*u00*u21^2*u11^2*u12*u02^3+576*u20^2*u10*u00*u21^2*u11*u01^2*u12^2*u03+120*u20^2*u10*u00*u21^2*u11*u01*u12^2*u02^2-76*u20^2*u10*u00*u21^2*u01^2*u12^3*u02-39*u20^2*u10*u00*u21*u11^5*u03^2+40*u20^2*u10*u00*u21*u11^4*u12*u02*u03+2*u20^2*u10*u00*u21*u11^3*u01*u12^2*u03-28*u20^2*u10*u00*u21*u11^3*u12^2*u02^2+80*u20^2*u10*u00*u21*u11^2*u01*u12^3*u02-124*u20^2*u10*u00*u21*u11*u01^2*u12^4-11*u20^2*u10*u00*u11^5*u12^2*u03+10*u20^2*u10*u00*u11^4*u12^3*u02-8*u20^2*u10*u00*u11^3*u01*u12^4+272*u20^2*u10*u21^3*u11*u01^3*u02*u03-64*u20^2*u10*u21^3*u11*u01^2*u02^3-96*u20^2*u10*u21^3*u01^4*u12*u03+16*u20^2*u10*u21^3*u01^3*u12*u02^2-28*u20^2*u10*u21^2*u11^3*u01^2*u02*u03-8*u20^2*u10*u21^2*u11^3*u01*u02^3-184*u20^2*u10*u21^2*u11^2*u01^3*u12*u03+108*u20^2*u10*u21^2*u11^2*u01^2*u12*u02^2-76*u20^2*u10*u21^2*u11*u01^3*u12^2*u02+24*u20^2*u10*u21^2*u01^4*u12^3-10*u20^2*u10*u21*u11^5*u01*u02*u03+56*u20^2*u10*u21*u11^4*u01^2*u12*u03+8*u20^2*u10*u21*u11^4*u01*u12*u02^2-57*u20^2*u10*u21*u11^3*u01^2*u12^2*u02+46*u20^2*u10*u21*u11^2*u01^3*u12^3-u20^2*u10*u11^6*u01*u12*u03+u20^2*u10*u11^5*u01*u12^2*u02-u20^2*u10*u11^4*u01^2*u12^3+864*u20^2*u00^3*u21^4*u02*u03^2-1728*u20^2*u00^3*u21^3*u11*u12*u03^2-360*u20^2*u00^3*u21^3*u12^2*u02*u03+792*u20^2*u00^3*u21^2*u11*u12^3*u03+48*u20^2*u00^3*u21^2*u12^4*u02-96*u20^2*u00^3*u21*u11*u12^5+432*u20^2*u00^2*u21^4*u01^2*u03^2-576*u20^2*u00^2*u21^4*u01*u02^2*u03+128*u20^2*u00^2*u21^4*u02^4-288*u20^2*u00^2*u21^3*u11^2*u01*u03^2+120*u20^2*u00^2*u21^3*u11^2*u02^2*u03+1584*u20^2*u00^2*u21^3*u11*u01*u12*u02*u03-416*u20^2*u00^2*u21^3*u11*u12*u02^3-120*u20^2*u00^2*u21^3*u01^2*u12^2*u03+56*u20^2*u00^2*u21^3*u01*u12^2*u02^2+207*u20^2*u00^2*u21^2*u11^4*u03^2-480*u20^2*u00^2*u21^2*u11^3*u12*u02*u03-558*u20^2*u00^2*u21^2*u11^2*u01*u12^2*u03+456*u20^2*u00^2*u21^2*u11^2*u12^2*u02^2-316*u20^2*u00^2*u21^2*u11*u01*u12^3*u02+2*u20^2*u00^2*u21^2*u01^2*u12^4+114*u20^2*u00^2*u21*u11^4*u12^2*u03-116*u20^2*u00^2*u21*u11^3*u12^3*u02+140*u20^2*u00^2*u21*u11^2*u01*u12^4-u20^2*u00^2*u11^4*u12^4-160*u20^2*u00*u21^4*u01^3*u02*u03+32*u20^2*u00*u21^4*u01^2*u02^3+88*u20^2*u00*u21^3*u11^2*u01^2*u02*u03-8*u20^2*u00*u21^3*u11^2*u01*u02^3-240*u20^2*u00*u21^3*u11*u01^3*u12*u03+16*u20^2*u00*u21^3*u11*u01^2*u12*u02^2+56*u20^2*u00*u21^3*u01^3*u12^2*u02-68*u20^2*u00*u21^2*u11^4*u01*u02*u03+12*u20^2*u00*u21^2*u11^4*u02^3+244*u20^2*u00*u21^2*u11^3*u01^2*u12*u03-28*u20^2*u00*u21^2*u11^3*u01*u12*u02^2-78*u20^2*u00*u21^2*u11^2*u01^2*u12^2*u02+52*u20^2*u00*u21^2*u11*u01^3*u12^3+14*u20^2*u00*u21*u11^6*u02*u03-50*u20^2*u00*u21*u11^5*u01*u12*u03-12*u20^2*u00*u21*u11^5*u12*u02^2+56*u20^2*u00*u21*u11^4*u01*u12^2*u02-41*u20^2*u00*u21*u11^3*u01^2*u12^3+u20^2*u00*u11^7*u12*u03-u20^2*u00*u11^6*u12^2*u02+u20^2*u00*u11^5*u01*u12^3+64*u20^2*u21^4*u01^5*u03-16*u20^2*u21^4*u01^4*u02^2-48*u20^2*u21^3*u11^2*u01^4*u03+8*u20^2*u21^3*u11^2*u01^3*u02^2+16*u20^2*u21^3*u11*u01^4*u12*u02-16*u20^2*u21^3*u01^5*u12^2+12*u20^2*u21^2*u11^4*u01^3*u03-u20^2*u21^2*u11^4*u01^2*u02^2-8*u20^2*u21^2*u11^3*u01^3*u12*u02+8*u20^2*u21^2*u11^2*u01^4*u12^2-u20^2*u21*u11^6*u01^2*u03+u20^2*u21*u11^5*u01^2*u12*u02-u20^2*u21*u11^4*u01^3*u12^2-96*u20*u10^5*u21^2*u11*u03^3+16*u20*u10^5*u21^2*u12*u02*u03^2+16*u20*u10^5*u21*u11*u12^2*u03^2-576*u20*u10^4*u00*u21^3*u03^3+144*u20*u10^4*u00*u21^2*u12^2*u03^2+160*u20*u10^4*u21^3*u01*u02*u03^2-36*u20*u10^4*u21^3*u02^3*u03+140*u20*u10^4*u21^2*u11^2*u02*u03^2+176*u20*u10^4*u21^2*u11*u01*u12*u03^2-124*u20*u10^4*u21^2*u11*u12*u02^2*u03-64*u20*u10^4*u21^2*u01*u12^2*u02*u03+24*u20*u10^4*u21^2*u12^2*u02^3-8*u20*u10^4*u21*u11^3*u12*u03^2-16*u20*u10^4*u21*u11^2*u12^2*u02*u03-32*u20*u10^4*u21*u11*u01*u12^3*u03+16*u20*u10^4*u21*u11*u12^3*u02^2+240*u20*u10^3*u00*u21^3*u11*u02*u03^2+768*u20*u10^3*u00*u21^3*u01*u12*u03^2-364*u20*u10^3*u00*u21^3*u12*u02^2*u03-348*u20*u10^3*u00*u21^2*u11^2*u12*u03^2+216*u20*u10^3*u00*u21^2*u11*u12^2*u02*u03-192*u20*u10^3*u00*u21^2*u01*u12^3*u03+56*u20*u10^3*u00*u21^2*u12^3*u02^2+48*u20*u10^3*u00*u21*u11^2*u12^3*u03-32*u20*u10^3*u00*u21*u11*u12^4*u02-416*u20*u10^3*u21^3*u11*u01^2*u03^2+236*u20*u10^3*u21^3*u11*u01*u02^2*u03-36*u20*u10^3*u21^3*u11*u02^4-16*u20*u10^3*u21^3*u01^2*u12*u02*u03+12*u20*u10^3*u21^3*u01*u12*u02^3-116*u20*u10^3*u21^2*u11^3*u01*u03^2-41*u20*u10^3*u21^2*u11^3*u02^2*u03+80*u20*u10^3*u21^2*u11^2*u01*u12*u02*u03+46*u20*u10^3*u21^2*u11^2*u12*u02^3+16*u20*u10^3*u21^2*u11*u01^2*u12^2*u03-76*u20*u10^3*u21^2*u11*u01*u12^2*u02^2+16*u20*u10^3*u21^2*u01^2*u12^3*u02+u20*u10^3*u21*u11^5*u03^2+8*u20*u10^3*u21*u11^4*u12*u02*u03+32*u20*u10^3*u21*u11^3*u01*u12^2*u03-8*u20*u10^3*u21*u11^3*u12^2*u02^2-16*u20*u10^3*u21*u11^2*u01*u12^3*u02+16*u20*u10^3*u21*u11*u01^2*u12^4-1008*u20*u10^2*u00^2*u21^4*u02*u03^2-576*u20*u10^2*u00^2*u21^3*u11*u12*u03^2+852*u20*u10^2*u00^2*u21^3*u12^2*u02*u03+84*u20*u10^2*u00^2*u21^2*u11*u12^3*u03-152*u20*u10^2*u00^2*u21^2*u12^4*u02+16*u20*u10^2*u00^2*u21*u11*u12^5-192*u20*u10^2*u00*u21^4*u01^2*u03^2+680*u20*u10^2*u00*u21^4*u01*u02^2*u03-144*u20*u10^2*u00*u21^4*u02^4+888*u20*u10^2*u00*u21^3*u11^2*u01*u03^2-230*u20*u10^2*u00*u21^3*u11^2*u02^2*u03-632*u20*u10^2*u00*u21^3*u11*u01*u12*u02*u03+236*u20*u10^2*u00*u21^3*u11*u12*u02^3-272*u20*u10^2*u00*u21^3*u01^2*u12^2*u03-76*u20*u10^2*u00*u21^3*u01*u12^2*u02^2+114*u20*u10^2*u00*u21^2*u11^4*u03^2+2*u20*u10^2*u00*u21^2*u11^3*u12*u02*u03-48*u20*u10^2*u00*u21^2*u11^2*u01*u12^2*u03-78*u20*u10^2*u00*u21^2*u11^2*u12^2*u02^2+56*u20*u10^2*u00*u21^2*u11*u01*u12^3*u02+80*u20*u10^2*u00*u21^2*u01^2*u12^4-40*u20*u10^2*u00*u21*u11^4*u12^2*u03+32*u20*u10^2*u00*u21*u11^3*u12^3*u02-16*u20*u10^2*u00*u21*u11^2*u01*u12^4-96*u20*u10^2*u21^4*u01^3*u02*u03+24*u20*u10^2*u21^4*u01^2*u02^3-184*u20*u10^2*u21^3*u11^2*u01^2*u02*u03+46*u20*u10^2*u21^3*u11^2*u01*u02^3+272*u20*u10^2*u21^3*u11*u01^3*u12*u03-76*u20*u10^2*u21^3*u11*u01^2*u12*u02^2+16*u20*u10^2*u21^3*u01^3*u12^2*u02+56*u20*u10^2*u21^2*u11^4*u01*u02*u03-u20*u10^2*u21^2*u11^4*u02^3-28*u20*u10^2*u21^2*u11^3*u01^2*u12*u03-57*u20*u10^2*u21^2*u11^3*u01*u12*u02^2+108*u20*u10^2*u21^2*u11^2*u01^2*u12^2*u02-64*u20*u10^2*u21^2*u11*u01^3*u12^3-u20*u10^2*u21*u11^6*u02*u03-10*u20*u10^2*u21*u11^5*u01*u12*u03+u20*u10^2*u21*u11^5*u12*u02^2+8*u20*u10^2*u21*u11^4*u01*u12^2*u02-8*u20*u10^2*u21*u11^3*u01^2*u12^3+1296*u20*u10*u00^3*u21^4*u12*u03^2-612*u20*u10*u00^3*u21^3*u12^3*u03+72*u20*u10*u00^3*u21^2*u12^5+144*u20*u10*u00^2*u21^4*u11*u01*u03^2+48*u20*u10*u00^2*u21^4*u11*u02^2*u03-1008*u20*u10*u00^2*u21^4*u01*u12*u02*u03+160*u20*u10*u00^2*u21^4*u12*u02^3-684*u20*u10*u00^2*u21^3*u11^3*u03^2+528*u20*u10*u00^2*u21^3*u11^2*u12*u02*u03+444*u20*u10*u00^2*u21^3*u11*u01*u12^2*u03-316*u20*u10*u00^2*u21^3*u11*u12^2*u02^2+260*u20*u10*u00^2*u21^3*u01*u12^3*u02+63*u20*u10*u00^2*u21^2*u11^3*u12^2*u03+50*u20*u10*u00^2*u21^2*u11^2*u12^3*u02-124*u20*u10*u00^2*u21^2*u11*u01*u12^4-8*u20*u10*u00^2*u21*u11^3*u12^4+64*u20*u10*u00*u21^4*u11*u01^2*u02*u03-16*u20*u10*u00*u21^4*u11*u01*u02^3+320*u20*u10*u00*u21^4*u01^3*u12*u03-64*u20*u10*u00*u21^4*u01^2*u12*u02^2+184*u20*u10*u00*u21^3*u11^3*u01*u02*u03-44*u20*u10*u00*u21^3*u11^3*u02^3-416*u20*u10*u00*u21^3*u11^2*u01^2*u12*u03+80*u20*u10*u00*u21^3*u11^2*u01*u12*u02^2+56*u20*u10*u00*u21^3*u11*u01^2*u12^2*u02-80*u20*u10*u00*u21^3*u01^3*u12^3-50*u20*u10*u00*u21^2*u11^5*u02*u03+40*u20*u10*u00*u21^2*u11^4*u01*u12*u03+56*u20*u10*u00*u21^2*u11^4*u12*u02^2-118*u20*u10*u00*u21^2*u11^3*u01*u12^2*u02+84*u20*u10*u00*u21^2*u11^2*u01^2*u12^3+11*u20*u10*u00*u21*u11^6*u12*u03-10*u20*u10*u00*u21*u11^5*u12^2*u02+8*u20*u10*u00*u21*u11^4*u01*u12^3-64*u20*u10*u21^4*u11*u01^4*u03+16*u20*u10*u21^4*u11*u01^3*u02^2+48*u20*u10*u21^3*u11^3*u01^3*u03-8*u20*u10*u21^3*u11^3*u01^2*u02^2-16*u20*u10*u21^3*u11^2*u01^3*u12*u02+16*u20*u10*u21^3*u11*u01^4*u12^2-12*u20*u10*u21^2*u11^5*u01^2*u03+u20*u10*u21^2*u11^5*u01*u02^2+8*u20*u10*u21^2*u11^4*u01^2*u12*u02-8*u20*u10*u21^2*u11^3*u01^3*u12^2+u20*u10*u21*u11^7*u01*u03-u20*u10*u21*u11^6*u01*u12*u02+u20*u10*u21*u11^5*u01^2*u12^2-864*u20*u00^3*u21^5*u01*u03^2+648*u20*u00^3*u21^4*u11^2*u03^2-144*u20*u00^3*u21^4*u11*u12*u02*u03+360*u20*u00^3*u21^4*u01*u12^2*u03+48*u20*u00^3*u21^4*u12^2*u02^2-234*u20*u00^3*u21^3*u11^2*u12^2*u03-12*u20*u00^3*u21^3*u11*u12^3*u02-36*u20*u00^3*u21^3*u01*u12^4+30*u20*u00^3*u21^2*u11^2*u12^4+576*u20*u00^2*u21^5*u01^2*u02*u03-128*u20*u00^2*u21^5*u01*u02^3-504*u20*u00^2*u21^4*u11^2*u01*u02*u03+80*u20*u00^2*u21^4*u11^2*u02^3-192*u20*u00^2*u21^4*u11*u01^2*u12*u03+176*u20*u00^2*u21^4*u11*u01*u12*u02^2-152*u20*u00^2*u21^4*u01^2*u12^2*u02+90*u20*u00^2*u21^3*u11^4*u02*u03+204*u20*u00^2*u21^3*u11^3*u01*u12*u03-116*u20*u00^2*u21^3*u11^3*u12*u02^2+50*u20*u00^2*u21^3*u11^2*u01*u12^2*u02+52*u20*u00^2*u21^3*u11*u01^2*u12^3-39*u20*u00^2*u21^2*u11^5*u12*u03+33*u20*u00^2*u21^2*u11^4*u12^2*u02-41*u20*u00^2*u21^2*u11^3*u01*u12^3+u20*u00^2*u21*u11^5*u12^3-128*u20*u00*u21^5*u01^4*u03+32*u20*u00*u21^5*u01^3*u02^2+160*u20*u00*u21^4*u11^2*u01^3*u03-32*u20*u00*u21^4*u11^2*u01^2*u02^2-32*u20*u00*u21^4*u11*u01^3*u12*u02+32*u20*u00*u21^4*u01^4*u12^2-72*u20*u00*u21^3*u11^4*u01^2*u03+10*u20*u00*u21^3*u11^4*u01*u02^2+32*u20*u00*u21^3*u11^3*u01^2*u12*u02-32*u20*u00*u21^3*u11^2*u01^3*u12^2+14*u20*u00*u21^2*u11^6*u01*u03-u20*u00*u21^2*u11^6*u02^2-10*u20*u00*u21^2*u11^5*u01*u12*u02+10*u20*u00*u21^2*u11^4*u01^2*u12^2-u20*u00*u21*u11^8*u03+u20*u00*u21*u11^7*u12*u02-u20*u00*u21*u11^6*u01*u12^2+64*u10^6*u21^3*u03^3-16*u10^6*u21^2*u12^2*u03^2-96*u10^5*u21^3*u11*u02*u03^2-128*u10^5*u21^3*u01*u12*u03^2+72*u10^5*u21^3*u12*u02^2*u03+8*u10^5*u21^2*u11^2*u12*u03^2+16*u10^5*u21^2*u11*u12^2*u02*u03+32*u10^5*u21^2*u01*u12^3*u03-16*u10^5*u21^2*u12^3*u02^2+192*u10^4*u00*u21^4*u02*u03^2+192*u10^4*u00*u21^3*u11*u12*u03^2-176*u10^4*u00*u21^3*u12^2*u02*u03-48*u10^4*u00*u21^2*u11*u12^3*u03+32*u10^4*u00*u21^2*u12^4*u02+128*u10^4*u21^4*u01^2*u03^2-144*u10^4*u21^4*u01*u02^2*u03+27*u10^4*u21^4*u02^4+80*u10^4*u21^3*u11^2*u01*u03^2+30*u10^4*u21^3*u11^2*u02^2*u03-16*u10^4*u21^3*u11*u01*u12*u02*u03-36*u10^4*u21^3*u11*u12*u02^3+32*u10^4*u21^3*u01^2*u12^2*u03+24*u10^4*u21^3*u01*u12^2*u02^2-u10^4*u21^2*u11^4*u03^2-8*u10^4*u21^2*u11^3*u12*u02*u03-32*u10^4*u21^2*u11^2*u01*u12^2*u03+8*u10^4*u21^2*u11^2*u12^2*u02^2+16*u10^4*u21^2*u11*u01*u12^3*u02-16*u10^4*u21^2*u01^2*u12^4-288*u10^3*u00^2*u21^4*u12*u03^2+136*u10^3*u00^2*u21^3*u12^3*u03-16*u10^3*u00^2*u21^2*u12^5-576*u10^3*u00*u21^4*u11*u01*u03^2+24*u10^3*u00*u21^4*u11*u02^2*u03+320*u10^3*u00*u21^4*u01*u12*u02*u03-36*u10^3*u00*u21^4*u12*u02^3-72*u10^3*u00*u21^3*u11^3*u03^2+4*u10^3*u00*u21^3*u11^2*u12*u02*u03+80*u10^3*u00*u21^3*u11*u01*u12^2*u03+52*u10^3*u00*u21^3*u11*u12^2*u02^2-80*u10^3*u00*u21^3*u01*u12^3*u02+40*u10^3*u00*u21^2*u11^3*u12^2*u03-32*u10^3*u00*u21^2*u11^2*u12^3*u02+16*u10^3*u00*u21^2*u11*u01*u12^4+160*u10^3*u21^4*u11*u01^2*u02*u03-36*u10^3*u21^4*u11*u01*u02^3-128*u10^3*u21^4*u01^3*u12*u03+24*u10^3*u21^4*u01^2*u12*u02^2-44*u10^3*u21^3*u11^3*u01*u02*u03+u10^3*u21^3*u11^3*u02^3-8*u10^3*u21^3*u11^2*u01^2*u12*u03+46*u10^3*u21^3*u11^2*u01*u12*u02^2-64*u10^3*u21^3*u11*u01^2*u12^2*u02+32*u10^3*u21^3*u01^3*u12^3+u10^3*u21^2*u11^5*u02*u03+10*u10^3*u21^2*u11^4*u01*u12*u03-u10^3*u21^2*u11^4*u12*u02^2-8*u10^3*u21^2*u11^3*u01*u12^2*u02+8*u10^3*u21^2*u11^2*u01^2*u12^3+576*u10^2*u00^2*u21^5*u01*u03^2-24*u10^2*u00^2*u21^5*u02^2*u03+504*u10^2*u00^2*u21^4*u11^2*u03^2-192*u10^2*u00^2*u21^4*u11*u12*u02*u03-240*u10^2*u00^2*u21^4*u01*u12^2*u03+2*u10^2*u00^2*u21^4*u12^2*u02^2-162*u10^2*u00^2*u21^3*u11^2*u12^2*u03+52*u10^2*u00^2*u21^3*u11*u12^3*u02+24*u10^2*u00^2*u21^3*u01*u12^4+8*u10^2*u00^2*u21^2*u11^2*u12^4-320*u10^2*u00*u21^5*u01^2*u02*u03+72*u10^2*u00*u21^5*u01*u02^3-56*u10^2*u00*u21^4*u11^2*u01*u02*u03+30*u10^2*u00*u21^4*u11^2*u02^3+256*u10^2*u00*u21^4*u11*u01^2*u12*u03-124*u10^2*u00*u21^4*u11*u01*u12*u02^2+80*u10^2*u00*u21^4*u01^2*u12^2*u02+34*u10^2*u00*u21^3*u11^4*u02*u03-20*u10^2*u00*u21^3*u11^3*u01*u12*u03-41*u10^2*u00*u21^3*u11^3*u12*u02^2+84*u10^2*u00*u21^3*u11^2*u01*u12^2*u02-64*u10^2*u00*u21^3*u11*u01^2*u12^3-11*u10^2*u00*u21^2*u11^5*u12*u03+10*u10^2*u00*u21^2*u11^4*u12^2*u02-8*u10^2*u00*u21^2*u11^3*u01*u12^3+64*u10^2*u21^5*u01^4*u03-16*u10^2*u21^5*u01^3*u02^2-48*u10^2*u21^4*u11^2*u01^3*u03+8*u10^2*u21^4*u11^2*u01^2*u02^2+16*u10^2*u21^4*u11*u01^3*u12*u02-16*u10^2*u21^4*u01^4*u12^2+12*u10^2*u21^3*u11^4*u01^2*u03-u10^2*u21^3*u11^4*u01*u02^2-8*u10^2*u21^3*u11^3*u01^2*u12*u02+8*u10^2*u21^3*u11^2*u01^3*u12^2-u10^2*u21^2*u11^6*u01*u03+u10^2*u21^2*u11^5*u01*u12*u02-u10^2*u21^2*u11^4*u01^2*u12^2-864*u10*u00^3*u21^5*u11*u03^2+144*u10*u00^3*u21^5*u12*u02*u03+360*u10*u00^3*u21^4*u11*u12^2*u03-36*u10*u00^3*u21^4*u12^3*u02-36*u10*u00^3*u21^3*u11*u12^4+432*u10*u00^2*u21^5*u11*u01*u02*u03-96*u10*u00^2*u21^5*u11*u02^3-96*u10*u00^2*u21^5*u01^2*u12*u03+16*u10*u00^2*u21^5*u01*u12*u02^2-108*u10*u00^2*u21^4*u11^3*u02*u03-168*u10*u00^2*u21^4*u11^2*u01*u12*u03+140*u10*u00^2*u21^4*u11^2*u12*u02^2-124*u10*u00^2*u21^4*u11*u01*u12^2*u02+24*u10*u00^2*u21^4*u01^2*u12^3+48*u10*u00^2*u21^3*u11^4*u12*u03-41*u10*u00^2*u21^3*u11^3*u12^2*u02+46*u10*u00^2*u21^3*u11^2*u01*u12^3-u10*u00^2*u21^2*u11^4*u12^3-64*u10*u00*u21^5*u11*u01^3*u03+16*u10*u00*u21^5*u11*u01^2*u02^2+48*u10*u00*u21^4*u11^3*u01^2*u03-8*u10*u00*u21^4*u11^3*u01*u02^2-16*u10*u00*u21^4*u11^2*u01^2*u12*u02+16*u10*u00*u21^4*u11*u01^3*u12^2-12*u10*u00*u21^3*u11^5*u01*u03+u10*u00*u21^3*u11^5*u02^2+8*u10*u00*u21^3*u11^4*u01*u12*u02-8*u10*u00*u21^3*u11^3*u01^2*u12^2+u10*u00*u21^2*u11^7*u03-u10*u00*u21^2*u11^6*u12*u02+u10*u00*u21^2*u11^5*u01*u12^2+432*u00^4*u21^6*u03^2-216*u00^4*u21^5*u12^2*u03+27*u00^4*u21^4*u12^4-288*u00^3*u21^6*u01*u02*u03+64*u00^3*u21^6*u02^3+72*u00^3*u21^5*u11^2*u02*u03+144*u00^3*u21^5*u11*u01*u12*u03-96*u00^3*u21^5*u11*u12*u02^2+72*u00^3*u21^5*u01*u12^2*u02-36*u00^3*u21^4*u11^3*u12*u03+30*u00^3*u21^4*u11^2*u12^2*u02-36*u00^3*u21^4*u11*u01*u12^3+u00^3*u21^3*u11^3*u12^3+64*u00^2*u21^6*u01^3*u03-16*u00^2*u21^6*u01^2*u02^2-48*u00^2*u21^5*u11^2*u01^2*u03+8*u00^2*u21^5*u11^2*u01*u02^2+16*u00^2*u21^5*u11*u01^2*u12*u02-16*u00^2*u21^5*u01^3*u12^2+12*u00^2*u21^4*u11^4*u01*u03-u00^2*u21^4*u11^4*u02^2-8*u00^2*u21^4*u11^3*u01*u12*u02+8*u00^2*u21^4*u11^2*u01^2*u12^2-u00^2*u21^3*u11^6*u03+u00^2*u21^3*u11^5*u12*u02-u00^2*u21^3*u11^4*u01*u12^2"; return(Delta); } if ((invar=="numerator") and (curve=="cubic")) { string A="-2985984*u30^3*u10^3*u01^3*u03^3+2985984*u30^3*u10^3*u01^2*u02^2*u03^2-995328*u30^3*u10^3*u01*u02^4*u03+110592*u30^3*u10^3*u02^6+13436928*u30^3*u10^2*u00*u11*u01^2*u03^3-8957952*u30^3*u10^2*u00*u11*u01*u02^2*u03^2+1492992*u30^3*u10^2*u00*u11*u02^4*u03-8957952*u30^3*u10^2*u00*u01^2*u12*u02*u03^2+5971968*u30^3*u10^2*u00*u01*u12*u02^3*u03-995328*u30^3*u10^2*u00*u12*u02^5-1492992*u30^3*u10^2*u11*u01^3*u02*u03^2+995328*u30^3*u10^2*u11*u01^2*u02^3*u03-165888*u30^3*u10^2*u11*u01*u02^5+2985984*u30^3*u10^2*u01^4*u12*u03^2-1990656*u30^3*u10^2*u01^3*u12*u02^2*u03+331776*u30^3*u10^2*u01^2*u12*u02^4-20155392*u30^3*u10*u00^2*u11^2*u01*u03^3+6718464*u30^3*u10*u00^2*u11^2*u02^2*u03^2+26873856*u30^3*u10*u00^2*u11*u01*u12*u02*u03^2-8957952*u30^3*u10*u00^2*u11*u12*u02^3*u03-8957952*u30^3*u10*u00^2*u01*u12^2*u02^2*u03+2985984*u30^3*u10*u00^2*u12^2*u02^4+4478976*u30^3*u10*u00*u11^2*u01^2*u02*u03^2-1492992*u30^3*u10*u00*u11^2*u01*u02^3*u03-8957952*u30^3*u10*u00*u11*u01^3*u12*u03^2+995328*u30^3*u10*u00*u11*u01*u12*u02^4+5971968*u30^3*u10*u00*u01^3*u12^2*u02*u03-1990656*u30^3*u10*u00*u01^2*u12^2*u02^3-248832*u30^3*u10*u11^2*u01^3*u02^2*u03+82944*u30^3*u10*u11^2*u01^2*u02^4+995328*u30^3*u10*u11*u01^4*u12*u02*u03-331776*u30^3*u10*u11*u01^3*u12*u02^3-995328*u30^3*u10*u01^5*u12^2*u03+331776*u30^3*u10*u01^4*u12^2*u02^2+10077696*u30^3*u00^3*u11^3*u03^3-20155392*u30^3*u00^3*u11^2*u12*u02*u03^2+13436928*u30^3*u00^3*u11*u12^2*u02^2*u03-2985984*u30^3*u00^3*u12^3*u02^3-3359232*u30^3*u00^2*u11^3*u01*u02*u03^2+6718464*u30^3*u00^2*u11^2*u01^2*u12*u03^2+4478976*u30^3*u00^2*u11^2*u01*u12*u02^2*u03-8957952*u30^3*u00^2*u11*u01^2*u12^2*u02*u03-1492992*u30^3*u00^2*u11*u01*u12^2*u02^3+2985984*u30^3*u00^2*u01^2*u12^3*u02^2+373248*u30^3*u00*u11^3*u01^2*u02^2*u03-1492992*u30^3*u00*u11^2*u01^3*u12*u02*u03-248832*u30^3*u00*u11^2*u01^2*u12*u02^3+1492992*u30^3*u00*u11*u01^4*u12^2*u03+995328*u30^3*u00*u11*u01^3*u12^2*u02^2-995328*u30^3*u00*u01^4*u12^3*u02-13824*u30^3*u11^3*u01^3*u02^3+82944*u30^3*u11^2*u01^4*u12*u02^2-165888*u30^3*u11*u01^5*u12^2*u02+110592*u30^3*u01^6*u12^3+2985984*u30^2*u20^2*u10^2*u01^3*u03^3-2985984*u30^2*u20^2*u10^2*u01^2*u02^2*u03^2+995328*u30^2*u20^2*u10^2*u01*u02^4*u03-110592*u30^2*u20^2*u10^2*u02^6-8957952*u30^2*u20^2*u10*u00*u11*u01^2*u03^3+5971968*u30^2*u20^2*u10*u00*u11*u01*u02^2*u03^2-995328*u30^2*u20^2*u10*u00*u11*u02^4*u03+5971968*u30^2*u20^2*u10*u00*u01^2*u12*u02*u03^2-3981312*u30^2*u20^2*u10*u00*u01*u12*u02^3*u03+663552*u30^2*u20^2*u10*u00*u12*u02^5+995328*u30^2*u20^2*u10*u11*u01^3*u02*u03^2-663552*u30^2*u20^2*u10*u11*u01^2*u02^3*u03+110592*u30^2*u20^2*u10*u11*u01*u02^5-1990656*u30^2*u20^2*u10*u01^4*u12*u03^2+1327104*u30^2*u20^2*u10*u01^3*u12*u02^2*u03-221184*u30^2*u20^2*u10*u01^2*u12*u02^4+6718464*u30^2*u20^2*u00^2*u11^2*u01*u03^3-2239488*u30^2*u20^2*u00^2*u11^2*u02^2*u03^2-8957952*u30^2*u20^2*u00^2*u11*u01*u12*u02*u03^2+2985984*u30^2*u20^2*u00^2*u11*u12*u02^3*u03+2985984*u30^2*u20^2*u00^2*u01*u12^2*u02^2*u03-995328*u30^2*u20^2*u00^2*u12^2*u02^4-1492992*u30^2*u20^2*u00*u11^2*u01^2*u02*u03^2+497664*u30^2*u20^2*u00*u11^2*u01*u02^3*u03+2985984*u30^2*u20^2*u00*u11*u01^3*u12*u03^2-331776*u30^2*u20^2*u00*u11*u01*u12*u02^4-1990656*u30^2*u20^2*u00*u01^3*u12^2*u02*u03+663552*u30^2*u20^2*u00*u01^2*u12^2*u02^3+82944*u30^2*u20^2*u11^2*u01^3*u02^2*u03-27648*u30^2*u20^2*u11^2*u01^2*u02^4-331776*u30^2*u20^2*u11*u01^4*u12*u02*u03+110592*u30^2*u20^2*u11*u01^3*u12*u02^3+331776*u30^2*u20^2*u01^5*u12^2*u03-110592*u30^2*u20^2*u01^4*u12^2*u02^2-1492992*u30^2*u20*u10^3*u11*u01^2*u03^3+995328*u30^2*u20*u10^3*u11*u01*u02^2*u03^2-165888*u30^2*u20*u10^3*u11*u02^4*u03+995328*u30^2*u20*u10^3*u01^2*u12*u02*u03^2-663552*u30^2*u20*u10^3*u01*u12*u02^3*u03+110592*u30^2*u20*u10^3*u12*u02^5-8957952*u30^2*u20*u10^2*u00*u21*u01^2*u03^3+5971968*u30^2*u20*u10^2*u00*u21*u01*u02^2*u03^2-995328*u30^2*u20*u10^2*u00*u21*u02^4*u03+4478976*u30^2*u20*u10^2*u00*u11^2*u01*u03^3-1492992*u30^2*u20*u10^2*u00*u11^2*u02^2*u03^2-5971968*u30^2*u20*u10^2*u00*u11*u01*u12*u02*u03^2+1990656*u30^2*u20*u10^2*u00*u11*u12*u02^3*u03+2985984*u30^2*u20*u10^2*u00*u01^2*u12^2*u03^2-331776*u30^2*u20*u10^2*u00*u12^2*u02^4+995328*u30^2*u20*u10^2*u21*u01^3*u02*u03^2-663552*u30^2*u20*u10^2*u21*u01^2*u02^3*u03+110592*u30^2*u20*u10^2*u21*u01*u02^5-165888*u30^2*u20*u10^2*u11^2*u01*u02^3*u03+55296*u30^2*u20*u10^2*u11^2*u02^5-497664*u30^2*u20*u10^2*u11*u01^3*u12*u03^2+995328*u30^2*u20*u10^2*u11*u01^2*u12*u02^2*u03-276480*u30^2*u20*u10^2*u11*u01*u12*u02^4-663552*u30^2*u20*u10^2*u01^3*u12^2*u02*u03+221184*u30^2*u20*u10^2*u01^2*u12^2*u02^3+26873856*u30^2*u20*u10*u00^2*u21*u11*u01*u03^3-8957952*u30^2*u20*u10*u00^2*u21*u11*u02^2*u03^2-17915904*u30^2*u20*u10*u00^2*u21*u01*u12*u02*u03^2+5971968*u30^2*u20*u10*u00^2*u21*u12*u02^3*u03-3359232*u30^2*u20*u10*u00^2*u11^3*u03^3+6718464*u30^2*u20*u10*u00^2*u11^2*u12*u02*u03^2-8957952*u30^2*u20*u10*u00^2*u11*u01*u12^2*u03^2-1492992*u30^2*u20*u10*u00^2*u11*u12^2*u02^2*u03+5971968*u30^2*u20*u10*u00^2*u01*u12^3*u02*u03-995328*u30^2*u20*u10*u00^2*u12^3*u02^3-5971968*u30^2*u20*u10*u00*u21*u11*u01^2*u02*u03^2+1990656*u30^2*u20*u10*u00*u21*u11*u01*u02^3*u03+5971968*u30^2*u20*u10*u00*u21*u01^3*u12*u03^2-663552*u30^2*u20*u10*u00*u21*u01*u12*u02^4-746496*u30^2*u20*u10*u00*u11^3*u01*u02*u03^2+497664*u30^2*u20*u10*u00*u11^3*u02^3*u03+2985984*u30^2*u20*u10*u00*u11^2*u01^2*u12*u03^2-1492992*u30^2*u20*u10*u00*u11^2*u01*u12*u02^2*u03-331776*u30^2*u20*u10*u00*u11^2*u12*u02^4+995328*u30^2*u20*u10*u00*u11*u01*u12^2*u02^3-1990656*u30^2*u20*u10*u00*u01^3*u12^3*u03+331776*u30^2*u20*u10*u21*u11*u01^3*u02^2*u03-110592*u30^2*u20*u10*u21*u11*u01^2*u02^4-663552*u30^2*u20*u10*u21*u01^4*u12*u02*u03+221184*u30^2*u20*u10*u21*u01^3*u12*u02^3+124416*u30^2*u20*u10*u11^3*u01^2*u02^2*u03-55296*u30^2*u20*u10*u11^3*u01*u02^4-663552*u30^2*u20*u10*u11^2*u01^3*u12*u02*u03+304128*u30^2*u20*u10*u11^2*u01^2*u12*u02^3+829440*u30^2*u20*u10*u11*u01^4*u12^2*u03-442368*u30^2*u20*u10*u11*u01^3*u12^2*u02^2+110592*u30^2*u20*u10*u01^4*u12^3*u02-20155392*u30^2*u20*u00^3*u21*u11^2*u03^3+26873856*u30^2*u20*u00^3*u21*u11*u12*u02*u03^2-8957952*u30^2*u20*u00^3*u21*u12^2*u02^2*u03+6718464*u30^2*u20*u00^3*u11^2*u12^2*u03^2-8957952*u30^2*u20*u00^3*u11*u12^3*u02*u03+2985984*u30^2*u20*u00^3*u12^4*u02^2+6718464*u30^2*u20*u00^2*u21*u11^2*u01*u02*u03^2-8957952*u30^2*u20*u00^2*u21*u11*u01^2*u12*u03^2-5971968*u30^2*u20*u00^2*u21*u11*u01*u12*u02^2*u03+5971968*u30^2*u20*u00^2*u21*u01^2*u12^2*u02*u03+995328*u30^2*u20*u00^2*u21*u01*u12^2*u02^3+1119744*u30^2*u20*u00^2*u11^4*u02*u03^2-3359232*u30^2*u20*u00^2*u11^3*u01*u12*u03^2-1492992*u30^2*u20*u00^2*u11^3*u12*u02^2*u03+2985984*u30^2*u20*u00^2*u11^2*u01*u12^2*u02*u03+497664*u30^2*u20*u00^2*u11^2*u12^2*u02^3+2985984*u30^2*u20*u00^2*u11*u01^2*u12^3*u03-497664*u30^2*u20*u00^2*u11*u01*u12^3*u02^2-1990656*u30^2*u20*u00^2*u01^2*u12^4*u02-746496*u30^2*u20*u00*u21*u11^2*u01^2*u02^2*u03+1990656*u30^2*u20*u00*u21*u11*u01^3*u12*u02*u03+331776*u30^2*u20*u00*u21*u11*u01^2*u12*u02^3-995328*u30^2*u20*u00*u21*u01^4*u12^2*u03-663552*u30^2*u20*u00*u21*u01^3*u12^2*u02^2-248832*u30^2*u20*u00*u11^4*u01*u02^2*u03+1244160*u30^2*u20*u00*u11^3*u01^2*u12*u02*u03+165888*u30^2*u20*u00*u11^3*u01*u12*u02^3-1492992*u30^2*u20*u00*u11^2*u01^3*u12^2*u03-746496*u30^2*u20*u00*u11^2*u01^2*u12^2*u02^2+663552*u30^2*u20*u00*u11*u01^3*u12^3*u02+331776*u30^2*u20*u00*u01^4*u12^4+27648*u30^2*u20*u21*u11^2*u01^3*u02^3-110592*u30^2*u20*u21*u11*u01^4*u12*u02^2+110592*u30^2*u20*u21*u01^5*u12^2*u02+13824*u30^2*u20*u11^4*u01^2*u02^3-96768*u30^2*u20*u11^3*u01^3*u12*u02^2+221184*u30^2*u20*u11^2*u01^4*u12^2*u02-165888*u30^2*u20*u11*u01^5*u12^3+2985984*u30^2*u10^4*u21*u01^2*u03^3-1990656*u30^2*u10^4*u21*u01*u02^2*u03^2+331776*u30^2*u10^4*u21*u02^4*u03-995328*u30^2*u10^4*u01^2*u12^2*u03^2+663552*u30^2*u10^4*u01*u12^2*u02^2*u03-110592*u30^2*u10^4*u12^2*u02^4-8957952*u30^2*u10^3*u00*u21*u11*u01*u03^3+2985984*u30^2*u10^3*u00*u21*u11*u02^2*u03^2+5971968*u30^2*u10^3*u00*u21*u01*u12*u02*u03^2-1990656*u30^2*u10^3*u00*u21*u12*u02^3*u03+2985984*u30^2*u10^3*u00*u11*u01*u12^2*u03^2-995328*u30^2*u10^3*u00*u11*u12^2*u02^2*u03-1990656*u30^2*u10^3*u00*u01*u12^3*u02*u03+663552*u30^2*u10^3*u00*u12^3*u02^3-497664*u30^2*u10^3*u21*u11*u01^2*u02*u03^2+663552*u30^2*u10^3*u21*u11*u01*u02^3*u03-165888*u30^2*u10^3*u21*u11*u02^5-995328*u30^2*u10^3*u21*u01^3*u12*u03^2+110592*u30^2*u10^3*u21*u01*u12*u02^4+497664*u30^2*u10^3*u11^2*u01^2*u12*u03^2-331776*u30^2*u10^3*u11^2*u01*u12*u02^2*u03+55296*u30^2*u10^3*u11^2*u12*u02^4-331776*u30^2*u10^3*u11*u01^2*u12^2*u02*u03+110592*u30^2*u10^3*u11*u01*u12^2*u02^3+663552*u30^2*u10^3*u01^3*u12^3*u03-221184*u30^2*u10^3*u01^2*u12^3*u02^2+6718464*u30^2*u10^2*u00^2*u21*u11^2*u03^3-8957952*u30^2*u10^2*u00^2*u21*u11*u12*u02*u03^2+2985984*u30^2*u10^2*u00^2*u21*u12^2*u02^2*u03-2239488*u30^2*u10^2*u00^2*u11^2*u12^2*u03^2+2985984*u30^2*u10^2*u00^2*u11*u12^3*u02*u03-995328*u30^2*u10^2*u00^2*u12^4*u02^2+2985984*u30^2*u10^2*u00*u21^2*u01^2*u02*u03^2-1990656*u30^2*u10^2*u00*u21^2*u01*u02^3*u03+331776*u30^2*u10^2*u00*u21^2*u02^5+2985984*u30^2*u10^2*u00*u21*u11^2*u01*u02*u03^2-1492992*u30^2*u10^2*u00*u21*u11^2*u02^3*u03-1492992*u30^2*u10^2*u00*u21*u11*u01^2*u12*u03^2+829440*u30^2*u10^2*u00*u21*u11*u12*u02^4-663552*u30^2*u10^2*u00*u21*u01*u12^2*u02^3-1492992*u30^2*u10^2*u00*u11^3*u01*u12*u03^2+497664*u30^2*u10^2*u00*u11^3*u12*u02^2*u03+1492992*u30^2*u10^2*u00*u11^2*u01*u12^2*u02*u03-331776*u30^2*u10^2*u00*u11^2*u12^2*u02^3-995328*u30^2*u10^2*u00*u11*u01^2*u12^3*u03-331776*u30^2*u10^2*u00*u11*u01*u12^3*u02^2+663552*u30^2*u10^2*u00*u01^2*u12^4*u02-995328*u30^2*u10^2*u21^2*u01^4*u03^2+663552*u30^2*u10^2*u21^2*u01^3*u02^2*u03-110592*u30^2*u10^2*u21^2*u01^2*u02^4+497664*u30^2*u10^2*u21*u11^2*u01^3*u03^2-746496*u30^2*u10^2*u21*u11^2*u01^2*u02^2*u03+221184*u30^2*u10^2*u21*u11^2*u01*u02^4+995328*u30^2*u10^2*u21*u11*u01^3*u12*u02*u03-442368*u30^2*u10^2*u21*u11*u01^2*u12*u02^3-331776*u30^2*u10^2*u21*u01^4*u12^2*u03+221184*u30^2*u10^2*u21*u01^3*u12^2*u02^2-62208*u30^2*u10^2*u11^4*u01^2*u03^2+41472*u30^2*u10^2*u11^4*u01*u02^2*u03-6912*u30^2*u10^2*u11^4*u02^4+165888*u30^2*u10^2*u11^3*u01^2*u12*u02*u03-55296*u30^2*u10^2*u11^3*u01*u12*u02^3-331776*u30^2*u10^2*u11^2*u01^3*u12^2*u03+82944*u30^2*u10^2*u11^2*u01^2*u12^2*u02^2+110592*u30^2*u10^2*u11*u01^3*u12^3*u02-110592*u30^2*u10^2*u01^4*u12^4-8957952*u30^2*u10*u00^2*u21^2*u11*u01*u02*u03^2+2985984*u30^2*u10*u00^2*u21^2*u11*u02^3*u03+5971968*u30^2*u10*u00^2*u21^2*u01*u12*u02^2*u03-1990656*u30^2*u10*u00^2*u21^2*u12*u02^4-3359232*u30^2*u10*u00^2*u21*u11^3*u02*u03^2+6718464*u30^2*u10*u00^2*u21*u11^2*u01*u12*u03^2+2985984*u30^2*u10*u00^2*u21*u11^2*u12*u02^2*u03-5971968*u30^2*u10*u00^2*u21*u11*u01*u12^2*u02*u03-497664*u30^2*u10*u00^2*u21*u11*u12^2*u02^3+995328*u30^2*u10*u00^2*u21*u01*u12^3*u02^2+1119744*u30^2*u10*u00^2*u11^4*u12*u03^2-1492992*u30^2*u10*u00^2*u11^3*u12^2*u02*u03+497664*u30^2*u10*u00^2*u11^2*u12^3*u02^2+2985984*u30^2*u10*u00*u21^2*u11*u01^3*u03^2-331776*u30^2*u10*u00*u21^2*u11*u01*u02^4-3981312*u30^2*u10*u00*u21^2*u01^3*u12*u02*u03+1327104*u30^2*u10*u00*u21^2*u01^2*u12*u02^3-1492992*u30^2*u10*u00*u21*u11^3*u01^2*u03^2+1244160*u30^2*u10*u00*u21*u11^3*u01*u02^2*u03-1492992*u30^2*u10*u00*u21*u11^2*u01^2*u12*u02*u03-663552*u30^2*u10*u00*u21*u11^2*u01*u12*u02^3+1990656*u30^2*u10*u00*u21*u11*u01^3*u12^2*u03+995328*u30^2*u10*u00*u21*u11*u01^2*u12^2*u02^2-663552*u30^2*u10*u00*u21*u01^3*u12^3*u02+186624*u30^2*u10*u00*u11^5*u01*u03^2-62208*u30^2*u10*u00*u11^5*u02^2*u03-373248*u30^2*u10*u00*u11^4*u01*u12*u02*u03+41472*u30^2*u10*u00*u11^4*u12*u02^3+497664*u30^2*u10*u00*u11^3*u01^2*u12^2*u03+165888*u30^2*u10*u00*u11^3*u01*u12^2*u02^2-331776*u30^2*u10*u00*u11^2*u01^2*u12^3*u02-331776*u30^2*u10*u21^2*u11*u01^4*u02*u03+110592*u30^2*u10*u21^2*u11*u01^3*u02^3+663552*u30^2*u10*u21^2*u01^5*u12*u03-221184*u30^2*u10*u21^2*u01^4*u12*u02^2+165888*u30^2*u10*u21*u11^3*u01^3*u02*u03-96768*u30^2*u10*u21*u11^3*u01^2*u02^3-331776*u30^2*u10*u21*u11^2*u01^4*u12*u03+304128*u30^2*u10*u21*u11^2*u01^3*u12*u02^2-276480*u30^2*u10*u21*u11*u01^4*u12^2*u02+110592*u30^2*u10*u21*u01^5*u12^3-20736*u30^2*u10*u11^5*u01^2*u02*u03+6912*u30^2*u10*u11^5*u01*u02^3+41472*u30^2*u10*u11^4*u01^3*u12*u03-55296*u30^2*u10*u11^3*u01^3*u12^2*u02+55296*u30^2*u10*u11^2*u01^4*u12^3+6718464*u30^2*u00^3*u21^2*u11^2*u02*u03^2-8957952*u30^2*u00^3*u21^2*u11*u12*u02^2*u03+2985984*u30^2*u00^3*u21^2*u12^2*u02^3-3359232*u30^2*u00^3*u21*u11^3*u12*u03^2+4478976*u30^2*u00^3*u21*u11^2*u12^2*u02*u03-1492992*u30^2*u00^3*u21*u11*u12^3*u02^2-2239488*u30^2*u00^2*u21^2*u11^2*u01^2*u03^2-1492992*u30^2*u00^2*u21^2*u11^2*u01*u02^2*u03+5971968*u30^2*u00^2*u21^2*u11*u01^2*u12*u02*u03+995328*u30^2*u00^2*u21^2*u11*u01*u12*u02^3-2985984*u30^2*u00^2*u21^2*u01^2*u12^2*u02^2+1119744*u30^2*u00^2*u21*u11^4*u01*u03^2-746496*u30^2*u00^2*u21*u11^3*u01*u12*u02*u03-1492992*u30^2*u00^2*u21*u11^2*u01^2*u12^2*u03+995328*u30^2*u00^2*u21*u11*u01^2*u12^3*u02-139968*u30^2*u00^2*u11^6*u03^2+186624*u30^2*u00^2*u11^5*u12*u02*u03-62208*u30^2*u00^2*u11^4*u12^2*u02^2+497664*u30^2*u00*u21^2*u11^2*u01^3*u02*u03+82944*u30^2*u00*u21^2*u11^2*u01^2*u02^3-995328*u30^2*u00*u21^2*u11*u01^4*u12*u03-663552*u30^2*u00*u21^2*u11*u01^3*u12*u02^2+995328*u30^2*u00*u21^2*u01^4*u12^2*u02-248832*u30^2*u00*u21*u11^4*u01^2*u02*u03+497664*u30^2*u00*u21*u11^3*u01^3*u12*u03+124416*u30^2*u00*u21*u11^3*u01^2*u12*u02^2-165888*u30^2*u00*u21*u11^2*u01^3*u12^2*u02-165888*u30^2*u00*u21*u11*u01^4*u12^3+31104*u30^2*u00*u11^6*u01*u02*u03-62208*u30^2*u00*u11^5*u01^2*u12*u03-20736*u30^2*u00*u11^5*u01*u12*u02^2+41472*u30^2*u00*u11^4*u01^2*u12^2*u02-27648*u30^2*u21^2*u11^2*u01^4*u02^2+110592*u30^2*u21^2*u11*u01^5*u12*u02-110592*u30^2*u21^2*u01^6*u12^2+13824*u30^2*u21*u11^4*u01^3*u02^2-55296*u30^2*u21*u11^3*u01^4*u12*u02+55296*u30^2*u21*u11^2*u01^5*u12^2-1728*u30^2*u11^6*u01^2*u02^2+6912*u30^2*u11^5*u01^3*u12*u02-6912*u30^2*u11^4*u01^4*u12^2-995328*u30*u20^4*u10*u01^3*u03^3+995328*u30*u20^4*u10*u01^2*u02^2*u03^2-331776*u30*u20^4*u10*u01*u02^4*u03+36864*u30*u20^4*u10*u02^6+1492992*u30*u20^4*u00*u11*u01^2*u03^3-995328*u30*u20^4*u00*u11*u01*u02^2*u03^2+165888*u30*u20^4*u00*u11*u02^4*u03-995328*u30*u20^4*u00*u01^2*u12*u02*u03^2+663552*u30*u20^4*u00*u01*u12*u02^3*u03-110592*u30*u20^4*u00*u12*u02^5-165888*u30*u20^4*u11*u01^3*u02*u03^2+110592*u30*u20^4*u11*u01^2*u02^3*u03-18432*u30*u20^4*u11*u01*u02^5+331776*u30*u20^4*u01^4*u12*u03^2-221184*u30*u20^4*u01^3*u12*u02^2*u03+36864*u30*u20^4*u01^2*u12*u02^4+995328*u30*u20^3*u10^2*u11*u01^2*u03^3-663552*u30*u20^3*u10^2*u11*u01*u02^2*u03^2+110592*u30*u20^3*u10^2*u11*u02^4*u03-663552*u30*u20^3*u10^2*u01^2*u12*u02*u03^2+442368*u30*u20^3*u10^2*u01*u12*u02^3*u03-73728*u30*u20^3*u10^2*u12*u02^5+5971968*u30*u20^3*u10*u00*u21*u01^2*u03^3-3981312*u30*u20^3*u10*u00*u21*u01*u02^2*u03^2+663552*u30*u20^3*u10*u00*u21*u02^4*u03-1492992*u30*u20^3*u10*u00*u11^2*u01*u03^3+497664*u30*u20^3*u10*u00*u11^2*u02^2*u03^2+1990656*u30*u20^3*u10*u00*u11*u01*u12*u02*u03^2-663552*u30*u20^3*u10*u00*u11*u12*u02^3*u03-1990656*u30*u20^3*u10*u00*u01^2*u12^2*u03^2+663552*u30*u20^3*u10*u00*u01*u12^2*u02^2*u03-663552*u30*u20^3*u10*u21*u01^3*u02*u03^2+442368*u30*u20^3*u10*u21*u01^2*u02^3*u03-73728*u30*u20^3*u10*u21*u01*u02^5-165888*u30*u20^3*u10*u11^2*u01^2*u02*u03^2+165888*u30*u20^3*u10*u11^2*u01*u02^3*u03-36864*u30*u20^3*u10*u11^2*u02^5+663552*u30*u20^3*u10*u11*u01^3*u12*u03^2-663552*u30*u20^3*u10*u11*u01^2*u12*u02^2*u03+147456*u30*u20^3*u10*u11*u01*u12*u02^4+221184*u30*u20^3*u10*u01^3*u12^2*u02*u03-73728*u30*u20^3*u10*u01^2*u12^2*u02^3-8957952*u30*u20^3*u00^2*u21*u11*u01*u03^3+2985984*u30*u20^3*u00^2*u21*u11*u02^2*u03^2+5971968*u30*u20^3*u00^2*u21*u01*u12*u02*u03^2-1990656*u30*u20^3*u00^2*u21*u12*u02^3*u03+2985984*u30*u20^3*u00^2*u11*u01*u12^2*u03^2-995328*u30*u20^3*u00^2*u11*u12^2*u02^2*u03-1990656*u30*u20^3*u00^2*u01*u12^3*u02*u03+663552*u30*u20^3*u00^2*u12^3*u02^3+1990656*u30*u20^3*u00*u21*u11*u01^2*u02*u03^2-663552*u30*u20^3*u00*u21*u11*u01*u02^3*u03-1990656*u30*u20^3*u00*u21*u01^3*u12*u03^2+221184*u30*u20^3*u00*u21*u01*u12*u02^4+497664*u30*u20^3*u00*u11^3*u01*u02*u03^2-165888*u30*u20^3*u00*u11^3*u02^3*u03-1492992*u30*u20^3*u00*u11^2*u01^2*u12*u03^2+165888*u30*u20^3*u00*u11^2*u01*u12*u02^2*u03+110592*u30*u20^3*u00*u11^2*u12*u02^4+663552*u30*u20^3*u00*u11*u01^2*u12^2*u02*u03-221184*u30*u20^3*u00*u11*u01*u12^2*u02^3+663552*u30*u20^3*u00*u01^3*u12^3*u03-221184*u30*u20^3*u00*u01^2*u12^3*u02^2-110592*u30*u20^3*u21*u11*u01^3*u02^2*u03+36864*u30*u20^3*u21*u11*u01^2*u02^4+221184*u30*u20^3*u21*u01^4*u12*u02*u03-73728*u30*u20^3*u21*u01^3*u12*u02^3-55296*u30*u20^3*u11^3*u01^2*u02^2*u03+18432*u30*u20^3*u11^3*u01*u02^4+276480*u30*u20^3*u11^2*u01^3*u12*u02*u03-92160*u30*u20^3*u11^2*u01^2*u12*u02^3-331776*u30*u20^3*u11*u01^4*u12^2*u03+110592*u30*u20^3*u11*u01^3*u12^2*u02^2-1990656*u30*u20^2*u10^3*u21*u01^2*u03^3+1327104*u30*u20^2*u10^3*u21*u01*u02^2*u03^2-221184*u30*u20^2*u10^3*u21*u02^4*u03-248832*u30*u20^2*u10^3*u11^2*u01*u03^3+82944*u30*u20^2*u10^3*u11^2*u02^2*u03^2+331776*u30*u20^2*u10^3*u11*u01*u12*u02*u03^2-110592*u30*u20^2*u10^3*u11*u12*u02^3*u03+663552*u30*u20^2*u10^3*u01^2*u12^2*u03^2-552960*u30*u20^2*u10^3*u01*u12^2*u02^2*u03+110592*u30*u20^2*u10^3*u12^2*u02^4+373248*u30*u20^2*u10^2*u00*u11^3*u03^3-746496*u30*u20^2*u10^2*u00*u11^2*u12*u02*u03^2+497664*u30*u20^2*u10^2*u00*u11*u12^2*u02^2*u03-110592*u30*u20^2*u10^2*u00*u12^3*u02^3+995328*u30*u20^2*u10^2*u21*u11*u01^2*u02*u03^2-663552*u30*u20^2*u10^2*u21*u11*u01*u02^3*u03+110592*u30*u20^2*u10^2*u21*u11*u02^5+124416*u30*u20^2*u10^2*u11^3*u01*u02*u03^2-55296*u30*u20^2*u10^2*u11^3*u02^3*u03-746496*u30*u20^2*u10^2*u11^2*u01^2*u12*u03^2+331776*u30*u20^2*u10^2*u11^2*u01*u12*u02^2*u03+331776*u30*u20^2*u10^2*u11*u01^2*u12^2*u02*u03-165888*u30*u20^2*u10^2*u11*u01*u12^2*u02^3-221184*u30*u20^2*u10^2*u01^3*u12^3*u03+110592*u30*u20^2*u10^2*u01^2*u12^3*u02^2-8957952*u30*u20^2*u10*u00^2*u21^2*u01*u03^3+2985984*u30*u20^2*u10*u00^2*u21^2*u02^2*u03^2+4478976*u30*u20^2*u10*u00^2*u21*u11^2*u03^3-5971968*u30*u20^2*u10*u00^2*u21*u11*u12*u02*u03^2+5971968*u30*u20^2*u10*u00^2*u21*u01*u12^2*u03^2-1492992*u30*u20^2*u10*u00^2*u11^2*u12^2*u03^2+1990656*u30*u20^2*u10*u00^2*u11*u12^3*u02*u03-995328*u30*u20^2*u10*u00^2*u01*u12^4*u03-331776*u30*u20^2*u10*u00^2*u12^4*u02^2+663552*u30*u20^2*u10*u00*u21^2*u01*u02^3*u03-221184*u30*u20^2*u10*u00*u21^2*u02^5-1492992*u30*u20^2*u10*u00*u21*u11^2*u01*u02*u03^2+165888*u30*u20^2*u10*u00*u21*u11^2*u02^3*u03+1990656*u30*u20^2*u10*u00*u21*u11*u01*u12*u02^2*u03-221184*u30*u20^2*u10*u00*u21*u11*u12*u02^4-1990656*u30*u20^2*u10*u00*u21*u01^2*u12^2*u02*u03+221184*u30*u20^2*u10*u00*u21*u01*u12^2*u02^3-248832*u30*u20^2*u10*u00*u11^4*u02*u03^2+1244160*u30*u20^2*u10*u00*u11^3*u01*u12*u03^2+165888*u30*u20^2*u10*u00*u11^3*u12*u02^2*u03-1492992*u30*u20^2*u10*u00*u11^2*u01*u12^2*u02*u03+110592*u30*u20^2*u10*u00*u11^2*u12^2*u02^3+663552*u30*u20^2*u10*u00*u11*u01^2*u12^3*u03-110592*u30*u20^2*u10*u00*u11*u01*u12^3*u02^2+221184*u30*u20^2*u10*u00*u01^2*u12^4*u02+663552*u30*u20^2*u10*u21^2*u01^4*u03^2-552960*u30*u20^2*u10*u21^2*u01^3*u02^2*u03+110592*u30*u20^2*u10*u21^2*u01^2*u02^4-331776*u30*u20^2*u10*u21*u11^2*u01^3*u03^2+331776*u30*u20^2*u10*u21*u11^2*u01^2*u02^2*u03-55296*u30*u20^2*u10*u21*u11^2*u01*u02^4-221184*u30*u20^2*u10*u21*u11*u01^3*u12*u02*u03+221184*u30*u20^2*u10*u21*u01^4*u12^2*u03+41472*u30*u20^2*u10*u11^4*u01^2*u03^2-27648*u30*u20^2*u10*u11^4*u01*u02^2*u03+13824*u30*u20^2*u10*u11^4*u02^4-27648*u30*u20^2*u10*u11^3*u01^2*u12*u02*u03-55296*u30*u20^2*u10*u11^3*u01*u12*u02^3+27648*u30*u20^2*u10*u11^2*u01^3*u12^2*u03+138240*u30*u20^2*u10*u11^2*u01^2*u12^2*u02^2-110592*u30*u20^2*u10*u11*u01^3*u12^3*u02+13436928*u30*u20^2*u00^3*u21^2*u11*u03^3-8957952*u30*u20^2*u00^3*u21^2*u12*u02*u03^2-8957952*u30*u20^2*u00^3*u21*u11*u12^2*u03^2+5971968*u30*u20^2*u00^3*u21*u12^3*u02*u03+1492992*u30*u20^2*u00^3*u11*u12^4*u03-995328*u30*u20^2*u00^3*u12^5*u02-1492992*u30*u20^2*u00^2*u21^2*u11*u01*u02*u03^2-995328*u30*u20^2*u00^2*u21^2*u11*u02^3*u03+2985984*u30*u20^2*u00^2*u21^2*u01^2*u12*u03^2+663552*u30*u20^2*u00^2*u21^2*u12*u02^4-1492992*u30*u20^2*u00^2*u21*u11^3*u02*u03^2+2985984*u30*u20^2*u00^2*u21*u11^2*u01*u12*u03^2+1492992*u30*u20^2*u00^2*u21*u11^2*u12*u02^2*u03-331776*u30*u20^2*u00^2*u21*u11*u12^2*u02^3-1990656*u30*u20^2*u00^2*u21*u01^2*u12^3*u03-663552*u30*u20^2*u00^2*u21*u01*u12^3*u02^2+497664*u30*u20^2*u00^2*u11^3*u12^2*u02*u03-1492992*u30*u20^2*u00^2*u11^2*u01*u12^3*u03-331776*u30*u20^2*u00^2*u11^2*u12^3*u02^2+829440*u30*u20^2*u00^2*u11*u01*u12^4*u02+331776*u30*u20^2*u00^2*u01^2*u12^5-995328*u30*u20^2*u00*u21^2*u11*u01^3*u03^2+497664*u30*u20^2*u00*u21^2*u11*u01^2*u02^2*u03+110592*u30*u20^2*u00*u21^2*u11*u01*u02^4+663552*u30*u20^2*u00*u21^2*u01^3*u12*u02*u03-552960*u30*u20^2*u00*u21^2*u01^2*u12*u02^3+497664*u30*u20^2*u00*u21*u11^3*u01^2*u03^2+165888*u30*u20^2*u00*u21*u11^3*u01*u02^2*u03-1492992*u30*u20^2*u00*u21*u11^2*u01^2*u12*u02*u03-55296*u30*u20^2*u00*u21*u11^2*u01*u12*u02^3+663552*u30*u20^2*u00*u21*u11*u01^3*u12^2*u03+331776*u30*u20^2*u00*u21*u11*u01^2*u12^2*u02^2+221184*u30*u20^2*u00*u21*u01^3*u12^3*u02-62208*u30*u20^2*u00*u11^5*u01*u03^2+62208*u30*u20^2*u00*u11^5*u02^2*u03-207360*u30*u20^2*u00*u11^4*u01*u12*u02*u03-41472*u30*u20^2*u00*u11^4*u12*u02^3+373248*u30*u20^2*u00*u11^3*u01^2*u12^2*u03+110592*u30*u20^2*u00*u11^3*u01*u12^2*u02^2+27648*u30*u20^2*u00*u11^2*u01^2*u12^3*u02-331776*u30*u20^2*u00*u11*u01^3*u12^4+110592*u30*u20^2*u21^2*u11*u01^4*u02*u03-55296*u30*u20^2*u21^2*u11*u01^3*u02^3-221184*u30*u20^2*u21^2*u01^5*u12*u03+110592*u30*u20^2*u21^2*u01^4*u12*u02^2-55296*u30*u20^2*u21*u11^3*u01^3*u02*u03+110592*u30*u20^2*u21*u11^2*u01^4*u12*u03+55296*u30*u20^2*u21*u11^2*u01^3*u12*u02^2-110592*u30*u20^2*u21*u11*u01^4*u12^2*u02+6912*u30*u20^2*u11^5*u01^2*u02*u03-6912*u30*u20^2*u11^5*u01*u02^3-13824*u30*u20^2*u11^4*u01^3*u12*u03+41472*u30*u20^2*u11^4*u01^2*u12*u02^2-96768*u30*u20^2*u11^3*u01^3*u12^2*u02+82944*u30*u20^2*u11^2*u01^4*u12^3+995328*u30*u20*u10^4*u21*u11*u01*u03^3-331776*u30*u20*u10^4*u21*u11*u02^2*u03^2-663552*u30*u20*u10^4*u21*u01*u12*u02*u03^2+221184*u30*u20*u10^4*u21*u12*u02^3*u03-331776*u30*u20*u10^4*u11*u01*u12^2*u03^2+110592*u30*u20*u10^4*u11*u12^2*u02^2*u03+221184*u30*u20*u10^4*u01*u12^3*u02*u03-73728*u30*u20*u10^4*u12^3*u02^3+5971968*u30*u20*u10^3*u00*u21^2*u01*u03^3-1990656*u30*u20*u10^3*u00*u21^2*u02^2*u03^2-1492992*u30*u20*u10^3*u00*u21*u11^2*u03^3+1990656*u30*u20*u10^3*u00*u21*u11*u12*u02*u03^2-3981312*u30*u20*u10^3*u00*u21*u01*u12^2*u03^2+663552*u30*u20*u10^3*u00*u21*u12^2*u02^2*u03+497664*u30*u20*u10^3*u00*u11^2*u12^2*u03^2-663552*u30*u20*u10^3*u00*u11*u12^3*u02*u03+663552*u30*u20*u10^3*u00*u01*u12^4*u03-663552*u30*u20*u10^3*u21^2*u01^2*u02*u03^2+221184*u30*u20*u10^3*u21^2*u01*u02^3*u03-663552*u30*u20*u10^3*u21*u11^2*u01*u02*u03^2+276480*u30*u20*u10^3*u21*u11^2*u02^3*u03+995328*u30*u20*u10^3*u21*u11*u01^2*u12*u03^2-221184*u30*u20*u10^3*u21*u11*u01*u12*u02^2*u03-110592*u30*u20*u10^3*u21*u11*u12*u02^4+221184*u30*u20*u10^3*u21*u01^2*u12^2*u02*u03+165888*u30*u20*u10^3*u11^3*u01*u12*u03^2-55296*u30*u20*u10^3*u11^3*u12*u02^2*u03-55296*u30*u20*u10^3*u11^2*u01*u12^2*u02*u03-221184*u30*u20*u10^3*u11*u01^2*u12^3*u03+147456*u30*u20*u10^3*u11*u01*u12^3*u02^2-73728*u30*u20*u10^3*u01^2*u12^4*u02-8957952*u30*u20*u10^2*u00^2*u21^2*u11*u03^3+5971968*u30*u20*u10^2*u00^2*u21^2*u12*u02*u03^2+5971968*u30*u20*u10^2*u00^2*u21*u11*u12^2*u03^2-3981312*u30*u20*u10^2*u00^2*u21*u12^3*u02*u03-995328*u30*u20*u10^2*u00^2*u11*u12^4*u03+663552*u30*u20*u10^2*u00^2*u12^5*u02+663552*u30*u20*u10^2*u00*u21^2*u11*u02^3*u03-1990656*u30*u20*u10^2*u00*u21^2*u01*u12*u02^2*u03+221184*u30*u20*u10^2*u00*u21^2*u12*u02^4+1244160*u30*u20*u10^2*u00*u21*u11^3*u02*u03^2-1492992*u30*u20*u10^2*u00*u21*u11^2*u01*u12*u03^2-1492992*u30*u20*u10^2*u00*u21*u11^2*u12*u02^2*u03+1990656*u30*u20*u10^2*u00*u21*u11*u01*u12^2*u02*u03-110592*u30*u20*u10^2*u00*u21*u11*u12^2*u02^3+663552*u30*u20*u10^2*u00*u21*u01^2*u12^3*u03+221184*u30*u20*u10^2*u00*u21*u01*u12^3*u02^2-248832*u30*u20*u10^2*u00*u11^4*u12*u03^2+165888*u30*u20*u10^2*u00*u11^3*u12^2*u02*u03+165888*u30*u20*u10^2*u00*u11^2*u01*u12^3*u03+110592*u30*u20*u10^2*u00*u11^2*u12^3*u02^2-221184*u30*u20*u10^2*u00*u11*u01*u12^4*u02-221184*u30*u20*u10^2*u00*u01^2*u12^5-331776*u30*u20*u10^2*u21^2*u11*u01^3*u03^2+331776*u30*u20*u10^2*u21^2*u11*u01^2*u02^2*u03-110592*u30*u20*u10^2*u21^2*u11*u01*u02^4+221184*u30*u20*u10^2*u21^2*u01^3*u12*u02*u03+165888*u30*u20*u10^2*u21*u11^3*u01^2*u03^2-27648*u30*u20*u10^2*u21*u11^3*u01*u02^2*u03-55296*u30*u20*u10^2*u21*u11^3*u02^4-331776*u30*u20*u10^2*u21*u11^2*u01^2*u12*u02*u03+331776*u30*u20*u10^2*u21*u11^2*u01*u12*u02^3-110592*u30*u20*u10^2*u21*u11*u01^3*u12^2*u03-221184*u30*u20*u10^2*u21*u11*u01^2*u12^2*u02^2-20736*u30*u20*u10^2*u11^5*u01*u03^2+6912*u30*u20*u10^2*u11^5*u02^2*u03-13824*u30*u20*u10^2*u11^4*u01*u12*u02*u03+13824*u30*u20*u10^2*u11^4*u12*u02^3+110592*u30*u20*u10^2*u11^3*u01^2*u12^2*u03-55296*u30*u20*u10^2*u11^3*u01*u12^2*u02^2-55296*u30*u20*u10^2*u11^2*u01^2*u12^3*u02+110592*u30*u20*u10^2*u11*u01^3*u12^4+5971968*u30*u20*u10*u00^2*u21^3*u01*u02*u03^2-1990656*u30*u20*u10*u00^2*u21^3*u02^3*u03+2985984*u30*u20*u10*u00^2*u21^2*u11^2*u02*u03^2-5971968*u30*u20*u10*u00^2*u21^2*u11*u01*u12*u03^2-746496*u30*u20*u10*u00^2*u21*u11^3*u12*u03^2-1492992*u30*u20*u10*u00^2*u21*u11^2*u12^2*u02*u03+1990656*u30*u20*u10*u00^2*u21*u11*u01*u12^3*u03+995328*u30*u20*u10*u00^2*u21*u11*u12^3*u02^2-663552*u30*u20*u10*u00^2*u21*u01*u12^4*u02+497664*u30*u20*u10*u00^2*u11^3*u12^3*u03-331776*u30*u20*u10*u00^2*u11^2*u12^4*u02-1990656*u30*u20*u10*u00*u21^3*u01^3*u03^2+221184*u30*u20*u10*u00*u21^3*u01*u02^4+1492992*u30*u20*u10*u00*u21^2*u11^2*u01^2*u03^2-1492992*u30*u20*u10*u00*u21^2*u11^2*u01*u02^2*u03+110592*u30*u20*u10*u00*u21^2*u11^2*u02^4+1990656*u30*u20*u10*u00*u21^2*u11*u01^2*u12*u02*u03-221184*u30*u20*u10*u00*u21^2*u11*u01*u12*u02^3-373248*u30*u20*u10*u00*u21*u11^4*u01*u03^2-207360*u30*u20*u10*u00*u21*u11^4*u02^2*u03+1658880*u30*u20*u10*u00*u21*u11^3*u01*u12*u02*u03+110592*u30*u20*u10*u00*u21*u11^3*u12*u02^3-1492992*u30*u20*u10*u00*u21*u11^2*u01^2*u12^2*u03-331776*u30*u20*u10*u00*u21*u11^2*u01*u12^2*u02^2-221184*u30*u20*u10*u00*u21*u11*u01^2*u12^3*u02+221184*u30*u20*u10*u00*u21*u01^3*u12^4+31104*u30*u20*u10*u00*u11^6*u03^2+41472*u30*u20*u10*u00*u11^5*u12*u02*u03-207360*u30*u20*u10*u00*u11^4*u01*u12^2*u03-55296*u30*u20*u10*u00*u11^4*u12^2*u02^2+110592*u30*u20*u10*u00*u11^3*u01*u12^3*u02+110592*u30*u20*u10*u00*u11^2*u01^2*u12^4+221184*u30*u20*u10*u21^3*u01^4*u02*u03-73728*u30*u20*u10*u21^3*u01^3*u02^3-55296*u30*u20*u10*u21^2*u11^2*u01^3*u02*u03+55296*u30*u20*u10*u21^2*u11^2*u01^2*u02^3-221184*u30*u20*u10*u21^2*u11*u01^4*u12*u03-13824*u30*u20*u10*u21*u11^4*u01^2*u02*u03+41472*u30*u20*u10*u21*u11^4*u01*u02^3+110592*u30*u20*u10*u21*u11^3*u01^3*u12*u03-248832*u30*u20*u10*u21*u11^3*u01^2*u12*u02^2+331776*u30*u20*u10*u21*u11^2*u01^3*u12^2*u02-110592*u30*u20*u10*u21*u11*u01^4*u12^3+3456*u30*u20*u10*u11^6*u01*u02*u03-2304*u30*u20*u10*u11^6*u02^3-13824*u30*u20*u10*u11^5*u01^2*u12*u03+41472*u30*u20*u10*u11^4*u01^2*u12^2*u02-55296*u30*u20*u10*u11^3*u01^3*u12^3-8957952*u30*u20*u00^3*u21^3*u11*u02*u03^2+5971968*u30*u20*u00^3*u21^3*u12*u02^2*u03+4478976*u30*u20*u00^3*u21^2*u11^2*u12*u03^2-1990656*u30*u20*u00^3*u21^2*u12^3*u02^2-1492992*u30*u20*u00^3*u21*u11^2*u12^3*u03+995328*u30*u20*u00^3*u21*u11*u12^4*u02+2985984*u30*u20*u00^2*u21^3*u11*u01^2*u03^2+1990656*u30*u20*u00^2*u21^3*u11*u01*u02^2*u03-3981312*u30*u20*u00^2*u21^3*u01^2*u12*u02*u03-663552*u30*u20*u00^2*u21^3*u01*u12*u02^3-1492992*u30*u20*u00^2*u21^2*u11^3*u01*u03^2+497664*u30*u20*u00^2*u21^2*u11^3*u02^2*u03-1492992*u30*u20*u00^2*u21^2*u11^2*u01*u12*u02*u03-331776*u30*u20*u00^2*u21^2*u11^2*u12*u02^3+995328*u30*u20*u00^2*u21^2*u11*u01*u12^2*u02^2+1327104*u30*u20*u00^2*u21^2*u01^2*u12^3*u02+186624*u30*u20*u00^2*u21*u11^5*u03^2-373248*u30*u20*u00^2*u21*u11^4*u12*u02*u03+1244160*u30*u20*u00^2*u21*u11^3*u01*u12^2*u03+165888*u30*u20*u00^2*u21*u11^3*u12^2*u02^2-663552*u30*u20*u00^2*u21*u11^2*u01*u12^3*u02-331776*u30*u20*u00^2*u21*u11*u01^2*u12^4-62208*u30*u20*u00^2*u11^5*u12^2*u03+41472*u30*u20*u00^2*u11^4*u12^3*u02-663552*u30*u20*u00*u21^3*u11*u01^3*u02*u03-110592*u30*u20*u00*u21^3*u11*u01^2*u02^3+663552*u30*u20*u00*u21^3*u01^4*u12*u03+442368*u30*u20*u00*u21^3*u01^3*u12*u02^2+165888*u30*u20*u00*u21^2*u11^3*u01^2*u02*u03-55296*u30*u20*u00*u21^2*u11^3*u01*u02^3+165888*u30*u20*u00*u21^2*u11^2*u01^3*u12*u03+331776*u30*u20*u00*u21^2*u11^2*u01^2*u12*u02^2-663552*u30*u20*u00*u21^2*u11*u01^3*u12^2*u02-221184*u30*u20*u00*u21^2*u01^4*u12^3+41472*u30*u20*u00*u21*u11^5*u01*u02*u03-207360*u30*u20*u00*u21*u11^4*u01^2*u12*u03-13824*u30*u20*u00*u21*u11^4*u01*u12*u02^2-27648*u30*u20*u00*u21*u11^3*u01^2*u12^2*u02+276480*u30*u20*u00*u21*u11^2*u01^3*u12^3-10368*u30*u20*u00*u11^7*u02*u03+31104*u30*u20*u00*u11^6*u01*u12*u03+6912*u30*u20*u00*u11^6*u12*u02^2-13824*u30*u20*u00*u11^5*u01*u12^2*u02-13824*u30*u20*u00*u11^4*u01^2*u12^3+36864*u30*u20*u21^3*u11*u01^4*u02^2-73728*u30*u20*u21^3*u01^5*u12*u02-55296*u30*u20*u21^2*u11^2*u01^4*u12*u02+110592*u30*u20*u21^2*u11*u01^5*u12^2-6912*u30*u20*u21*u11^5*u01^2*u02^2+41472*u30*u20*u21*u11^4*u01^3*u12*u02-55296*u30*u20*u21*u11^3*u01^4*u12^2+1152*u30*u20*u11^7*u01*u02^2-5760*u30*u20*u11^6*u01^2*u12*u02+6912*u30*u20*u11^5*u01^3*u12^2-995328*u30*u10^5*u21^2*u01*u03^3+331776*u30*u10^5*u21^2*u02^2*u03^2+663552*u30*u10^5*u21*u01*u12^2*u03^2-221184*u30*u10^5*u21*u12^2*u02^2*u03-110592*u30*u10^5*u01*u12^4*u03+36864*u30*u10^5*u12^4*u02^2+1492992*u30*u10^4*u00*u21^2*u11*u03^3-995328*u30*u10^4*u00*u21^2*u12*u02*u03^2-995328*u30*u10^4*u00*u21*u11*u12^2*u03^2+663552*u30*u10^4*u00*u21*u12^3*u02*u03+165888*u30*u10^4*u00*u11*u12^4*u03-110592*u30*u10^4*u00*u12^5*u02+829440*u30*u10^4*u21^2*u11*u01*u02*u03^2-331776*u30*u10^4*u21^2*u11*u02^3*u03-331776*u30*u10^4*u21^2*u01^2*u12*u03^2+221184*u30*u10^4*u21^2*u01*u12*u02^2*u03-331776*u30*u10^4*u21*u11^2*u01*u12*u03^2+110592*u30*u10^4*u21*u11^2*u12*u02^2*u03-221184*u30*u10^4*u21*u11*u01*u12^2*u02*u03+110592*u30*u10^4*u21*u11*u12^2*u02^3-73728*u30*u10^4*u21*u01*u12^3*u02^2+110592*u30*u10^4*u11^2*u01*u12^3*u03-36864*u30*u10^4*u11^2*u12^3*u02^2-18432*u30*u10^4*u11*u01*u12^4*u02+36864*u30*u10^4*u01^2*u12^5-1990656*u30*u10^3*u00*u21^3*u01*u02*u03^2+663552*u30*u10^3*u00*u21^3*u02^3*u03-1492992*u30*u10^3*u00*u21^2*u11^2*u02*u03^2+1990656*u30*u10^3*u00*u21^2*u11*u01*u12*u03^2+663552*u30*u10^3*u00*u21^2*u11*u12*u02^2*u03-221184*u30*u10^3*u00*u21^2*u12^2*u02^3+497664*u30*u10^3*u00*u21*u11^3*u12*u03^2+165888*u30*u10^3*u00*u21*u11^2*u12^2*u02*u03-663552*u30*u10^3*u00*u21*u11*u01*u12^3*u03-221184*u30*u10^3*u00*u21*u11*u12^3*u02^2+221184*u30*u10^3*u00*u21*u01*u12^4*u02-165888*u30*u10^3*u00*u11^3*u12^3*u03+110592*u30*u10^3*u00*u11^2*u12^4*u02+663552*u30*u10^3*u21^3*u01^3*u03^2-221184*u30*u10^3*u21^3*u01^2*u02^2*u03-331776*u30*u10^3*u21^2*u11^2*u01^2*u03^2+27648*u30*u10^3*u21^2*u11^2*u01*u02^2*u03+82944*u30*u10^3*u21^2*u11^2*u02^4-110592*u30*u10^3*u21^2*u11*u01^2*u12*u02*u03-110592*u30*u10^3*u21^2*u11*u01*u12*u02^3-110592*u30*u10^3*u21^2*u01^3*u12^2*u03+110592*u30*u10^3*u21^2*u01^2*u12^2*u02^2+41472*u30*u10^3*u21*u11^4*u01*u03^2-13824*u30*u10^3*u21*u11^4*u02^2*u03+110592*u30*u10^3*u21*u11^3*u01*u12*u02*u03-55296*u30*u10^3*u21*u11^3*u12*u02^3+110592*u30*u10^3*u21*u11^2*u01^2*u12^2*u03-55296*u30*u10^3*u21*u11^2*u01*u12^2*u02^2+147456*u30*u10^3*u21*u11*u01^2*u12^3*u02-73728*u30*u10^3*u21*u01^3*u12^4-41472*u30*u10^3*u11^4*u01*u12^2*u03+13824*u30*u10^3*u11^4*u12^2*u02^2+18432*u30*u10^3*u11^3*u01*u12^3*u02-36864*u30*u10^3*u11^2*u01^2*u12^4+2985984*u30*u10^2*u00^2*u21^3*u11*u02*u03^2-1990656*u30*u10^2*u00^2*u21^3*u12*u02^2*u03-1492992*u30*u10^2*u00^2*u21^2*u11^2*u12*u03^2+663552*u30*u10^2*u00^2*u21^2*u12^3*u02^2+497664*u30*u10^2*u00^2*u21*u11^2*u12^3*u03-331776*u30*u10^2*u00^2*u21*u11*u12^4*u02-995328*u30*u10^2*u00*u21^3*u11*u01^2*u03^2+663552*u30*u10^2*u00*u21^3*u11*u01*u02^2*u03-331776*u30*u10^2*u00*u21^3*u11*u02^4+663552*u30*u10^2*u00*u21^3*u01^2*u12*u02*u03+221184*u30*u10^2*u00*u21^3*u01*u12*u02^3+497664*u30*u10^2*u00*u21^2*u11^3*u01*u03^2+373248*u30*u10^2*u00*u21^2*u11^3*u02^2*u03-1492992*u30*u10^2*u00*u21^2*u11^2*u01*u12*u02*u03+27648*u30*u10^2*u00*u21^2*u11^2*u12*u02^3+497664*u30*u10^2*u00*u21^2*u11*u01^2*u12^2*u03+331776*u30*u10^2*u00*u21^2*u11*u01*u12^2*u02^2-552960*u30*u10^2*u00*u21^2*u01^2*u12^3*u02-62208*u30*u10^2*u00*u21*u11^5*u03^2-207360*u30*u10^2*u00*u21*u11^4*u12*u02*u03+165888*u30*u10^2*u00*u21*u11^3*u01*u12^2*u03+110592*u30*u10^2*u00*u21*u11^3*u12^2*u02^2-55296*u30*u10^2*u00*u21*u11^2*u01*u12^3*u02+110592*u30*u10^2*u00*u21*u11*u01^2*u12^4+62208*u30*u10^2*u00*u11^5*u12^2*u03-41472*u30*u10^2*u00*u11^4*u12^3*u02-221184*u30*u10^2*u21^3*u11*u01^3*u02*u03+110592*u30*u10^2*u21^3*u11*u01^2*u02^3-73728*u30*u10^2*u21^3*u01^3*u12*u02^2+110592*u30*u10^2*u21^2*u11^3*u01^2*u02*u03-96768*u30*u10^2*u21^2*u11^3*u01*u02^3+110592*u30*u10^2*u21^2*u11^2*u01^3*u12*u03+138240*u30*u10^2*u21^2*u11^2*u01^2*u12*u02^2-165888*u30*u10^2*u21^2*u11*u01^3*u12^2*u02+110592*u30*u10^2*u21^2*u01^4*u12^3-13824*u30*u10^2*u21*u11^5*u01*u02*u03+6912*u30*u10^2*u21*u11^5*u02^3-55296*u30*u10^2*u21*u11^4*u01^2*u12*u03+41472*u30*u10^2*u21*u11^4*u01*u12*u02^2-55296*u30*u10^2*u21*u11^3*u01^2*u12^2*u02+6912*u30*u10^2*u11^6*u01*u12*u03-2304*u30*u10^2*u11^6*u12*u02^2-6912*u30*u10^2*u11^5*u01*u12^2*u02+13824*u30*u10^2*u11^4*u01^2*u12^3-995328*u30*u10*u00^2*u21^4*u01*u02^2*u03+331776*u30*u10*u00^2*u21^4*u02^4-1492992*u30*u10*u00^2*u21^3*u11^2*u02^2*u03+1990656*u30*u10*u00^2*u21^3*u11*u01*u12*u02*u03+663552*u30*u10*u00^2*u21^3*u11*u12*u02^3-663552*u30*u10*u00^2*u21^3*u01*u12^2*u02^2+1244160*u30*u10*u00^2*u21^2*u11^3*u12*u02*u03-746496*u30*u10*u00^2*u21^2*u11^2*u01*u12^2*u03-746496*u30*u10*u00^2*u21^2*u11^2*u12^2*u02^2+331776*u30*u10*u00^2*u21^2*u11*u01*u12^3*u02-248832*u30*u10*u00^2*u21*u11^4*u12^2*u03+165888*u30*u10*u00^2*u21*u11^3*u12^3*u02+663552*u30*u10*u00*u21^4*u01^3*u02*u03-221184*u30*u10*u00*u21^4*u01^2*u02^3+165888*u30*u10*u00*u21^3*u11^2*u01^2*u02*u03+276480*u30*u10*u00*u21^3*u11^2*u01*u02^3-663552*u30*u10*u00*u21^3*u11*u01^3*u12*u03-663552*u30*u10*u00*u21^3*u11*u01^2*u12*u02^2+442368*u30*u10*u00*u21^3*u01^3*u12^2*u02-207360*u30*u10*u00*u21^2*u11^4*u01*u02*u03-13824*u30*u10*u00*u21^2*u11^4*u02^3+165888*u30*u10*u00*u21^2*u11^3*u01^2*u12*u03-27648*u30*u10*u00*u21^2*u11^3*u01*u12*u02^2+331776*u30*u10*u00*u21^2*u11^2*u01^2*u12^2*u02-110592*u30*u10*u00*u21^2*u11*u01^3*u12^3+31104*u30*u10*u00*u21*u11^6*u02*u03+41472*u30*u10*u00*u21*u11^5*u01*u12*u03-13824*u30*u10*u00*u21*u11^5*u12*u02^2-13824*u30*u10*u00*u21*u11^4*u01*u12^2*u02-55296*u30*u10*u00*u21*u11^3*u01^2*u12^3-10368*u30*u10*u00*u11^7*u12*u03+6912*u30*u10*u00*u11^6*u12^2*u02-110592*u30*u10*u21^4*u01^5*u03+36864*u30*u10*u21^4*u01^4*u02^2+110592*u30*u10*u21^3*u11^2*u01^4*u03-92160*u30*u10*u21^3*u11^2*u01^3*u02^2+147456*u30*u10*u21^3*u11*u01^4*u12*u02-73728*u30*u10*u21^3*u01^5*u12^2-41472*u30*u10*u21^2*u11^4*u01^3*u03+41472*u30*u10*u21^2*u11^4*u01^2*u02^2-55296*u30*u10*u21^2*u11^3*u01^3*u12*u02+6912*u30*u10*u21*u11^6*u01^2*u03-5760*u30*u10*u21*u11^6*u01*u02^2+13824*u30*u10*u21*u11^4*u01^3*u12^2-432*u30*u10*u11^8*u01*u03+144*u30*u10*u11^8*u02^2+1152*u30*u10*u11^7*u01*u12*u02-2304*u30*u10*u11^6*u01^2*u12^2+1492992*u30*u00^3*u21^4*u11*u02^2*u03-995328*u30*u00^3*u21^4*u12*u02^3-1492992*u30*u00^3*u21^3*u11^2*u12*u02*u03+995328*u30*u00^3*u21^3*u11*u12^2*u02^2+373248*u30*u00^3*u21^2*u11^3*u12^2*u03-248832*u30*u00^3*u21^2*u11^2*u12^3*u02-995328*u30*u00^2*u21^4*u11*u01^2*u02*u03-165888*u30*u00^2*u21^4*u11*u01*u02^3+995328*u30*u00^2*u21^4*u01^2*u12*u02^2+497664*u30*u00^2*u21^3*u11^3*u01*u02*u03+497664*u30*u00^2*u21^3*u11^2*u01^2*u12*u03-165888*u30*u00^2*u21^3*u11^2*u01*u12*u02^2-663552*u30*u00^2*u21^3*u11*u01^2*u12^2*u02-62208*u30*u00^2*u21^2*u11^5*u02*u03-248832*u30*u00^2*u21^2*u11^4*u01*u12*u03+41472*u30*u00^2*u21^2*u11^4*u12*u02^2+124416*u30*u00^2*u21^2*u11^3*u01*u12^2*u02+82944*u30*u00^2*u21^2*u11^2*u01^2*u12^3+31104*u30*u00^2*u21*u11^6*u12*u03-20736*u30*u00^2*u21*u11^5*u12^2*u02+165888*u30*u00*u21^4*u11*u01^4*u03+110592*u30*u00*u21^4*u11*u01^3*u02^2-331776*u30*u00*u21^4*u01^4*u12*u02-165888*u30*u00*u21^3*u11^3*u01^3*u03-55296*u30*u00*u21^3*u11^3*u01^2*u02^2+165888*u30*u00*u21^3*u11^2*u01^3*u12*u02+110592*u30*u00*u21^3*u11*u01^4*u12^2+62208*u30*u00*u21^2*u11^5*u01^2*u03+6912*u30*u00*u21^2*u11^5*u01*u02^2-27648*u30*u00*u21^2*u11^4*u01^2*u12*u02-55296*u30*u00*u21^2*u11^3*u01^3*u12^2-10368*u30*u00*u21*u11^7*u01*u03+3456*u30*u00*u21*u11^6*u01*u12*u02+6912*u30*u00*u21*u11^5*u01^2*u12^2+648*u30*u00*u11^9*u03-432*u30*u00*u11^8*u12*u02-18432*u30*u21^4*u11*u01^5*u02+36864*u30*u21^4*u01^6*u12+18432*u30*u21^3*u11^3*u01^4*u02-36864*u30*u21^3*u11^2*u01^5*u12-6912*u30*u21^2*u11^5*u01^3*u02+13824*u30*u21^2*u11^4*u01^4*u12+1152*u30*u21*u11^7*u01^2*u02-2304*u30*u21*u11^6*u01^3*u12-72*u30*u11^9*u01*u02+144*u30*u11^8*u01^2*u12+110592*u20^6*u01^3*u03^3-110592*u20^6*u01^2*u02^2*u03^2+36864*u20^6*u01*u02^4*u03-4096*u20^6*u02^6-165888*u20^5*u10*u11*u01^2*u03^3+110592*u20^5*u10*u11*u01*u02^2*u03^2-18432*u20^5*u10*u11*u02^4*u03+110592*u20^5*u10*u01^2*u12*u02*u03^2-73728*u20^5*u10*u01*u12*u02^3*u03+12288*u20^5*u10*u12*u02^5-995328*u20^5*u00*u21*u01^2*u03^3+663552*u20^5*u00*u21*u01*u02^2*u03^2-110592*u20^5*u00*u21*u02^4*u03+331776*u20^5*u00*u01^2*u12^2*u03^2-221184*u20^5*u00*u01*u12^2*u02^2*u03+36864*u20^5*u00*u12^2*u02^4+110592*u20^5*u21*u01^3*u02*u03^2-73728*u20^5*u21*u01^2*u02^3*u03+12288*u20^5*u21*u01*u02^5+55296*u20^5*u11^2*u01^2*u02*u03^2-36864*u20^5*u11^2*u01*u02^3*u03+6144*u20^5*u11^2*u02^5-165888*u20^5*u11*u01^3*u12*u03^2+110592*u20^5*u11*u01^2*u12*u02^2*u03-18432*u20^5*u11*u01*u12*u02^4+331776*u20^4*u10^2*u21*u01^2*u03^3-221184*u20^4*u10^2*u21*u01*u02^2*u03^2+36864*u20^4*u10^2*u21*u02^4*u03+82944*u20^4*u10^2*u11^2*u01*u03^3-27648*u20^4*u10^2*u11^2*u02^2*u03^2-110592*u20^4*u10^2*u11*u01*u12*u02*u03^2+36864*u20^4*u10^2*u11*u12*u02^3*u03-110592*u20^4*u10^2*u01^2*u12^2*u03^2+110592*u20^4*u10^2*u01*u12^2*u02^2*u03-24576*u20^4*u10^2*u12^2*u02^4+995328*u20^4*u10*u00*u21*u11*u01*u03^3-331776*u20^4*u10*u00*u21*u11*u02^2*u03^2-663552*u20^4*u10*u00*u21*u01*u12*u02*u03^2+221184*u20^4*u10*u00*u21*u12*u02^3*u03-331776*u20^4*u10*u00*u11*u01*u12^2*u03^2+110592*u20^4*u10*u00*u11*u12^2*u02^2*u03+221184*u20^4*u10*u00*u01*u12^3*u02*u03-73728*u20^4*u10*u00*u12^3*u02^3-276480*u20^4*u10*u21*u11*u01^2*u02*u03^2+147456*u20^4*u10*u21*u11*u01*u02^3*u03-18432*u20^4*u10*u21*u11*u02^5+110592*u20^4*u10*u21*u01^3*u12*u03^2-12288*u20^4*u10*u21*u01*u12*u02^4-55296*u20^4*u10*u11^3*u01*u02*u03^2+18432*u20^4*u10*u11^3*u02^3*u03+221184*u20^4*u10*u11^2*u01^2*u12*u03^2-55296*u20^4*u10*u11^2*u01*u12*u02^2*u03-6144*u20^4*u10*u11^2*u12*u02^4-110592*u20^4*u10*u11*u01^2*u12^2*u02*u03+36864*u20^4*u10*u11*u01*u12^2*u02^3+2985984*u20^4*u00^2*u21^2*u01*u03^3-995328*u20^4*u00^2*u21^2*u02^2*u03^2-1990656*u20^4*u00^2*u21*u01*u12^2*u03^2+663552*u20^4*u00^2*u21*u12^2*u02^2*u03+331776*u20^4*u00^2*u01*u12^4*u03-110592*u20^4*u00^2*u12^4*u02^2-331776*u20^4*u00*u21^2*u01^2*u02*u03^2+36864*u20^4*u00*u21^2*u02^5-331776*u20^4*u00*u21*u11^2*u01*u02*u03^2+110592*u20^4*u00*u21*u11^2*u02^3*u03+829440*u20^4*u00*u21*u11*u01^2*u12*u03^2-221184*u20^4*u00*u21*u11*u01*u12*u02^2*u03-18432*u20^4*u00*u21*u11*u12*u02^4+221184*u20^4*u00*u21*u01^2*u12^2*u02*u03-73728*u20^4*u00*u21*u01*u12^2*u02^3+110592*u20^4*u00*u11^2*u01*u12^2*u02*u03-36864*u20^4*u00*u11^2*u12^2*u02^3-331776*u20^4*u00*u11*u01^2*u12^3*u03+110592*u20^4*u00*u11*u01*u12^3*u02^2-110592*u20^4*u21^2*u01^4*u03^2+110592*u20^4*u21^2*u01^3*u02^2*u03-24576*u20^4*u21^2*u01^2*u02^4+55296*u20^4*u21*u11^2*u01^3*u03^2-6144*u20^4*u21*u11^2*u01*u02^4-110592*u20^4*u21*u11*u01^3*u12*u02*u03+36864*u20^4*u21*u11*u01^2*u12*u02^3-6912*u20^4*u11^4*u01^2*u03^2+13824*u20^4*u11^4*u01*u02^2*u03-3840*u20^4*u11^4*u02^4-55296*u20^4*u11^3*u01^2*u12*u02*u03+18432*u20^4*u11^3*u01*u12*u02^3+82944*u20^4*u11^2*u01^3*u12^2*u03-27648*u20^4*u11^2*u01^2*u12^2*u02^2-331776*u20^3*u10^3*u21*u11*u01*u03^3+110592*u20^3*u10^3*u21*u11*u02^2*u03^2+221184*u20^3*u10^3*u21*u01*u12*u02*u03^2-73728*u20^3*u10^3*u21*u12*u02^3*u03-13824*u20^3*u10^3*u11^3*u03^3+27648*u20^3*u10^3*u11^2*u12*u02*u03^2+110592*u20^3*u10^3*u11*u01*u12^2*u03^2-55296*u20^3*u10^3*u11*u12^2*u02^2*u03-73728*u20^3*u10^3*u01*u12^3*u02*u03+28672*u20^3*u10^3*u12^3*u02^3-1990656*u20^3*u10^2*u00*u21^2*u01*u03^3+663552*u20^3*u10^2*u00*u21^2*u02^2*u03^2-248832*u20^3*u10^2*u00*u21*u11^2*u03^3+331776*u20^3*u10^2*u00*u21*u11*u12*u02*u03^2+1327104*u20^3*u10^2*u00*u21*u01*u12^2*u03^2-552960*u20^3*u10^2*u00*u21*u12^2*u02^2*u03+82944*u20^3*u10^2*u00*u11^2*u12^2*u03^2-110592*u20^3*u10^2*u00*u11*u12^3*u02*u03-221184*u20^3*u10^2*u00*u01*u12^4*u03+110592*u20^3*u10^2*u00*u12^4*u02^2+221184*u20^3*u10^2*u21^2*u01^2*u02*u03^2-73728*u20^3*u10^2*u21^2*u01*u02^3*u03+304128*u20^3*u10^2*u21*u11^2*u01*u02*u03^2-92160*u20^3*u10^2*u21*u11^2*u02^3*u03-442368*u20^3*u10^2*u21*u11*u01^2*u12*u03^2+36864*u20^3*u10^2*u21*u11*u12*u02^4+12288*u20^3*u10^2*u21*u01*u12^2*u02^3+13824*u20^3*u10^2*u11^4*u02*u03^2-96768*u20^3*u10^2*u11^3*u01*u12*u03^2+55296*u20^3*u10^2*u11^2*u01*u12^2*u02*u03+6144*u20^3*u10^2*u11^2*u12^2*u02^3+110592*u20^3*u10^2*u11*u01^2*u12^3*u03-55296*u20^3*u10^2*u11*u01*u12^3*u02^2-1492992*u20^3*u10*u00^2*u21^2*u11*u03^3+995328*u20^3*u10*u00^2*u21^2*u12*u02*u03^2+995328*u20^3*u10*u00^2*u21*u11*u12^2*u03^2-663552*u20^3*u10*u00^2*u21*u12^3*u02*u03-165888*u20^3*u10*u00^2*u11*u12^4*u03+110592*u20^3*u10*u00^2*u12^5*u02+995328*u20^3*u10*u00*u21^2*u11*u01*u02*u03^2-221184*u20^3*u10*u00*u21^2*u11*u02^3*u03-663552*u20^3*u10*u00*u21^2*u01^2*u12*u03^2+221184*u20^3*u10*u00*u21^2*u01*u12*u02^2*u03-73728*u20^3*u10*u00*u21^2*u12*u02^4+165888*u20^3*u10*u00*u21*u11^3*u02*u03^2-663552*u20^3*u10*u00*u21*u11^2*u01*u12*u03^2-55296*u20^3*u10*u00*u21*u11^2*u12*u02^2*u03-221184*u20^3*u10*u00*u21*u11*u01*u12^2*u02*u03+147456*u20^3*u10*u00*u21*u11*u12^2*u02^3+221184*u20^3*u10*u00*u21*u01^2*u12^3*u03-55296*u20^3*u10*u00*u11^3*u12^2*u02*u03+276480*u20^3*u10*u00*u11^2*u01*u12^3*u03-110592*u20^3*u10*u00*u11*u01*u12^4*u02+110592*u20^3*u10*u21^2*u11*u01^3*u03^2-165888*u20^3*u10*u21^2*u11*u01^2*u02^2*u03+36864*u20^3*u10*u21^2*u11*u01*u02^4+12288*u20^3*u10*u21^2*u01^2*u12*u02^3-55296*u20^3*u10*u21*u11^3*u01^2*u03^2-55296*u20^3*u10*u21*u11^3*u01*u02^2*u03+18432*u20^3*u10*u21*u11^3*u02^4+331776*u20^3*u10*u21*u11^2*u01^2*u12*u02*u03-79872*u20^3*u10*u21*u11^2*u01*u12*u02^3-110592*u20^3*u10*u21*u11*u01^3*u12^2*u03+6912*u20^3*u10*u11^5*u01*u03^2-6912*u20^3*u10*u11^5*u02^2*u03+41472*u20^3*u10*u11^4*u01*u12*u02*u03-1536*u20^3*u10*u11^4*u12*u02^3-96768*u20^3*u10*u11^3*u01^2*u12^2*u03+27648*u20^3*u10*u11^2*u01^2*u12^3*u02-2985984*u20^3*u00^3*u21^3*u03^3+2985984*u20^3*u00^3*u21^2*u12^2*u03^2-995328*u20^3*u00^3*u21*u12^4*u03+110592*u20^3*u00^3*u12^6-995328*u20^3*u00^2*u21^3*u01*u02*u03^2+663552*u20^3*u00^2*u21^3*u02^3*u03+497664*u20^3*u00^2*u21^2*u11^2*u02*u03^2-497664*u20^3*u00^2*u21^2*u11*u01*u12*u03^2-331776*u20^3*u00^2*u21^2*u11*u12*u02^2*u03-221184*u20^3*u00^2*u21^2*u12^2*u02^3-331776*u20^3*u00^2*u21*u11^2*u12^2*u02*u03+663552*u20^3*u00^2*u21*u11*u01*u12^3*u03+110592*u20^3*u00^2*u21*u11*u12^3*u02^2+110592*u20^3*u00^2*u21*u01*u12^4*u02+55296*u20^3*u00^2*u11^2*u12^4*u02-165888*u20^3*u00^2*u11*u01*u12^5+663552*u20^3*u00*u21^3*u01^3*u03^2-110592*u20^3*u00*u21^3*u01^2*u02^2*u03-73728*u20^3*u00*u21^3*u01*u02^4-331776*u20^3*u00*u21^2*u11^2*u01^2*u03^2+110592*u20^3*u00*u21^2*u11^2*u01*u02^2*u03-36864*u20^3*u00*u21^2*u11^2*u02^4-110592*u20^3*u00*u21^2*u11*u01^2*u12*u02*u03+147456*u20^3*u00*u21^2*u11*u01*u12*u02^3-221184*u20^3*u00*u21^2*u01^3*u12^2*u03+110592*u20^3*u00*u21^2*u01^2*u12^2*u02^2+41472*u20^3*u00*u21*u11^4*u01*u03^2-41472*u20^3*u00*u21*u11^4*u02^2*u03+110592*u20^3*u00*u21*u11^3*u01*u12*u02*u03+18432*u20^3*u00*u21*u11^3*u12*u02^3+27648*u20^3*u00*u21*u11^2*u01^2*u12^2*u03-55296*u20^3*u00*u21*u11^2*u01*u12^2*u02^2-110592*u20^3*u00*u21*u11*u01^2*u12^3*u02-13824*u20^3*u00*u11^4*u01*u12^2*u03+13824*u20^3*u00*u11^4*u12^2*u02^2-55296*u20^3*u00*u11^3*u01*u12^3*u02+82944*u20^3*u00*u11^2*u01^2*u12^4-73728*u20^3*u21^3*u01^4*u02*u03+28672*u20^3*u21^3*u01^3*u02^3+6144*u20^3*u21^2*u11^2*u01^2*u02^3+110592*u20^3*u21^2*u11*u01^4*u12*u03-55296*u20^3*u21^2*u11*u01^3*u12*u02^2+13824*u20^3*u21*u11^4*u01^2*u02*u03-1536*u20^3*u21*u11^4*u01*u02^3-55296*u20^3*u21*u11^3*u01^3*u12*u03+27648*u20^3*u21*u11^2*u01^3*u12^2*u02-2304*u20^3*u11^6*u01*u02*u03+1280*u20^3*u11^6*u02^3+6912*u20^3*u11^5*u01^2*u12*u03-6912*u20^3*u11^5*u01*u12*u02^2+13824*u20^3*u11^4*u01^2*u12^2*u02-13824*u20^3*u11^3*u01^3*u12^3+331776*u20^2*u10^4*u21^2*u01*u03^3-110592*u20^2*u10^4*u21^2*u02^2*u03^2+82944*u20^2*u10^4*u21*u11^2*u03^3-110592*u20^2*u10^4*u21*u11*u12*u02*u03^2-221184*u20^2*u10^4*u21*u01*u12^2*u03^2+110592*u20^2*u10^4*u21*u12^2*u02^2*u03-27648*u20^2*u10^4*u11^2*u12^2*u03^2+36864*u20^2*u10^4*u11*u12^3*u02*u03+36864*u20^2*u10^4*u01*u12^4*u03-24576*u20^2*u10^4*u12^4*u02^2+995328*u20^2*u10^3*u00*u21^2*u11*u03^3-663552*u20^2*u10^3*u00*u21^2*u12*u02*u03^2-663552*u20^2*u10^3*u00*u21*u11*u12^2*u03^2+442368*u20^2*u10^3*u00*u21*u12^3*u02*u03+110592*u20^2*u10^3*u00*u11*u12^4*u03-73728*u20^2*u10^3*u00*u12^5*u02-442368*u20^2*u10^3*u21^2*u11*u01*u02*u03^2+110592*u20^2*u10^3*u21^2*u11*u02^3*u03+221184*u20^2*u10^3*u21^2*u01^2*u12*u03^2-96768*u20^2*u10^3*u21*u11^3*u02*u03^2+304128*u20^2*u10^3*u21*u11^2*u01*u12*u03^2+55296*u20^2*u10^3*u21*u11^2*u12*u02^2*u03-55296*u20^2*u10^3*u21*u11*u12^2*u02^3-73728*u20^2*u10^3*u21*u01^2*u12^3*u03+12288*u20^2*u10^3*u21*u01*u12^3*u02^2+13824*u20^2*u10^3*u11^4*u12*u03^2-92160*u20^2*u10^3*u11^2*u01*u12^3*u03+6144*u20^2*u10^3*u11^2*u12^3*u02^2+36864*u20^2*u10^3*u11*u01*u12^4*u02+2985984*u20^2*u10^2*u00^2*u21^3*u03^3-2985984*u20^2*u10^2*u00^2*u21^2*u12^2*u03^2+995328*u20^2*u10^2*u00^2*u21*u12^4*u03-110592*u20^2*u10^2*u00^2*u12^6-221184*u20^2*u10^2*u00*u21^3*u02^3*u03-746496*u20^2*u10^2*u00*u21^2*u11^2*u02*u03^2+995328*u20^2*u10^2*u00*u21^2*u11*u01*u12*u03^2+331776*u20^2*u10^2*u00*u21^2*u11*u12*u02^2*u03+110592*u20^2*u10^2*u00*u21^2*u12^2*u02^3+124416*u20^2*u10^2*u00*u21*u11^3*u12*u03^2+331776*u20^2*u10^2*u00*u21*u11^2*u12^2*u02*u03-663552*u20^2*u10^2*u00*u21*u11*u01*u12^3*u03-165888*u20^2*u10^2*u00*u21*u11*u12^3*u02^2-55296*u20^2*u10^2*u00*u11^3*u12^3*u03+110592*u20^2*u10^2*u00*u11*u01*u12^5-221184*u20^2*u10^2*u21^3*u01^3*u03^2+110592*u20^2*u10^2*u21^3*u01^2*u02^2*u03+82944*u20^2*u10^2*u21^2*u11^2*u01^2*u03^2+138240*u20^2*u10^2*u21^2*u11^2*u01*u02^2*u03-27648*u20^2*u10^2*u21^2*u11^2*u02^4-221184*u20^2*u10^2*u21^2*u11*u01^2*u12*u02*u03+110592*u20^2*u10^2*u21^2*u01^3*u12^2*u03-36864*u20^2*u10^2*u21^2*u01^2*u12^2*u02^2+41472*u20^2*u10^2*u21*u11^4*u02^2*u03-248832*u20^2*u10^2*u21*u11^3*u01*u12*u02*u03+138240*u20^2*u10^2*u21*u11^2*u01^2*u12^2*u03+73728*u20^2*u10^2*u21*u11^2*u01*u12^2*u02^2-1728*u20^2*u10^2*u11^6*u03^2-6912*u20^2*u10^2*u11^5*u12*u02*u03+41472*u20^2*u10^2*u11^4*u01*u12^2*u03-2304*u20^2*u10^2*u11^4*u12^2*u02^2-27648*u20^2*u10^2*u11^2*u01^2*u12^4-497664*u20^2*u10*u00^2*u21^3*u11*u02*u03^2+995328*u20^2*u10*u00^2*u21^3*u01*u12*u03^2-663552*u20^2*u10*u00^2*u21^3*u12*u02^2*u03+995328*u20^2*u10*u00^2*u21^2*u11*u12^2*u02*u03-663552*u20^2*u10*u00^2*u21^2*u01*u12^3*u03+221184*u20^2*u10*u00^2*u21^2*u12^3*u02^2-165888*u20^2*u10*u00^2*u21*u11^2*u12^3*u03-276480*u20^2*u10*u00^2*u21*u11*u12^4*u02+110592*u20^2*u10*u00^2*u21*u01*u12^5+55296*u20^2*u10*u00^2*u11^2*u12^5-331776*u20^2*u10*u00*u21^3*u11*u01^2*u03^2-110592*u20^2*u10*u00*u21^3*u11*u01*u02^2*u03+110592*u20^2*u10*u00*u21^3*u11*u02^4+221184*u20^2*u10*u00*u21^3*u01^2*u12*u02*u03+165888*u20^2*u10*u00*u21^2*u11^3*u01*u03^2+110592*u20^2*u10*u00*u21^2*u11^3*u02^2*u03-331776*u20^2*u10*u00*u21^2*u11^2*u01*u12*u02*u03-55296*u20^2*u10*u00*u21^2*u11^2*u12*u02^3+331776*u20^2*u10*u00*u21^2*u11*u01^2*u12^2*u03-221184*u20^2*u10*u00*u21^2*u11*u01*u12^2*u02^2-20736*u20^2*u10*u00*u21*u11^5*u03^2-13824*u20^2*u10*u00*u21*u11^4*u12*u02*u03-27648*u20^2*u10*u00*u21*u11^3*u01*u12^2*u03-55296*u20^2*u10*u00*u21*u11^3*u12^2*u02^2+331776*u20^2*u10*u00*u21*u11^2*u01*u12^3*u02-110592*u20^2*u10*u00*u21*u11*u01^2*u12^4+6912*u20^2*u10*u00*u11^5*u12^2*u03+13824*u20^2*u10*u00*u11^4*u12^3*u02-55296*u20^2*u10*u00*u11^3*u01*u12^4+147456*u20^2*u10*u21^3*u11*u01^3*u02*u03-55296*u20^2*u10*u21^3*u11*u01^2*u02^3-73728*u20^2*u10*u21^3*u01^4*u12*u03+12288*u20^2*u10*u21^3*u01^3*u12*u02^2-55296*u20^2*u10*u21^2*u11^3*u01^2*u02*u03-55296*u20^2*u10*u21^2*u11^2*u01^3*u12*u03+73728*u20^2*u10*u21^2*u11^2*u01^2*u12*u02^2-6912*u20^2*u10*u21*u11^5*u02^3+41472*u20^2*u10*u21*u11^4*u01^2*u12*u03+36864*u20^2*u10*u21*u11^4*u01*u12*u02^2-96768*u20^2*u10*u21*u11^3*u01^2*u12^2*u02+27648*u20^2*u10*u21*u11^2*u01^3*u12^3+1152*u20^2*u10*u11^7*u02*u03-5760*u20^2*u10*u11^6*u01*u12*u03+1536*u20^2*u10*u11^6*u12*u02^2-6912*u20^2*u10*u11^5*u01*u12^2*u02+13824*u20^2*u10*u11^4*u01^2*u12^3+2985984*u20^2*u00^3*u21^4*u02*u03^2-1492992*u20^2*u00^3*u21^3*u11*u12*u03^2-1990656*u20^2*u00^3*u21^3*u12^2*u02*u03+995328*u20^2*u00^3*u21^2*u11*u12^3*u03+331776*u20^2*u00^3*u21^2*u12^4*u02-165888*u20^2*u00^3*u21*u11*u12^5-995328*u20^2*u00^2*u21^4*u01^2*u03^2-331776*u20^2*u00^2*u21^4*u01*u02^2*u03-110592*u20^2*u00^2*u21^4*u02^4+497664*u20^2*u00^2*u21^3*u11^2*u01*u03^2-331776*u20^2*u00^2*u21^3*u11^2*u02^2*u03+995328*u20^2*u00^2*u21^3*u11*u01*u12*u02*u03+110592*u20^2*u00^2*u21^3*u11*u12*u02^3+663552*u20^2*u00^2*u21^3*u01^2*u12^2*u03+221184*u20^2*u00^2*u21^3*u01*u12^2*u02^2-62208*u20^2*u00^2*u21^2*u11^4*u03^2+165888*u20^2*u00^2*u21^2*u11^3*u12*u02*u03-746496*u20^2*u00^2*u21^2*u11^2*u01*u12^2*u03+82944*u20^2*u00^2*u21^2*u11^2*u12^2*u02^2-442368*u20^2*u00^2*u21^2*u11*u01*u12^3*u02-110592*u20^2*u00^2*u21^2*u01^2*u12^4+41472*u20^2*u00^2*u21*u11^4*u12^2*u03-55296*u20^2*u00^2*u21*u11^3*u12^3*u02+221184*u20^2*u00^2*u21*u11^2*u01*u12^4-6912*u20^2*u00^2*u11^4*u12^4+110592*u20^2*u00*u21^4*u01^2*u02^3+110592*u20^2*u00*u21^3*u11^2*u01^2*u02*u03-221184*u20^2*u00*u21^3*u11*u01^3*u12*u03-165888*u20^2*u00*u21^3*u11*u01^2*u12*u02^2-73728*u20^2*u00*u21^3*u01^3*u12^2*u02-55296*u20^2*u00*u21^2*u11^4*u01*u02*u03+13824*u20^2*u00*u21^2*u11^4*u02^3+110592*u20^2*u00*u21^2*u11^3*u01^2*u12*u03-55296*u20^2*u00*u21^2*u11^3*u01*u12*u02^2+138240*u20^2*u00*u21^2*u11^2*u01^2*u12^2*u02+110592*u20^2*u00*u21^2*u11*u01^3*u12^3+6912*u20^2*u00*u21*u11^6*u02*u03-13824*u20^2*u00*u21*u11^5*u01*u12*u03-6912*u20^2*u00*u21*u11^5*u12*u02^2+41472*u20^2*u00*u21*u11^4*u01*u12^2*u02-96768*u20^2*u00*u21*u11^3*u01^2*u12^3-2304*u20^2*u00*u11^6*u12^2*u02+6912*u20^2*u00*u11^5*u01*u12^3+36864*u20^2*u21^4*u01^5*u03-24576*u20^2*u21^4*u01^4*u02^2-36864*u20^2*u21^3*u11^2*u01^4*u03+6144*u20^2*u21^3*u11^2*u01^3*u02^2+36864*u20^2*u21^3*u11*u01^4*u12*u02+13824*u20^2*u21^2*u11^4*u01^3*u03-2304*u20^2*u21^2*u11^4*u01^2*u02^2-27648*u20^2*u21^2*u11^2*u01^4*u12^2-2304*u20^2*u21*u11^6*u01^2*u03+1536*u20^2*u21*u11^6*u01*u02^2-6912*u20^2*u21*u11^5*u01^2*u12*u02+13824*u20^2*u21*u11^4*u01^3*u12^2+144*u20^2*u11^8*u01*u03-240*u20^2*u11^8*u02^2+1152*u20^2*u11^7*u01*u12*u02-1728*u20^2*u11^6*u01^2*u12^2-165888*u20*u10^5*u21^2*u11*u03^3+110592*u20*u10^5*u21^2*u12*u02*u03^2+110592*u20*u10^5*u21*u11*u12^2*u03^2-73728*u20*u10^5*u21*u12^3*u02*u03-18432*u20*u10^5*u11*u12^4*u03+12288*u20*u10^5*u12^5*u02-995328*u20*u10^4*u00*u21^3*u03^3+995328*u20*u10^4*u00*u21^2*u12^2*u03^2-331776*u20*u10^4*u00*u21*u12^4*u03+36864*u20*u10^4*u00*u12^6+110592*u20*u10^4*u21^3*u01*u02*u03^2+221184*u20*u10^4*u21^2*u11^2*u02*u03^2-276480*u20*u10^4*u21^2*u11*u01*u12*u03^2-110592*u20*u10^4*u21^2*u11*u12*u02^2*u03-55296*u20*u10^4*u21*u11^3*u12*u03^2-55296*u20*u10^4*u21*u11^2*u12^2*u02*u03+147456*u20*u10^4*u21*u11*u01*u12^3*u03+36864*u20*u10^4*u21*u11*u12^3*u02^2-12288*u20*u10^4*u21*u01*u12^4*u02+18432*u20*u10^4*u11^3*u12^3*u03-6144*u20*u10^4*u11^2*u12^4*u02-18432*u20*u10^4*u11*u01*u12^5+663552*u20*u10^3*u00*u21^3*u11*u02*u03^2-663552*u20*u10^3*u00*u21^3*u01*u12*u03^2+221184*u20*u10^3*u00*u21^3*u12*u02^2*u03-165888*u20*u10^3*u00*u21^2*u11^2*u12*u03^2-663552*u20*u10^3*u00*u21^2*u11*u12^2*u02*u03+442368*u20*u10^3*u00*u21^2*u01*u12^3*u03-73728*u20*u10^3*u00*u21^2*u12^3*u02^2+165888*u20*u10^3*u00*u21*u11^2*u12^3*u03+147456*u20*u10^3*u00*u21*u11*u12^4*u02-73728*u20*u10^3*u00*u21*u01*u12^5-36864*u20*u10^3*u00*u11^2*u12^5+110592*u20*u10^3*u21^3*u11*u01^2*u03^2-110592*u20*u10^3*u21^3*u11*u01*u02^2*u03-55296*u20*u10^3*u21^2*u11^3*u01*u03^2-96768*u20*u10^3*u21^2*u11^3*u02^2*u03+331776*u20*u10^3*u21^2*u11^2*u01*u12*u02*u03+27648*u20*u10^3*u21^2*u11^2*u12*u02^3-165888*u20*u10^3*u21^2*u11*u01^2*u12^2*u03+12288*u20*u10^3*u21^2*u01^2*u12^3*u02+6912*u20*u10^3*u21*u11^5*u03^2+41472*u20*u10^3*u21*u11^4*u12*u02*u03-55296*u20*u10^3*u21*u11^3*u01*u12^2*u03-79872*u20*u10^3*u21*u11^2*u01*u12^3*u02+36864*u20*u10^3*u21*u11*u01^2*u12^4-6912*u20*u10^3*u11^5*u12^2*u03-1536*u20*u10^3*u11^4*u12^3*u02+18432*u20*u10^3*u11^3*u01*u12^4-1990656*u20*u10^2*u00^2*u21^4*u02*u03^2+995328*u20*u10^2*u00^2*u21^3*u11*u12*u03^2+1327104*u20*u10^2*u00^2*u21^3*u12^2*u02*u03-663552*u20*u10^2*u00^2*u21^2*u11*u12^3*u03-221184*u20*u10^2*u00^2*u21^2*u12^4*u02+110592*u20*u10^2*u00^2*u21*u11*u12^5+663552*u20*u10^2*u00*u21^4*u01^2*u03^2+221184*u20*u10^2*u00*u21^4*u01*u02^2*u03-331776*u20*u10^2*u00*u21^3*u11^2*u01*u03^2+27648*u20*u10^2*u00*u21^3*u11^2*u02^2*u03-221184*u20*u10^2*u00*u21^3*u11*u01*u12*u02*u03-110592*u20*u10^2*u00*u21^3*u11*u12*u02^3-552960*u20*u10^2*u00*u21^3*u01^2*u12^2*u03+41472*u20*u10^2*u00*u21^2*u11^4*u03^2-27648*u20*u10^2*u00*u21^2*u11^3*u12*u02*u03+331776*u20*u10^2*u00*u21^2*u11^2*u01*u12^2*u03+138240*u20*u10^2*u00*u21^2*u11^2*u12^2*u02^2+110592*u20*u10^2*u00*u21^2*u01^2*u12^4-27648*u20*u10^2*u00*u21*u11^4*u12^2*u03-55296*u20*u10^2*u00*u21*u11^3*u12^3*u02-55296*u20*u10^2*u00*u21*u11^2*u01*u12^4+13824*u20*u10^2*u00*u11^4*u12^4-73728*u20*u10^2*u21^4*u01^3*u02*u03-55296*u20*u10^2*u21^3*u11^2*u01^2*u02*u03+27648*u20*u10^2*u21^3*u11^2*u01*u02^3+147456*u20*u10^2*u21^3*u11*u01^3*u12*u03+12288*u20*u10^2*u21^3*u01^3*u12^2*u02+41472*u20*u10^2*u21^2*u11^4*u01*u02*u03+13824*u20*u10^2*u21^2*u11^4*u02^3-55296*u20*u10^2*u21^2*u11^3*u01^2*u12*u03-96768*u20*u10^2*u21^2*u11^3*u01*u12*u02^2+73728*u20*u10^2*u21^2*u11^2*u01^2*u12^2*u02-55296*u20*u10^2*u21^2*u11*u01^3*u12^3-5760*u20*u10^2*u21*u11^6*u02*u03-6912*u20*u10^2*u21*u11^5*u12*u02^2+36864*u20*u10^2*u21*u11^4*u01*u12^2*u02+1152*u20*u10^2*u11^7*u12*u03+1536*u20*u10^2*u11^6*u12^2*u02-6912*u20*u10^2*u11^5*u01*u12^3+829440*u20*u10*u00^2*u21^4*u11*u02^2*u03-663552*u20*u10*u00^2*u21^4*u01*u12*u02*u03+110592*u20*u10*u00^2*u21^4*u12*u02^3-663552*u20*u10*u00^2*u21^3*u11^2*u12*u02*u03+331776*u20*u10*u00^2*u21^3*u11*u01*u12^2*u03-442368*u20*u10*u00^2*u21^3*u11*u12^2*u02^2+221184*u20*u10*u00^2*u21^3*u01*u12^3*u02+124416*u20*u10*u00^2*u21^2*u11^3*u12^2*u03+304128*u20*u10*u00^2*u21^2*u11^2*u12^3*u02-110592*u20*u10*u00^2*u21^2*u11*u01*u12^4-55296*u20*u10*u00^2*u21*u11^3*u12^4-221184*u20*u10*u00*u21^4*u11*u01^2*u02*u03-110592*u20*u10*u00*u21^4*u11*u01*u02^3+221184*u20*u10*u00*u21^4*u01^3*u12*u03+110592*u20*u10*u00*u21^3*u11^3*u01*u02*u03-55296*u20*u10*u00*u21^3*u11^3*u02^3-55296*u20*u10*u00*u21^3*u11^2*u01^2*u12*u03+331776*u20*u10*u00*u21^3*u11^2*u01*u12*u02^2-73728*u20*u10*u00*u21^3*u01^3*u12^3-13824*u20*u10*u00*u21^2*u11^5*u02*u03-13824*u20*u10*u00*u21^2*u11^4*u01*u12*u03+41472*u20*u10*u00*u21^2*u11^4*u12*u02^2-248832*u20*u10*u00*u21^2*u11^3*u01*u12^2*u02+55296*u20*u10*u00*u21^2*u11^2*u01^2*u12^3+3456*u20*u10*u00*u21*u11^6*u12*u03+41472*u20*u10*u00*u21*u11^4*u01*u12^3-2304*u20*u10*u00*u11^6*u12^3-18432*u20*u10*u21^4*u11*u01^4*u03+36864*u20*u10*u21^4*u11*u01^3*u02^2-12288*u20*u10*u21^4*u01^4*u12*u02+18432*u20*u10*u21^3*u11^3*u01^3*u03-79872*u20*u10*u21^3*u11^2*u01^3*u12*u02+36864*u20*u10*u21^3*u11*u01^4*u12^2-6912*u20*u10*u21^2*u11^5*u01^2*u03-6912*u20*u10*u21^2*u11^5*u01*u02^2+36864*u20*u10*u21^2*u11^4*u01^2*u12*u02+1152*u20*u10*u21*u11^7*u01*u03+1152*u20*u10*u21*u11^7*u02^2-2688*u20*u10*u21*u11^6*u01*u12*u02-6912*u20*u10*u21*u11^5*u01^2*u12^2-72*u20*u10*u11^9*u03-336*u20*u10*u11^8*u12*u02+1152*u20*u10*u11^7*u01*u12^2-995328*u20*u00^3*u21^5*u02^2*u03+995328*u20*u00^3*u21^4*u11*u12*u02*u03+331776*u20*u00^3*u21^4*u12^2*u02^2-248832*u20*u00^3*u21^3*u11^2*u12^2*u03-331776*u20*u00^3*u21^3*u11*u12^3*u02+82944*u20*u00^3*u21^2*u11^2*u12^4+663552*u20*u00^2*u21^5*u01^2*u02*u03+110592*u20*u00^2*u21^5*u01*u02^3-331776*u20*u00^2*u21^4*u11^2*u01*u02*u03+55296*u20*u00^2*u21^4*u11^2*u02^3-331776*u20*u00^2*u21^4*u11*u01^2*u12*u03-276480*u20*u00^2*u21^4*u11*u01*u12*u02^2-221184*u20*u00^2*u21^4*u01^2*u12^2*u02+41472*u20*u00^2*u21^3*u11^4*u02*u03+165888*u20*u00^2*u21^3*u11^3*u01*u12*u03-55296*u20*u00^2*u21^3*u11^3*u12*u02^2+304128*u20*u00^2*u21^3*u11^2*u01*u12^2*u02+110592*u20*u00^2*u21^3*u11*u01^2*u12^3-20736*u20*u00^2*u21^2*u11^5*u12*u03-96768*u20*u00^2*u21^2*u11^3*u01*u12^3+6912*u20*u00^2*u21*u11^5*u12^3-110592*u20*u00*u21^5*u01^4*u03-73728*u20*u00*u21^5*u01^3*u02^2+110592*u20*u00*u21^4*u11^2*u01^3*u03+147456*u20*u00*u21^4*u11*u01^3*u12*u02+36864*u20*u00*u21^4*u01^4*u12^2-41472*u20*u00*u21^3*u11^4*u01^2*u03+13824*u20*u00*u21^3*u11^4*u01*u02^2-55296*u20*u00*u21^3*u11^3*u01^2*u12*u02-92160*u20*u00*u21^3*u11^2*u01^3*u12^2+6912*u20*u00*u21^2*u11^6*u01*u03-2304*u20*u00*u21^2*u11^6*u02^2+41472*u20*u00*u21^2*u11^4*u01^2*u12^2-432*u20*u00*u21*u11^8*u03+1152*u20*u00*u21*u11^7*u12*u02-5760*u20*u00*u21*u11^6*u01*u12^2+144*u20*u00*u11^8*u12^2+12288*u20*u21^5*u01^5*u02-6144*u20*u21^4*u11^2*u01^4*u02-18432*u20*u21^4*u11*u01^5*u12-1536*u20*u21^3*u11^4*u01^3*u02+18432*u20*u21^3*u11^3*u01^4*u12+1536*u20*u21^2*u11^6*u01^2*u02-6912*u20*u21^2*u11^5*u01^3*u12-336*u20*u21*u11^8*u01*u02+1152*u20*u21*u11^7*u01^2*u12+24*u20*u11^10*u02-72*u20*u11^9*u01*u12+110592*u10^6*u21^3*u03^3-110592*u10^6*u21^2*u12^2*u03^2+36864*u10^6*u21*u12^4*u03-4096*u10^6*u12^6-165888*u10^5*u21^3*u11*u02*u03^2+110592*u10^5*u21^3*u01*u12*u03^2+55296*u10^5*u21^2*u11^2*u12*u03^2+110592*u10^5*u21^2*u11*u12^2*u02*u03-73728*u10^5*u21^2*u01*u12^3*u03-36864*u10^5*u21*u11^2*u12^3*u03-18432*u10^5*u21*u11*u12^4*u02+12288*u10^5*u21*u01*u12^5+6144*u10^5*u11^2*u12^5+331776*u10^4*u00*u21^4*u02*u03^2-165888*u10^4*u00*u21^3*u11*u12*u03^2-221184*u10^4*u00*u21^3*u12^2*u02*u03+110592*u10^4*u00*u21^2*u11*u12^3*u03+36864*u10^4*u00*u21^2*u12^4*u02-18432*u10^4*u00*u21*u11*u12^5-110592*u10^4*u21^4*u01^2*u03^2+55296*u10^4*u21^3*u11^2*u01*u03^2+82944*u10^4*u21^3*u11^2*u02^2*u03-110592*u10^4*u21^3*u11*u01*u12*u02*u03+110592*u10^4*u21^3*u01^2*u12^2*u03-6912*u10^4*u21^2*u11^4*u03^2-55296*u10^4*u21^2*u11^3*u12*u02*u03-27648*u10^4*u21^2*u11^2*u12^2*u02^2+36864*u10^4*u21^2*u11*u01*u12^3*u02-24576*u10^4*u21^2*u01^2*u12^4+13824*u10^4*u21*u11^4*u12^2*u03+18432*u10^4*u21*u11^3*u12^3*u02-6144*u10^4*u21*u11^2*u01*u12^4-3840*u10^4*u11^4*u12^4-331776*u10^3*u00*u21^4*u11*u02^2*u03+221184*u10^3*u00*u21^4*u01*u12*u02*u03+276480*u10^3*u00*u21^3*u11^2*u12*u02*u03-110592*u10^3*u00*u21^3*u11*u01*u12^2*u03+110592*u10^3*u00*u21^3*u11*u12^2*u02^2-73728*u10^3*u00*u21^3*u01*u12^3*u02-55296*u10^3*u00*u21^2*u11^3*u12^2*u03-92160*u10^3*u00*u21^2*u11^2*u12^3*u02+36864*u10^3*u00*u21^2*u11*u01*u12^4+18432*u10^3*u00*u21*u11^3*u12^4+110592*u10^3*u21^4*u11*u01^2*u02*u03-73728*u10^3*u21^4*u01^3*u12*u03-55296*u10^3*u21^3*u11^3*u01*u02*u03-13824*u10^3*u21^3*u11^3*u02^3+27648*u10^3*u21^3*u11^2*u01*u12*u02^2-55296*u10^3*u21^3*u11*u01^2*u12^2*u02+28672*u10^3*u21^3*u01^3*u12^3+6912*u10^3*u21^2*u11^5*u02*u03+13824*u10^3*u21^2*u11^4*u01*u12*u03+13824*u10^3*u21^2*u11^4*u12*u02^2+6144*u10^3*u21^2*u11^2*u01^2*u12^3-2304*u10^3*u21*u11^6*u12*u03-6912*u10^3*u21*u11^5*u12^2*u02-1536*u10^3*u21*u11^4*u01*u12^3+1280*u10^3*u11^6*u12^3+331776*u10^2*u00^2*u21^5*u02^2*u03-331776*u10^2*u00^2*u21^4*u11*u12*u02*u03-110592*u10^2*u00^2*u21^4*u12^2*u02^2+82944*u10^2*u00^2*u21^3*u11^2*u12^2*u03+110592*u10^2*u00^2*u21^3*u11*u12^3*u02-27648*u10^2*u00^2*u21^2*u11^2*u12^4-221184*u10^2*u00*u21^5*u01^2*u02*u03+110592*u10^2*u00*u21^4*u11^2*u01*u02*u03+82944*u10^2*u00*u21^4*u11^2*u02^3+110592*u10^2*u00*u21^4*u11*u01^2*u12*u03-110592*u10^2*u00*u21^4*u11*u01*u12*u02^2+110592*u10^2*u00*u21^4*u01^2*u12^2*u02-13824*u10^2*u00*u21^3*u11^4*u02*u03-55296*u10^2*u00*u21^3*u11^3*u01*u12*u03-96768*u10^2*u00*u21^3*u11^3*u12*u02^2+55296*u10^2*u00*u21^3*u11^2*u01*u12^2*u02-55296*u10^2*u00*u21^3*u11*u01^2*u12^3+6912*u10^2*u00*u21^2*u11^5*u12*u03+41472*u10^2*u00*u21^2*u11^4*u12^2*u02-6912*u10^2*u00*u21*u11^5*u12^3+36864*u10^2*u21^5*u01^4*u03-36864*u10^2*u21^4*u11^2*u01^3*u03-27648*u10^2*u21^4*u11^2*u01^2*u02^2+36864*u10^2*u21^4*u11*u01^3*u12*u02-24576*u10^2*u21^4*u01^4*u12^2+13824*u10^2*u21^3*u11^4*u01^2*u03+13824*u10^2*u21^3*u11^4*u01*u02^2+6144*u10^2*u21^3*u11^2*u01^3*u12^2-2304*u10^2*u21^2*u11^6*u01*u03-1728*u10^2*u21^2*u11^6*u02^2-6912*u10^2*u21^2*u11^5*u01*u12*u02-2304*u10^2*u21^2*u11^4*u01^2*u12^2+144*u10^2*u21*u11^8*u03+1152*u10^2*u21*u11^7*u12*u02+1536*u10^2*u21*u11^6*u01*u12^2-240*u10^2*u11^8*u12^2-165888*u10*u00^2*u21^5*u11*u02^3+110592*u10*u00^2*u21^5*u01*u12*u02^2+221184*u10*u00^2*u21^4*u11^2*u12*u02^2-110592*u10*u00^2*u21^4*u11*u01*u12^2*u02-96768*u10*u00^2*u21^3*u11^3*u12^2*u02+27648*u10*u00^2*u21^3*u11^2*u01*u12^3+13824*u10*u00^2*u21^2*u11^4*u12^3+110592*u10*u00*u21^5*u11*u01^2*u02^2-73728*u10*u00*u21^5*u01^3*u12*u02-55296*u10*u00*u21^4*u11^3*u01*u02^2-55296*u10*u00*u21^4*u11^2*u01^2*u12*u02+36864*u10*u00*u21^4*u11*u01^3*u12^2+6912*u10*u00*u21^3*u11^5*u02^2+41472*u10*u00*u21^3*u11^4*u01*u12*u02-5760*u10*u00*u21^2*u11^6*u12*u02-6912*u10*u00*u21^2*u11^5*u01*u12^2+1152*u10*u00*u21*u11^7*u12^2-18432*u10*u21^5*u11*u01^4*u02+12288*u10*u21^5*u01^5*u12+18432*u10*u21^4*u11^3*u01^3*u02-6144*u10*u21^4*u11^2*u01^4*u12-6912*u10*u21^3*u11^5*u01^2*u02-1536*u10*u21^3*u11^4*u01^3*u12+1152*u10*u21^2*u11^7*u01*u02+1536*u10*u21^2*u11^6*u01^2*u12-72*u10*u21*u11^9*u02-336*u10*u21*u11^8*u01*u12+24*u10*u11^10*u12+110592*u00^3*u21^6*u02^3-165888*u00^3*u21^5*u11*u12*u02^2+82944*u00^3*u21^4*u11^2*u12^2*u02-13824*u00^3*u21^3*u11^3*u12^3-110592*u00^2*u21^6*u01^2*u02^2+55296*u00^2*u21^5*u11^2*u01*u02^2+110592*u00^2*u21^5*u11*u01^2*u12*u02-6912*u00^2*u21^4*u11^4*u02^2-55296*u00^2*u21^4*u11^3*u01*u12*u02-27648*u00^2*u21^4*u11^2*u01^2*u12^2+6912*u00^2*u21^3*u11^5*u12*u02+13824*u00^2*u21^3*u11^4*u01*u12^2-1728*u00^2*u21^2*u11^6*u12^2+36864*u00*u21^6*u01^4*u02-36864*u00*u21^5*u11^2*u01^3*u02-18432*u00*u21^5*u11*u01^4*u12+13824*u00*u21^4*u11^4*u01^2*u02+18432*u00*u21^4*u11^3*u01^3*u12-2304*u00*u21^3*u11^6*u01*u02-6912*u00*u21^3*u11^5*u01^2*u12+144*u00*u21^2*u11^8*u02+1152*u00*u21^2*u11^7*u01*u12-72*u00*u21*u11^9*u12-4096*u21^6*u01^6+6144*u21^5*u11^2*u01^5-3840*u21^4*u11^4*u01^4+1280*u21^3*u11^6*u01^3-240*u21^2*u11^8*u01^2+24*u21*u11^10*u01-u11^12"; return(A); } if ((invar=="c4") and (curve=="cubic")) { string c4="-u11^4+8*u11^2*u01*u21-16*u01^2*u21^2+8*u11^2*u20*u02-24*u11*u30*u01*u02-24*u11*u10*u21*u02+16*u20*u01*u21*u02+48*u00*u21^2*u02-16*u20^2*u02^2+48*u10*u30*u02^2+8*u11^2*u10*u12-24*u11*u20*u01*u12+48*u30*u01^2*u12-24*u11*u00*u21*u12+16*u10*u01*u21*u12+16*u10*u20*u02*u12-144*u00*u30*u02*u12-16*u10^2*u12^2+48*u00*u20*u12^2-24*u11*u10*u20*u03+216*u11*u00*u30*u03+48*u20^2*u01*u03-144*u10*u30*u01*u03+48*u10^2*u21*u03-144*u00*u20*u21*u03"; return(c4); } if ((invar=="discriminant") and (curve=="4x2")) { // note that Delta is the product of the discriminant of the polynomial with the Newton // polygon polygonDB("4x2") and the factor u02^2; the last factor is necessary since // Delta is the denominator of the j-invariant which has to have the same degree as the numerator // and u02 is the homogenising variable string Delta="(u11^8*u00*u40-u11^7*u00*u30*u21-u11^7*u10*u40*u01-16*u11^6*u00*u20*u40*u02+u11^6*u00*u20*u21^2+u11^6*u00*u30^2*u02-12*u11^6*u00*u40*u01*u21+u11^6*u10^2*u40*u02+u11^6*u10*u30*u01*u21+u11^6*u20*u40*u01^2+40*u11^5*u00*u10*u40*u21*u02-u11^5*u00*u10*u21^3+12*u11^5*u00*u20*u30*u21*u02+40*u11^5*u00*u30*u40*u01*u02+11*u11^5*u00*u30*u01*u21^2-u11^5*u10^2*u30*u21*u02+12*u11^5*u10*u20*u40*u01*u02-u11^5*u10*u20*u01*u21^2-u11^5*u10*u30^2*u01*u02+11*u11^5*u10*u40*u01^2*u21-u11^5*u20*u30*u01^2*u21-u11^5*u30*u40*u01^3-128*u11^4*u00^2*u40^2*u02^2-80*u11^4*u00^2*u40*u21^2*u02+u11^4*u00^2*u21^4-80*u11^4*u00*u10*u30*u40*u02^2-34*u11^4*u00*u10*u30*u21^2*u02+96*u11^4*u00*u20^2*u40*u02^2-12*u11^4*u00*u20^2*u21^2*u02-12*u11^4*u00*u20*u30^2*u02^2+64*u11^4*u00*u20*u40*u01*u21*u02-10*u11^4*u00*u20*u01*u21^3-48*u11^4*u00*u30^2*u01*u21*u02-80*u11^4*u00*u40^2*u01^2*u02+50*u11^4*u00*u40*u01^2*u21^2-12*u11^4*u10^2*u20*u40*u02^2+u11^4*u10^2*u20*u21^2*u02+u11^4*u10^2*u30^2*u02^2-48*u11^4*u10^2*u40*u01*u21*u02+u11^4*u10^2*u01*u21^3-8*u11^4*u10*u20*u30*u01*u21*u02-34*u11^4*u10*u30*u40*u01^2*u02-10*u11^4*u10*u30*u01^2*u21^2-12*u11^4*u20^2*u40*u01^2*u02+u11^4*u20^2*u01^2*u21^2+u11^4*u20*u30^2*u01^2*u02-10*u11^4*u20*u40*u01^3*u21+u11^4*u30^2*u01^3*u21+u11^4*u40^2*u01^4+576*u11^3*u00^2*u30*u40*u21*u02^2+72*u11^3*u00^2*u30*u21^3*u02-320*u11^3*u00*u10*u20*u40*u21*u02^2+44*u11^3*u00*u10*u20*u21^3*u02+108*u11^3*u00*u10*u30^2*u21*u02^2+576*u11^3*u00*u10*u40^2*u01*u02^2-104*u11^3*u00*u10*u40*u01*u21^2*u02+8*u11^3*u00*u10*u01*u21^4-48*u11^3*u00*u20^2*u30*u21*u02^2-320*u11^3*u00*u20*u30*u40*u01*u02^2+20*u11^3*u00*u20*u30*u01*u21^2*u02+36*u11^3*u00*u30^3*u01*u02^2-104*u11^3*u00*u30*u40*u01^2*u21*u02-40*u11^3*u00*u30*u01^2*u21^3+36*u11^3*u10^3*u40*u21*u02^2-u11^3*u10^3*u21^3*u02+8*u11^3*u10^2*u20*u30*u21*u02^2+108*u11^3*u10^2*u30*u40*u01*u02^2+41*u11^3*u10^2*u30*u01*u21^2*u02-48*u11^3*u10*u20^2*u40*u01*u02^2+8*u11^3*u10*u20^2*u01*u21^2*u02+8*u11^3*u10*u20*u30^2*u01*u02^2+20*u11^3*u10*u20*u40*u01^2*u21*u02+8*u11^3*u10*u20*u01^2*u21^3+41*u11^3*u10*u30^2*u01^2*u21*u02+72*u11^3*u10*u40^2*u01^3*u02-40*u11^3*u10*u40*u01^3*u21^2+8*u11^3*u20^2*u30*u01^2*u21*u02+44*u11^3*u20*u30*u40*u01^3*u02+8*u11^3*u20*u30*u01^3*u21^2-u11^3*u30^3*u01^3*u02+8*u11^3*u30*u40*u01^4*u21+1024*u11^2*u00^2*u20*u40^2*u02^3+64*u11^2*u00^2*u20*u40*u21^2*u02^2-80*u11^2*u00^2*u20*u21^4*u02-576*u11^2*u00^2*u30^2*u40*u02^3-504*u11^2*u00^2*u30^2*u21^2*u02^2-1280*u11^2*u00^2*u40^2*u01*u21*u02^2+352*u11^2*u00^2*u40*u01*u21^3*u02-8*u11^2*u00^2*u01*u21^5-576*u11^2*u00*u10^2*u40^2*u02^3+264*u11^2*u00*u10^2*u40*u21^2*u02^2-30*u11^2*u00*u10^2*u21^4*u02+640*u11^2*u00*u10*u20*u30*u40*u02^3+56*u11^2*u00*u10*u20*u30*u21^2*u02^2-72*u11^2*u00*u10*u30^3*u02^3-416*u11^2*u00*u10*u30*u40*u01*u21*u02^2-4*u11^2*u00*u10*u30*u01*u21^3*u02-256*u11^2*u00*u20^3*u40*u02^3+48*u11^2*u00*u20^3*u21^2*u02^2+48*u11^2*u00*u20^2*u30^2*u02^3+64*u11^2*u00*u20^2*u40*u01*u21*u02^2+8*u11^2*u00*u20^2*u01*u21^3*u02+168*u11^2*u00*u20*u30^2*u01*u21*u02^2+64*u11^2*u00*u20*u40^2*u01^2*u02^2-192*u11^2*u00*u20*u40*u01^2*u21^2*u02+32*u11^2*u00*u20*u01^2*u21^4+264*u11^2*u00*u30^2*u40*u01^2*u02^2+162*u11^2*u00*u30^2*u01^2*u21^2*u02+352*u11^2*u00*u40^2*u01^3*u21*u02-80*u11^2*u00*u40*u01^3*u21^3-72*u11^2*u10^3*u30*u40*u02^3-30*u11^2*u10^3*u30*u21^2*u02^2+48*u11^2*u10^2*u20^2*u40*u02^3-8*u11^2*u10^2*u20^2*u21^2*u02^2-8*u11^2*u10^2*u20*u30^2*u02^3+168*u11^2*u10^2*u20*u40*u01*u21*u02^2-46*u11^2*u10^2*u20*u01*u21^3*u02-140*u11^2*u10^2*u30^2*u01*u21*u02^2-504*u11^2*u10^2*u40^2*u01^2*u02^2+162*u11^2*u10^2*u40*u01^2*u21^2*u02-8*u11^2*u10^2*u01^2*u21^4+16*u11^2*u10*u20^2*u30*u01*u21*u02^2+56*u11^2*u10*u20*u30*u40*u01^2*u02^2-84*u11^2*u10*u20*u30*u01^2*u21^2*u02-30*u11^2*u10*u30^3*u01^2*u02^2-4*u11^2*u10*u30*u40*u01^3*u21*u02+32*u11^2*u10*u30*u01^3*u21^3+48*u11^2*u20^3*u40*u01^2*u02^2-8*u11^2*u20^3*u01^2*u21^2*u02-8*u11^2*u20^2*u30^2*u01^2*u02^2+8*u11^2*u20^2*u40*u01^3*u21*u02-8*u11^2*u20^2*u01^3*u21^3-46*u11^2*u20*u30^2*u01^3*u21*u02-80*u11^2*u20*u40^2*u01^4*u02+32*u11^2*u20*u40*u01^4*u21^2-30*u11^2*u30^2*u40*u01^4*u02-8*u11^2*u30^2*u01^4*u21^2-8*u11^2*u40^2*u01^5*u21+1536*u11*u00^2*u10*u40^2*u21*u02^3-768*u11*u00^2*u10*u40*u21^3*u02^2+96*u11*u00^2*u10*u21^5*u02-2304*u11*u00^2*u20*u30*u40*u21*u02^3+576*u11*u00^2*u20*u30*u21^3*u02^2+864*u11*u00^2*u30^3*u21*u02^3+1536*u11*u00^2*u30*u40^2*u01*u02^3+384*u11*u00^2*u30*u40*u01*u21^2*u02^2-192*u11*u00^2*u30*u01*u21^4*u02+96*u11*u00*u10^2*u30*u40*u21*u02^3-24*u11*u00*u10^2*u30*u21^3*u02^2+640*u11*u00*u10*u20^2*u40*u21*u02^3-160*u11*u00*u10*u20^2*u21^3*u02^2-432*u11*u00*u10*u20*u30^2*u21*u02^3-2304*u11*u00*u10*u20*u40^2*u01*u02^3+512*u11*u00*u10*u20*u40*u01*u21^2*u02^2+16*u11*u00*u10*u20*u01*u21^4*u02+96*u11*u00*u10*u30^2*u40*u01*u02^3+192*u11*u00*u10*u30^2*u01*u21^2*u02^2+384*u11*u00*u10*u40^2*u01^2*u21*u02^2-32*u11*u00*u10*u40*u01^2*u21^3*u02-16*u11*u00*u10*u01^2*u21^5+64*u11*u00*u20^3*u30*u21*u02^3+640*u11*u00*u20^2*u30*u40*u01*u02^3-256*u11*u00*u20^2*u30*u01*u21^2*u02^2-144*u11*u00*u20*u30^3*u01*u02^3+512*u11*u00*u20*u30*u40*u01^2*u21*u02^2-80*u11*u00*u20*u30*u01^2*u21^3*u02-360*u11*u00*u30^3*u01^2*u21*u02^2-768*u11*u00*u30*u40^2*u01^3*u02^2-32*u11*u00*u30*u40*u01^3*u21^2*u02+48*u11*u00*u30*u01^3*u21^4-144*u11*u10^3*u20*u40*u21*u02^3+36*u11*u10^3*u20*u21^3*u02^2+96*u11*u10^3*u30^2*u21*u02^3+864*u11*u10^3*u40^2*u01*u02^3-360*u11*u10^3*u40*u01*u21^2*u02^2+36*u11*u10^3*u01*u21^4*u02-16*u11*u10^2*u20^2*u30*u21*u02^3-432*u11*u10^2*u20*u30*u40*u01*u02^3+124*u11*u10^2*u20*u30*u01*u21^2*u02^2+96*u11*u10^2*u30^3*u01*u02^3+192*u11*u10^2*u30*u40*u01^2*u21*u02^2-52*u11*u10^2*u30*u01^2*u21^3*u02+64*u11*u10*u20^3*u40*u01*u02^3-16*u11*u10*u20^3*u01*u21^2*u02^2-16*u11*u10*u20^2*u30^2*u01*u02^3-256*u11*u10*u20^2*u40*u01^2*u21*u02^2+64*u11*u10*u20^2*u01^2*u21^3*u02+124*u11*u10*u20*u30^2*u01^2*u21*u02^2+576*u11*u10*u20*u40^2*u01^3*u02^2-80*u11*u10*u20*u40*u01^3*u21^2*u02-16*u11*u10*u20*u01^3*u21^4-24*u11*u10*u30^2*u40*u01^3*u02^2-52*u11*u10*u30^2*u01^3*u21^2*u02-192*u11*u10*u40^2*u01^4*u21*u02+48*u11*u10*u40*u01^4*u21^3-16*u11*u20^3*u30*u01^2*u21*u02^2-160*u11*u20^2*u30*u40*u01^3*u02^2+64*u11*u20^2*u30*u01^3*u21^2*u02+36*u11*u20*u30^3*u01^3*u02^2+16*u11*u20*u30*u40*u01^4*u21*u02-16*u11*u20*u30*u01^4*u21^3+36*u11*u30^3*u01^4*u21*u02+96*u11*u30*u40^2*u01^5*u02-16*u11*u30*u40*u01^5*u21^2+4096*u00^3*u40^3*u02^4-3072*u00^3*u40^2*u21^2*u02^3+768*u00^3*u40*u21^4*u02^2-64*u00^3*u21^6*u02-3072*u00^2*u10*u30*u40^2*u02^4+1536*u00^2*u10*u30*u40*u21^2*u02^3-192*u00^2*u10*u30*u21^4*u02^2-2048*u00^2*u20^2*u40^2*u02^4+1024*u00^2*u20^2*u40*u21^2*u02^3-128*u00^2*u20^2*u21^4*u02^2+2304*u00^2*u20*u30^2*u40*u02^4-576*u00^2*u20*u30^2*u21^2*u02^3+2048*u00^2*u20*u40^2*u01*u21*u02^3-1024*u00^2*u20*u40*u01*u21^3*u02^2+128*u00^2*u20*u01*u21^5*u02-432*u00^2*u30^4*u02^4-1152*u00^2*u30^2*u40*u01*u21*u02^3+288*u00^2*u30^2*u01*u21^3*u02^2-3072*u00^2*u40^3*u01^2*u02^3+1792*u00^2*u40^2*u01^2*u21^2*u02^2-320*u00^2*u40*u01^2*u21^4*u02+16*u00^2*u01^2*u21^6+2304*u00*u10^2*u20*u40^2*u02^4-1152*u00*u10^2*u20*u40*u21^2*u02^3+144*u00*u10^2*u20*u21^4*u02^2-96*u00*u10^2*u30^2*u40*u02^4+24*u00*u10^2*u30^2*u21^2*u02^3-1152*u00*u10^2*u40^2*u01*u21*u02^3+576*u00*u10^2*u40*u01*u21^3*u02^2-72*u00*u10^2*u01*u21^5*u02-1280*u00*u10*u20^2*u30*u40*u02^4+320*u00*u10*u20^2*u30*u21^2*u02^3+288*u00*u10*u20*u30^3*u02^4+1280*u00*u10*u20*u30*u40*u01*u21*u02^3-320*u00*u10*u20*u30*u01*u21^3*u02^2-144*u00*u10*u30^3*u01*u21*u02^3+1536*u00*u10*u30*u40^2*u01^2*u02^3-1088*u00*u10*u30*u40*u01^2*u21^2*u02^2+176*u00*u10*u30*u01^2*u21^4*u02+256*u00*u20^4*u40*u02^4-64*u00*u20^4*u21^2*u02^3-64*u00*u20^3*u30^2*u02^4-512*u00*u20^3*u40*u01*u21*u02^3+128*u00*u20^3*u01*u21^3*u02^2+96*u00*u20^2*u30^2*u01*u21*u02^3+1024*u00*u20^2*u40^2*u01^2*u02^3-128*u00*u20^2*u40*u01^2*u21^2*u02^2-32*u00*u20^2*u01^2*u21^4*u02-1152*u00*u20*u30^2*u40*u01^2*u02^3+240*u00*u20*u30^2*u01^2*u21^2*u02^2-1024*u00*u20*u40^2*u01^3*u21*u02^2+384*u00*u20*u40*u01^3*u21^3*u02-32*u00*u20*u01^3*u21^5+216*u00*u30^4*u01^2*u02^3+576*u00*u30^2*u40*u01^3*u21*u02^2-136*u00*u30^2*u01^3*u21^3*u02+768*u00*u40^3*u01^4*u02^2-320*u00*u40^2*u01^4*u21^2*u02+32*u00*u40*u01^4*u21^4-432*u10^4*u40^2*u02^4+216*u10^4*u40*u21^2*u02^3-27*u10^4*u21^4*u02^2+288*u10^3*u20*u30*u40*u02^4-72*u10^3*u20*u30*u21^2*u02^3-64*u10^3*u30^3*u02^4-144*u10^3*u30*u40*u01*u21*u02^3+36*u10^3*u30*u01*u21^3*u02^2-64*u10^2*u20^3*u40*u02^4+16*u10^2*u20^3*u21^2*u02^3+16*u10^2*u20^2*u30^2*u02^4+96*u10^2*u20^2*u40*u01*u21*u02^3-24*u10^2*u20^2*u01*u21^3*u02^2-16*u10^2*u20*u30^2*u01*u21*u02^3-576*u10^2*u20*u40^2*u01^2*u02^3+240*u10^2*u20*u40*u01^2*u21^2*u02^2-24*u10^2*u20*u01^2*u21^4*u02+24*u10^2*u30^2*u40*u01^2*u02^3-2*u10^2*u30^2*u01^2*u21^2*u02^2+288*u10^2*u40^2*u01^3*u21*u02^2-136*u10^2*u40*u01^3*u21^3*u02+16*u10^2*u01^3*u21^5+320*u10*u20^2*u30*u40*u01^2*u02^3-80*u10*u20^2*u30*u01^2*u21^2*u02^2-72*u10*u20*u30^3*u01^2*u02^3-320*u10*u20*u30*u40*u01^3*u21*u02^2+80*u10*u20*u30*u01^3*u21^3*u02+36*u10*u30^3*u01^3*u21*u02^2-192*u10*u30*u40^2*u01^4*u02^2+176*u10*u30*u40*u01^4*u21^2*u02-32*u10*u30*u01^4*u21^4-64*u20^4*u40*u01^2*u02^3+16*u20^4*u01^2*u21^2*u02^2+16*u20^3*u30^2*u01^2*u02^3+128*u20^3*u40*u01^3*u21*u02^2-32*u20^3*u01^3*u21^3*u02-24*u20^2*u30^2*u01^3*u21*u02^2-128*u20^2*u40^2*u01^4*u02^2-32*u20^2*u40*u01^4*u21^2*u02+16*u20^2*u01^4*u21^4+144*u20*u30^2*u40*u01^4*u02^2-24*u20*u30^2*u01^4*u21^2*u02+128*u20*u40^2*u01^5*u21*u02-32*u20*u40*u01^5*u21^3-27*u30^4*u01^4*u02^2-72*u30^2*u40*u01^5*u21*u02+16*u30^2*u01^5*u21^3-64*u40^3*u01^6*u02+16*u40^2*u01^6*u21^2)*u02^2"; return(Delta); } if ((invar=="numerator") and (curve=="4x2")) { string A="(u11^12-24*u11^10*u20*u02-24*u11^10*u01*u21+72*u11^9*u10*u21*u02+72*u11^9*u30*u01*u02+576*u11^8*u00*u40*u02^2-144*u11^8*u00*u21^2*u02-144*u11^8*u10*u30*u02^2+240*u11^8*u20^2*u02^2+336*u11^8*u20*u01*u21*u02-144*u11^8*u40*u01^2*u02+240*u11^8*u01^2*u21^2-1152*u11^7*u10*u20*u21*u02^2-1152*u11^7*u10*u01*u21^2*u02-1152*u11^7*u20*u30*u01*u02^2-1152*u11^7*u30*u01^2*u21*u02-9216*u11^6*u00*u20*u40*u02^3+2304*u11^6*u00*u20*u21^2*u02^2-9216*u11^6*u00*u40*u01*u21*u02^2+2304*u11^6*u00*u01*u21^3*u02+1728*u11^6*u10^2*u21^2*u02^2+2304*u11^6*u10*u20*u30*u02^3+5760*u11^6*u10*u30*u01*u21*u02^2-1280*u11^6*u20^3*u02^3-1536*u11^6*u20^2*u01*u21*u02^2+2304*u11^6*u20*u40*u01^2*u02^2-1536*u11^6*u20*u01^2*u21^2*u02+1728*u11^6*u30^2*u01^2*u02^2+2304*u11^6*u40*u01^3*u21*u02-1280*u11^6*u01^3*u21^3+27648*u11^5*u00*u10*u40*u21*u02^3-6912*u11^5*u00*u10*u21^3*u02^2+27648*u11^5*u00*u30*u40*u01*u02^3-6912*u11^5*u00*u30*u01*u21^2*u02^2-6912*u11^5*u10^2*u30*u21*u02^3+6912*u11^5*u10*u20^2*u21*u02^3+6912*u11^5*u10*u20*u01*u21^2*u02^2-6912*u11^5*u10*u30^2*u01*u02^3-6912*u11^5*u10*u40*u01^2*u21*u02^2+6912*u11^5*u10*u01^2*u21^3*u02+6912*u11^5*u20^2*u30*u01*u02^3+6912*u11^5*u20*u30*u01^2*u21*u02^2-6912*u11^5*u30*u40*u01^3*u02^2+6912*u11^5*u30*u01^3*u21^2*u02+110592*u11^4*u00^2*u40^2*u02^4-55296*u11^4*u00^2*u40*u21^2*u02^3+6912*u11^4*u00^2*u21^4*u02^2-55296*u11^4*u00*u10*u30*u40*u02^4+13824*u11^4*u00*u10*u30*u21^2*u02^3+55296*u11^4*u00*u20^2*u40*u02^4-13824*u11^4*u00*u20^2*u21^2*u02^3+55296*u11^4*u00*u20*u40*u01*u21*u02^3-13824*u11^4*u00*u20*u01*u21^3*u02^2-55296*u11^4*u00*u40^2*u01^2*u02^3+69120*u11^4*u00*u40*u01^2*u21^2*u02^2-13824*u11^4*u00*u01^2*u21^4*u02-13824*u11^4*u10^2*u20*u21^2*u02^3+6912*u11^4*u10^2*u30^2*u02^4-13824*u11^4*u10^2*u01*u21^3*u02^2-13824*u11^4*u10*u20^2*u30*u02^4-41472*u11^4*u10*u20*u30*u01*u21*u02^3+13824*u11^4*u10*u30*u40*u01^2*u02^3-41472*u11^4*u10*u30*u01^2*u21^2*u02^2+3840*u11^4*u20^4*u02^4+1536*u11^4*u20^3*u01*u21*u02^3-13824*u11^4*u20^2*u40*u01^2*u02^3+2304*u11^4*u20^2*u01^2*u21^2*u02^2-13824*u11^4*u20*u30^2*u01^2*u02^3-13824*u11^4*u20*u40*u01^3*u21*u02^2+1536*u11^4*u20*u01^3*u21^3*u02-13824*u11^4*u30^2*u01^3*u21*u02^2+6912*u11^4*u40^2*u01^4*u02^2-13824*u11^4*u40*u01^4*u21^2*u02+3840*u11^4*u01^4*u21^4-221184*u11^3*u00*u10*u20*u40*u21*u02^4+55296*u11^3*u00*u10*u20*u21^3*u02^3-221184*u11^3*u00*u10*u40*u01*u21^2*u02^3+55296*u11^3*u00*u10*u01*u21^4*u02^2-221184*u11^3*u00*u20*u30*u40*u01*u02^4+55296*u11^3*u00*u20*u30*u01*u21^2*u02^3-221184*u11^3*u00*u30*u40*u01^2*u21*u02^3+55296*u11^3*u00*u30*u01^2*u21^3*u02^2+13824*u11^3*u10^3*u21^3*u02^3+55296*u11^3*u10^2*u20*u30*u21*u02^4+96768*u11^3*u10^2*u30*u01*u21^2*u02^3-18432*u11^3*u10*u20^3*u21*u02^4+55296*u11^3*u10*u20*u30^2*u01*u02^4+55296*u11^3*u10*u20*u40*u01^2*u21*u02^3+96768*u11^3*u10*u30^2*u01^2*u21*u02^3+55296*u11^3*u10*u40*u01^3*u21^2*u02^2-18432*u11^3*u10*u01^3*u21^4*u02-18432*u11^3*u20^3*u30*u01*u02^4+55296*u11^3*u20*u30*u40*u01^3*u02^3+13824*u11^3*u30^3*u01^3*u02^3+55296*u11^3*u30*u40*u01^4*u21*u02^2-18432*u11^3*u30*u01^4*u21^3*u02-884736*u11^2*u00^2*u20*u40^2*u02^5+442368*u11^2*u00^2*u20*u40*u21^2*u02^4-55296*u11^2*u00^2*u20*u21^4*u02^3-884736*u11^2*u00^2*u40^2*u01*u21*u02^4+442368*u11^2*u00^2*u40*u01*u21^3*u02^3-55296*u11^2*u00^2*u01*u21^5*u02^2+331776*u11^2*u00*u10^2*u40*u21^2*u02^4-82944*u11^2*u00*u10^2*u21^4*u02^3+442368*u11^2*u00*u10*u20*u30*u40*u02^5-110592*u11^2*u00*u10*u20*u30*u21^2*u02^4+1105920*u11^2*u00*u10*u30*u40*u01*u21*u02^4-276480*u11^2*u00*u10*u30*u01*u21^3*u02^3-147456*u11^2*u00*u20^3*u40*u02^5+36864*u11^2*u00*u20^3*u21^2*u02^4+442368*u11^2*u00*u20*u40^2*u01^2*u02^4-110592*u11^2*u00*u20*u40*u01^2*u21^2*u02^3+331776*u11^2*u00*u30^2*u40*u01^2*u02^4-82944*u11^2*u00*u30^2*u01^2*u21^2*u02^3+442368*u11^2*u00*u40^2*u01^3*u21*u02^3-258048*u11^2*u00*u40*u01^3*u21^3*u02^2+36864*u11^2*u00*u01^3*u21^5*u02-82944*u11^2*u10^3*u30*u21^2*u02^4+27648*u11^2*u10^2*u20^2*u21^2*u02^4-55296*u11^2*u10^2*u20*u30^2*u02^5-27648*u11^2*u10^2*u20*u01*u21^3*u02^3-221184*u11^2*u10^2*u30^2*u01*u21*u02^4-82944*u11^2*u10^2*u40*u01^2*u21^2*u02^3+27648*u11^2*u10^2*u01^2*u21^4*u02^2+36864*u11^2*u10*u20^3*u30*u02^5+55296*u11^2*u10*u20^2*u30*u01*u21*u02^4-110592*u11^2*u10*u20*u30*u40*u01^2*u02^4-55296*u11^2*u10*u20*u30*u01^2*u21^2*u02^3-82944*u11^2*u10*u30^3*u01^2*u02^4-276480*u11^2*u10*u30*u40*u01^3*u21*u02^3+92160*u11^2*u10*u30*u01^3*u21^3*u02^2-6144*u11^2*u20^5*u02^5+6144*u11^2*u20^4*u01*u21*u02^4+36864*u11^2*u20^3*u40*u01^2*u02^4-6144*u11^2*u20^3*u01^2*u21^2*u02^3+27648*u11^2*u20^2*u30^2*u01^2*u02^4-6144*u11^2*u20^2*u01^3*u21^3*u02^2-27648*u11^2*u20*u30^2*u01^3*u21*u02^3-55296*u11^2*u20*u40^2*u01^4*u02^3+6144*u11^2*u20*u01^4*u21^4*u02-82944*u11^2*u30^2*u40*u01^4*u02^3+27648*u11^2*u30^2*u01^4*u21^2*u02^2-55296*u11^2*u40^2*u01^5*u21*u02^2+36864*u11^2*u40*u01^5*u21^3*u02-6144*u11^2*u01^5*u21^5+2654208*u11*u00^2*u10*u40^2*u21*u02^5-1327104*u11*u00^2*u10*u40*u21^3*u02^4+165888*u11*u00^2*u10*u21^5*u02^3+2654208*u11*u00^2*u30*u40^2*u01*u02^5-1327104*u11*u00^2*u30*u40*u01*u21^2*u02^4+165888*u11*u00^2*u30*u01*u21^4*u02^3-1327104*u11*u00*u10^2*u30*u40*u21*u02^5+331776*u11*u00*u10^2*u30*u21^3*u02^4+442368*u11*u00*u10*u20^2*u40*u21*u02^5-110592*u11*u00*u10*u20^2*u21^3*u02^4-442368*u11*u00*u10*u20*u40*u01*u21^2*u02^4+110592*u11*u00*u10*u20*u01*u21^4*u02^3-1327104*u11*u00*u10*u30^2*u40*u01*u02^5+331776*u11*u00*u10*u30^2*u01*u21^2*u02^4-1327104*u11*u00*u10*u40^2*u01^2*u21*u02^4+774144*u11*u00*u10*u40*u01^2*u21^3*u02^3-110592*u11*u00*u10*u01^2*u21^5*u02^2+442368*u11*u00*u20^2*u30*u40*u01*u02^5-110592*u11*u00*u20^2*u30*u01*u21^2*u02^4-442368*u11*u00*u20*u30*u40*u01^2*u21*u02^4+110592*u11*u00*u20*u30*u01^2*u21^3*u02^3-1327104*u11*u00*u30*u40^2*u01^3*u02^4+774144*u11*u00*u30*u40*u01^3*u21^2*u02^3-110592*u11*u00*u30*u01^3*u21^4*u02^2+165888*u11*u10^3*u30^2*u21*u02^5-110592*u11*u10^2*u20^2*u30*u21*u02^5+110592*u11*u10^2*u20*u30*u01*u21^2*u02^4+165888*u11*u10^2*u30^3*u01*u02^5+331776*u11*u10^2*u30*u40*u01^2*u21*u02^4-110592*u11*u10^2*u30*u01^2*u21^3*u02^3+18432*u11*u10*u20^4*u21*u02^5-36864*u11*u10*u20^3*u01*u21^2*u02^4-110592*u11*u10*u20^2*u30^2*u01*u02^5-110592*u11*u10*u20^2*u40*u01^2*u21*u02^4+55296*u11*u10*u20^2*u01^2*u21^3*u02^3+110592*u11*u10*u20*u30^2*u01^2*u21*u02^4+110592*u11*u10*u20*u40*u01^3*u21^2*u02^3-36864*u11*u10*u20*u01^3*u21^4*u02^2+331776*u11*u10*u30^2*u40*u01^3*u02^4-110592*u11*u10*u30^2*u01^3*u21^2*u02^3+165888*u11*u10*u40^2*u01^4*u21*u02^3-110592*u11*u10*u40*u01^4*u21^3*u02^2+18432*u11*u10*u01^4*u21^5*u02+18432*u11*u20^4*u30*u01*u02^5-36864*u11*u20^3*u30*u01^2*u21*u02^4-110592*u11*u20^2*u30*u40*u01^3*u02^4+55296*u11*u20^2*u30*u01^3*u21^2*u02^3+110592*u11*u20*u30*u40*u01^4*u21*u02^3-36864*u11*u20*u30*u01^4*u21^3*u02^2+165888*u11*u30*u40^2*u01^5*u02^3-110592*u11*u30*u40*u01^5*u21^2*u02^2+18432*u11*u30*u01^5*u21^4*u02+7077888*u00^3*u40^3*u02^6-5308416*u00^3*u40^2*u21^2*u02^5+1327104*u00^3*u40*u21^4*u02^4-110592*u00^3*u21^6*u02^3-5308416*u00^2*u10*u30*u40^2*u02^6+2654208*u00^2*u10*u30*u40*u21^2*u02^5-331776*u00^2*u10*u30*u21^4*u02^4+1769472*u00^2*u20^2*u40^2*u02^6-884736*u00^2*u20^2*u40*u21^2*u02^5+110592*u00^2*u20^2*u21^4*u02^4-1769472*u00^2*u20*u40^2*u01*u21*u02^5+884736*u00^2*u20*u40*u01*u21^3*u02^4-110592*u00^2*u20*u01*u21^5*u02^3-5308416*u00^2*u40^3*u01^2*u02^5+4423680*u00^2*u40^2*u01^2*u21^2*u02^4-1216512*u00^2*u40*u01^2*u21^4*u02^3+110592*u00^2*u01^2*u21^6*u02^2+1327104*u00*u10^2*u30^2*u40*u02^6-331776*u00*u10^2*u30^2*u21^2*u02^5-884736*u00*u10*u20^2*u30*u40*u02^6+221184*u00*u10*u20^2*u30*u21^2*u02^5+884736*u00*u10*u20*u30*u40*u01*u21*u02^5-221184*u00*u10*u20*u30*u01*u21^3*u02^4+2654208*u00*u10*u30*u40^2*u01^2*u02^5-1548288*u00*u10*u30*u40*u01^2*u21^2*u02^4+221184*u00*u10*u30*u01^2*u21^4*u02^3+147456*u00*u20^4*u40*u02^6-36864*u00*u20^4*u21^2*u02^5-294912*u00*u20^3*u40*u01*u21*u02^5+73728*u00*u20^3*u01*u21^3*u02^4-884736*u00*u20^2*u40^2*u01^2*u02^5+663552*u00*u20^2*u40*u01^2*u21^2*u02^4-110592*u00*u20^2*u01^2*u21^4*u02^3+884736*u00*u20*u40^2*u01^3*u21*u02^4-516096*u00*u20*u40*u01^3*u21^3*u02^3+73728*u00*u20*u01^3*u21^5*u02^2+1327104*u00*u40^3*u01^4*u02^4-1216512*u00*u40^2*u01^4*u21^2*u02^3+368640*u00*u40*u01^4*u21^4*u02^2-36864*u00*u01^4*u21^6*u02-110592*u10^3*u30^3*u02^6+110592*u10^2*u20^2*u30^2*u02^6-110592*u10^2*u20*u30^2*u01*u21*u02^5-331776*u10^2*u30^2*u40*u01^2*u02^5+110592*u10^2*u30^2*u01^2*u21^2*u02^4-36864*u10*u20^4*u30*u02^6+73728*u10*u20^3*u30*u01*u21*u02^5+221184*u10*u20^2*u30*u40*u01^2*u02^5-110592*u10*u20^2*u30*u01^2*u21^2*u02^4-221184*u10*u20*u30*u40*u01^3*u21*u02^4+73728*u10*u20*u30*u01^3*u21^3*u02^3-331776*u10*u30*u40^2*u01^4*u02^4+221184*u10*u30*u40*u01^4*u21^2*u02^3-36864*u10*u30*u01^4*u21^4*u02^2+4096*u20^6*u02^6-12288*u20^5*u01*u21*u02^5-36864*u20^4*u40*u01^2*u02^5+24576*u20^4*u01^2*u21^2*u02^4+73728*u20^3*u40*u01^3*u21*u02^4-28672*u20^3*u01^3*u21^3*u02^3+110592*u20^2*u40^2*u01^4*u02^4-110592*u20^2*u40*u01^4*u21^2*u02^3+24576*u20^2*u01^4*u21^4*u02^2-110592*u20*u40^2*u01^5*u21*u02^3+73728*u20*u40*u01^5*u21^3*u02^2-12288*u20*u01^5*u21^5*u02-110592*u40^3*u01^6*u02^3+110592*u40^2*u01^6*u21^2*u02^2-36864*u40*u01^6*u21^4*u02+4096*u01^6*u21^6)"; return(A); } if ((invar=="c4") and (curve=="4x2")) { string c4="(u11^4-8*u11^2*u20*u02-8*u11^2*u01*u21+24*u11*u10*u21*u02+24*u11*u30*u01*u02+192*u00*u40*u02^2-48*u00*u21^2*u02-48*u10*u30*u02^2+16*u20^2*u02^2-16*u20*u01*u21*u02-48*u40*u01^2*u02+16*u01^2*u21^2)"; return(c4); } if ((invar=="discriminant") and (curve=="2x2")) { string Delta="(u11^8*u00*u20*u02*u22-u11^7*u00*u10*u21*u02*u22-u11^7*u00*u20*u01*u12*u22-u11^7*u00*u20*u21*u02*u12-u11^7*u10*u20*u01*u02*u22-16*u11^6*u00^2*u20*u02*u22^2+u11^6*u00^2*u20*u12^2*u22+u11^6*u00^2*u21^2*u02*u22+u11^6*u00*u10^2*u02*u22^2-12*u11^6*u00*u10*u20*u02*u12*u22+u11^6*u00*u10*u01*u21*u12*u22+u11^6*u00*u10*u21^2*u02*u12-16*u11^6*u00*u20^2*u02^2*u22+u11^6*u00*u20^2*u02*u12^2+u11^6*u00*u20*u01^2*u22^2-12*u11^6*u00*u20*u01*u21*u02*u22+u11^6*u00*u20*u01*u21*u12^2+u11^6*u00*u20*u21^2*u02^2+u11^6*u10^2*u20*u02^2*u22+u11^6*u10^2*u01*u21*u02*u22+u11^6*u10*u20*u01^2*u12*u22+u11^6*u10*u20*u01*u21*u02*u12+u11^6*u20^2*u01^2*u02*u22+12*u11^5*u00^2*u10*u21*u02*u22^2-u11^5*u00^2*u10*u21*u12^2*u22+12*u11^5*u00^2*u20*u01*u12*u22^2+52*u11^5*u00^2*u20*u21*u02*u12*u22-u11^5*u00^2*u20*u21*u12^3-u11^5*u00^2*u01*u21^2*u12*u22-u11^5*u00^2*u21^3*u02*u12-u11^5*u00*u10^2*u01*u12*u22^2+10*u11^5*u00*u10^2*u21*u02*u12*u22+52*u11^5*u00*u10*u20*u01*u02*u22^2+10*u11^5*u00*u10*u20*u01*u12^2*u22+52*u11^5*u00*u10*u20*u21*u02^2*u22+10*u11^5*u00*u10*u20*u21*u02*u12^2-u11^5*u00*u10*u01^2*u21*u22^2+10*u11^5*u00*u10*u01*u21^2*u02*u22-u11^5*u00*u10*u01*u21^2*u12^2-u11^5*u00*u10*u21^3*u02^2+52*u11^5*u00*u20^2*u01*u02*u12*u22-u11^5*u00*u20^2*u01*u12^3+12*u11^5*u00*u20^2*u21*u02^2*u12+10*u11^5*u00*u20*u01^2*u21*u12*u22+10*u11^5*u00*u20*u01*u21^2*u02*u12-u11^5*u10^3*u01*u02*u22^2-u11^5*u10^3*u21*u02^2*u22+10*u11^5*u10^2*u20*u01*u02*u12*u22-u11^5*u10^2*u20*u21*u02^2*u12-u11^5*u10^2*u01^2*u21*u12*u22-u11^5*u10^2*u01*u21^2*u02*u12+12*u11^5*u10*u20^2*u01*u02^2*u22-u11^5*u10*u20^2*u01*u02*u12^2-u11^5*u10*u20*u01^3*u22^2+10*u11^5*u10*u20*u01^2*u21*u02*u22-u11^5*u10*u20*u01^2*u21*u12^2-u11^5*u10*u20*u01*u21^2*u02^2-u11^5*u20^2*u01^3*u12*u22-u11^5*u20^2*u01^2*u21*u02*u12+96*u11^4*u00^3*u20*u02*u22^3-12*u11^4*u00^3*u20*u12^2*u22^2-12*u11^4*u00^3*u21^2*u02*u22^2+u11^4*u00^3*u21^2*u12^2*u22-12*u11^4*u00^2*u10^2*u02*u22^3+u11^4*u00^2*u10^2*u12^2*u22^2+64*u11^4*u00^2*u10*u20*u02*u12*u22^2-10*u11^4*u00^2*u10*u20*u12^3*u22-8*u11^4*u00^2*u10*u01*u21*u12*u22^2-56*u11^4*u00^2*u10*u21^2*u02*u12*u22+u11^4*u00^2*u10*u21^2*u12^3+64*u11^4*u00^2*u20^2*u02^2*u22^2-104*u11^4*u00^2*u20^2*u02*u12^2*u22+u11^4*u00^2*u20^2*u12^4-12*u11^4*u00^2*u20*u01^2*u22^3+64*u11^4*u00^2*u20*u01*u21*u02*u22^2-56*u11^4*u00^2*u20*u01*u21*u12^2*u22-104*u11^4*u00^2*u20*u21^2*u02^2*u22-33*u11^4*u00^2*u20*u21^2*u02*u12^2+u11^4*u00^2*u01^2*u21^2*u22^2-10*u11^4*u00^2*u01*u21^3*u02*u22+u11^4*u00^2*u01*u21^3*u12^2+u11^4*u00^2*u21^4*u02^2-10*u11^4*u00*u10^3*u02*u12*u22^2-104*u11^4*u00*u10^2*u20*u02^2*u22^2+52*u11^4*u00*u10^2*u20*u02*u12^2*u22+u11^4*u00*u10^2*u01^2*u22^3-56*u11^4*u00*u10^2*u01*u21*u02*u22^2-8*u11^4*u00*u10^2*u01*u21*u12^2*u22-33*u11^4*u00*u10^2*u21^2*u02^2*u22-10*u11^4*u00*u10^2*u21^2*u02*u12^2+64*u11^4*u00*u10*u20^2*u02^2*u12*u22-10*u11^4*u00*u10*u20^2*u02*u12^3-56*u11^4*u00*u10*u20*u01^2*u12*u22^2-144*u11^4*u00*u10*u20*u01*u21*u02*u12*u22-8*u11^4*u00*u10*u20*u01*u21*u12^3-56*u11^4*u00*u10*u20*u21^2*u02^2*u12-8*u11^4*u00*u10*u01^2*u21^2*u12*u22-8*u11^4*u00*u10*u01*u21^3*u02*u12+96*u11^4*u00*u20^3*u02^3*u22-12*u11^4*u00*u20^3*u02^2*u12^2-104*u11^4*u00*u20^2*u01^2*u02*u22^2-33*u11^4*u00*u20^2*u01^2*u12^2*u22+64*u11^4*u00*u20^2*u01*u21*u02^2*u22-56*u11^4*u00*u20^2*u01*u21*u02*u12^2-12*u11^4*u00*u20^2*u21^2*u02^3-10*u11^4*u00*u20*u01^3*u21*u22^2+52*u11^4*u00*u20*u01^2*u21^2*u02*u22-10*u11^4*u00*u20*u01^2*u21^2*u12^2-10*u11^4*u00*u20*u01*u21^3*u02^2+u11^4*u10^4*u02^2*u22^2-10*u11^4*u10^3*u20*u02^2*u12*u22+u11^4*u10^3*u01^2*u12*u22^2-8*u11^4*u10^3*u01*u21*u02*u12*u22+u11^4*u10^3*u21^2*u02^2*u12-12*u11^4*u10^2*u20^2*u02^3*u22+u11^4*u10^2*u20^2*u02^2*u12^2-33*u11^4*u10^2*u20*u01^2*u02*u22^2-10*u11^4*u10^2*u20*u01^2*u12^2*u22-56*u11^4*u10^2*u20*u01*u21*u02^2*u22-8*u11^4*u10^2*u20*u01*u21*u02*u12^2+u11^4*u10^2*u20*u21^2*u02^3+u11^4*u10^2*u01^3*u21*u22^2-10*u11^4*u10^2*u01^2*u21^2*u02*u22+u11^4*u10^2*u01^2*u21^2*u12^2+u11^4*u10^2*u01*u21^3*u02^2-56*u11^4*u10*u20^2*u01^2*u02*u12*u22+u11^4*u10*u20^2*u01^2*u12^3-8*u11^4*u10*u20^2*u01*u21*u02^2*u12-8*u11^4*u10*u20*u01^3*u21*u12*u22-8*u11^4*u10*u20*u01^2*u21^2*u02*u12-12*u11^4*u20^3*u01^2*u02^2*u22+u11^4*u20^3*u01^2*u02*u12^2+u11^4*u20^2*u01^4*u22^2-10*u11^4*u20^2*u01^3*u21*u02*u22+u11^4*u20^2*u01^3*u21*u12^2+u11^4*u20^2*u01^2*u21^2*u02^2-48*u11^3*u00^3*u10*u21*u02*u22^3+8*u11^3*u00^3*u10*u21*u12^2*u22^2-48*u11^3*u00^3*u20*u01*u12*u22^3-368*u11^3*u00^3*u20*u21*u02*u12*u22^2+44*u11^3*u00^3*u20*u21*u12^3*u22+8*u11^3*u00^3*u01*u21^2*u12*u22^2+44*u11^3*u00^3*u21^3*u02*u12*u22-u11^3*u00^3*u21^3*u12^3+8*u11^3*u00^2*u10^2*u01*u12*u22^3+28*u11^3*u00^2*u10^2*u21*u02*u12*u22^2+8*u11^3*u00^2*u10^2*u21*u12^3*u22-368*u11^3*u00^2*u10*u20*u01*u02*u22^3+28*u11^3*u00^2*u10*u20*u01*u12^2*u22^2+160*u11^3*u00^2*u10*u20*u21*u02^2*u22^2-68*u11^3*u00^2*u10*u20*u21*u02*u12^2*u22+8*u11^3*u00^2*u10*u20*u21*u12^4+8*u11^3*u00^2*u10*u01^2*u21*u22^3+28*u11^3*u00^2*u10*u01*u21^2*u02*u22^2+57*u11^3*u00^2*u10*u01*u21^2*u12^2*u22+116*u11^3*u00^2*u10*u21^3*u02^2*u22+41*u11^3*u00^2*u10*u21^3*u02*u12^2+160*u11^3*u00^2*u20^2*u01*u02*u12*u22^2+116*u11^3*u00^2*u20^2*u01*u12^3*u22+160*u11^3*u00^2*u20^2*u21*u02^2*u12*u22+116*u11^3*u00^2*u20^2*u21*u02*u12^3+28*u11^3*u00^2*u20*u01^2*u21*u12*u22^2-68*u11^3*u00^2*u20*u01*u21^2*u02*u12*u22+41*u11^3*u00^2*u20*u01*u21^2*u12^3+116*u11^3*u00^2*u20*u21^3*u02^2*u12+8*u11^3*u00^2*u01^2*u21^3*u12*u22+8*u11^3*u00^2*u01*u21^4*u02*u12+44*u11^3*u00*u10^3*u01*u02*u22^3+8*u11^3*u00*u10^3*u01*u12^2*u22^2+116*u11^3*u00*u10^3*u21*u02^2*u22^2-32*u11^3*u00*u10^3*u21*u02*u12^2*u22-68*u11^3*u00*u10^2*u20*u01*u02*u12*u22^2-32*u11^3*u00*u10^2*u20*u01*u12^3*u22-68*u11^3*u00*u10^2*u20*u21*u02^2*u12*u22-32*u11^3*u00*u10^2*u20*u21*u02*u12^3+57*u11^3*u00*u10^2*u01^2*u21*u12*u22^2+118*u11^3*u00*u10^2*u01*u21^2*u02*u12*u22+8*u11^3*u00*u10^2*u01*u21^2*u12^3+41*u11^3*u00*u10^2*u21^3*u02^2*u12+160*u11^3*u00*u10*u20^2*u01*u02^2*u22^2-68*u11^3*u00*u10*u20^2*u01*u02*u12^2*u22+8*u11^3*u00*u10*u20^2*u01*u12^4-368*u11^3*u00*u10*u20^2*u21*u02^3*u22+28*u11^3*u00*u10*u20^2*u21*u02^2*u12^2+44*u11^3*u00*u10*u20*u01^3*u22^3-68*u11^3*u00*u10*u20*u01^2*u21*u02*u22^2+118*u11^3*u00*u10*u20*u01^2*u21*u12^2*u22-68*u11^3*u00*u10*u20*u01*u21^2*u02^2*u22+118*u11^3*u00*u10*u20*u01*u21^2*u02*u12^2+44*u11^3*u00*u10*u20*u21^3*u02^3+8*u11^3*u00*u10*u01^3*u21^2*u22^2-32*u11^3*u00*u10*u01^2*u21^3*u02*u22+8*u11^3*u00*u10*u01^2*u21^3*u12^2+8*u11^3*u00*u10*u01*u21^4*u02^2-368*u11^3*u00*u20^3*u01*u02^2*u12*u22+44*u11^3*u00*u20^3*u01*u02*u12^3-48*u11^3*u00*u20^3*u21*u02^3*u12+116*u11^3*u00*u20^2*u01^3*u12*u22^2-68*u11^3*u00*u20^2*u01^2*u21*u02*u12*u22+41*u11^3*u00*u20^2*u01^2*u21*u12^3+28*u11^3*u00*u20^2*u01*u21^2*u02^2*u12-32*u11^3*u00*u20*u01^3*u21^2*u12*u22-32*u11^3*u00*u20*u01^2*u21^3*u02*u12+8*u11^3*u10^4*u01*u02*u12*u22^2+8*u11^3*u10^4*u21*u02^2*u12*u22+116*u11^3*u10^3*u20*u01*u02^2*u22^2-32*u11^3*u10^3*u20*u01*u02*u12^2*u22+44*u11^3*u10^3*u20*u21*u02^3*u22+8*u11^3*u10^3*u20*u21*u02^2*u12^2-u11^3*u10^3*u01^3*u22^3+41*u11^3*u10^3*u01^2*u21*u02*u22^2+8*u11^3*u10^3*u01^2*u21*u12^2*u22+41*u11^3*u10^3*u01*u21^2*u02^2*u22+8*u11^3*u10^3*u01*u21^2*u02*u12^2-u11^3*u10^3*u21^3*u02^3+28*u11^3*u10^2*u20^2*u01*u02^2*u12*u22+8*u11^3*u10^2*u20^2*u01*u02*u12^3+8*u11^3*u10^2*u20^2*u21*u02^3*u12+41*u11^3*u10^2*u20*u01^3*u12*u22^2+118*u11^3*u10^2*u20*u01^2*u21*u02*u12*u22+8*u11^3*u10^2*u20*u01^2*u21*u12^3+57*u11^3*u10^2*u20*u01*u21^2*u02^2*u12+8*u11^3*u10^2*u01^3*u21^2*u12*u22+8*u11^3*u10^2*u01^2*u21^3*u02*u12-48*u11^3*u10*u20^3*u01*u02^3*u22+8*u11^3*u10*u20^3*u01*u02^2*u12^2+116*u11^3*u10*u20^2*u01^3*u02*u22^2+41*u11^3*u10*u20^2*u01^3*u12^2*u22+28*u11^3*u10*u20^2*u01^2*u21*u02^2*u22+57*u11^3*u10*u20^2*u01^2*u21*u02*u12^2+8*u11^3*u10*u20^2*u01*u21^2*u02^3+8*u11^3*u10*u20*u01^4*u21*u22^2-32*u11^3*u10*u20*u01^3*u21^2*u02*u22+8*u11^3*u10*u20*u01^3*u21^2*u12^2+8*u11^3*u10*u20*u01^2*u21^3*u02^2+44*u11^3*u20^3*u01^3*u02*u12*u22-u11^3*u20^3*u01^3*u12^3+8*u11^3*u20^3*u01^2*u21*u02^2*u12+8*u11^3*u20^2*u01^4*u21*u12*u22+8*u11^3*u20^2*u01^3*u21^2*u02*u12-256*u11^2*u00^4*u20*u02*u22^4+48*u11^2*u00^4*u20*u12^2*u22^3+48*u11^2*u00^4*u21^2*u02*u22^3-8*u11^2*u00^4*u21^2*u12^2*u22^2+48*u11^2*u00^3*u10^2*u02*u22^4-8*u11^2*u00^3*u10^2*u12^2*u22^3+64*u11^2*u00^3*u10*u20*u02*u12*u22^3+8*u11^2*u00^3*u10*u20*u12^3*u22^2+16*u11^2*u00^3*u10*u01*u21*u12*u22^3+184*u11^2*u00^3*u10*u21^2*u02*u12*u22^2-46*u11^2*u00^3*u10*u21^2*u12^3*u22+256*u11^2*u00^3*u20^2*u02^2*u22^3+208*u11^2*u00^3*u20^2*u02*u12^2*u22^2-80*u11^2*u00^3*u20^2*u12^4*u22+48*u11^2*u00^3*u20*u01^2*u22^4+64*u11^2*u00^3*u20*u01*u21*u02*u22^3+184*u11^2*u00^3*u20*u01*u21*u12^2*u22^2+208*u11^2*u00^3*u20*u21^2*u02^2*u22^2+304*u11^2*u00^3*u20*u21^2*u02*u12^2*u22-30*u11^2*u00^3*u20*u21^2*u12^4-8*u11^2*u00^3*u01^2*u21^2*u22^3+8*u11^2*u00^3*u01*u21^3*u02*u22^2-46*u11^2*u00^3*u01*u21^3*u12^2*u22-80*u11^2*u00^3*u21^4*u02^2*u22-30*u11^2*u00^3*u21^4*u02*u12^2+8*u11^2*u00^2*u10^3*u02*u12*u22^3-8*u11^2*u00^2*u10^3*u12^3*u22^2+208*u11^2*u00^2*u10^2*u20*u02^2*u22^3-216*u11^2*u00^2*u10^2*u20*u02*u12^2*u22^2+32*u11^2*u00^2*u10^2*u20*u12^4*u22-8*u11^2*u00^2*u10^2*u01^2*u22^4+184*u11^2*u00^2*u10^2*u01*u21*u02*u22^3-108*u11^2*u00^2*u10^2*u01*u21*u12^2*u22^2-456*u11^2*u00^2*u10^2*u21^2*u02^2*u22^2+78*u11^2*u00^2*u10^2*u21^2*u02*u12^2*u22-8*u11^2*u00^2*u10^2*u21^2*u12^4-1152*u11^2*u00^2*u10*u20^2*u02^2*u12*u22^2+368*u11^2*u00^2*u10*u20^2*u02*u12^3*u22-8*u11^2*u00^2*u10*u20^2*u12^5+184*u11^2*u00^2*u10*u20*u01^2*u12*u22^3+432*u11^2*u00^2*u10*u20*u01*u21*u02*u12*u22^2-80*u11^2*u00^2*u10*u20*u01*u21*u12^3*u22-48*u11^2*u00^2*u10*u20*u21^2*u02^2*u12*u22-50*u11^2*u00^2*u10*u20*u21^2*u02*u12^3-108*u11^2*u00^2*u10*u01^2*u21^2*u12*u22^2-80*u11^2*u00^2*u10*u01*u21^3*u02*u12*u22-46*u11^2*u00^2*u10*u01*u21^3*u12^3-140*u11^2*u00^2*u10*u21^4*u02^2*u12+256*u11^2*u00^2*u20^3*u02^3*u22^2+208*u11^2*u00^2*u20^3*u02^2*u12^2*u22-80*u11^2*u00^2*u20^3*u02*u12^4+208*u11^2*u00^2*u20^2*u01^2*u02*u22^3-456*u11^2*u00^2*u20^2*u01^2*u12^2*u22^2-1152*u11^2*u00^2*u20^2*u01*u21*u02^2*u22^2-48*u11^2*u00^2*u20^2*u01*u21*u02*u12^2*u22-140*u11^2*u00^2*u20^2*u01*u21*u12^4+208*u11^2*u00^2*u20^2*u21^2*u02^3*u22-456*u11^2*u00^2*u20^2*u21^2*u02^2*u12^2+8*u11^2*u00^2*u20*u01^3*u21*u22^3-216*u11^2*u00^2*u20*u01^2*u21^2*u02*u22^2+78*u11^2*u00^2*u20*u01^2*u21^2*u12^2*u22+368*u11^2*u00^2*u20*u01*u21^3*u02^2*u22-50*u11^2*u00^2*u20*u01*u21^3*u02*u12^2-80*u11^2*u00^2*u20*u21^4*u02^3-8*u11^2*u00^2*u01^3*u21^3*u22^2+32*u11^2*u00^2*u01^2*u21^4*u02*u22-8*u11^2*u00^2*u01^2*u21^4*u12^2-8*u11^2*u00^2*u01*u21^5*u02^2-80*u11^2*u00*u10^4*u02^2*u22^3+32*u11^2*u00*u10^4*u02*u12^2*u22^2+368*u11^2*u00*u10^3*u20*u02^2*u12*u22^2-96*u11^2*u00*u10^3*u20*u02*u12^3*u22-46*u11^2*u00*u10^3*u01^2*u12*u22^3-80*u11^2*u00*u10^3*u01*u21*u02*u12*u22^2+16*u11^2*u00*u10^3*u01*u21*u12^3*u22-50*u11^2*u00*u10^3*u21^2*u02^2*u12*u22+32*u11^2*u00*u10^3*u21^2*u02*u12^3+208*u11^2*u00*u10^2*u20^2*u02^3*u22^2-216*u11^2*u00*u10^2*u20^2*u02^2*u12^2*u22+32*u11^2*u00*u10^2*u20^2*u02*u12^4+304*u11^2*u00*u10^2*u20*u01^2*u02*u22^3+78*u11^2*u00*u10^2*u20*u01^2*u12^2*u22^2-48*u11^2*u00*u10^2*u20*u01*u21*u02^2*u22^2+240*u11^2*u00*u10^2*u20*u01*u21*u02*u12^2*u22+16*u11^2*u00*u10^2*u20*u01*u21*u12^4+304*u11^2*u00*u10^2*u20*u21^2*u02^3*u22+78*u11^2*u00*u10^2*u20*u21^2*u02^2*u12^2-46*u11^2*u00*u10^2*u01^3*u21*u22^3+78*u11^2*u00*u10^2*u01^2*u21^2*u02*u22^2-108*u11^2*u00*u10^2*u01^2*u21^2*u12^2*u22-50*u11^2*u00*u10^2*u01*u21^3*u02^2*u22-84*u11^2*u00*u10^2*u01*u21^3*u02*u12^2-30*u11^2*u00*u10^2*u21^4*u02^3+64*u11^2*u00*u10*u20^3*u02^3*u12*u22+8*u11^2*u00*u10*u20^3*u02^2*u12^3-48*u11^2*u00*u10*u20^2*u01^2*u02*u12*u22^2-50*u11^2*u00*u10*u20^2*u01^2*u12^3*u22+432*u11^2*u00*u10*u20^2*u01*u21*u02^2*u12*u22-80*u11^2*u00*u10*u20^2*u01*u21*u02*u12^3+184*u11^2*u00*u10*u20^2*u21^2*u02^3*u12-80*u11^2*u00*u10*u20*u01^3*u21*u12*u22^2+240*u11^2*u00*u10*u20*u01^2*u21^2*u02*u12*u22-84*u11^2*u00*u10*u20*u01^2*u21^2*u12^3-80*u11^2*u00*u10*u20*u01*u21^3*u02^2*u12+16*u11^2*u00*u10*u01^3*u21^3*u12*u22+16*u11^2*u00*u10*u01^2*u21^4*u02*u12-256*u11^2*u00*u20^4*u02^4*u22+48*u11^2*u00*u20^4*u02^3*u12^2+208*u11^2*u00*u20^3*u01^2*u02^2*u22^2+304*u11^2*u00*u20^3*u01^2*u02*u12^2*u22-30*u11^2*u00*u20^3*u01^2*u12^4+64*u11^2*u00*u20^3*u01*u21*u02^3*u22+184*u11^2*u00*u20^3*u01*u21*u02^2*u12^2+48*u11^2*u00*u20^3*u21^2*u02^4-80*u11^2*u00*u20^2*u01^4*u22^3+368*u11^2*u00*u20^2*u01^3*u21*u02*u22^2-50*u11^2*u00*u20^2*u01^3*u21*u12^2*u22-216*u11^2*u00*u20^2*u01^2*u21^2*u02^2*u22+78*u11^2*u00*u20^2*u01^2*u21^2*u02*u12^2+8*u11^2*u00*u20^2*u01*u21^3*u02^3+32*u11^2*u00*u20*u01^4*u21^2*u22^2-96*u11^2*u00*u20*u01^3*u21^3*u02*u22+32*u11^2*u00*u20*u01^3*u21^3*u12^2+32*u11^2*u00*u20*u01^2*u21^4*u02^2-8*u11^2*u10^5*u02^2*u12*u22^2-80*u11^2*u10^4*u20*u02^3*u22^2+32*u11^2*u10^4*u20*u02^2*u12^2*u22-30*u11^2*u10^4*u01^2*u02*u22^3-8*u11^2*u10^4*u01^2*u12^2*u22^2-140*u11^2*u10^4*u01*u21*u02^2*u22^2+16*u11^2*u10^4*u01*u21*u02*u12^2*u22-30*u11^2*u10^4*u21^2*u02^3*u22-8*u11^2*u10^4*u21^2*u02^2*u12^2+8*u11^2*u10^3*u20^2*u02^3*u12*u22-8*u11^2*u10^3*u20^2*u02^2*u12^3-50*u11^2*u10^3*u20*u01^2*u02*u12*u22^2+32*u11^2*u10^3*u20*u01^2*u12^3*u22-80*u11^2*u10^3*u20*u01*u21*u02^2*u12*u22+16*u11^2*u10^3*u20*u01*u21*u02*u12^3-46*u11^2*u10^3*u20*u21^2*u02^3*u12-46*u11^2*u10^3*u01^3*u21*u12*u22^2-84*u11^2*u10^3*u01^2*u21^2*u02*u12*u22-8*u11^2*u10^3*u01^2*u21^2*u12^3-46*u11^2*u10^3*u01*u21^3*u02^2*u12+48*u11^2*u10^2*u20^3*u02^4*u22-8*u11^2*u10^2*u20^3*u02^3*u12^2-456*u11^2*u10^2*u20^2*u01^2*u02^2*u22^2+78*u11^2*u10^2*u20^2*u01^2*u02*u12^2*u22-8*u11^2*u10^2*u20^2*u01^2*u12^4+184*u11^2*u10^2*u20^2*u01*u21*u02^3*u22-108*u11^2*u10^2*u20^2*u01*u21*u02^2*u12^2-8*u11^2*u10^2*u20^2*u21^2*u02^4-30*u11^2*u10^2*u20*u01^4*u22^3-50*u11^2*u10^2*u20*u01^3*u21*u02*u22^2-84*u11^2*u10^2*u20*u01^3*u21*u12^2*u22+78*u11^2*u10^2*u20*u01^2*u21^2*u02^2*u22-108*u11^2*u10^2*u20*u01^2*u21^2*u02*u12^2-46*u11^2*u10^2*u20*u01*u21^3*u02^3-8*u11^2*u10^2*u01^4*u21^2*u22^2+32*u11^2*u10^2*u01^3*u21^3*u02*u22-8*u11^2*u10^2*u01^3*u21^3*u12^2-8*u11^2*u10^2*u01^2*u21^4*u02^2+184*u11^2*u10*u20^3*u01^2*u02^2*u12*u22-46*u11^2*u10*u20^3*u01^2*u02*u12^3+16*u11^2*u10*u20^3*u01*u21*u02^3*u12-140*u11^2*u10*u20^2*u01^4*u12*u22^2-80*u11^2*u10*u20^2*u01^3*u21*u02*u12*u22-46*u11^2*u10*u20^2*u01^3*u21*u12^3-108*u11^2*u10*u20^2*u01^2*u21^2*u02^2*u12+16*u11^2*u10*u20*u01^4*u21^2*u12*u22+16*u11^2*u10*u20*u01^3*u21^3*u02*u12+48*u11^2*u20^4*u01^2*u02^3*u22-8*u11^2*u20^4*u01^2*u02^2*u12^2-80*u11^2*u20^3*u01^4*u02*u22^2-30*u11^2*u20^3*u01^4*u12^2*u22+8*u11^2*u20^3*u01^3*u21*u02^2*u22-46*u11^2*u20^3*u01^3*u21*u02*u12^2-8*u11^2*u20^3*u01^2*u21^2*u02^3-8*u11^2*u20^2*u01^5*u21*u22^2+32*u11^2*u20^2*u01^4*u21^2*u02*u22-8*u11^2*u20^2*u01^4*u21^2*u12^2-8*u11^2*u20^2*u01^3*u21^3*u02^2+64*u11*u00^4*u10*u21*u02*u22^4-16*u11*u00^4*u10*u21*u12^2*u22^3+64*u11*u00^4*u20*u01*u12*u22^4+704*u11*u00^4*u20*u21*u02*u12*u22^3-160*u11*u00^4*u20*u21*u12^3*u22^2-16*u11*u00^4*u01*u21^2*u12*u22^3-160*u11*u00^4*u21^3*u02*u12*u22^2+36*u11*u00^4*u21^3*u12^3*u22-16*u11*u00^3*u10^2*u01*u12*u22^4-272*u11*u00^3*u10^2*u21*u02*u12*u22^3+64*u11*u00^3*u10^2*u21*u12^3*u22^2+704*u11*u00^3*u10*u20*u01*u02*u22^4-272*u11*u00^3*u10*u20*u01*u12^2*u22^3-1472*u11*u00^3*u10*u20*u21*u02^2*u22^3+208*u11*u00^3*u10*u20*u21*u02*u12^2*u22^2+16*u11*u00^3*u10*u20*u21*u12^4*u22-16*u11*u00^3*u10*u01^2*u21*u22^4-272*u11*u00^3*u10*u01*u21^2*u02*u22^3+76*u11*u00^3*u10*u01*u21^2*u12^2*u22^2+416*u11*u00^3*u10*u21^3*u02^2*u22^2-236*u11*u00^3*u10*u21^3*u02*u12^2*u22+36*u11*u00^3*u10*u21^3*u12^4-1472*u11*u00^3*u20^2*u01*u02*u12*u22^3+416*u11*u00^3*u20^2*u01*u12^3*u22^2+704*u11*u00^3*u20^2*u21*u02^2*u12*u22^2-512*u11*u00^3*u20^2*u21*u02*u12^3*u22+96*u11*u00^3*u20^2*u21*u12^5-272*u11*u00^3*u20*u01^2*u21*u12*u22^3+208*u11*u00^3*u20*u01*u21^2*u02*u12*u22^2-236*u11*u00^3*u20*u01*u21^2*u12^3*u22-512*u11*u00^3*u20*u21^3*u02^2*u12*u22+12*u11*u00^3*u20*u21^3*u02*u12^3+64*u11*u00^3*u01^2*u21^3*u12*u22^2+16*u11*u00^3*u01*u21^4*u02*u12*u22+36*u11*u00^3*u01*u21^4*u12^3+96*u11*u00^3*u21^5*u02^2*u12-160*u11*u00^2*u10^3*u01*u02*u22^4+64*u11*u00^2*u10^3*u01*u12^2*u22^3+416*u11*u00^2*u10^3*u21*u02^2*u22^3-16*u11*u00^2*u10^3*u21*u02*u12^2*u22^2-16*u11*u00^2*u10^3*u21*u12^4*u22+208*u11*u00^2*u10^2*u20*u01*u02*u12*u22^3-16*u11*u00^2*u10^2*u20*u01*u12^3*u22^2+336*u11*u00^2*u10^2*u20*u21*u02^2*u12*u22^2+16*u11*u00^2*u10^2*u20*u21*u02*u12^3*u22-16*u11*u00^2*u10^2*u20*u21*u12^5+76*u11*u00^2*u10^2*u01^2*u21*u12*u22^3-120*u11*u00^2*u10^2*u01*u21^2*u02*u12*u22^2+76*u11*u00^2*u10^2*u01*u21^2*u12^3*u22+316*u11*u00^2*u10^2*u21^3*u02^2*u12*u22-52*u11*u00^2*u10^2*u21^3*u02*u12^3+704*u11*u00^2*u10*u20^2*u01*u02^2*u22^3+336*u11*u00^2*u10*u20^2*u01*u02*u12^2*u22^2-176*u11*u00^2*u10*u20^2*u01*u12^4*u22+704*u11*u00^2*u10*u20^2*u21*u02^3*u22^2+336*u11*u00^2*u10*u20^2*u21*u02^2*u12^2*u22-176*u11*u00^2*u10*u20^2*u21*u02*u12^4-160*u11*u00^2*u10*u20*u01^3*u22^4+208*u11*u00^2*u10*u20*u01^2*u21*u02*u22^3-120*u11*u00^2*u10*u20*u01^2*u21*u12^2*u22^2+336*u11*u00^2*u10*u20*u01*u21^2*u02^2*u22^2-420*u11*u00^2*u10*u20*u01*u21^2*u02*u12^2*u22+124*u11*u00^2*u10*u20*u01*u21^2*u12^4-512*u11*u00^2*u10*u20*u21^3*u02^3*u22+316*u11*u00^2*u10*u20*u21^3*u02^2*u12^2+64*u11*u00^2*u10*u01^3*u21^2*u22^3-16*u11*u00^2*u10*u01^2*u21^3*u02*u22^2+76*u11*u00^2*u10*u01^2*u21^3*u12^2*u22-176*u11*u00^2*u10*u01*u21^4*u02^2*u22+124*u11*u00^2*u10*u01*u21^4*u02*u12^2+96*u11*u00^2*u10*u21^5*u02^3+704*u11*u00^2*u20^3*u01*u02^2*u12*u22^2-512*u11*u00^2*u20^3*u01*u02*u12^3*u22+96*u11*u00^2*u20^3*u01*u12^5-1472*u11*u00^2*u20^3*u21*u02^3*u12*u22+416*u11*u00^2*u20^3*u21*u02^2*u12^3+416*u11*u00^2*u20^2*u01^3*u12*u22^3+336*u11*u00^2*u20^2*u01^2*u21*u02*u12*u22^2+316*u11*u00^2*u20^2*u01^2*u21*u12^3*u22+336*u11*u00^2*u20^2*u01*u21^2*u02^2*u12*u22+316*u11*u00^2*u20^2*u01*u21^2*u02*u12^3+416*u11*u00^2*u20^2*u21^3*u02^3*u12-16*u11*u00^2*u20*u01^3*u21^2*u12*u22^2+16*u11*u00^2*u20*u01^2*u21^3*u02*u12*u22-52*u11*u00^2*u20*u01^2*u21^3*u12^3-176*u11*u00^2*u20*u01*u21^4*u02^2*u12-16*u11*u00^2*u01^3*u21^4*u12*u22-16*u11*u00^2*u01^2*u21^5*u02*u12+16*u11*u00*u10^4*u01*u02*u12*u22^3-16*u11*u00*u10^4*u01*u12^3*u22^2-176*u11*u00*u10^4*u21*u02^2*u12*u22^2+32*u11*u00*u10^4*u21*u02*u12^3*u22-512*u11*u00*u10^3*u20*u01*u02^2*u22^3+16*u11*u00*u10^3*u20*u01*u02*u12^2*u22^2+32*u11*u00*u10^3*u20*u01*u12^4*u22-512*u11*u00*u10^3*u20*u21*u02^3*u22^2+16*u11*u00*u10^3*u20*u21*u02^2*u12^2*u22+32*u11*u00*u10^3*u20*u21*u02*u12^4+36*u11*u00*u10^3*u01^3*u22^4-236*u11*u00*u10^3*u01^2*u21*u02*u22^3+76*u11*u00*u10^3*u01^2*u21*u12^2*u22^2+316*u11*u00*u10^3*u01*u21^2*u02^2*u22^2-56*u11*u00*u10^3*u01*u21^2*u02*u12^2*u22-16*u11*u00*u10^3*u01*u21^2*u12^4+12*u11*u00*u10^3*u21^3*u02^3*u22-52*u11*u00*u10^3*u21^3*u02^2*u12^2+336*u11*u00*u10^2*u20^2*u01*u02^2*u12*u22^2+16*u11*u00*u10^2*u20^2*u01*u02*u12^3*u22-16*u11*u00*u10^2*u20^2*u01*u12^5+208*u11*u00*u10^2*u20^2*u21*u02^3*u12*u22-16*u11*u00*u10^2*u20^2*u21*u02^2*u12^3-236*u11*u00*u10^2*u20*u01^3*u12*u22^3-420*u11*u00*u10^2*u20*u01^2*u21*u02*u12*u22^2-56*u11*u00*u10^2*u20*u01^2*u21*u12^3*u22-420*u11*u00*u10^2*u20*u01*u21^2*u02^2*u12*u22-56*u11*u00*u10^2*u20*u01*u21^2*u02*u12^3-236*u11*u00*u10^2*u20*u21^3*u02^3*u12+76*u11*u00*u10^2*u01^3*u21^2*u12*u22^2-56*u11*u00*u10^2*u01^2*u21^3*u02*u12*u22+64*u11*u00*u10^2*u01^2*u21^3*u12^3+124*u11*u00*u10^2*u01*u21^4*u02^2*u12-1472*u11*u00*u10*u20^3*u01*u02^3*u22^2+208*u11*u00*u10*u20^3*u01*u02^2*u12^2*u22+16*u11*u00*u10*u20^3*u01*u02*u12^4+704*u11*u00*u10*u20^3*u21*u02^4*u22-272*u11*u00*u10*u20^3*u21*u02^3*u12^2-512*u11*u00*u10*u20^2*u01^3*u02*u22^3+316*u11*u00*u10*u20^2*u01^3*u12^2*u22^2+336*u11*u00*u10*u20^2*u01^2*u21*u02^2*u22^2-420*u11*u00*u10*u20^2*u01^2*u21*u02*u12^2*u22+124*u11*u00*u10*u20^2*u01^2*u21*u12^4+208*u11*u00*u10*u20^2*u01*u21^2*u02^3*u22-120*u11*u00*u10*u20^2*u01*u21^2*u02^2*u12^2-160*u11*u00*u10*u20^2*u21^3*u02^4+16*u11*u00*u10*u20*u01^4*u21*u22^3+16*u11*u00*u10*u20*u01^3*u21^2*u02*u22^2-56*u11*u00*u10*u20*u01^3*u21^2*u12^2*u22+16*u11*u00*u10*u20*u01^2*u21^3*u02^2*u22-56*u11*u00*u10*u20*u01^2*u21^3*u02*u12^2+16*u11*u00*u10*u20*u01*u21^4*u02^3-16*u11*u00*u10*u01^4*u21^3*u22^2+32*u11*u00*u10*u01^3*u21^4*u02*u22-16*u11*u00*u10*u01^3*u21^4*u12^2-16*u11*u00*u10*u01^2*u21^5*u02^2+704*u11*u00*u20^4*u01*u02^3*u12*u22-160*u11*u00*u20^4*u01*u02^2*u12^3+64*u11*u00*u20^4*u21*u02^4*u12-512*u11*u00*u20^3*u01^3*u02*u12*u22^2+12*u11*u00*u20^3*u01^3*u12^3*u22+208*u11*u00*u20^3*u01^2*u21*u02^2*u12*u22-236*u11*u00*u20^3*u01^2*u21*u02*u12^3-272*u11*u00*u20^3*u01*u21^2*u02^3*u12-176*u11*u00*u20^2*u01^4*u21*u12*u22^2+16*u11*u00*u20^2*u01^3*u21^2*u02*u12*u22-52*u11*u00*u20^2*u01^3*u21^2*u12^3-16*u11*u00*u20^2*u01^2*u21^3*u02^2*u12+32*u11*u00*u20*u01^4*u21^3*u12*u22+32*u11*u00*u20*u01^3*u21^4*u02*u12+96*u11*u10^5*u01*u02^2*u22^3-16*u11*u10^5*u01*u02*u12^2*u22^2+96*u11*u10^5*u21*u02^3*u22^2-16*u11*u10^5*u21*u02^2*u12^2*u22-176*u11*u10^4*u20*u01*u02^2*u12*u22^2+32*u11*u10^4*u20*u01*u02*u12^3*u22+16*u11*u10^4*u20*u21*u02^3*u12*u22-16*u11*u10^4*u20*u21*u02^2*u12^3+36*u11*u10^4*u01^3*u12*u22^3+124*u11*u10^4*u01^2*u21*u02*u12*u22^2-16*u11*u10^4*u01^2*u21*u12^3*u22+124*u11*u10^4*u01*u21^2*u02^2*u12*u22-16*u11*u10^4*u01*u21^2*u02*u12^3+36*u11*u10^4*u21^3*u02^3*u12+416*u11*u10^3*u20^2*u01*u02^3*u22^2-16*u11*u10^3*u20^2*u01*u02^2*u12^2*u22-16*u11*u10^3*u20^2*u01*u02*u12^4-160*u11*u10^3*u20^2*u21*u02^4*u22+64*u11*u10^3*u20^2*u21*u02^3*u12^2+12*u11*u10^3*u20*u01^3*u02*u22^3-52*u11*u10^3*u20*u01^3*u12^2*u22^2+316*u11*u10^3*u20*u01^2*u21*u02^2*u22^2-56*u11*u10^3*u20*u01^2*u21*u02*u12^2*u22-16*u11*u10^3*u20*u01^2*u21*u12^4-236*u11*u10^3*u20*u01*u21^2*u02^3*u22+76*u11*u10^3*u20*u01*u21^2*u02^2*u12^2+36*u11*u10^3*u20*u21^3*u02^4+36*u11*u10^3*u01^4*u21*u22^3-52*u11*u10^3*u01^3*u21^2*u02*u22^2+64*u11*u10^3*u01^3*u21^2*u12^2*u22-52*u11*u10^3*u01^2*u21^3*u02^2*u22+64*u11*u10^3*u01^2*u21^3*u02*u12^2+36*u11*u10^3*u01*u21^4*u02^3-272*u11*u10^2*u20^3*u01*u02^3*u12*u22+64*u11*u10^2*u20^3*u01*u02^2*u12^3-16*u11*u10^2*u20^3*u21*u02^4*u12+316*u11*u10^2*u20^2*u01^3*u02*u12*u22^2-52*u11*u10^2*u20^2*u01^3*u12^3*u22-120*u11*u10^2*u20^2*u01^2*u21*u02^2*u12*u22+76*u11*u10^2*u20^2*u01^2*u21*u02*u12^3+76*u11*u10^2*u20^2*u01*u21^2*u02^3*u12+124*u11*u10^2*u20*u01^4*u21*u12*u22^2-56*u11*u10^2*u20*u01^3*u21^2*u02*u12*u22+64*u11*u10^2*u20*u01^3*u21^2*u12^3+76*u11*u10^2*u20*u01^2*u21^3*u02^2*u12-16*u11*u10^2*u01^4*u21^3*u12*u22-16*u11*u10^2*u01^3*u21^4*u02*u12+64*u11*u10*u20^4*u01*u02^4*u22-16*u11*u10*u20^4*u01*u02^3*u12^2+416*u11*u10*u20^3*u01^3*u02^2*u22^2-236*u11*u10*u20^3*u01^3*u02*u12^2*u22+36*u11*u10*u20^3*u01^3*u12^4-272*u11*u10*u20^3*u01^2*u21*u02^3*u22+76*u11*u10*u20^3*u01^2*u21*u02^2*u12^2-16*u11*u10*u20^3*u01*u21^2*u02^4+96*u11*u10*u20^2*u01^5*u22^3-176*u11*u10*u20^2*u01^4*u21*u02*u22^2+124*u11*u10*u20^2*u01^4*u21*u12^2*u22-16*u11*u10*u20^2*u01^3*u21^2*u02^2*u22+76*u11*u10*u20^2*u01^3*u21^2*u02*u12^2+64*u11*u10*u20^2*u01^2*u21^3*u02^3-16*u11*u10*u20*u01^5*u21^2*u22^2+32*u11*u10*u20*u01^4*u21^3*u02*u22-16*u11*u10*u20*u01^4*u21^3*u12^2-16*u11*u10*u20*u01^3*u21^4*u02^2-160*u11*u20^4*u01^3*u02^2*u12*u22+36*u11*u20^4*u01^3*u02*u12^3-16*u11*u20^4*u01^2*u21*u02^3*u12+96*u11*u20^3*u01^5*u12*u22^2+16*u11*u20^3*u01^4*u21*u02*u12*u22+36*u11*u20^3*u01^4*u21*u12^3+64*u11*u20^3*u01^3*u21^2*u02^2*u12-16*u11*u20^2*u01^5*u21^2*u12*u22-16*u11*u20^2*u01^4*u21^3*u02*u12+256*u00^5*u20*u02*u22^5-64*u00^5*u20*u12^2*u22^4-64*u00^5*u21^2*u02*u22^4+16*u00^5*u21^2*u12^2*u22^3-64*u00^4*u10^2*u02*u22^5+16*u00^4*u10^2*u12^2*u22^4-512*u00^4*u10*u20*u02*u12*u22^4+128*u00^4*u10*u20*u12^3*u22^3+96*u00^4*u10*u21^2*u02*u12*u22^3-24*u00^4*u10*u21^2*u12^3*u22^2-1024*u00^4*u20^2*u02^2*u22^4+768*u00^4*u20^2*u02*u12^2*u22^3-128*u00^4*u20^2*u12^4*u22^2-64*u00^4*u20*u01^2*u22^5-512*u00^4*u20*u01*u21*u02*u22^4+96*u00^4*u20*u01*u21*u12^2*u22^3+768*u00^4*u20*u21^2*u02^2*u22^3-784*u00^4*u20*u21^2*u02*u12^2*u22^2+144*u00^4*u20*u21^2*u12^4*u22+16*u00^4*u01^2*u21^2*u22^4+128*u00^4*u01*u21^3*u02*u22^3-24*u00^4*u01*u21^3*u12^2*u22^2-128*u00^4*u21^4*u02^2*u22^2+144*u00^4*u21^4*u02*u12^2*u22-27*u00^4*u21^4*u12^4+128*u00^3*u10^3*u02*u12*u22^4-32*u00^3*u10^3*u12^3*u22^3+768*u00^3*u10^2*u20*u02^2*u22^4-64*u00^3*u10^2*u20*u02*u12^2*u22^3-32*u00^3*u10^2*u20*u12^4*u22^2+16*u00^3*u10^2*u01^2*u22^5+96*u00^3*u10^2*u01*u21*u02*u22^4-16*u00^3*u10^2*u01*u21*u12^2*u22^3-240*u00^3*u10^2*u21^2*u02^2*u22^3+160*u00^3*u10^2*u21^2*u02*u12^2*u22^2-24*u00^3*u10^2*u21^2*u12^4*u22+512*u00^3*u10*u20^2*u02^2*u12*u22^3-640*u00^3*u10*u20^2*u02*u12^3*u22^2+128*u00^3*u10*u20^2*u12^5*u22+96*u00^3*u10*u20*u01^2*u12*u22^4+128*u00^3*u10*u20*u01*u21*u02*u12*u22^3+16*u00^3*u10*u20*u01*u21*u12^3*u22^2+416*u00^3*u10*u20*u21^2*u02^2*u12*u22^2+208*u00^3*u10*u20*u21^2*u02*u12^3*u22-72*u00^3*u10*u20*u21^2*u12^5-16*u00^3*u10*u01^2*u21^2*u12*u22^3+16*u00^3*u10*u01*u21^3*u02*u12*u22^2-12*u00^3*u10*u01*u21^3*u12^3*u22-160*u00^3*u10*u21^4*u02^2*u12*u22+36*u00^3*u10*u21^4*u02*u12^3+1536*u00^3*u20^3*u02^3*u22^3-1408*u00^3*u20^3*u02^2*u12^2*u22^2+512*u00^3*u20^3*u02*u12^4*u22-64*u00^3*u20^3*u12^6+768*u00^3*u20^2*u01^2*u02*u22^4-240*u00^3*u20^2*u01^2*u12^2*u22^3+512*u00^3*u20^2*u01*u21*u02^2*u22^3+416*u00^3*u20^2*u01*u21*u02*u12^2*u22^2-160*u00^3*u20^2*u01*u21*u12^4*u22-1408*u00^3*u20^2*u21^2*u02^3*u22^2+496*u00^3*u20^2*u21^2*u02^2*u12^2*u22-48*u00^3*u20^2*u21^2*u02*u12^4+128*u00^3*u20*u01^3*u21*u22^4-64*u00^3*u20*u01^2*u21^2*u02*u22^3+160*u00^3*u20*u01^2*u21^2*u12^2*u22^2-640*u00^3*u20*u01*u21^3*u02^2*u22^2+208*u00^3*u20*u01*u21^3*u02*u12^2*u22+36*u00^3*u20*u01*u21^3*u12^4+512*u00^3*u20*u21^4*u02^3*u22-48*u00^3*u20*u21^4*u02^2*u12^2-32*u00^3*u01^3*u21^3*u22^3-32*u00^3*u01^2*u21^4*u02*u22^2-24*u00^3*u01^2*u21^4*u12^2*u22+128*u00^3*u01*u21^5*u02^2*u22-72*u00^3*u01*u21^5*u02*u12^2-64*u00^3*u21^6*u02^3-128*u00^2*u10^4*u02^2*u22^4-32*u00^2*u10^4*u02*u12^2*u22^3+16*u00^2*u10^4*u12^4*u22^2-640*u00^2*u10^3*u20*u02^2*u12*u22^3+288*u00^2*u10^3*u20*u02*u12^3*u22^2-32*u00^2*u10^3*u20*u12^5*u22-24*u00^2*u10^3*u01^2*u12*u22^4+16*u00^2*u10^3*u01*u21*u02*u12*u22^3-16*u00^2*u10^3*u01*u21*u12^3*u22^2-56*u00^2*u10^3*u21^2*u02^2*u12*u22^2-56*u00^2*u10^3*u21^2*u02*u12^3*u22+16*u00^2*u10^3*u21^2*u12^5-1408*u00^2*u10^2*u20^2*u02^3*u22^3+1632*u00^2*u10^2*u20^2*u02^2*u12^2*u22^2-384*u00^2*u10^2*u20^2*u02*u12^4*u22+16*u00^2*u10^2*u20^2*u12^6-784*u00^2*u10^2*u20*u01^2*u02*u22^4+160*u00^2*u10^2*u20*u01^2*u12^2*u22^3+416*u00^2*u10^2*u20*u01*u21*u02^2*u22^3-432*u00^2*u10^2*u20*u01*u21*u02*u12^2*u22^2+64*u00^2*u10^2*u20*u01*u21*u12^4*u22+496*u00^2*u10^2*u20*u21^2*u02^3*u22^2-768*u00^2*u10^2*u20*u21^2*u02^2*u12^2*u22+152*u00^2*u10^2*u20*u21^2*u02*u12^4-24*u00^2*u10^2*u01^3*u21*u22^4+160*u00^2*u10^2*u01^2*u21^2*u02*u22^3-66*u00^2*u10^2*u01^2*u21^2*u12^2*u22^2-56*u00^2*u10^2*u01*u21^3*u02^2*u22^2+76*u00^2*u10^2*u01*u21^3*u02*u12^2*u22-24*u00^2*u10^2*u01*u21^3*u12^4-48*u00^2*u10^2*u21^4*u02^3*u22-2*u00^2*u10^2*u21^4*u02^2*u12^2+512*u00^2*u10*u20^3*u02^3*u12*u22^2-640*u00^2*u10*u20^3*u02^2*u12^3*u22+128*u00^2*u10*u20^3*u02*u12^5+416*u00^2*u10*u20^2*u01^2*u02*u12*u22^3-56*u00^2*u10*u20^2*u01^2*u12^3*u22^2-2304*u00^2*u10*u20^2*u01*u21*u02^2*u12*u22^2+736*u00^2*u10*u20^2*u01*u21*u02*u12^3*u22-16*u00^2*u10*u20^2*u01*u21*u12^5+416*u00^2*u10*u20^2*u21^2*u02^3*u12*u22-56*u00^2*u10*u20^2*u21^2*u02^2*u12^3+16*u00^2*u10*u20*u01^3*u21*u12*u22^3-432*u00^2*u10*u20*u01^2*u21^2*u02*u12*u22^2+76*u00^2*u10*u20*u01^2*u21^2*u12^3*u22+736*u00^2*u10*u20*u01*u21^3*u02^2*u12*u22-260*u00^2*u10*u20*u01*u21^3*u02*u12^3-160*u00^2*u10*u20*u21^4*u02^3*u12-16*u00^2*u10*u01^3*u21^3*u12*u22^2+64*u00^2*u10*u01^2*u21^4*u02*u12*u22-24*u00^2*u10*u01^2*u21^4*u12^3-16*u00^2*u10*u01*u21^5*u02^2*u12-1024*u00^2*u20^4*u02^4*u22^2+768*u00^2*u20^4*u02^3*u12^2*u22-128*u00^2*u20^4*u02^2*u12^4-1408*u00^2*u20^3*u01^2*u02^2*u22^3+496*u00^2*u20^3*u01^2*u02*u12^2*u22^2-48*u00^2*u20^3*u01^2*u12^4*u22+512*u00^2*u20^3*u01*u21*u02^3*u22^2+416*u00^2*u20^3*u01*u21*u02^2*u12^2*u22-160*u00^2*u20^3*u01*u21*u02*u12^4+768*u00^2*u20^3*u21^2*u02^4*u22-240*u00^2*u20^3*u21^2*u02^3*u12^2-128*u00^2*u20^2*u01^4*u22^4-640*u00^2*u20^2*u01^3*u21*u02*u22^3-56*u00^2*u20^2*u01^3*u21*u12^2*u22^2+1632*u00^2*u20^2*u01^2*u21^2*u02^2*u22^2-768*u00^2*u20^2*u01^2*u21^2*u02*u12^2*u22-2*u00^2*u20^2*u01^2*u21^2*u12^4-640*u00^2*u20^2*u01*u21^3*u02^3*u22-56*u00^2*u20^2*u01*u21^3*u02^2*u12^2-128*u00^2*u20^2*u21^4*u02^4-32*u00^2*u20*u01^4*u21^2*u22^3+288*u00^2*u20*u01^3*u21^3*u02*u22^2-56*u00^2*u20*u01^3*u21^3*u12^2*u22-384*u00^2*u20*u01^2*u21^4*u02^2*u22+152*u00^2*u20*u01^2*u21^4*u02*u12^2+128*u00^2*u20*u01*u21^5*u02^3+16*u00^2*u01^4*u21^4*u22^2-32*u00^2*u01^3*u21^5*u02*u22+16*u00^2*u01^3*u21^5*u12^2+16*u00^2*u01^2*u21^6*u02^2+128*u00*u10^5*u02^2*u12*u22^3-32*u00*u10^5*u02*u12^3*u22^2+512*u00*u10^4*u20*u02^3*u22^3-384*u00*u10^4*u20*u02^2*u12^2*u22^2+64*u00*u10^4*u20*u02*u12^4*u22+144*u00*u10^4*u01^2*u02*u22^4-24*u00*u10^4*u01^2*u12^2*u22^3-160*u00*u10^4*u01*u21*u02^2*u22^3+64*u00*u10^4*u01*u21*u02*u12^2*u22^2-48*u00*u10^4*u21^2*u02^3*u22^2+152*u00*u10^4*u21^2*u02^2*u12^2*u22-32*u00*u10^4*u21^2*u02*u12^4-640*u00*u10^3*u20^2*u02^3*u12*u22^2+288*u00*u10^3*u20^2*u02^2*u12^3*u22-32*u00*u10^3*u20^2*u02*u12^5+208*u00*u10^3*u20*u01^2*u02*u12*u22^3-56*u00*u10^3*u20*u01^2*u12^3*u22^2+736*u00*u10^3*u20*u01*u21*u02^2*u12*u22^2-192*u00*u10^3*u20*u01*u21*u02*u12^3*u22+208*u00*u10^3*u20*u21^2*u02^3*u12*u22-56*u00*u10^3*u20*u21^2*u02^2*u12^3-12*u00*u10^3*u01^3*u21*u12*u22^3+76*u00*u10^3*u01^2*u21^2*u02*u12*u22^2-16*u00*u10^3*u01^2*u21^2*u12^3*u22-260*u00*u10^3*u01*u21^3*u02^2*u12*u22+80*u00*u10^3*u01*u21^3*u02*u12^3+36*u00*u10^3*u21^4*u02^3*u12+768*u00*u10^2*u20^3*u02^4*u22^2-64*u00*u10^2*u20^3*u02^3*u12^2*u22-32*u00*u10^2*u20^3*u02^2*u12^4+496*u00*u10^2*u20^2*u01^2*u02^2*u22^3-768*u00*u10^2*u20^2*u01^2*u02*u12^2*u22^2+152*u00*u10^2*u20^2*u01^2*u12^4*u22+416*u00*u10^2*u20^2*u01*u21*u02^3*u22^2-432*u00*u10^2*u20^2*u01*u21*u02^2*u12^2*u22+64*u00*u10^2*u20^2*u01*u21*u02*u12^4-784*u00*u10^2*u20^2*u21^2*u02^4*u22+160*u00*u10^2*u20^2*u21^2*u02^3*u12^2+144*u00*u10^2*u20*u01^4*u22^4+208*u00*u10^2*u20*u01^3*u21*u02*u22^3+76*u00*u10^2*u20*u01^3*u21*u12^2*u22^2-768*u00*u10^2*u20*u01^2*u21^2*u02^2*u22^2+696*u00*u10^2*u20*u01^2*u21^2*u02*u12^2*u22-80*u00*u10^2*u20*u01^2*u21^2*u12^4+208*u00*u10^2*u20*u01*u21^3*u02^3*u22+76*u00*u10^2*u20*u01*u21^3*u02^2*u12^2+144*u00*u10^2*u20*u21^4*u02^4-24*u00*u10^2*u01^4*u21^2*u22^3-56*u00*u10^2*u01^3*u21^3*u02*u22^2-16*u00*u10^2*u01^3*u21^3*u12^2*u22+152*u00*u10^2*u01^2*u21^4*u02^2*u22-80*u00*u10^2*u01^2*u21^4*u02*u12^2-72*u00*u10^2*u01*u21^5*u02^3-512*u00*u10*u20^4*u02^4*u12*u22+128*u00*u10*u20^4*u02^3*u12^3+416*u00*u10*u20^3*u01^2*u02^2*u12*u22^2+208*u00*u10*u20^3*u01^2*u02*u12^3*u22-72*u00*u10*u20^3*u01^2*u12^5+128*u00*u10*u20^3*u01*u21*u02^3*u12*u22+16*u00*u10*u20^3*u01*u21*u02^2*u12^3+96*u00*u10*u20^3*u21^2*u02^4*u12-160*u00*u10*u20^2*u01^4*u12*u22^3+736*u00*u10*u20^2*u01^3*u21*u02*u12*u22^2-260*u00*u10*u20^2*u01^3*u21*u12^3*u22-432*u00*u10*u20^2*u01^2*u21^2*u02^2*u12*u22+76*u00*u10*u20^2*u01^2*u21^2*u02*u12^3+16*u00*u10*u20^2*u01*u21^3*u02^3*u12+64*u00*u10*u20*u01^4*u21^2*u12*u22^2-192*u00*u10*u20*u01^3*u21^3*u02*u12*u22+80*u00*u10*u20*u01^3*u21^3*u12^3+64*u00*u10*u20*u01^2*u21^4*u02^2*u12+256*u00*u20^5*u02^5*u22-64*u00*u20^5*u02^4*u12^2+768*u00*u20^4*u01^2*u02^3*u22^2-784*u00*u20^4*u01^2*u02^2*u12^2*u22+144*u00*u20^4*u01^2*u02*u12^4-512*u00*u20^4*u01*u21*u02^4*u22+96*u00*u20^4*u01*u21*u02^3*u12^2-64*u00*u20^4*u21^2*u02^5+512*u00*u20^3*u01^4*u02*u22^3-48*u00*u20^3*u01^4*u12^2*u22^2-640*u00*u20^3*u01^3*u21*u02^2*u22^2+208*u00*u20^3*u01^3*u21*u02*u12^2*u22+36*u00*u20^3*u01^3*u21*u12^4-64*u00*u20^3*u01^2*u21^2*u02^3*u22+160*u00*u20^3*u01^2*u21^2*u02^2*u12^2+128*u00*u20^3*u01*u21^3*u02^4+128*u00*u20^2*u01^5*u21*u22^3-384*u00*u20^2*u01^4*u21^2*u02*u22^2+152*u00*u20^2*u01^4*u21^2*u12^2*u22+288*u00*u20^2*u01^3*u21^3*u02^2*u22-56*u00*u20^2*u01^3*u21^3*u02*u12^2-32*u00*u20^2*u01^2*u21^4*u02^3-32*u00*u20*u01^5*u21^3*u22^2+64*u00*u20*u01^4*u21^4*u02*u22-32*u00*u20*u01^4*u21^4*u12^2-32*u00*u20*u01^3*u21^5*u02^2-64*u10^6*u02^3*u22^3+16*u10^6*u02^2*u12^2*u22^2+128*u10^5*u20*u02^3*u12*u22^2-32*u10^5*u20*u02^2*u12^3*u22-72*u10^5*u01^2*u02*u12*u22^3+16*u10^5*u01^2*u12^3*u22^2-16*u10^5*u01*u21*u02^2*u12*u22^2-72*u10^5*u21^2*u02^3*u12*u22+16*u10^5*u21^2*u02^2*u12^3-128*u10^4*u20^2*u02^4*u22^2-32*u10^4*u20^2*u02^3*u12^2*u22+16*u10^4*u20^2*u02^2*u12^4-48*u10^4*u20*u01^2*u02^2*u22^3+152*u10^4*u20*u01^2*u02*u12^2*u22^2-32*u10^4*u20*u01^2*u12^4*u22-160*u10^4*u20*u01*u21*u02^3*u22^2+64*u10^4*u20*u01*u21*u02^2*u12^2*u22+144*u10^4*u20*u21^2*u02^4*u22-24*u10^4*u20*u21^2*u02^3*u12^2-27*u10^4*u01^4*u22^4+36*u10^4*u01^3*u21*u02*u22^3-24*u10^4*u01^3*u21*u12^2*u22^2-2*u10^4*u01^2*u21^2*u02^2*u22^2-80*u10^4*u01^2*u21^2*u02*u12^2*u22+16*u10^4*u01^2*u21^2*u12^4+36*u10^4*u01*u21^3*u02^3*u22-24*u10^4*u01*u21^3*u02^2*u12^2-27*u10^4*u21^4*u02^4+128*u10^3*u20^3*u02^4*u12*u22-32*u10^3*u20^3*u02^3*u12^3-56*u10^3*u20^2*u01^2*u02^2*u12*u22^2-56*u10^3*u20^2*u01^2*u02*u12^3*u22+16*u10^3*u20^2*u01^2*u12^5+16*u10^3*u20^2*u01*u21*u02^3*u12*u22-16*u10^3*u20^2*u01*u21*u02^2*u12^3-24*u10^3*u20^2*u21^2*u02^4*u12+36*u10^3*u20*u01^4*u12*u22^3-260*u10^3*u20*u01^3*u21*u02*u12*u22^2+80*u10^3*u20*u01^3*u21*u12^3*u22+76*u10^3*u20*u01^2*u21^2*u02^2*u12*u22-16*u10^3*u20*u01^2*u21^2*u02*u12^3-12*u10^3*u20*u01*u21^3*u02^3*u12-24*u10^3*u01^4*u21^2*u12*u22^2+80*u10^3*u01^3*u21^3*u02*u12*u22-32*u10^3*u01^3*u21^3*u12^3-24*u10^3*u01^2*u21^4*u02^2*u12-64*u10^2*u20^4*u02^5*u22+16*u10^2*u20^4*u02^4*u12^2-240*u10^2*u20^3*u01^2*u02^3*u22^2+160*u10^2*u20^3*u01^2*u02^2*u12^2*u22-24*u10^2*u20^3*u01^2*u02*u12^4+96*u10^2*u20^3*u01*u21*u02^4*u22-16*u10^2*u20^3*u01*u21*u02^3*u12^2+16*u10^2*u20^3*u21^2*u02^5-48*u10^2*u20^2*u01^4*u02*u22^3-2*u10^2*u20^2*u01^4*u12^2*u22^2-56*u10^2*u20^2*u01^3*u21*u02^2*u22^2+76*u10^2*u20^2*u01^3*u21*u02*u12^2*u22-24*u10^2*u20^2*u01^3*u21*u12^4+160*u10^2*u20^2*u01^2*u21^2*u02^3*u22-66*u10^2*u20^2*u01^2*u21^2*u02^2*u12^2-24*u10^2*u20^2*u01*u21^3*u02^4-72*u10^2*u20*u01^5*u21*u22^3+152*u10^2*u20*u01^4*u21^2*u02*u22^2-80*u10^2*u20*u01^4*u21^2*u12^2*u22-56*u10^2*u20*u01^3*u21^3*u02^2*u22-16*u10^2*u20*u01^3*u21^3*u02*u12^2-24*u10^2*u20*u01^2*u21^4*u02^3+16*u10^2*u01^5*u21^3*u22^2-32*u10^2*u01^4*u21^4*u02*u22+16*u10^2*u01^4*u21^4*u12^2+16*u10^2*u01^3*u21^5*u02^2+96*u10*u20^4*u01^2*u02^3*u12*u22-24*u10*u20^4*u01^2*u02^2*u12^3-160*u10*u20^3*u01^4*u02*u12*u22^2+36*u10*u20^3*u01^4*u12^3*u22+16*u10*u20^3*u01^3*u21*u02^2*u12*u22-12*u10*u20^3*u01^3*u21*u02*u12^3-16*u10*u20^3*u01^2*u21^2*u02^3*u12-16*u10*u20^2*u01^5*u21*u12*u22^2+64*u10*u20^2*u01^4*u21^2*u02*u12*u22-24*u10*u20^2*u01^4*u21^2*u12^3-16*u10*u20^2*u01^3*u21^3*u02^2*u12-64*u20^5*u01^2*u02^4*u22+16*u20^5*u01^2*u02^3*u12^2-128*u20^4*u01^4*u02^2*u22^2+144*u20^4*u01^4*u02*u12^2*u22-27*u20^4*u01^4*u12^4+128*u20^4*u01^3*u21*u02^3*u22-24*u20^4*u01^3*u21*u02^2*u12^2+16*u20^4*u01^2*u21^2*u02^4-64*u20^3*u01^6*u22^3+128*u20^3*u01^5*u21*u02*u22^2-72*u20^3*u01^5*u21*u12^2*u22-32*u20^3*u01^4*u21^2*u02^2*u22-24*u20^3*u01^4*u21^2*u02*u12^2-32*u20^3*u01^3*u21^3*u02^3+16*u20^2*u01^6*u21^2*u22^2-32*u20^2*u01^5*u21^3*u02*u22+16*u20^2*u01^5*u21^3*u12^2+16*u20^2*u01^4*u21^4*u02^2)"; return(Delta); } if ((invar=="numerator") and (curve=="2x2")) { string A="(u11^12-24*u11^10*u00*u22-24*u11^10*u10*u12-24*u11^10*u20*u02-24*u11^10*u01*u21+72*u11^9*u00*u21*u12+72*u11^9*u10*u01*u22+72*u11^9*u10*u21*u02+72*u11^9*u20*u01*u12+240*u11^8*u00^2*u22^2+336*u11^8*u00*u10*u12*u22+1056*u11^8*u00*u20*u02*u22-144*u11^8*u00*u20*u12^2+336*u11^8*u00*u01*u21*u22-144*u11^8*u00*u21^2*u02-144*u11^8*u10^2*u02*u22+240*u11^8*u10^2*u12^2+336*u11^8*u10*u20*u02*u12+336*u11^8*u10*u01*u21*u12+240*u11^8*u20^2*u02^2-144*u11^8*u20*u01^2*u22+336*u11^8*u20*u01*u21*u02+240*u11^8*u01^2*u21^2-1152*u11^7*u00^2*u21*u12*u22-1152*u11^7*u00*u10*u01*u22^2-1152*u11^7*u00*u10*u21*u02*u22-1152*u11^7*u00*u10*u21*u12^2-1152*u11^7*u00*u20*u01*u12*u22-1152*u11^7*u00*u20*u21*u02*u12-1152*u11^7*u00*u01*u21^2*u12-1152*u11^7*u10^2*u01*u12*u22-1152*u11^7*u10^2*u21*u02*u12-1152*u11^7*u10*u20*u01*u02*u22-1152*u11^7*u10*u20*u01*u12^2-1152*u11^7*u10*u20*u21*u02^2-1152*u11^7*u10*u01^2*u21*u22-1152*u11^7*u10*u01*u21^2*u02-1152*u11^7*u20^2*u01*u02*u12-1152*u11^7*u20*u01^2*u21*u12-1280*u11^6*u00^3*u22^3-1536*u11^6*u00^2*u10*u12*u22^2-13056*u11^6*u00^2*u20*u02*u22^2+2304*u11^6*u00^2*u20*u12^2*u22-1536*u11^6*u00^2*u01*u21*u22^2+2304*u11^6*u00^2*u21^2*u02*u22+1728*u11^6*u00^2*u21^2*u12^2+2304*u11^6*u00*u10^2*u02*u22^2-1536*u11^6*u00*u10^2*u12^2*u22-12288*u11^6*u00*u10*u20*u02*u12*u22+2304*u11^6*u00*u10*u20*u12^3+2688*u11^6*u00*u10*u01*u21*u12*u22+5760*u11^6*u00*u10*u21^2*u02*u12-13056*u11^6*u00*u20^2*u02^2*u22+2304*u11^6*u00*u20^2*u02*u12^2+2304*u11^6*u00*u20*u01^2*u22^2-12288*u11^6*u00*u20*u01*u21*u02*u22+5760*u11^6*u00*u20*u01*u21*u12^2+2304*u11^6*u00*u20*u21^2*u02^2-1536*u11^6*u00*u01^2*u21^2*u22+2304*u11^6*u00*u01*u21^3*u02+2304*u11^6*u10^3*u02*u12*u22-1280*u11^6*u10^3*u12^3+2304*u11^6*u10^2*u20*u02^2*u22-1536*u11^6*u10^2*u20*u02*u12^2+1728*u11^6*u10^2*u01^2*u22^2+5760*u11^6*u10^2*u01*u21*u02*u22-1536*u11^6*u10^2*u01*u21*u12^2+1728*u11^6*u10^2*u21^2*u02^2-1536*u11^6*u10*u20^2*u02^2*u12+5760*u11^6*u10*u20*u01^2*u12*u22+2688*u11^6*u10*u20*u01*u21*u02*u12-1536*u11^6*u10*u01^2*u21^2*u12-1280*u11^6*u20^3*u02^3+2304*u11^6*u20^2*u01^2*u02*u22+1728*u11^6*u20^2*u01^2*u12^2-1536*u11^6*u20^2*u01*u21*u02^2+2304*u11^6*u20*u01^3*u21*u22-1536*u11^6*u20*u01^2*u21^2*u02-1280*u11^6*u01^3*u21^3+6912*u11^5*u00^3*u21*u12*u22^2+6912*u11^5*u00^2*u10*u01*u22^3+6912*u11^5*u00^2*u10*u21*u02*u22^2+6912*u11^5*u00^2*u10*u21*u12^2*u22+6912*u11^5*u00^2*u20*u01*u12*u22^2+41472*u11^5*u00^2*u20*u21*u02*u12*u22-6912*u11^5*u00^2*u20*u21*u12^3+6912*u11^5*u00^2*u01*u21^2*u12*u22-6912*u11^5*u00^2*u21^3*u02*u12+6912*u11^5*u00*u10^2*u01*u12*u22^2+6912*u11^5*u00*u10^2*u21*u12^3+41472*u11^5*u00*u10*u20*u01*u02*u22^2+41472*u11^5*u00*u10*u20*u21*u02^2*u22+6912*u11^5*u00*u10*u01^2*u21*u22^2+6912*u11^5*u00*u10*u01*u21^2*u12^2-6912*u11^5*u00*u10*u21^3*u02^2+41472*u11^5*u00*u20^2*u01*u02*u12*u22-6912*u11^5*u00*u20^2*u01*u12^3+6912*u11^5*u00*u20^2*u21*u02^2*u12+6912*u11^5*u00*u01^2*u21^3*u12-6912*u11^5*u10^3*u01*u02*u22^2+6912*u11^5*u10^3*u01*u12^2*u22-6912*u11^5*u10^3*u21*u02^2*u22+6912*u11^5*u10^3*u21*u02*u12^2+6912*u11^5*u10^2*u20*u01*u12^3+6912*u11^5*u10^2*u20*u21*u02^2*u12+6912*u11^5*u10^2*u01^2*u21*u12*u22+6912*u11^5*u10^2*u01*u21^2*u02*u12+6912*u11^5*u10*u20^2*u01*u02^2*u22+6912*u11^5*u10*u20^2*u01*u02*u12^2+6912*u11^5*u10*u20^2*u21*u02^3-6912*u11^5*u10*u20*u01^3*u22^2+6912*u11^5*u10*u20*u01^2*u21*u12^2+6912*u11^5*u10*u20*u01*u21^2*u02^2+6912*u11^5*u10*u01^3*u21^2*u22+6912*u11^5*u10*u01^2*u21^3*u02+6912*u11^5*u20^3*u01*u02^2*u12-6912*u11^5*u20^2*u01^3*u12*u22+6912*u11^5*u20^2*u01^2*u21*u02*u12+6912*u11^5*u20*u01^3*u21^2*u12+3840*u11^4*u00^4*u22^4+1536*u11^4*u00^3*u10*u12*u22^3+70656*u11^4*u00^3*u20*u02*u22^3-13824*u11^4*u00^3*u20*u12^2*u22^2+1536*u11^4*u00^3*u01*u21*u22^3-13824*u11^4*u00^3*u21^2*u02*u22^2-13824*u11^4*u00^3*u21^2*u12^2*u22-13824*u11^4*u00^2*u10^2*u02*u22^3+2304*u11^4*u00^2*u10^2*u12^2*u22^2+59904*u11^4*u00^2*u10*u20*u02*u12*u22^2-13824*u11^4*u00^2*u10*u20*u12^3*u22-36864*u11^4*u00^2*u10*u01*u21*u12*u22^2-41472*u11^4*u00^2*u10*u21^2*u02*u12*u22-13824*u11^4*u00^2*u10*u21^2*u12^3+244224*u11^4*u00^2*u20^2*u02^2*u22^2-82944*u11^4*u00^2*u20^2*u02*u12^2*u22+6912*u11^4*u00^2*u20^2*u12^4-13824*u11^4*u00^2*u20*u01^2*u22^3+59904*u11^4*u00^2*u20*u01*u21*u02*u22^2-41472*u11^4*u00^2*u20*u01*u21*u12^2*u22-82944*u11^4*u00^2*u20*u21^2*u02^2*u22+2304*u11^4*u00^2*u01^2*u21^2*u22^2-13824*u11^4*u00^2*u01*u21^3*u02*u22-13824*u11^4*u00^2*u01*u21^3*u12^2+6912*u11^4*u00^2*u21^4*u02^2-13824*u11^4*u00*u10^3*u02*u12*u22^2+1536*u11^4*u00*u10^3*u12^3*u22-82944*u11^4*u00*u10^2*u20*u02^2*u22^2+73728*u11^4*u00*u10^2*u20*u02*u12^2*u22-13824*u11^4*u00*u10^2*u20*u12^4-13824*u11^4*u00*u10^2*u01^2*u22^3-41472*u11^4*u00*u10^2*u01*u21*u02*u22^2-36864*u11^4*u00*u10^2*u01*u21*u12^2*u22-41472*u11^4*u00*u10^2*u21^2*u02*u12^2+59904*u11^4*u00*u10*u20^2*u02^2*u12*u22-13824*u11^4*u00*u10*u20^2*u02*u12^3-41472*u11^4*u00*u10*u20*u01^2*u12*u22^2-18432*u11^4*u00*u10*u20*u01*u21*u02*u12*u22-41472*u11^4*u00*u10*u20*u01*u21*u12^3-41472*u11^4*u00*u10*u20*u21^2*u02^2*u12-36864*u11^4*u00*u10*u01^2*u21^2*u12*u22-41472*u11^4*u00*u10*u01*u21^3*u02*u12+70656*u11^4*u00*u20^3*u02^3*u22-13824*u11^4*u00*u20^3*u02^2*u12^2-82944*u11^4*u00*u20^2*u01^2*u02*u22^2+59904*u11^4*u00*u20^2*u01*u21*u02^2*u22-41472*u11^4*u00*u20^2*u01*u21*u02*u12^2-13824*u11^4*u00*u20^2*u21^2*u02^3-13824*u11^4*u00*u20*u01^3*u21*u22^2+73728*u11^4*u00*u20*u01^2*u21^2*u02*u22-41472*u11^4*u00*u20*u01^2*u21^2*u12^2-13824*u11^4*u00*u20*u01*u21^3*u02^2+1536*u11^4*u00*u01^3*u21^3*u22-13824*u11^4*u00*u01^2*u21^4*u02+6912*u11^4*u10^4*u02^2*u22^2-13824*u11^4*u10^4*u02*u12^2*u22+3840*u11^4*u10^4*u12^4-13824*u11^4*u10^3*u20*u02^2*u12*u22+1536*u11^4*u10^3*u20*u02*u12^3-13824*u11^4*u10^3*u01^2*u12*u22^2-41472*u11^4*u10^3*u01*u21*u02*u12*u22+1536*u11^4*u10^3*u01*u21*u12^3-13824*u11^4*u10^3*u21^2*u02^2*u12-13824*u11^4*u10^2*u20^2*u02^3*u22+2304*u11^4*u10^2*u20^2*u02^2*u12^2-41472*u11^4*u10^2*u20*u01^2*u12^2*u22-41472*u11^4*u10^2*u20*u01*u21*u02^2*u22-36864*u11^4*u10^2*u20*u01*u21*u02*u12^2-13824*u11^4*u10^2*u20*u21^2*u02^3-13824*u11^4*u10^2*u01^3*u21*u22^2-41472*u11^4*u10^2*u01^2*u21^2*u02*u22+2304*u11^4*u10^2*u01^2*u21^2*u12^2-13824*u11^4*u10^2*u01*u21^3*u02^2+1536*u11^4*u10*u20^3*u02^3*u12-41472*u11^4*u10*u20^2*u01^2*u02*u12*u22-13824*u11^4*u10*u20^2*u01^2*u12^3-36864*u11^4*u10*u20^2*u01*u21*u02^2*u12-41472*u11^4*u10*u20*u01^3*u21*u12*u22-36864*u11^4*u10*u20*u01^2*u21^2*u02*u12+1536*u11^4*u10*u01^3*u21^3*u12+3840*u11^4*u20^4*u02^4-13824*u11^4*u20^3*u01^2*u02^2*u22-13824*u11^4*u20^3*u01^2*u02*u12^2+1536*u11^4*u20^3*u01*u21*u02^3+6912*u11^4*u20^2*u01^4*u22^2-13824*u11^4*u20^2*u01^3*u21*u02*u22-13824*u11^4*u20^2*u01^3*u21*u12^2+2304*u11^4*u20^2*u01^2*u21^2*u02^2-13824*u11^4*u20*u01^4*u21^2*u22+1536*u11^4*u20*u01^3*u21^3*u02+3840*u11^4*u01^4*u21^4-18432*u11^3*u00^4*u21*u12*u22^3-18432*u11^3*u00^3*u10*u01*u22^4-18432*u11^3*u00^3*u10*u21*u02*u22^3-18432*u11^3*u00^3*u20*u01*u12*u22^3-276480*u11^3*u00^3*u20*u21*u02*u12*u22^2+55296*u11^3*u00^3*u20*u21*u12^3*u22+55296*u11^3*u00^3*u21^3*u02*u12*u22+13824*u11^3*u00^3*u21^3*u12^3+55296*u11^3*u00^2*u10^2*u21*u02*u12*u22^2-276480*u11^3*u00^2*u10*u20*u01*u02*u22^3+55296*u11^3*u00^2*u10*u20*u01*u12^2*u22^2-276480*u11^3*u00^2*u10*u20*u21*u02^2*u22^2-165888*u11^3*u00^2*u10*u20*u21*u02*u12^2*u22+55296*u11^3*u00^2*u10*u20*u21*u12^4+55296*u11^3*u00^2*u10*u01*u21^2*u02*u22^2+96768*u11^3*u00^2*u10*u01*u21^2*u12^2*u22+55296*u11^3*u00^2*u10*u21^3*u02^2*u22+96768*u11^3*u00^2*u10*u21^3*u02*u12^2-276480*u11^3*u00^2*u20^2*u01*u02*u12*u22^2+55296*u11^3*u00^2*u20^2*u01*u12^3*u22-276480*u11^3*u00^2*u20^2*u21*u02^2*u12*u22+55296*u11^3*u00^2*u20^2*u21*u02*u12^3+55296*u11^3*u00^2*u20*u01^2*u21*u12*u22^2-165888*u11^3*u00^2*u20*u01*u21^2*u02*u12*u22+96768*u11^3*u00^2*u20*u01*u21^2*u12^3+55296*u11^3*u00^2*u20*u21^3*u02^2*u12+55296*u11^3*u00^2*u01*u21^4*u02*u12+55296*u11^3*u00*u10^3*u01*u02*u22^3+55296*u11^3*u00*u10^3*u21*u02^2*u22^2+55296*u11^3*u00*u10^3*u21*u02*u12^2*u22-18432*u11^3*u00*u10^3*u21*u12^4-165888*u11^3*u00*u10^2*u20*u01*u02*u12*u22^2+55296*u11^3*u00*u10^2*u20*u01*u12^3*u22-165888*u11^3*u00*u10^2*u20*u21*u02^2*u12*u22+55296*u11^3*u00*u10^2*u20*u21*u02*u12^3+96768*u11^3*u00*u10^2*u01^2*u21*u12*u22^2+248832*u11^3*u00*u10^2*u01*u21^2*u02*u12*u22+96768*u11^3*u00*u10^2*u21^3*u02^2*u12-276480*u11^3*u00*u10*u20^2*u01*u02^2*u22^2-165888*u11^3*u00*u10*u20^2*u01*u02*u12^2*u22+55296*u11^3*u00*u10*u20^2*u01*u12^4-276480*u11^3*u00*u10*u20^2*u21*u02^3*u22+55296*u11^3*u00*u10*u20^2*u21*u02^2*u12^2+55296*u11^3*u00*u10*u20*u01^3*u22^3-165888*u11^3*u00*u10*u20*u01^2*u21*u02*u22^2+248832*u11^3*u00*u10*u20*u01^2*u21*u12^2*u22-165888*u11^3*u00*u10*u20*u01*u21^2*u02^2*u22+248832*u11^3*u00*u10*u20*u01*u21^2*u02*u12^2+55296*u11^3*u00*u10*u20*u21^3*u02^3+55296*u11^3*u00*u10*u01^2*u21^3*u02*u22+55296*u11^3*u00*u10*u01*u21^4*u02^2-276480*u11^3*u00*u20^3*u01*u02^2*u12*u22+55296*u11^3*u00*u20^3*u01*u02*u12^3-18432*u11^3*u00*u20^3*u21*u02^3*u12+55296*u11^3*u00*u20^2*u01^3*u12*u22^2-165888*u11^3*u00*u20^2*u01^2*u21*u02*u12*u22+96768*u11^3*u00*u20^2*u01^2*u21*u12^3+55296*u11^3*u00*u20^2*u01*u21^2*u02^2*u12+55296*u11^3*u00*u20*u01^3*u21^2*u12*u22+55296*u11^3*u00*u20*u01^2*u21^3*u02*u12-18432*u11^3*u00*u01^3*u21^4*u12+55296*u11^3*u10^4*u01*u02*u12*u22^2-18432*u11^3*u10^4*u01*u12^3*u22+55296*u11^3*u10^4*u21*u02^2*u12*u22-18432*u11^3*u10^4*u21*u02*u12^3+55296*u11^3*u10^3*u20*u01*u02^2*u22^2+55296*u11^3*u10^3*u20*u01*u02*u12^2*u22-18432*u11^3*u10^3*u20*u01*u12^4+55296*u11^3*u10^3*u20*u21*u02^3*u22+13824*u11^3*u10^3*u01^3*u22^3+96768*u11^3*u10^3*u01^2*u21*u02*u22^2+96768*u11^3*u10^3*u01*u21^2*u02^2*u22+13824*u11^3*u10^3*u21^3*u02^3+55296*u11^3*u10^2*u20^2*u01*u02^2*u12*u22+96768*u11^3*u10^2*u20*u01^3*u12*u22^2+248832*u11^3*u10^2*u20*u01^2*u21*u02*u12*u22+96768*u11^3*u10^2*u20*u01*u21^2*u02^2*u12-18432*u11^3*u10*u20^3*u01*u02^3*u22-18432*u11^3*u10*u20^3*u21*u02^4+55296*u11^3*u10*u20^2*u01^3*u02*u22^2+96768*u11^3*u10*u20^2*u01^3*u12^2*u22+55296*u11^3*u10*u20^2*u01^2*u21*u02^2*u22+96768*u11^3*u10*u20^2*u01^2*u21*u02*u12^2+55296*u11^3*u10*u20*u01^4*u21*u22^2+55296*u11^3*u10*u20*u01^3*u21^2*u02*u22-18432*u11^3*u10*u01^4*u21^3*u22-18432*u11^3*u10*u01^3*u21^4*u02-18432*u11^3*u20^4*u01*u02^3*u12+55296*u11^3*u20^3*u01^3*u02*u12*u22+13824*u11^3*u20^3*u01^3*u12^3+55296*u11^3*u20^2*u01^4*u21*u12*u22-18432*u11^3*u20*u01^4*u21^3*u12-6144*u11^2*u00^5*u22^5+6144*u11^2*u00^4*u10*u12*u22^4-178176*u11^2*u00^4*u20*u02*u22^4+36864*u11^2*u00^4*u20*u12^2*u22^3+6144*u11^2*u00^4*u01*u21*u22^4+36864*u11^2*u00^4*u21^2*u02*u22^3+27648*u11^2*u00^4*u21^2*u12^2*u22^2+36864*u11^2*u00^3*u10^2*u02*u22^4-6144*u11^2*u00^3*u10^2*u12^2*u22^3+24576*u11^2*u00^3*u10*u20*u02*u12*u22^3+79872*u11^2*u00^3*u10*u01*u21*u12*u22^3+55296*u11^2*u00^3*u10*u21^2*u02*u12*u22^2-27648*u11^2*u00^3*u10*u21^2*u12^3*u22-1388544*u11^2*u00^3*u20^2*u02^2*u22^3+552960*u11^2*u00^3*u20^2*u02*u12^2*u22^2-55296*u11^2*u00^3*u20^2*u12^4*u22+36864*u11^2*u00^3*u20*u01^2*u22^4+24576*u11^2*u00^3*u20*u01*u21*u02*u22^3+55296*u11^2*u00^3*u20*u01*u21*u12^2*u22^2+552960*u11^2*u00^3*u20*u21^2*u02^2*u22^2+276480*u11^2*u00^3*u20*u21^2*u02*u12^2*u22-82944*u11^2*u00^3*u20*u21^2*u12^4-6144*u11^2*u00^3*u01^2*u21^2*u22^3-27648*u11^2*u00^3*u01*u21^3*u12^2*u22-55296*u11^2*u00^3*u21^4*u02^2*u22-82944*u11^2*u00^3*u21^4*u02*u12^2-6144*u11^2*u00^2*u10^3*u12^3*u22^2+552960*u11^2*u00^2*u10^2*u20*u02^2*u22^3-129024*u11^2*u00^2*u10^2*u20*u02*u12^2*u22^2+27648*u11^2*u00^2*u10^2*u01^2*u22^4+55296*u11^2*u00^2*u10^2*u01*u21*u02*u22^3-73728*u11^2*u00^2*u10^2*u01*u21*u12^2*u22^2-82944*u11^2*u00^2*u10^2*u21^2*u02^2*u22^2-138240*u11^2*u00^2*u10^2*u21^2*u02*u12^2*u22+27648*u11^2*u00^2*u10^2*u21^2*u12^4-847872*u11^2*u00^2*u10*u20^2*u02^2*u12*u22^2+442368*u11^2*u00^2*u10*u20^2*u02*u12^3*u22-55296*u11^2*u00^2*u10*u20^2*u12^5+55296*u11^2*u00^2*u10*u20*u01^2*u12*u22^3+1345536*u11^2*u00^2*u10*u20*u01*u21*u02*u12*u22^2-331776*u11^2*u00^2*u10*u20*u01*u21*u12^3*u22+1216512*u11^2*u00^2*u10*u20*u21^2*u02^2*u12*u22-304128*u11^2*u00^2*u10*u20*u21^2*u02*u12^3-73728*u11^2*u00^2*u10*u01^2*u21^2*u12*u22^2-331776*u11^2*u00^2*u10*u01*u21^3*u02*u12*u22-27648*u11^2*u00^2*u10*u01*u21^3*u12^3-221184*u11^2*u00^2*u10*u21^4*u02^2*u12-1388544*u11^2*u00^2*u20^3*u02^3*u22^2+552960*u11^2*u00^2*u20^3*u02^2*u12^2*u22-55296*u11^2*u00^2*u20^3*u02*u12^4+552960*u11^2*u00^2*u20^2*u01^2*u02*u22^3-82944*u11^2*u00^2*u20^2*u01^2*u12^2*u22^2-847872*u11^2*u00^2*u20^2*u01*u21*u02^2*u22^2+1216512*u11^2*u00^2*u20^2*u01*u21*u02*u12^2*u22-221184*u11^2*u00^2*u20^2*u01*u21*u12^4+552960*u11^2*u00^2*u20^2*u21^2*u02^3*u22-82944*u11^2*u00^2*u20^2*u21^2*u02^2*u12^2-129024*u11^2*u00^2*u20*u01^2*u21^2*u02*u22^2-138240*u11^2*u00^2*u20*u01^2*u21^2*u12^2*u22+442368*u11^2*u00^2*u20*u01*u21^3*u02^2*u22-304128*u11^2*u00^2*u20*u01*u21^3*u02*u12^2-55296*u11^2*u00^2*u20*u21^4*u02^3-6144*u11^2*u00^2*u01^3*u21^3*u22^2+27648*u11^2*u00^2*u01^2*u21^4*u12^2-55296*u11^2*u00^2*u01*u21^5*u02^2-55296*u11^2*u00*u10^4*u02^2*u22^3+6144*u11^2*u00*u10^4*u12^4*u22+442368*u11^2*u00*u10^3*u20*u02^2*u12*u22^2-270336*u11^2*u00*u10^3*u20*u02*u12^3*u22+36864*u11^2*u00*u10^3*u20*u12^5-27648*u11^2*u00*u10^3*u01^2*u12*u22^3-331776*u11^2*u00*u10^3*u01*u21*u02*u12*u22^2+79872*u11^2*u00*u10^3*u01*u21*u12^3*u22-304128*u11^2*u00*u10^3*u21^2*u02^2*u12*u22+92160*u11^2*u00*u10^3*u21^2*u02*u12^3+552960*u11^2*u00*u10^2*u20^2*u02^3*u22^2-129024*u11^2*u00*u10^2*u20^2*u02^2*u12^2*u22+276480*u11^2*u00*u10^2*u20*u01^2*u02*u22^3-138240*u11^2*u00*u10^2*u20*u01^2*u12^2*u22^2+1216512*u11^2*u00*u10^2*u20*u01*u21*u02^2*u22^2-589824*u11^2*u00*u10^2*u20*u01*u21*u02*u12^2*u22+55296*u11^2*u00*u10^2*u20*u01*u21*u12^4+276480*u11^2*u00*u10^2*u20*u21^2*u02^3*u22-138240*u11^2*u00*u10^2*u20*u21^2*u02^2*u12^2-27648*u11^2*u00*u10^2*u01^3*u21*u22^3-138240*u11^2*u00*u10^2*u01^2*u21^2*u02*u22^2-73728*u11^2*u00*u10^2*u01^2*u21^2*u12^2*u22-304128*u11^2*u00*u10^2*u01*u21^3*u02^2*u22-55296*u11^2*u00*u10^2*u01*u21^3*u02*u12^2-82944*u11^2*u00*u10^2*u21^4*u02^3+24576*u11^2*u00*u10*u20^3*u02^3*u12*u22+1216512*u11^2*u00*u10*u20^2*u01^2*u02*u12*u22^2-304128*u11^2*u00*u10*u20^2*u01^2*u12^3*u22+1345536*u11^2*u00*u10*u20^2*u01*u21*u02^2*u12*u22-331776*u11^2*u00*u10*u20^2*u01*u21*u02*u12^3+55296*u11^2*u00*u10*u20^2*u21^2*u02^3*u12-331776*u11^2*u00*u10*u20*u01^3*u21*u12*u22^2-589824*u11^2*u00*u10*u20*u01^2*u21^2*u02*u12*u22-55296*u11^2*u00*u10*u20*u01^2*u21^2*u12^3-331776*u11^2*u00*u10*u20*u01*u21^3*u02^2*u12+79872*u11^2*u00*u10*u01^3*u21^3*u12*u22+55296*u11^2*u00*u10*u01^2*u21^4*u02*u12-178176*u11^2*u00*u20^4*u02^4*u22+36864*u11^2*u00*u20^4*u02^3*u12^2+552960*u11^2*u00*u20^3*u01^2*u02^2*u22^2+276480*u11^2*u00*u20^3*u01^2*u02*u12^2*u22-82944*u11^2*u00*u20^3*u01^2*u12^4+24576*u11^2*u00*u20^3*u01*u21*u02^3*u22+55296*u11^2*u00*u20^3*u01*u21*u02^2*u12^2+36864*u11^2*u00*u20^3*u21^2*u02^4-55296*u11^2*u00*u20^2*u01^4*u22^3+442368*u11^2*u00*u20^2*u01^3*u21*u02*u22^2-304128*u11^2*u00*u20^2*u01^3*u21*u12^2*u22-129024*u11^2*u00*u20^2*u01^2*u21^2*u02^2*u22-138240*u11^2*u00*u20^2*u01^2*u21^2*u02*u12^2-270336*u11^2*u00*u20*u01^3*u21^3*u02*u22+92160*u11^2*u00*u20*u01^3*u21^3*u12^2+6144*u11^2*u00*u01^4*u21^4*u22+36864*u11^2*u00*u01^3*u21^5*u02-55296*u11^2*u10^5*u02^2*u12*u22^2+36864*u11^2*u10^5*u02*u12^3*u22-6144*u11^2*u10^5*u12^5-55296*u11^2*u10^4*u20*u02^3*u22^2+6144*u11^2*u10^4*u20*u02*u12^4-82944*u11^2*u10^4*u01^2*u02*u22^3+27648*u11^2*u10^4*u01^2*u12^2*u22^2-221184*u11^2*u10^4*u01*u21*u02^2*u22^2+55296*u11^2*u10^4*u01*u21*u02*u12^2*u22+6144*u11^2*u10^4*u01*u21*u12^4-82944*u11^2*u10^4*u21^2*u02^3*u22+27648*u11^2*u10^4*u21^2*u02^2*u12^2-6144*u11^2*u10^3*u20^2*u02^2*u12^3-304128*u11^2*u10^3*u20*u01^2*u02*u12*u22^2+92160*u11^2*u10^3*u20*u01^2*u12^3*u22-331776*u11^2*u10^3*u20*u01*u21*u02^2*u12*u22+79872*u11^2*u10^3*u20*u01*u21*u02*u12^3-27648*u11^2*u10^3*u20*u21^2*u02^3*u12-27648*u11^2*u10^3*u01^3*u21*u12*u22^2-55296*u11^2*u10^3*u01^2*u21^2*u02*u12*u22-6144*u11^2*u10^3*u01^2*u21^2*u12^3-27648*u11^2*u10^3*u01*u21^3*u02^2*u12+36864*u11^2*u10^2*u20^3*u02^4*u22-6144*u11^2*u10^2*u20^3*u02^3*u12^2-82944*u11^2*u10^2*u20^2*u01^2*u02^2*u22^2-138240*u11^2*u10^2*u20^2*u01^2*u02*u12^2*u22+27648*u11^2*u10^2*u20^2*u01^2*u12^4+55296*u11^2*u10^2*u20^2*u01*u21*u02^3*u22-73728*u11^2*u10^2*u20^2*u01*u21*u02^2*u12^2+27648*u11^2*u10^2*u20^2*u21^2*u02^4-82944*u11^2*u10^2*u20*u01^4*u22^3-304128*u11^2*u10^2*u20*u01^3*u21*u02*u22^2-55296*u11^2*u10^2*u20*u01^3*u21*u12^2*u22-138240*u11^2*u10^2*u20*u01^2*u21^2*u02^2*u22-73728*u11^2*u10^2*u20*u01^2*u21^2*u02*u12^2-27648*u11^2*u10^2*u20*u01*u21^3*u02^3+27648*u11^2*u10^2*u01^4*u21^2*u22^2+92160*u11^2*u10^2*u01^3*u21^3*u02*u22-6144*u11^2*u10^2*u01^3*u21^3*u12^2+27648*u11^2*u10^2*u01^2*u21^4*u02^2+6144*u11^2*u10*u20^4*u02^4*u12+55296*u11^2*u10*u20^3*u01^2*u02^2*u12*u22-27648*u11^2*u10*u20^3*u01^2*u02*u12^3+79872*u11^2*u10*u20^3*u01*u21*u02^3*u12-221184*u11^2*u10*u20^2*u01^4*u12*u22^2-331776*u11^2*u10*u20^2*u01^3*u21*u02*u12*u22-27648*u11^2*u10*u20^2*u01^3*u21*u12^3-73728*u11^2*u10*u20^2*u01^2*u21^2*u02^2*u12+55296*u11^2*u10*u20*u01^4*u21^2*u12*u22+79872*u11^2*u10*u20*u01^3*u21^3*u02*u12+6144*u11^2*u10*u01^4*u21^4*u12-6144*u11^2*u20^5*u02^5+36864*u11^2*u20^4*u01^2*u02^3*u22+27648*u11^2*u20^4*u01^2*u02^2*u12^2+6144*u11^2*u20^4*u01*u21*u02^4-55296*u11^2*u20^3*u01^4*u02*u22^2-82944*u11^2*u20^3*u01^4*u12^2*u22-27648*u11^2*u20^3*u01^3*u21*u02*u12^2-6144*u11^2*u20^3*u01^2*u21^2*u02^3-55296*u11^2*u20^2*u01^5*u21*u22^2+27648*u11^2*u20^2*u01^4*u21^2*u12^2-6144*u11^2*u20^2*u01^3*u21^3*u02^2+36864*u11^2*u20*u01^5*u21^3*u22+6144*u11^2*u20*u01^4*u21^4*u02-6144*u11^2*u01^5*u21^5+18432*u11*u00^5*u21*u12*u22^4+18432*u11*u00^4*u10*u01*u22^5+18432*u11*u00^4*u10*u21*u02*u22^4-36864*u11*u00^4*u10*u21*u12^2*u22^3+18432*u11*u00^4*u20*u01*u12*u22^4+516096*u11*u00^4*u20*u21*u02*u12*u22^3-110592*u11*u00^4*u20*u21*u12^3*u22^2-36864*u11*u00^4*u01*u21^2*u12*u22^3-110592*u11*u00^4*u21^3*u02*u12*u22^2-36864*u11*u00^3*u10^2*u01*u12*u22^4-147456*u11*u00^3*u10^2*u21*u02*u12*u22^3+55296*u11*u00^3*u10^2*u21*u12^3*u22^2+516096*u11*u00^3*u10*u20*u01*u02*u22^4-147456*u11*u00^3*u10*u20*u01*u12^2*u22^3+516096*u11*u00^3*u10*u20*u21*u02^2*u22^3-663552*u11*u00^3*u10*u20*u21*u02*u12^2*u22^2+110592*u11*u00^3*u10*u20*u21*u12^4*u22-36864*u11*u00^3*u10*u01^2*u21*u22^4-147456*u11*u00^3*u10*u01*u21^2*u02*u22^3-110592*u11*u00^3*u10*u21^3*u02^2*u22^2+110592*u11*u00^3*u10*u21^3*u02*u12^2*u22+516096*u11*u00^3*u20^2*u01*u02*u12*u22^3-110592*u11*u00^3*u20^2*u01*u12^3*u22^2+3649536*u11*u00^3*u20^2*u21*u02^2*u12*u22^2-1548288*u11*u00^3*u20^2*u21*u02*u12^3*u22+165888*u11*u00^3*u20^2*u21*u12^5-147456*u11*u00^3*u20*u01^2*u21*u12*u22^3-663552*u11*u00^3*u20*u01*u21^2*u02*u12*u22^2+110592*u11*u00^3*u20*u01*u21^2*u12^3*u22-1548288*u11*u00^3*u20*u21^3*u02^2*u12*u22+331776*u11*u00^3*u20*u21^3*u02*u12^3+55296*u11*u00^3*u01^2*u21^3*u12*u22^2+110592*u11*u00^3*u01*u21^4*u02*u12*u22+165888*u11*u00^3*u21^5*u02^2*u12-110592*u11*u00^2*u10^3*u01*u02*u22^4+55296*u11*u00^2*u10^3*u01*u12^2*u22^3-110592*u11*u00^2*u10^3*u21*u02^2*u22^3+165888*u11*u00^2*u10^3*u21*u02*u12^2*u22^2-36864*u11*u00^2*u10^3*u21*u12^4*u22-663552*u11*u00^2*u10^2*u20*u01*u02*u12*u22^3+165888*u11*u00^2*u10^2*u20*u01*u12^3*u22^2-2101248*u11*u00^2*u10^2*u20*u21*u02^2*u12*u22^2+995328*u11*u00^2*u10^2*u20*u21*u02*u12^3*u22-110592*u11*u00^2*u10^2*u20*u21*u12^5+221184*u11*u00^2*u10^2*u01*u21^2*u02*u12*u22^2+442368*u11*u00^2*u10^2*u21^3*u02^2*u12*u22-110592*u11*u00^2*u10^2*u21^3*u02*u12^3+3649536*u11*u00^2*u10*u20^2*u01*u02^2*u22^3-2101248*u11*u00^2*u10*u20^2*u01*u02*u12^2*u22^2+276480*u11*u00^2*u10*u20^2*u01*u12^4*u22+3649536*u11*u00^2*u10*u20^2*u21*u02^3*u22^2-2101248*u11*u00^2*u10*u20^2*u21*u02^2*u12^2*u22+276480*u11*u00^2*u10*u20^2*u21*u02*u12^4-110592*u11*u00^2*u10*u20*u01^3*u22^4-663552*u11*u00^2*u10*u20*u01^2*u21*u02*u22^3+221184*u11*u00^2*u10*u20*u01^2*u21*u12^2*u22^2-2101248*u11*u00^2*u10*u20*u01*u21^2*u02^2*u22^2+110592*u11*u00^2*u10*u20*u01*u21^2*u02*u12^2*u22+110592*u11*u00^2*u10*u20*u01*u21^2*u12^4-1548288*u11*u00^2*u10*u20*u21^3*u02^3*u22+442368*u11*u00^2*u10*u20*u21^3*u02^2*u12^2+55296*u11*u00^2*u10*u01^3*u21^2*u22^3+165888*u11*u00^2*u10*u01^2*u21^3*u02*u22^2+276480*u11*u00^2*u10*u01*u21^4*u02^2*u22+110592*u11*u00^2*u10*u01*u21^4*u02*u12^2+165888*u11*u00^2*u10*u21^5*u02^3+3649536*u11*u00^2*u20^3*u01*u02^2*u12*u22^2-1548288*u11*u00^2*u20^3*u01*u02*u12^3*u22+165888*u11*u00^2*u20^3*u01*u12^5+516096*u11*u00^2*u20^3*u21*u02^3*u12*u22-110592*u11*u00^2*u20^3*u21*u02^2*u12^3-110592*u11*u00^2*u20^2*u01^3*u12*u22^3-2101248*u11*u00^2*u20^2*u01^2*u21*u02*u12*u22^2+442368*u11*u00^2*u20^2*u01^2*u21*u12^3*u22-2101248*u11*u00^2*u20^2*u01*u21^2*u02^2*u12*u22+442368*u11*u00^2*u20^2*u01*u21^2*u02*u12^3-110592*u11*u00^2*u20^2*u21^3*u02^3*u12+165888*u11*u00^2*u20*u01^3*u21^2*u12*u22^2+995328*u11*u00^2*u20*u01^2*u21^3*u02*u12*u22-110592*u11*u00^2*u20*u01^2*u21^3*u12^3+276480*u11*u00^2*u20*u01*u21^4*u02^2*u12-36864*u11*u00^2*u01^3*u21^4*u12*u22-110592*u11*u00^2*u01^2*u21^5*u02*u12+110592*u11*u00*u10^4*u01*u02*u12*u22^3-36864*u11*u00*u10^4*u01*u12^3*u22^2+276480*u11*u00*u10^4*u21*u02^2*u12*u22^2-147456*u11*u00*u10^4*u21*u02*u12^3*u22+18432*u11*u00*u10^4*u21*u12^5-1548288*u11*u00*u10^3*u20*u01*u02^2*u22^3+995328*u11*u00*u10^3*u20*u01*u02*u12^2*u22^2-147456*u11*u00*u10^3*u20*u01*u12^4*u22-1548288*u11*u00*u10^3*u20*u21*u02^3*u22^2+995328*u11*u00*u10^3*u20*u21*u02^2*u12^2*u22-147456*u11*u00*u10^3*u20*u21*u02*u12^4+110592*u11*u00*u10^3*u01^2*u21*u02*u22^3+442368*u11*u00*u10^3*u01*u21^2*u02^2*u22^2-36864*u11*u00*u10^3*u01*u21^2*u12^4+331776*u11*u00*u10^3*u21^3*u02^3*u22-110592*u11*u00*u10^3*u21^3*u02^2*u12^2-2101248*u11*u00*u10^2*u20^2*u01*u02^2*u12*u22^2+995328*u11*u00*u10^2*u20^2*u01*u02*u12^3*u22-110592*u11*u00*u10^2*u20^2*u01*u12^5-663552*u11*u00*u10^2*u20^2*u21*u02^3*u12*u22+165888*u11*u00*u10^2*u20^2*u21*u02^2*u12^3+110592*u11*u00*u10^2*u20*u01^3*u12*u22^3+110592*u11*u00*u10^2*u20*u01^2*u21*u02*u12*u22^2+110592*u11*u00*u10^2*u20*u01*u21^2*u02^2*u12*u22+110592*u11*u00*u10^2*u20*u21^3*u02^3*u12+55296*u11*u00*u10^2*u01^2*u21^3*u12^3+110592*u11*u00*u10^2*u01*u21^4*u02^2*u12+516096*u11*u00*u10*u20^3*u01*u02^3*u22^2-663552*u11*u00*u10*u20^3*u01*u02^2*u12^2*u22+110592*u11*u00*u10*u20^3*u01*u02*u12^4+516096*u11*u00*u10*u20^3*u21*u02^4*u22-147456*u11*u00*u10*u20^3*u21*u02^3*u12^2-1548288*u11*u00*u10*u20^2*u01^3*u02*u22^3+442368*u11*u00*u10*u20^2*u01^3*u12^2*u22^2-2101248*u11*u00*u10*u20^2*u01^2*u21*u02^2*u22^2+110592*u11*u00*u10*u20^2*u01^2*u21*u02*u12^2*u22+110592*u11*u00*u10*u20^2*u01^2*u21*u12^4-663552*u11*u00*u10*u20^2*u01*u21^2*u02^3*u22+221184*u11*u00*u10*u20^2*u01*u21^2*u02^2*u12^2-110592*u11*u00*u10*u20^2*u21^3*u02^4+110592*u11*u00*u10*u20*u01^4*u21*u22^3+995328*u11*u00*u10*u20*u01^3*u21^2*u02*u22^2+995328*u11*u00*u10*u20*u01^2*u21^3*u02^2*u22+110592*u11*u00*u10*u20*u01*u21^4*u02^3-36864*u11*u00*u10*u01^4*u21^3*u22^2-147456*u11*u00*u10*u01^3*u21^4*u02*u22-36864*u11*u00*u10*u01^3*u21^4*u12^2-110592*u11*u00*u10*u01^2*u21^5*u02^2+516096*u11*u00*u20^4*u01*u02^3*u12*u22-110592*u11*u00*u20^4*u01*u02^2*u12^3+18432*u11*u00*u20^4*u21*u02^4*u12-1548288*u11*u00*u20^3*u01^3*u02*u12*u22^2+331776*u11*u00*u20^3*u01^3*u12^3*u22-663552*u11*u00*u20^3*u01^2*u21*u02^2*u12*u22+110592*u11*u00*u20^3*u01^2*u21*u02*u12^3-147456*u11*u00*u20^3*u01*u21^2*u02^3*u12+276480*u11*u00*u20^2*u01^4*u21*u12*u22^2+995328*u11*u00*u20^2*u01^3*u21^2*u02*u12*u22-110592*u11*u00*u20^2*u01^3*u21^2*u12^3+165888*u11*u00*u20^2*u01^2*u21^3*u02^2*u12-147456*u11*u00*u20*u01^4*u21^3*u12*u22-147456*u11*u00*u20*u01^3*u21^4*u02*u12+18432*u11*u00*u01^4*u21^5*u12+165888*u11*u10^5*u01*u02^2*u22^3-110592*u11*u10^5*u01*u02*u12^2*u22^2+18432*u11*u10^5*u01*u12^4*u22+165888*u11*u10^5*u21*u02^3*u22^2-110592*u11*u10^5*u21*u02^2*u12^2*u22+18432*u11*u10^5*u21*u02*u12^4+276480*u11*u10^4*u20*u01*u02^2*u12*u22^2-147456*u11*u10^4*u20*u01*u02*u12^3*u22+18432*u11*u10^4*u20*u01*u12^5+110592*u11*u10^4*u20*u21*u02^3*u12*u22-36864*u11*u10^4*u20*u21*u02^2*u12^3+110592*u11*u10^4*u01^2*u21*u02*u12*u22^2-36864*u11*u10^4*u01^2*u21*u12^3*u22+110592*u11*u10^4*u01*u21^2*u02^2*u12*u22-36864*u11*u10^4*u01*u21^2*u02*u12^3-110592*u11*u10^3*u20^2*u01*u02^3*u22^2+165888*u11*u10^3*u20^2*u01*u02^2*u12^2*u22-36864*u11*u10^3*u20^2*u01*u02*u12^4-110592*u11*u10^3*u20^2*u21*u02^4*u22+55296*u11*u10^3*u20^2*u21*u02^3*u12^2+331776*u11*u10^3*u20*u01^3*u02*u22^3-110592*u11*u10^3*u20*u01^3*u12^2*u22^2+442368*u11*u10^3*u20*u01^2*u21*u02^2*u22^2-36864*u11*u10^3*u20*u01^2*u21*u12^4+110592*u11*u10^3*u20*u01*u21^2*u02^3*u22-110592*u11*u10^3*u01^3*u21^2*u02*u22^2+55296*u11*u10^3*u01^3*u21^2*u12^2*u22-110592*u11*u10^3*u01^2*u21^3*u02^2*u22+55296*u11*u10^3*u01^2*u21^3*u02*u12^2-147456*u11*u10^2*u20^3*u01*u02^3*u12*u22+55296*u11*u10^2*u20^3*u01*u02^2*u12^3-36864*u11*u10^2*u20^3*u21*u02^4*u12+442368*u11*u10^2*u20^2*u01^3*u02*u12*u22^2-110592*u11*u10^2*u20^2*u01^3*u12^3*u22+221184*u11*u10^2*u20^2*u01^2*u21*u02^2*u12*u22+110592*u11*u10^2*u20*u01^4*u21*u12*u22^2+55296*u11*u10^2*u20*u01^3*u21^2*u12^3-36864*u11*u10^2*u01^4*u21^3*u12*u22-36864*u11*u10^2*u01^3*u21^4*u02*u12+18432*u11*u10*u20^4*u01*u02^4*u22-36864*u11*u10*u20^4*u01*u02^3*u12^2+18432*u11*u10*u20^4*u21*u02^5-110592*u11*u10*u20^3*u01^3*u02^2*u22^2+110592*u11*u10*u20^3*u01^3*u02*u12^2*u22-147456*u11*u10*u20^3*u01^2*u21*u02^3*u22-36864*u11*u10*u20^3*u01*u21^2*u02^4+165888*u11*u10*u20^2*u01^5*u22^3+276480*u11*u10*u20^2*u01^4*u21*u02*u22^2+110592*u11*u10*u20^2*u01^4*u21*u12^2*u22+165888*u11*u10*u20^2*u01^3*u21^2*u02^2*u22+55296*u11*u10*u20^2*u01^2*u21^3*u02^3-110592*u11*u10*u20*u01^5*u21^2*u22^2-147456*u11*u10*u20*u01^4*u21^3*u02*u22-36864*u11*u10*u20*u01^4*u21^3*u12^2-36864*u11*u10*u20*u01^3*u21^4*u02^2+18432*u11*u10*u01^5*u21^4*u22+18432*u11*u10*u01^4*u21^5*u02+18432*u11*u20^5*u01*u02^4*u12-110592*u11*u20^4*u01^3*u02^2*u12*u22-36864*u11*u20^4*u01^2*u21*u02^3*u12+165888*u11*u20^3*u01^5*u12*u22^2+110592*u11*u20^3*u01^4*u21*u02*u12*u22+55296*u11*u20^3*u01^3*u21^2*u02^2*u12-110592*u11*u20^2*u01^5*u21^2*u12*u22-36864*u11*u20^2*u01^4*u21^3*u02*u12+18432*u11*u20*u01^5*u21^4*u12+4096*u00^6*u22^6-12288*u00^5*u10*u12*u22^5+172032*u00^5*u20*u02*u22^5-36864*u00^5*u20*u12^2*u22^4-12288*u00^5*u01*u21*u22^5-36864*u00^5*u21^2*u02*u22^4-36864*u00^4*u10^2*u02*u22^5+24576*u00^4*u10^2*u12^2*u22^4-356352*u00^4*u10*u20*u02*u12*u22^4+73728*u00^4*u10*u20*u12^3*u22^3+12288*u00^4*u10*u01*u21*u12*u22^4+73728*u00^4*u10*u21^2*u02*u12*u22^3+2420736*u00^4*u20^2*u02^2*u22^4-1032192*u00^4*u20^2*u02*u12^2*u22^3+110592*u00^4*u20^2*u12^4*u22^2-36864*u00^4*u20*u01^2*u22^5-356352*u00^4*u20*u01*u21*u02*u22^4+73728*u00^4*u20*u01*u21*u12^2*u22^3-1032192*u00^4*u20*u21^2*u02^2*u22^3+221184*u00^4*u20*u21^2*u02*u12^2*u22^2+24576*u00^4*u01^2*u21^2*u22^4+73728*u00^4*u01*u21^3*u02*u22^3+110592*u00^4*u21^4*u02^2*u22^2+73728*u00^3*u10^3*u02*u12*u22^4-28672*u00^3*u10^3*u12^3*u22^3-1032192*u00^3*u10^2*u20*u02^2*u22^4+761856*u00^3*u10^2*u20*u02*u12^2*u22^3-110592*u00^3*u10^2*u20*u12^4*u22^2+73728*u00^3*u10^2*u01*u21*u02*u22^4-12288*u00^3*u10^2*u01*u21*u12^2*u22^3+221184*u00^3*u10^2*u21^2*u02^2*u22^3-110592*u00^3*u10^2*u21^2*u02*u12^2*u22^2-2777088*u00^3*u10*u20^2*u02^2*u12*u22^3+1105920*u00^3*u10*u20^2*u02*u12^3*u22^2-110592*u00^3*u10*u20^2*u12^5*u22+73728*u00^3*u10*u20*u01^2*u12*u22^4+49152*u00^3*u10*u20*u01*u21*u02*u12*u22^3+1105920*u00^3*u10*u20*u21^2*u02^2*u12*u22^2-221184*u00^3*u10*u20*u21^2*u02*u12^3*u22-12288*u00^3*u10*u01^2*u21^2*u12*u22^3-110592*u00^3*u10*u21^4*u02^2*u12*u22+11583488*u00^3*u20^3*u02^3*u22^3-7299072*u00^3*u20^3*u02^2*u12^2*u22^2+1548288*u00^3*u20^3*u02*u12^4*u22-110592*u00^3*u20^3*u12^6-1032192*u00^3*u20^2*u01^2*u02*u22^4+221184*u00^3*u20^2*u01^2*u12^2*u22^3-2777088*u00^3*u20^2*u01*u21*u02^2*u22^3+1105920*u00^3*u20^2*u01*u21*u02*u12^2*u22^2-110592*u00^3*u20^2*u01*u21*u12^4*u22-7299072*u00^3*u20^2*u21^2*u02^3*u22^2+3096576*u00^3*u20^2*u21^2*u02^2*u12^2*u22-331776*u00^3*u20^2*u21^2*u02*u12^4+73728*u00^3*u20*u01^3*u21*u22^4+761856*u00^3*u20*u01^2*u21^2*u02*u22^3-110592*u00^3*u20*u01^2*u21^2*u12^2*u22^2+1105920*u00^3*u20*u01*u21^3*u02^2*u22^2-221184*u00^3*u20*u01*u21^3*u02*u12^2*u22+1548288*u00^3*u20*u21^4*u02^3*u22-331776*u00^3*u20*u21^4*u02^2*u12^2-28672*u00^3*u01^3*u21^3*u22^3-110592*u00^3*u01^2*u21^4*u02*u22^2-110592*u00^3*u01*u21^5*u02^2*u22-110592*u00^3*u21^6*u02^3+110592*u00^2*u10^4*u02^2*u22^4-110592*u00^2*u10^4*u02*u12^2*u22^3+24576*u00^2*u10^4*u12^4*u22^2+1105920*u00^2*u10^3*u20*u02^2*u12*u22^3-602112*u00^2*u10^3*u20*u02*u12^3*u22^2+73728*u00^2*u10^3*u20*u12^5*u22-12288*u00^2*u10^3*u01*u21*u12^3*u22^2-221184*u00^2*u10^3*u21^2*u02^2*u12*u22^2+73728*u00^2*u10^3*u21^2*u02*u12^3*u22-7299072*u00^2*u10^2*u20^2*u02^3*u22^3+5898240*u00^2*u10^2*u20^2*u02^2*u12^2*u22^2-1437696*u00^2*u10^2*u20^2*u02*u12^4*u22+110592*u00^2*u10^2*u20^2*u12^6+221184*u00^2*u10^2*u20*u01^2*u02*u22^4-110592*u00^2*u10^2*u20*u01^2*u12^2*u22^3+1105920*u00^2*u10^2*u20*u01*u21*u02^2*u22^3-258048*u00^2*u10^2*u20*u01*u21*u02*u12^2*u22^2+3096576*u00^2*u10^2*u20*u21^2*u02^3*u22^2-1769472*u00^2*u10^2*u20*u21^2*u02^2*u12^2*u22+221184*u00^2*u10^2*u20*u21^2*u02*u12^4-110592*u00^2*u10^2*u01^2*u21^2*u02*u22^3+36864*u00^2*u10^2*u01^2*u21^2*u12^2*u22^2-221184*u00^2*u10^2*u01*u21^3*u02^2*u22^2-331776*u00^2*u10^2*u21^4*u02^3*u22+110592*u00^2*u10^2*u21^4*u02^2*u12^2-2777088*u00^2*u10*u20^3*u02^3*u12*u22^2+1105920*u00^2*u10*u20^3*u02^2*u12^3*u22-110592*u00^2*u10*u20^3*u02*u12^5+1105920*u00^2*u10*u20^2*u01^2*u02*u12*u22^3-221184*u00^2*u10*u20^2*u01^2*u12^3*u22^2-1695744*u00^2*u10*u20^2*u01*u21*u02^2*u12*u22^2+884736*u00^2*u10*u20^2*u01*u21*u02*u12^3*u22-110592*u00^2*u10*u20^2*u01*u21*u12^5+1105920*u00^2*u10*u20^2*u21^2*u02^3*u12*u22-221184*u00^2*u10*u20^2*u21^2*u02^2*u12^3-258048*u00^2*u10*u20*u01^2*u21^2*u02*u12*u22^2+884736*u00^2*u10*u20*u01*u21^3*u02^2*u12*u22-221184*u00^2*u10*u20*u01*u21^3*u02*u12^3-110592*u00^2*u10*u20*u21^4*u02^3*u12-12288*u00^2*u10*u01^3*u21^3*u12*u22^2-110592*u00^2*u10*u01*u21^5*u02^2*u12+2420736*u00^2*u20^4*u02^4*u22^2-1032192*u00^2*u20^4*u02^3*u12^2*u22+110592*u00^2*u20^4*u02^2*u12^4-7299072*u00^2*u20^3*u01^2*u02^2*u22^3+3096576*u00^2*u20^3*u01^2*u02*u12^2*u22^2-331776*u00^2*u20^3*u01^2*u12^4*u22-2777088*u00^2*u20^3*u01*u21*u02^3*u22^2+1105920*u00^2*u20^3*u01*u21*u02^2*u12^2*u22-110592*u00^2*u20^3*u01*u21*u02*u12^4-1032192*u00^2*u20^3*u21^2*u02^4*u22+221184*u00^2*u20^3*u21^2*u02^3*u12^2+110592*u00^2*u20^2*u01^4*u22^4+1105920*u00^2*u20^2*u01^3*u21*u02*u22^3-221184*u00^2*u20^2*u01^3*u21*u12^2*u22^2+5898240*u00^2*u20^2*u01^2*u21^2*u02^2*u22^2-1769472*u00^2*u20^2*u01^2*u21^2*u02*u12^2*u22+110592*u00^2*u20^2*u01^2*u21^2*u12^4+1105920*u00^2*u20^2*u01*u21^3*u02^3*u22-221184*u00^2*u20^2*u01*u21^3*u02^2*u12^2+110592*u00^2*u20^2*u21^4*u02^4-110592*u00^2*u20*u01^4*u21^2*u22^3-602112*u00^2*u20*u01^3*u21^3*u02*u22^2+73728*u00^2*u20*u01^3*u21^3*u12^2*u22-1437696*u00^2*u20*u01^2*u21^4*u02^2*u22+221184*u00^2*u20*u01^2*u21^4*u02*u12^2-110592*u00^2*u20*u01*u21^5*u02^3+24576*u00^2*u01^4*u21^4*u22^2+73728*u00^2*u01^3*u21^5*u02*u22+110592*u00^2*u01^2*u21^6*u02^2-110592*u00*u10^5*u02^2*u12*u22^3+73728*u00*u10^5*u02*u12^3*u22^2-12288*u00*u10^5*u12^5*u22+1548288*u00*u10^4*u20*u02^3*u22^3-1437696*u00*u10^4*u20*u02^2*u12^2*u22^2+417792*u00*u10^4*u20*u02*u12^4*u22-36864*u00*u10^4*u20*u12^6-110592*u00*u10^4*u01*u21*u02^2*u22^3+12288*u00*u10^4*u01*u21*u12^4*u22-331776*u00*u10^4*u21^2*u02^3*u22^2+221184*u00*u10^4*u21^2*u02^2*u12^2*u22-36864*u00*u10^4*u21^2*u02*u12^4+1105920*u00*u10^3*u20^2*u02^3*u12*u22^2-602112*u00*u10^3*u20^2*u02^2*u12^3*u22+73728*u00*u10^3*u20^2*u02*u12^5-221184*u00*u10^3*u20*u01^2*u02*u12*u22^3+73728*u00*u10^3*u20*u01^2*u12^3*u22^2+884736*u00*u10^3*u20*u01*u21*u02^2*u12*u22^2-540672*u00*u10^3*u20*u01*u21*u02*u12^3*u22+73728*u00*u10^3*u20*u01*u21*u12^5-221184*u00*u10^3*u20*u21^2*u02^3*u12*u22+73728*u00*u10^3*u20*u21^2*u02^2*u12^3-12288*u00*u10^3*u01^2*u21^2*u12^3*u22-221184*u00*u10^3*u01*u21^3*u02^2*u12*u22+73728*u00*u10^3*u01*u21^3*u02*u12^3-1032192*u00*u10^2*u20^3*u02^4*u22^2+761856*u00*u10^2*u20^3*u02^3*u12^2*u22-110592*u00*u10^2*u20^3*u02^2*u12^4+3096576*u00*u10^2*u20^2*u01^2*u02^2*u22^3-1769472*u00*u10^2*u20^2*u01^2*u02*u12^2*u22^2+221184*u00*u10^2*u20^2*u01^2*u12^4*u22+1105920*u00*u10^2*u20^2*u01*u21*u02^3*u22^2-258048*u00*u10^2*u20^2*u01*u21*u02^2*u12^2*u22+221184*u00*u10^2*u20^2*u21^2*u02^4*u22-110592*u00*u10^2*u20^2*u21^2*u02^3*u12^2-221184*u00*u10^2*u20*u01^3*u21*u02*u22^3-1769472*u00*u10^2*u20*u01^2*u21^2*u02^2*u22^2+958464*u00*u10^2*u20*u01^2*u21^2*u02*u12^2*u22-110592*u00*u10^2*u20*u01^2*u21^2*u12^4-221184*u00*u10^2*u20*u01*u21^3*u02^3*u22+73728*u00*u10^2*u01^3*u21^3*u02*u22^2-12288*u00*u10^2*u01^3*u21^3*u12^2*u22+221184*u00*u10^2*u01^2*u21^4*u02^2*u22-110592*u00*u10^2*u01^2*u21^4*u02*u12^2-356352*u00*u10*u20^4*u02^4*u12*u22+73728*u00*u10*u20^4*u02^3*u12^3+1105920*u00*u10*u20^3*u01^2*u02^2*u12*u22^2-221184*u00*u10*u20^3*u01^2*u02*u12^3*u22+49152*u00*u10*u20^3*u01*u21*u02^3*u12*u22+73728*u00*u10*u20^3*u21^2*u02^4*u12-110592*u00*u10*u20^2*u01^4*u12*u22^3+884736*u00*u10*u20^2*u01^3*u21*u02*u12*u22^2-221184*u00*u10*u20^2*u01^3*u21*u12^3*u22-258048*u00*u10*u20^2*u01^2*u21^2*u02^2*u12*u22-540672*u00*u10*u20*u01^3*u21^3*u02*u12*u22+73728*u00*u10*u20*u01^3*u21^3*u12^3+12288*u00*u10*u01^4*u21^4*u12*u22+73728*u00*u10*u01^3*u21^5*u02*u12+172032*u00*u20^5*u02^5*u22-36864*u00*u20^5*u02^4*u12^2-1032192*u00*u20^4*u01^2*u02^3*u22^2+221184*u00*u20^4*u01^2*u02^2*u12^2*u22-356352*u00*u20^4*u01*u21*u02^4*u22+73728*u00*u20^4*u01*u21*u02^3*u12^2-36864*u00*u20^4*u21^2*u02^5+1548288*u00*u20^3*u01^4*u02*u22^3-331776*u00*u20^3*u01^4*u12^2*u22^2+1105920*u00*u20^3*u01^3*u21*u02^2*u22^2-221184*u00*u20^3*u01^3*u21*u02*u12^2*u22+761856*u00*u20^3*u01^2*u21^2*u02^3*u22-110592*u00*u20^3*u01^2*u21^2*u02^2*u12^2+73728*u00*u20^3*u01*u21^3*u02^4-110592*u00*u20^2*u01^5*u21*u22^3-1437696*u00*u20^2*u01^4*u21^2*u02*u22^2+221184*u00*u20^2*u01^4*u21^2*u12^2*u22-602112*u00*u20^2*u01^3*u21^3*u02^2*u22+73728*u00*u20^2*u01^3*u21^3*u02*u12^2-110592*u00*u20^2*u01^2*u21^4*u02^3+73728*u00*u20*u01^5*u21^3*u22^2+417792*u00*u20*u01^4*u21^4*u02*u22-36864*u00*u20*u01^4*u21^4*u12^2+73728*u00*u20*u01^3*u21^5*u02^2-12288*u00*u01^5*u21^5*u22-36864*u00*u01^4*u21^6*u02-110592*u10^6*u02^3*u22^3+110592*u10^6*u02^2*u12^2*u22^2-36864*u10^6*u02*u12^4*u22+4096*u10^6*u12^6-110592*u10^5*u20*u02^3*u12*u22^2+73728*u10^5*u20*u02^2*u12^3*u22-12288*u10^5*u20*u02*u12^5-110592*u10^5*u01*u21*u02^2*u12*u22^2+73728*u10^5*u01*u21*u02*u12^3*u22-12288*u10^5*u01*u21*u12^5+110592*u10^4*u20^2*u02^4*u22^2-110592*u10^4*u20^2*u02^3*u12^2*u22+24576*u10^4*u20^2*u02^2*u12^4-331776*u10^4*u20*u01^2*u02^2*u22^3+221184*u10^4*u20*u01^2*u02*u12^2*u22^2-36864*u10^4*u20*u01^2*u12^4*u22-110592*u10^4*u20*u01*u21*u02^3*u22^2+12288*u10^4*u20*u01*u21*u02*u12^4+110592*u10^4*u01^2*u21^2*u02^2*u22^2-110592*u10^4*u01^2*u21^2*u02*u12^2*u22+24576*u10^4*u01^2*u21^2*u12^4+73728*u10^3*u20^3*u02^4*u12*u22-28672*u10^3*u20^3*u02^3*u12^3-221184*u10^3*u20^2*u01^2*u02^2*u12*u22^2+73728*u10^3*u20^2*u01^2*u02*u12^3*u22-12288*u10^3*u20^2*u01*u21*u02^2*u12^3-221184*u10^3*u20*u01^3*u21*u02*u12*u22^2+73728*u10^3*u20*u01^3*u21*u12^3*u22-12288*u10^3*u20*u01^2*u21^2*u02*u12^3+73728*u10^3*u01^3*u21^3*u02*u12*u22-28672*u10^3*u01^3*u21^3*u12^3-36864*u10^2*u20^4*u02^5*u22+24576*u10^2*u20^4*u02^4*u12^2+221184*u10^2*u20^3*u01^2*u02^3*u22^2-110592*u10^2*u20^3*u01^2*u02^2*u12^2*u22+73728*u10^2*u20^3*u01*u21*u02^4*u22-12288*u10^2*u20^3*u01*u21*u02^3*u12^2-331776*u10^2*u20^2*u01^4*u02*u22^3+110592*u10^2*u20^2*u01^4*u12^2*u22^2-221184*u10^2*u20^2*u01^3*u21*u02^2*u22^2-110592*u10^2*u20^2*u01^2*u21^2*u02^3*u22+36864*u10^2*u20^2*u01^2*u21^2*u02^2*u12^2+221184*u10^2*u20*u01^4*u21^2*u02*u22^2-110592*u10^2*u20*u01^4*u21^2*u12^2*u22+73728*u10^2*u20*u01^3*u21^3*u02^2*u22-12288*u10^2*u20*u01^3*u21^3*u02*u12^2-36864*u10^2*u01^4*u21^4*u02*u22+24576*u10^2*u01^4*u21^4*u12^2-12288*u10*u20^5*u02^5*u12+73728*u10*u20^4*u01^2*u02^3*u12*u22+12288*u10*u20^4*u01*u21*u02^4*u12-110592*u10*u20^3*u01^4*u02*u12*u22^2-12288*u10*u20^3*u01^2*u21^2*u02^3*u12-110592*u10*u20^2*u01^5*u21*u12*u22^2-12288*u10*u20^2*u01^3*u21^3*u02^2*u12+73728*u10*u20*u01^5*u21^3*u12*u22+12288*u10*u20*u01^4*u21^4*u02*u12-12288*u10*u01^5*u21^5*u12+4096*u20^6*u02^6-36864*u20^5*u01^2*u02^4*u22-12288*u20^5*u01*u21*u02^5+110592*u20^4*u01^4*u02^2*u22^2+73728*u20^4*u01^3*u21*u02^3*u22+24576*u20^4*u01^2*u21^2*u02^4-110592*u20^3*u01^6*u22^3-110592*u20^3*u01^5*u21*u02*u22^2-110592*u20^3*u01^4*u21^2*u02^2*u22-28672*u20^3*u01^3*u21^3*u02^3+110592*u20^2*u01^6*u21^2*u22^2+73728*u20^2*u01^5*u21^3*u02*u22+24576*u20^2*u01^4*u21^4*u02^2-36864*u20*u01^6*u21^4*u22-12288*u20*u01^5*u21^5*u02+4096*u01^6*u21^6)"; return(A); } if ((invar=="c4") and (curve=="2x2")) { string c4="(u11^4-8*u11^2*u00*u22-8*u11^2*u10*u12-8*u11^2*u20*u02-8*u11^2*u01*u21+24*u11*u00*u21*u12+24*u11*u10*u01*u22+24*u11*u10*u21*u02+24*u11*u20*u01*u12+16*u00^2*u22^2-16*u00*u10*u12*u22+224*u00*u20*u02*u22-48*u00*u20*u12^2-16*u00*u01*u21*u22-48*u00*u21^2*u02-48*u10^2*u02*u22+16*u10^2*u12^2-16*u10*u20*u02*u12-16*u10*u01*u21*u12+16*u20^2*u02^2-48*u20*u01^2*u22-16*u20*u01*u21*u02+16*u01^2*u21^2)"; return(c4); } } static proc affineHullDatabase (string polygon,string art) "USAGE: affineHullDatabase(polygon,art); polygon,art string ASSUME: polygon is one of the following strings discribing the type of curve to be considered: - 'cubic' : describing a cubic - '2x2' : describing a curve of type (2,2) - '4x2' : describing a curve of type (4,2) art is one of the following strings: - 'discriminant' : refering to the discriminant of the curve - 'numerator' : refering to the numerator of the j-invariant of the curve - 'secondary' : refering to the secondary polytope of the curve RETURN: intmat, whose rows are the equations of the affine hull of the polytope respectively span the linearity space of the fan after removing the first column" { if ((polygon=="cubic") and (art=="discriminant")) { intmat AFFINEHULL[3][11]=-12,1,3,2,1,0,2,0,1,0,0, -12,1,0,1,2,3,0,2,0,1,0, 12,-1,-2,-2,-2,-2,-1,-1,0,0,1; } if ((polygon=="cubic") and (art=="numerator")) { intmat AFFINEHULL[3][11]=-12,1,3,2,1,0,2,0,1,0,0, -12,1,0,1,2,3,0,2,0,1,0, 12,-1,-2,-2,-2,-2,-1,-1,0,0,1; } if ((polygon=="cubic") and (art=="secondary")) { intmat AFFINEHULL[3][11]=-27,1,3,2,1,0,2,0,1,0,0, -27,1,0,1,2,3,0,2,0,1,0, 27,-1,-2,-2,-2,-2,-1,-1,0,0,1; } if ((polygon=="2x2") and (art=="discriminant")) { intmat AFFINEHULL[3][10]= -12,1,2,2,2,1,1,0,0,0, -12,1,2,1,0,2,0,2,1,0, 12,-1,-3,-2,-1,-2,0,-1,0,1; } if ((polygon=="2x2") and (art=="numerator")) { intmat AFFINEHULL[3][10]= -12,1,2,2,2,1,1,0,0,0, -12,1,2,1,0,2,0,2,1,0, 12,-1,-3,-2,-1,-2,0,-1,0,1; } if ((polygon=="2x2") and (art=="secondary")) { intmat AFFINEHULL[3][10]= -24,1,2,2,2,1,1,0,0,0, -24,1,2,1,0,2,0,2,1,0, 24,-1,-3,-2,-1,-2,0,-1,0,1; } if ((polygon=="4x2") and (art=="discriminant")) { intmat AFFINEHULL[3][10]= -12,1,4,3,2,1,0,2,0,0, -12,1,0,1,2,3,4,0,2,0, 0,0,-1,-1,-1,-1,-1,0,0,1; } if ((polygon=="4x2") and (art=="numerator")) { intmat AFFINEHULL[3][10]= -12,1,4,3,2,1,0,2,0,0, -12,1,0,1,2,3,4,0,2,0, 0,0,-1,-1,-1,-1,-1,0,0,1; } if ((polygon=="4x2") and (art=="secondary")) { intmat AFFINEHULL[3][10]= -32,1,4,3,2,1,0,2,0,0, -32,1,0,1,2,3,4,0,2,0, 8,0,-1,-1,-1,-1,-1,0,0,1; } return(AFFINEHULL); } static proc verticesDatabase (string polygon,string art) "USAGE: verticesDatabase(polygon,art); polygon,art string ASSUME: polygon is one of the following strings discribing the type of curve to be considered: - 'cubic' : describing a cubic - '2x2' : describing a curve of type (2,2) - '4x2' : describing a curve of type (4,2) art is one of the following strings: - 'discriminant' : refering to the discriminant of the curve - 'numerator' : refering to the numerator of the j-invariant of the curve - 'secondary' : refering to the secondary polytope of the curve RETURN: intmat, the ith row contains the coordinates of the ith vertex of the polytope" { if ((polygon=="cubic") and (art=="discriminant")) { intmat VERTICES[133][10]= 9,1,0,0,1,0,0,0,0,1, 8,1,0,1,0,0,1,0,0,1, 8,1,0,0,1,0,0,1,1,0, 8,0,1,0,1,1,0,0,0,1, 7,1,1,0,0,0,2,0,0,1, 7,1,0,2,0,0,0,0,1,1, 7,1,0,1,0,0,1,1,1,0, 7,1,0,0,1,1,0,0,2,0, 7,1,0,0,1,0,1,2,0,0, 7,0,2,0,1,0,0,1,0,1, 7,0,1,1,0,1,1,0,0,1, 7,0,1,0,1,1,0,1,1,0, 7,0,0,1,1,2,0,0,0,1, 6,2,0,0,1,0,0,0,3,0, 6,2,0,0,0,0,3,0,0,1, 6,1,1,0,0,0,2,1,1,0, 6,1,0,3,0,0,0,0,0,2, 6,1,0,2,0,0,0,1,2,0, 6,1,0,1,0,1,1,0,2,0, 6,1,0,1,0,0,2,2,0,0, 6,1,0,0,2,0,0,3,0,0, 6,0,3,0,1,0,0,0,0,2, 6,0,2,1,0,0,1,1,0,1, 6,0,2,0,1,0,0,2,1,0, 6,0,2,0,0,1,2,0,0,1, 6,0,1,2,0,1,0,0,1,1, 6,0,1,1,0,1,1,1,1,0, 6,0,1,0,1,2,0,0,2,0, 6,0,1,0,1,1,1,2,0,0, 6,0,0,2,0,2,1,0,0,1, 6,0,0,1,1,2,0,1,1,0, 6,0,0,0,2,3,0,0,0,1, 5,2,0,1,0,0,1,0,3,0, 5,2,0,0,0,0,3,1,1,0, 5,1,1,0,0,1,2,0,2,0, 5,1,1,0,0,0,3,2,0,0, 5,1,0,2,0,1,0,0,3,0, 5,0,3,1,0,0,1,0,0,2, 5,0,3,0,0,0,2,1,0,1, 5,0,2,2,0,0,0,1,1,1, 5,0,2,1,0,0,1,2,1,0, 5,0,2,0,1,0,1,3,0,0, 5,0,2,0,0,1,2,1,1,0, 5,0,1,3,0,1,0,0,0,2, 5,0,1,2,0,1,0,1,2,0, 5,0,1,1,0,2,1,0,2,0, 5,0,1,1,0,1,2,2,0,0, 5,0,1,0,2,1,0,3,0,0, 5,0,0,3,0,2,0,0,1,1, 5,0,0,2,0,2,1,1,1,0, 5,0,0,1,1,3,0,0,2,0, 5,0,0,1,1,2,1,2,0,0, 5,0,0,0,2,3,0,1,1,0, 4,2,1,0,0,0,2,0,3,0, 4,2,0,2,0,0,0,0,4,0, 4,2,0,0,0,1,3,0,2,0, 4,2,0,0,0,0,4,2,0,0, 4,0,4,0,0,0,2,0,0,2, 4,0,3,2,0,0,0,0,1,2, 4,0,3,0,0,0,2,2,1,0, 4,0,2,3,0,0,0,1,0,2, 4,0,2,2,0,0,0,2,2,0, 4,0,2,1,0,0,2,3,0,0, 4,0,2,0,2,0,0,4,0,0, 4,0,2,0,0,2,2,0,2,0, 4,0,2,0,0,1,3,2,0,0, 4,0,1,2,0,2,0,0,3,0, 4,0,0,4,0,2,0,0,0,2, 4,0,0,3,0,2,0,1,2,0, 4,0,0,2,0,3,1,0,2,0, 4,0,0,2,0,2,2,2,0,0, 4,0,0,1,2,2,0,3,0,0, 4,0,0,0,2,4,0,0,2,0, 4,0,0,0,2,3,1,2,0,0, 3,3,0,0,0,0,3,0,3,0, 3,0,3,3,0,0,0,0,0,3, 3,0,3,0,0,0,3,3,0,0, 3,0,0,3,0,3,0,0,3,0, 3,0,0,0,3,3,0,3,0,0, 0,4,0,0,4,0,0,0,0,4, 0,4,0,0,2,0,0,0,6,0, 0,4,0,0,0,0,6,0,0,2, 0,4,0,0,0,0,4,0,4,0, 0,3,0,3,0,0,0,0,6,0, 0,3,0,0,0,0,6,3,0,0, 0,2,3,0,1,0,0,0,6,0, 0,2,3,0,0,0,2,0,5,0, 0,2,2,2,0,0,0,0,6,0, 0,2,0,6,0,0,0,0,0,4, 0,2,0,0,4,0,0,6,0,0, 0,2,0,0,0,3,6,0,0,1, 0,2,0,0,0,3,5,0,2,0, 0,2,0,0,0,2,6,2,0,0, 0,1,0,6,0,0,0,3,0,2, 0,1,0,5,0,0,0,4,2,0, 0,1,0,4,0,0,2,5,0,0, 0,1,0,3,2,0,0,6,0,0, 0,0,6,0,2,0,0,0,0,4, 0,0,6,0,1,0,0,0,3,2, 0,0,6,0,0,0,3,0,0,3, 0,0,6,0,0,0,2,0,2,2, 0,0,5,2,0,0,0,0,3,2, 0,0,5,0,1,0,0,2,4,0, 0,0,5,0,0,0,2,2,3,0, 0,0,4,4,0,0,0,0,0,4, 0,0,4,2,0,0,0,2,4,0, 0,0,4,0,1,2,0,0,5,0, 0,0,4,0,0,2,2,0,4,0, 0,0,4,0,0,0,4,4,0,0, 0,0,3,2,0,2,0,0,5,0, 0,0,3,0,3,0,0,6,0,0, 0,0,2,5,0,0,0,3,0,2, 0,0,2,4,0,0,0,4,2,0, 0,0,2,3,0,0,2,5,0,0, 0,0,2,2,2,0,0,6,0,0, 0,0,2,0,0,4,5,0,0,1, 0,0,2,0,0,4,4,0,2,0, 0,0,2,0,0,3,5,2,0,0, 0,0,0,6,0,3,0,0,0,3, 0,0,0,6,0,2,0,2,0,2, 0,0,0,5,0,2,0,3,2,0, 0,0,0,4,0,4,0,0,4,0, 0,0,0,4,0,2,2,4,0,0, 0,0,0,3,2,2,0,5,0,0, 0,0,0,2,0,5,4,0,0,1, 0,0,0,2,0,5,3,0,2,0, 0,0,0,2,0,4,4,2,0,0, 0,0,0,0,4,6,0,0,0,2, 0,0,0,0,4,4,0,4,0,0, 0,0,0,0,3,6,0,0,3,0, 0,0,0,0,2,6,3,0,0,1, 0,0,0,0,2,6,2,0,2,0, 0,0,0,0,2,5,3,2,0,0; } if ((polygon=="cubic") and (art=="numerator")) { intmat VERTICES[19][10]= 12,0,0,0,0,0,0,0,0,0, 3,3,0,0,3,0,0,0,0,3, 3,3,0,0,0,0,3,0,3,0, 3,0,3,3,0,0,0,0,0,3, 3,0,3,0,0,0,3,3,0,0, 3,0,0,3,0,3,0,0,3,0, 3,0,0,0,3,3,0,3,0,0, 0,3,0,3,0,0,3,0,0,3, 0,3,0,3,0,0,0,0,6,0, 0,3,0,0,3,0,0,3,3,0, 0,3,0,0,0,0,6,3,0,0, 0,0,6,0,0,0,3,0,0,3, 0,0,6,0,0,0,0,0,6,0, 0,0,3,0,3,3,0,0,0,3, 0,0,3,0,3,0,0,6,0,0, 0,0,0,6,0,3,0,0,0,3, 0,0,0,6,0,0,0,6,0,0, 0,0,0,0,3,6,0,0,3,0, 0,0,0,0,0,6,6,0,0,0; } if ((polygon=="cubic") and (art=="secondary")) { intmat VERTICES[1166][10]= 9,6,0,0,6,0,0,0,0,6, 9,6,0,0,5,0,0,0,3,4, 9,5,0,0,5,0,0,3,3,2, 9,4,0,0,6,3,0,0,0,5, 9,4,3,0,5,0,0,0,0,6, 9,6,0,0,4,0,2,0,2,4, 9,5,0,0,6,0,0,3,0,4, 9,4,0,0,5,3,0,0,3,3, 9,6,0,0,4,0,3,0,0,5, 9,5,0,3,4,0,0,0,0,6, 9,4,3,0,4,0,0,0,3,4, 9,5,0,3,3,0,0,0,3,4, 9,4,0,3,4,0,0,3,0,4, 9,3,0,3,4,3,0,0,0,5, 9,4,0,0,4,3,3,0,0,4, 9,5,0,3,2,0,2,0,2,4, 9,4,2,2,3,0,0,0,3,4, 9,3,3,0,5,0,0,3,0,4, 9,4,0,0,6,2,0,2,0,4, 9,2,3,0,5,3,0,0,0,5, 9,5,0,0,4,0,3,3,0,3, 9,5,0,0,4,0,2,3,2,2, 9,3,3,0,4,0,0,3,3,2, 9,4,3,0,3,0,2,0,2,4, 9,4,0,0,4,3,2,0,2,3, 9,2,3,0,4,3,0,0,3,3, 9,4,3,0,3,0,3,0,0,5, 9,4,2,2,4,0,0,0,0,6, 9,5,0,3,2,0,3,0,0,5, 9,4,0,0,5,2,0,2,3,2, 9,4,0,3,3,0,0,3,3,2, 9,3,0,3,3,3,0,0,3,3, 9,4,0,0,4,2,3,2,0,3, 9,2,3,0,3,3,3,0,0,4, 9,3,0,3,2,3,3,0,0,4, 9,4,2,2,2,0,3,0,0,5, 9,4,0,3,2,0,2,3,2,2, 9,3,3,0,3,0,2,3,2,2, 9,4,0,0,4,2,2,2,2,2, 9,4,0,3,2,0,3,3,0,3, 9,3,3,0,3,0,3,3,0,3, 9,2,3,0,5,2,0,2,0,4, 9,3,2,2,4,0,0,3,0,4, 9,3,0,3,4,2,0,2,0,4, 9,2,2,2,4,3,0,0,0,5, 9,3,2,2,3,0,0,3,3,2, 9,3,0,3,3,2,0,2,3,2, 9,2,3,0,4,2,0,2,3,2, 9,2,3,0,3,3,2,0,2,3, 9,3,0,3,2,3,2,0,2,3, 9,4,2,2,2,0,2,0,2,4, 9,2,2,2,3,3,0,0,3,3, 9,3,2,2,2,0,2,3,2,2, 9,3,0,3,2,2,2,2,2,2, 9,2,2,2,2,3,2,0,2,3, 9,2,3,0,3,2,2,2,2,2, 9,2,2,2,3,2,0,2,3,2, 9,2,3,0,3,2,3,2,0,3, 9,2,2,2,4,2,0,2,0,4, 9,3,2,2,2,0,3,3,0,3, 9,3,0,3,2,2,3,2,0,3, 9,2,2,2,2,3,3,0,0,4, 9,2,2,2,2,2,3,2,0,3, 9,2,2,2,2,2,2,2,2,2, 8,5,0,4,1,0,3,0,2,4, 8,5,0,4,1,0,4,0,0,5, 8,3,0,4,1,3,4,0,0,4, 8,4,0,4,1,0,4,3,0,3, 8,3,0,4,1,3,3,0,2,3, 8,4,2,3,1,0,3,0,2,4, 8,4,0,4,1,0,3,3,2,2, 8,4,2,3,1,0,4,0,0,5, 8,3,2,3,1,0,3,3,2,2, 8,3,2,3,1,0,4,3,0,3, 8,3,0,4,1,2,4,2,0,3, 8,2,2,3,1,3,4,0,0,4, 8,3,0,4,1,2,3,2,2,2, 8,2,2,3,1,3,3,0,2,3, 8,2,2,3,1,2,3,2,2,2, 8,2,2,3,1,2,4,2,0,3, 8,5,0,0,5,0,0,4,4,1, 8,5,0,0,4,0,2,4,3,1, 8,4,0,3,3,0,0,4,4,1, 8,3,3,0,4,0,0,4,4,1, 8,4,0,0,5,2,0,3,4,1, 8,4,0,3,2,0,2,4,3,1, 8,4,0,0,4,2,2,3,3,1, 8,3,3,0,3,0,2,4,3,1, 8,2,3,0,4,2,0,3,4,1, 8,3,2,2,3,0,0,4,4,1, 8,3,0,3,3,2,0,3,4,1, 8,2,3,0,3,2,2,3,3,1, 8,3,2,2,2,0,2,4,3,1, 8,2,2,2,3,2,0,3,4,1, 8,3,0,3,2,2,2,3,3,1, 8,2,2,2,2,2,2,3,3,1, 8,1,4,0,4,4,0,0,3,3, 8,1,4,0,5,4,0,0,0,5, 8,1,3,2,4,4,0,0,0,5, 8,1,4,0,3,4,3,0,0,4, 8,1,4,0,5,3,0,2,0,4, 8,1,4,0,3,4,2,0,2,3, 8,1,4,0,4,3,0,2,3,2, 8,1,3,2,3,4,0,0,3,3, 8,1,4,0,3,3,3,2,0,3, 8,1,3,2,2,4,3,0,0,4, 8,1,3,2,3,3,0,2,3,2, 8,1,4,0,3,3,2,2,2,2, 8,1,3,2,4,3,0,2,0,4, 8,1,3,2,2,4,2,0,2,3, 8,1,3,2,2,3,2,2,2,2, 8,1,3,2,2,3,3,2,0,3, 7,4,4,0,2,0,4,0,2,4, 7,4,3,2,1,0,4,0,2,4, 7,4,4,0,2,0,5,0,0,5, 7,4,3,2,1,0,5,0,0,5, 7,2,3,2,1,3,5,0,0,4, 7,3,3,2,1,0,5,3,0,3, 7,2,4,0,2,3,5,0,0,4, 7,3,4,0,2,0,4,3,2,2, 7,2,4,0,2,3,4,0,2,3, 7,3,3,2,1,0,4,3,2,2, 7,2,3,2,1,3,4,0,2,3, 7,3,4,0,2,0,5,3,0,3, 7,2,3,2,1,2,4,2,2,2, 7,2,4,0,2,2,5,2,0,3, 7,2,3,2,1,2,5,2,0,3, 7,2,4,0,2,2,4,2,2,2, 7,5,0,5,1,0,2,0,3,4, 7,5,0,5,2,0,0,0,4,4, 7,4,0,5,2,0,0,3,4,2, 7,3,0,5,1,3,2,0,3,3, 7,4,2,4,1,0,2,0,3,4, 7,4,0,5,1,0,2,3,3,2, 7,3,0,5,2,3,0,0,4,3, 7,4,2,4,2,0,0,0,4,4, 7,3,0,5,1,2,2,2,3,2, 7,2,2,4,1,3,2,0,3,3, 7,3,2,4,2,0,0,3,4,2, 7,2,2,4,2,3,0,0,4,3, 7,3,2,4,1,0,2,3,3,2, 7,3,0,5,2,2,0,2,4,2, 7,2,2,4,1,2,2,2,3,2, 7,2,2,4,2,2,0,2,4,2, 7,4,0,4,1,0,3,4,3,1, 7,3,2,3,1,0,3,4,3,1, 7,3,0,4,1,2,3,3,3,1, 7,2,2,3,1,2,3,3,3,1, 7,4,0,0,5,4,0,0,5,2, 7,4,0,0,5,3,0,2,5,1, 7,3,0,3,3,4,0,0,5,2, 7,4,0,0,4,4,2,0,4,2, 7,2,3,0,4,4,0,0,5,2, 7,2,2,2,3,4,0,0,5,2, 7,3,0,3,2,4,2,0,4,2, 7,4,0,0,4,3,2,2,4,1, 7,2,3,0,3,4,2,0,4,2, 7,3,0,3,3,3,0,2,5,1, 7,2,3,0,4,3,0,2,5,1, 7,3,0,3,2,3,2,2,4,1, 7,2,2,2,2,4,2,0,4,2, 7,2,3,0,3,3,2,2,4,1, 7,2,2,2,3,3,0,2,5,1, 7,2,2,2,2,3,2,2,4,1, 7,5,0,0,4,0,4,5,0,2, 7,4,0,3,2,0,4,5,0,2, 7,4,0,0,4,2,4,4,0,2, 7,3,3,0,3,0,4,5,0,2, 7,5,0,0,4,0,3,5,2,1, 7,3,3,0,3,0,3,5,2,1, 7,2,3,0,3,2,4,4,0,2, 7,3,2,2,2,0,4,5,0,2, 7,4,0,0,4,2,3,4,2,1, 7,3,0,3,2,2,4,4,0,2, 7,4,0,3,2,0,3,5,2,1, 7,2,3,0,3,2,3,4,2,1, 7,2,2,2,2,2,4,4,0,2, 7,3,2,2,2,0,3,5,2,1, 7,3,0,3,2,2,3,4,2,1, 7,2,2,2,2,2,3,4,2,1, 7,2,5,0,4,0,0,4,3,2, 7,2,5,0,5,0,0,4,0,4, 7,1,5,0,4,2,0,3,3,2, 7,1,5,0,5,2,0,3,0,4, 7,1,5,0,3,2,3,3,0,3, 7,1,4,2,4,2,0,3,0,4, 7,2,4,2,4,0,0,4,0,4, 7,2,5,0,3,0,3,4,0,3, 7,2,4,2,3,0,0,4,3,2, 7,1,5,0,3,2,2,3,2,2, 7,1,4,2,3,2,0,3,3,2, 7,2,5,0,3,0,2,4,2,2, 7,2,4,2,2,0,2,4,2,2, 7,1,4,2,2,2,2,3,2,2, 7,2,4,2,2,0,3,4,0,3, 7,1,4,2,2,2,3,3,0,3, 7,1,3,3,1,4,4,0,0,4, 7,1,3,3,1,4,3,0,2,3, 7,1,3,3,1,3,3,2,2,2, 7,1,3,3,1,3,4,2,0,3, 7,1,4,0,4,3,0,3,4,1, 7,1,4,0,3,3,2,3,3,1, 7,1,3,2,3,3,0,3,4,1, 7,1,3,2,2,3,2,3,3,1, 7,2,0,4,4,5,0,0,0,5, 7,1,2,3,3,5,0,0,3,3, 7,1,2,3,4,5,0,0,0,5, 7,2,0,4,3,5,0,0,3,3, 7,1,2,3,4,4,0,2,0,4, 7,1,2,3,2,5,3,0,0,4, 7,1,2,3,2,5,2,0,2,3, 7,2,0,4,2,5,2,0,2,3, 7,2,0,4,4,4,0,2,0,4, 7,2,0,4,2,5,3,0,0,4, 7,2,0,4,3,4,0,2,3,2, 7,1,2,3,3,4,0,2,3,2, 7,1,2,3,2,4,3,2,0,3, 7,1,2,3,2,4,2,2,2,2, 7,2,0,4,2,4,3,2,0,3, 7,2,0,4,2,4,2,2,2,2, 6,7,0,0,5,0,0,0,6,3, 6,5,0,0,5,3,0,0,6,2, 6,3,3,0,4,3,0,0,6,2, 6,5,0,0,4,3,2,0,5,2, 6,5,0,0,5,2,0,2,6,1, 6,4,0,3,3,3,0,0,6,2, 6,6,0,3,3,0,0,0,6,3, 6,5,3,0,4,0,0,0,6,3, 6,7,0,0,4,0,2,0,5,3, 6,6,0,0,5,0,0,3,6,1, 6,4,0,3,2,3,2,0,5,2, 6,4,3,0,4,0,0,3,6,1, 6,5,0,0,4,2,2,2,5,1, 6,5,0,3,3,0,0,3,6,1, 6,6,0,0,4,0,2,3,5,1, 6,3,3,0,4,2,0,2,6,1, 6,4,0,3,3,2,0,2,6,1, 6,3,2,2,3,3,0,0,6,2, 6,3,3,0,3,3,2,0,5,2, 6,5,3,0,3,0,2,0,5,3, 6,6,0,3,2,0,2,0,5,3, 6,5,2,2,3,0,0,0,6,3, 6,3,2,2,2,3,2,0,5,2, 6,5,2,2,2,0,2,0,5,3, 6,3,2,2,3,2,0,2,6,1, 6,5,0,3,2,0,2,3,5,1, 6,4,3,0,3,0,2,3,5,1, 6,4,0,3,2,2,2,2,5,1, 6,3,3,0,3,2,2,2,5,1, 6,4,2,2,3,0,0,3,6,1, 6,4,2,2,2,0,2,3,5,1, 6,3,2,2,2,2,2,2,5,1, 6,5,3,0,2,0,5,0,2,4, 6,7,0,0,3,0,5,0,2,4, 6,7,0,0,3,0,6,0,0,5, 6,5,3,0,2,0,6,0,0,5, 6,5,2,2,1,0,5,0,2,4, 6,5,2,2,1,0,6,0,0,5, 6,6,0,3,1,0,5,0,2,4, 6,6,0,3,1,0,6,0,0,5, 6,5,0,0,3,3,5,0,2,3, 6,4,3,0,2,0,5,3,2,2, 6,4,0,3,1,3,5,0,2,3, 6,6,0,0,3,0,5,3,2,2, 6,3,3,0,2,3,5,0,2,3, 6,5,0,3,1,0,6,3,0,3, 6,4,0,3,1,3,6,0,0,4, 6,4,3,0,2,0,6,3,0,3, 6,6,0,0,3,0,6,3,0,3, 6,5,0,0,3,3,6,0,0,4, 6,4,2,2,1,0,6,3,0,3, 6,3,3,0,2,3,6,0,0,4, 6,4,2,2,1,0,5,3,2,2, 6,3,2,2,1,3,5,0,2,3, 6,5,0,3,1,0,5,3,2,2, 6,3,2,2,1,3,6,0,0,4, 6,4,0,3,1,2,6,2,0,3, 6,5,0,0,3,2,6,2,0,3, 6,4,0,3,1,2,5,2,2,2, 6,3,3,0,2,2,5,2,2,2, 6,3,3,0,2,2,6,2,0,3, 6,3,2,2,1,2,6,2,0,3, 6,5,0,0,3,2,5,2,2,2, 6,3,2,2,1,2,5,2,2,2, 6,3,3,2,1,0,4,4,3,1, 6,3,4,0,2,0,4,4,3,1, 6,2,3,2,1,2,4,3,3,1, 6,2,4,0,2,2,4,3,3,1, 6,5,0,6,2,0,0,0,3,5, 6,5,0,6,1,0,2,0,2,5, 6,5,0,6,1,0,3,0,0,6, 6,4,2,5,1,0,2,0,2,5, 6,4,0,6,1,0,2,3,2,3, 6,3,0,6,1,3,2,0,2,4, 6,4,0,6,2,0,0,3,3,3, 6,3,0,6,2,3,0,0,3,4, 6,5,0,6,3,0,0,0,0,7, 6,4,2,5,2,0,0,0,3,5, 6,3,2,5,2,0,0,3,3,3, 6,3,0,6,2,2,0,2,3,3, 6,2,2,5,1,3,2,0,2,4, 6,3,0,6,3,3,0,0,0,6, 6,4,2,5,3,0,0,0,0,7, 6,4,0,6,3,0,0,3,0,5, 6,3,0,6,1,2,2,2,2,3, 6,3,0,6,1,3,3,0,0,5, 6,4,2,5,1,0,3,0,0,6, 6,4,0,6,1,0,3,3,0,4, 6,3,2,5,1,0,2,3,2,3, 6,2,2,5,2,3,0,0,3,4, 6,3,2,5,3,0,0,3,0,5, 6,3,0,6,3,2,0,2,0,5, 6,2,2,5,3,3,0,0,0,6, 6,2,2,5,2,2,0,2,3,3, 6,3,2,5,1,0,3,3,0,4, 6,3,0,6,1,2,3,2,0,4, 6,2,2,5,1,2,2,2,2,3, 6,2,2,5,1,3,3,0,0,5, 6,2,2,5,1,2,3,2,0,4, 6,2,2,5,3,2,0,2,0,5, 6,4,0,5,2,0,0,4,5,1, 6,4,0,5,1,0,2,4,4,1, 6,3,2,4,1,0,2,4,4,1, 6,3,0,5,1,2,2,3,4,1, 6,3,2,4,2,0,0,4,5,1, 6,3,0,5,2,2,0,3,5,1, 6,2,2,4,1,2,2,3,4,1, 6,2,2,4,2,2,0,3,5,1, 6,3,0,4,1,4,3,0,4,2, 6,2,2,3,1,4,3,0,4,2, 6,3,0,4,1,3,3,2,4,1, 6,2,2,3,1,3,3,2,4,1, 6,4,0,4,1,0,5,5,0,2, 6,3,2,3,1,0,5,5,0,2, 6,3,0,4,1,2,5,4,0,2, 6,4,0,4,1,0,4,5,2,1, 6,2,2,3,1,2,5,4,0,2, 6,3,2,3,1,0,4,5,2,1, 6,3,0,4,1,2,4,4,2,1, 6,2,2,3,1,2,4,4,2,1, 6,5,0,0,7,0,0,6,0,3, 6,4,0,3,5,0,0,6,0,3, 6,5,0,0,5,0,3,6,0,2, 6,5,0,0,6,0,0,6,3,1, 6,3,3,0,6,0,0,6,0,3, 6,4,0,0,7,2,0,5,0,3, 6,4,0,3,4,0,0,6,3,1, 6,4,0,0,6,2,0,5,3,1, 6,3,3,0,5,0,0,6,3,1, 6,2,3,0,6,2,0,5,0,3, 6,3,2,2,5,0,0,6,0,3, 6,3,0,3,5,2,0,5,0,3, 6,4,0,0,5,2,3,5,0,2, 6,5,0,0,5,0,2,6,2,1, 6,4,0,3,3,0,3,6,0,2, 6,3,3,0,4,0,3,6,0,2, 6,2,2,2,5,2,0,5,0,3, 6,3,2,2,4,0,0,6,3,1, 6,3,0,3,3,2,3,5,0,2, 6,3,0,3,4,2,0,5,3,1, 6,3,2,2,3,0,3,6,0,2, 6,4,0,3,3,0,2,6,2,1, 6,4,0,0,5,2,2,5,2,1, 6,2,3,0,5,2,0,5,3,1, 6,2,3,0,4,2,3,5,0,2, 6,3,3,0,4,0,2,6,2,1, 6,2,3,0,4,2,2,5,2,1, 6,2,2,2,3,2,3,5,0,2, 6,3,2,2,3,0,2,6,2,1, 6,2,2,2,4,2,0,5,3,1, 6,3,0,3,3,2,2,5,2,1, 6,2,2,2,3,2,2,5,2,1, 6,1,6,0,5,3,0,0,0,6, 6,2,6,0,4,0,0,3,3,3, 6,3,6,0,4,0,0,0,3,5, 6,1,6,0,5,2,0,2,0,5, 6,1,6,0,4,3,0,0,3,4, 6,2,6,0,5,0,0,3,0,5, 6,3,6,0,5,0,0,0,0,7, 6,1,6,0,4,2,0,2,3,3, 6,3,6,0,3,0,3,0,0,6, 6,3,5,2,4,0,0,0,0,7, 6,2,6,0,3,0,2,3,2,3, 6,2,5,2,3,0,0,3,3,3, 6,2,5,2,4,0,0,3,0,5, 6,2,6,0,3,0,3,3,0,4, 6,3,6,0,3,0,2,0,2,5, 6,1,6,0,3,2,3,2,0,4, 6,1,5,2,3,3,0,0,3,4, 6,1,6,0,3,3,2,0,2,4, 6,1,5,2,4,3,0,0,0,6, 6,1,5,2,4,2,0,2,0,5, 6,1,6,0,3,3,3,0,0,5, 6,1,6,0,3,2,2,2,2,3, 6,1,5,2,3,2,0,2,3,3, 6,3,5,2,3,0,0,0,3,5, 6,1,5,2,2,2,2,2,2,3, 6,2,5,2,2,0,3,3,0,4, 6,1,5,2,2,3,3,0,0,5, 6,1,5,2,2,2,3,2,0,4, 6,1,5,2,2,3,2,0,2,4, 6,2,5,2,2,0,2,3,2,3, 6,3,5,2,2,0,2,0,2,5, 6,3,5,2,2,0,3,0,0,6, 6,1,4,3,1,2,4,3,0,3, 6,1,4,3,1,2,3,3,2,2, 6,2,4,3,1,0,3,4,2,2, 6,2,4,3,1,0,4,4,0,3, 6,1,5,0,4,2,0,4,4,1, 6,2,5,0,4,0,0,5,4,1, 6,1,5,0,3,2,2,4,3,1, 6,1,4,2,3,2,0,4,4,1, 6,2,5,0,3,0,2,5,3,1, 6,2,4,2,3,0,0,5,4,1, 6,1,4,2,2,2,2,4,3,1, 6,2,4,2,2,0,2,5,3,1, 6,1,5,0,2,4,4,0,2,3, 6,1,4,2,1,4,4,0,2,3, 6,1,4,2,1,4,5,0,0,4, 6,1,5,0,2,4,5,0,0,4, 6,1,4,2,1,3,5,2,0,3, 6,1,5,0,2,3,5,2,0,3, 6,1,5,0,2,3,4,2,2,2, 6,1,4,2,1,3,4,2,2,2, 6,1,3,4,1,4,2,0,3,3, 6,1,3,4,2,4,0,0,4,3, 6,1,3,4,1,3,2,2,3,2, 6,1,3,4,2,3,0,2,4,2, 6,1,3,3,1,3,3,3,3,1, 6,1,4,0,4,5,0,0,5,2, 6,1,4,0,4,4,0,2,5,1, 6,1,3,2,3,5,0,0,5,2, 6,1,4,0,3,5,2,0,4,2, 6,1,3,2,2,5,2,0,4,2, 6,1,3,2,3,4,0,2,5,1, 6,1,4,0,3,4,2,2,4,1, 6,1,3,2,2,4,2,2,4,1, 6,1,4,0,3,3,4,4,0,2, 6,1,4,0,3,3,3,4,2,1, 6,1,3,2,2,3,4,4,0,2, 6,1,3,2,2,3,3,4,2,1, 6,2,0,5,1,5,3,0,2,3, 6,1,2,4,1,5,4,0,0,4, 6,2,0,5,1,5,4,0,0,4, 6,1,2,4,1,5,3,0,2,3, 6,1,2,4,1,4,4,2,0,3, 6,2,0,5,1,4,3,2,2,2, 6,1,2,4,1,4,3,2,2,2, 6,2,0,5,1,4,4,2,0,3, 6,1,2,3,3,4,0,3,4,1, 6,2,0,4,3,4,0,3,4,1, 6,1,2,3,2,4,2,3,3,1, 6,2,0,4,2,4,2,3,3,1, 6,3,0,0,7,6,0,0,0,5, 6,2,0,3,4,6,0,0,3,3, 6,1,2,2,4,6,0,0,3,3, 6,2,0,3,5,6,0,0,0,5, 6,1,3,0,5,6,0,0,3,3, 6,3,0,0,6,6,0,0,3,3, 6,1,2,2,5,6,0,0,0,5, 6,1,3,0,6,6,0,0,0,5, 6,1,2,2,4,5,0,2,3,2, 6,1,2,2,3,6,2,0,2,3, 6,2,0,3,3,6,2,0,2,3, 6,2,0,3,4,5,0,2,3,2, 6,1,2,2,5,5,0,2,0,4, 6,2,0,3,5,5,0,2,0,4, 6,2,0,3,3,6,3,0,0,4, 6,3,0,0,7,5,0,2,0,4, 6,3,0,0,5,6,3,0,0,4, 6,1,3,0,6,5,0,2,0,4, 6,1,2,2,3,6,3,0,0,4, 6,1,3,0,4,6,2,0,2,3, 6,1,3,0,5,5,0,2,3,2, 6,1,3,0,4,6,3,0,0,4, 6,3,0,0,6,5,0,2,3,2, 6,3,0,0,5,6,2,0,2,3, 6,1,2,2,3,5,3,2,0,3, 6,2,0,3,3,5,2,2,2,2, 6,1,2,2,3,5,2,2,2,2, 6,3,0,0,5,5,2,2,2,2, 6,1,3,0,4,5,3,2,0,3, 6,2,0,3,3,5,3,2,0,3, 6,1,3,0,4,5,2,2,2,2, 6,3,0,0,5,5,3,2,0,3, 5,6,0,4,1,0,3,0,5,3, 5,4,0,4,1,3,3,0,5,2, 5,3,2,3,1,3,3,0,5,2, 5,5,0,4,1,0,3,3,5,1, 5,4,0,4,1,2,3,2,5,1, 5,5,2,3,1,0,3,0,5,3, 5,3,2,3,1,2,3,2,5,1, 5,4,2,3,1,0,3,3,5,1, 5,5,0,3,1,0,5,4,3,1, 5,4,2,2,1,0,5,4,3,1, 5,4,3,0,2,0,5,4,3,1, 5,6,0,0,3,0,5,4,3,1, 5,4,0,3,1,2,5,3,3,1, 5,3,2,2,1,2,5,3,3,1, 5,5,0,0,3,2,5,3,3,1, 5,3,3,0,2,2,5,3,3,1, 5,2,3,2,1,4,4,0,4,2, 5,2,4,0,2,4,4,0,4,2, 5,2,3,2,1,3,4,2,4,1, 5,2,4,0,2,3,4,2,4,1, 5,3,3,2,1,0,6,5,0,2, 5,3,4,0,2,0,6,5,0,2, 5,2,3,2,1,2,6,4,0,2, 5,3,3,2,1,0,5,5,2,1, 5,2,4,0,2,2,6,4,0,2, 5,3,4,0,2,0,5,5,2,1, 5,2,4,0,2,2,5,4,2,1, 5,2,3,2,1,2,5,4,2,1, 5,3,0,5,2,4,0,0,6,2, 5,3,0,5,1,4,2,0,5,2, 5,2,2,4,2,4,0,0,6,2, 5,3,0,5,2,3,0,2,6,1, 5,3,0,5,1,3,2,2,5,1, 5,2,2,4,1,4,2,0,5,2, 5,2,2,4,1,3,2,2,5,1, 5,2,2,4,2,3,0,2,6,1, 5,3,5,3,1,0,3,0,2,5, 5,3,5,3,1,0,4,0,0,6, 5,2,5,3,1,0,4,3,0,4, 5,2,5,3,1,0,3,3,2,3, 5,1,5,3,1,3,4,0,0,5, 5,1,5,3,1,2,4,2,0,4, 5,1,5,3,1,3,3,0,2,4, 5,1,5,3,1,2,3,2,2,3, 5,2,6,0,2,0,4,4,2,2, 5,2,5,2,1,0,4,4,2,2, 5,2,6,0,2,0,5,4,0,3, 5,2,5,2,1,0,5,4,0,3, 5,1,6,0,2,2,4,3,2,2, 5,1,6,0,2,2,5,3,0,3, 5,1,5,2,1,2,4,3,2,2, 5,1,5,2,1,2,5,3,0,3, 5,1,4,4,1,2,2,3,3,2, 5,1,4,4,2,2,0,3,4,2, 5,2,4,4,1,0,2,4,3,2, 5,2,4,4,2,0,0,4,4,2, 5,2,4,3,1,0,3,5,3,1, 5,1,4,3,1,2,3,4,3,1, 5,1,5,0,3,2,4,5,0,2, 5,2,5,0,3,0,4,6,0,2, 5,1,4,2,2,2,4,5,0,2, 5,2,4,2,2,0,4,6,0,2, 5,1,5,0,3,2,3,5,2,1, 5,2,5,0,3,0,3,6,2,1, 5,1,4,2,2,2,3,5,2,1, 5,2,4,2,2,0,3,6,2,1, 5,1,5,0,2,3,4,3,3,1, 5,1,4,2,1,3,4,3,3,1, 5,1,3,5,2,4,0,0,3,4, 5,1,3,5,1,4,2,0,2,4, 5,1,3,5,2,3,0,2,3,3, 5,1,3,5,1,4,3,0,0,5, 5,1,3,5,1,3,2,2,2,3, 5,1,3,5,3,4,0,0,0,6, 5,1,3,5,3,3,0,2,0,5, 5,1,3,5,1,3,3,2,0,4, 5,1,3,4,2,3,0,3,5,1, 5,1,3,4,1,3,2,3,4,1, 5,1,3,3,1,5,3,0,4,2, 5,1,3,3,1,4,3,2,4,1, 5,1,3,3,1,3,5,4,0,2, 5,1,3,3,1,3,4,4,2,1, 5,1,4,0,6,3,0,5,0,3, 5,1,4,0,5,3,0,5,3,1, 5,1,4,0,4,3,3,5,0,2, 5,1,3,2,5,3,0,5,0,3, 5,1,3,2,4,3,0,5,3,1, 5,1,3,2,3,3,3,5,0,2, 5,1,4,0,4,3,2,5,2,1, 5,1,3,2,3,3,2,5,2,1, 5,1,2,5,2,5,0,0,4,3, 5,1,2,5,1,5,2,0,3,3, 5,2,0,6,1,5,2,0,3,3, 5,2,0,6,2,5,0,0,4,3, 5,1,2,5,2,4,0,2,4,2, 5,1,2,5,1,4,2,2,3,2, 5,2,0,6,1,4,2,2,3,2, 5,2,0,6,2,4,0,2,4,2, 5,2,0,5,1,4,3,3,3,1, 5,1,2,4,1,4,3,3,3,1, 5,1,2,3,3,6,0,0,5,2, 5,2,0,4,3,6,0,0,5,2, 5,1,2,3,2,6,2,0,4,2, 5,1,2,3,3,5,0,2,5,1, 5,2,0,4,2,6,2,0,4,2, 5,2,0,4,3,5,0,2,5,1, 5,1,2,3,2,5,2,2,4,1, 5,2,0,4,2,5,2,2,4,1, 5,1,2,3,2,4,4,4,0,2, 5,2,0,4,2,4,4,4,0,2, 5,1,2,3,2,4,3,4,2,1, 5,2,0,4,2,4,3,4,2,1, 5,1,2,2,4,5,0,3,4,1, 5,3,0,0,6,5,0,3,4,1, 5,2,0,3,4,5,0,3,4,1, 5,1,3,0,5,5,0,3,4,1, 5,1,2,2,3,5,2,3,3,1, 5,3,0,0,5,5,2,3,3,1, 5,2,0,3,3,5,2,3,3,1, 5,1,3,0,4,5,2,3,3,1, 4,5,3,2,1,0,4,0,5,3, 4,3,4,0,2,3,4,0,5,2, 4,5,4,0,2,0,4,0,5,3, 4,3,3,2,1,3,4,0,5,2, 4,4,4,0,2,0,4,3,5,1, 4,3,3,2,1,2,4,2,5,1, 4,3,4,0,2,2,4,2,5,1, 4,4,3,2,1,0,4,3,5,1, 4,6,0,5,1,0,2,0,6,3, 4,6,0,5,2,0,0,0,7,3, 4,4,0,5,1,3,2,0,6,2, 4,4,0,5,2,3,0,0,7,2, 4,4,0,5,2,2,0,2,7,1, 4,5,0,5,2,0,0,3,7,1, 4,5,2,4,1,0,2,0,6,3, 4,5,0,5,1,0,2,3,6,1, 4,5,2,4,2,0,0,0,7,3, 4,3,2,4,2,3,0,0,7,2, 4,3,2,4,1,3,2,0,6,2, 4,4,0,5,1,2,2,2,6,1, 4,4,2,4,2,0,0,3,7,1, 4,4,2,4,1,0,2,3,6,1, 4,3,2,4,2,2,0,2,7,1, 4,3,2,4,1,2,2,2,6,1, 4,3,3,0,2,4,5,0,4,2, 4,3,2,2,1,4,5,0,4,2, 4,5,0,0,3,4,5,0,4,2, 4,4,0,3,1,4,5,0,4,2, 4,3,2,2,1,3,5,2,4,1, 4,3,3,0,2,3,5,2,4,1, 4,5,0,0,3,3,5,2,4,1, 4,4,0,3,1,3,5,2,4,1, 4,5,0,3,1,0,7,5,0,2, 4,4,2,2,1,0,7,5,0,2, 4,6,0,0,3,0,7,5,0,2, 4,4,3,0,2,0,7,5,0,2, 4,5,0,3,1,0,6,5,2,1, 4,4,0,3,1,2,7,4,0,2, 4,3,2,2,1,2,7,4,0,2, 4,4,2,2,1,0,6,5,2,1, 4,5,0,0,3,2,7,4,0,2, 4,3,3,0,2,2,7,4,0,2, 4,6,0,0,3,0,6,5,2,1, 4,4,3,0,2,0,6,5,2,1, 4,5,0,0,3,2,6,4,2,1, 4,3,2,2,1,2,6,4,2,1, 4,4,0,3,1,2,6,4,2,1, 4,3,3,0,2,2,6,4,2,1, 4,1,6,2,1,2,4,2,2,3, 4,2,7,0,2,0,5,3,0,4, 4,1,6,2,1,3,4,0,2,4, 4,1,7,0,2,2,5,2,0,4, 4,3,7,0,2,0,4,0,2,5, 4,3,7,0,2,0,5,0,0,6, 4,1,6,2,1,3,5,0,0,5, 4,2,6,2,1,0,4,3,2,3, 4,1,7,0,2,3,4,0,2,4, 4,2,7,0,2,0,4,3,2,3, 4,2,6,2,1,0,5,3,0,4, 4,1,7,0,2,3,5,0,0,5, 4,3,6,2,1,0,4,0,2,5, 4,3,6,2,1,0,5,0,0,6, 4,1,7,0,2,2,4,2,2,3, 4,1,6,2,1,2,5,2,0,4, 4,1,5,4,1,2,2,2,3,3, 4,3,5,4,1,0,2,0,3,5, 4,1,5,4,2,3,0,0,4,4, 4,3,5,4,2,0,0,0,4,5, 4,1,5,4,1,3,2,0,3,4, 4,1,5,4,2,2,0,2,4,3, 4,2,5,4,1,0,2,3,3,3, 4,2,5,4,2,0,0,3,4,3, 4,1,5,2,1,2,4,4,3,1, 4,2,5,2,1,0,4,5,3,1, 4,1,6,0,2,2,4,4,3,1, 4,2,6,0,2,0,4,5,3,1, 4,1,4,5,1,2,2,3,2,3, 4,2,4,5,1,0,2,4,2,3, 4,1,4,5,2,2,0,3,3,3, 4,2,4,5,2,0,0,4,3,3, 4,2,4,5,3,0,0,4,0,5, 4,1,4,5,1,2,3,3,0,4, 4,1,4,5,3,2,0,3,0,5, 4,2,4,5,1,0,3,4,0,4, 4,1,4,4,1,2,2,4,4,1, 4,1,4,4,2,2,0,4,5,1, 4,2,4,4,2,0,0,5,5,1, 4,2,4,4,1,0,2,5,4,1, 4,2,4,3,1,0,5,6,0,2, 4,1,4,3,1,2,5,5,0,2, 4,1,4,3,1,2,4,5,2,1, 4,2,4,3,1,0,4,6,2,1, 4,2,5,0,6,0,0,7,0,3, 4,1,5,0,6,2,0,6,0,3, 4,2,5,0,4,0,3,7,0,2, 4,2,4,2,5,0,0,7,0,3, 4,2,5,0,5,0,0,7,3,1, 4,1,4,2,5,2,0,6,0,3, 4,1,5,0,5,2,0,6,3,1, 4,1,5,0,4,2,3,6,0,2, 4,1,5,0,4,2,2,6,2,1, 4,1,4,2,4,2,0,6,3,1, 4,2,5,0,4,0,2,7,2,1, 4,2,4,2,3,0,3,7,0,2, 4,2,4,2,4,0,0,7,3,1, 4,1,4,2,3,2,3,6,0,2, 4,1,4,2,3,2,2,6,2,1, 4,2,4,2,3,0,2,7,2,1, 4,1,5,0,2,5,4,0,4,2, 4,1,4,2,1,5,4,0,4,2, 4,1,5,0,2,4,4,2,4,1, 4,1,4,2,1,4,4,2,4,1, 4,1,5,0,2,3,6,4,0,2, 4,1,4,2,1,3,6,4,0,2, 4,1,4,2,1,3,5,4,2,1, 4,1,5,0,2,3,5,4,2,1, 4,1,3,4,2,5,0,0,6,2, 4,1,3,4,1,5,2,0,5,2, 4,1,3,4,2,4,0,2,6,1, 4,1,3,4,1,4,2,2,5,1, 4,1,2,6,1,5,2,0,2,4, 4,2,0,7,2,5,0,0,3,4, 4,2,0,7,1,5,2,0,2,4, 4,1,2,6,2,5,0,0,3,4, 4,1,2,6,1,4,2,2,2,3, 4,2,0,7,1,5,3,0,0,5, 4,1,2,6,3,5,0,0,0,6, 4,1,2,6,2,4,0,2,3,3, 4,2,0,7,3,5,0,0,0,6, 4,2,0,7,1,4,2,2,2,3, 4,2,0,7,2,4,0,2,3,3, 4,1,2,6,1,5,3,0,0,5, 4,2,0,7,3,4,0,2,0,5, 4,1,2,6,3,4,0,2,0,5, 4,1,2,6,1,4,3,2,0,4, 4,2,0,7,1,4,3,2,0,4, 4,2,0,6,1,4,2,3,4,1, 4,1,2,5,2,4,0,3,5,1, 4,1,2,5,1,4,2,3,4,1, 4,2,0,6,2,4,0,3,5,1, 4,1,2,4,1,6,3,0,4,2, 4,2,0,5,1,6,3,0,4,2, 4,1,2,4,1,5,3,2,4,1, 4,2,0,5,1,5,3,2,4,1, 4,1,2,4,1,4,5,4,0,2, 4,2,0,5,1,4,5,4,0,2, 4,1,2,4,1,4,4,4,2,1, 4,2,0,5,1,4,4,4,2,1, 4,2,0,4,5,4,0,5,0,3, 4,1,2,3,5,4,0,5,0,3, 4,2,0,4,4,4,0,5,3,1, 4,1,2,3,4,4,0,5,3,1, 4,1,2,3,3,4,3,5,0,2, 4,2,0,4,3,4,3,5,0,2, 4,1,2,3,3,4,2,5,2,1, 4,2,0,4,3,4,2,5,2,1, 4,1,2,2,4,7,0,0,5,2, 4,2,0,3,4,7,0,0,5,2, 4,1,3,0,5,7,0,0,5,2, 4,3,0,0,6,7,0,0,5,2, 4,1,2,2,3,7,2,0,4,2, 4,3,0,0,5,7,2,0,4,2, 4,1,2,2,4,6,0,2,5,1, 4,3,0,0,6,6,0,2,5,1, 4,2,0,3,4,6,0,2,5,1, 4,2,0,3,3,7,2,0,4,2, 4,1,3,0,4,7,2,0,4,2, 4,1,3,0,5,6,0,2,5,1, 4,3,0,0,5,6,2,2,4,1, 4,1,3,0,4,6,2,2,4,1, 4,1,2,2,3,6,2,2,4,1, 4,2,0,3,3,6,2,2,4,1, 4,1,2,2,3,5,4,4,0,2, 4,3,0,0,5,5,4,4,0,2, 4,2,0,3,3,5,4,4,0,2, 4,1,3,0,4,5,4,4,0,2, 4,3,0,0,5,5,3,4,2,1, 4,1,2,2,3,5,3,4,2,1, 4,1,3,0,4,5,3,4,2,1, 4,2,0,3,3,5,3,4,2,1, 3,6,3,0,2,0,5,0,5,3, 3,7,0,3,1,0,5,0,5,3, 3,4,3,0,2,3,5,0,5,2, 3,8,0,0,3,0,5,0,5,3, 3,4,2,2,1,3,5,0,5,2, 3,6,2,2,1,0,5,0,5,3, 3,5,0,3,1,3,5,0,5,2, 3,6,0,0,3,3,5,0,5,2, 3,5,3,0,2,0,5,3,5,1, 3,5,0,3,1,2,5,2,5,1, 3,6,0,0,3,2,5,2,5,1, 3,6,0,3,1,0,5,3,5,1, 3,5,2,2,1,0,5,3,5,1, 3,4,3,0,2,2,5,2,5,1, 3,4,2,2,1,2,5,2,5,1, 3,7,0,0,3,0,5,3,5,1, 3,3,5,5,2,0,0,0,3,6, 3,1,5,5,2,3,0,0,3,5, 3,3,5,5,1,0,2,0,2,6, 3,1,5,5,1,3,2,0,2,5, 3,2,5,5,2,0,0,3,3,4, 3,1,5,5,2,2,0,2,3,4, 3,2,5,5,1,0,2,3,2,4, 3,1,5,5,1,2,2,2,2,4, 3,1,5,5,3,3,0,0,0,7, 3,3,5,5,1,0,3,0,0,7, 3,1,5,5,3,2,0,2,0,6, 3,2,5,5,3,0,0,3,0,6, 3,2,5,5,1,0,3,3,0,5, 3,1,5,5,1,3,3,0,0,6, 3,1,5,5,1,2,3,2,0,5, 3,3,5,5,3,0,0,0,0,8, 3,1,5,2,1,2,6,5,0,2, 3,1,6,0,2,2,6,5,0,2, 3,2,5,2,1,0,6,6,0,2, 3,2,6,0,2,0,6,6,0,2, 3,1,6,0,2,2,5,5,2,1, 3,2,5,2,1,0,5,6,2,1, 3,2,6,0,2,0,5,6,2,1, 3,1,5,2,1,2,5,5,2,1, 3,1,2,5,1,6,2,0,5,2, 3,2,0,6,1,6,2,0,5,2, 3,2,0,6,2,6,0,0,6,2, 3,1,2,5,2,6,0,0,6,2, 3,1,2,5,2,5,0,2,6,1, 3,1,2,5,1,5,2,2,5,1, 3,2,0,6,2,5,0,2,6,1, 3,2,0,6,1,5,2,2,5,1, 3,1,3,0,7,5,0,5,0,3, 3,1,2,2,6,5,0,5,0,3, 3,3,0,0,8,5,0,5,0,3, 3,2,0,3,6,5,0,5,0,3, 3,2,0,3,4,5,3,5,0,2, 3,2,0,3,5,5,0,5,3,1, 3,1,2,2,4,5,3,5,0,2, 3,1,2,2,5,5,0,5,3,1, 3,1,3,0,6,5,0,5,3,1, 3,3,0,0,7,5,0,5,3,1, 3,3,0,0,6,5,3,5,0,2, 3,1,3,0,5,5,3,5,0,2, 3,2,0,3,4,5,2,5,2,1, 3,3,0,0,6,5,2,5,2,1, 3,1,2,2,4,5,2,5,2,1, 3,1,3,0,5,5,2,5,2,1, 0,9,0,0,9,0,0,0,0,9, 0,9,0,0,6,0,0,0,9,3, 0,7,0,0,6,3,0,0,9,2, 0,8,0,0,6,0,0,3,9,1, 0,7,0,0,6,2,0,2,9,1, 0,8,0,3,1,0,9,0,0,6, 0,7,3,0,2,0,9,0,0,6, 0,7,2,2,1,0,9,0,0,6, 0,9,0,0,3,0,9,0,0,6, 0,8,0,3,1,0,6,0,6,3, 0,9,0,0,3,0,6,0,6,3, 0,7,2,2,1,0,6,0,6,3, 0,6,0,3,1,3,6,0,6,2, 0,5,2,2,1,3,6,0,6,2, 0,7,0,0,3,3,6,0,6,2, 0,7,3,0,2,0,6,0,6,3, 0,5,3,0,2,3,6,0,6,2, 0,7,0,0,3,2,6,2,6,1, 0,6,0,3,1,2,6,2,6,1, 0,6,2,2,1,0,6,3,6,1, 0,8,0,0,3,0,6,3,6,1, 0,7,0,3,1,0,6,3,6,1, 0,5,3,0,2,2,6,2,6,1, 0,6,3,0,2,0,6,3,6,1, 0,5,2,2,1,2,6,2,6,1, 0,5,0,6,2,3,0,0,9,2, 0,5,0,6,1,3,2,0,8,2, 0,7,0,6,2,0,0,0,9,3, 0,5,0,6,2,2,0,2,9,1, 0,7,0,6,1,0,2,0,8,3, 0,5,0,6,1,2,2,2,8,1, 0,6,0,6,2,0,0,3,9,1, 0,6,0,6,1,0,2,3,8,1, 0,7,0,0,3,0,9,6,0,2, 0,6,0,3,1,0,9,6,0,2, 0,5,2,2,1,0,9,6,0,2, 0,5,3,0,2,0,9,6,0,2, 0,6,0,3,1,0,8,6,2,1, 0,5,2,2,1,0,8,6,2,1, 0,5,3,0,2,0,8,6,2,1, 0,7,0,0,3,0,8,6,2,1, 0,5,6,0,4,0,0,0,9,3, 0,3,6,0,4,3,0,0,9,2, 0,3,6,0,4,2,0,2,9,1, 0,4,6,0,4,0,0,3,9,1, 0,5,6,0,2,0,4,0,7,3, 0,3,5,2,1,3,4,0,7,2, 0,3,6,0,2,3,4,0,7,2, 0,5,5,2,1,0,4,0,7,3, 0,4,5,2,1,0,4,3,7,1, 0,4,6,0,2,0,4,3,7,1, 0,3,6,0,2,2,4,2,7,1, 0,3,5,2,1,2,4,2,7,1, 0,5,4,4,1,0,2,0,8,3, 0,5,4,4,2,0,0,0,9,3, 0,3,4,4,1,3,2,0,8,2, 0,3,4,4,2,3,0,0,9,2, 0,3,4,4,1,2,2,2,8,1, 0,3,4,4,2,2,0,2,9,1, 0,4,4,4,2,0,0,3,9,1, 0,4,4,4,1,0,2,3,8,1, 0,6,0,9,3,0,0,0,0,9, 0,6,0,9,2,0,0,0,3,7, 0,6,0,9,1,0,3,0,0,8, 0,6,0,9,1,0,2,0,2,7, 0,6,0,0,9,0,0,9,0,3, 0,6,0,0,7,0,3,9,0,2, 0,6,0,0,8,0,0,9,3,1, 0,6,0,0,7,0,2,9,2,1, 0,4,0,3,1,6,9,0,0,4, 0,5,0,0,3,6,9,0,0,4, 0,3,3,0,2,6,9,0,0,4, 0,3,2,2,1,6,9,0,0,4, 0,5,0,0,3,6,7,0,4,2, 0,4,0,3,1,6,7,0,4,2, 0,3,3,0,2,6,7,0,4,2, 0,3,2,2,1,6,7,0,4,2, 0,3,3,0,2,5,7,2,4,1, 0,4,0,3,1,5,7,2,4,1, 0,3,2,2,1,5,7,2,4,1, 0,5,0,0,3,5,7,2,4,1, 0,3,3,0,2,4,9,4,0,2, 0,4,0,3,1,4,9,4,0,2, 0,5,0,0,3,4,9,4,0,2, 0,3,2,2,1,4,9,4,0,2, 0,5,0,0,3,4,8,4,2,1, 0,4,0,3,1,4,8,4,2,1, 0,3,2,2,1,4,8,4,2,1, 0,3,3,0,2,4,8,4,2,1, 0,4,0,9,3,0,0,6,0,5, 0,4,0,9,2,0,0,6,3,3, 0,4,0,9,1,0,2,6,2,3, 0,4,0,9,1,0,3,6,0,4, 0,4,0,8,2,0,0,7,5,1, 0,4,0,8,1,0,2,7,4,1, 0,4,0,7,1,0,5,8,0,2, 0,4,0,7,1,0,4,8,2,1, 0,4,0,6,5,0,0,9,0,3, 0,4,0,6,3,0,3,9,0,2, 0,4,0,6,4,0,0,9,3,1, 0,4,0,6,3,0,2,9,2,1, 0,3,9,0,6,0,0,0,0,9, 0,2,9,0,6,0,0,3,0,7, 0,1,9,0,6,2,0,2,0,7, 0,1,9,0,6,3,0,0,0,8, 0,3,9,0,4,0,0,0,6,5, 0,1,9,0,4,3,0,0,6,4, 0,1,9,0,4,2,0,2,6,3, 0,2,9,0,4,0,0,3,6,3, 0,3,8,2,1,0,6,0,0,7, 0,3,9,0,2,0,6,0,0,7, 0,2,8,2,1,0,6,3,0,5, 0,1,9,0,2,2,6,2,0,5, 0,2,9,0,2,0,6,3,0,5, 0,1,8,2,1,2,6,2,0,5, 0,1,8,2,1,3,6,0,0,6, 0,1,9,0,2,3,6,0,0,6, 0,3,9,0,2,0,4,0,4,5, 0,1,9,0,2,3,4,0,4,4, 0,3,8,2,1,0,4,0,4,5, 0,1,8,2,1,3,4,0,4,4, 0,1,9,0,2,2,4,2,4,3, 0,1,8,2,1,2,4,2,4,3, 0,2,8,2,1,0,4,3,4,3, 0,2,9,0,2,0,4,3,4,3, 0,1,7,4,1,3,2,0,5,4, 0,3,7,4,1,0,2,0,5,5, 0,1,7,4,2,3,0,0,6,4, 0,3,7,4,2,0,0,0,6,5, 0,2,7,4,1,0,2,3,5,3, 0,2,7,4,2,0,0,3,6,3, 0,1,7,4,2,2,0,2,6,3, 0,1,7,4,1,2,2,2,5,3, 0,1,8,0,4,2,0,4,7,1, 0,2,8,0,4,0,0,5,7,1, 0,2,8,0,2,0,4,5,5,1, 0,2,7,2,1,0,4,5,5,1, 0,1,8,0,2,2,4,4,5,1, 0,1,7,2,1,2,4,4,5,1, 0,3,6,6,2,0,0,0,3,7, 0,1,6,6,2,3,0,0,3,6, 0,3,6,6,3,0,0,0,0,9, 0,1,6,6,3,3,0,0,0,8, 0,2,6,6,2,0,0,3,3,5, 0,1,6,6,1,3,2,0,2,6, 0,1,6,6,2,2,0,2,3,5, 0,3,6,6,1,0,3,0,0,8, 0,2,6,6,3,0,0,3,0,7, 0,1,6,6,1,3,3,0,0,7, 0,1,6,6,3,2,0,2,0,7, 0,3,6,6,1,0,2,0,2,7, 0,1,6,6,1,2,3,2,0,6, 0,2,6,6,1,0,3,3,0,6, 0,1,6,6,1,2,2,2,2,5, 0,2,6,6,1,0,2,3,2,5, 0,2,6,4,1,0,2,5,6,1, 0,1,6,4,1,2,2,4,6,1, 0,1,6,4,2,2,0,4,7,1, 0,2,6,4,2,0,0,5,7,1, 0,1,7,0,4,5,0,0,8,2, 0,1,7,0,4,4,0,2,8,1, 0,1,6,2,1,5,4,0,6,2, 0,1,7,0,2,5,4,0,6,2, 0,1,7,0,2,4,4,2,6,1, 0,1,6,2,1,4,4,2,6,1, 0,2,7,0,2,0,7,7,0,2, 0,2,6,2,1,0,7,7,0,2, 0,1,7,0,2,2,7,6,0,2, 0,1,6,2,1,2,7,6,0,2, 0,1,7,0,2,2,6,6,2,1, 0,2,6,2,1,0,6,7,2,1, 0,1,6,2,1,2,6,6,2,1, 0,2,7,0,2,0,6,7,2,1, 0,1,5,4,1,5,2,0,7,2, 0,1,5,4,2,5,0,0,8,2, 0,1,5,4,2,4,0,2,8,1, 0,1,5,4,1,4,2,2,7,1, 0,1,6,0,7,2,0,8,0,3, 0,2,6,0,7,0,0,9,0,3, 0,2,6,0,5,0,3,9,0,2, 0,2,6,0,6,0,0,9,3,1, 0,1,6,0,6,2,0,8,3,1, 0,1,6,0,5,2,3,8,0,2, 0,2,6,0,5,0,2,9,2,1, 0,1,6,0,5,2,2,8,2,1, 0,1,4,7,2,2,0,5,3,3, 0,2,4,7,2,0,0,6,3,3, 0,1,4,7,3,2,0,5,0,5, 0,2,4,7,3,0,0,6,0,5, 0,2,4,7,1,0,3,6,0,4, 0,1,4,7,1,2,3,5,0,4, 0,2,4,7,1,0,2,6,2,3, 0,1,4,7,1,2,2,5,2,3, 0,1,4,6,2,2,0,6,5,1, 0,2,4,6,2,0,0,7,5,1, 0,1,4,6,1,2,2,6,4,1, 0,2,4,6,1,0,2,7,4,1, 0,1,4,5,1,2,5,7,0,2, 0,2,4,5,1,0,5,8,0,2, 0,1,4,5,1,2,4,7,2,1, 0,2,4,5,1,0,4,8,2,1, 0,1,4,4,5,2,0,8,0,3, 0,2,4,4,5,0,0,9,0,3, 0,2,4,4,3,0,3,9,0,2, 0,1,4,4,3,2,3,8,0,2, 0,2,4,4,4,0,0,9,3,1, 0,1,4,4,4,2,0,8,3,1, 0,1,4,4,3,2,2,8,2,1, 0,2,4,4,3,0,2,9,2,1, 0,1,4,2,1,7,8,0,0,4, 0,1,5,0,2,7,8,0,0,4, 0,1,5,0,2,7,6,0,4,2, 0,1,4,2,1,7,6,0,4,2, 0,1,5,0,2,6,6,2,4,1, 0,1,4,2,1,6,6,2,4,1, 0,1,5,0,2,5,8,4,0,2, 0,1,4,2,1,5,8,4,0,2, 0,1,5,0,2,5,7,4,2,1, 0,1,4,2,1,5,7,4,2,1, 0,1,2,8,2,6,0,0,3,5, 0,1,2,8,3,6,0,0,0,7, 0,2,0,9,3,6,0,0,0,7, 0,2,0,9,2,6,0,0,3,5, 0,1,2,8,1,6,2,0,2,5, 0,2,0,9,1,6,2,0,2,5, 0,2,0,9,1,6,3,0,0,6, 0,1,2,8,1,6,3,0,0,6, 0,1,2,8,2,4,0,4,3,3, 0,2,0,9,2,4,0,4,3,3, 0,2,0,9,3,4,0,4,0,5, 0,1,2,8,3,4,0,4,0,5, 0,2,0,9,1,4,2,4,2,3, 0,2,0,9,1,4,3,4,0,4, 0,1,2,8,1,4,2,4,2,3, 0,1,2,8,1,4,3,4,0,4, 0,1,2,7,2,4,0,5,5,1, 0,2,0,8,2,4,0,5,5,1, 0,1,2,7,1,4,2,5,4,1, 0,2,0,8,1,4,2,5,4,1, 0,2,0,7,2,7,0,0,7,2, 0,1,2,6,2,7,0,0,7,2, 0,1,2,6,1,7,2,0,6,2, 0,2,0,7,1,7,2,0,6,2, 0,2,0,7,2,6,0,2,7,1, 0,1,2,6,2,6,0,2,7,1, 0,2,0,7,1,6,2,2,6,1, 0,1,2,6,1,6,2,2,6,1, 0,1,2,6,1,4,5,6,0,2, 0,2,0,7,1,4,5,6,0,2, 0,1,2,6,1,4,4,6,2,1, 0,2,0,7,1,4,4,6,2,1, 0,2,0,6,5,4,0,7,0,3, 0,1,2,5,5,4,0,7,0,3, 0,2,0,6,3,4,3,7,0,2, 0,2,0,6,4,4,0,7,3,1, 0,1,2,5,3,4,3,7,0,2, 0,1,2,5,4,4,0,7,3,1, 0,2,0,6,3,4,2,7,2,1, 0,1,2,5,3,4,2,7,2,1, 0,2,0,5,1,8,7,0,0,4, 0,1,2,4,1,8,7,0,0,4, 0,1,2,4,1,8,5,0,4,2, 0,2,0,5,1,8,5,0,4,2, 0,2,0,5,1,7,5,2,4,1, 0,1,2,4,1,7,5,2,4,1, 0,2,0,5,1,6,7,4,0,2, 0,1,2,4,1,6,7,4,0,2, 0,1,2,4,1,6,6,4,2,1, 0,2,0,5,1,6,6,4,2,1, 0,1,2,2,7,9,0,0,0,6, 0,3,0,0,9,9,0,0,0,6, 0,2,0,3,7,9,0,0,0,6, 0,1,3,0,8,9,0,0,0,6, 0,3,0,0,9,6,0,6,0,3, 0,1,3,0,8,6,0,6,0,3, 0,2,0,3,7,6,0,6,0,3, 0,1,2,2,7,6,0,6,0,3, 0,1,3,0,6,6,3,6,0,2, 0,1,3,0,7,6,0,6,3,1, 0,2,0,3,6,6,0,6,3,1, 0,3,0,0,8,6,0,6,3,1, 0,3,0,0,7,6,3,6,0,2, 0,2,0,3,5,6,3,6,0,2, 0,1,2,2,5,6,3,6,0,2, 0,1,2,2,6,6,0,6,3,1, 0,3,0,0,7,6,2,6,2,1, 0,1,3,0,6,6,2,6,2,1, 0,1,2,2,5,6,2,6,2,1, 0,2,0,3,5,6,2,6,2,1, 0,2,0,3,5,9,0,0,6,2, 0,1,2,2,5,9,0,0,6,2, 0,1,3,0,6,9,0,0,6,2, 0,3,0,0,7,9,0,0,6,2, 0,2,0,3,5,8,0,2,6,1, 0,3,0,0,7,8,0,2,6,1, 0,1,2,2,5,8,0,2,6,1, 0,1,3,0,6,8,0,2,6,1, 0,1,3,0,4,9,6,0,0,4, 0,1,2,2,3,9,6,0,0,4, 0,2,0,3,3,9,6,0,0,4, 0,3,0,0,5,9,6,0,0,4, 0,2,0,3,3,9,4,0,4,2, 0,3,0,0,5,9,4,0,4,2, 0,1,2,2,3,9,4,0,4,2, 0,1,3,0,4,9,4,0,4,2, 0,3,0,0,5,8,4,2,4,1, 0,1,3,0,4,8,4,2,4,1, 0,1,2,2,3,8,4,2,4,1, 0,2,0,3,3,8,4,2,4,1, 0,3,0,0,5,7,6,4,0,2, 0,1,3,0,4,7,6,4,0,2, 0,1,2,2,3,7,6,4,0,2, 0,2,0,3,3,7,6,4,0,2, 0,2,0,3,3,7,5,4,2,1, 0,1,2,2,3,7,5,4,2,1, 0,3,0,0,5,7,5,4,2,1, 0,1,3,0,4,7,5,4,2,1; } if ((polygon=="2x2") and (art=="discriminant")) { intmat VERTICES[108][9]= 8,1,0,1,0,0,1,0,1, 7,1,1,0,0,1,1,0,1, 7,1,0,1,1,0,0,1,1, 7,1,0,1,0,1,1,1,0, 7,0,1,1,1,0,1,0,1, 6,2,0,1,0,0,0,2,1, 6,2,0,0,0,2,1,0,1, 6,1,2,0,0,0,1,0,2, 6,1,1,0,1,1,0,1,1, 6,1,1,0,0,2,1,1,0, 6,1,0,2,0,0,1,2,0, 6,1,0,1,2,0,0,0,2, 6,1,0,1,1,1,0,2,0, 6,1,0,1,0,2,2,0,0, 6,0,2,1,0,0,2,0,1, 6,0,2,0,1,1,1,0,1, 6,0,1,1,2,0,0,1,1, 6,0,1,1,1,1,1,1,0, 6,0,0,2,2,0,1,0,1, 5,2,1,0,0,1,0,2,1, 5,2,0,1,0,1,0,3,0, 5,2,0,0,1,2,0,1,1, 5,2,0,0,0,3,1,1,0, 5,1,2,0,1,0,0,1,2, 5,1,1,0,2,1,0,0,2, 5,1,1,0,1,2,0,2,0, 5,1,1,0,0,3,2,0,0, 5,1,0,2,1,0,0,3,0, 5,0,3,0,1,0,1,0,2, 5,0,3,0,0,1,2,0,1, 5,0,2,1,0,1,2,1,0, 5,0,2,0,2,1,0,1,1, 5,0,2,0,1,2,1,1,0, 5,0,1,2,1,0,1,2,0, 5,0,1,1,3,0,0,0,2, 5,0,1,1,2,1,0,2,0, 5,0,1,1,1,2,2,0,0, 5,0,0,2,3,0,0,1,1, 5,0,0,2,2,1,1,1,0, 4,3,0,0,0,2,0,2,1, 4,2,2,0,0,0,0,2,2, 4,2,1,0,0,2,0,3,0, 4,2,0,2,0,0,0,4,0, 4,2,0,0,2,2,0,0,2, 4,2,0,0,1,3,0,2,0, 4,2,0,0,0,4,2,0,0, 4,1,2,0,2,0,0,0,3, 4,0,4,0,0,0,2,0,2, 4,0,3,0,2,0,0,1,2, 4,0,3,0,0,2,2,1,0, 4,0,2,2,0,0,2,2,0, 4,0,2,1,0,2,3,0,0, 4,0,2,0,3,1,0,0,2, 4,0,2,0,2,2,0,2,0, 4,0,2,0,1,3,2,0,0, 4,0,1,2,2,0,0,3,0, 4,0,0,3,2,0,1,2,0, 4,0,0,2,4,0,0,0,2, 4,0,0,2,3,1,0,2,0, 4,0,0,2,2,2,2,0,0, 3,3,0,0,0,3,0,3,0, 3,0,3,0,3,0,0,0,3, 3,0,3,0,0,3,3,0,0, 3,0,0,3,3,0,0,3,0, 0,5,0,1,0,0,1,0,5, 0,5,0,1,0,0,0,2,4, 0,5,0,0,0,2,1,0,4, 0,5,0,0,0,2,0,2,3, 0,4,2,0,0,0,1,0,5, 0,4,2,0,0,0,0,2,4, 0,4,0,1,2,0,0,0,5, 0,4,0,0,2,2,0,0,4, 0,4,0,0,0,4,0,4,0, 0,3,2,0,2,0,0,0,5, 0,3,0,3,0,0,0,6,0, 0,3,0,0,0,6,3,0,0, 0,2,4,0,0,0,0,4,2, 0,2,3,0,0,2,0,5,0, 0,2,2,2,0,0,0,6,0, 0,2,0,0,4,4,0,0,2, 0,2,0,0,3,5,0,2,0, 0,2,0,0,2,6,2,0,0, 0,1,0,5,0,0,5,0,1, 0,1,0,5,0,0,4,2,0, 0,1,0,4,0,2,5,0,0, 0,0,6,0,0,0,3,0,3, 0,0,6,0,0,0,2,2,2, 0,0,5,0,2,0,0,3,2, 0,0,5,0,0,2,2,3,0, 0,0,4,2,0,0,2,4,0, 0,0,4,0,4,0,0,0,4, 0,0,4,0,2,2,0,4,0, 0,0,4,0,0,4,4,0,0, 0,0,3,2,2,0,0,5,0, 0,0,2,4,0,0,5,0,1, 0,0,2,4,0,0,4,2,0, 0,0,2,3,0,2,5,0,0, 0,0,2,0,5,3,0,0,2, 0,0,2,0,4,4,0,2,0, 0,0,2,0,3,5,2,0,0, 0,0,0,5,2,0,4,0,1, 0,0,0,5,2,0,3,2,0, 0,0,0,4,4,0,0,4,0, 0,0,0,4,2,2,4,0,0, 0,0,0,3,6,0,0,0,3, 0,0,0,2,6,2,0,0,2, 0,0,0,2,5,3,0,2,0, 0,0,0,2,4,4,2,0,0; } if ((polygon=="2x2") and (art=="numerator")) { intmat VERTICES[13][9]= 12,0,0,0,0,0,0,0,0, 3,3,0,0,0,3,0,3,0, 3,0,3,0,3,0,0,0,3, 3,0,3,0,0,3,3,0,0, 3,0,0,3,3,0,0,3,0, 0,6,0,0,0,0,0,0,6, 0,3,0,3,0,0,0,6,0, 0,3,0,0,0,6,3,0,0, 0,0,6,0,0,0,3,0,3, 0,0,6,0,0,0,0,6,0, 0,0,0,6,0,0,6,0,0, 0,0,0,3,6,0,0,0,3, 0,0,0,0,6,6,0,0,0; } if ((polygon=="2x2") and (art=="secondary")) { intmat VERTICES[387][9]= 6,2,2,2,2,4,3,2,1, 6,3,2,2,0,4,4,2,1, 7,2,2,2,2,3,2,3,1, 6,3,0,3,2,4,3,2,1, 5,2,3,1,2,5,3,2,1, 6,2,2,2,2,4,4,0,2, 5,1,3,2,3,4,3,2,1, 6,3,2,2,0,4,5,0,2, 5,2,3,1,2,5,4,0,2, 6,3,0,3,2,4,4,0,2, 5,1,3,2,3,4,4,0,2, 8,2,2,2,2,2,3,0,3, 4,1,4,2,2,4,4,2,1, 4,1,4,1,3,5,3,2,1, 6,1,3,2,3,3,2,3,1, 4,1,2,3,4,4,3,2,1, 5,3,3,1,0,5,4,2,1, 4,3,2,1,2,6,3,2,1, 6,2,3,1,2,4,2,3,1, 8,2,2,2,2,2,2,2,2, 6,2,2,3,2,2,2,4,1, 7,3,2,2,0,3,3,3,1, 7,3,0,3,2,3,2,3,1, 6,2,2,2,3,3,1,4,1, 4,2,4,2,0,4,5,2,1, 6,4,0,3,0,4,4,2,1, 4,4,0,2,2,6,3,2,1, 4,2,0,4,4,4,3,2,1, 0,1,2,5,4,4,5,2,1, 5,1,2,3,4,3,2,3,1, 0,1,2,3,6,6,3,2,1, 4,1,2,3,4,4,4,0,2, 4,1,4,2,2,4,5,0,2, 4,1,4,1,3,5,4,0,2, 7,1,3,2,3,2,3,0,3, 6,4,0,3,0,4,5,0,2, 4,4,0,2,2,6,4,0,2, 4,2,0,4,4,4,4,0,2, 8,3,0,3,2,2,3,0,3, 4,5,0,2,0,6,4,2,1, 0,4,0,6,0,4,7,2,1, 7,4,0,3,0,3,3,3,1, 7,2,3,1,2,3,2,2,2, 5,3,2,1,2,5,2,3,1, 6,3,3,1,0,4,3,3,1, 5,2,3,1,3,4,1,4,1, 5,1,4,1,3,4,2,3,1, 6,3,2,3,0,2,3,4,1, 6,2,2,4,2,0,2,4,2, 5,2,2,3,3,2,1,5,1, 6,3,0,4,2,2,2,4,1, 5,1,3,3,3,2,2,4,1, 5,3,2,2,2,3,1,5,1, 7,2,2,2,3,2,1,3,2, 6,3,0,3,3,3,1,4,1, 5,1,3,2,4,3,1,4,1, 0,1,4,4,2,4,6,2,1, 5,1,4,2,2,3,3,3,1, 3,1,5,1,2,5,4,2,1, 0,2,0,6,4,4,5,2,1, 5,2,0,4,4,3,2,3,1, 0,2,0,4,6,6,3,2,1, 0,2,4,4,0,4,7,2,1, 5,2,4,2,0,3,4,3,1, 3,2,5,1,0,5,5,2,1, 4,2,4,2,0,4,6,0,2, 4,4,2,1,0,6,4,2,1, 0,3,2,1,4,8,3,2,1, 4,3,2,1,2,6,4,0,2, 0,1,4,1,5,7,3,2,1, 6,2,2,2,4,2,2,0,4, 8,2,2,3,2,0,3,0,4, 7,2,3,1,2,3,3,0,3, 8,3,2,2,0,2,4,0,3, 5,4,2,2,0,3,2,5,1, 8,3,2,2,0,2,3,2,2, 5,3,3,1,0,5,5,0,2, 8,2,2,3,2,0,2,2,3, 8,3,0,3,2,2,2,2,2, 7,1,3,2,3,2,2,2,2, 5,4,0,2,2,5,2,3,1, 0,4,0,2,4,8,3,2,1, 6,2,0,4,4,2,2,2,2, 4,2,0,5,4,2,2,4,1, 4,2,0,4,5,3,1,4,1, 4,1,5,1,2,4,3,3,1, 0,1,6,1,2,6,5,2,1, 3,1,5,1,2,5,5,0,2, 0,1,4,1,5,7,4,0,2, 0,1,4,1,6,6,1,4,1, 6,1,4,1,3,3,3,0,3, 0,5,2,1,0,8,5,2,1, 0,3,2,1,5,7,1,4,1, 0,3,2,1,4,8,4,0,2, 6,1,2,3,4,2,2,2,2, 4,1,2,4,4,2,2,4,1, 4,1,2,3,5,3,1,4,1, 5,4,2,1,0,5,3,3,1, 6,3,2,1,2,4,2,2,2, 4,3,2,1,3,5,1,4,1, 6,2,2,3,4,0,2,0,5, 6,2,4,2,2,0,3,0,5, 8,3,2,3,0,0,4,0,4, 8,3,0,4,2,0,3,0,4, 7,1,3,3,3,0,3,0,4, 0,1,4,4,2,4,7,0,2, 0,1,4,5,2,2,5,4,1, 6,3,2,4,0,0,3,4,2, 4,4,2,3,0,2,2,6,1, 4,2,4,3,0,2,4,4,1, 6,4,0,4,0,2,3,4,1, 0,2,0,6,4,4,6,0,2, 0,2,0,7,4,2,4,4,1, 6,2,4,1,2,2,3,0,4, 5,2,3,1,4,3,2,0,4, 6,3,2,1,2,4,3,0,3, 7,3,3,1,0,3,4,0,3, 6,2,4,1,2,2,2,2,3, 7,3,3,1,0,3,3,2,2, 6,2,3,1,3,3,1,3,2, 6,1,4,1,3,3,2,2,2, 6,4,2,2,0,2,2,4,2, 6,2,4,2,0,2,4,2,2, 8,3,2,3,0,0,3,2,3, 8,4,0,3,0,2,3,2,2, 6,4,0,2,2,4,2,2,2, 8,3,0,4,2,0,2,2,3, 7,3,0,3,3,2,1,3,2, 4,4,0,2,3,5,1,4,1, 5,4,0,3,2,3,1,5,1, 5,3,0,4,3,2,1,5,1, 4,5,0,2,0,6,5,0,2, 0,4,0,2,4,8,4,0,2, 6,4,0,2,2,4,3,0,3, 4,4,2,1,0,6,5,0,2, 5,1,3,4,3,0,2,4,2, 4,1,4,3,2,2,3,4,1, 4,1,3,3,4,2,1,5,1, 0,4,0,6,0,4,8,0,2, 8,4,0,3,0,2,4,0,3, 6,1,4,2,2,2,4,0,3, 5,2,2,4,3,0,1,5,2, 6,3,0,5,2,0,2,4,2, 5,5,0,2,0,5,3,3,1, 5,5,0,3,0,3,2,5,1, 6,1,4,2,2,2,3,2,2, 4,4,3,1,0,4,2,5,1, 6,2,0,4,4,2,3,0,3, 6,3,0,3,4,2,2,0,4, 0,2,6,1,0,6,6,2,1, 0,2,4,4,0,4,8,0,2, 0,2,4,5,0,2,6,4,1, 7,1,3,3,3,0,2,2,3, 6,1,3,2,4,2,1,3,2, 6,2,2,2,4,2,1,2,3, 5,1,3,2,5,2,2,0,4, 4,3,2,3,2,2,1,6,1, 6,1,2,3,4,2,3,0,3, 6,3,2,2,2,2,1,4,2, 4,3,3,1,2,4,1,5,1, 3,2,5,1,0,5,6,0,2, 6,2,4,2,0,2,5,0,3, 4,2,5,1,0,4,4,3,1, 0,1,2,5,4,4,6,0,2, 0,1,2,6,4,2,4,4,1, 0,6,0,2,0,8,5,2,1, 0,4,0,7,0,2,6,4,1, 0,1,2,3,7,5,1,4,1, 0,1,2,3,6,6,4,0,2, 4,1,4,1,4,4,1,4,1, 7,2,2,3,3,0,1,3,3, 0,2,0,4,6,6,4,0,2, 0,4,0,2,5,7,1,4,1, 0,2,0,4,7,5,1,4,1, 6,2,4,2,2,0,2,2,4, 0,6,0,2,0,8,6,0,2, 0,4,0,2,6,6,2,0,4, 0,1,2,7,4,0,6,0,4, 6,5,0,2,0,4,4,0,3, 4,4,0,2,4,4,2,0,4, 4,1,4,4,2,0,3,4,2, 0,1,6,3,2,2,3,6,1, 0,5,2,1,0,8,6,0,2, 0,6,2,1,0,6,2,6,1, 0,1,4,6,2,0,7,0,4, 0,1,6,1,2,6,6,0,2, 0,5,2,1,2,6,1,6,1, 0,3,2,1,6,6,1,2,3, 5,3,0,5,3,0,1,5,2, 4,4,0,4,2,2,1,6,1, 3,2,0,5,5,2,1,5,1, 6,4,0,5,0,0,3,4,2, 4,2,0,6,4,0,2,4,2, 0,2,6,3,0,2,4,6,1, 0,2,4,6,0,0,6,4,2, 5,4,0,2,3,4,1,3,2, 3,5,0,2,2,5,1,5,1, 6,2,0,5,4,0,2,2,3, 8,4,0,4,0,0,3,2,3, 7,3,0,4,3,0,1,3,3, 0,1,2,5,6,2,1,6,1, 0,1,2,3,8,4,1,2,3, 6,1,4,3,2,0,4,0,4, 5,1,5,1,2,3,4,0,3, 6,2,2,3,4,0,1,2,4, 5,2,3,1,4,3,1,2,3, 6,3,0,3,4,2,1,2,3, 5,1,3,2,5,2,1,2,3, 0,2,6,1,0,6,7,0,2, 5,2,5,1,0,3,5,0,3, 0,1,2,3,8,4,2,0,4, 0,1,4,1,7,5,2,0,4, 4,1,3,4,4,0,1,5,2, 0,1,5,3,4,2,1,7,1, 3,1,2,4,5,2,1,5,1, 6,5,0,2,0,4,3,2,2, 0,3,2,1,6,6,2,0,4, 5,1,3,3,5,0,2,0,5, 4,1,4,1,5,3,2,0,4, 4,1,2,3,6,2,2,0,4, 6,1,2,4,4,0,3,0,4, 8,4,0,4,0,0,4,0,4, 6,4,2,1,0,4,4,0,3, 4,3,2,1,4,4,2,0,4, 4,2,4,1,4,2,2,0,5, 0,2,4,6,0,0,8,0,4, 6,2,4,3,0,0,5,0,4, 6,3,4,2,0,0,4,0,5, 6,5,0,3,0,2,2,4,2, 0,2,0,8,4,0,6,0,4, 6,4,2,3,0,0,2,4,3, 6,2,4,3,0,0,4,2,3, 6,3,4,2,0,0,3,2,4, 0,6,0,2,2,6,1,6,1, 0,4,0,2,6,6,1,2,3, 4,1,2,5,4,0,2,4,2, 0,4,0,8,0,0,6,4,2, 0,6,0,5,0,2,2,8,1, 5,2,5,1,0,3,4,2,2, 0,2,7,1,0,4,4,5,1, 5,2,0,4,5,2,1,3,2, 6,4,0,3,2,2,1,4,2, 4,5,0,4,0,2,2,6,1, 5,1,2,3,5,2,1,3,2, 0,4,0,8,0,0,8,0,4, 5,3,2,1,3,4,1,3,2, 3,4,2,1,2,5,1,5,1, 6,3,2,3,2,0,1,4,3, 5,2,4,2,3,0,1,3,4, 6,1,3,3,4,0,1,3,3, 5,1,5,1,3,2,3,0,4, 4,2,4,4,0,0,4,4,2, 0,1,4,6,2,0,5,4,2, 6,3,0,4,4,0,2,0,5, 4,2,0,4,6,2,2,0,4, 4,2,4,2,4,0,2,0,6, 5,1,5,2,3,0,3,0,5, 5,1,5,1,3,2,2,2,3, 5,1,5,1,2,3,3,2,2, 5,1,4,1,4,3,1,3,2, 5,1,5,2,3,0,2,2,4, 0,1,2,7,4,0,4,4,2, 6,4,2,1,0,4,3,2,2, 3,5,2,1,0,5,2,5,1, 6,1,2,4,4,0,2,2,3, 6,1,4,3,2,0,3,2,3, 0,2,0,8,4,0,4,4,2, 0,2,0,6,6,2,1,6,1, 5,2,4,1,3,2,1,3,3, 5,3,3,1,2,3,1,4,2, 6,3,4,1,0,2,3,2,3, 5,4,3,1,0,3,2,4,2, 0,1,6,1,4,4,1,6,1, 0,1,4,1,7,5,1,2,3, 6,2,0,5,4,0,3,0,4, 0,3,5,1,2,4,1,7,1, 0,4,5,1,0,4,2,7,1, 0,1,7,1,2,4,3,5,1, 0,7,0,2,0,6,2,6,1, 3,6,0,2,0,5,2,5,1, 4,4,2,4,0,0,2,6,2, 6,3,4,1,0,2,4,0,4, 0,2,0,4,8,4,1,2,3, 4,3,2,4,2,0,1,6,2, 0,3,4,3,2,2,1,8,1, 0,2,0,4,8,4,2,0,4, 0,4,4,3,0,2,2,8,1, 0,5,0,5,2,2,1,8,1, 0,7,0,2,2,4,1,4,4, 0,8,0,2,0,4,4,0,6, 4,5,0,5,0,0,2,6,2, 0,4,4,4,0,0,2,8,2, 0,5,2,1,4,4,1,2,5, 4,3,2,1,4,4,1,2,3, 0,1,2,6,6,0,1,6,2, 5,1,2,4,5,0,1,3,3, 4,1,2,3,6,2,1,2,3, 5,2,0,5,5,0,1,3,3, 4,1,6,1,2,2,4,0,4, 6,4,0,4,2,0,1,4,3, 4,3,4,2,2,0,1,4,4, 4,1,4,1,5,3,1,2,3, 3,1,5,1,5,2,2,0,5, 0,7,2,1,0,4,4,0,6, 4,4,0,2,4,4,1,2,3, 6,3,0,4,4,0,1,2,4, 4,2,0,4,6,2,1,2,3, 5,1,3,3,5,0,1,2,4, 0,1,8,1,2,2,3,4,3, 4,1,6,2,2,0,3,2,4, 4,1,5,2,4,0,1,3,4, 4,2,6,1,0,2,4,2,3, 4,2,0,5,6,0,2,0,5, 3,2,0,6,5,0,1,5,2, 4,4,0,5,2,0,1,6,2, 0,1,6,4,2,0,3,6,2, 0,1,5,4,4,0,1,7,2, 3,1,2,5,5,0,1,5,2, 0,1,2,5,8,0,2,0,6, 4,2,4,1,4,2,1,2,4, 0,6,0,2,4,4,2,0,6, 0,8,0,4,0,0,4,0,8, 0,3,4,4,2,0,1,8,2, 0,7,2,1,0,4,2,4,4, 0,6,0,6,0,0,2,8,2, 0,5,2,1,4,4,2,0,6, 0,1,7,1,4,2,1,5,3, 0,6,0,4,4,0,2,0,8, 4,4,4,1,0,2,2,4,3, 0,2,0,6,8,0,2,0,6, 6,5,0,4,0,0,2,4,3, 4,4,4,2,0,0,2,4,4, 4,5,2,1,0,4,2,4,2, 4,1,2,4,6,0,2,0,5, 4,4,2,1,2,4,1,4,2, 4,3,4,1,2,2,1,4,3, 4,1,6,1,2,2,3,2,3, 0,2,0,7,6,0,1,6,2, 4,2,6,1,0,2,5,0,4, 0,6,4,1,0,2,4,0,7, 4,1,5,1,4,2,1,3,3, 4,6,0,2,0,4,2,4,2, 4,2,4,2,4,0,1,2,5, 0,2,8,1,0,2,4,4,3, 4,2,6,2,0,0,4,2,4, 4,5,0,2,2,4,1,4,2, 0,4,6,1,0,2,2,6,3, 0,1,8,1,2,2,5,0,5, 0,2,6,4,0,0,4,6,2, 4,1,6,2,2,0,4,0,5, 3,1,5,2,5,0,2,0,6, 0,6,2,1,2,4,1,4,4, 0,3,6,1,2,2,1,6,3, 0,2,0,6,8,0,1,2,5, 0,2,8,1,0,2,6,0,5, 0,1,6,1,6,2,1,2,5, 0,4,4,2,4,0,2,0,8, 4,2,6,2,0,0,5,0,5, 0,6,4,2,0,0,4,0,8, 0,1,2,5,8,0,1,2,5, 0,8,0,2,0,4,2,4,4, 0,6,0,2,4,4,1,2,5, 0,1,6,1,6,2,2,0,6, 0,4,4,1,4,2,2,0,7, 0,2,8,2,0,0,6,0,6, 0,1,8,2,2,0,5,0,6, 0,4,6,2,0,0,2,6,4, 0,6,4,2,0,0,2,4,6, 0,6,4,1,0,2,2,4,5, 4,1,2,4,6,0,1,2,4, 0,6,0,4,4,0,1,2,7, 0,5,4,1,2,2,1,4,5, 3,1,5,1,5,2,1,2,4, 0,5,0,6,2,0,1,8,2, 0,4,4,1,4,2,1,2,6, 4,2,0,5,6,0,1,2,4, 0,1,6,2,6,0,2,0,7, 0,1,8,2,2,0,3,4,4, 0,2,8,2,0,0,4,4,4, 0,4,4,2,4,0,1,2,7, 3,1,5,2,5,0,1,2,5, 0,8,0,4,0,0,2,4,6, 0,1,6,2,6,0,1,2,6, 0,3,6,2,2,0,1,6,4, 0,1,7,2,4,0,1,5,4, 0,5,4,2,2,0,1,4,6, 0,7,0,4,2,0,1,4,6; } if ((polygon=="4x2") and (art=="discriminant")) { intmat VERTICES[46][9]= 8,1,0,0,0,1,0,0,2, 7,1,0,0,1,0,0,1,2, 7,0,1,0,0,1,1,0,2, 6,1,0,1,0,0,0,2,2, 6,1,0,0,2,0,0,0,3, 6,0,2,0,0,1,0,0,3, 6,0,1,0,1,0,1,1,2, 6,0,0,1,0,1,2,0,2, 5,1,1,0,0,0,0,3,2, 5,0,2,0,1,0,0,1,3, 5,0,1,1,0,0,1,2,2, 5,0,1,0,2,0,1,0,3, 5,0,0,1,1,0,2,1,2, 5,0,0,0,1,1,3,0,2, 4,2,0,0,0,0,0,4,2, 4,0,2,1,0,0,0,2,3, 4,0,2,0,2,0,0,0,4, 4,0,2,0,0,0,1,3,2, 4,0,0,2,0,0,2,2,2, 4,0,0,1,2,0,2,0,3, 4,0,0,0,2,0,3,1,2, 4,0,0,0,0,2,4,0,2, 3,0,3,0,0,0,0,3,3, 3,0,0,0,3,0,3,0,3, 0,3,0,0,0,3,0,0,6, 0,3,0,0,0,0,0,6,3, 0,2,0,0,4,0,0,0,6, 0,2,0,0,0,0,2,6,2, 0,1,0,4,0,1,0,0,6, 0,1,0,4,0,0,0,2,5, 0,1,0,3,2,0,0,0,6, 0,0,4,0,0,2,0,0,6, 0,0,4,0,0,0,0,4,4, 0,0,3,0,3,0,0,0,6, 0,0,2,3,0,1,0,0,6, 0,0,2,3,0,0,0,2,5, 0,0,2,2,2,0,0,0,6, 0,0,2,0,0,0,3,5,2, 0,0,0,4,0,1,2,0,5, 0,0,0,4,0,0,2,2,4, 0,0,0,3,2,0,2,0,5, 0,0,0,2,0,0,4,4,2, 0,0,0,0,4,0,4,0,4, 0,0,0,0,2,0,5,3,2, 0,0,0,0,0,3,6,0,3, 0,0,0,0,0,2,6,2,2; } if ((polygon=="4x2") and (art=="numerator")) { intmat VERTICES[9][9]= 12,0,0,0,0,0,0,0,0, 3,0,3,0,0,0,0,3,3, 3,0,0,0,3,0,3,0,3, 0,3,0,0,0,3,0,0,6, 0,3,0,0,0,0,0,6,3, 0,0,3,0,3,0,0,0,6, 0,0,0,6,0,0,0,0,6, 0,0,0,0,0,3,6,0,3, 0,0,0,0,0,0,6,6,0; } if ((polygon=="4x2") and (art=="secondary")) { intmat VERTICES[296][9]= 8,2,2,2,2,2,2,2,2, 8,3,2,2,2,2,0,2,3, 7,1,3,2,2,2,3,2,2, 8,2,2,2,2,3,2,0,3, 7,2,2,2,3,1,2,3,2, 8,2,2,3,0,3,2,2,2, 8,3,0,3,2,2,2,2,2, 8,2,3,0,3,2,2,2,2, 8,3,2,2,2,3,0,0,4, 7,3,2,2,3,1,0,3,3, 8,3,2,3,0,3,0,2,3, 6,2,4,2,2,2,0,2,4, 8,4,0,3,2,2,0,2,3, 8,3,3,0,3,2,0,2,3, 8,3,0,3,2,3,2,0,3, 7,3,0,3,3,1,2,3,2, 6,2,0,4,2,2,4,2,2, 8,3,0,4,0,3,2,2,2, 8,4,0,0,4,2,2,2,2, 7,1,3,3,0,3,3,2,2, 8,2,4,0,0,4,2,2,2, 8,2,2,3,0,4,2,0,3, 6,2,2,4,0,2,2,4,2, 7,1,3,2,2,3,3,0,3, 6,2,2,2,4,2,2,0,4, 8,2,3,0,3,3,2,0,3, 7,1,4,0,3,2,3,2,2, 7,2,3,0,4,1,2,3,2, 6,2,2,3,2,1,2,4,2, 6,1,3,2,3,1,3,3,2, 6,2,2,2,4,1,2,2,3, 6,1,4,2,2,2,2,2,3, 6,1,2,3,2,2,4,2,2, 5,1,4,2,3,1,2,3,3, 6,1,5,0,3,2,2,2,3, 6,1,4,2,2,3,2,0,4, 6,1,4,3,0,3,2,2,3, 6,2,3,0,5,1,2,2,3, 6,3,0,3,4,1,2,2,3, 5,1,3,2,4,1,3,2,3, 6,3,2,2,4,1,0,2,4, 8,3,4,0,0,4,0,2,3, 8,3,2,3,0,4,0,0,4, 6,3,2,4,0,2,0,4,3, 6,2,4,3,0,3,0,2,4, 8,4,0,4,0,3,0,2,3, 6,3,2,2,4,2,0,0,5, 6,2,4,2,2,3,0,0,5, 8,4,0,3,2,3,0,0,4, 8,3,3,0,3,3,0,0,4, 5,1,3,3,2,1,3,4,2, 5,1,2,3,3,1,4,3,2, 6,1,4,0,4,1,3,3,2, 6,2,3,0,5,2,2,0,4, 6,3,0,3,4,2,2,0,4, 5,1,3,2,4,2,3,0,4, 8,5,0,0,0,5,2,2,2, 8,3,0,4,0,4,2,0,3, 6,2,0,5,0,3,4,2,2, 6,3,0,5,0,2,2,4,2, 6,1,2,3,2,3,4,0,3, 7,1,3,3,0,4,3,0,3, 7,1,4,0,3,3,3,0,3, 8,5,0,0,4,2,0,2,3, 5,3,0,0,5,2,5,2,2, 8,4,0,0,4,3,2,0,3, 7,4,0,0,5,1,2,3,2, 7,4,0,3,3,1,0,3,3, 6,3,0,4,2,1,2,4,2, 5,2,0,4,3,1,4,3,2, 7,3,3,0,4,1,0,3,3, 5,2,4,0,3,1,2,5,2, 6,2,0,4,2,3,4,0,3, 5,2,4,2,3,1,0,3,4, 6,2,5,0,3,2,0,2,4, 5,2,5,0,0,3,2,5,2, 7,1,5,0,0,4,3,2,2, 8,2,4,0,0,5,2,0,3, 5,1,3,0,4,2,5,2,2, 5,2,0,3,3,2,5,2,2, 5,2,3,2,2,1,2,5,2, 6,3,2,3,2,1,0,4,3, 5,1,2,2,3,2,5,2,2, 6,1,2,4,0,3,4,2,2, 5,1,3,4,0,2,3,4,2, 5,2,3,3,0,2,2,5,2, 4,3,0,0,6,1,5,3,2, 5,3,0,0,5,3,5,0,3, 4,3,0,0,4,3,6,2,2, 4,1,4,4,0,2,2,4,3, 6,1,4,3,0,4,2,0,4, 6,1,6,0,0,4,2,2,3, 8,5,0,0,4,3,0,0,4, 6,4,0,0,6,2,2,0,4, 8,5,0,0,0,6,2,0,3, 4,1,2,2,4,1,5,3,2, 4,1,2,3,4,1,4,2,3, 4,1,2,4,2,1,4,4,2, 6,3,3,0,5,2,0,0,5, 6,4,0,3,4,2,0,0,5, 4,2,4,2,4,2,0,0,6, 6,4,0,4,2,1,0,4,3, 5,3,3,2,2,1,0,5,3, 4,2,4,3,2,1,0,4,4, 5,3,5,0,0,3,0,5,3, 8,3,4,0,0,5,0,0,4, 8,6,0,0,0,5,0,2,3, 6,2,6,0,0,4,0,2,4, 4,3,4,0,0,3,2,6,2, 4,1,6,0,0,3,3,5,2, 6,3,3,0,5,1,0,2,4, 6,4,0,3,4,1,0,2,4, 4,2,4,2,4,1,0,2,5, 8,4,0,4,0,4,0,0,4, 6,2,4,3,0,4,0,0,5, 5,1,5,0,4,1,2,3,3, 4,1,3,0,5,1,5,3,2, 4,1,5,0,3,1,3,5,2, 5,1,4,0,5,1,3,2,3, 4,2,0,3,4,1,5,3,2, 5,2,0,3,3,3,5,0,3, 4,2,0,3,2,3,6,2,2, 7,5,0,0,5,1,0,3,3, 4,1,2,3,4,2,4,0,4, 5,1,4,0,5,2,3,0,4, 4,1,4,2,4,2,2,0,5, 4,1,4,0,0,5,6,2,2, 7,1,5,0,0,5,3,0,3, 4,6,0,0,0,4,2,6,2, 4,4,0,0,0,6,6,2,2, 6,1,5,0,3,3,2,0,4, 5,1,3,0,4,3,5,0,3, 6,4,0,5,0,2,0,4,3, 5,1,2,2,3,3,5,0,3, 6,1,2,4,0,4,4,0,3, 6,2,5,0,3,3,0,0,5, 4,2,0,4,4,2,4,0,4, 6,2,0,5,0,4,4,0,3, 6,4,0,0,6,1,2,2,3, 5,2,5,0,4,1,0,3,4, 4,2,0,4,4,1,4,2,3, 4,2,0,5,2,1,4,4,2, 4,1,4,2,4,1,2,2,4, 4,1,4,3,2,1,2,4,3, 4,1,4,2,2,1,3,5,2, 4,5,0,0,4,1,2,6,2, 4,2,0,6,0,2,4,4,2, 4,2,0,4,0,4,6,2,2, 4,2,4,4,0,2,0,4,4, 4,4,0,4,0,2,2,6,2, 4,3,2,2,2,1,2,6,2, 4,1,2,5,0,2,4,4,2, 4,1,2,3,0,4,6,2,2, 4,1,2,2,2,3,6,2,2, 4,1,4,3,0,2,3,5,2, 4,3,2,3,0,2,2,6,2, 5,3,3,3,0,2,0,5,3, 4,1,3,0,3,3,6,2,2, 4,3,3,0,3,1,2,6,2, 5,3,4,0,3,1,0,5,3, 4,4,0,3,2,1,2,6,2, 0,1,2,7,0,2,4,4,4, 0,1,2,5,0,2,6,6,2, 4,2,5,0,5,2,0,0,6, 6,2,6,0,0,5,0,0,5, 6,5,0,0,6,1,0,2,4, 4,2,5,0,5,1,0,2,5, 0,2,0,8,0,2,4,4,4, 0,2,0,6,0,2,6,6,2, 4,2,0,4,0,5,6,0,3, 0,2,0,4,0,4,8,4,2, 3,1,2,2,5,2,5,0,4, 4,1,2,2,2,4,6,0,3, 3,3,0,0,7,1,5,2,3, 0,3,0,0,6,1,7,5,2, 3,1,6,0,3,1,2,5,3, 4,1,5,0,5,1,2,2,4, 4,6,0,0,4,1,0,6,3, 4,4,2,3,0,2,0,6,3, 0,3,2,3,0,2,4,8,2, 8,6,0,0,0,6,0,0,4, 4,7,0,0,0,4,0,6,3, 6,1,6,0,0,5,2,0,4, 0,1,4,6,0,4,2,0,7, 3,2,6,0,3,1,0,5,4, 0,2,4,6,0,4,0,0,8, 4,1,5,0,5,2,2,0,5, 0,1,4,4,4,2,2,0,7, 3,1,5,2,2,1,2,5,3, 0,1,4,2,2,1,5,7,2, 4,5,0,3,2,1,0,6,3, 0,4,0,7,2,1,0,4,6, 0,2,4,4,4,2,0,0,8, 6,5,0,0,6,2,0,0,5, 0,4,0,6,4,2,0,0,8, 0,4,0,3,2,1,4,8,2, 3,1,3,0,6,2,5,0,4, 3,1,7,0,0,3,2,5,3, 3,2,5,3,0,2,0,5,4, 0,1,2,2,2,3,8,4,2, 3,2,7,0,0,3,0,5,4, 4,2,0,3,2,4,6,0,3, 0,2,0,3,2,3,8,4,2, 3,2,0,3,5,2,5,0,4, 0,1,4,5,2,1,2,4,5, 4,1,2,3,0,5,6,0,3, 0,1,2,7,0,4,4,0,6, 4,1,3,0,3,4,6,0,3, 4,4,4,0,0,3,0,6,3, 0,2,0,8,0,4,4,0,6, 0,3,4,0,0,3,4,8,2, 3,1,2,2,5,1,5,2,3, 0,1,2,2,4,1,7,5,2, 0,1,2,6,2,1,4,4,4, 0,1,2,4,2,1,6,6,2, 3,3,0,0,7,2,5,0,4, 4,3,0,0,4,4,6,0,3, 3,1,5,3,0,2,2,5,3, 0,1,4,3,0,2,5,7,2, 0,6,0,0,0,4,4,8,2, 0,2,0,6,4,2,4,0,6, 4,4,2,2,2,1,0,6,3, 0,3,2,2,2,1,4,8,2, 0,4,0,8,0,4,0,0,8, 0,4,0,6,4,1,0,2,7, 4,4,3,0,3,1,0,6,3, 3,1,3,0,6,1,5,2,3, 0,1,2,3,0,4,8,4,2, 4,5,0,4,0,2,0,6,3, 0,4,0,8,0,2,0,4,6, 3,2,0,3,5,1,5,2,3, 0,2,0,6,4,1,4,2,5, 0,3,0,0,4,3,8,4,2, 0,2,0,7,2,1,4,4,4, 0,2,0,5,2,1,6,6,2, 0,2,4,4,4,1,0,2,7, 0,4,0,4,0,2,4,8,2, 0,1,4,6,0,2,2,4,5, 0,1,2,5,4,1,4,2,5, 0,2,4,6,0,2,0,4,6, 0,1,3,0,5,1,7,5,2, 4,4,0,0,0,7,6,0,3, 0,5,0,0,4,1,4,8,2, 0,3,3,0,3,1,4,8,2, 0,1,5,0,3,1,5,7,2, 3,2,5,2,2,1,0,5,4, 0,2,4,5,2,1,0,4,6, 0,1,4,4,4,1,2,2,6, 4,1,4,0,0,6,6,0,3, 0,1,4,0,0,5,8,4,2, 0,1,2,5,4,2,4,0,6, 0,4,0,0,0,6,8,4,2, 0,1,3,0,3,3,8,4,2, 0,1,6,0,0,3,5,7,2, 0,2,0,3,4,1,7,5,2, 0,7,0,0,4,1,0,8,4, 0,1,3,0,3,5,8,0,4, 0,1,2,2,6,2,6,0,5, 0,1,2,3,0,6,8,0,4, 0,6,0,3,2,1,0,8,4, 0,1,6,0,6,2,2,0,7, 0,1,8,0,0,3,2,6,4, 0,2,6,2,2,1,0,6,5, 0,2,6,0,6,1,0,2,7, 0,2,0,3,6,1,6,2,4, 0,3,0,0,8,1,6,2,4, 0,2,6,3,0,2,0,6,5, 0,1,2,2,2,5,8,0,4, 0,8,0,0,0,8,0,0,8, 0,1,3,0,7,1,6,2,4, 0,2,0,3,2,5,8,0,4, 0,1,4,0,0,7,8,0,4, 0,2,8,0,0,3,0,6,5, 0,2,6,0,6,2,0,0,8, 0,6,0,0,8,1,0,2,7, 0,2,8,0,0,6,0,0,8, 0,5,2,3,0,2,0,8,4, 0,4,0,0,0,8,8,0,4, 0,1,7,0,3,1,2,6,4, 0,5,2,2,2,1,0,8,4, 0,2,7,0,3,1,0,6,5, 0,1,6,2,2,1,2,6,4, 0,8,0,0,0,4,0,8,4, 0,1,6,0,6,1,2,2,6, 0,6,0,0,8,2,0,0,8, 0,1,6,3,0,2,2,6,4, 0,3,0,0,4,5,8,0,4, 0,1,8,0,0,6,2,0,7, 0,5,4,0,0,3,0,8,4, 0,1,3,0,7,2,6,0,5, 0,1,2,2,6,1,6,2,4, 0,2,0,3,6,2,6,0,5, 0,5,3,0,3,1,0,8,4, 0,6,0,4,0,2,0,8,4, 0,2,0,4,0,6,8,0,4, 0,3,0,0,8,2,6,0,5; } return(VERTICES); } static proc vertexEdgeGraphDatabase (string polygon,string art) "USAGE: vertexEdgeGraphDatabase(polygon,art); polygon,art string ASSUME: polygon is one of the following strings discribing the type of curve to be considered: - 'cubic' : describing a cubic - '2x2' : describing a curve of type (2,2) - '4x2' : describing a curve of type (4,2) art is one of the following strings: - 'discriminant' : refering to the discriminant of the curve - 'numerator' : refering to the numerator of the j-invariant of the curve - 'secondary' : refering to the secondary polytope of the curve RETURN: list, vertex edge graph of the polytope; NOTE: the ith integer vector in the list explains with which vertices the ith vertex in the polytope is connected; this information was computed with the help of polymake via vertex-edge-graph" { if ((polygon=="cubic") and (art=="discriminant")) { list GRAPH=intvec(2,3,4,5,6,8,9,10,13,14,15,17,21,22,32,80), intvec(1,5,6,7,11,15,17,19,20,23,30,33,38), intvec(1,7,8,9,12,14,16,18,21,24,31,34,53), intvec(1,10,11,12,13,22,25,26,28,29,32,44,48), intvec(1,2,15,16,25,35,36,39,54,58), intvec(1,2,17,18,26,37,40,49,55,59), intvec(2,3,16,18,19,20,27,33,34,41,50), intvec(1,3,14,19,28,35,37,51,56,73), intvec(1,3,20,21,29,36,42,52,57,74), intvec(1,4,22,23,24,39,40,42,61,64), intvec(2,4,23,25,26,27,30,38,44,46,47), intvec(3,4,24,27,28,29,31,43,45,48,53), intvec(1,4,30,31,32,49,51,52,68,72), intvec(1,3,8,33,54,55,75,81,86), intvec(1,2,5,34,56,57,75,82,91), intvec(3,5,7,34,35,36,43,54,60), intvec(1,2,6,44,61,68,76,89,94), intvec(3,6,7,37,45,55,62,69,95), intvec(2,7,8,33,35,37,46,56,70), intvec(2,7,9,36,47,57,63,71,96), intvec(1,3,9,48,64,72,79,90,97), intvec(1,4,10,38,58,59,76,98,99), intvec(2,10,11,38,39,40,41,61,63), intvec(3,10,12,41,42,60,62,64,103), intvec(4,5,11,39,43,58,65,66,116), intvec(4,6,11,40,44,45,49,59,67), intvec(7,11,12,41,43,45,46,47,50), intvec(4,8,12,46,51,65,67,73,107), intvec(4,9,12,42,47,48,52,66,74), intvec(2,11,13,49,50,68,70,71,125), intvec(3,12,13,50,51,52,53,69,72), intvec(1,4,13,53,73,74,79,128,131), intvec(2,7,14,19,54,55,75), intvec(3,7,15,16,56,57,75), intvec(5,8,16,19,54,56,65), intvec(5,9,16,20,57,66,77), intvec(6,8,18,19,55,67,78), intvec(2,11,22,23,58,59,76), intvec(5,10,23,25,58,60,77), intvec(6,10,23,26,59,61,62), intvec(7,23,24,27,60,62,63), intvec(9,10,24,29,63,64,77), intvec(12,16,25,27,60,65,66), intvec(4,11,17,26,61,68,76), intvec(12,18,26,27,62,67,69), intvec(11,19,27,28,65,67,70), intvec(11,20,27,29,63,66,71), intvec(4,12,21,29,64,72,79), intvec(6,13,26,30,68,69,78), intvec(7,27,30,31,69,70,71), intvec(8,13,28,31,70,73,78), intvec(9,13,29,31,71,72,74), intvec(3,12,31,32,73,74,79), intvec(5,14,16,33,35,75,87), intvec(6,14,18,33,37,84,88), intvec(8,15,19,34,35,75,92), intvec(9,15,20,34,36,85,93), intvec(5,22,25,38,39,100,101), intvec(6,22,26,38,40,76,102), intvec(16,24,39,41,43,77,104), intvec(10,17,23,40,44,76,112), intvec(18,24,40,41,45,106,113), intvec(20,23,41,42,47,77,114), intvec(10,21,24,42,48,111,115), intvec(25,28,35,43,46,108,117), intvec(25,29,36,43,47,77,118), intvec(26,28,37,45,46,78,110), intvec(13,17,30,44,49,119,120), intvec(18,31,45,49,50,78,121), intvec(19,30,46,50,51,78,126), intvec(20,30,47,50,52,123,127), intvec(13,21,31,48,52,79,124), intvec(8,28,32,51,53,130,132), intvec(9,29,32,52,53,79,133), intvec(14,15,33,34,54,56,83), intvec(17,22,38,44,59,61,105), intvec(36,39,42,60,63,66,109), intvec(37,49,51,67,69,70,122), intvec(21,32,48,53,72,74,129), intvec(1,81,82,89,90,98,128), intvec(14,80,83,84,86,90,130), intvec(15,80,83,85,89,91,100), intvec(75,81,82,84,85,87,92), intvec(55,81,83,88,89,95,122), intvec(57,82,83,90,93,96,109), intvec(14,81,87,88,99,103,107), intvec(54,83,86,88,101,104,108), intvec(55,84,86,87,102,106,110), intvec(17,80,82,84,94,105,119), intvec(21,80,81,85,97,111,129), intvec(15,82,92,93,116,125,131), intvec(56,83,91,93,117,126,132), intvec(57,85,91,92,118,127,133), intvec(17,89,95,96,97,112,120), intvec(18,84,94,96,97,113,121), intvec(20,85,94,95,97,114,123), intvec(21,90,94,95,96,115,124), intvec(22,80,99,100,105,111,128), intvec(22,86,98,101,102,103,107), intvec(58,82,98,101,105,109,116), intvec(58,87,99,100,102,104,108), intvec(59,88,99,101,105,106,110), intvec(24,86,99,104,106,107,111), intvec(60,87,101,103,106,108,109), intvec(76,89,98,100,102,112,119), intvec(62,88,102,103,104,110,113), intvec(28,86,99,103,108,110,130), intvec(65,87,101,104,107,110,117), intvec(77,85,100,104,111,114,118), intvec(67,88,102,106,107,108,122), intvec(64,90,98,103,109,115,129), intvec(61,94,105,113,114,115,120), intvec(62,95,106,112,114,115,121), intvec(63,96,109,112,113,115,123), intvec(64,97,111,112,113,114,124), intvec(25,91,100,117,118,125,131), intvec(65,92,108,116,118,126,132), intvec(66,93,109,116,117,127,133), intvec(68,89,105,120,122,125,128), intvec(68,94,112,119,121,123,124), intvec(69,95,113,120,122,123,124), intvec(78,84,110,119,121,126,130), intvec(71,96,114,120,121,124,127), intvec(72,97,115,120,121,123,129), intvec(30,91,116,119,126,127,131), intvec(70,92,117,122,125,127,132), intvec(71,93,118,123,125,126,133), intvec(32,80,98,119,129,130,131), intvec(79,90,111,124,128,130,133), intvec(73,81,107,122,128,129,132), intvec(32,91,116,125,128,132,133), intvec(73,92,117,126,130,131,133), intvec(74,93,118,127,129,131,132); } if ((polygon=="cubic") and (art=="numerator")) { list GRAPH= intvec(2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19), intvec(1,3,4,7,8,9,10,11,12,13,14,15,16,17,18,19), intvec(1,2,8,9,10,11,12,13,18,19), intvec(1,2,8,9,12,13,14,15,16,17), intvec(1,11,12,13,15,17,19), intvec(1,9,13,16,17,18,19), intvec(1,2,10,11,14,15,16,17,18,19), intvec(1,2,3,4,9,10,11,12,14,15,16,17,18,19), intvec(1,2,3,4,6,8,10,11,13,14,16,17,18,19), intvec(1,2,3,7,8,9,11,12,13,14,15,16,17,18), intvec(1,2,3,5,7,8,9,10,12,13,14,15,17,19), intvec(1,2,3,4,5,8,10,11,13,14,15,16,17,19), intvec(1,2,3,4,5,6,9,10,11,12,14,15,16,17,18,19), intvec(1,2,4,7,8,9,10,11,12,13,15,16,18,19), intvec(1,2,4,5,7,8,10,11,12,13,14,17,18,19), intvec(1,2,4,6,7,8,9,10,12,13,14,17,18,19), intvec(1,2,4,5,6,7,8,9,10,11,12,13,15,16,18,19), intvec(1,2,3,6,7,8,9,10,13,14,15,16,17,19), intvec(1,2,3,5,6,7,8,9,11,12,13,14,15,16,17,18); } if ((polygon=="cubic") and (art=="secondary")) { list GRAPH=intvec(2,4,5,7,9,10,850), intvec(1,3,6,8,11,12,221), intvec(2,7,22,23,30,31,81), intvec(1,8,14,15,19,20,454), intvec(1,11,18,20,27,28,379), intvec(2,9,16,22,24,25,229,254), intvec(1,3,13,18,19,21,341), intvec(2,4,25,26,30,32,149,459), intvec(1,6,15,21,27,29,255), intvec(1,12,13,14,28,29,297), intvec(2,5,17,23,24,26,228,375), intvec(2,10,16,17,31,32,130,227), intvec(7,10,31,40,43,44,304,342), intvec(4,10,32,35,44,45,205,302), intvec(4,9,25,33,34,35,270,470), intvec(6,12,29,37,50,51,65,241), intvec(11,12,28,46,51,52,136,242,396), intvec(5,7,23,41,42,43,182,345), intvec(4,7,30,33,42,44,346,469), intvec(4,5,26,34,42,45,98), intvec(7,9,22,33,40,41,165,269), intvec(3,6,21,37,38,39,82,264), intvec(3,11,18,38,46,48,84,181), intvec(6,11,27,38,49,51,113,240,387), intvec(6,8,15,39,49,50,152,261,477), intvec(8,11,20,48,49,52,97,153), intvec(5,9,24,34,36,41,115,381), intvec(5,10,17,36,43,45,303,382), intvec(9,10,16,35,36,40,66), intvec(3,8,19,39,47,48,85,476), intvec(3,12,13,37,46,47,83,131), intvec(8,12,14,47,50,52,135,151,208), intvec(15,19,21,39,58,61,167,278,485), intvec(15,20,27,49,58,62,100,119), intvec(14,15,29,50,61,62,67,214), intvec(27,28,29,51,60,62,72,404), intvec(16,22,31,40,53,54,71,86), intvec(22,23,24,41,53,56,88,120,192), intvec(22,25,30,33,54,56,87,283,481), intvec(13,21,29,37,60,61,68,166), intvec(18,21,27,38,58,60,124,168,188), intvec(18,19,20,48,58,59,101,350), intvec(13,18,28,46,59,60,187,311,351), intvec(13,14,19,47,59,61,213,312,352), intvec(14,20,28,52,59,62,99,313), intvec(17,23,31,43,53,57,90,139,189), intvec(30,31,32,44,54,57,91,142,215), intvec(23,26,30,42,56,57,89,103), intvec(24,25,26,34,55,56,102,121,157), intvec(16,25,32,35,54,55,69,155,212), intvec(16,17,24,36,53,55,70,244,403), intvec(17,26,32,45,55,57,104,140,154), intvec(37,38,46,51,60,64,73,93,193), intvec(37,39,47,50,61,64,77,95,220), intvec(49,50,51,52,62,64,78,110,161), intvec(38,39,48,49,58,64,92,108,128), intvec(46,47,48,52,59,64,94,107,144), intvec(33,34,41,42,56,63,105,126,171), intvec(42,43,44,45,57,63,109,320,357), intvec(36,40,41,43,53,63,74,172,195), intvec(33,35,40,44,54,63,75,174,219), intvec(34,35,36,45,55,63,76,106), intvec(58,59,60,61,62,64,80,112,177), intvec(53,54,55,56,57,63,79,96,111), intvec(16,66,69,70,71,129,259,486), intvec(29,65,67,68,72,260,291), intvec(35,66,69,75,76,267,306,444), intvec(40,66,71,74,75,266,308,333), intvec(50,65,67,77,78,132,263,329,442), intvec(51,65,72,73,78,114,133,491,522), intvec(37,65,68,73,77,134,145,275), intvec(36,66,70,74,76,116,307,523), intvec(53,70,71,74,79,122,141,146,407), intvec(60,68,72,73,80,118,315,334,408), intvec(61,67,68,77,80,277,316,335,449), intvec(62,67,72,78,80,117,197,318), intvec(54,69,71,75,79,137,147,279,447), intvec(55,69,70,76,79,123,138,198,330), intvec(64,73,77,78,80,125,143,148,199), intvec(63,74,75,76,79,127,200,319,337), intvec(3,82,83,84,85,230,344), intvec(22,81,86,87,88,169,235,497), intvec(31,81,86,90,91,234,321,347), intvec(23,81,88,89,90,232,349,410), intvec(30,81,87,89,91,150,348,599), intvec(37,82,83,93,95,145,175,246), intvec(39,82,85,92,95,156,173,500,603), intvec(38,82,84,92,93,170,247,286,413), intvec(48,84,85,92,94,159,201,364), intvec(46,83,84,93,94,250,325,358,414), intvec(47,83,85,94,95,158,326,360,451), intvec(56,87,88,89,96,162,176,202,288), intvec(53,86,88,90,96,146,178,251,416), intvec(57,89,90,91,96,163,203,328,370), intvec(54,86,87,91,96,147,160,179,453), intvec(64,92,93,94,95,148,164,180,204), intvec(26,98,102,103,104,377,430,458), intvec(20,97,99,100,101,373,461), intvec(45,98,104,106,109,207,391,559), intvec(34,98,102,105,106,393,420,475), intvec(42,98,103,105,109,184,471,568), intvec(49,97,100,108,110,390,417,433,473), intvec(48,97,101,107,108,183,201,474), intvec(52,97,99,107,110,206,389,426,432), intvec(58,100,101,108,112,185,422,438,482), intvec(62,99,100,110,112,197,210,399), intvec(57,103,104,109,111,191,203,216,428), intvec(56,102,103,105,111,190,202,423,484), intvec(59,99,101,107,112,186,209,560,571), intvec(55,102,104,106,111,198,211,401,434), intvec(64,107,108,110,112,194,199,204,218), intvec(63,105,106,109,111,196,200,217,440), intvec(24,114,115,120,121,253,608,658), intvec(70,113,116,122,123,257,606,666), intvec(27,113,116,119,124,256,659), intvec(72,114,115,117,118,258,667), intvec(76,116,119,123,127,276,419), intvec(74,116,122,124,127,271,506,533), intvec(34,115,117,121,126,272,420), intvec(38,113,122,124,128,262,286,530), intvec(49,113,119,123,128,265,417,503), intvec(73,114,118,120,125,273,285,531), intvec(78,114,117,121,125,274,418,502), intvec(41,115,118,120,126,268,507,532), intvec(79,122,123,127,128,284,287,424), intvec(58,119,124,127,128,281,422,510), intvec(80,117,118,125,126,282,421,508), intvec(56,120,121,125,126,280,288,423), intvec(65,130,132,133,134,290,614), intvec(12,129,131,135,136,289,615), intvec(31,130,134,139,142,295,321), intvec(69,129,135,137,138,294,515,578), intvec(70,129,136,138,141,292,620,671), intvec(71,129,131,137,141,293,322), intvec(32,130,132,140,142,296,514,579), intvec(17,130,133,139,140,298,622,673), intvec(77,132,134,142,143,305,324,582), intvec(78,132,133,140,143,301,425,519), intvec(46,131,136,141,144,299,325,541), intvec(52,135,136,138,144,310,426,516), intvec(73,133,134,139,143,309,323,540), intvec(47,131,135,137,144,300,326,583), intvec(79,137,138,141,144,317,327,427), intvec(57,139,140,142,143,314,328,428), intvec(71,86,146,147,322,336,489,494), intvec(73,93,145,148,285,323,338,493,542), intvec(77,95,145,148,324,331,339,498,584), intvec(79,96,146,147,287,327,332,340,429), intvec(8,150,151,152,153,222,765), intvec(85,149,156,158,159,225,769), intvec(32,149,154,155,158,226,514,587), intvec(25,149,155,156,157,224,632,767), intvec(26,149,154,157,159,223,430), intvec(52,151,153,161,163,238,432,516), intvec(50,151,152,160,161,231,329,590), intvec(87,150,152,160,162,233,636,774), intvec(49,152,153,161,162,239,433,503), intvec(91,150,151,160,163,237,517,591), intvec(89,150,153,162,163,236,431), intvec(95,155,156,158,164,248,331,593), intvec(55,154,155,157,164,243,330,434), intvec(92,156,157,159,164,249,436,505), intvec(94,154,158,159,164,245,435,521), intvec(96,160,161,162,163,252,332,437), intvec(21,166,167,168,169,343,640), intvec(40,165,172,174,175,333,355), intvec(33,165,171,173,174,353,646,779), intvec(41,165,170,171,172,356,507,545), intvec(82,165,170,173,175,354,648), intvec(88,168,169,176,178,366,511,549), intvec(58,167,168,176,177,365,438,510), intvec(60,166,168,177,178,334,361,547), intvec(87,167,169,176,179,363,650,782), intvec(61,166,167,177,179,335,359,595), intvec(86,166,169,178,179,336,362), intvec(92,170,171,173,180,367,439,512), intvec(63,171,172,174,180,337,368,440), intvec(93,170,172,175,180,338,369,551), intvec(95,173,174,175,180,339,371,597), intvec(96,176,177,178,179,340,372,441), intvec(23,182,183,189,192,374,410), intvec(18,181,184,187,188,378,698), intvec(103,181,184,190,191,380,409), intvec(101,182,183,185,186,376,699), intvec(105,184,188,190,196,388,535,544), intvec(109,184,187,191,196,392,688,703), intvec(43,182,186,189,195,385,686,701), intvec(41,182,185,192,195,386,532,545), intvec(46,181,187,191,193,384,414,541), intvec(108,183,185,192,194,394,411,534), intvec(107,183,186,189,194,395,412,539), intvec(38,181,188,190,193,383,413,530), intvec(53,189,192,194,195,402,407,416), intvec(111,190,191,193,196,397,406,415), intvec(60,187,188,193,196,398,408,547), intvec(112,185,186,194,195,400,405,546), intvec(76,106,198,200,419,443,526,557), intvec(78,110,197,199,418,425,445,528,564), intvec(79,111,198,200,406,424,427,429,448), intvec(80,112,197,199,405,421,446,561,566), intvec(89,103,202,203,409,431,569,601), intvec(92,108,201,204,411,436,439,552,605), intvec(94,107,201,204,412,435,450,562,572), intvec(96,111,202,203,415,429,437,441,452), intvec(14,207,208,213,214,457,734), intvec(104,207,208,211,216,456,576,586), intvec(99,205,206,209,210,460,732), intvec(32,205,206,212,215,455,579,587), intvec(109,207,213,216,217,466,739,755), intvec(106,207,211,214,217,443,472), intvec(110,206,210,212,218,445,463,588), intvec(50,208,211,214,220,442,464,590), intvec(44,205,209,215,219,467,738,754), intvec(35,205,210,212,219,444,468), intvec(47,208,213,216,220,451,465,583), intvec(107,206,209,215,218,450,462,580), intvec(112,209,210,218,219,446,478,594), intvec(111,211,216,217,220,448,452,480), intvec(61,213,214,217,220,449,483,595), intvec(54,212,215,218,219,447,453,479), intvec(2,222,227,228,229,230,851), intvec(149,221,223,224,225,226,852), intvec(153,222,228,236,238,239,892), intvec(152,222,229,231,233,239,793), intvec(150,222,230,233,236,237,854), intvec(151,222,227,231,237,238,617), intvec(12,221,226,234,241,242,615), intvec(11,221,223,232,240,242,891), intvec(6,221,224,235,240,241,789), intvec(81,221,225,232,234,235,853), intvec(155,224,226,241,243,248,487), intvec(84,228,230,236,247,250,894), intvec(156,224,225,235,248,249,796), intvec(83,227,230,237,246,250,619), intvec(82,229,230,233,246,247,801), intvec(159,223,225,232,245,249,893), intvec(158,225,226,234,245,248,618), intvec(154,223,226,242,243,245,623), intvec(157,223,224,240,243,249,607), intvec(24,228,229,239,244,247,608), intvec(16,227,229,231,244,246,486), intvec(17,227,228,238,244,250,622), intvec(161,231,238,239,244,252,488), intvec(51,240,241,242,243,251,491), intvec(163,236,237,238,250,252,628), intvec(86,234,235,241,248,251,489), intvec(88,232,235,240,249,251,610), intvec(160,231,233,237,246,252,490), intvec(162,233,236,239,247,252,612), intvec(90,232,234,242,245,251,626), intvec(93,244,246,247,250,252,493), intvec(164,243,245,248,249,251,492), intvec(113,254,256,257,262,265,786), intvec(6,253,255,259,261,264,789), intvec(9,254,256,260,269,270,858), intvec(115,253,255,258,268,272,856), intvec(114,253,258,259,273,274,791), intvec(116,256,257,260,271,276,857), intvec(65,254,257,260,263,275,787), intvec(66,255,258,259,266,267,855), intvec(25,254,263,265,270,283,632), intvec(120,253,264,268,273,280,496), intvec(69,259,261,267,274,279,633), intvec(22,254,262,269,275,283,497), intvec(121,253,261,272,274,280,630), intvec(68,260,269,271,275,277,638), intvec(67,260,263,270,276,277,919), intvec(124,256,262,269,271,281,641), intvec(21,255,264,266,268,278,640), intvec(15,255,261,267,272,278,920), intvec(118,258,266,268,273,282,639), intvec(119,256,265,270,276,281,921), intvec(122,257,262,271,275,284,495), intvec(123,257,263,265,276,284,631), intvec(71,259,264,266,273,279,494), intvec(117,258,267,272,274,282,922), intvec(75,266,267,278,279,282,643), intvec(33,269,270,277,281,283,646), intvec(77,263,275,277,283,284,498), intvec(128,262,265,281,283,284,501), intvec(126,268,272,278,280,282,647), intvec(127,271,276,277,281,284,644), intvec(39,261,264,278,279,280,500), intvec(125,273,274,279,280,282,499), intvec(122,146,286,287,495,509,613,679), intvec(88,120,285,288,496,511,610,681), intvec(125,148,285,288,499,504,513,553), intvec(92,128,286,287,501,505,512,552), intvec(130,290,295,296,297,298,912), intvec(129,289,291,292,293,294,914), intvec(66,290,297,306,307,308,913), intvec(133,290,298,301,307,309,804), intvec(134,290,295,305,308,309,941), intvec(132,290,296,301,305,306,728), intvec(131,289,293,299,300,304,940), intvec(135,289,294,300,302,310,727), intvec(10,289,291,302,303,304,911), intvec(136,289,292,299,303,310,802), intvec(139,295,298,309,311,314,685), intvec(142,295,296,305,312,314,736), intvec(138,292,294,310,317,318,555), intvec(14,296,297,306,312,313,734), intvec(28,297,298,307,311,313,817), intvec(13,295,297,308,311,312,939), intvec(137,293,294,300,316,317,735), intvec(67,291,294,302,316,318,731), intvec(72,291,292,303,315,318,811), intvec(68,291,293,304,315,316,942), intvec(141,292,293,299,315,317,683), intvec(140,296,298,301,313,314,554), intvec(43,299,303,304,315,320,686), intvec(44,300,302,304,316,320,738), intvec(45,302,303,310,318,320,559), intvec(144,299,300,310,317,320,556), intvec(74,307,308,309,311,319,689), intvec(75,305,306,308,312,319,741), intvec(143,301,305,309,314,319,558), intvec(76,301,306,307,313,319,557), intvec(80,315,316,317,318,320,561), intvec(59,311,312,313,314,319,560), intvec(83,131,322,325,326,619,943), intvec(134,145,321,323,324,621,944), intvec(141,146,322,325,327,627,693), intvec(137,147,322,326,327,518,742), intvec(90,139,321,323,328,626,692), intvec(91,142,321,324,328,517,745), intvec(143,148,323,324,328,520,563), intvec(94,144,325,326,327,521,562), intvec(69,155,330,331,487,515,633,747), intvec(78,161,329,332,488,502,519,564), intvec(147,160,329,332,490,518,637,749), intvec(148,164,330,331,492,504,520,565), intvec(68,166,334,335,336,638,945), intvec(74,172,333,337,338,506,694), intvec(75,174,333,337,339,643,751), intvec(145,175,333,338,339,642,946), intvec(80,177,334,335,340,508,566), intvec(146,178,334,336,340,509,697), intvec(147,179,335,336,340,652,753), intvec(148,180,337,338,339,513,567), intvec(7,342,343,344,345,346,915), intvec(13,341,347,351,352,355,947), intvec(165,341,353,354,355,356,916), intvec(81,341,347,348,349,354,917), intvec(18,341,349,350,351,356,698), intvec(19,341,348,350,352,353,836), intvec(83,342,344,358,360,362,949), intvec(85,344,346,360,363,364,843), intvec(84,344,345,358,364,366,702), intvec(42,345,346,357,364,365,568), intvec(43,342,345,357,358,361,701), intvec(44,342,346,357,359,360,754), intvec(167,343,346,359,363,365,844), intvec(169,343,344,362,363,366,918), intvec(166,342,343,359,361,362,948), intvec(168,343,345,361,365,366,700), intvec(59,350,351,352,368,370,571), intvec(90,347,349,351,369,370,710), intvec(174,352,353,355,368,371,759), intvec(91,347,348,352,370,371,756), intvec(172,351,355,356,368,369,709), intvec(175,347,354,355,369,371,950), intvec(173,348,353,354,367,371,847), intvec(89,348,349,350,367,370,569), intvec(171,350,353,356,367,368,570), intvec(170,349,354,356,367,369,708), intvec(176,363,364,365,366,372,574), intvec(177,357,359,361,365,372,573), intvec(178,358,361,362,366,372,713), intvec(94,357,358,360,364,372,572), intvec(179,359,360,362,363,372,761), intvec(180,367,368,369,370,371,575), intvec(98,376,377,379,391,393,954), intvec(181,375,378,380,383,384,958), intvec(11,374,377,379,387,396,955), intvec(184,373,378,380,388,392,953), intvec(97,373,375,380,389,390,956), intvec(182,374,376,379,385,386,952), intvec(5,373,375,378,381,382,951), intvec(183,374,376,377,394,395,957), intvec(27,379,386,387,393,404,659), intvec(28,379,385,391,396,404,817), intvec(192,374,386,387,394,402,663), intvec(189,374,385,395,396,402,677), intvec(187,378,382,384,392,398,813), intvec(188,378,381,383,388,398,655), intvec(24,375,381,383,390,403,658), intvec(185,376,386,393,394,400,657), intvec(104,377,391,395,396,401,672), intvec(102,377,387,393,394,401,662), intvec(99,373,382,389,392,399,810), intvec(186,376,385,391,395,400,812), intvec(100,373,381,388,390,399,665), intvec(190,380,383,388,390,397,668), intvec(191,380,384,389,392,397,675), intvec(17,375,382,384,389,403,673), intvec(194,394,395,400,401,402,529), intvec(195,385,386,400,402,404,524), intvec(106,391,393,400,401,404,526), intvec(196,388,392,397,398,399,527), intvec(110,389,390,397,399,403,528), intvec(193,383,384,397,398,403,525), intvec(51,387,396,401,402,404,522), intvec(36,381,382,398,399,403,523), intvec(196,200,406,408,527,537,687,695), intvec(194,199,405,407,529,536,538,543), intvec(73,193,406,408,525,531,540,542), intvec(74,195,405,407,524,533,689,694), intvec(183,201,410,411,412,704,983), intvec(84,181,409,413,414,702,984), intvec(190,202,409,413,415,548,680), intvec(191,203,409,414,415,691,707), intvec(88,192,410,411,416,549,681), intvec(90,189,410,412,416,692,710), intvec(194,204,411,412,416,543,550), intvec(93,193,413,414,415,542,551), intvec(102,121,418,420,423,662,714), intvec(123,198,417,419,424,656,715), intvec(117,197,418,420,421,660,1059), intvec(100,119,417,419,422,665,1060), intvec(127,200,419,422,424,537,719), intvec(105,126,420,421,423,535,718), intvec(108,128,417,422,424,534,552), intvec(125,199,418,421,423,536,553), intvec(138,198,426,427,555,577,674,723), intvec(104,140,425,428,554,576,672,722), intvec(143,199,425,428,538,558,563,581), intvec(107,144,426,427,539,556,562,580), intvec(148,199,204,543,553,563,565,567,585), intvec(97,153,431,432,433,764,1009), intvec(159,201,430,435,436,773,1010), intvec(104,154,430,434,435,586,722), intvec(102,157,430,434,436,714,772), intvec(110,161,432,433,437,564,588), intvec(163,203,431,432,437,589,724), intvec(162,202,431,433,437,716,775), intvec(164,204,434,435,436,565,592), intvec(105,171,439,440,544,570,718,781), intvec(176,202,438,441,548,574,721,784), intvec(112,177,438,441,546,566,573,594), intvec(180,204,439,440,550,567,575,596), intvec(69,212,444,445,447,578,747), intvec(197,210,444,445,446,737,1110), intvec(67,214,442,443,449,731,1109), intvec(198,211,442,443,448,577,746), intvec(200,217,443,448,449,740,750), intvec(77,220,442,448,449,582,584), intvec(199,218,445,446,447,581,585), intvec(75,219,444,446,447,741,751), intvec(203,216,451,452,589,598,743,757), intvec(91,215,450,453,591,600,745,756), intvec(204,218,450,453,585,592,596,602), intvec(95,220,451,452,584,593,597,604), intvec(4,457,459,461,469,470,1120), intvec(208,456,457,459,464,465,763), intvec(206,455,458,460,462,463,762), intvec(205,454,455,460,467,468,1121), intvec(97,456,459,461,473,474,764), intvec(8,454,455,458,476,477,765), intvec(207,456,457,461,466,472,1119), intvec(98,454,458,460,471,475,1122), intvec(216,456,465,466,474,480,598), intvec(211,456,464,472,473,480,766), intvec(212,455,463,468,477,479,771), intvec(215,455,462,467,476,479,600), intvec(209,460,462,467,471,478,835), intvec(213,457,465,466,469,483,837), intvec(214,457,464,470,472,483,1149), intvec(19,454,467,471,476,485,836), intvec(15,454,468,475,477,485,1150), intvec(101,461,466,469,474,482,834), intvec(210,460,463,468,475,478,1148), intvec(102,458,463,475,477,484,772), intvec(103,458,462,471,476,484,601), intvec(100,461,470,472,473,482,1147), intvec(30,459,465,469,474,481,599), intvec(25,459,464,470,473,481,767), intvec(217,466,472,480,482,483,778), intvec(220,464,465,480,481,483,604), intvec(218,462,463,478,479,484,602), intvec(39,476,477,479,484,485,603), intvec(105,471,475,478,484,485,781), intvec(219,467,468,478,479,485,780), intvec(108,473,474,480,481,482,605), intvec(33,469,470,481,482,483,779), intvec(65,241,487,489,491,614,787), intvec(231,329,486,488,490,616,792), intvec(243,330,487,491,492,609,624), intvec(145,246,486,490,493,621,797), intvec(248,331,487,489,492,625,795), intvec(70,244,486,488,493,606,620), intvec(252,332,488,490,493,611,629), intvec(146,251,489,491,492,613,627), intvec(145,275,495,497,498,642,797), intvec(273,285,494,496,499,645,798), intvec(262,286,495,497,501,649,794), intvec(82,264,494,496,500,648,801), intvec(147,279,494,499,500,637,652), intvec(284,287,495,498,501,634,651), intvec(87,283,497,498,501,636,650), intvec(280,288,496,499,500,635,653), intvec(123,330,503,504,609,631,715), intvec(121,157,502,505,607,630,714), intvec(287,332,502,505,611,634,717), intvec(162,288,503,504,612,635,716), intvec(118,334,507,508,509,639,820), intvec(124,168,506,510,511,641,821), intvec(127,337,506,510,513,644,719), intvec(285,338,506,511,513,645,823), intvec(126,171,507,508,512,647,718), intvec(170,286,507,509,512,649,824), intvec(176,288,510,511,513,653,721), intvec(287,340,508,509,512,651,720), intvec(135,151,515,516,517,617,828), intvec(132,329,514,518,519,616,827), intvec(140,154,514,519,521,623,722), intvec(158,326,514,518,521,618,832), intvec(324,331,515,517,520,625,833), intvec(138,330,515,516,520,624,723), intvec(327,332,518,519,521,629,725), intvec(163,328,516,517,520,628,724), intvec(70,403,523,525,528,666,671), intvec(72,404,522,524,526,667,811), intvec(398,408,523,525,527,664,814), intvec(402,407,522,524,529,661,676), intvec(197,399,523,527,528,660,815), intvec(400,405,524,526,529,669,816), intvec(198,401,522,526,529,656,674), intvec(397,406,525,527,528,654,670), intvec(120,192,531,532,534,663,681), intvec(122,407,530,533,536,661,679), intvec(124,188,530,533,535,655,821), intvec(118,408,531,532,537,664,820), intvec(190,423,530,535,536,668,680), intvec(185,422,532,534,537,657,819), intvec(406,424,531,534,537,654,678), intvec(405,421,533,535,536,669,818), intvec(406,427,539,540,670,682,690), intvec(191,428,538,541,675,684,691), intvec(141,407,538,541,676,683,693), intvec(139,189,539,540,677,685,692), intvec(146,407,416,543,679,693,697), intvec(406,415,429,542,678,690,696), intvec(185,438,545,546,548,705,819), intvec(168,188,544,547,549,700,821), intvec(196,440,544,547,550,695,711), intvec(172,195,545,546,551,694,709), intvec(411,439,544,549,550,706,822), intvec(170,413,545,548,551,708,824), intvec(415,441,546,548,551,696,712), intvec(178,416,547,549,550,697,713), intvec(202,288,423,553,680,716,721), intvec(287,424,429,552,678,717,720), intvec(310,426,555,556,559,729,803), intvec(301,425,554,557,558,726,805), intvec(314,428,554,558,560,684,733), intvec(197,318,555,559,561,737,815), intvec(317,427,555,556,561,682,730), intvec(99,313,554,557,560,732,810), intvec(109,320,556,559,561,688,739), intvec(200,319,557,558,560,687,740), intvec(203,328,428,563,691,724,743), intvec(327,427,429,562,690,725,744), intvec(198,330,434,565,715,723,746), intvec(332,429,437,564,717,725,748), intvec(200,337,440,567,695,719,750), intvec(340,429,441,566,696,720,752), intvec(101,350,569,570,571,699,834), intvec(201,364,568,572,574,704,842), intvec(365,438,568,573,574,705,845), intvec(109,357,568,572,573,703,755), intvec(203,370,569,571,575,707,757), intvec(368,440,570,571,575,711,758), intvec(367,439,569,570,575,706,849), intvec(372,441,572,573,574,712,760), intvec(206,426,577,579,580,729,829), intvec(425,445,576,578,581,726,826), intvec(132,442,577,579,582,728,827), intvec(135,208,576,578,583,727,828), intvec(216,428,576,581,583,733,743), intvec(427,448,577,580,582,730,744), intvec(137,447,578,581,583,735,742), intvec(142,215,579,580,582,736,745), intvec(147,447,453,585,742,749,753), intvec(429,448,452,584,744,748,752), intvec(206,432,587,588,589,762,829), intvec(151,208,586,590,591,763,828), intvec(211,434,586,590,592,746,766), intvec(435,450,586,591,592,768,830), intvec(155,212,587,588,593,747,771), intvec(158,451,587,589,593,770,832), intvec(437,452,588,589,593,748,776), intvec(160,453,590,591,592,749,777), intvec(217,440,595,596,750,758,778), intvec(174,219,594,597,751,759,780), intvec(441,452,594,597,752,760,783), intvec(179,453,595,596,753,761,785), intvec(450,462,600,601,602,768,841), intvec(85,476,600,601,603,769,843), intvec(451,465,598,599,604,770,839), intvec(201,474,598,599,605,773,842), intvec(452,480,598,604,605,776,783), intvec(87,481,599,604,605,774,782), intvec(453,479,600,602,603,777,785), intvec(202,484,601,602,603,775,784), intvec(114,491,608,609,613,791,898), intvec(239,503,608,609,612,788,897), intvec(113,240,606,607,610,786,895), intvec(488,502,606,607,611,790,896), intvec(247,286,608,612,613,794,900), intvec(492,504,609,612,613,800,902), intvec(249,505,607,610,611,799,901), intvec(285,493,606,610,611,798,899), intvec(129,486,615,616,620,621,879), intvec(130,227,614,617,619,622,877), intvec(487,515,614,617,624,625,876), intvec(226,514,615,616,618,623,875), intvec(237,517,617,619,625,628,878), intvec(234,321,615,618,621,626,881), intvec(133,491,614,622,624,627,903), intvec(322,489,614,619,625,627,882), intvec(136,242,615,620,623,626,904), intvec(238,516,617,622,624,628,906), intvec(488,519,616,620,623,629,905), intvec(490,518,616,618,621,629,880), intvec(250,325,619,622,627,628,909), intvec(323,493,620,621,626,629,910), intvec(245,521,618,623,626,629,908), intvec(492,520,624,625,627,628,907), intvec(265,503,631,632,635,788,925), intvec(274,502,630,633,634,790,926), intvec(152,261,630,633,636,793,923), intvec(263,329,631,632,637,792,924), intvec(499,504,631,635,637,800,929), intvec(501,505,630,634,636,799,927), intvec(156,500,632,635,637,796,930), intvec(331,498,633,634,636,795,928), intvec(266,333,639,640,642,643,884), intvec(271,506,638,641,644,645,885), intvec(165,269,638,641,646,648,883), intvec(268,507,639,640,647,649,886), intvec(336,494,638,645,648,652,887), intvec(277,335,638,644,646,652,932), intvec(282,508,639,643,647,651,934), intvec(495,509,639,642,649,651,888), intvec(167,278,640,643,647,650,933), intvec(281,510,641,644,646,653,931), intvec(169,497,640,642,649,650,890), intvec(496,511,641,645,648,653,889), intvec(173,500,646,648,652,653,935), intvec(499,513,644,645,652,653,937), intvec(339,498,642,643,650,651,936), intvec(501,512,647,649,650,651,938), intvec(529,536,656,661,668,669,972), intvec(386,532,657,659,663,664,963), intvec(418,528,654,660,662,666,970), intvec(388,535,655,665,668,669,962), intvec(113,387,659,662,663,666,967), intvec(115,381,655,658,665,667,960), intvec(419,526,656,665,667,669,965), intvec(525,531,654,663,664,666,973), intvec(390,417,656,658,665,668,968), intvec(383,530,655,658,661,668,974), intvec(524,533,655,661,667,669,961), intvec(393,420,657,659,660,662,966), intvec(114,522,656,658,661,667,969), intvec(116,523,659,660,664,666,959), intvec(394,534,654,657,662,663,971), intvec(527,537,654,657,660,664,964), intvec(529,538,674,675,676,809,982), intvec(133,522,673,674,676,804,976), intvec(389,426,673,674,675,803,977), intvec(136,396,671,672,677,802,978), intvec(425,528,670,671,672,805,975), intvec(395,539,670,672,677,807,981), intvec(525,540,670,671,677,808,979), intvec(384,541,673,675,676,806,980), intvec(536,543,553,679,680,825,988), intvec(285,531,542,678,681,823,986), intvec(411,534,552,678,681,822,987), intvec(286,413,530,679,680,824,985), intvec(538,558,683,684,687,809,1042), intvec(309,540,682,685,689,808,1041), intvec(539,556,682,685,688,807,1035), intvec(299,541,683,684,686,806,1036), intvec(187,311,685,688,689,813,1038), intvec(405,561,682,688,689,816,1040), intvec(186,560,684,686,687,812,1037), intvec(315,408,683,686,687,814,1039), intvec(538,543,563,691,693,1006,1045), intvec(412,539,562,690,692,1007,1043), intvec(325,414,541,691,693,1008,1044), intvec(323,540,542,690,692,1005,1046), intvec(334,408,547,695,697,820,1048), intvec(405,546,566,694,696,818,1047), intvec(543,550,567,695,697,825,1049), intvec(338,542,551,694,696,823,1050), intvec(182,345,699,700,701,702,1028), intvec(184,568,698,703,704,705,1027), intvec(356,545,698,705,708,709,1029), intvec(187,351,698,703,709,710,1052), intvec(349,410,698,704,708,710,1030), intvec(186,571,699,701,707,711,1051), intvec(409,569,699,702,706,707,1031), intvec(544,570,699,700,706,711,1032), intvec(548,574,704,705,708,712,1034), intvec(412,572,703,704,710,712,1056), intvec(366,549,700,702,706,713,1033), intvec(361,547,700,701,711,713,1053), intvec(358,414,701,702,707,713,1055), intvec(546,573,703,705,709,712,1054), intvec(550,575,706,707,711,713,1057), intvec(369,551,708,709,710,712,1058), intvec(417,433,503,715,716,1012,1061), intvec(418,502,564,714,717,1011,1062), intvec(436,505,552,714,717,1013,1063), intvec(504,553,565,715,716,1014,1064), intvec(422,438,510,719,721,819,1065), intvec(421,508,566,718,720,818,1066), intvec(513,553,567,719,721,825,1068), intvec(439,512,552,718,720,822,1067), intvec(426,432,516,723,724,829,1024), intvec(425,519,564,722,725,826,1023), intvec(435,521,562,722,725,830,1025), intvec(520,563,565,723,724,831,1026), intvec(555,577,728,729,730,737,1073), intvec(296,579,728,729,734,736,1072), intvec(294,578,726,727,731,735,1074), intvec(554,576,726,727,732,733,1069), intvec(558,581,726,733,735,740,1083), intvec(306,444,728,734,737,741,1075), intvec(207,559,729,734,737,739,1070), intvec(556,580,729,730,736,739,1077), intvec(205,302,727,731,732,738,1071), intvec(305,582,728,730,736,741,1081), intvec(300,583,727,733,735,738,1078), intvec(443,557,726,731,732,740,1076), intvec(213,312,734,736,739,741,1079), intvec(209,560,732,733,738,740,1080), intvec(446,561,730,737,739,741,1084), intvec(316,449,731,735,738,740,1082), intvec(324,582,584,744,745,833,1088), intvec(450,562,580,744,745,830,1085), intvec(563,581,585,742,743,831,1087), intvec(326,451,583,742,743,832,1086), intvec(445,564,588,747,748,826,1111), intvec(329,442,590,746,749,827,1112), intvec(565,585,592,746,749,831,1114), intvec(331,584,593,747,748,833,1113), intvec(446,566,594,751,752,1097,1116), intvec(335,449,595,750,753,1098,1115), intvec(567,585,596,750,753,1099,1117), intvec(339,584,597,751,752,1100,1118), intvec(213,352,755,756,759,837,1101), intvec(209,571,754,757,758,835,1102), intvec(360,451,754,757,761,839,1104), intvec(450,572,755,756,760,841,1106), intvec(573,594,755,759,760,840,1105), intvec(359,595,754,758,761,838,1103), intvec(575,596,757,758,761,848,1108), intvec(371,597,756,759,760,846,1107), intvec(456,586,763,764,766,768,1140), intvec(455,587,762,765,770,771,1139), intvec(430,458,762,765,772,773,1141), intvec(149,459,763,764,767,769,1142), intvec(463,588,762,771,772,776,1153), intvec(152,477,765,771,772,774,1152), intvec(589,598,762,770,773,776,1145), intvec(150,599,765,770,773,774,1144), intvec(591,600,763,768,769,777,1143), intvec(464,590,763,766,767,777,1151), intvec(433,473,764,766,767,775,1154), intvec(431,601,764,768,769,775,1146), intvec(156,603,767,769,775,777,1155), intvec(436,605,772,773,774,776,1156), intvec(592,602,766,768,775,777,1157), intvec(593,604,770,771,774,776,1158), intvec(478,594,780,781,783,840,1161), intvec(167,485,780,781,782,844,1159), intvec(483,595,778,779,785,838,1162), intvec(438,482,778,779,784,845,1160), intvec(173,603,779,784,785,847,1165), intvec(596,602,778,784,785,848,1164), intvec(439,605,781,782,783,849,1166), intvec(597,604,780,782,783,846,1163), intvec(253,608,788,789,791,794,865), intvec(259,486,789,791,792,797,859), intvec(607,630,786,790,793,799,866), intvec(229,254,786,787,793,801,860), intvec(609,631,788,791,792,800,863), intvec(257,606,786,787,790,798,861), intvec(487,633,787,790,793,795,862), intvec(224,632,788,789,792,796,864), intvec(496,610,786,798,799,801,873), intvec(490,637,792,796,797,800,868), intvec(233,636,793,795,799,801,867), intvec(489,494,787,795,798,801,871), intvec(495,613,791,794,797,800,869), intvec(612,635,788,794,796,800,872), intvec(611,634,790,795,798,799,874), intvec(235,497,789,794,796,797,870), intvec(298,673,803,804,806,817,989), intvec(554,672,802,805,807,810,990), intvec(292,671,802,805,808,811,1000), intvec(555,674,803,804,809,815,994), intvec(677,685,802,807,808,813,993), intvec(675,684,803,806,809,812,995), intvec(676,683,804,806,809,814,1004), intvec(670,682,805,807,808,816,1003), intvec(391,559,803,812,815,817,992), intvec(307,523,804,814,815,817,996), intvec(392,688,807,810,813,816,999), intvec(385,686,806,812,814,817,997), intvec(524,689,808,811,813,816,1002), intvec(526,557,805,810,811,816,998), intvec(527,687,809,812,814,815,1001), intvec(303,382,802,810,811,813,991), intvec(537,695,719,819,820,825,1018), intvec(535,544,718,818,821,822,1017), intvec(506,533,694,818,821,823,1016), intvec(507,532,545,819,820,824,1015), intvec(548,680,721,819,824,825,1019), intvec(509,679,697,820,824,825,1020), intvec(511,549,681,821,822,823,1022), intvec(678,696,720,818,822,823,1021), intvec(577,723,746,827,829,831,1091), intvec(515,578,747,826,828,833,1092), intvec(514,579,587,827,829,832,1089), intvec(576,586,722,826,828,830,1090), intvec(589,724,743,829,831,832,1094), intvec(725,744,748,826,830,833,1096), intvec(517,591,745,828,830,833,1093), intvec(518,742,749,827,831,832,1095), intvec(471,568,835,836,842,845,1124), intvec(466,755,834,837,840,841,1126), intvec(346,469,834,837,843,844,1123), intvec(467,754,835,836,838,839,1125), intvec(759,780,837,840,844,846,1132), intvec(600,756,837,841,843,846,1129), intvec(758,778,835,838,845,848,1133), intvec(598,757,835,839,842,848,1134), intvec(569,601,834,841,843,849,1128), intvec(348,599,836,839,842,847,1130), intvec(353,779,836,838,845,847,1131), intvec(570,781,834,840,844,849,1127), intvec(761,785,838,839,847,848,1138), intvec(363,782,843,844,846,849,1135), intvec(760,783,840,841,846,849,1137), intvec(574,784,842,845,847,848,1136), intvec(1,851,858,911,915,951,1120), intvec(221,850,852,853,860,877,891), intvec(222,851,854,864,875,892,1142), intvec(230,851,854,870,881,894,917), intvec(225,852,853,867,878,893,1144), intvec(260,857,858,859,884,913,919), intvec(256,857,858,865,886,921,960), intvec(258,855,856,861,885,922,959), intvec(255,850,855,856,860,883,920), intvec(787,855,860,861,862,871,879), intvec(789,851,858,859,864,865,870), intvec(791,857,859,863,865,869,898), intvec(792,859,863,864,868,876,924), intvec(790,861,862,866,874,896,926), intvec(793,852,860,862,866,867,923), intvec(786,856,860,861,866,873,895), intvec(788,863,864,865,872,897,925), intvec(796,854,864,868,870,872,930), intvec(795,862,867,871,874,880,928), intvec(798,861,871,873,874,888,899), intvec(801,853,860,867,871,873,890), intvec(797,859,868,869,870,882,887), intvec(799,866,867,873,874,901,927), intvec(794,865,869,870,872,889,900), intvec(800,863,868,869,872,902,929), intvec(617,852,876,877,878,906,1089), intvec(616,862,875,879,880,905,1092), intvec(615,851,875,879,881,904,912), intvec(618,854,875,880,881,908,1093), intvec(614,859,876,877,882,903,914), intvec(625,868,876,878,882,907,1095), intvec(619,853,877,878,882,909,943), intvec(621,871,879,880,881,910,944), intvec(640,858,884,886,890,916,933), intvec(638,855,883,885,887,932,945), intvec(639,857,884,886,888,934,1016), intvec(641,856,883,885,889,931,1015), intvec(642,871,884,888,890,936,946), intvec(645,869,885,887,889,937,1020), intvec(649,873,886,888,890,938,1022), intvec(648,870,883,887,889,918,935), intvec(228,851,892,894,895,904,955), intvec(223,852,891,893,897,906,1009), intvec(236,854,892,894,901,908,1010), intvec(232,853,891,893,900,909,984), intvec(608,865,891,897,898,900,967), intvec(609,863,897,898,902,905,1011), intvec(607,866,892,895,896,901,1012), intvec(606,861,895,896,899,903,969), intvec(613,869,898,900,902,910,986), intvec(610,873,894,895,899,901,985), intvec(612,872,893,897,900,902,1013), intvec(611,874,896,899,901,907,1014), intvec(620,879,898,904,905,910,976), intvec(622,877,891,903,906,909,978), intvec(624,876,896,903,906,907,1023), intvec(623,875,892,904,905,908,1024), intvec(629,880,902,905,908,910,1026), intvec(628,878,893,906,907,909,1025), intvec(626,881,894,904,908,910,1008), intvec(627,882,899,903,907,909,1005), intvec(297,850,912,913,939,991,1071), intvec(289,877,911,914,940,989,1072), intvec(291,855,911,914,942,996,1075), intvec(290,879,912,913,941,1000,1074), intvec(341,850,916,917,947,1028,1123), intvec(343,883,915,918,948,1029,1131), intvec(344,853,915,918,949,1030,1130), intvec(354,890,916,917,950,1033,1135), intvec(267,855,920,922,924,932,1109), intvec(270,858,919,921,923,933,1150), intvec(272,856,920,922,925,931,1060), intvec(276,857,919,921,926,934,1059), intvec(632,864,920,924,925,930,1152), intvec(633,862,919,923,926,928,1112), intvec(630,866,921,923,926,927,1061), intvec(631,863,922,924,925,929,1062), intvec(635,872,925,929,930,938,1063), intvec(637,868,924,929,930,936,1113), intvec(634,874,926,927,928,937,1064), intvec(636,867,923,927,928,935,1155), intvec(647,886,921,933,934,938,1065), intvec(643,884,919,933,934,936,1115), intvec(646,883,920,931,932,935,1159), intvec(644,885,922,931,932,937,1066), intvec(650,890,930,933,936,938,1165), intvec(652,887,928,932,935,937,1118), intvec(651,888,929,934,936,938,1068), intvec(653,889,927,931,935,937,1067), intvec(304,911,940,942,947,1038,1079), intvec(295,912,939,941,943,1036,1078), intvec(293,914,940,942,944,1041,1081), intvec(308,913,939,941,945,1039,1082), intvec(321,881,940,944,949,1044,1086), intvec(322,882,941,943,946,1046,1088), intvec(333,884,942,946,948,1048,1098), intvec(336,887,944,945,950,1050,1100), intvec(342,915,939,948,949,1052,1101), intvec(355,916,945,947,950,1053,1103), intvec(347,917,943,947,950,1055,1104), intvec(362,918,946,948,949,1058,1107), intvec(379,850,952,954,955,960,991), intvec(378,951,953,958,963,997,1028), intvec(376,952,954,957,962,999,1027), intvec(373,951,953,956,966,992,1122), intvec(375,891,951,956,958,967,978), intvec(377,954,955,957,968,977,1009), intvec(380,953,956,958,971,981,983), intvec(374,952,955,957,974,980,984), intvec(667,857,960,961,965,969,996), intvec(659,856,951,959,963,966,967), intvec(664,959,963,964,973,1002,1016), intvec(657,953,963,964,966,971,1017), intvec(655,952,960,961,962,974,1015), intvec(669,961,962,965,972,1001,1018), intvec(660,959,964,966,970,998,1059), intvec(665,954,960,962,965,968,1060), intvec(658,895,955,960,968,969,974), intvec(662,956,966,967,970,971,1012), intvec(666,898,959,967,970,973,976), intvec(656,965,968,969,972,975,1011), intvec(668,957,962,968,972,974,987), intvec(654,964,970,971,973,982,988), intvec(661,961,969,972,974,979,986), intvec(663,958,963,967,971,973,985), intvec(674,970,976,977,982,994,1023), intvec(671,903,969,975,978,979,1000), intvec(672,956,975,978,981,990,1024), intvec(673,904,955,976,977,980,989), intvec(676,973,976,980,982,1004,1005), intvec(677,958,978,979,981,993,1008), intvec(675,957,977,980,982,995,1007), intvec(670,972,975,979,981,1003,1006), intvec(409,957,984,987,1007,1010,1031), intvec(410,894,958,983,985,1008,1030), intvec(681,900,974,984,986,987,1022), intvec(679,899,973,985,988,1005,1020), intvec(680,971,983,985,988,1013,1019), intvec(678,972,986,987,1006,1014,1021), intvec(802,912,978,990,991,993,1000), intvec(803,977,989,992,994,995,1069), intvec(817,911,951,989,992,996,997), intvec(810,954,990,991,998,999,1070), intvec(806,980,989,995,997,1004,1036), intvec(805,975,990,998,1000,1003,1073), intvec(807,981,990,993,999,1003,1035), intvec(811,913,959,991,998,1000,1002), intvec(813,952,991,993,999,1002,1038), intvec(815,965,992,994,996,1001,1076), intvec(812,953,992,995,997,1001,1037), intvec(804,914,976,989,994,996,1004), intvec(816,964,998,999,1002,1003,1040), intvec(814,961,996,997,1001,1004,1039), intvec(809,982,994,995,1001,1004,1042), intvec(808,979,993,1000,1002,1003,1041), intvec(693,910,979,986,1006,1008,1046), intvec(690,982,988,1005,1007,1026,1045), intvec(691,981,983,1006,1008,1025,1043), intvec(692,909,980,984,1005,1007,1044), intvec(430,892,956,1010,1012,1024,1141), intvec(431,893,983,1009,1013,1025,1146), intvec(715,896,970,1012,1014,1023,1062), intvec(714,897,968,1009,1011,1013,1061), intvec(716,901,987,1010,1012,1014,1063), intvec(717,902,988,1011,1013,1026,1064), intvec(821,886,963,1016,1017,1022,1029), intvec(820,885,961,1015,1018,1020,1048), intvec(819,962,1015,1018,1019,1032,1065), intvec(818,964,1016,1017,1021,1047,1066), intvec(822,987,1017,1021,1022,1034,1067), intvec(823,888,986,1016,1021,1022,1050), intvec(825,988,1018,1019,1020,1049,1068), intvec(824,889,985,1015,1019,1020,1033), intvec(723,905,975,1011,1024,1026,1091), intvec(722,906,977,1009,1023,1025,1090), intvec(724,908,1007,1010,1024,1026,1094), intvec(725,907,1006,1014,1023,1025,1096), intvec(699,953,1028,1031,1032,1051,1124), intvec(698,915,952,1027,1029,1030,1052), intvec(700,916,1015,1028,1032,1033,1053), intvec(702,917,984,1028,1031,1033,1055), intvec(704,983,1027,1030,1034,1056,1128), intvec(705,1017,1027,1029,1034,1054,1127), intvec(708,918,1022,1029,1030,1034,1058), intvec(706,1019,1031,1032,1033,1057,1136), intvec(684,995,1036,1037,1042,1043,1077), intvec(685,940,993,1035,1038,1041,1044), intvec(688,999,1035,1038,1040,1051,1080), intvec(686,939,997,1036,1037,1039,1052), intvec(689,942,1002,1038,1040,1041,1048), intvec(687,1001,1037,1039,1042,1047,1084), intvec(683,941,1004,1036,1039,1042,1046), intvec(682,1003,1035,1040,1041,1045,1083), intvec(691,1007,1035,1044,1045,1056,1085), intvec(692,943,1008,1036,1043,1046,1055), intvec(690,1006,1042,1043,1046,1049,1087), intvec(693,944,1005,1041,1044,1045,1050), intvec(695,1018,1040,1048,1049,1054,1097), intvec(694,945,1016,1039,1047,1050,1053), intvec(696,1021,1045,1047,1050,1057,1099), intvec(697,946,1020,1046,1048,1049,1058), intvec(703,1027,1037,1052,1054,1056,1102), intvec(701,947,1028,1038,1051,1053,1055), intvec(709,948,1029,1048,1052,1054,1058), intvec(711,1032,1047,1051,1053,1057,1105), intvec(710,949,1030,1044,1052,1056,1058), intvec(707,1031,1043,1051,1055,1057,1106), intvec(712,1034,1049,1054,1056,1058,1108), intvec(713,950,1033,1050,1053,1055,1057), intvec(419,922,965,1060,1062,1066,1110), intvec(420,921,966,1059,1061,1065,1147), intvec(714,925,1012,1060,1062,1063,1154), intvec(715,926,1011,1059,1061,1064,1111), intvec(716,927,1013,1061,1064,1067,1156), intvec(717,929,1014,1062,1063,1068,1114), intvec(718,931,1017,1060,1066,1067,1160), intvec(719,934,1018,1059,1065,1068,1116), intvec(721,938,1019,1063,1065,1068,1166), intvec(720,937,1021,1064,1066,1067,1117), intvec(729,990,1070,1072,1073,1077,1090), intvec(732,992,1069,1071,1076,1080,1119), intvec(734,911,1070,1072,1075,1079,1121), intvec(727,912,1069,1071,1074,1078,1089), intvec(726,994,1069,1074,1076,1083,1091), intvec(728,914,1072,1073,1075,1081,1092), intvec(731,913,1071,1074,1076,1082,1109), intvec(737,998,1070,1073,1075,1084,1110), intvec(733,1035,1069,1078,1080,1083,1085), intvec(736,940,1072,1077,1079,1081,1086), intvec(738,939,1071,1078,1080,1082,1101), intvec(739,1037,1070,1077,1079,1084,1102), intvec(735,941,1074,1078,1082,1083,1088), intvec(741,942,1075,1079,1081,1084,1098), intvec(730,1042,1073,1077,1081,1084,1087), intvec(740,1040,1076,1080,1082,1083,1097), intvec(743,1043,1077,1086,1087,1094,1106), intvec(745,943,1078,1085,1088,1093,1104), intvec(744,1045,1083,1085,1088,1096,1099), intvec(742,944,1081,1086,1087,1095,1100), intvec(828,875,1072,1090,1092,1093,1139), intvec(829,1024,1069,1089,1091,1094,1140), intvec(826,1023,1073,1090,1092,1096,1111), intvec(827,876,1074,1089,1091,1095,1112), intvec(832,878,1086,1089,1094,1095,1143), intvec(830,1025,1085,1090,1093,1096,1145), intvec(833,880,1088,1092,1093,1096,1113), intvec(831,1026,1087,1091,1094,1095,1114), intvec(750,1047,1084,1098,1099,1105,1116), intvec(751,945,1082,1097,1100,1103,1115), intvec(752,1049,1087,1097,1100,1108,1117), intvec(753,946,1088,1098,1099,1107,1118), intvec(754,947,1079,1102,1103,1104,1125), intvec(755,1051,1080,1101,1105,1106,1126), intvec(759,948,1098,1101,1105,1107,1132), intvec(756,949,1086,1101,1106,1107,1129), intvec(758,1054,1097,1102,1103,1108,1133), intvec(757,1056,1085,1102,1104,1108,1134), intvec(761,950,1100,1103,1104,1108,1138), intvec(760,1057,1099,1105,1106,1107,1137), intvec(444,919,1075,1110,1112,1115,1149), intvec(443,1059,1076,1109,1111,1116,1148), intvec(746,1062,1091,1110,1112,1114,1153), intvec(747,924,1092,1109,1111,1113,1151), intvec(749,928,1095,1112,1114,1118,1158), intvec(748,1064,1096,1111,1113,1117,1157), intvec(751,932,1098,1109,1116,1118,1162), intvec(750,1066,1097,1110,1115,1117,1161), intvec(752,1068,1099,1114,1116,1118,1164), intvec(753,936,1100,1113,1115,1117,1163), intvec(460,1070,1121,1122,1126,1140,1148), intvec(454,850,1121,1122,1123,1142,1150), intvec(457,1071,1119,1120,1125,1139,1149), intvec(461,954,1119,1120,1124,1141,1147), intvec(836,915,1120,1124,1125,1130,1131), intvec(834,1027,1122,1123,1126,1127,1128), intvec(837,1101,1121,1123,1126,1129,1132), intvec(835,1102,1119,1124,1125,1133,1134), intvec(845,1032,1124,1131,1133,1136,1160), intvec(842,1031,1124,1130,1134,1136,1146), intvec(839,1104,1125,1130,1134,1138,1143), intvec(843,917,1123,1128,1129,1135,1144), intvec(844,916,1123,1127,1132,1135,1159), intvec(838,1103,1125,1131,1133,1138,1162), intvec(840,1105,1126,1127,1132,1137,1161), intvec(841,1106,1126,1128,1129,1137,1145), intvec(847,918,1130,1131,1136,1138,1165), intvec(849,1034,1127,1128,1135,1137,1166), intvec(848,1108,1133,1134,1136,1138,1164), intvec(846,1107,1129,1132,1135,1137,1163), intvec(763,1089,1121,1140,1142,1143,1151), intvec(762,1090,1119,1139,1141,1145,1153), intvec(764,1009,1122,1140,1142,1146,1154), intvec(765,852,1120,1139,1141,1144,1152), intvec(770,1093,1129,1139,1144,1145,1158), intvec(769,854,1130,1142,1143,1146,1155), intvec(768,1094,1134,1140,1143,1146,1157), intvec(773,1010,1128,1141,1144,1145,1156), intvec(475,1060,1122,1148,1150,1154,1160), intvec(472,1110,1119,1147,1149,1153,1161), intvec(468,1109,1121,1148,1150,1151,1162), intvec(470,920,1120,1147,1149,1152,1159), intvec(771,1112,1139,1149,1152,1153,1158), intvec(767,923,1142,1150,1151,1154,1155), intvec(766,1111,1140,1148,1151,1154,1157), intvec(772,1061,1141,1147,1152,1153,1156), intvec(774,930,1144,1152,1156,1158,1165), intvec(775,1063,1146,1154,1155,1157,1166), intvec(776,1114,1145,1153,1156,1158,1164), intvec(777,1113,1143,1151,1155,1157,1163), intvec(779,933,1131,1150,1160,1162,1165), intvec(781,1065,1127,1147,1159,1161,1166), intvec(778,1116,1133,1148,1160,1162,1164), intvec(780,1115,1132,1149,1159,1161,1163), intvec(785,1118,1138,1158,1162,1164,1165), intvec(783,1117,1137,1157,1161,1163,1166), intvec(782,935,1135,1155,1159,1163,1166), intvec(784,1067,1136,1156,1160,1164,1165); } if ((polygon=="2x2") and (art=="discriminant")) { list GRAPH= intvec(2,3,4,5,6,7,8,11,12,14,15,19,65,83), intvec(1,7,8,9,10,16,20,25,27,30), intvec(1,6,9,12,13,17,22,24,28,38), intvec(1,10,11,13,14,18,21,23,31,39), intvec(1,15,16,17,18,19,29,34,35,37), intvec(1,3,20,21,40,41,43,66), intvec(1,2,22,23,40,44,46,67), intvec(1,2,24,29,41,47,48,69), intvec(2,3,20,22,24,25,26,32), intvec(2,4,23,26,27,33,42,50), intvec(1,4,28,34,43,51,57,84), intvec(1,3,25,35,44,47,58,71), intvec(3,4,21,26,28,36,45,59), intvec(1,4,27,37,46,52,60,85), intvec(1,5,30,31,48,51,52,95), intvec(2,5,29,30,32,33,53,55), intvec(3,5,32,35,36,38,49,56), intvec(4,5,31,33,34,36,37,39), intvec(1,5,38,39,57,58,60,101), intvec(2,6,9,40,41,42), intvec(4,6,13,42,43,61), intvec(3,7,9,40,44,45), intvec(4,7,10,45,46,61), intvec(3,8,9,41,47,49), intvec(2,9,12,44,47,53), intvec(9,10,13,42,45,54), intvec(2,10,14,46,55,63), intvec(3,11,13,43,56,64), intvec(5,8,16,48,49,62), intvec(2,15,16,48,50,63), intvec(4,15,18,50,51,52), intvec(9,16,17,49,53,54), intvec(10,16,18,50,54,55), intvec(5,11,18,51,56,57), intvec(5,12,17,53,58,62), intvec(13,17,18,54,56,59), intvec(5,14,18,52,55,60), intvec(3,17,19,58,59,64), intvec(4,18,19,57,59,60), intvec(6,7,20,22,61,68), intvec(6,8,20,24,70,77), intvec(10,20,21,26,61,78), intvec(6,11,21,28,75,79), intvec(7,12,22,25,72,80), intvec(13,22,23,26,61,81), intvec(7,14,23,27,76,82), intvec(8,12,24,25,62,74), intvec(8,15,29,30,86,87), intvec(17,24,29,32,62,88), intvec(10,30,31,33,63,89), intvec(11,15,31,34,90,96), intvec(14,15,31,37,63,97), intvec(16,25,32,35,62,98), intvec(26,32,33,36,92,99), intvec(16,27,33,37,63,100), intvec(17,28,34,36,64,94), intvec(11,19,34,39,64,102), intvec(12,19,35,38,105,106), intvec(13,36,38,39,64,107), intvec(14,19,37,39,104,108), intvec(21,23,40,42,45,73), intvec(29,35,47,49,53,91), intvec(27,30,50,52,55,93), intvec(28,38,56,57,59,103), intvec(1,66,67,69,71,83), intvec(6,65,68,70,71,75), intvec(7,65,68,69,72,76), intvec(40,66,67,70,72,73), intvec(8,65,67,70,74,86), intvec(41,66,68,69,74,77), intvec(12,65,66,72,74,105), intvec(44,67,68,71,74,80), intvec(61,68,75,76,78,81), intvec(47,69,70,71,72,91), intvec(43,66,73,79,84,103), intvec(46,67,73,82,85,93), intvec(41,70,78,79,87,88), intvec(42,73,77,79,89,92), intvec(43,75,77,78,90,94), intvec(44,72,81,82,98,106), intvec(45,73,80,82,99,107), intvec(46,76,80,81,100,108), intvec(1,65,84,85,95,101), intvec(11,75,83,85,96,102), intvec(14,76,83,84,97,104), intvec(48,69,87,91,93,95), intvec(48,77,86,88,89,90), intvec(49,77,87,91,92,94), intvec(50,78,87,90,92,93), intvec(51,79,87,89,94,96), intvec(62,74,86,88,98,105), intvec(54,78,88,89,94,99), intvec(63,76,86,89,97,100), intvec(56,79,88,90,92,103), intvec(15,83,86,96,97,101), intvec(51,84,90,95,97,102), intvec(52,85,93,95,96,104), intvec(53,80,91,99,100,106), intvec(54,81,92,98,100,107), intvec(55,82,93,98,99,108), intvec(19,83,95,102,104,105), intvec(57,84,96,101,103,104), intvec(64,75,94,102,105,107), intvec(60,85,97,101,102,108), intvec(58,71,91,101,103,106), intvec(58,80,98,105,107,108), intvec(59,81,99,103,106,108), intvec(60,82,100,104,106,107); } if ((polygon=="2x2") and (art=="numerator")) { list GRAPH= intvec(2,3,4,5,6,7,8,9,10,11,12,13), intvec(1,6,7,8,10,13), intvec(1,6,9,10,12,13), intvec(1,8,9,10,11,13), intvec(1,7,10,11,12,13), intvec(1,2,3,7,8,9,10,11,12,13), intvec(1,2,5,6,8,10,11,12,13), intvec(1,2,4,6,7,9,10,11,13), intvec(1,3,4,6,8,10,11,12,13), intvec(1,2,3,4,5,6,7,8,9,11,12,13), intvec(1,4,5,6,7,8,9,10,12,13), intvec(1,3,5,6,7,9,10,11,13), intvec(1,2,3,4,5,6,7,8,9,10,11,12); } if ((polygon=="2x2") and (art=="secondary")) { list GRAPH= intvec(2,3,4,5,6,7), intvec(1,8,17,22,25,26), intvec(1,15,19,20,21,22,23,24), intvec(1,10,23,26,27,28), intvec(1,9,14,17,18,19), intvec(1,8,9,10,11,12), intvec(1,11,13,14,15,16), intvec(2,6,36,66,74,77), intvec(5,6,34,69,73,77), intvec(4,6,36,37,38,39), intvec(6,7,32,33,34,35), intvec(6,20,35,39,71,72,73,74), intvec(7,25,33,57,58,59), intvec(5,7,34,47,59,70), intvec(3,7,30,47,52,56,58,80), intvec(7,28,29,30,31,32), intvec(2,5,45,65,67,77), intvec(5,27,44,67,68,69), intvec(3,5,43,44,45,46,47), intvec(3,12,43,54,76,78,79,80), intvec(3,48,49,50,51,52), intvec(2,3,42,45,48,64,75,76), intvec(3,4,42,51,55,61,79,81), intvec(3,46,50,53,54,55,56), intvec(2,13,63,64,65,66), intvec(2,4,36,40,41,42), intvec(4,18,37,40,81,82), intvec(4,16,38,60,61,62), intvec(16,31,57,60,164,165), intvec(15,16,61,95,96,97), intvec(16,29,62,70,168,169), intvec(11,16,38,158,164,169), intvec(11,13,66,88,106,141), intvec(9,11,14,88,89,91), intvec(11,12,80,91,105,141,156,158), intvec(8,10,26,132,139,140), intvec(10,27,69,132,133,134), intvec(10,28,32,112,148,172), intvec(10,12,79,104,134,140,148,149), intvec(26,27,67,132,144,166), intvec(26,60,63,139,166,167), intvec(22,23,26,111,125,144,145), intvec(19,20,73,99,118,119,120,121), intvec(18,19,81,98,99,100), intvec(17,19,22,98,119,147,163), intvec(19,24,100,120,160,170), intvec(14,15,19,86,121,170), intvec(21,22,108,109,110,111), intvec(21,78,108,136,142,143), intvec(21,24,131,138,142,157), intvec(21,23,84,111,131,143), intvec(15,21,96,136,137,138), intvec(24,75,130,157,159,160), intvec(20,24,120,128,154,155,159,171), intvec(23,24,85,128,129,130,131), intvec(15,24,97,138,154,170), intvec(13,29,63,87,106,107), intvec(13,15,64,86,137,146), intvec(13,14,65,86,87,88), intvec(28,29,41,62,112,113), intvec(23,28,30,83,84,85), intvec(28,31,60,82,172,174), intvec(25,41,57,150,151,152), intvec(22,25,58,110,123,163), intvec(17,25,59,150,161,163), intvec(8,25,33,151,161,162), intvec(17,18,40,92,98,135), intvec(18,70,82,92,93,94), intvec(9,18,37,94,116,135), intvec(14,31,68,87,89,90), intvec(12,101,115,149,155,156), intvec(12,78,101,102,103,104,105), intvec(9,12,43,91,114,115,116,117), intvec(8,12,76,103,117,140,162), intvec(22,53,109,122,145,147), intvec(20,22,74,119,122,123,124,125), intvec(8,9,17,117,135,161), intvec(20,49,72,124,127,153,171,175), intvec(20,23,39,83,125,126,127,128), intvec(15,20,35,95,121,146,153,154), intvec(23,27,44,126,129,144), intvec(27,62,68,133,166,173), intvec(61,79,95,148,198,241), intvec(51,61,96,113,191,193), intvec(55,61,97,174,191,241), intvec(47,58,59,163,259,278), intvec(57,59,70,150,186,278), intvec(33,34,59,161,186,204), intvec(34,70,94,169,186,212), intvec(70,93,168,170,273,274), intvec(34,35,73,121,204,219,251), intvec(67,68,150,166,183,184), intvec(68,90,100,173,187,188), intvec(68,69,89,133,183,217), intvec(30,80,83,158,244,265), intvec(30,52,84,165,215,236), intvec(30,56,85,168,215,244), intvec(44,45,67,144,263,264), intvec(43,44,116,126,246,263), intvec(44,46,93,129,246,247), intvec(71,72,205,218,254,256), intvec(72,114,175,228,256,257), intvec(72,74,124,222,227,228), intvec(39,72,127,222,254,275), intvec(35,72,153,203,218,221,257), intvec(33,57,151,164,185,186), intvec(57,137,152,165,182,253), intvec(48,49,124,192,252,281), intvec(48,75,157,243,281,287), intvec(48,64,137,152,194,252), intvec(42,48,51,167,192,243), intvec(38,60,139,164,172,230), intvec(60,84,165,167,267,268), intvec(73,102,118,225,251,282), intvec(71,73,206,219,224,225), intvec(69,73,99,134,223,224), intvec(73,74,77,119,210,223,282), intvec(43,114,175,258,269,271), intvec(43,45,76,117,239,263,271,272), intvec(43,46,54,206,246,260,269,270), intvec(43,47,80,91,258,259,260), intvec(75,76,159,229,231,272), intvec(64,76,146,162,232,239), intvec(76,78,103,108,199,231,232,233), intvec(42,76,79,140,199,216,229), intvec(79,81,99,134,196,216), intvec(78,79,104,143,198,199,200), intvec(54,55,79,196,200,207,241,242), intvec(55,81,100,173,196,197), intvec(53,55,145,190,197,242), intvec(50,51,55,189,190,191), intvec(36,37,40,135,176,179), intvec(37,82,94,172,176,177), intvec(37,39,116,126,179,180), intvec(67,69,77,132,183,223), intvec(49,52,153,181,213,236), intvec(52,58,107,110,181,182), intvec(50,52,56,213,214,215), intvec(36,41,112,151,176,245), intvec(36,39,74,125,179,222), intvec(33,35,146,162,203,204), intvec(49,50,171,189,213,284), intvec(49,51,127,189,192,193), intvec(40,42,81,98,216,280), intvec(42,75,130,229,243,280), intvec(58,80,123,141,259,266), intvec(45,75,160,264,272,277), intvec(38,39,83,158,255,275), intvec(39,71,180,207,254,255), intvec(63,65,87,92,209,240), intvec(63,66,106,139,209,226), intvec(63,107,110,167,194,195), intvec(78,80,105,136,250,261,265,266), intvec(54,56,80,208,244,250,260), intvec(54,71,205,206,207,208), intvec(35,71,208,218,219,220), intvec(50,53,109,190,284,285), intvec(32,35,95,148,220,221), intvec(53,54,122,242,248,270), intvec(46,53,147,247,270,276), intvec(65,66,77,88,209,210), intvec(66,74,123,141,210,227), intvec(45,64,65,86,239,240), intvec(29,32,106,112,169,178), intvec(29,96,107,113,201,262), intvec(40,41,82,92,176,279), intvec(41,111,113,152,237,238), intvec(31,90,97,174,201,202), intvec(31,32,89,164,172,211), intvec(46,47,56,90,260,273), intvec(54,78,142,200,205,248,249,250), intvec(38,62,112,133,169,286), intvec(82,93,129,174,234,235), intvec(62,85,168,173,268,283), intvec(78,102,118,233,249,261), intvec(132,133,139,166,183,290), intvec(133,180,217,235,286,321), intvec(164,185,221,230,262,319), intvec(132,134,140,216,223,290), intvec(134,149,177,224,305,321), intvec(136,137,252,253,266,316), intvec(107,137,194,214,278,316), intvec(92,94,135,176,209,304), intvec(92,187,264,277,279,324), intvec(106,178,203,226,253,366), intvec(87,88,89,106,209,348), intvec(93,184,234,247,276,352), intvec(93,217,235,274,293,294), intvec(131,142,143,200,314,315), intvec(130,131,157,243,288,315), intvec(84,85,131,215,268,314), intvec(108,111,143,199,237,291), intvec(84,143,198,236,267,314), intvec(110,152,182,240,287,349), intvec(152,226,237,252,253,349), intvec(126,128,129,246,305,346), intvec(129,130,234,247,280,346), intvec(83,127,193,265,275,298), intvec(124,125,127,192,222,331), intvec(127,128,171,189,298,300,306), intvec(165,168,214,215,268,295), intvec(168,211,274,283,297,360), intvec(105,141,185,227,266,350), intvec(88,91,141,210,259,299), intvec(101,155,171,306,308,343), intvec(115,120,155,294,302,320), intvec(128,149,155,305,306,307), intvec(154,155,156,297,302,308), intvec(150,151,161,183,186,355), intvec(117,161,162,204,239,339), intvec(169,202,212,220,286,319), intvec(89,211,217,219,274,363), intvec(136,138,142,250,317,318), intvec(138,182,201,273,285,317), intvec(96,97,138,191,201,318), intvec(125,126,144,179,263,342), intvec(94,177,188,212,224,326), intvec(101,105,156,308,334,351), intvec(91,115,156,212,302,303), intvec(156,158,211,255,297,334), intvec(105,158,178,265,275,334), intvec(103,104,140,199,245,322), intvec(116,117,135,179,263,304), intvec(115,116,180,217,294,326), intvec(114,115,256,303,320,364), intvec(151,185,195,227,245,365), intvec(103,162,203,226,232,358), intvec(102,103,233,282,358,359), intvec(122,125,145,242,331,342), intvec(112,178,245,267,275,330), intvec(122,124,248,281,331,332), intvec(123,124,227,252,266,345), intvec(124,175,228,271,332,345), intvec(173,187,197,279,288,289), intvec(173,177,188,283,305,362), intvec(96,136,193,262,265,318), intvec(167,192,195,245,267,325), intvec(167,243,279,287,288,325), intvec(119,123,163,210,259,312), intvec(150,163,194,277,278,344), intvec(83,85,128,244,298,307), intvec(128,130,159,229,300,346), intvec(109,111,145,190,238,291), intvec(95,97,154,241,296,297), intvec(139,222,226,230,237,322), intvec(99,100,120,196,294,335), intvec(100,160,187,197,264,335), intvec(159,171,231,284,300,301), intvec(171,175,269,301,311,343), intvec(153,154,171,213,296,308,311), intvec(91,114,257,258,299,303), intvec(108,110,181,195,232,349), intvec(107,181,185,195,262,316), intvec(101,104,149,306,313,328), intvec(148,149,220,286,307,313), intvec(101,102,225,343,351,357), intvec(102,105,251,261,350,351), intvec(118,121,251,261,337,341), intvec(86,121,146,204,239,337), intvec(120,121,154,170,302,341), intvec(153,175,257,258,310,311), intvec(165,178,236,253,267,295), intvec(98,99,119,216,223,333), intvec(98,147,184,247,280,333), intvec(95,153,198,221,236,296), intvec(146,153,181,203,232,310), intvec(113,193,230,237,262,338), intvec(113,174,191,201,288,338), intvec(118,120,249,320,336,341), intvec(120,159,160,272,335,336), intvec(118,119,233,282,312,329), intvec(119,122,147,270,329,333), intvec(90,170,214,276,278,327), intvec(90,188,202,212,302,356), intvec(104,148,198,221,230,313), intvec(160,187,273,277,285,353), intvec(147,184,240,276,287,347), intvec(86,87,182,240,273,309), intvec(166,184,234,238,280,361), intvec(144,145,197,264,279,342), intvec(108,109,231,284,291,292), intvec(114,117,228,271,339,340), intvec(174,202,235,286,307,354), intvec(142,157,248,281,315,323), intvec(157,214,276,287,288,323), intvec(172,177,211,255,283,330), intvec(109,194,238,277,285,292), intvec(190,234,238,268,285,374), intvec(234,346,352,361,362,387), intvec(176,179,304,321,322,361), intvec(192,243,281,315,325,331), intvec(281,287,323,325,349,367), intvec(188,294,326,352,362,375), intvec(188,206,224,246,293,305), intvec(201,262,317,318,338,360), intvec(244,250,265,298,318,370), intvec(202,208,220,244,307,370), intvec(198,200,241,296,314,376), intvec(204,251,337,339,348,350), intvec(200,242,248,315,331,387), intvec(248,249,332,336,384,386), intvec(206,208,219,260,274,373), intvec(219,225,251,351,363,373), intvec(183,223,290,324,326,340), intvec(180,196,207,235,294,362), intvec(200,205,207,254,371,376), intvec(207,241,255,283,297,376), intvec(205,208,218,250,370,381), intvec(278,327,337,344,348,378), intvec(261,266,337,345,350,378), intvec(249,250,261,341,381,385), intvec(239,271,337,339,344,345), intvec(254,255,275,330,334,376), intvec(189,191,193,298,318,338), intvec(189,190,284,291,300,374), intvec(181,182,253,317,349,378), intvec(213,214,295,316,323,385), intvec(213,215,236,295,296,314), intvec(178,211,330,334,360,377), intvec(206,225,269,343,373,375), intvec(177,180,290,326,328,362), intvec(222,245,290,328,359,382), intvec(284,285,292,317,374,384), intvec(184,304,333,352,361,369), intvec(237,238,291,292,374,382), intvec(217,224,293,304,321,364), intvec(273,309,341,353,356,385), intvec(254,321,322,330,357,371), intvec(271,272,332,336,347,369), intvec(230,286,313,319,328,354), intvec(199,229,231,291,300,382), intvec(231,233,301,329,367,368), intvec(263,264,272,324,335,342), intvec(218,220,221,313,319,370), intvec(246,247,270,333,346,352), intvec(269,270,301,329,353,372), intvec(258,259,299,309,310,312), intvec(267,268,295,314,354,374), intvec(210,282,299,312,355,358), intvec(282,304,355,359,364,369), intvec(258,260,269,311,327,373), intvec(216,229,280,333,346,361), intvec(205,249,256,320,380,381), intvec(240,309,312,347,355,379), intvec(232,233,310,312,358,379), intvec(196,197,242,289,335,342), intvec(277,329,344,353,367,369), intvec(186,299,309,355,363,366), intvec(194,195,252,292,316,379), intvec(203,257,299,310,358,366), intvec(218,256,257,303,377,381), intvec(187,289,293,324,335,372), intvec(276,327,336,347,372,384), intvec(283,330,338,360,371,376), intvec(209,339,340,344,348,365), intvec(274,327,363,373,375,383), intvec(256,328,359,364,377,380), intvec(227,228,339,345,350,365), intvec(228,322,340,357,365,368), intvec(202,295,319,354,370,383), intvec(279,289,290,324,342,382), intvec(235,289,293,305,321,371), intvec(212,303,348,356,364,377), intvec(225,326,340,357,363,375), intvec(226,355,358,359,366,379), intvec(185,348,350,365,377,378), intvec(292,332,347,368,379,384), intvec(332,359,367,369,382,386), intvec(324,329,340,347,368,372), intvec(296,297,308,334,360,376), intvec(306,328,354,362,380,387), intvec(336,352,353,369,375,386), intvec(302,303,320,341,356,381), intvec(288,315,323,325,338,387), intvec(293,320,356,364,372,380), intvec(298,306,307,313,354,370), intvec(319,351,357,363,366,383), intvec(309,310,316,366,379,385), intvec(344,345,349,365,367,378), intvec(343,357,371,375,383,386), intvec(308,311,343,351,373,383), intvec(322,325,331,361,368,387), intvec(356,360,377,380,381,385), intvec(301,323,353,367,385,386), intvec(311,317,327,378,383,384), intvec(301,368,372,380,384,387), intvec(289,300,371,374,382,386); } if ((polygon=="4x2") and (art=="discriminant")) { list GRAPH= intvec(2,3,4,5,6,8,9,14,15,22,25,29), intvec(1,4,5,7,9,10,13,15,21), intvec(1,6,7,8,11,12,14,18,22), intvec(1,2,9,11,15,16,19,30), intvec(1,2,12,17,20,24,27,31), intvec(1,3,10,16,17,23,32,35), intvec(2,3,10,11,12,13,18,21), intvec(1,3,13,14,19,20,22,39), intvec(1,2,4,15,18,23), intvec(2,6,7,16,17,23), intvec(3,4,7,16,18,19), intvec(3,5,7,17,20,24), intvec(2,7,8,19,20,21), intvec(1,3,8,21,22,24), intvec(1,2,4,9,26,28), intvec(4,6,10,11,23,36), intvec(5,6,10,12,34,37), intvec(3,7,9,11,23,38), intvec(4,8,11,13,40,42), intvec(5,8,12,13,24,41), intvec(2,7,13,14,24,44), intvec(1,3,8,14,45,46), intvec(6,9,10,16,18,33), intvec(5,12,14,20,21,43), intvec(1,26,27,29,32,45), intvec(15,25,27,28,30,33), intvec(5,25,26,31,34,43), intvec(15,26,38,42,44,46), intvec(1,25,30,31,35,39), intvec(4,26,29,31,36,40), intvec(5,27,29,30,37,41), intvec(6,25,33,34,35,45), intvec(23,26,32,34,36,38), intvec(17,27,32,33,37,43), intvec(6,29,32,36,37,39), intvec(16,30,33,35,37,40), intvec(17,31,34,35,36,41), intvec(18,28,33,42,44,46), intvec(8,29,35,40,41,45), intvec(19,30,36,39,41,42), intvec(20,31,37,39,40,43), intvec(19,28,38,40,44,46), intvec(24,27,34,41,44,45), intvec(21,28,38,42,43,46), intvec(22,25,32,39,43,46), intvec(22,28,38,42,44,45); } if ((polygon=="4x2") and (art=="numerator")) { list GRAPH= intvec(2,3,4,5,6,7,8,9), intvec(1,4,5,6,7,8,9), intvec(1,4,5,6,7,8,9), intvec(1,2,3,5,6,7,8), intvec(1,2,3,4,6,7,9), intvec(1,2,3,4,5,7,8,9), intvec(1,2,3,4,5,6,8,9), intvec(1,2,3,4,6,7,9), intvec(1,2,3,5,6,7,8); } if ((polygon=="4x2") and (art=="secondary")) { list GRAPH= intvec(2,3,4,5,6,7,8), intvec(1,9,10,11,12,13,14), intvec(1,20,24,27,30,32,33), intvec(1,9,15,22,24,25,26), intvec(1,10,16,28,29,30,31), intvec(1,11,18,20,21,22,23), intvec(1,13,15,16,17,18,19), intvec(1,14,19,21,26,27,28), intvec(2,4,43,47,48,49,50), intvec(2,5,41,68,71,74,82), intvec(2,6,42,43,44,45,46), intvec(2,32,45,48,74,75), intvec(2,7,46,49,64,68), intvec(2,8,42,50,64,71,75), intvec(4,7,49,55,58,66,73), intvec(5,7,39,67,68,69,70), intvec(7,33,59,70,73,80), intvec(6,7,46,57,58,59,60), intvec(7,8,57,64,65,66,67), intvec(3,6,37,62,77,84,85), intvec(6,8,42,57,76,77,78), intvec(4,6,43,58,62,78), intvec(6,29,44,60,85,86), intvec(3,4,36,56,61,62,63), intvec(4,31,47,54,55,56), intvec(4,8,50,54,63,66,78), intvec(3,8,35,53,63,77,79), intvec(5,8,38,53,67,71,72), intvec(5,23,51,69,81,82), intvec(3,5,34,40,51,52,53), intvec(5,25,38,39,40,41), intvec(3,12,34,35,36,37), intvec(3,17,52,61,83,84), intvec(30,32,74,116,143,144), intvec(27,32,75,92,116,131), intvec(24,32,48,91,126,131), intvec(20,32,45,90,91,92), intvec(28,31,54,111,119,139), intvec(16,31,55,112,139,141), intvec(30,31,56,97,119,143), intvec(10,31,47,111,112,113), intvec(11,14,21,105,106,107,108), intvec(9,11,22,106,114,115), intvec(11,23,82,133,149,157), intvec(11,12,37,108,115,149), intvec(11,13,18,107,114,133), intvec(9,25,41,99,100,101), intvec(9,12,36,101,115,136), intvec(9,13,15,93,100,114), intvec(9,14,26,93,99,106,136), intvec(29,30,85,98,144,145), intvec(30,33,70,96,97,98), intvec(27,28,30,116,117,118,119), intvec(25,26,38,94,99,125), intvec(15,25,39,94,100,137), intvec(24,25,40,124,125,126), intvec(18,19,21,95,107,129,130), intvec(15,18,22,95,114,138), intvec(17,18,84,138,147,148), intvec(18,23,69,133,147,150), intvec(24,33,73,124,134,135), intvec(20,22,24,91,128,135), intvec(24,26,27,125,128,131,132), intvec(13,14,19,93,107,123), intvec(19,79,80,87,88,89), intvec(15,19,26,88,93,94,95), intvec(16,19,28,87,123,139,146), intvec(10,13,16,102,112,123), intvec(16,29,60,102,142,161), intvec(16,17,52,120,141,142), intvec(10,14,28,111,123,140,160), intvec(28,76,81,118,159,160), intvec(15,17,61,121,137,138), intvec(10,12,34,104,113,140), intvec(12,14,35,108,136,140), intvec(21,72,86,105,109,110), intvec(20,21,27,92,110,127,128), intvec(21,22,26,95,106,128), intvec(27,65,83,117,132,158), intvec(17,65,83,120,121,122), intvec(29,72,86,103,145,151), intvec(10,29,44,102,103,104), intvec(33,79,80,96,134,154), intvec(20,33,59,135,152,153), intvec(20,23,51,90,152,155), intvec(23,76,81,155,156,157), intvec(65,67,117,120,174,175), intvec(65,66,121,132,216,217), intvec(65,122,130,158,217,233), intvec(37,85,144,149,218,238), intvec(36,37,62,115,183,184), intvec(35,37,77,108,183,198), intvec(49,50,64,66,181,194), intvec(54,55,66,139,194,216), intvec(57,58,66,78,181,242), intvec(52,83,117,120,212,213), intvec(40,52,124,141,212,239), intvec(51,52,142,152,214,215), intvec(47,50,54,111,164,194), intvec(47,49,55,112,194,195), intvec(47,48,113,126,164,193), intvec(68,69,82,133,191,192), intvec(81,82,157,160,222,246), intvec(74,82,144,149,246,247), intvec(42,76,157,160,201,209), intvec(42,43,50,78,165,181), intvec(42,46,57,64,181,182), intvec(42,45,75,92,165,201), intvec(76,129,156,159,209,211), intvec(76,77,118,155,198,254), intvec(38,41,71,99,166,167), intvec(39,41,68,100,166,225), intvec(41,74,101,143,167,236), intvec(43,46,49,58,181,224), intvec(43,45,48,91,165,186), intvec(34,35,53,140,176,177), intvec(53,79,87,96,227,241), intvec(53,72,110,145,176,245), intvec(38,40,53,125,177,227), intvec(70,80,87,96,231,255), intvec(73,80,88,134,202,204), intvec(80,89,148,154,202,203), intvec(64,67,68,71,166,178), intvec(56,61,97,137,172,251), intvec(54,56,63,119,187,197), intvec(36,56,101,143,187,188), intvec(77,130,153,158,249,250), intvec(62,63,77,78,183,249), intvec(57,109,146,150,182,220), intvec(57,89,127,148,242,252), intvec(35,36,63,136,183,187), intvec(63,79,88,134,197,208), intvec(44,46,60,102,229,230), intvec(61,83,121,132,172,173), intvec(61,62,84,138,206,207), intvec(48,50,75,131,164,165), intvec(55,73,124,141,204,221), intvec(58,59,73,135,170,210), intvec(38,39,67,94,166,174), intvec(71,74,75,116,167,185), intvec(39,70,97,137,231,232), intvec(69,70,98,147,234,235), intvec(34,40,113,126,177,248), intvec(34,51,90,104,189,205), intvec(51,81,118,155,189,190), intvec(67,129,159,161,178,243), intvec(59,60,142,152,168,169), intvec(59,122,130,153,170,171), intvec(44,45,90,104,199,240), intvec(60,129,156,161,229,237), intvec(81,156,159,161,222,223), intvec(84,85,98,147,162,163), intvec(84,127,148,154,206,228), intvec(83,122,153,158,173,200), intvec(85,86,110,145,218,219), intvec(86,109,150,151,179,180), intvec(44,86,103,105,179,199), intvec(79,89,127,154,208,253), intvec(72,109,146,151,226,244), intvec(71,72,103,105,185,226), intvec(69,146,150,151,191,196), intvec(152,163,168,207,214,238), intvec(152,162,169,215,219,228), intvec(99,101,136,167,187,274), intvec(106,108,115,136,183,276), intvec(111,112,123,139,194,275), intvec(111,113,140,164,177,264), intvec(147,162,169,210,230,234), intvec(147,163,168,171,235,237), intvec(138,148,202,206,242,295), intvec(148,169,203,228,252,295), intvec(124,134,197,204,212,258), intvec(134,154,202,206,208,268), intvec(87,139,216,227,231,266), intvec(87,233,241,243,255,266), intvec(116,118,185,189,198,279), intvec(116,119,143,167,187,284), intvec(123,146,182,191,226,256), intvec(156,157,209,222,229,277), intvec(156,211,219,223,237,277), intvec(93,95,106,107,114,269), intvec(107,129,178,209,229,283), intvec(91,92,128,131,165,288), intvec(91,186,188,207,238,288), intvec(140,160,176,201,246,281), intvec(115,184,193,224,240,276), intvec(125,126,131,164,177,261), intvec(126,184,193,248,251,261), intvec(144,145,176,218,246,282), intvec(145,215,219,223,245,282), intvec(102,161,178,222,229,260), intvec(102,225,230,234,247,260), intvec(101,186,188,195,236,274), intvec(93,94,99,100,166,285), intvec(100,193,221,224,225,285), intvec(161,223,235,237,243,260), intvec(125,132,172,216,227,290), intvec(92,110,176,201,218,262), intvec(149,157,201,218,246,267), intvec(154,203,213,228,253,268), intvec(105,108,185,198,199,273), intvec(121,122,170,173,217,271), intvec(122,171,200,233,255,271), intvec(121,137,172,216,231,292), intvec(144,214,238,247,248,282), intvec(135,153,170,173,249,259), intvec(135,162,184,210,251,259), intvec(132,158,173,217,249,257), intvec(105,109,179,182,226,289), intvec(138,168,207,221,224,295), intvec(109,180,220,244,254,289), intvec(96,97,172,227,231,291), intvec(96,200,215,241,255,291), intvec(98,162,205,215,234,239), intvec(98,163,190,213,214,235), intvec(88,94,174,197,204,296), intvec(88,89,202,208,242,287), intvec(90,155,189,198,199,286), intvec(155,163,180,190,254,286), intvec(129,211,237,243,252,283), intvec(137,195,210,232,251,292), intvec(103,151,179,191,226,280), intvec(151,180,190,196,244,280), intvec(114,186,195,210,230,269), intvec(112,192,195,232,236,275), intvec(159,160,178,209,222,293), intvec(117,119,174,197,212,270), intvec(153,163,171,200,250,259), intvec(133,150,179,182,191,294), intvec(133,168,192,224,240,294), intvec(120,141,174,204,212,265), intvec(141,221,225,234,239,265), intvec(89,175,203,252,253,287), intvec(142,168,192,214,232,235), intvec(142,169,196,215,234,255), intvec(113,193,225,247,248,264), intvec(150,169,180,196,220,294), intvec(90,162,184,205,240,286), intvec(97,214,232,248,251,291), intvec(149,186,230,238,247,267), intvec(117,175,213,245,253,270), intvec(95,130,170,217,249,278), intvec(146,175,196,220,244,256), intvec(159,211,223,243,245,293), intvec(118,190,241,244,254,279), intvec(103,104,185,189,199,263), intvec(104,192,205,236,240,263), intvec(143,188,205,236,239,284), intvec(127,128,206,208,242,272), intvec(127,228,252,253,254,272), intvec(124,188,207,221,239,258), intvec(130,171,220,233,250,278), intvec(158,200,233,241,250,257), intvec(110,211,219,245,250,262), intvec(120,175,203,213,235,265), intvec(178,243,260,275,283,293), intvec(208,253,268,272,287,290), intvec(172,251,268,290,291,292), intvec(206,207,228,268,272,295), intvec(191,192,196,256,280,294), intvec(187,188,274,284,288,290), intvec(198,254,273,279,286,288), intvec(246,247,267,280,281,282), intvec(167,236,274,275,281,284), intvec(231,232,255,266,291,292), intvec(174,175,265,270,275,296), intvec(199,240,263,273,277,286), intvec(173,200,257,258,259,271), intvec(181,224,276,278,283,285), intvec(227,241,266,284,290,291), intvec(202,203,268,287,292,295), intvec(249,250,257,259,278,288), intvec(201,262,267,276,281,289), intvec(164,193,261,264,276,285), intvec(166,225,256,264,266,285), intvec(165,186,269,273,274,288), intvec(179,180,267,280,289,294), intvec(242,252,269,272,287,295), intvec(176,245,262,281,282,284), intvec(222,223,260,263,277,293), intvec(185,263,264,273,279,293), intvec(189,190,205,263,279,286), intvec(182,220,256,269,289,294), intvec(177,248,261,264,270,279), intvec(194,195,269,274,275,296), intvec(218,219,238,262,267,282), intvec(217,233,257,271,278,296), intvec(183,184,261,262,272,276), intvec(209,211,273,277,283,293), intvec(197,257,258,261,270,296), intvec(212,213,239,258,265,270), intvec(204,221,258,265,271,296), intvec(226,244,256,280,281,289), intvec(229,230,237,260,277,283), intvec(170,171,210,259,271,278), intvec(216,266,285,287,290,292); } return(GRAPH); } static proc triangulationsDatabase (int n,string polygon) "USAGE: triangulationsDatabase(n,polygon,art); n int, polygon,art string ASSUME: polygon is one of the following strings discribing the type of curve to be considered: - 'cubic' : describing a cubic - '2x2' : describing a curve of type (2,2) - '4x2' : describing a curve of type (4,2) RETURN: list, the nth triangulation of the polytope" { list T; if (polygon=="cubic") { T[1]=list(intvec(1,2,5),intvec(1,5,10),intvec(1,2,10)); T[2]=list(intvec(1,2,5),intvec(1,9,10),intvec(1,5,9),intvec(1,2,10)); T[3]=list(intvec(1,2,8),intvec(1,8,10),intvec(1,2,5),intvec(1,9,10),intvec(1,5,9)); T[4]=list(intvec(1,2,6),intvec(1,2,5),intvec(1,6,10),intvec(1,5,10)); T[5]=list(intvec(1,2,3),intvec(1,3,5),intvec(1,5,10),intvec(1,2,10)); T[6]=list(intvec(1,5,7),intvec(1,7,9),intvec(1,2,5),intvec(1,9,10),intvec(1,2,10)); T[7]=list(intvec(1,2,8),intvec(1,8,10),intvec(1,2,5),intvec(1,5,10)); T[8]=list(intvec(1,2,6),intvec(1,2,5),intvec(1,9,10),intvec(1,5,9),intvec(1,6,10)); T[9]=list(intvec(1,5,7),intvec(1,7,10),intvec(1,2,5),intvec(1,2,10)); T[10]=list(intvec(1,4,5),intvec(1,2,4),intvec(1,5,10),intvec(1,2,10)); T[11]=list(intvec(1,2,3),intvec(1,3,5),intvec(1,9,10),intvec(1,5,9),intvec(1,2,10)); T[12]=list(intvec(1,4,5),intvec(1,2,4),intvec(1,9,10),intvec(1,5,9),intvec(1,2,10)); T[13]=list(intvec(1,4,5),intvec(1,2,8),intvec(1,2,4),intvec(1,8,10),intvec(1,5,10)); T[14]=list(intvec(1,4,5),intvec(1,2,6),intvec(1,2,4),intvec(1,6,10),intvec(1,5,10)); T[15]=list(intvec(1,2,6),intvec(1,5,7),intvec(1,7,10),intvec(1,2,5),intvec(1,6,10)); T[16]=list(intvec(1,4,5),intvec(1,5,7),intvec(1,7,9),intvec(1,2,4),intvec(1,9,10),intvec(1,2,10)); T[17]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,4,5),intvec(1,9,10),intvec(1,5,9),intvec(1,2,10)); T[18]=list(intvec(1,2,3),intvec(1,2,8),intvec(1,3,5),intvec(1,8,10),intvec(1,5,10)); T[19]=list(intvec(1,2,6),intvec(1,6,8),intvec(1,8,10),intvec(1,2,5),intvec(1,5,10)); T[20]=list(intvec(1,2,3),intvec(1,2,6),intvec(1,3,5),intvec(1,6,10),intvec(1,5,10)); T[21]=list(intvec(1,5,7),intvec(1,2,8),intvec(1,8,10),intvec(1,7,10),intvec(1,2,5)); T[22]=list(intvec(1,5,7),intvec(1,2,8),intvec(1,7,9),intvec(1,8,10),intvec(1,2,5),intvec(1,9,10)); T[23]=list(intvec(1,2,3),intvec(1,2,8),intvec(1,3,5),intvec(1,8,10),intvec(1,9,10),intvec(1,5,9)); T[24]=list(intvec(1,2,3),intvec(1,5,7),intvec(1,7,9),intvec(1,3,5),intvec(1,9,10),intvec(1,2,10)); T[25]=list(intvec(1,2,6),intvec(1,5,7),intvec(1,7,9),intvec(1,2,5),intvec(1,9,10),intvec(1,6,10)); T[26]=list(intvec(1,2,3),intvec(1,2,6),intvec(1,3,5),intvec(1,9,10),intvec(1,5,9),intvec(1,6,10)); T[27]=list(intvec(1,2,3),intvec(1,5,7),intvec(1,3,5),intvec(1,7,10),intvec(1,2,10)); T[28]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,4,5),intvec(1,5,10),intvec(1,2,10)); T[29]=list(intvec(1,4,5),intvec(1,5,7),intvec(1,2,4),intvec(1,7,10),intvec(1,2,10)); T[30]=list(intvec(1,2,6),intvec(1,6,8),intvec(1,8,10),intvec(1,2,5),intvec(1,9,10),intvec(1,5,9)); T[31]=list(intvec(1,4,5),intvec(1,2,8),intvec(1,2,4),intvec(1,8,10),intvec(1,9,10),intvec(1,5,9)); T[32]=list(intvec(1,4,5),intvec(1,2,6),intvec(1,2,4),intvec(1,9,10),intvec(1,5,9),intvec(1,6,10)); T[33]=list(intvec(1,2,6),intvec(1,5,7),intvec(1,6,8),intvec(1,8,10),intvec(1,7,10),intvec(1,2,5)); T[34]=list(intvec(1,2,3),intvec(1,2,6),intvec(1,5,7),intvec(1,3,5),intvec(1,7,10),intvec(1,6,10)); T[35]=list(intvec(1,4,5),intvec(1,2,6),intvec(1,5,7),intvec(1,2,4),intvec(1,7,10),intvec(1,6,10)); T[36]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,4,5),intvec(1,5,7),intvec(1,7,10),intvec(1,2,10)); T[37]=list(intvec(1,4,5),intvec(1,5,7),intvec(1,2,8),intvec(1,7,9),intvec(1,2,4),intvec(1,8,10),intvec(1,9,10)); T[38]=list(intvec(1,2,3),intvec(1,5,7),intvec(1,2,8),intvec(1,7,9),intvec(1,3,5),intvec(1,8,10),intvec(1,9,10)); T[39]=list(intvec(1,2,6),intvec(1,5,7),intvec(1,6,8),intvec(1,7,9),intvec(1,8,10),intvec(1,2,5),intvec(1,9,10)); T[40]=list(intvec(1,4,5),intvec(1,5,7),intvec(1,2,8),intvec(1,2,4),intvec(1,8,10),intvec(1,7,10)); T[41]=list(intvec(1,2,3),intvec(1,5,7),intvec(1,2,8),intvec(1,3,5),intvec(1,8,10),intvec(1,7,10)); T[42]=list(intvec(1,2,3),intvec(1,2,6),intvec(1,6,8),intvec(1,3,5),intvec(1,8,10),intvec(1,5,10)); T[43]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,4,5),intvec(1,2,8),intvec(1,8,10),intvec(1,5,10)); T[44]=list(intvec(1,4,5),intvec(1,2,6),intvec(1,6,8),intvec(1,2,4),intvec(1,8,10),intvec(1,5,10)); T[45]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,4,5),intvec(1,2,6),intvec(1,6,10),intvec(1,5,10)); T[46]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,4,5),intvec(1,2,8),intvec(1,8,10),intvec(1,9,10),intvec(1,5,9)); T[47]=list(intvec(1,4,5),intvec(1,2,6),intvec(1,6,8),intvec(1,2,4),intvec(1,8,10),intvec(1,9,10),intvec(1,5,9)); T[48]=list(intvec(1,2,3),intvec(1,2,6),intvec(1,6,8),intvec(1,3,5),intvec(1,8,10),intvec(1,9,10),intvec(1,5,9)); T[49]=list(intvec(1,2,3),intvec(1,2,6),intvec(1,5,7),intvec(1,7,9),intvec(1,3,5),intvec(1,9,10),intvec(1,6,10)); T[50]=list(intvec(1,4,5),intvec(1,2,6),intvec(1,5,7),intvec(1,7,9),intvec(1,2,4),intvec(1,9,10),intvec(1,6,10)); T[51]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,4,5),intvec(1,5,7),intvec(1,7,9),intvec(1,9,10),intvec(1,2,10)); T[52]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,4,5),intvec(1,2,6),intvec(1,9,10),intvec(1,5,9),intvec(1,6,10)); T[53]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,4,5),intvec(1,5,7),intvec(1,2,8),intvec(1,7,9),intvec(1,8,10),intvec(1,9,10)); T[54]=list(intvec(1,4,5),intvec(1,2,6),intvec(1,5,7),intvec(1,6,8),intvec(1,7,9),intvec(1,2,4),intvec(1,8,10),intvec(1,9,10)); T[55]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,4,5),intvec(1,2,6),intvec(1,5,7),intvec(1,7,9),intvec(1,9,10),intvec(1,6,10)); T[56]=list(intvec(1,2,3),intvec(1,2,6),intvec(1,5,7),intvec(1,6,8),intvec(1,7,9),intvec(1,3,5),intvec(1,8,10),intvec(1,9,10)); T[57]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,4,5),intvec(1,2,6),intvec(1,6,8),intvec(1,8,10),intvec(1,9,10),intvec(1,5,9)); T[58]=list(intvec(1,2,3),intvec(1,2,6),intvec(1,5,7),intvec(1,6,8),intvec(1,3,5),intvec(1,8,10),intvec(1,7,10)); T[59]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,4,5),intvec(1,2,6),intvec(1,6,8),intvec(1,8,10),intvec(1,5,10)); T[60]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,4,5),intvec(1,5,7),intvec(1,2,8),intvec(1,8,10),intvec(1,7,10)); T[61]=list(intvec(1,4,5),intvec(1,2,6),intvec(1,5,7),intvec(1,6,8),intvec(1,2,4),intvec(1,8,10),intvec(1,7,10)); T[62]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,4,5),intvec(1,2,6),intvec(1,5,7),intvec(1,7,10),intvec(1,6,10)); T[63]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,4,5),intvec(1,2,6),intvec(1,5,7),intvec(1,6,8),intvec(1,8,10),intvec(1,7,10)); T[64]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,4,5),intvec(1,2,6),intvec(1,5,7),intvec(1,6,8),intvec(1,7,9),intvec(1,8,10),intvec(1,9,10)); T[65]=list(intvec(4,5,7),intvec(1,4,7),intvec(1,7,9),intvec(1,2,4),intvec(1,9,10),intvec(1,2,10)); T[66]=list(intvec(4,5,7),intvec(1,4,7),intvec(1,2,4),intvec(1,7,10),intvec(1,2,10)); T[67]=list(intvec(1,2,6),intvec(4,5,7),intvec(1,4,7),intvec(1,2,4),intvec(1,7,10),intvec(1,6,10)); T[68]=list(intvec(4,5,7),intvec(1,4,7),intvec(1,2,8),intvec(1,2,4),intvec(1,8,10),intvec(1,7,10)); T[69]=list(intvec(1,2,6),intvec(4,5,7),intvec(1,4,7),intvec(1,7,9),intvec(1,2,4),intvec(1,9,10),intvec(1,6,10)); T[70]=list(intvec(1,2,3),intvec(1,3,4),intvec(4,5,7),intvec(1,4,7),intvec(1,7,9),intvec(1,9,10),intvec(1,2,10)); T[71]=list(intvec(4,5,7),intvec(1,4,7),intvec(1,2,8),intvec(1,7,9),intvec(1,2,4),intvec(1,8,10),intvec(1,9,10)); T[72]=list(intvec(1,2,3),intvec(1,3,4),intvec(4,5,7),intvec(1,4,7),intvec(1,7,10),intvec(1,2,10)); T[73]=list(intvec(1,2,3),intvec(1,3,4),intvec(4,5,7),intvec(1,4,7),intvec(1,2,8),intvec(1,7,9),intvec(1,8,10),intvec(1,9,10)); T[74]=list(intvec(1,2,3),intvec(1,3,4),intvec(4,5,7),intvec(1,4,7),intvec(1,2,8),intvec(1,8,10),intvec(1,7,10)); T[75]=list(intvec(1,2,6),intvec(1,6,8),intvec(4,5,7),intvec(1,4,7),intvec(1,2,4),intvec(1,8,10),intvec(1,7,10)); T[76]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,2,6),intvec(4,5,7),intvec(1,4,7),intvec(1,7,10),intvec(1,6,10)); T[77]=list(intvec(1,2,6),intvec(1,6,8),intvec(4,5,7),intvec(1,4,7),intvec(1,7,9),intvec(1,2,4),intvec(1,8,10),intvec(1,9,10)); T[78]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,2,6),intvec(4,5,7),intvec(1,4,7),intvec(1,7,9),intvec(1,9,10),intvec(1,6,10)); T[79]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,2,6),intvec(1,6,8),intvec(4,5,7),intvec(1,4,7),intvec(1,7,9),intvec(1,8,10),intvec(1,9,10)); T[80]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,2,6),intvec(1,6,8),intvec(4,5,7),intvec(1,4,7),intvec(1,8,10),intvec(1,7,10)); T[81]=list(intvec(8,9,10),intvec(1,2,8),intvec(1,8,9),intvec(1,2,5),intvec(1,5,9)); T[82]=list(intvec(1,5,7),intvec(8,9,10),intvec(1,2,8),intvec(1,8,9),intvec(1,7,9),intvec(1,2,5)); T[83]=list(intvec(1,4,5),intvec(8,9,10),intvec(1,2,8),intvec(1,8,9),intvec(1,2,4),intvec(1,5,9)); T[84]=list(intvec(1,2,3),intvec(8,9,10),intvec(1,2,8),intvec(1,8,9),intvec(1,3,5),intvec(1,5,9)); T[85]=list(intvec(1,2,6),intvec(1,6,8),intvec(8,9,10),intvec(1,8,9),intvec(1,2,5),intvec(1,5,9)); T[86]=list(intvec(1,4,5),intvec(1,5,7),intvec(8,9,10),intvec(1,2,8),intvec(1,8,9),intvec(1,7,9),intvec(1,2,4)); T[87]=list(intvec(1,2,6),intvec(1,5,7),intvec(1,6,8),intvec(8,9,10),intvec(1,8,9),intvec(1,7,9),intvec(1,2,5)); T[88]=list(intvec(1,2,3),intvec(1,5,7),intvec(8,9,10),intvec(1,2,8),intvec(1,8,9),intvec(1,7,9),intvec(1,3,5)); T[89]=list(intvec(1,2,3),intvec(1,2,6),intvec(1,6,8),intvec(8,9,10),intvec(1,8,9),intvec(1,3,5),intvec(1,5,9)); T[90]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,4,5),intvec(8,9,10),intvec(1,2,8),intvec(1,8,9),intvec(1,5,9)); T[91]=list(intvec(1,4,5),intvec(1,2,6),intvec(1,6,8),intvec(8,9,10),intvec(1,8,9),intvec(1,2,4),intvec(1,5,9)); T[92]=list(intvec(1,2,3),intvec(1,2,6),intvec(1,5,7),intvec(1,6,8),intvec(8,9,10),intvec(1,8,9),intvec(1,7,9),intvec(1,3,5)); T[93]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,4,5),intvec(1,5,7),intvec(8,9,10),intvec(1,2,8),intvec(1,8,9),intvec(1,7,9)); T[94]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,4,5),intvec(1,2,6),intvec(1,6,8),intvec(8,9,10),intvec(1,8,9),intvec(1,5,9)); T[95]=list(intvec(1,4,5),intvec(1,2,6),intvec(1,5,7),intvec(1,6,8),intvec(8,9,10),intvec(1,8,9),intvec(1,7,9),intvec(1,2,4)); T[96]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,4,5),intvec(1,2,6),intvec(1,5,7),intvec(1,6,8),intvec(8,9,10),intvec(1,8,9),intvec(1,7,9)); T[97]=list(intvec(2,3,6),intvec(1,3,6),intvec(1,3,5),intvec(1,9,10),intvec(1,5,9),intvec(1,6,10)); T[98]=list(intvec(2,3,6),intvec(1,3,6),intvec(1,3,5),intvec(1,6,10),intvec(1,5,10)); T[99]=list(intvec(1,3,4),intvec(1,4,5),intvec(2,3,6),intvec(1,3,6),intvec(1,6,10),intvec(1,5,10)); T[100]=list(intvec(1,5,7),intvec(2,3,6),intvec(1,3,6),intvec(1,3,5),intvec(1,7,10),intvec(1,6,10)); T[101]=list(intvec(1,6,8),intvec(2,3,6),intvec(1,3,6),intvec(1,3,5),intvec(1,8,10),intvec(1,5,10)); T[102]=list(intvec(1,5,7),intvec(1,7,9),intvec(2,3,6),intvec(1,3,6),intvec(1,3,5),intvec(1,9,10),intvec(1,6,10)); T[103]=list(intvec(1,6,8),intvec(2,3,6),intvec(1,3,6),intvec(1,3,5),intvec(1,8,10),intvec(1,9,10),intvec(1,5,9)); T[104]=list(intvec(1,3,4),intvec(1,4,5),intvec(2,3,6),intvec(1,3,6),intvec(1,9,10),intvec(1,5,9),intvec(1,6,10)); T[105]=list(intvec(1,5,7),intvec(1,6,8),intvec(2,3,6),intvec(1,3,6),intvec(1,3,5),intvec(1,8,10),intvec(1,7,10)); T[106]=list(intvec(1,3,4),intvec(1,4,5),intvec(1,5,7),intvec(2,3,6),intvec(1,3,6),intvec(1,7,10),intvec(1,6,10)); T[107]=list(intvec(1,3,4),intvec(1,4,5),intvec(1,6,8),intvec(2,3,6),intvec(1,3,6),intvec(1,8,10),intvec(1,9,10),intvec(1,5,9)); T[108]=list(intvec(1,5,7),intvec(1,6,8),intvec(1,7,9),intvec(2,3,6),intvec(1,3,6),intvec(1,3,5),intvec(1,8,10),intvec(1,9,10)); T[109]=list(intvec(1,3,4),intvec(1,4,5),intvec(1,6,8),intvec(2,3,6),intvec(1,3,6),intvec(1,8,10),intvec(1,5,10)); T[110]=list(intvec(1,3,4),intvec(1,4,5),intvec(1,5,7),intvec(1,7,9),intvec(2,3,6),intvec(1,3,6),intvec(1,9,10),intvec(1,6,10)); T[111]=list(intvec(1,3,4),intvec(1,4,5),intvec(1,5,7),intvec(1,6,8),intvec(1,7,9),intvec(2,3,6),intvec(1,3,6),intvec(1,8,10),intvec(1,9,10)); T[112]=list(intvec(1,3,4),intvec(1,4,5),intvec(1,5,7),intvec(1,6,8),intvec(2,3,6),intvec(1,3,6),intvec(1,8,10),intvec(1,7,10)); T[113]=list(intvec(1,2,3),intvec(1,7,9),intvec(3,5,7),intvec(1,3,7),intvec(1,9,10),intvec(1,2,10)); T[114]=list(intvec(1,2,3),intvec(4,5,7),intvec(1,7,9),intvec(1,3,7),intvec(1,9,10),intvec(3,4,7),intvec(1,2,10)); T[115]=list(intvec(1,2,3),intvec(1,7,10),intvec(3,5,7),intvec(1,3,7),intvec(1,2,10)); T[116]=list(intvec(1,2,3),intvec(4,5,7),intvec(1,7,10),intvec(1,3,7),intvec(3,4,7),intvec(1,2,10)); T[117]=list(intvec(1,2,3),intvec(1,2,6),intvec(4,5,7),intvec(1,7,10),intvec(1,3,7),intvec(3,4,7),intvec(1,6,10)); T[118]=list(intvec(1,2,3),intvec(4,5,7),intvec(1,2,8),intvec(1,8,10),intvec(1,7,10),intvec(1,3,7),intvec(3,4,7)); T[119]=list(intvec(1,2,3),intvec(1,2,6),intvec(1,7,10),intvec(3,5,7),intvec(1,3,7),intvec(1,6,10)); T[120]=list(intvec(1,2,3),intvec(1,2,8),intvec(1,7,9),intvec(1,8,10),intvec(3,5,7),intvec(1,3,7),intvec(1,9,10)); T[121]=list(intvec(1,2,3),intvec(1,2,6),intvec(1,7,9),intvec(3,5,7),intvec(1,3,7),intvec(1,9,10),intvec(1,6,10)); T[122]=list(intvec(1,2,3),intvec(4,5,7),intvec(1,2,8),intvec(1,7,9),intvec(1,8,10),intvec(1,3,7),intvec(1,9,10),intvec(3,4,7)); T[123]=list(intvec(1,2,3),intvec(1,2,6),intvec(4,5,7),intvec(1,7,9),intvec(1,3,7),intvec(1,9,10),intvec(3,4,7),intvec(1,6,10)); T[124]=list(intvec(1,2,3),intvec(1,2,8),intvec(1,8,10),intvec(1,7,10),intvec(3,5,7),intvec(1,3,7)); T[125]=list(intvec(1,2,3),intvec(1,2,6),intvec(1,6,8),intvec(4,5,7),intvec(1,7,9),intvec(1,8,10),intvec(1,3,7),intvec(1,9,10),intvec(3,4,7)); T[126]=list(intvec(1,2,3),intvec(1,2,6),intvec(1,6,8),intvec(1,8,10),intvec(1,7,10),intvec(3,5,7),intvec(1,3,7)); T[127]=list(intvec(1,2,3),intvec(1,2,6),intvec(1,6,8),intvec(4,5,7),intvec(1,8,10),intvec(1,7,10),intvec(1,3,7),intvec(3,4,7)); T[128]=list(intvec(1,2,3),intvec(1,2,6),intvec(1,6,8),intvec(1,7,9),intvec(1,8,10),intvec(3,5,7),intvec(1,3,7),intvec(1,9,10)); T[129]=list(intvec(4,5,7),intvec(1,2,4),intvec(1,9,10),intvec(1,4,9),intvec(4,7,9),intvec(1,2,10)); T[130]=list(intvec(1,2,4),intvec(1,9,10),intvec(4,5,9),intvec(1,4,9),intvec(1,2,10)); T[131]=list(intvec(1,2,8),intvec(1,2,4),intvec(1,8,10),intvec(1,9,10),intvec(4,5,9),intvec(1,4,9)); T[132]=list(intvec(1,2,6),intvec(4,5,7),intvec(1,2,4),intvec(1,9,10),intvec(1,6,10),intvec(1,4,9),intvec(4,7,9)); T[133]=list(intvec(1,2,3),intvec(1,3,4),intvec(4,5,7),intvec(1,9,10),intvec(1,4,9),intvec(4,7,9),intvec(1,2,10)); T[134]=list(intvec(4,5,7),intvec(1,2,8),intvec(1,2,4),intvec(1,8,10),intvec(1,9,10),intvec(1,4,9),intvec(4,7,9)); T[135]=list(intvec(1,2,6),intvec(1,2,4),intvec(1,9,10),intvec(1,6,10),intvec(4,5,9),intvec(1,4,9)); T[136]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,9,10),intvec(4,5,9),intvec(1,4,9),intvec(1,2,10)); T[137]=list(intvec(1,2,6),intvec(1,6,8),intvec(4,5,7),intvec(1,2,4),intvec(1,8,10),intvec(1,9,10),intvec(1,4,9),intvec(4,7,9)); T[138]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,2,6),intvec(4,5,7),intvec(1,9,10),intvec(1,6,10),intvec(1,4,9),intvec(4,7,9)); T[139]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,2,8),intvec(1,8,10),intvec(1,9,10),intvec(4,5,9),intvec(1,4,9)); T[140]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,2,6),intvec(1,9,10),intvec(1,6,10),intvec(4,5,9),intvec(1,4,9)); T[141]=list(intvec(1,2,3),intvec(1,3,4),intvec(4,5,7),intvec(1,2,8),intvec(1,8,10),intvec(1,9,10),intvec(1,4,9),intvec(4,7,9)); T[142]=list(intvec(1,2,6),intvec(1,6,8),intvec(1,2,4),intvec(1,8,10),intvec(1,9,10),intvec(4,5,9),intvec(1,4,9)); T[143]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,2,6),intvec(1,6,8),intvec(4,5,7),intvec(1,8,10),intvec(1,9,10),intvec(1,4,9),intvec(4,7,9)); T[144]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,2,6),intvec(1,6,8),intvec(1,8,10),intvec(1,9,10),intvec(4,5,9),intvec(1,4,9)); T[145]=list(intvec(8,9,10),intvec(4,5,7),intvec(1,4,7),intvec(1,2,8),intvec(1,8,9),intvec(1,7,9),intvec(1,2,4)); T[146]=list(intvec(1,2,3),intvec(1,3,4),intvec(8,9,10),intvec(4,5,7),intvec(1,4,7),intvec(1,2,8),intvec(1,8,9),intvec(1,7,9)); T[147]=list(intvec(1,2,6),intvec(1,6,8),intvec(8,9,10),intvec(4,5,7),intvec(1,4,7),intvec(1,8,9),intvec(1,7,9),intvec(1,2,4)); T[148]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,2,6),intvec(1,6,8),intvec(8,9,10),intvec(4,5,7),intvec(1,4,7),intvec(1,8,9),intvec(1,7,9)); T[149]=list(intvec(1,2,6),intvec(1,2,5),intvec(1,5,9),intvec(1,6,9),intvec(6,9,10)); T[150]=list(intvec(1,2,6),intvec(8,9,10),intvec(1,2,5),intvec(1,5,9),intvec(6,8,9),intvec(1,6,9)); T[151]=list(intvec(1,4,5),intvec(1,2,6),intvec(1,2,4),intvec(1,5,9),intvec(1,6,9),intvec(6,9,10)); T[152]=list(intvec(1,2,6),intvec(1,5,7),intvec(1,7,9),intvec(1,2,5),intvec(1,6,9),intvec(6,9,10)); T[153]=list(intvec(1,2,3),intvec(1,2,6),intvec(1,3,5),intvec(1,5,9),intvec(1,6,9),intvec(6,9,10)); T[154]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,4,5),intvec(1,2,6),intvec(1,5,9),intvec(1,6,9),intvec(6,9,10)); T[155]=list(intvec(1,4,5),intvec(1,2,6),intvec(1,5,7),intvec(1,7,9),intvec(1,2,4),intvec(1,6,9),intvec(6,9,10)); T[156]=list(intvec(1,2,6),intvec(1,5,7),intvec(8,9,10),intvec(1,7,9),intvec(1,2,5),intvec(6,8,9),intvec(1,6,9)); T[157]=list(intvec(1,2,3),intvec(1,2,6),intvec(1,5,7),intvec(1,7,9),intvec(1,3,5),intvec(1,6,9),intvec(6,9,10)); T[158]=list(intvec(1,4,5),intvec(1,2,6),intvec(8,9,10),intvec(1,2,4),intvec(1,5,9),intvec(6,8,9),intvec(1,6,9)); T[159]=list(intvec(1,2,3),intvec(1,2,6),intvec(8,9,10),intvec(1,3,5),intvec(1,5,9),intvec(6,8,9),intvec(1,6,9)); T[160]=list(intvec(1,4,5),intvec(1,2,6),intvec(1,5,7),intvec(8,9,10),intvec(1,7,9),intvec(1,2,4),intvec(6,8,9),intvec(1,6,9)); T[161]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,4,5),intvec(1,2,6),intvec(1,5,7),intvec(1,7,9),intvec(1,6,9),intvec(6,9,10)); T[162]=list(intvec(1,2,3),intvec(1,2,6),intvec(1,5,7),intvec(8,9,10),intvec(1,7,9),intvec(1,3,5),intvec(6,8,9),intvec(1,6,9)); T[163]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,4,5),intvec(1,2,6),intvec(8,9,10),intvec(1,5,9),intvec(6,8,9),intvec(1,6,9)); T[164]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,4,5),intvec(1,2,6),intvec(1,5,7),intvec(8,9,10),intvec(1,7,9),intvec(6,8,9),intvec(1,6,9)); T[165]=list(intvec(1,5,7),intvec(1,7,8),intvec(7,8,10),intvec(1,2,8),intvec(1,2,5)); T[166]=list(intvec(1,4,5),intvec(1,5,7),intvec(1,7,8),intvec(7,8,10),intvec(1,2,8),intvec(1,2,4)); T[167]=list(intvec(1,2,6),intvec(1,5,7),intvec(1,6,8),intvec(1,7,8),intvec(7,8,10),intvec(1,2,5)); T[168]=list(intvec(1,2,3),intvec(1,5,7),intvec(1,7,8),intvec(7,8,10),intvec(1,2,8),intvec(1,3,5)); T[169]=list(intvec(1,5,7),intvec(1,7,8),intvec(7,8,9),intvec(8,9,10),intvec(1,2,8),intvec(1,2,5)); T[170]=list(intvec(1,2,3),intvec(1,5,7),intvec(1,7,8),intvec(7,8,9),intvec(8,9,10),intvec(1,2,8),intvec(1,3,5)); T[171]=list(intvec(1,2,3),intvec(1,2,6),intvec(1,5,7),intvec(1,6,8),intvec(1,7,8),intvec(7,8,10),intvec(1,3,5)); T[172]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,4,5),intvec(1,5,7),intvec(1,7,8),intvec(7,8,10),intvec(1,2,8)); T[173]=list(intvec(1,2,6),intvec(1,5,7),intvec(1,6,8),intvec(1,7,8),intvec(7,8,9),intvec(8,9,10),intvec(1,2,5)); T[174]=list(intvec(1,4,5),intvec(1,2,6),intvec(1,5,7),intvec(1,6,8),intvec(1,7,8),intvec(7,8,10),intvec(1,2,4)); T[175]=list(intvec(1,4,5),intvec(1,5,7),intvec(1,7,8),intvec(7,8,9),intvec(8,9,10),intvec(1,2,8),intvec(1,2,4)); T[176]=list(intvec(1,2,3),intvec(1,2,6),intvec(1,5,7),intvec(1,6,8),intvec(1,7,8),intvec(7,8,9),intvec(8,9,10),intvec(1,3,5)); T[177]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,4,5),intvec(1,2,6),intvec(1,5,7),intvec(1,6,8),intvec(1,7,8),intvec(7,8,10)); T[178]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,4,5),intvec(1,5,7),intvec(1,7,8),intvec(7,8,9),intvec(8,9,10),intvec(1,2,8)); T[179]=list(intvec(1,4,5),intvec(1,2,6),intvec(1,5,7),intvec(1,6,8),intvec(1,7,8),intvec(7,8,9),intvec(8,9,10),intvec(1,2,4)); T[180]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,4,5),intvec(1,2,6),intvec(1,5,7),intvec(1,6,8),intvec(1,7,8),intvec(7,8,9),intvec(8,9,10)); T[181]=list(intvec(1,3,5),intvec(1,3,8),intvec(1,8,10),intvec(2,3,8),intvec(1,9,10),intvec(1,5,9)); T[182]=list(intvec(1,3,5),intvec(1,3,8),intvec(1,8,10),intvec(2,3,8),intvec(1,5,10)); T[183]=list(intvec(2,3,6),intvec(1,3,5),intvec(3,6,8),intvec(1,3,8),intvec(1,8,10),intvec(1,9,10),intvec(1,5,9)); T[184]=list(intvec(2,3,6),intvec(1,3,5),intvec(3,6,8),intvec(1,3,8),intvec(1,8,10),intvec(1,5,10)); T[185]=list(intvec(1,5,7),intvec(2,3,6),intvec(1,3,5),intvec(3,6,8),intvec(1,3,8),intvec(1,8,10),intvec(1,7,10)); T[186]=list(intvec(1,3,4),intvec(1,4,5),intvec(2,3,6),intvec(3,6,8),intvec(1,3,8),intvec(1,8,10),intvec(1,5,10)); T[187]=list(intvec(1,3,4),intvec(1,4,5),intvec(1,3,8),intvec(1,8,10),intvec(2,3,8),intvec(1,5,10)); T[188]=list(intvec(1,5,7),intvec(1,3,5),intvec(1,3,8),intvec(1,8,10),intvec(1,7,10),intvec(2,3,8)); T[189]=list(intvec(1,3,4),intvec(1,4,5),intvec(1,3,8),intvec(1,8,10),intvec(2,3,8),intvec(1,9,10),intvec(1,5,9)); T[190]=list(intvec(1,5,7),intvec(1,7,9),intvec(2,3,6),intvec(1,3,5),intvec(3,6,8),intvec(1,3,8),intvec(1,8,10),intvec(1,9,10)); T[191]=list(intvec(1,3,4),intvec(1,4,5),intvec(2,3,6),intvec(3,6,8),intvec(1,3,8),intvec(1,8,10),intvec(1,9,10),intvec(1,5,9)); T[192]=list(intvec(1,5,7),intvec(1,7,9),intvec(1,3,5),intvec(1,3,8),intvec(1,8,10),intvec(2,3,8),intvec(1,9,10)); T[193]=list(intvec(1,3,4),intvec(1,4,5),intvec(1,5,7),intvec(1,7,9),intvec(1,3,8),intvec(1,8,10),intvec(2,3,8),intvec(1,9,10)); T[194]=list(intvec(1,3,4),intvec(1,4,5),intvec(1,5,7),intvec(1,7,9),intvec(2,3,6),intvec(3,6,8),intvec(1,3,8),intvec(1,8,10),intvec(1,9,10)); T[195]=list(intvec(1,3,4),intvec(1,4,5),intvec(1,5,7),intvec(1,3,8),intvec(1,8,10),intvec(1,7,10),intvec(2,3,8)); T[196]=list(intvec(1,3,4),intvec(1,4,5),intvec(1,5,7),intvec(2,3,6),intvec(3,6,8),intvec(1,3,8),intvec(1,8,10),intvec(1,7,10)); T[197]=list(intvec(1,3,4),intvec(4,5,7),intvec(1,4,7),intvec(2,3,6),intvec(1,3,6),intvec(1,7,10),intvec(1,6,10)); T[198]=list(intvec(1,3,4),intvec(4,5,7),intvec(1,4,7),intvec(1,7,9),intvec(2,3,6),intvec(1,3,6),intvec(1,9,10),intvec(1,6,10)); T[199]=list(intvec(1,3,4),intvec(1,6,8),intvec(4,5,7),intvec(1,4,7),intvec(1,7,9),intvec(2,3,6),intvec(1,3,6),intvec(1,8,10),intvec(1,9,10)); T[200]=list(intvec(1,3,4),intvec(1,6,8),intvec(4,5,7),intvec(1,4,7),intvec(2,3,6),intvec(1,3,6),intvec(1,8,10),intvec(1,7,10)); T[201]=list(intvec(1,6,8),intvec(8,9,10),intvec(1,8,9),intvec(2,3,6),intvec(1,3,6),intvec(1,3,5),intvec(1,5,9)); T[202]=list(intvec(1,5,7),intvec(1,6,8),intvec(8,9,10),intvec(1,8,9),intvec(1,7,9),intvec(2,3,6),intvec(1,3,6),intvec(1,3,5)); T[203]=list(intvec(1,3,4),intvec(1,4,5),intvec(1,6,8),intvec(8,9,10),intvec(1,8,9),intvec(2,3,6),intvec(1,3,6),intvec(1,5,9)); T[204]=list(intvec(1,3,4),intvec(1,4,5),intvec(1,5,7),intvec(1,6,8),intvec(8,9,10),intvec(1,8,9),intvec(1,7,9),intvec(2,3,6),intvec(1,3,6)); T[205]=list(intvec(1,4,5),intvec(1,4,6),intvec(2,4,6),intvec(1,6,10),intvec(1,5,10)); T[206]=list(intvec(1,4,5),intvec(2,3,6),intvec(3,4,6),intvec(1,4,6),intvec(1,9,10),intvec(1,5,9),intvec(1,6,10)); T[207]=list(intvec(1,4,5),intvec(2,3,6),intvec(3,4,6),intvec(1,4,6),intvec(1,6,10),intvec(1,5,10)); T[208]=list(intvec(1,4,5),intvec(1,4,6),intvec(1,9,10),intvec(1,5,9),intvec(2,4,6),intvec(1,6,10)); T[209]=list(intvec(1,4,5),intvec(1,6,8),intvec(2,3,6),intvec(3,4,6),intvec(1,4,6),intvec(1,8,10),intvec(1,5,10)); T[210]=list(intvec(1,4,5),intvec(1,5,7),intvec(2,3,6),intvec(3,4,6),intvec(1,4,6),intvec(1,7,10),intvec(1,6,10)); T[211]=list(intvec(1,4,5),intvec(1,5,7),intvec(1,7,9),intvec(2,3,6),intvec(3,4,6),intvec(1,4,6),intvec(1,9,10),intvec(1,6,10)); T[212]=list(intvec(1,4,5),intvec(1,5,7),intvec(1,7,9),intvec(1,4,6),intvec(1,9,10),intvec(2,4,6),intvec(1,6,10)); T[213]=list(intvec(1,4,5),intvec(1,6,8),intvec(1,4,6),intvec(1,8,10),intvec(2,4,6),intvec(1,5,10)); T[214]=list(intvec(1,4,5),intvec(1,5,7),intvec(1,4,6),intvec(1,7,10),intvec(2,4,6),intvec(1,6,10)); T[215]=list(intvec(1,4,5),intvec(1,6,8),intvec(1,4,6),intvec(1,8,10),intvec(1,9,10),intvec(1,5,9),intvec(2,4,6)); T[216]=list(intvec(1,4,5),intvec(1,6,8),intvec(2,3,6),intvec(3,4,6),intvec(1,4,6),intvec(1,8,10),intvec(1,9,10),intvec(1,5,9)); T[217]=list(intvec(1,4,5),intvec(1,5,7),intvec(1,6,8),intvec(2,3,6),intvec(3,4,6),intvec(1,4,6),intvec(1,8,10),intvec(1,7,10)); T[218]=list(intvec(1,4,5),intvec(1,5,7),intvec(1,6,8),intvec(1,7,9),intvec(2,3,6),intvec(3,4,6),intvec(1,4,6),intvec(1,8,10),intvec(1,9,10)); T[219]=list(intvec(1,4,5),intvec(1,5,7),intvec(1,6,8),intvec(1,4,6),intvec(1,8,10),intvec(1,7,10),intvec(2,4,6)); T[220]=list(intvec(1,4,5),intvec(1,5,7),intvec(1,6,8),intvec(1,7,9),intvec(1,4,6),intvec(1,8,10),intvec(1,9,10),intvec(2,4,6)); T[221]=list(intvec(1,2,5),intvec(1,5,9),intvec(1,2,9),intvec(2,9,10)); T[222]=list(intvec(1,2,5),intvec(1,5,9),intvec(1,2,9),intvec(6,9,10),intvec(2,6,9)); T[223]=list(intvec(1,2,3),intvec(1,3,5),intvec(1,5,9),intvec(1,2,9),intvec(6,9,10),intvec(2,6,9)); T[224]=list(intvec(1,5,7),intvec(1,7,9),intvec(1,2,5),intvec(1,2,9),intvec(6,9,10),intvec(2,6,9)); T[225]=list(intvec(8,9,10),intvec(1,2,5),intvec(1,5,9),intvec(6,8,9),intvec(1,2,9),intvec(2,6,9)); T[226]=list(intvec(1,4,5),intvec(1,2,4),intvec(1,5,9),intvec(1,2,9),intvec(6,9,10),intvec(2,6,9)); T[227]=list(intvec(1,4,5),intvec(1,2,4),intvec(1,5,9),intvec(1,2,9),intvec(2,9,10)); T[228]=list(intvec(1,2,3),intvec(1,3,5),intvec(1,5,9),intvec(1,2,9),intvec(2,9,10)); T[229]=list(intvec(1,5,7),intvec(1,7,9),intvec(1,2,5),intvec(1,2,9),intvec(2,9,10)); T[230]=list(intvec(8,9,10),intvec(1,2,5),intvec(1,5,9),intvec(2,8,9),intvec(1,2,9)); T[231]=list(intvec(1,4,5),intvec(1,5,7),intvec(1,7,9),intvec(1,2,4),intvec(1,2,9),intvec(6,9,10),intvec(2,6,9)); T[232]=list(intvec(1,2,3),intvec(8,9,10),intvec(1,3,5),intvec(1,5,9),intvec(2,8,9),intvec(1,2,9)); T[233]=list(intvec(1,5,7),intvec(8,9,10),intvec(1,7,9),intvec(1,2,5),intvec(6,8,9),intvec(1,2,9),intvec(2,6,9)); T[234]=list(intvec(1,4,5),intvec(8,9,10),intvec(1,2,4),intvec(1,5,9),intvec(2,8,9),intvec(1,2,9)); T[235]=list(intvec(1,5,7),intvec(8,9,10),intvec(1,7,9),intvec(1,2,5),intvec(2,8,9),intvec(1,2,9)); T[236]=list(intvec(1,2,3),intvec(8,9,10),intvec(1,3,5),intvec(1,5,9),intvec(6,8,9),intvec(1,2,9),intvec(2,6,9)); T[237]=list(intvec(1,4,5),intvec(8,9,10),intvec(1,2,4),intvec(1,5,9),intvec(6,8,9),intvec(1,2,9),intvec(2,6,9)); T[238]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,4,5),intvec(1,5,9),intvec(1,2,9),intvec(6,9,10),intvec(2,6,9)); T[239]=list(intvec(1,2,3),intvec(1,5,7),intvec(1,7,9),intvec(1,3,5),intvec(1,2,9),intvec(6,9,10),intvec(2,6,9)); T[240]=list(intvec(1,2,3),intvec(1,5,7),intvec(1,7,9),intvec(1,3,5),intvec(1,2,9),intvec(2,9,10)); T[241]=list(intvec(1,4,5),intvec(1,5,7),intvec(1,7,9),intvec(1,2,4),intvec(1,2,9),intvec(2,9,10)); T[242]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,4,5),intvec(1,5,9),intvec(1,2,9),intvec(2,9,10)); T[243]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,4,5),intvec(1,5,7),intvec(1,7,9),intvec(1,2,9),intvec(6,9,10),intvec(2,6,9)); T[244]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,4,5),intvec(1,5,7),intvec(1,7,9),intvec(1,2,9),intvec(2,9,10)); T[245]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,4,5),intvec(8,9,10),intvec(1,5,9),intvec(6,8,9),intvec(1,2,9),intvec(2,6,9)); T[246]=list(intvec(1,4,5),intvec(1,5,7),intvec(8,9,10),intvec(1,7,9),intvec(1,2,4),intvec(2,8,9),intvec(1,2,9)); T[247]=list(intvec(1,2,3),intvec(1,5,7),intvec(8,9,10),intvec(1,7,9),intvec(1,3,5),intvec(2,8,9),intvec(1,2,9)); T[248]=list(intvec(1,4,5),intvec(1,5,7),intvec(8,9,10),intvec(1,7,9),intvec(1,2,4),intvec(6,8,9),intvec(1,2,9),intvec(2,6,9)); T[249]=list(intvec(1,2,3),intvec(1,5,7),intvec(8,9,10),intvec(1,7,9),intvec(1,3,5),intvec(6,8,9),intvec(1,2,9),intvec(2,6,9)); T[250]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,4,5),intvec(8,9,10),intvec(1,5,9),intvec(2,8,9),intvec(1,2,9)); T[251]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,4,5),intvec(1,5,7),intvec(8,9,10),intvec(1,7,9),intvec(2,8,9),intvec(1,2,9)); T[252]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,4,5),intvec(1,5,7),intvec(8,9,10),intvec(1,7,9),intvec(6,8,9),intvec(1,2,9),intvec(2,6,9)); T[253]=list(intvec(1,7,9),intvec(3,5,7),intvec(1,9,10),intvec(1,2,7),intvec(2,3,7),intvec(1,2,10)); T[254]=list(intvec(1,7,9),intvec(1,9,10),intvec(1,2,7),intvec(2,5,7),intvec(1,2,10)); T[255]=list(intvec(1,7,10),intvec(1,2,7),intvec(2,5,7),intvec(1,2,10)); T[256]=list(intvec(1,7,10),intvec(3,5,7),intvec(1,2,7),intvec(2,3,7),intvec(1,2,10)); T[257]=list(intvec(4,5,7),intvec(1,7,9),intvec(1,9,10),intvec(3,4,7),intvec(1,2,7),intvec(2,3,7),intvec(1,2,10)); T[258]=list(intvec(4,5,7),intvec(1,7,10),intvec(3,4,7),intvec(1,2,7),intvec(2,3,7),intvec(1,2,10)); T[259]=list(intvec(4,5,7),intvec(1,7,9),intvec(1,9,10),intvec(2,4,7),intvec(1,2,7),intvec(1,2,10)); T[260]=list(intvec(4,5,7),intvec(1,7,10),intvec(2,4,7),intvec(1,2,7),intvec(1,2,10)); T[261]=list(intvec(1,2,6),intvec(1,7,9),intvec(1,9,10),intvec(1,2,7),intvec(1,6,10),intvec(2,5,7)); T[262]=list(intvec(1,2,8),intvec(1,7,9),intvec(1,8,10),intvec(3,5,7),intvec(1,9,10),intvec(1,2,7),intvec(2,3,7)); T[263]=list(intvec(1,2,6),intvec(4,5,7),intvec(1,7,9),intvec(1,9,10),intvec(2,4,7),intvec(1,2,7),intvec(1,6,10)); T[264]=list(intvec(1,2,8),intvec(1,7,9),intvec(1,8,10),intvec(1,9,10),intvec(1,2,7),intvec(2,5,7)); T[265]=list(intvec(1,2,6),intvec(1,7,9),intvec(3,5,7),intvec(1,9,10),intvec(1,2,7),intvec(1,6,10),intvec(2,3,7)); T[266]=list(intvec(4,5,7),intvec(1,2,8),intvec(1,8,10),intvec(1,7,10),intvec(2,4,7),intvec(1,2,7)); T[267]=list(intvec(1,2,6),intvec(4,5,7),intvec(1,7,10),intvec(2,4,7),intvec(1,2,7),intvec(1,6,10)); T[268]=list(intvec(1,2,8),intvec(1,8,10),intvec(1,7,10),intvec(3,5,7),intvec(1,2,7),intvec(2,3,7)); T[269]=list(intvec(1,2,8),intvec(1,8,10),intvec(1,7,10),intvec(1,2,7),intvec(2,5,7)); T[270]=list(intvec(1,2,6),intvec(1,7,10),intvec(1,2,7),intvec(1,6,10),intvec(2,5,7)); T[271]=list(intvec(4,5,7),intvec(1,2,8),intvec(1,8,10),intvec(1,7,10),intvec(3,4,7),intvec(1,2,7),intvec(2,3,7)); T[272]=list(intvec(1,2,6),intvec(1,7,10),intvec(3,5,7),intvec(1,2,7),intvec(1,6,10),intvec(2,3,7)); T[273]=list(intvec(4,5,7),intvec(1,2,8),intvec(1,7,9),intvec(1,8,10),intvec(1,9,10),intvec(3,4,7),intvec(1,2,7),intvec(2,3,7)); T[274]=list(intvec(1,2,6),intvec(4,5,7),intvec(1,7,9),intvec(1,9,10),intvec(3,4,7),intvec(1,2,7),intvec(1,6,10),intvec(2,3,7)); T[275]=list(intvec(4,5,7),intvec(1,2,8),intvec(1,7,9),intvec(1,8,10),intvec(1,9,10),intvec(2,4,7),intvec(1,2,7)); T[276]=list(intvec(1,2,6),intvec(4,5,7),intvec(1,7,10),intvec(3,4,7),intvec(1,2,7),intvec(1,6,10),intvec(2,3,7)); T[277]=list(intvec(1,2,6),intvec(1,6,8),intvec(4,5,7),intvec(1,8,10),intvec(1,7,10),intvec(2,4,7),intvec(1,2,7)); T[278]=list(intvec(1,2,6),intvec(1,6,8),intvec(1,8,10),intvec(1,7,10),intvec(1,2,7),intvec(2,5,7)); T[279]=list(intvec(1,2,6),intvec(1,6,8),intvec(4,5,7),intvec(1,7,9),intvec(1,8,10),intvec(1,9,10),intvec(2,4,7),intvec(1,2,7)); T[280]=list(intvec(1,2,6),intvec(1,6,8),intvec(1,7,9),intvec(1,8,10),intvec(3,5,7),intvec(1,9,10),intvec(1,2,7),intvec(2,3,7)); T[281]=list(intvec(1,2,6),intvec(1,6,8),intvec(1,8,10),intvec(1,7,10),intvec(3,5,7),intvec(1,2,7),intvec(2,3,7)); T[282]=list(intvec(1,2,6),intvec(1,6,8),intvec(4,5,7),intvec(1,8,10),intvec(1,7,10),intvec(3,4,7),intvec(1,2,7),intvec(2,3,7)); T[283]=list(intvec(1,2,6),intvec(1,6,8),intvec(1,7,9),intvec(1,8,10),intvec(1,9,10),intvec(1,2,7),intvec(2,5,7)); T[284]=list(intvec(1,2,6),intvec(1,6,8),intvec(4,5,7),intvec(1,7,9),intvec(1,8,10),intvec(1,9,10),intvec(3,4,7),intvec(1,2,7),intvec(2,3,7)); T[285]=list(intvec(1,2,3),intvec(8,9,10),intvec(4,5,7),intvec(1,2,8),intvec(1,8,9),intvec(1,7,9),intvec(1,3,7),intvec(3,4,7)); T[286]=list(intvec(1,2,3),intvec(8,9,10),intvec(1,2,8),intvec(1,8,9),intvec(1,7,9),intvec(3,5,7),intvec(1,3,7)); T[287]=list(intvec(1,2,3),intvec(1,2,6),intvec(1,6,8),intvec(8,9,10),intvec(4,5,7),intvec(1,8,9),intvec(1,7,9),intvec(1,3,7),intvec(3,4,7)); T[288]=list(intvec(1,2,3),intvec(1,2,6),intvec(1,6,8),intvec(8,9,10),intvec(1,8,9),intvec(1,7,9),intvec(3,5,7),intvec(1,3,7)); T[289]=list(intvec(1,2,4),intvec(4,5,9),intvec(1,2,10),intvec(1,4,10),intvec(4,9,10)); T[290]=list(intvec(4,5,7),intvec(1,2,4),intvec(4,7,9),intvec(1,2,10),intvec(1,4,10),intvec(4,9,10)); T[291]=list(intvec(4,5,7),intvec(1,2,4),intvec(1,2,10),intvec(4,7,10),intvec(1,4,10)); T[292]=list(intvec(1,2,3),intvec(1,3,4),intvec(4,5,7),intvec(4,7,9),intvec(1,2,10),intvec(1,4,10),intvec(4,9,10)); T[293]=list(intvec(4,5,7),intvec(1,2,8),intvec(1,2,4),intvec(1,8,10),intvec(4,7,9),intvec(1,4,10),intvec(4,9,10)); T[294]=list(intvec(1,2,6),intvec(4,5,7),intvec(1,2,4),intvec(1,6,10),intvec(4,7,9),intvec(1,4,10),intvec(4,9,10)); T[295]=list(intvec(1,2,8),intvec(1,2,4),intvec(1,8,10),intvec(4,5,9),intvec(1,4,10),intvec(4,9,10)); T[296]=list(intvec(1,2,6),intvec(1,2,4),intvec(1,6,10),intvec(4,5,9),intvec(1,4,10),intvec(4,9,10)); T[297]=list(intvec(1,2,4),intvec(1,2,10),intvec(1,4,10),intvec(4,5,10)); T[298]=list(intvec(1,2,3),intvec(1,3,4),intvec(4,5,9),intvec(1,2,10),intvec(1,4,10),intvec(4,9,10)); T[299]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,2,8),intvec(1,8,10),intvec(4,5,9),intvec(1,4,10),intvec(4,9,10)); T[300]=list(intvec(1,2,6),intvec(1,6,8),intvec(1,2,4),intvec(1,8,10),intvec(4,5,9),intvec(1,4,10),intvec(4,9,10)); T[301]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,2,6),intvec(4,5,7),intvec(1,6,10),intvec(4,7,9),intvec(1,4,10),intvec(4,9,10)); T[302]=list(intvec(1,2,6),intvec(1,2,4),intvec(1,6,10),intvec(1,4,10),intvec(4,5,10)); T[303]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,2,10),intvec(1,4,10),intvec(4,5,10)); T[304]=list(intvec(1,2,8),intvec(1,2,4),intvec(1,8,10),intvec(1,4,10),intvec(4,5,10)); T[305]=list(intvec(1,2,6),intvec(1,6,8),intvec(4,5,7),intvec(1,2,4),intvec(1,8,10),intvec(4,7,9),intvec(1,4,10),intvec(4,9,10)); T[306]=list(intvec(1,2,6),intvec(4,5,7),intvec(1,2,4),intvec(1,6,10),intvec(4,7,10),intvec(1,4,10)); T[307]=list(intvec(1,2,3),intvec(1,3,4),intvec(4,5,7),intvec(1,2,10),intvec(4,7,10),intvec(1,4,10)); T[308]=list(intvec(4,5,7),intvec(1,2,8),intvec(1,2,4),intvec(1,8,10),intvec(4,7,10),intvec(1,4,10)); T[309]=list(intvec(1,2,3),intvec(1,3,4),intvec(4,5,7),intvec(1,2,8),intvec(1,8,10),intvec(4,7,9),intvec(1,4,10),intvec(4,9,10)); T[310]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,2,6),intvec(1,6,10),intvec(4,5,9),intvec(1,4,10),intvec(4,9,10)); T[311]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,2,8),intvec(1,8,10),intvec(1,4,10),intvec(4,5,10)); T[312]=list(intvec(1,2,6),intvec(1,6,8),intvec(1,2,4),intvec(1,8,10),intvec(1,4,10),intvec(4,5,10)); T[313]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,2,6),intvec(1,6,10),intvec(1,4,10),intvec(4,5,10)); T[314]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,2,6),intvec(1,6,8),intvec(1,8,10),intvec(4,5,9),intvec(1,4,10),intvec(4,9,10)); T[315]=list(intvec(1,2,3),intvec(1,3,4),intvec(4,5,7),intvec(1,2,8),intvec(1,8,10),intvec(4,7,10),intvec(1,4,10)); T[316]=list(intvec(1,2,6),intvec(1,6,8),intvec(4,5,7),intvec(1,2,4),intvec(1,8,10),intvec(4,7,10),intvec(1,4,10)); T[317]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,2,6),intvec(1,6,8),intvec(4,5,7),intvec(1,8,10),intvec(4,7,9),intvec(1,4,10),intvec(4,9,10)); T[318]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,2,6),intvec(4,5,7),intvec(1,6,10),intvec(4,7,10),intvec(1,4,10)); T[319]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,2,6),intvec(1,6,8),intvec(4,5,7),intvec(1,8,10),intvec(4,7,10),intvec(1,4,10)); T[320]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,2,6),intvec(1,6,8),intvec(1,8,10),intvec(1,4,10),intvec(4,5,10)); T[321]=list(intvec(8,9,10),intvec(1,2,8),intvec(1,8,9),intvec(1,2,4),intvec(4,5,9),intvec(1,4,9)); T[322]=list(intvec(8,9,10),intvec(4,5,7),intvec(1,2,8),intvec(1,8,9),intvec(1,2,4),intvec(1,4,9),intvec(4,7,9)); T[323]=list(intvec(1,2,3),intvec(1,3,4),intvec(8,9,10),intvec(4,5,7),intvec(1,2,8),intvec(1,8,9),intvec(1,4,9),intvec(4,7,9)); T[324]=list(intvec(1,2,6),intvec(1,6,8),intvec(8,9,10),intvec(4,5,7),intvec(1,8,9),intvec(1,2,4),intvec(1,4,9),intvec(4,7,9)); T[325]=list(intvec(1,2,3),intvec(1,3,4),intvec(8,9,10),intvec(1,2,8),intvec(1,8,9),intvec(4,5,9),intvec(1,4,9)); T[326]=list(intvec(1,2,6),intvec(1,6,8),intvec(8,9,10),intvec(1,8,9),intvec(1,2,4),intvec(4,5,9),intvec(1,4,9)); T[327]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,2,6),intvec(1,6,8),intvec(8,9,10),intvec(4,5,7),intvec(1,8,9),intvec(1,4,9),intvec(4,7,9)); T[328]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,2,6),intvec(1,6,8),intvec(8,9,10),intvec(1,8,9),intvec(4,5,9),intvec(1,4,9)); T[329]=list(intvec(1,2,6),intvec(4,5,7),intvec(1,4,7),intvec(1,7,9),intvec(1,2,4),intvec(1,6,9),intvec(6,9,10)); T[330]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,2,6),intvec(4,5,7),intvec(1,4,7),intvec(1,7,9),intvec(1,6,9),intvec(6,9,10)); T[331]=list(intvec(1,2,6),intvec(8,9,10),intvec(4,5,7),intvec(1,4,7),intvec(1,7,9),intvec(1,2,4),intvec(6,8,9),intvec(1,6,9)); T[332]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,2,6),intvec(8,9,10),intvec(4,5,7),intvec(1,4,7),intvec(1,7,9),intvec(6,8,9),intvec(1,6,9)); T[333]=list(intvec(1,7,8),intvec(4,5,7),intvec(1,4,7),intvec(7,8,10),intvec(1,2,8),intvec(1,2,4)); T[334]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,7,8),intvec(4,5,7),intvec(1,4,7),intvec(7,8,10),intvec(1,2,8)); T[335]=list(intvec(1,2,6),intvec(1,6,8),intvec(1,7,8),intvec(4,5,7),intvec(1,4,7),intvec(7,8,10),intvec(1,2,4)); T[336]=list(intvec(1,7,8),intvec(7,8,9),intvec(8,9,10),intvec(4,5,7),intvec(1,4,7),intvec(1,2,8),intvec(1,2,4)); T[337]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,2,6),intvec(1,6,8),intvec(1,7,8),intvec(4,5,7),intvec(1,4,7),intvec(7,8,10)); T[338]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,7,8),intvec(7,8,9),intvec(8,9,10),intvec(4,5,7),intvec(1,4,7),intvec(1,2,8)); T[339]=list(intvec(1,2,6),intvec(1,6,8),intvec(1,7,8),intvec(7,8,9),intvec(8,9,10),intvec(4,5,7),intvec(1,4,7),intvec(1,2,4)); T[340]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,2,6),intvec(1,6,8),intvec(1,7,8),intvec(7,8,9),intvec(8,9,10),intvec(4,5,7),intvec(1,4,7)); T[341]=list(intvec(1,2,8),intvec(1,5,8),intvec(1,2,5),intvec(5,8,10)); T[342]=list(intvec(1,4,5),intvec(1,2,8),intvec(1,2,4),intvec(1,5,8),intvec(5,8,10)); T[343]=list(intvec(7,8,10),intvec(1,2,8),intvec(5,7,8),intvec(1,5,8),intvec(1,2,5)); T[344]=list(intvec(8,9,10),intvec(1,2,8),intvec(1,5,8),intvec(5,8,9),intvec(1,2,5)); T[345]=list(intvec(1,2,3),intvec(1,2,8),intvec(1,5,8),intvec(1,3,5),intvec(5,8,10)); T[346]=list(intvec(1,2,6),intvec(1,6,8),intvec(1,5,8),intvec(1,2,5),intvec(5,8,10)); T[347]=list(intvec(1,4,5),intvec(8,9,10),intvec(1,2,8),intvec(1,2,4),intvec(1,5,8),intvec(5,8,9)); T[348]=list(intvec(1,2,6),intvec(1,6,8),intvec(8,9,10),intvec(1,5,8),intvec(5,8,9),intvec(1,2,5)); T[349]=list(intvec(1,2,3),intvec(8,9,10),intvec(1,2,8),intvec(1,5,8),intvec(1,3,5),intvec(5,8,9)); T[350]=list(intvec(1,2,3),intvec(1,2,6),intvec(1,6,8),intvec(1,5,8),intvec(1,3,5),intvec(5,8,10)); T[351]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,4,5),intvec(1,2,8),intvec(1,5,8),intvec(5,8,10)); T[352]=list(intvec(1,4,5),intvec(1,2,6),intvec(1,6,8),intvec(1,2,4),intvec(1,5,8),intvec(5,8,10)); T[353]=list(intvec(1,2,6),intvec(1,6,8),intvec(7,8,10),intvec(5,7,8),intvec(1,5,8),intvec(1,2,5)); T[354]=list(intvec(7,8,9),intvec(8,9,10),intvec(1,2,8),intvec(5,7,8),intvec(1,5,8),intvec(1,2,5)); T[355]=list(intvec(1,4,5),intvec(7,8,10),intvec(1,2,8),intvec(1,2,4),intvec(5,7,8),intvec(1,5,8)); T[356]=list(intvec(1,2,3),intvec(7,8,10),intvec(1,2,8),intvec(5,7,8),intvec(1,5,8),intvec(1,3,5)); T[357]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,4,5),intvec(1,2,6),intvec(1,6,8),intvec(1,5,8),intvec(5,8,10)); T[358]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,4,5),intvec(8,9,10),intvec(1,2,8),intvec(1,5,8),intvec(5,8,9)); T[359]=list(intvec(1,4,5),intvec(1,2,6),intvec(1,6,8),intvec(7,8,10),intvec(1,2,4),intvec(5,7,8),intvec(1,5,8)); T[360]=list(intvec(1,4,5),intvec(1,2,6),intvec(1,6,8),intvec(8,9,10),intvec(1,2,4),intvec(1,5,8),intvec(5,8,9)); T[361]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,4,5),intvec(7,8,10),intvec(1,2,8),intvec(5,7,8),intvec(1,5,8)); T[362]=list(intvec(1,4,5),intvec(7,8,9),intvec(8,9,10),intvec(1,2,8),intvec(1,2,4),intvec(5,7,8),intvec(1,5,8)); T[363]=list(intvec(1,2,6),intvec(1,6,8),intvec(7,8,9),intvec(8,9,10),intvec(5,7,8),intvec(1,5,8),intvec(1,2,5)); T[364]=list(intvec(1,2,3),intvec(1,2,6),intvec(1,6,8),intvec(8,9,10),intvec(1,5,8),intvec(1,3,5),intvec(5,8,9)); T[365]=list(intvec(1,2,3),intvec(1,2,6),intvec(1,6,8),intvec(7,8,10),intvec(5,7,8),intvec(1,5,8),intvec(1,3,5)); T[366]=list(intvec(1,2,3),intvec(7,8,9),intvec(8,9,10),intvec(1,2,8),intvec(5,7,8),intvec(1,5,8),intvec(1,3,5)); T[367]=list(intvec(1,2,3),intvec(1,2,6),intvec(1,6,8),intvec(7,8,9),intvec(8,9,10),intvec(5,7,8),intvec(1,5,8),intvec(1,3,5)); T[368]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,4,5),intvec(1,2,6),intvec(1,6,8),intvec(7,8,10),intvec(5,7,8),intvec(1,5,8)); T[369]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,4,5),intvec(7,8,9),intvec(8,9,10),intvec(1,2,8),intvec(5,7,8),intvec(1,5,8)); T[370]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,4,5),intvec(1,2,6),intvec(1,6,8),intvec(8,9,10),intvec(1,5,8),intvec(5,8,9)); T[371]=list(intvec(1,4,5),intvec(1,2,6),intvec(1,6,8),intvec(7,8,9),intvec(8,9,10),intvec(1,2,4),intvec(5,7,8),intvec(1,5,8)); T[372]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,4,5),intvec(1,2,6),intvec(1,6,8),intvec(7,8,9),intvec(8,9,10),intvec(5,7,8),intvec(1,5,8)); T[373]=list(intvec(2,3,6),intvec(1,3,5),intvec(1,5,10),intvec(1,3,10),intvec(3,6,10)); T[374]=list(intvec(1,3,5),intvec(2,3,8),intvec(1,9,10),intvec(1,5,9),intvec(3,8,10),intvec(1,3,10)); T[375]=list(intvec(1,3,5),intvec(1,9,10),intvec(1,5,9),intvec(1,3,10),intvec(2,3,10)); T[376]=list(intvec(2,3,6),intvec(1,3,5),intvec(3,6,8),intvec(1,5,10),intvec(3,8,10),intvec(1,3,10)); T[377]=list(intvec(2,3,6),intvec(1,3,5),intvec(1,9,10),intvec(1,5,9),intvec(1,3,10),intvec(3,6,10)); T[378]=list(intvec(1,3,5),intvec(2,3,8),intvec(1,5,10),intvec(3,8,10),intvec(1,3,10)); T[379]=list(intvec(1,3,5),intvec(1,5,10),intvec(1,3,10),intvec(2,3,10)); T[380]=list(intvec(2,3,6),intvec(1,3,5),intvec(3,6,8),intvec(1,9,10),intvec(1,5,9),intvec(3,8,10),intvec(1,3,10)); T[381]=list(intvec(1,5,7),intvec(1,3,5),intvec(1,7,10),intvec(1,3,10),intvec(2,3,10)); T[382]=list(intvec(1,3,4),intvec(1,4,5),intvec(1,5,10),intvec(1,3,10),intvec(2,3,10)); T[383]=list(intvec(1,5,7),intvec(1,7,9),intvec(1,3,5),intvec(2,3,8),intvec(1,9,10),intvec(3,8,10),intvec(1,3,10)); T[384]=list(intvec(1,3,4),intvec(1,4,5),intvec(2,3,8),intvec(1,9,10),intvec(1,5,9),intvec(3,8,10),intvec(1,3,10)); T[385]=list(intvec(1,3,4),intvec(1,4,5),intvec(2,3,8),intvec(1,5,10),intvec(3,8,10),intvec(1,3,10)); T[386]=list(intvec(1,5,7),intvec(1,3,5),intvec(1,7,10),intvec(2,3,8),intvec(3,8,10),intvec(1,3,10)); T[387]=list(intvec(1,5,7),intvec(1,7,9),intvec(1,3,5),intvec(1,9,10),intvec(1,3,10),intvec(2,3,10)); T[388]=list(intvec(1,5,7),intvec(2,3,6),intvec(1,3,5),intvec(3,6,8),intvec(1,7,10),intvec(3,8,10),intvec(1,3,10)); T[389]=list(intvec(1,3,4),intvec(1,4,5),intvec(2,3,6),intvec(1,9,10),intvec(1,5,9),intvec(1,3,10),intvec(3,6,10)); T[390]=list(intvec(1,5,7),intvec(1,7,9),intvec(2,3,6),intvec(1,3,5),intvec(1,9,10),intvec(1,3,10),intvec(3,6,10)); T[391]=list(intvec(1,3,4),intvec(1,4,5),intvec(2,3,6),intvec(1,5,10),intvec(1,3,10),intvec(3,6,10)); T[392]=list(intvec(1,3,4),intvec(1,4,5),intvec(2,3,6),intvec(3,6,8),intvec(1,5,10),intvec(3,8,10),intvec(1,3,10)); T[393]=list(intvec(1,5,7),intvec(2,3,6),intvec(1,3,5),intvec(1,7,10),intvec(1,3,10),intvec(3,6,10)); T[394]=list(intvec(1,5,7),intvec(1,7,9),intvec(2,3,6),intvec(1,3,5),intvec(3,6,8),intvec(1,9,10),intvec(3,8,10),intvec(1,3,10)); T[395]=list(intvec(1,3,4),intvec(1,4,5),intvec(2,3,6),intvec(3,6,8),intvec(1,9,10),intvec(1,5,9),intvec(3,8,10),intvec(1,3,10)); T[396]=list(intvec(1,3,4),intvec(1,4,5),intvec(1,9,10),intvec(1,5,9),intvec(1,3,10),intvec(2,3,10)); T[397]=list(intvec(1,3,4),intvec(1,4,5),intvec(1,5,7),intvec(1,7,9),intvec(2,3,6),intvec(3,6,8),intvec(1,9,10),intvec(3,8,10),intvec(1,3,10)); T[398]=list(intvec(1,3,4),intvec(1,4,5),intvec(1,5,7),intvec(1,7,10),intvec(2,3,8),intvec(3,8,10),intvec(1,3,10)); T[399]=list(intvec(1,3,4),intvec(1,4,5),intvec(1,5,7),intvec(2,3,6),intvec(1,7,10),intvec(1,3,10),intvec(3,6,10)); T[400]=list(intvec(1,3,4),intvec(1,4,5),intvec(1,5,7),intvec(2,3,6),intvec(3,6,8),intvec(1,7,10),intvec(3,8,10),intvec(1,3,10)); T[401]=list(intvec(1,3,4),intvec(1,4,5),intvec(1,5,7),intvec(1,7,9),intvec(2,3,6),intvec(1,9,10),intvec(1,3,10),intvec(3,6,10)); T[402]=list(intvec(1,3,4),intvec(1,4,5),intvec(1,5,7),intvec(1,7,9),intvec(2,3,8),intvec(1,9,10),intvec(3,8,10),intvec(1,3,10)); T[403]=list(intvec(1,3,4),intvec(1,4,5),intvec(1,5,7),intvec(1,7,9),intvec(1,9,10),intvec(1,3,10),intvec(2,3,10)); T[404]=list(intvec(1,3,4),intvec(1,4,5),intvec(1,5,7),intvec(1,7,10),intvec(1,3,10),intvec(2,3,10)); T[405]=list(intvec(1,3,4),intvec(4,5,7),intvec(1,4,7),intvec(2,3,6),intvec(3,6,8),intvec(1,3,8),intvec(1,8,10),intvec(1,7,10)); T[406]=list(intvec(1,3,4),intvec(4,5,7),intvec(1,4,7),intvec(1,7,9),intvec(2,3,6),intvec(3,6,8),intvec(1,3,8),intvec(1,8,10),intvec(1,9,10)); T[407]=list(intvec(1,3,4),intvec(4,5,7),intvec(1,4,7),intvec(1,7,9),intvec(1,3,8),intvec(1,8,10),intvec(2,3,8),intvec(1,9,10)); T[408]=list(intvec(1,3,4),intvec(4,5,7),intvec(1,4,7),intvec(1,3,8),intvec(1,8,10),intvec(1,7,10),intvec(2,3,8)); T[409]=list(intvec(8,9,10),intvec(1,8,9),intvec(2,3,6),intvec(1,3,5),intvec(3,6,8),intvec(1,3,8),intvec(1,5,9)); T[410]=list(intvec(8,9,10),intvec(1,8,9),intvec(1,3,5),intvec(1,3,8),intvec(2,3,8),intvec(1,5,9)); T[411]=list(intvec(1,5,7),intvec(8,9,10),intvec(1,8,9),intvec(1,7,9),intvec(2,3,6),intvec(1,3,5),intvec(3,6,8),intvec(1,3,8)); T[412]=list(intvec(1,3,4),intvec(1,4,5),intvec(8,9,10),intvec(1,8,9),intvec(2,3,6),intvec(3,6,8),intvec(1,3,8),intvec(1,5,9)); T[413]=list(intvec(1,5,7),intvec(8,9,10),intvec(1,8,9),intvec(1,7,9),intvec(1,3,5),intvec(1,3,8),intvec(2,3,8)); T[414]=list(intvec(1,3,4),intvec(1,4,5),intvec(8,9,10),intvec(1,8,9),intvec(1,3,8),intvec(2,3,8),intvec(1,5,9)); T[415]=list(intvec(1,3,4),intvec(1,4,5),intvec(1,5,7),intvec(8,9,10),intvec(1,8,9),intvec(1,7,9),intvec(2,3,6),intvec(3,6,8),intvec(1,3,8)); T[416]=list(intvec(1,3,4),intvec(1,4,5),intvec(1,5,7),intvec(8,9,10),intvec(1,8,9),intvec(1,7,9),intvec(1,3,8),intvec(2,3,8)); T[417]=list(intvec(1,7,9),intvec(2,3,6),intvec(1,3,6),intvec(3,5,7),intvec(1,3,7),intvec(1,9,10),intvec(1,6,10)); T[418]=list(intvec(4,5,7),intvec(1,7,9),intvec(2,3,6),intvec(1,3,6),intvec(1,3,7),intvec(1,9,10),intvec(3,4,7),intvec(1,6,10)); T[419]=list(intvec(4,5,7),intvec(2,3,6),intvec(1,3,6),intvec(1,7,10),intvec(1,3,7),intvec(3,4,7),intvec(1,6,10)); T[420]=list(intvec(2,3,6),intvec(1,3,6),intvec(1,7,10),intvec(3,5,7),intvec(1,3,7),intvec(1,6,10)); T[421]=list(intvec(1,6,8),intvec(4,5,7),intvec(2,3,6),intvec(1,3,6),intvec(1,8,10),intvec(1,7,10),intvec(1,3,7),intvec(3,4,7)); T[422]=list(intvec(1,6,8),intvec(2,3,6),intvec(1,3,6),intvec(1,8,10),intvec(1,7,10),intvec(3,5,7),intvec(1,3,7)); T[423]=list(intvec(1,6,8),intvec(1,7,9),intvec(2,3,6),intvec(1,3,6),intvec(1,8,10),intvec(3,5,7),intvec(1,3,7),intvec(1,9,10)); T[424]=list(intvec(1,6,8),intvec(4,5,7),intvec(1,7,9),intvec(2,3,6),intvec(1,3,6),intvec(1,8,10),intvec(1,3,7),intvec(1,9,10),intvec(3,4,7)); T[425]=list(intvec(1,3,4),intvec(4,5,7),intvec(2,3,6),intvec(1,3,6),intvec(1,9,10),intvec(1,6,10),intvec(1,4,9),intvec(4,7,9)); T[426]=list(intvec(1,3,4),intvec(2,3,6),intvec(1,3,6),intvec(1,9,10),intvec(1,6,10),intvec(4,5,9),intvec(1,4,9)); T[427]=list(intvec(1,3,4),intvec(1,6,8),intvec(4,5,7),intvec(2,3,6),intvec(1,3,6),intvec(1,8,10),intvec(1,9,10),intvec(1,4,9),intvec(4,7,9)); T[428]=list(intvec(1,3,4),intvec(1,6,8),intvec(2,3,6),intvec(1,3,6),intvec(1,8,10),intvec(1,9,10),intvec(4,5,9),intvec(1,4,9)); T[429]=list(intvec(1,3,4),intvec(1,6,8),intvec(8,9,10),intvec(4,5,7),intvec(1,4,7),intvec(1,8,9),intvec(1,7,9),intvec(2,3,6),intvec(1,3,6)); T[430]=list(intvec(2,3,6),intvec(1,3,6),intvec(1,3,5),intvec(1,5,9),intvec(1,6,9),intvec(6,9,10)); T[431]=list(intvec(8,9,10),intvec(2,3,6),intvec(1,3,6),intvec(1,3,5),intvec(1,5,9),intvec(6,8,9),intvec(1,6,9)); T[432]=list(intvec(1,3,4),intvec(1,4,5),intvec(2,3,6),intvec(1,3,6),intvec(1,5,9),intvec(1,6,9),intvec(6,9,10)); T[433]=list(intvec(1,5,7),intvec(1,7,9),intvec(2,3,6),intvec(1,3,6),intvec(1,3,5),intvec(1,6,9),intvec(6,9,10)); T[434]=list(intvec(1,3,4),intvec(1,4,5),intvec(1,5,7),intvec(1,7,9),intvec(2,3,6),intvec(1,3,6),intvec(1,6,9),intvec(6,9,10)); T[435]=list(intvec(1,3,4),intvec(1,4,5),intvec(8,9,10),intvec(2,3,6),intvec(1,3,6),intvec(1,5,9),intvec(6,8,9),intvec(1,6,9)); T[436]=list(intvec(1,5,7),intvec(8,9,10),intvec(1,7,9),intvec(2,3,6),intvec(1,3,6),intvec(1,3,5),intvec(6,8,9),intvec(1,6,9)); T[437]=list(intvec(1,3,4),intvec(1,4,5),intvec(1,5,7),intvec(8,9,10),intvec(1,7,9),intvec(2,3,6),intvec(1,3,6),intvec(6,8,9),intvec(1,6,9)); T[438]=list(intvec(1,5,7),intvec(1,6,8),intvec(1,7,8),intvec(7,8,10),intvec(2,3,6),intvec(1,3,6),intvec(1,3,5)); T[439]=list(intvec(1,5,7),intvec(1,6,8),intvec(1,7,8),intvec(7,8,9),intvec(8,9,10),intvec(2,3,6),intvec(1,3,6),intvec(1,3,5)); T[440]=list(intvec(1,3,4),intvec(1,4,5),intvec(1,5,7),intvec(1,6,8),intvec(1,7,8),intvec(7,8,10),intvec(2,3,6),intvec(1,3,6)); T[441]=list(intvec(1,3,4),intvec(1,4,5),intvec(1,5,7),intvec(1,6,8),intvec(1,7,8),intvec(7,8,9),intvec(8,9,10),intvec(2,3,6),intvec(1,3,6)); T[442]=list(intvec(4,5,7),intvec(1,4,7),intvec(1,7,9),intvec(1,4,6),intvec(1,9,10),intvec(2,4,6),intvec(1,6,10)); T[443]=list(intvec(4,5,7),intvec(1,4,7),intvec(2,3,6),intvec(3,4,6),intvec(1,4,6),intvec(1,7,10),intvec(1,6,10)); T[444]=list(intvec(4,5,7),intvec(1,4,7),intvec(1,4,6),intvec(1,7,10),intvec(2,4,6),intvec(1,6,10)); T[445]=list(intvec(4,5,7),intvec(1,4,7),intvec(1,7,9),intvec(2,3,6),intvec(3,4,6),intvec(1,4,6),intvec(1,9,10),intvec(1,6,10)); T[446]=list(intvec(1,6,8),intvec(4,5,7),intvec(1,4,7),intvec(2,3,6),intvec(3,4,6),intvec(1,4,6),intvec(1,8,10),intvec(1,7,10)); T[447]=list(intvec(1,6,8),intvec(4,5,7),intvec(1,4,7),intvec(1,7,9),intvec(1,4,6),intvec(1,8,10),intvec(1,9,10),intvec(2,4,6)); T[448]=list(intvec(1,6,8),intvec(4,5,7),intvec(1,4,7),intvec(1,7,9),intvec(2,3,6),intvec(3,4,6),intvec(1,4,6),intvec(1,8,10),intvec(1,9,10)); T[449]=list(intvec(1,6,8),intvec(4,5,7),intvec(1,4,7),intvec(1,4,6),intvec(1,8,10),intvec(1,7,10),intvec(2,4,6)); T[450]=list(intvec(1,4,5),intvec(1,6,8),intvec(8,9,10),intvec(1,8,9),intvec(2,3,6),intvec(3,4,6),intvec(1,4,6),intvec(1,5,9)); T[451]=list(intvec(1,4,5),intvec(1,6,8),intvec(8,9,10),intvec(1,8,9),intvec(1,4,6),intvec(1,5,9),intvec(2,4,6)); T[452]=list(intvec(1,4,5),intvec(1,5,7),intvec(1,6,8),intvec(8,9,10),intvec(1,8,9),intvec(1,7,9),intvec(2,3,6),intvec(3,4,6),intvec(1,4,6)); T[453]=list(intvec(1,4,5),intvec(1,5,7),intvec(1,6,8),intvec(8,9,10),intvec(1,8,9),intvec(1,7,9),intvec(1,4,6),intvec(2,4,6)); T[454]=list(intvec(1,5,6),intvec(1,6,10),intvec(1,5,10),intvec(2,5,6)); T[455]=list(intvec(1,9,10),intvec(1,5,9),intvec(2,4,6),intvec(4,5,6),intvec(1,5,6),intvec(1,6,10)); T[456]=list(intvec(2,3,6),intvec(3,4,6),intvec(1,9,10),intvec(1,5,9),intvec(4,5,6),intvec(1,5,6),intvec(1,6,10)); T[457]=list(intvec(2,4,6),intvec(4,5,6),intvec(1,5,6),intvec(1,6,10),intvec(1,5,10)); T[458]=list(intvec(2,3,6),intvec(1,9,10),intvec(1,5,9),intvec(1,5,6),intvec(1,6,10),intvec(3,5,6)); T[459]=list(intvec(1,9,10),intvec(1,5,9),intvec(1,5,6),intvec(1,6,10),intvec(2,5,6)); T[460]=list(intvec(2,3,6),intvec(3,4,6),intvec(4,5,6),intvec(1,5,6),intvec(1,6,10),intvec(1,5,10)); T[461]=list(intvec(2,3,6),intvec(1,5,6),intvec(1,6,10),intvec(1,5,10),intvec(3,5,6)); T[462]=list(intvec(1,6,8),intvec(2,3,6),intvec(3,4,6),intvec(1,8,10),intvec(1,9,10),intvec(1,5,9),intvec(4,5,6),intvec(1,5,6)); T[463]=list(intvec(1,5,7),intvec(1,7,9),intvec(2,3,6),intvec(3,4,6),intvec(1,9,10),intvec(4,5,6),intvec(1,5,6),intvec(1,6,10)); T[464]=list(intvec(1,5,7),intvec(1,7,9),intvec(1,9,10),intvec(2,4,6),intvec(4,5,6),intvec(1,5,6),intvec(1,6,10)); T[465]=list(intvec(1,6,8),intvec(1,8,10),intvec(1,9,10),intvec(1,5,9),intvec(2,4,6),intvec(4,5,6),intvec(1,5,6)); T[466]=list(intvec(1,6,8),intvec(2,3,6),intvec(3,4,6),intvec(1,8,10),intvec(4,5,6),intvec(1,5,6),intvec(1,5,10)); T[467]=list(intvec(1,6,8),intvec(1,8,10),intvec(2,4,6),intvec(4,5,6),intvec(1,5,6),intvec(1,5,10)); T[468]=list(intvec(1,5,7),intvec(1,7,10),intvec(2,4,6),intvec(4,5,6),intvec(1,5,6),intvec(1,6,10)); T[469]=list(intvec(1,6,8),intvec(1,8,10),intvec(1,5,6),intvec(1,5,10),intvec(2,5,6)); T[470]=list(intvec(1,5,7),intvec(1,7,10),intvec(1,5,6),intvec(1,6,10),intvec(2,5,6)); T[471]=list(intvec(1,6,8),intvec(2,3,6),intvec(1,8,10),intvec(1,5,6),intvec(1,5,10),intvec(3,5,6)); T[472]=list(intvec(1,5,7),intvec(2,3,6),intvec(3,4,6),intvec(1,7,10),intvec(4,5,6),intvec(1,5,6),intvec(1,6,10)); T[473]=list(intvec(1,5,7),intvec(1,7,9),intvec(2,3,6),intvec(1,9,10),intvec(1,5,6),intvec(1,6,10),intvec(3,5,6)); T[474]=list(intvec(1,6,8),intvec(2,3,6),intvec(1,8,10),intvec(1,9,10),intvec(1,5,9),intvec(1,5,6),intvec(3,5,6)); T[475]=list(intvec(1,5,7),intvec(2,3,6),intvec(1,7,10),intvec(1,5,6),intvec(1,6,10),intvec(3,5,6)); T[476]=list(intvec(1,6,8),intvec(1,8,10),intvec(1,9,10),intvec(1,5,9),intvec(1,5,6),intvec(2,5,6)); T[477]=list(intvec(1,5,7),intvec(1,7,9),intvec(1,9,10),intvec(1,5,6),intvec(1,6,10),intvec(2,5,6)); T[478]=list(intvec(1,5,7),intvec(1,6,8),intvec(2,3,6),intvec(3,4,6),intvec(1,8,10),intvec(1,7,10),intvec(4,5,6),intvec(1,5,6)); T[479]=list(intvec(1,5,7),intvec(1,6,8),intvec(1,7,9),intvec(1,8,10),intvec(1,9,10),intvec(2,4,6),intvec(4,5,6),intvec(1,5,6)); T[480]=list(intvec(1,5,7),intvec(1,6,8),intvec(1,7,9),intvec(2,3,6),intvec(3,4,6),intvec(1,8,10),intvec(1,9,10),intvec(4,5,6),intvec(1,5,6)); T[481]=list(intvec(1,5,7),intvec(1,6,8),intvec(1,7,9),intvec(1,8,10),intvec(1,9,10),intvec(1,5,6),intvec(2,5,6)); T[482]=list(intvec(1,5,7),intvec(1,6,8),intvec(2,3,6),intvec(1,8,10),intvec(1,7,10),intvec(1,5,6),intvec(3,5,6)); T[483]=list(intvec(1,5,7),intvec(1,6,8),intvec(1,8,10),intvec(1,7,10),intvec(2,4,6),intvec(4,5,6),intvec(1,5,6)); T[484]=list(intvec(1,5,7),intvec(1,6,8),intvec(1,7,9),intvec(2,3,6),intvec(1,8,10),intvec(1,9,10),intvec(1,5,6),intvec(3,5,6)); T[485]=list(intvec(1,5,7),intvec(1,6,8),intvec(1,8,10),intvec(1,7,10),intvec(1,5,6),intvec(2,5,6)); T[486]=list(intvec(4,5,7),intvec(1,4,7),intvec(1,7,9),intvec(1,2,4),intvec(1,2,9),intvec(2,9,10)); T[487]=list(intvec(4,5,7),intvec(1,4,7),intvec(1,7,9),intvec(1,2,4),intvec(1,2,9),intvec(6,9,10),intvec(2,6,9)); T[488]=list(intvec(1,2,3),intvec(1,3,4),intvec(4,5,7),intvec(1,4,7),intvec(1,7,9),intvec(1,2,9),intvec(6,9,10),intvec(2,6,9)); T[489]=list(intvec(8,9,10),intvec(4,5,7),intvec(1,4,7),intvec(1,7,9),intvec(1,2,4),intvec(2,8,9),intvec(1,2,9)); T[490]=list(intvec(8,9,10),intvec(4,5,7),intvec(1,4,7),intvec(1,7,9),intvec(1,2,4),intvec(6,8,9),intvec(1,2,9),intvec(2,6,9)); T[491]=list(intvec(1,2,3),intvec(1,3,4),intvec(4,5,7),intvec(1,4,7),intvec(1,7,9),intvec(1,2,9),intvec(2,9,10)); T[492]=list(intvec(1,2,3),intvec(1,3,4),intvec(8,9,10),intvec(4,5,7),intvec(1,4,7),intvec(1,7,9),intvec(6,8,9),intvec(1,2,9),intvec(2,6,9)); T[493]=list(intvec(1,2,3),intvec(1,3,4),intvec(8,9,10),intvec(4,5,7),intvec(1,4,7),intvec(1,7,9),intvec(2,8,9),intvec(1,2,9)); T[494]=list(intvec(8,9,10),intvec(4,5,7),intvec(1,2,8),intvec(1,8,9),intvec(1,7,9),intvec(2,4,7),intvec(1,2,7)); T[495]=list(intvec(8,9,10),intvec(4,5,7),intvec(1,2,8),intvec(1,8,9),intvec(1,7,9),intvec(3,4,7),intvec(1,2,7),intvec(2,3,7)); T[496]=list(intvec(8,9,10),intvec(1,2,8),intvec(1,8,9),intvec(1,7,9),intvec(3,5,7),intvec(1,2,7),intvec(2,3,7)); T[497]=list(intvec(8,9,10),intvec(1,2,8),intvec(1,8,9),intvec(1,7,9),intvec(1,2,7),intvec(2,5,7)); T[498]=list(intvec(1,2,6),intvec(1,6,8),intvec(8,9,10),intvec(4,5,7),intvec(1,8,9),intvec(1,7,9),intvec(2,4,7),intvec(1,2,7)); T[499]=list(intvec(1,2,6),intvec(1,6,8),intvec(8,9,10),intvec(4,5,7),intvec(1,8,9),intvec(1,7,9),intvec(3,4,7),intvec(1,2,7),intvec(2,3,7)); T[500]=list(intvec(1,2,6),intvec(1,6,8),intvec(8,9,10),intvec(1,8,9),intvec(1,7,9),intvec(1,2,7),intvec(2,5,7)); T[501]=list(intvec(1,2,6),intvec(1,6,8),intvec(8,9,10),intvec(1,8,9),intvec(1,7,9),intvec(3,5,7),intvec(1,2,7),intvec(2,3,7)); T[502]=list(intvec(1,2,3),intvec(1,2,6),intvec(4,5,7),intvec(1,7,9),intvec(1,3,7),intvec(1,6,9),intvec(3,4,7),intvec(6,9,10)); T[503]=list(intvec(1,2,3),intvec(1,2,6),intvec(1,7,9),intvec(3,5,7),intvec(1,3,7),intvec(1,6,9),intvec(6,9,10)); T[504]=list(intvec(1,2,3),intvec(1,2,6),intvec(8,9,10),intvec(4,5,7),intvec(1,7,9),intvec(1,3,7),intvec(6,8,9),intvec(1,6,9),intvec(3,4,7)); T[505]=list(intvec(1,2,3),intvec(1,2,6),intvec(8,9,10),intvec(1,7,9),intvec(3,5,7),intvec(1,3,7),intvec(6,8,9),intvec(1,6,9)); T[506]=list(intvec(1,2,3),intvec(1,7,8),intvec(4,5,7),intvec(7,8,10),intvec(1,2,8),intvec(1,3,7),intvec(3,4,7)); T[507]=list(intvec(1,2,3),intvec(1,7,8),intvec(7,8,10),intvec(1,2,8),intvec(3,5,7),intvec(1,3,7)); T[508]=list(intvec(1,2,3),intvec(1,2,6),intvec(1,6,8),intvec(1,7,8),intvec(4,5,7),intvec(7,8,10),intvec(1,3,7),intvec(3,4,7)); T[509]=list(intvec(1,2,3),intvec(1,7,8),intvec(7,8,9),intvec(8,9,10),intvec(4,5,7),intvec(1,2,8),intvec(1,3,7),intvec(3,4,7)); T[510]=list(intvec(1,2,3),intvec(1,2,6),intvec(1,6,8),intvec(1,7,8),intvec(7,8,10),intvec(3,5,7),intvec(1,3,7)); T[511]=list(intvec(1,2,3),intvec(1,7,8),intvec(7,8,9),intvec(8,9,10),intvec(1,2,8),intvec(3,5,7),intvec(1,3,7)); T[512]=list(intvec(1,2,3),intvec(1,2,6),intvec(1,6,8),intvec(1,7,8),intvec(7,8,9),intvec(8,9,10),intvec(3,5,7),intvec(1,3,7)); T[513]=list(intvec(1,2,3),intvec(1,2,6),intvec(1,6,8),intvec(1,7,8),intvec(7,8,9),intvec(8,9,10),intvec(4,5,7),intvec(1,3,7),intvec(3,4,7)); T[514]=list(intvec(1,2,6),intvec(1,2,4),intvec(1,6,9),intvec(4,5,9),intvec(1,4,9),intvec(6,9,10)); T[515]=list(intvec(1,2,6),intvec(4,5,7),intvec(1,2,4),intvec(1,6,9),intvec(1,4,9),intvec(4,7,9),intvec(6,9,10)); T[516]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,2,6),intvec(1,6,9),intvec(4,5,9),intvec(1,4,9),intvec(6,9,10)); T[517]=list(intvec(1,2,6),intvec(8,9,10),intvec(1,2,4),intvec(6,8,9),intvec(1,6,9),intvec(4,5,9),intvec(1,4,9)); T[518]=list(intvec(1,2,6),intvec(8,9,10),intvec(4,5,7),intvec(1,2,4),intvec(6,8,9),intvec(1,6,9),intvec(1,4,9),intvec(4,7,9)); T[519]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,2,6),intvec(4,5,7),intvec(1,6,9),intvec(1,4,9),intvec(4,7,9),intvec(6,9,10)); T[520]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,2,6),intvec(8,9,10),intvec(4,5,7),intvec(6,8,9),intvec(1,6,9),intvec(1,4,9),intvec(4,7,9)); T[521]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,2,6),intvec(8,9,10),intvec(6,8,9),intvec(1,6,9),intvec(4,5,9),intvec(1,4,9)); T[522]=list(intvec(1,3,4),intvec(4,5,7),intvec(1,4,7),intvec(1,7,9),intvec(1,9,10),intvec(1,3,10),intvec(2,3,10)); T[523]=list(intvec(1,3,4),intvec(4,5,7),intvec(1,4,7),intvec(1,7,10),intvec(1,3,10),intvec(2,3,10)); T[524]=list(intvec(1,3,4),intvec(4,5,7),intvec(1,4,7),intvec(1,7,10),intvec(2,3,8),intvec(3,8,10),intvec(1,3,10)); T[525]=list(intvec(1,3,4),intvec(4,5,7),intvec(1,4,7),intvec(1,7,9),intvec(2,3,8),intvec(1,9,10),intvec(3,8,10),intvec(1,3,10)); T[526]=list(intvec(1,3,4),intvec(4,5,7),intvec(1,4,7),intvec(2,3,6),intvec(1,7,10),intvec(1,3,10),intvec(3,6,10)); T[527]=list(intvec(1,3,4),intvec(4,5,7),intvec(1,4,7),intvec(2,3,6),intvec(3,6,8),intvec(1,7,10),intvec(3,8,10),intvec(1,3,10)); T[528]=list(intvec(1,3,4),intvec(4,5,7),intvec(1,4,7),intvec(1,7,9),intvec(2,3,6),intvec(1,9,10),intvec(1,3,10),intvec(3,6,10)); T[529]=list(intvec(1,3,4),intvec(4,5,7),intvec(1,4,7),intvec(1,7,9),intvec(2,3,6),intvec(3,6,8),intvec(1,9,10),intvec(3,8,10),intvec(1,3,10)); T[530]=list(intvec(1,7,9),intvec(1,3,8),intvec(1,8,10),intvec(2,3,8),intvec(3,5,7),intvec(1,3,7),intvec(1,9,10)); T[531]=list(intvec(4,5,7),intvec(1,7,9),intvec(1,3,8),intvec(1,8,10),intvec(2,3,8),intvec(1,3,7),intvec(1,9,10),intvec(3,4,7)); T[532]=list(intvec(1,3,8),intvec(1,8,10),intvec(1,7,10),intvec(2,3,8),intvec(3,5,7),intvec(1,3,7)); T[533]=list(intvec(4,5,7),intvec(1,3,8),intvec(1,8,10),intvec(1,7,10),intvec(2,3,8),intvec(1,3,7),intvec(3,4,7)); T[534]=list(intvec(1,7,9),intvec(2,3,6),intvec(3,6,8),intvec(1,3,8),intvec(1,8,10),intvec(3,5,7),intvec(1,3,7),intvec(1,9,10)); T[535]=list(intvec(2,3,6),intvec(3,6,8),intvec(1,3,8),intvec(1,8,10),intvec(1,7,10),intvec(3,5,7),intvec(1,3,7)); T[536]=list(intvec(4,5,7),intvec(1,7,9),intvec(2,3,6),intvec(3,6,8),intvec(1,3,8),intvec(1,8,10),intvec(1,3,7),intvec(1,9,10),intvec(3,4,7)); T[537]=list(intvec(4,5,7),intvec(2,3,6),intvec(3,6,8),intvec(1,3,8),intvec(1,8,10),intvec(1,7,10),intvec(1,3,7),intvec(3,4,7)); T[538]=list(intvec(1,3,4),intvec(4,5,7),intvec(2,3,6),intvec(3,6,8),intvec(1,3,8),intvec(1,8,10),intvec(1,9,10),intvec(1,4,9),intvec(4,7,9)); T[539]=list(intvec(1,3,4),intvec(2,3,6),intvec(3,6,8),intvec(1,3,8),intvec(1,8,10),intvec(1,9,10),intvec(4,5,9),intvec(1,4,9)); T[540]=list(intvec(1,3,4),intvec(4,5,7),intvec(1,3,8),intvec(1,8,10),intvec(2,3,8),intvec(1,9,10),intvec(1,4,9),intvec(4,7,9)); T[541]=list(intvec(1,3,4),intvec(1,3,8),intvec(1,8,10),intvec(2,3,8),intvec(1,9,10),intvec(4,5,9),intvec(1,4,9)); T[542]=list(intvec(1,3,4),intvec(8,9,10),intvec(4,5,7),intvec(1,4,7),intvec(1,8,9),intvec(1,7,9),intvec(1,3,8),intvec(2,3,8)); T[543]=list(intvec(1,3,4),intvec(8,9,10),intvec(4,5,7),intvec(1,4,7),intvec(1,8,9),intvec(1,7,9),intvec(2,3,6),intvec(3,6,8),intvec(1,3,8)); T[544]=list(intvec(1,5,7),intvec(1,7,8),intvec(7,8,10),intvec(2,3,6),intvec(1,3,5),intvec(3,6,8),intvec(1,3,8)); T[545]=list(intvec(1,5,7),intvec(1,7,8),intvec(7,8,10),intvec(1,3,5),intvec(1,3,8),intvec(2,3,8)); T[546]=list(intvec(1,3,4),intvec(1,4,5),intvec(1,5,7),intvec(1,7,8),intvec(7,8,10),intvec(2,3,6),intvec(3,6,8),intvec(1,3,8)); T[547]=list(intvec(1,3,4),intvec(1,4,5),intvec(1,5,7),intvec(1,7,8),intvec(7,8,10),intvec(1,3,8),intvec(2,3,8)); T[548]=list(intvec(1,5,7),intvec(1,7,8),intvec(7,8,9),intvec(8,9,10),intvec(2,3,6),intvec(1,3,5),intvec(3,6,8),intvec(1,3,8)); T[549]=list(intvec(1,5,7),intvec(1,7,8),intvec(7,8,9),intvec(8,9,10),intvec(1,3,5),intvec(1,3,8),intvec(2,3,8)); T[550]=list(intvec(1,3,4),intvec(1,4,5),intvec(1,5,7),intvec(1,7,8),intvec(7,8,9),intvec(8,9,10),intvec(2,3,6),intvec(3,6,8),intvec(1,3,8)); T[551]=list(intvec(1,3,4),intvec(1,4,5),intvec(1,5,7),intvec(1,7,8),intvec(7,8,9),intvec(8,9,10),intvec(1,3,8),intvec(2,3,8)); T[552]=list(intvec(1,6,8),intvec(8,9,10),intvec(1,8,9),intvec(1,7,9),intvec(2,3,6),intvec(1,3,6),intvec(3,5,7),intvec(1,3,7)); T[553]=list(intvec(1,6,8),intvec(8,9,10),intvec(4,5,7),intvec(1,8,9),intvec(1,7,9),intvec(2,3,6),intvec(1,3,6),intvec(1,3,7),intvec(3,4,7)); T[554]=list(intvec(1,3,4),intvec(2,3,6),intvec(1,3,6),intvec(1,6,10),intvec(4,5,9),intvec(1,4,10),intvec(4,9,10)); T[555]=list(intvec(1,3,4),intvec(4,5,7),intvec(2,3,6),intvec(1,3,6),intvec(1,6,10),intvec(4,7,9),intvec(1,4,10),intvec(4,9,10)); T[556]=list(intvec(1,3,4),intvec(1,6,8),intvec(2,3,6),intvec(1,3,6),intvec(1,8,10),intvec(4,5,9),intvec(1,4,10),intvec(4,9,10)); T[557]=list(intvec(1,3,4),intvec(4,5,7),intvec(2,3,6),intvec(1,3,6),intvec(1,6,10),intvec(4,7,10),intvec(1,4,10)); T[558]=list(intvec(1,3,4),intvec(1,6,8),intvec(4,5,7),intvec(2,3,6),intvec(1,3,6),intvec(1,8,10),intvec(4,7,9),intvec(1,4,10),intvec(4,9,10)); T[559]=list(intvec(1,3,4),intvec(2,3,6),intvec(1,3,6),intvec(1,6,10),intvec(1,4,10),intvec(4,5,10)); T[560]=list(intvec(1,3,4),intvec(1,6,8),intvec(2,3,6),intvec(1,3,6),intvec(1,8,10),intvec(1,4,10),intvec(4,5,10)); T[561]=list(intvec(1,3,4),intvec(1,6,8),intvec(4,5,7),intvec(2,3,6),intvec(1,3,6),intvec(1,8,10),intvec(4,7,10),intvec(1,4,10)); T[562]=list(intvec(1,3,4),intvec(1,6,8),intvec(8,9,10),intvec(1,8,9),intvec(2,3,6),intvec(1,3,6),intvec(4,5,9),intvec(1,4,9)); T[563]=list(intvec(1,3,4),intvec(1,6,8),intvec(8,9,10),intvec(4,5,7),intvec(1,8,9),intvec(2,3,6),intvec(1,3,6),intvec(1,4,9),intvec(4,7,9)); T[564]=list(intvec(1,3,4),intvec(4,5,7),intvec(1,4,7),intvec(1,7,9),intvec(2,3,6),intvec(1,3,6),intvec(1,6,9),intvec(6,9,10)); T[565]=list(intvec(1,3,4),intvec(8,9,10),intvec(4,5,7),intvec(1,4,7),intvec(1,7,9),intvec(2,3,6),intvec(1,3,6),intvec(6,8,9),intvec(1,6,9)); T[566]=list(intvec(1,3,4),intvec(1,6,8),intvec(1,7,8),intvec(4,5,7),intvec(1,4,7),intvec(7,8,10),intvec(2,3,6),intvec(1,3,6)); T[567]=list(intvec(1,3,4),intvec(1,6,8),intvec(1,7,8),intvec(7,8,9),intvec(8,9,10),intvec(4,5,7),intvec(1,4,7),intvec(2,3,6),intvec(1,3,6)); T[568]=list(intvec(1,6,8),intvec(2,3,6),intvec(1,3,6),intvec(1,5,8),intvec(1,3,5),intvec(5,8,10)); T[569]=list(intvec(1,6,8),intvec(8,9,10),intvec(2,3,6),intvec(1,3,6),intvec(1,5,8),intvec(1,3,5),intvec(5,8,9)); T[570]=list(intvec(1,6,8),intvec(7,8,10),intvec(2,3,6),intvec(1,3,6),intvec(5,7,8),intvec(1,5,8),intvec(1,3,5)); T[571]=list(intvec(1,3,4),intvec(1,4,5),intvec(1,6,8),intvec(2,3,6),intvec(1,3,6),intvec(1,5,8),intvec(5,8,10)); T[572]=list(intvec(1,3,4),intvec(1,4,5),intvec(1,6,8),intvec(8,9,10),intvec(2,3,6),intvec(1,3,6),intvec(1,5,8),intvec(5,8,9)); T[573]=list(intvec(1,3,4),intvec(1,4,5),intvec(1,6,8),intvec(7,8,10),intvec(2,3,6),intvec(1,3,6),intvec(5,7,8),intvec(1,5,8)); T[574]=list(intvec(1,6,8),intvec(7,8,9),intvec(8,9,10),intvec(2,3,6),intvec(1,3,6),intvec(5,7,8),intvec(1,5,8),intvec(1,3,5)); T[575]=list(intvec(1,3,4),intvec(1,4,5),intvec(1,6,8),intvec(7,8,9),intvec(8,9,10),intvec(2,3,6),intvec(1,3,6),intvec(5,7,8),intvec(1,5,8)); T[576]=list(intvec(2,3,6),intvec(3,4,6),intvec(1,4,6),intvec(1,9,10),intvec(1,6,10),intvec(4,5,9),intvec(1,4,9)); T[577]=list(intvec(4,5,7),intvec(2,3,6),intvec(3,4,6),intvec(1,4,6),intvec(1,9,10),intvec(1,6,10),intvec(1,4,9),intvec(4,7,9)); T[578]=list(intvec(4,5,7),intvec(1,4,6),intvec(1,9,10),intvec(2,4,6),intvec(1,6,10),intvec(1,4,9),intvec(4,7,9)); T[579]=list(intvec(1,4,6),intvec(1,9,10),intvec(2,4,6),intvec(1,6,10),intvec(4,5,9),intvec(1,4,9)); T[580]=list(intvec(1,6,8),intvec(2,3,6),intvec(3,4,6),intvec(1,4,6),intvec(1,8,10),intvec(1,9,10),intvec(4,5,9),intvec(1,4,9)); T[581]=list(intvec(1,6,8),intvec(4,5,7),intvec(2,3,6),intvec(3,4,6),intvec(1,4,6),intvec(1,8,10),intvec(1,9,10),intvec(1,4,9),intvec(4,7,9)); T[582]=list(intvec(1,6,8),intvec(4,5,7),intvec(1,4,6),intvec(1,8,10),intvec(1,9,10),intvec(2,4,6),intvec(1,4,9),intvec(4,7,9)); T[583]=list(intvec(1,6,8),intvec(1,4,6),intvec(1,8,10),intvec(1,9,10),intvec(2,4,6),intvec(4,5,9),intvec(1,4,9)); T[584]=list(intvec(1,6,8),intvec(8,9,10),intvec(4,5,7),intvec(1,4,7),intvec(1,8,9),intvec(1,7,9),intvec(1,4,6),intvec(2,4,6)); T[585]=list(intvec(1,6,8),intvec(8,9,10),intvec(4,5,7),intvec(1,4,7),intvec(1,8,9),intvec(1,7,9),intvec(2,3,6),intvec(3,4,6),intvec(1,4,6)); T[586]=list(intvec(1,4,5),intvec(2,3,6),intvec(3,4,6),intvec(1,4,6),intvec(1,5,9),intvec(1,6,9),intvec(6,9,10)); T[587]=list(intvec(1,4,5),intvec(1,4,6),intvec(1,5,9),intvec(1,6,9),intvec(2,4,6),intvec(6,9,10)); T[588]=list(intvec(1,4,5),intvec(1,5,7),intvec(1,7,9),intvec(2,3,6),intvec(3,4,6),intvec(1,4,6),intvec(1,6,9),intvec(6,9,10)); T[589]=list(intvec(1,4,5),intvec(8,9,10),intvec(2,3,6),intvec(3,4,6),intvec(1,4,6),intvec(1,5,9),intvec(6,8,9),intvec(1,6,9)); T[590]=list(intvec(1,4,5),intvec(1,5,7),intvec(1,7,9),intvec(1,4,6),intvec(1,6,9),intvec(2,4,6),intvec(6,9,10)); T[591]=list(intvec(1,4,5),intvec(8,9,10),intvec(1,4,6),intvec(1,5,9),intvec(6,8,9),intvec(1,6,9),intvec(2,4,6)); T[592]=list(intvec(1,4,5),intvec(1,5,7),intvec(8,9,10),intvec(1,7,9),intvec(2,3,6),intvec(3,4,6),intvec(1,4,6),intvec(6,8,9),intvec(1,6,9)); T[593]=list(intvec(1,4,5),intvec(1,5,7),intvec(8,9,10),intvec(1,7,9),intvec(1,4,6),intvec(6,8,9),intvec(1,6,9),intvec(2,4,6)); T[594]=list(intvec(1,4,5),intvec(1,5,7),intvec(1,6,8),intvec(1,7,8),intvec(7,8,10),intvec(2,3,6),intvec(3,4,6),intvec(1,4,6)); T[595]=list(intvec(1,4,5),intvec(1,5,7),intvec(1,6,8),intvec(1,7,8),intvec(7,8,10),intvec(1,4,6),intvec(2,4,6)); T[596]=list(intvec(1,4,5),intvec(1,5,7),intvec(1,6,8),intvec(1,7,8),intvec(7,8,9),intvec(8,9,10),intvec(2,3,6),intvec(3,4,6),intvec(1,4,6)); T[597]=list(intvec(1,4,5),intvec(1,5,7),intvec(1,6,8),intvec(1,7,8),intvec(7,8,9),intvec(8,9,10),intvec(1,4,6),intvec(2,4,6)); T[598]=list(intvec(1,6,8),intvec(8,9,10),intvec(1,8,9),intvec(2,3,6),intvec(3,4,6),intvec(1,5,9),intvec(4,5,6),intvec(1,5,6)); T[599]=list(intvec(1,6,8),intvec(8,9,10),intvec(1,8,9),intvec(1,5,9),intvec(1,5,6),intvec(2,5,6)); T[600]=list(intvec(1,6,8),intvec(8,9,10),intvec(1,8,9),intvec(1,5,9),intvec(2,4,6),intvec(4,5,6),intvec(1,5,6)); T[601]=list(intvec(1,6,8),intvec(8,9,10),intvec(1,8,9),intvec(2,3,6),intvec(1,5,9),intvec(1,5,6),intvec(3,5,6)); T[602]=list(intvec(1,5,7),intvec(1,6,8),intvec(8,9,10),intvec(1,8,9),intvec(1,7,9),intvec(2,3,6),intvec(3,4,6),intvec(4,5,6),intvec(1,5,6)); T[603]=list(intvec(1,5,7),intvec(1,6,8),intvec(8,9,10),intvec(1,8,9),intvec(1,7,9),intvec(1,5,6),intvec(2,5,6)); T[604]=list(intvec(1,5,7),intvec(1,6,8),intvec(8,9,10),intvec(1,8,9),intvec(1,7,9),intvec(2,4,6),intvec(4,5,6),intvec(1,5,6)); T[605]=list(intvec(1,5,7),intvec(1,6,8),intvec(8,9,10),intvec(1,8,9),intvec(1,7,9),intvec(2,3,6),intvec(1,5,6),intvec(3,5,6)); T[606]=list(intvec(1,2,3),intvec(4,5,7),intvec(1,7,9),intvec(1,3,7),intvec(3,4,7),intvec(1,2,9),intvec(2,9,10)); T[607]=list(intvec(1,2,3),intvec(1,7,9),intvec(3,5,7),intvec(1,3,7),intvec(1,2,9),intvec(6,9,10),intvec(2,6,9)); T[608]=list(intvec(1,2,3),intvec(1,7,9),intvec(3,5,7),intvec(1,3,7),intvec(1,2,9),intvec(2,9,10)); T[609]=list(intvec(1,2,3),intvec(4,5,7),intvec(1,7,9),intvec(1,3,7),intvec(3,4,7),intvec(1,2,9),intvec(6,9,10),intvec(2,6,9)); T[610]=list(intvec(1,2,3),intvec(8,9,10),intvec(1,7,9),intvec(3,5,7),intvec(1,3,7),intvec(2,8,9),intvec(1,2,9)); T[611]=list(intvec(1,2,3),intvec(8,9,10),intvec(4,5,7),intvec(1,7,9),intvec(1,3,7),intvec(6,8,9),intvec(3,4,7),intvec(1,2,9),intvec(2,6,9)); T[612]=list(intvec(1,2,3),intvec(8,9,10),intvec(1,7,9),intvec(3,5,7),intvec(1,3,7),intvec(6,8,9),intvec(1,2,9),intvec(2,6,9)); T[613]=list(intvec(1,2,3),intvec(8,9,10),intvec(4,5,7),intvec(1,7,9),intvec(1,3,7),intvec(3,4,7),intvec(2,8,9),intvec(1,2,9)); T[614]=list(intvec(4,5,7),intvec(1,2,4),intvec(1,2,9),intvec(1,4,9),intvec(4,7,9),intvec(2,9,10)); T[615]=list(intvec(1,2,4),intvec(1,2,9),intvec(4,5,9),intvec(1,4,9),intvec(2,9,10)); T[616]=list(intvec(4,5,7),intvec(1,2,4),intvec(1,2,9),intvec(1,4,9),intvec(4,7,9),intvec(6,9,10),intvec(2,6,9)); T[617]=list(intvec(1,2,4),intvec(1,2,9),intvec(4,5,9),intvec(1,4,9),intvec(6,9,10),intvec(2,6,9)); T[618]=list(intvec(8,9,10),intvec(1,2,4),intvec(6,8,9),intvec(1,2,9),intvec(4,5,9),intvec(1,4,9),intvec(2,6,9)); T[619]=list(intvec(8,9,10),intvec(1,2,4),intvec(2,8,9),intvec(1,2,9),intvec(4,5,9),intvec(1,4,9)); T[620]=list(intvec(1,2,3),intvec(1,3,4),intvec(4,5,7),intvec(1,2,9),intvec(1,4,9),intvec(4,7,9),intvec(2,9,10)); T[621]=list(intvec(8,9,10),intvec(4,5,7),intvec(1,2,4),intvec(2,8,9),intvec(1,2,9),intvec(1,4,9),intvec(4,7,9)); T[622]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,2,9),intvec(4,5,9),intvec(1,4,9),intvec(2,9,10)); T[623]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,2,9),intvec(4,5,9),intvec(1,4,9),intvec(6,9,10),intvec(2,6,9)); T[624]=list(intvec(1,2,3),intvec(1,3,4),intvec(4,5,7),intvec(1,2,9),intvec(1,4,9),intvec(4,7,9),intvec(6,9,10),intvec(2,6,9)); T[625]=list(intvec(8,9,10),intvec(4,5,7),intvec(1,2,4),intvec(6,8,9),intvec(1,2,9),intvec(1,4,9),intvec(4,7,9),intvec(2,6,9)); T[626]=list(intvec(1,2,3),intvec(1,3,4),intvec(8,9,10),intvec(2,8,9),intvec(1,2,9),intvec(4,5,9),intvec(1,4,9)); T[627]=list(intvec(1,2,3),intvec(1,3,4),intvec(8,9,10),intvec(4,5,7),intvec(2,8,9),intvec(1,2,9),intvec(1,4,9),intvec(4,7,9)); T[628]=list(intvec(1,2,3),intvec(1,3,4),intvec(8,9,10),intvec(6,8,9),intvec(1,2,9),intvec(4,5,9),intvec(1,4,9),intvec(2,6,9)); T[629]=list(intvec(1,2,3),intvec(1,3,4),intvec(8,9,10),intvec(4,5,7),intvec(6,8,9),intvec(1,2,9),intvec(1,4,9),intvec(4,7,9),intvec(2,6,9)); T[630]=list(intvec(1,2,6),intvec(1,7,9),intvec(3,5,7),intvec(1,6,9),intvec(1,2,7),intvec(2,3,7),intvec(6,9,10)); T[631]=list(intvec(1,2,6),intvec(4,5,7),intvec(1,7,9),intvec(1,6,9),intvec(3,4,7),intvec(1,2,7),intvec(2,3,7),intvec(6,9,10)); T[632]=list(intvec(1,2,6),intvec(1,7,9),intvec(1,6,9),intvec(1,2,7),intvec(2,5,7),intvec(6,9,10)); T[633]=list(intvec(1,2,6),intvec(4,5,7),intvec(1,7,9),intvec(1,6,9),intvec(2,4,7),intvec(1,2,7),intvec(6,9,10)); T[634]=list(intvec(1,2,6),intvec(8,9,10),intvec(4,5,7),intvec(1,7,9),intvec(6,8,9),intvec(1,6,9),intvec(3,4,7),intvec(1,2,7),intvec(2,3,7)); T[635]=list(intvec(1,2,6),intvec(8,9,10),intvec(1,7,9),intvec(3,5,7),intvec(6,8,9),intvec(1,6,9),intvec(1,2,7),intvec(2,3,7)); T[636]=list(intvec(1,2,6),intvec(8,9,10),intvec(1,7,9),intvec(6,8,9),intvec(1,6,9),intvec(1,2,7),intvec(2,5,7)); T[637]=list(intvec(1,2,6),intvec(8,9,10),intvec(4,5,7),intvec(1,7,9),intvec(6,8,9),intvec(1,6,9),intvec(2,4,7),intvec(1,2,7)); T[638]=list(intvec(1,7,8),intvec(4,5,7),intvec(7,8,10),intvec(1,2,8),intvec(2,4,7),intvec(1,2,7)); T[639]=list(intvec(1,7,8),intvec(4,5,7),intvec(7,8,10),intvec(1,2,8),intvec(3,4,7),intvec(1,2,7),intvec(2,3,7)); T[640]=list(intvec(1,7,8),intvec(7,8,10),intvec(1,2,8),intvec(1,2,7),intvec(2,5,7)); T[641]=list(intvec(1,7,8),intvec(7,8,10),intvec(1,2,8),intvec(3,5,7),intvec(1,2,7),intvec(2,3,7)); T[642]=list(intvec(1,7,8),intvec(7,8,9),intvec(8,9,10),intvec(4,5,7),intvec(1,2,8),intvec(2,4,7),intvec(1,2,7)); T[643]=list(intvec(1,2,6),intvec(1,6,8),intvec(1,7,8),intvec(4,5,7),intvec(7,8,10),intvec(2,4,7),intvec(1,2,7)); T[644]=list(intvec(1,2,6),intvec(1,6,8),intvec(1,7,8),intvec(4,5,7),intvec(7,8,10),intvec(3,4,7),intvec(1,2,7),intvec(2,3,7)); T[645]=list(intvec(1,7,8),intvec(7,8,9),intvec(8,9,10),intvec(4,5,7),intvec(1,2,8),intvec(3,4,7),intvec(1,2,7),intvec(2,3,7)); T[646]=list(intvec(1,2,6),intvec(1,6,8),intvec(1,7,8),intvec(7,8,10),intvec(1,2,7),intvec(2,5,7)); T[647]=list(intvec(1,2,6),intvec(1,6,8),intvec(1,7,8),intvec(7,8,10),intvec(3,5,7),intvec(1,2,7),intvec(2,3,7)); T[648]=list(intvec(1,7,8),intvec(7,8,9),intvec(8,9,10),intvec(1,2,8),intvec(1,2,7),intvec(2,5,7)); T[649]=list(intvec(1,7,8),intvec(7,8,9),intvec(8,9,10),intvec(1,2,8),intvec(3,5,7),intvec(1,2,7),intvec(2,3,7)); T[650]=list(intvec(1,2,6),intvec(1,6,8),intvec(1,7,8),intvec(7,8,9),intvec(8,9,10),intvec(1,2,7),intvec(2,5,7)); T[651]=list(intvec(1,2,6),intvec(1,6,8),intvec(1,7,8),intvec(7,8,9),intvec(8,9,10),intvec(4,5,7),intvec(3,4,7),intvec(1,2,7),intvec(2,3,7)); T[652]=list(intvec(1,2,6),intvec(1,6,8),intvec(1,7,8),intvec(7,8,9),intvec(8,9,10),intvec(4,5,7),intvec(2,4,7),intvec(1,2,7)); T[653]=list(intvec(1,2,6),intvec(1,6,8),intvec(1,7,8),intvec(7,8,9),intvec(8,9,10),intvec(3,5,7),intvec(1,2,7),intvec(2,3,7)); T[654]=list(intvec(4,5,7),intvec(1,7,9),intvec(2,3,6),intvec(3,6,8),intvec(1,3,7),intvec(1,9,10),intvec(3,4,7),intvec(3,8,10),intvec(1,3,10)); T[655]=list(intvec(1,7,10),intvec(2,3,8),intvec(3,5,7),intvec(1,3,7),intvec(3,8,10),intvec(1,3,10)); T[656]=list(intvec(4,5,7),intvec(1,7,9),intvec(2,3,6),intvec(1,3,7),intvec(1,9,10),intvec(3,4,7),intvec(1,3,10),intvec(3,6,10)); T[657]=list(intvec(2,3,6),intvec(3,6,8),intvec(1,7,10),intvec(3,5,7),intvec(1,3,7),intvec(3,8,10),intvec(1,3,10)); T[658]=list(intvec(1,7,9),intvec(3,5,7),intvec(1,3,7),intvec(1,9,10),intvec(1,3,10),intvec(2,3,10)); T[659]=list(intvec(1,7,10),intvec(3,5,7),intvec(1,3,7),intvec(1,3,10),intvec(2,3,10)); T[660]=list(intvec(4,5,7),intvec(2,3,6),intvec(1,7,10),intvec(1,3,7),intvec(3,4,7),intvec(1,3,10),intvec(3,6,10)); T[661]=list(intvec(4,5,7),intvec(1,7,9),intvec(2,3,8),intvec(1,3,7),intvec(1,9,10),intvec(3,4,7),intvec(3,8,10),intvec(1,3,10)); T[662]=list(intvec(1,7,9),intvec(2,3,6),intvec(3,5,7),intvec(1,3,7),intvec(1,9,10),intvec(1,3,10),intvec(3,6,10)); T[663]=list(intvec(1,7,9),intvec(2,3,8),intvec(3,5,7),intvec(1,3,7),intvec(1,9,10),intvec(3,8,10),intvec(1,3,10)); T[664]=list(intvec(4,5,7),intvec(1,7,10),intvec(2,3,8),intvec(1,3,7),intvec(3,4,7),intvec(3,8,10),intvec(1,3,10)); T[665]=list(intvec(2,3,6),intvec(1,7,10),intvec(3,5,7),intvec(1,3,7),intvec(1,3,10),intvec(3,6,10)); T[666]=list(intvec(4,5,7),intvec(1,7,9),intvec(1,3,7),intvec(1,9,10),intvec(3,4,7),intvec(1,3,10),intvec(2,3,10)); T[667]=list(intvec(4,5,7),intvec(1,7,10),intvec(1,3,7),intvec(3,4,7),intvec(1,3,10),intvec(2,3,10)); T[668]=list(intvec(1,7,9),intvec(2,3,6),intvec(3,6,8),intvec(3,5,7),intvec(1,3,7),intvec(1,9,10),intvec(3,8,10),intvec(1,3,10)); T[669]=list(intvec(4,5,7),intvec(2,3,6),intvec(3,6,8),intvec(1,7,10),intvec(1,3,7),intvec(3,4,7),intvec(3,8,10),intvec(1,3,10)); T[670]=list(intvec(1,3,4),intvec(4,5,7),intvec(2,3,6),intvec(3,6,8),intvec(1,9,10),intvec(1,4,9),intvec(4,7,9),intvec(3,8,10),intvec(1,3,10)); T[671]=list(intvec(1,3,4),intvec(4,5,7),intvec(1,9,10),intvec(1,4,9),intvec(4,7,9),intvec(1,3,10),intvec(2,3,10)); T[672]=list(intvec(1,3,4),intvec(2,3,6),intvec(1,9,10),intvec(4,5,9),intvec(1,4,9),intvec(1,3,10),intvec(3,6,10)); T[673]=list(intvec(1,3,4),intvec(1,9,10),intvec(4,5,9),intvec(1,4,9),intvec(1,3,10),intvec(2,3,10)); T[674]=list(intvec(1,3,4),intvec(4,5,7),intvec(2,3,6),intvec(1,9,10),intvec(1,4,9),intvec(4,7,9),intvec(1,3,10),intvec(3,6,10)); T[675]=list(intvec(1,3,4),intvec(2,3,6),intvec(3,6,8),intvec(1,9,10),intvec(4,5,9),intvec(1,4,9),intvec(3,8,10),intvec(1,3,10)); T[676]=list(intvec(1,3,4),intvec(4,5,7),intvec(2,3,8),intvec(1,9,10),intvec(1,4,9),intvec(4,7,9),intvec(3,8,10),intvec(1,3,10)); T[677]=list(intvec(1,3,4),intvec(2,3,8),intvec(1,9,10),intvec(4,5,9),intvec(1,4,9),intvec(3,8,10),intvec(1,3,10)); T[678]=list(intvec(8,9,10),intvec(4,5,7),intvec(1,8,9),intvec(1,7,9),intvec(2,3,6),intvec(3,6,8),intvec(1,3,8),intvec(1,3,7),intvec(3,4,7)); T[679]=list(intvec(8,9,10),intvec(4,5,7),intvec(1,8,9),intvec(1,7,9),intvec(1,3,8),intvec(2,3,8),intvec(1,3,7),intvec(3,4,7)); T[680]=list(intvec(8,9,10),intvec(1,8,9),intvec(1,7,9),intvec(2,3,6),intvec(3,6,8),intvec(1,3,8),intvec(3,5,7),intvec(1,3,7)); T[681]=list(intvec(8,9,10),intvec(1,8,9),intvec(1,7,9),intvec(1,3,8),intvec(2,3,8),intvec(3,5,7),intvec(1,3,7)); T[682]=list(intvec(1,3,4),intvec(4,5,7),intvec(2,3,6),intvec(3,6,8),intvec(1,3,8),intvec(1,8,10),intvec(4,7,9),intvec(1,4,10),intvec(4,9,10)); T[683]=list(intvec(1,3,4),intvec(4,5,7),intvec(1,3,8),intvec(1,8,10),intvec(2,3,8),intvec(4,7,9),intvec(1,4,10),intvec(4,9,10)); T[684]=list(intvec(1,3,4),intvec(2,3,6),intvec(3,6,8),intvec(1,3,8),intvec(1,8,10),intvec(4,5,9),intvec(1,4,10),intvec(4,9,10)); T[685]=list(intvec(1,3,4),intvec(1,3,8),intvec(1,8,10),intvec(2,3,8),intvec(4,5,9),intvec(1,4,10),intvec(4,9,10)); T[686]=list(intvec(1,3,4),intvec(1,3,8),intvec(1,8,10),intvec(2,3,8),intvec(1,4,10),intvec(4,5,10)); T[687]=list(intvec(1,3,4),intvec(4,5,7),intvec(2,3,6),intvec(3,6,8),intvec(1,3,8),intvec(1,8,10),intvec(4,7,10),intvec(1,4,10)); T[688]=list(intvec(1,3,4),intvec(2,3,6),intvec(3,6,8),intvec(1,3,8),intvec(1,8,10),intvec(1,4,10),intvec(4,5,10)); T[689]=list(intvec(1,3,4),intvec(4,5,7),intvec(1,3,8),intvec(1,8,10),intvec(2,3,8),intvec(4,7,10),intvec(1,4,10)); T[690]=list(intvec(1,3,4),intvec(8,9,10),intvec(4,5,7),intvec(1,8,9),intvec(2,3,6),intvec(3,6,8),intvec(1,3,8),intvec(1,4,9),intvec(4,7,9)); T[691]=list(intvec(1,3,4),intvec(8,9,10),intvec(1,8,9),intvec(2,3,6),intvec(3,6,8),intvec(1,3,8),intvec(4,5,9),intvec(1,4,9)); T[692]=list(intvec(1,3,4),intvec(8,9,10),intvec(1,8,9),intvec(1,3,8),intvec(2,3,8),intvec(4,5,9),intvec(1,4,9)); T[693]=list(intvec(1,3,4),intvec(8,9,10),intvec(4,5,7),intvec(1,8,9),intvec(1,3,8),intvec(2,3,8),intvec(1,4,9),intvec(4,7,9)); T[694]=list(intvec(1,3,4),intvec(1,7,8),intvec(4,5,7),intvec(1,4,7),intvec(7,8,10),intvec(1,3,8),intvec(2,3,8)); T[695]=list(intvec(1,3,4),intvec(1,7,8),intvec(4,5,7),intvec(1,4,7),intvec(7,8,10),intvec(2,3,6),intvec(3,6,8),intvec(1,3,8)); T[696]=list(intvec(1,3,4),intvec(1,7,8),intvec(7,8,9),intvec(8,9,10),intvec(4,5,7),intvec(1,4,7),intvec(2,3,6),intvec(3,6,8),intvec(1,3,8)); T[697]=list(intvec(1,3,4),intvec(1,7,8),intvec(7,8,9),intvec(8,9,10),intvec(4,5,7),intvec(1,4,7),intvec(1,3,8),intvec(2,3,8)); T[698]=list(intvec(1,5,8),intvec(1,3,5),intvec(1,3,8),intvec(2,3,8),intvec(5,8,10)); T[699]=list(intvec(2,3,6),intvec(1,5,8),intvec(1,3,5),intvec(3,6,8),intvec(1,3,8),intvec(5,8,10)); T[700]=list(intvec(7,8,10),intvec(5,7,8),intvec(1,5,8),intvec(1,3,5),intvec(1,3,8),intvec(2,3,8)); T[701]=list(intvec(1,3,4),intvec(1,4,5),intvec(1,5,8),intvec(1,3,8),intvec(2,3,8),intvec(5,8,10)); T[702]=list(intvec(8,9,10),intvec(1,5,8),intvec(1,3,5),intvec(5,8,9),intvec(1,3,8),intvec(2,3,8)); T[703]=list(intvec(1,3,4),intvec(1,4,5),intvec(2,3,6),intvec(1,5,8),intvec(3,6,8),intvec(1,3,8),intvec(5,8,10)); T[704]=list(intvec(8,9,10),intvec(2,3,6),intvec(1,5,8),intvec(1,3,5),intvec(5,8,9),intvec(3,6,8),intvec(1,3,8)); T[705]=list(intvec(7,8,10),intvec(2,3,6),intvec(5,7,8),intvec(1,5,8),intvec(1,3,5),intvec(3,6,8),intvec(1,3,8)); T[706]=list(intvec(7,8,9),intvec(8,9,10),intvec(2,3,6),intvec(5,7,8),intvec(1,5,8),intvec(1,3,5),intvec(3,6,8),intvec(1,3,8)); T[707]=list(intvec(1,3,4),intvec(1,4,5),intvec(8,9,10),intvec(2,3,6),intvec(1,5,8),intvec(5,8,9),intvec(3,6,8),intvec(1,3,8)); T[708]=list(intvec(7,8,9),intvec(8,9,10),intvec(5,7,8),intvec(1,5,8),intvec(1,3,5),intvec(1,3,8),intvec(2,3,8)); T[709]=list(intvec(1,3,4),intvec(1,4,5),intvec(7,8,10),intvec(5,7,8),intvec(1,5,8),intvec(1,3,8),intvec(2,3,8)); T[710]=list(intvec(1,3,4),intvec(1,4,5),intvec(8,9,10),intvec(1,5,8),intvec(5,8,9),intvec(1,3,8),intvec(2,3,8)); T[711]=list(intvec(1,3,4),intvec(1,4,5),intvec(7,8,10),intvec(2,3,6),intvec(5,7,8),intvec(1,5,8),intvec(3,6,8),intvec(1,3,8)); T[712]=list(intvec(1,3,4),intvec(1,4,5),intvec(7,8,9),intvec(8,9,10),intvec(2,3,6),intvec(5,7,8),intvec(1,5,8),intvec(3,6,8),intvec(1,3,8)); T[713]=list(intvec(1,3,4),intvec(1,4,5),intvec(7,8,9),intvec(8,9,10),intvec(5,7,8),intvec(1,5,8),intvec(1,3,8),intvec(2,3,8)); T[714]=list(intvec(1,7,9),intvec(2,3,6),intvec(1,3,6),intvec(3,5,7),intvec(1,3,7),intvec(1,6,9),intvec(6,9,10)); T[715]=list(intvec(4,5,7),intvec(1,7,9),intvec(2,3,6),intvec(1,3,6),intvec(1,3,7),intvec(1,6,9),intvec(3,4,7),intvec(6,9,10)); T[716]=list(intvec(8,9,10),intvec(1,7,9),intvec(2,3,6),intvec(1,3,6),intvec(3,5,7),intvec(1,3,7),intvec(6,8,9),intvec(1,6,9)); T[717]=list(intvec(8,9,10),intvec(4,5,7),intvec(1,7,9),intvec(2,3,6),intvec(1,3,6),intvec(1,3,7),intvec(6,8,9),intvec(1,6,9),intvec(3,4,7)); T[718]=list(intvec(1,6,8),intvec(1,7,8),intvec(7,8,10),intvec(2,3,6),intvec(1,3,6),intvec(3,5,7),intvec(1,3,7)); T[719]=list(intvec(1,6,8),intvec(1,7,8),intvec(4,5,7),intvec(7,8,10),intvec(2,3,6),intvec(1,3,6),intvec(1,3,7),intvec(3,4,7)); T[720]=list(intvec(1,6,8),intvec(1,7,8),intvec(7,8,9),intvec(8,9,10),intvec(4,5,7),intvec(2,3,6),intvec(1,3,6),intvec(1,3,7),intvec(3,4,7)); T[721]=list(intvec(1,6,8),intvec(1,7,8),intvec(7,8,9),intvec(8,9,10),intvec(2,3,6),intvec(1,3,6),intvec(3,5,7),intvec(1,3,7)); T[722]=list(intvec(1,3,4),intvec(2,3,6),intvec(1,3,6),intvec(1,6,9),intvec(4,5,9),intvec(1,4,9),intvec(6,9,10)); T[723]=list(intvec(1,3,4),intvec(4,5,7),intvec(2,3,6),intvec(1,3,6),intvec(1,6,9),intvec(1,4,9),intvec(4,7,9),intvec(6,9,10)); T[724]=list(intvec(1,3,4),intvec(8,9,10),intvec(2,3,6),intvec(1,3,6),intvec(6,8,9),intvec(1,6,9),intvec(4,5,9),intvec(1,4,9)); T[725]=list(intvec(1,3,4),intvec(8,9,10),intvec(4,5,7),intvec(2,3,6),intvec(1,3,6),intvec(6,8,9),intvec(1,6,9),intvec(1,4,9),intvec(4,7,9)); T[726]=list(intvec(4,5,7),intvec(2,3,6),intvec(3,4,6),intvec(1,4,6),intvec(1,6,10),intvec(4,7,9),intvec(1,4,10),intvec(4,9,10)); T[727]=list(intvec(1,4,6),intvec(2,4,6),intvec(1,6,10),intvec(4,5,9),intvec(1,4,10),intvec(4,9,10)); T[728]=list(intvec(4,5,7),intvec(1,4,6),intvec(2,4,6),intvec(1,6,10),intvec(4,7,9),intvec(1,4,10),intvec(4,9,10)); T[729]=list(intvec(2,3,6),intvec(3,4,6),intvec(1,4,6),intvec(1,6,10),intvec(4,5,9),intvec(1,4,10),intvec(4,9,10)); T[730]=list(intvec(1,6,8),intvec(4,5,7),intvec(2,3,6),intvec(3,4,6),intvec(1,4,6),intvec(1,8,10),intvec(4,7,9),intvec(1,4,10),intvec(4,9,10)); T[731]=list(intvec(4,5,7),intvec(1,4,6),intvec(2,4,6),intvec(1,6,10),intvec(4,7,10),intvec(1,4,10)); T[732]=list(intvec(2,3,6),intvec(3,4,6),intvec(1,4,6),intvec(1,6,10),intvec(1,4,10),intvec(4,5,10)); T[733]=list(intvec(1,6,8),intvec(2,3,6),intvec(3,4,6),intvec(1,4,6),intvec(1,8,10),intvec(4,5,9),intvec(1,4,10),intvec(4,9,10)); T[734]=list(intvec(1,4,6),intvec(2,4,6),intvec(1,6,10),intvec(1,4,10),intvec(4,5,10)); T[735]=list(intvec(1,6,8),intvec(4,5,7),intvec(1,4,6),intvec(1,8,10),intvec(2,4,6),intvec(4,7,9),intvec(1,4,10),intvec(4,9,10)); T[736]=list(intvec(1,6,8),intvec(1,4,6),intvec(1,8,10),intvec(2,4,6),intvec(4,5,9),intvec(1,4,10),intvec(4,9,10)); T[737]=list(intvec(4,5,7),intvec(2,3,6),intvec(3,4,6),intvec(1,4,6),intvec(1,6,10),intvec(4,7,10),intvec(1,4,10)); T[738]=list(intvec(1,6,8),intvec(1,4,6),intvec(1,8,10),intvec(2,4,6),intvec(1,4,10),intvec(4,5,10)); T[739]=list(intvec(1,6,8),intvec(2,3,6),intvec(3,4,6),intvec(1,4,6),intvec(1,8,10),intvec(1,4,10),intvec(4,5,10)); T[740]=list(intvec(1,6,8),intvec(4,5,7),intvec(2,3,6),intvec(3,4,6),intvec(1,4,6),intvec(1,8,10),intvec(4,7,10),intvec(1,4,10)); T[741]=list(intvec(1,6,8),intvec(4,5,7),intvec(1,4,6),intvec(1,8,10),intvec(2,4,6),intvec(4,7,10),intvec(1,4,10)); T[742]=list(intvec(1,6,8),intvec(8,9,10),intvec(4,5,7),intvec(1,8,9),intvec(1,4,6),intvec(2,4,6),intvec(1,4,9),intvec(4,7,9)); T[743]=list(intvec(1,6,8),intvec(8,9,10),intvec(1,8,9),intvec(2,3,6),intvec(3,4,6),intvec(1,4,6),intvec(4,5,9),intvec(1,4,9)); T[744]=list(intvec(1,6,8),intvec(8,9,10),intvec(4,5,7),intvec(1,8,9),intvec(2,3,6),intvec(3,4,6),intvec(1,4,6),intvec(1,4,9),intvec(4,7,9)); T[745]=list(intvec(1,6,8),intvec(8,9,10),intvec(1,8,9),intvec(1,4,6),intvec(2,4,6),intvec(4,5,9),intvec(1,4,9)); T[746]=list(intvec(4,5,7),intvec(1,4,7),intvec(1,7,9),intvec(2,3,6),intvec(3,4,6),intvec(1,4,6),intvec(1,6,9),intvec(6,9,10)); T[747]=list(intvec(4,5,7),intvec(1,4,7),intvec(1,7,9),intvec(1,4,6),intvec(1,6,9),intvec(2,4,6),intvec(6,9,10)); T[748]=list(intvec(8,9,10),intvec(4,5,7),intvec(1,4,7),intvec(1,7,9),intvec(2,3,6),intvec(3,4,6),intvec(1,4,6),intvec(6,8,9),intvec(1,6,9)); T[749]=list(intvec(8,9,10),intvec(4,5,7),intvec(1,4,7),intvec(1,7,9),intvec(1,4,6),intvec(6,8,9),intvec(1,6,9),intvec(2,4,6)); T[750]=list(intvec(1,6,8),intvec(1,7,8),intvec(4,5,7),intvec(1,4,7),intvec(7,8,10),intvec(2,3,6),intvec(3,4,6),intvec(1,4,6)); T[751]=list(intvec(1,6,8),intvec(1,7,8),intvec(4,5,7),intvec(1,4,7),intvec(7,8,10),intvec(1,4,6),intvec(2,4,6)); T[752]=list(intvec(1,6,8),intvec(1,7,8),intvec(7,8,9),intvec(8,9,10),intvec(4,5,7),intvec(1,4,7),intvec(2,3,6),intvec(3,4,6),intvec(1,4,6)); T[753]=list(intvec(1,6,8),intvec(1,7,8),intvec(7,8,9),intvec(8,9,10),intvec(4,5,7),intvec(1,4,7),intvec(1,4,6),intvec(2,4,6)); T[754]=list(intvec(1,4,5),intvec(1,6,8),intvec(1,5,8),intvec(1,4,6),intvec(2,4,6),intvec(5,8,10)); T[755]=list(intvec(1,4,5),intvec(1,6,8),intvec(2,3,6),intvec(1,5,8),intvec(3,4,6),intvec(1,4,6),intvec(5,8,10)); T[756]=list(intvec(1,4,5),intvec(1,6,8),intvec(8,9,10),intvec(1,5,8),intvec(5,8,9),intvec(1,4,6),intvec(2,4,6)); T[757]=list(intvec(1,4,5),intvec(1,6,8),intvec(8,9,10),intvec(2,3,6),intvec(1,5,8),intvec(5,8,9),intvec(3,4,6),intvec(1,4,6)); T[758]=list(intvec(1,4,5),intvec(1,6,8),intvec(7,8,10),intvec(2,3,6),intvec(5,7,8),intvec(1,5,8),intvec(3,4,6),intvec(1,4,6)); T[759]=list(intvec(1,4,5),intvec(1,6,8),intvec(7,8,10),intvec(5,7,8),intvec(1,5,8),intvec(1,4,6),intvec(2,4,6)); T[760]=list(intvec(1,4,5),intvec(1,6,8),intvec(7,8,9),intvec(8,9,10),intvec(2,3,6),intvec(5,7,8),intvec(1,5,8),intvec(3,4,6),intvec(1,4,6)); T[761]=list(intvec(1,4,5),intvec(1,6,8),intvec(7,8,9),intvec(8,9,10),intvec(5,7,8),intvec(1,5,8),intvec(1,4,6),intvec(2,4,6)); T[762]=list(intvec(2,3,6),intvec(3,4,6),intvec(1,5,9),intvec(1,6,9),intvec(4,5,6),intvec(1,5,6),intvec(6,9,10)); T[763]=list(intvec(1,5,9),intvec(1,6,9),intvec(2,4,6),intvec(4,5,6),intvec(1,5,6),intvec(6,9,10)); T[764]=list(intvec(2,3,6),intvec(1,5,9),intvec(1,6,9),intvec(1,5,6),intvec(3,5,6),intvec(6,9,10)); T[765]=list(intvec(1,5,9),intvec(1,6,9),intvec(1,5,6),intvec(2,5,6),intvec(6,9,10)); T[766]=list(intvec(1,5,7),intvec(1,7,9),intvec(2,3,6),intvec(3,4,6),intvec(1,6,9),intvec(4,5,6),intvec(1,5,6),intvec(6,9,10)); T[767]=list(intvec(1,5,7),intvec(1,7,9),intvec(1,6,9),intvec(1,5,6),intvec(2,5,6),intvec(6,9,10)); T[768]=list(intvec(8,9,10),intvec(2,3,6),intvec(3,4,6),intvec(1,5,9),intvec(6,8,9),intvec(1,6,9),intvec(4,5,6),intvec(1,5,6)); T[769]=list(intvec(8,9,10),intvec(1,5,9),intvec(6,8,9),intvec(1,6,9),intvec(1,5,6),intvec(2,5,6)); T[770]=list(intvec(8,9,10),intvec(1,5,9),intvec(6,8,9),intvec(1,6,9),intvec(2,4,6),intvec(4,5,6),intvec(1,5,6)); T[771]=list(intvec(1,5,7),intvec(1,7,9),intvec(1,6,9),intvec(2,4,6),intvec(4,5,6),intvec(1,5,6),intvec(6,9,10)); T[772]=list(intvec(1,5,7),intvec(1,7,9),intvec(2,3,6),intvec(1,6,9),intvec(1,5,6),intvec(3,5,6),intvec(6,9,10)); T[773]=list(intvec(8,9,10),intvec(2,3,6),intvec(1,5,9),intvec(6,8,9),intvec(1,6,9),intvec(1,5,6),intvec(3,5,6)); T[774]=list(intvec(1,5,7),intvec(8,9,10),intvec(1,7,9),intvec(6,8,9),intvec(1,6,9),intvec(1,5,6),intvec(2,5,6)); T[775]=list(intvec(1,5,7),intvec(8,9,10),intvec(1,7,9),intvec(2,3,6),intvec(6,8,9),intvec(1,6,9),intvec(1,5,6),intvec(3,5,6)); T[776]=list(intvec(1,5,7),intvec(8,9,10),intvec(1,7,9),intvec(2,3,6),intvec(3,4,6),intvec(6,8,9),intvec(1,6,9),intvec(4,5,6),intvec(1,5,6)); T[777]=list(intvec(1,5,7),intvec(8,9,10),intvec(1,7,9),intvec(6,8,9),intvec(1,6,9),intvec(2,4,6),intvec(4,5,6),intvec(1,5,6)); T[778]=list(intvec(1,5,7),intvec(1,6,8),intvec(1,7,8),intvec(7,8,10),intvec(2,3,6),intvec(3,4,6),intvec(4,5,6),intvec(1,5,6)); T[779]=list(intvec(1,5,7),intvec(1,6,8),intvec(1,7,8),intvec(7,8,10),intvec(1,5,6),intvec(2,5,6)); T[780]=list(intvec(1,5,7),intvec(1,6,8),intvec(1,7,8),intvec(7,8,10),intvec(2,4,6),intvec(4,5,6),intvec(1,5,6)); T[781]=list(intvec(1,5,7),intvec(1,6,8),intvec(1,7,8),intvec(7,8,10),intvec(2,3,6),intvec(1,5,6),intvec(3,5,6)); T[782]=list(intvec(1,5,7),intvec(1,6,8),intvec(1,7,8),intvec(7,8,9),intvec(8,9,10),intvec(1,5,6),intvec(2,5,6)); T[783]=list(intvec(1,5,7),intvec(1,6,8),intvec(1,7,8),intvec(7,8,9),intvec(8,9,10),intvec(2,3,6),intvec(3,4,6),intvec(4,5,6),intvec(1,5,6)); T[784]=list(intvec(1,5,7),intvec(1,6,8),intvec(1,7,8),intvec(7,8,9),intvec(8,9,10),intvec(2,3,6),intvec(1,5,6),intvec(3,5,6)); T[785]=list(intvec(1,5,7),intvec(1,6,8),intvec(1,7,8),intvec(7,8,9),intvec(8,9,10),intvec(2,4,6),intvec(4,5,6),intvec(1,5,6)); T[786]=list(intvec(1,7,9),intvec(3,5,7),intvec(1,2,7),intvec(1,2,9),intvec(2,3,7),intvec(2,9,10)); T[787]=list(intvec(4,5,7),intvec(1,7,9),intvec(2,4,7),intvec(1,2,7),intvec(1,2,9),intvec(2,9,10)); T[788]=list(intvec(1,7,9),intvec(3,5,7),intvec(1,2,7),intvec(1,2,9),intvec(2,3,7),intvec(6,9,10),intvec(2,6,9)); T[789]=list(intvec(1,7,9),intvec(1,2,7),intvec(1,2,9),intvec(2,5,7),intvec(2,9,10)); T[790]=list(intvec(4,5,7),intvec(1,7,9),intvec(3,4,7),intvec(1,2,7),intvec(1,2,9),intvec(2,3,7),intvec(6,9,10),intvec(2,6,9)); T[791]=list(intvec(4,5,7),intvec(1,7,9),intvec(3,4,7),intvec(1,2,7),intvec(1,2,9),intvec(2,3,7),intvec(2,9,10)); T[792]=list(intvec(4,5,7),intvec(1,7,9),intvec(2,4,7),intvec(1,2,7),intvec(1,2,9),intvec(6,9,10),intvec(2,6,9)); T[793]=list(intvec(1,7,9),intvec(1,2,7),intvec(1,2,9),intvec(2,5,7),intvec(6,9,10),intvec(2,6,9)); T[794]=list(intvec(8,9,10),intvec(1,7,9),intvec(3,5,7),intvec(1,2,7),intvec(2,8,9),intvec(1,2,9),intvec(2,3,7)); T[795]=list(intvec(8,9,10),intvec(4,5,7),intvec(1,7,9),intvec(6,8,9),intvec(2,4,7),intvec(1,2,7),intvec(1,2,9),intvec(2,6,9)); T[796]=list(intvec(8,9,10),intvec(1,7,9),intvec(6,8,9),intvec(1,2,7),intvec(1,2,9),intvec(2,5,7),intvec(2,6,9)); T[797]=list(intvec(8,9,10),intvec(4,5,7),intvec(1,7,9),intvec(2,4,7),intvec(1,2,7),intvec(2,8,9),intvec(1,2,9)); T[798]=list(intvec(8,9,10),intvec(4,5,7),intvec(1,7,9),intvec(3,4,7),intvec(1,2,7),intvec(2,8,9),intvec(1,2,9),intvec(2,3,7)); T[799]=list(intvec(8,9,10),intvec(1,7,9),intvec(3,5,7),intvec(6,8,9),intvec(1,2,7),intvec(1,2,9),intvec(2,3,7),intvec(2,6,9)); T[800]=list(intvec(8,9,10),intvec(4,5,7),intvec(1,7,9),intvec(6,8,9),intvec(3,4,7),intvec(1,2,7),intvec(1,2,9),intvec(2,3,7),intvec(2,6,9)); T[801]=list(intvec(8,9,10),intvec(1,7,9),intvec(1,2,7),intvec(2,8,9),intvec(1,2,9),intvec(2,5,7)); T[802]=list(intvec(1,3,4),intvec(4,5,9),intvec(1,4,10),intvec(4,9,10),intvec(1,3,10),intvec(2,3,10)); T[803]=list(intvec(1,3,4),intvec(2,3,6),intvec(4,5,9),intvec(1,4,10),intvec(4,9,10),intvec(1,3,10),intvec(3,6,10)); T[804]=list(intvec(1,3,4),intvec(4,5,7),intvec(4,7,9),intvec(1,4,10),intvec(4,9,10),intvec(1,3,10),intvec(2,3,10)); T[805]=list(intvec(1,3,4),intvec(4,5,7),intvec(2,3,6),intvec(4,7,9),intvec(1,4,10),intvec(4,9,10),intvec(1,3,10),intvec(3,6,10)); T[806]=list(intvec(1,3,4),intvec(2,3,8),intvec(4,5,9),intvec(1,4,10),intvec(4,9,10),intvec(3,8,10),intvec(1,3,10)); T[807]=list(intvec(1,3,4),intvec(2,3,6),intvec(3,6,8),intvec(4,5,9),intvec(1,4,10),intvec(4,9,10),intvec(3,8,10),intvec(1,3,10)); T[808]=list(intvec(1,3,4),intvec(4,5,7),intvec(2,3,8),intvec(4,7,9),intvec(1,4,10),intvec(4,9,10),intvec(3,8,10),intvec(1,3,10)); T[809]=list(intvec(1,3,4),intvec(4,5,7),intvec(2,3,6),intvec(3,6,8),intvec(4,7,9),intvec(1,4,10),intvec(4,9,10),intvec(3,8,10),intvec(1,3,10)); T[810]=list(intvec(1,3,4),intvec(2,3,6),intvec(1,4,10),intvec(4,5,10),intvec(1,3,10),intvec(3,6,10)); T[811]=list(intvec(1,3,4),intvec(4,5,7),intvec(4,7,10),intvec(1,4,10),intvec(1,3,10),intvec(2,3,10)); T[812]=list(intvec(1,3,4),intvec(2,3,6),intvec(3,6,8),intvec(1,4,10),intvec(4,5,10),intvec(3,8,10),intvec(1,3,10)); T[813]=list(intvec(1,3,4),intvec(2,3,8),intvec(1,4,10),intvec(4,5,10),intvec(3,8,10),intvec(1,3,10)); T[814]=list(intvec(1,3,4),intvec(4,5,7),intvec(2,3,8),intvec(4,7,10),intvec(1,4,10),intvec(3,8,10),intvec(1,3,10)); T[815]=list(intvec(1,3,4),intvec(4,5,7),intvec(2,3,6),intvec(4,7,10),intvec(1,4,10),intvec(1,3,10),intvec(3,6,10)); T[816]=list(intvec(1,3,4),intvec(4,5,7),intvec(2,3,6),intvec(3,6,8),intvec(4,7,10),intvec(1,4,10),intvec(3,8,10),intvec(1,3,10)); T[817]=list(intvec(1,3,4),intvec(1,4,10),intvec(4,5,10),intvec(1,3,10),intvec(2,3,10)); T[818]=list(intvec(1,7,8),intvec(4,5,7),intvec(7,8,10),intvec(2,3,6),intvec(3,6,8),intvec(1,3,8),intvec(1,3,7),intvec(3,4,7)); T[819]=list(intvec(1,7,8),intvec(7,8,10),intvec(2,3,6),intvec(3,6,8),intvec(1,3,8),intvec(3,5,7),intvec(1,3,7)); T[820]=list(intvec(1,7,8),intvec(4,5,7),intvec(7,8,10),intvec(1,3,8),intvec(2,3,8),intvec(1,3,7),intvec(3,4,7)); T[821]=list(intvec(1,7,8),intvec(7,8,10),intvec(1,3,8),intvec(2,3,8),intvec(3,5,7),intvec(1,3,7)); T[822]=list(intvec(1,7,8),intvec(7,8,9),intvec(8,9,10),intvec(2,3,6),intvec(3,6,8),intvec(1,3,8),intvec(3,5,7),intvec(1,3,7)); T[823]=list(intvec(1,7,8),intvec(7,8,9),intvec(8,9,10),intvec(4,5,7),intvec(1,3,8),intvec(2,3,8),intvec(1,3,7),intvec(3,4,7)); T[824]=list(intvec(1,7,8),intvec(7,8,9),intvec(8,9,10),intvec(1,3,8),intvec(2,3,8),intvec(3,5,7),intvec(1,3,7)); T[825]=list(intvec(1,7,8),intvec(7,8,9),intvec(8,9,10),intvec(4,5,7),intvec(2,3,6),intvec(3,6,8),intvec(1,3,8),intvec(1,3,7),intvec(3,4,7)); T[826]=list(intvec(4,5,7),intvec(2,3,6),intvec(3,4,6),intvec(1,4,6),intvec(1,6,9),intvec(1,4,9),intvec(4,7,9),intvec(6,9,10)); T[827]=list(intvec(4,5,7),intvec(1,4,6),intvec(1,6,9),intvec(2,4,6),intvec(1,4,9),intvec(4,7,9),intvec(6,9,10)); T[828]=list(intvec(1,4,6),intvec(1,6,9),intvec(2,4,6),intvec(4,5,9),intvec(1,4,9),intvec(6,9,10)); T[829]=list(intvec(2,3,6),intvec(3,4,6),intvec(1,4,6),intvec(1,6,9),intvec(4,5,9),intvec(1,4,9),intvec(6,9,10)); T[830]=list(intvec(8,9,10),intvec(2,3,6),intvec(3,4,6),intvec(1,4,6),intvec(6,8,9),intvec(1,6,9),intvec(4,5,9),intvec(1,4,9)); T[831]=list(intvec(8,9,10),intvec(4,5,7),intvec(2,3,6),intvec(3,4,6),intvec(1,4,6),intvec(6,8,9),intvec(1,6,9),intvec(1,4,9),intvec(4,7,9)); T[832]=list(intvec(8,9,10),intvec(1,4,6),intvec(6,8,9),intvec(1,6,9),intvec(2,4,6),intvec(4,5,9),intvec(1,4,9)); T[833]=list(intvec(8,9,10),intvec(4,5,7),intvec(1,4,6),intvec(6,8,9),intvec(1,6,9),intvec(2,4,6),intvec(1,4,9),intvec(4,7,9)); T[834]=list(intvec(1,6,8),intvec(2,3,6),intvec(1,5,8),intvec(1,5,6),intvec(5,8,10),intvec(3,5,6)); T[835]=list(intvec(1,6,8),intvec(2,3,6),intvec(1,5,8),intvec(3,4,6),intvec(4,5,6),intvec(1,5,6),intvec(5,8,10)); T[836]=list(intvec(1,6,8),intvec(1,5,8),intvec(1,5,6),intvec(5,8,10),intvec(2,5,6)); T[837]=list(intvec(1,6,8),intvec(1,5,8),intvec(2,4,6),intvec(4,5,6),intvec(1,5,6),intvec(5,8,10)); T[838]=list(intvec(1,6,8),intvec(7,8,10),intvec(5,7,8),intvec(1,5,8),intvec(2,4,6),intvec(4,5,6),intvec(1,5,6)); T[839]=list(intvec(1,6,8),intvec(8,9,10),intvec(1,5,8),intvec(5,8,9),intvec(2,4,6),intvec(4,5,6),intvec(1,5,6)); T[840]=list(intvec(1,6,8),intvec(7,8,10),intvec(2,3,6),intvec(5,7,8),intvec(1,5,8),intvec(3,4,6),intvec(4,5,6),intvec(1,5,6)); T[841]=list(intvec(1,6,8),intvec(8,9,10),intvec(2,3,6),intvec(1,5,8),intvec(5,8,9),intvec(3,4,6),intvec(4,5,6),intvec(1,5,6)); T[842]=list(intvec(1,6,8),intvec(8,9,10),intvec(2,3,6),intvec(1,5,8),intvec(5,8,9),intvec(1,5,6),intvec(3,5,6)); T[843]=list(intvec(1,6,8),intvec(8,9,10),intvec(1,5,8),intvec(5,8,9),intvec(1,5,6),intvec(2,5,6)); T[844]=list(intvec(1,6,8),intvec(7,8,10),intvec(5,7,8),intvec(1,5,8),intvec(1,5,6),intvec(2,5,6)); T[845]=list(intvec(1,6,8),intvec(7,8,10),intvec(2,3,6),intvec(5,7,8),intvec(1,5,8),intvec(1,5,6),intvec(3,5,6)); T[846]=list(intvec(1,6,8),intvec(7,8,9),intvec(8,9,10),intvec(5,7,8),intvec(1,5,8),intvec(2,4,6),intvec(4,5,6),intvec(1,5,6)); T[847]=list(intvec(1,6,8),intvec(7,8,9),intvec(8,9,10),intvec(5,7,8),intvec(1,5,8),intvec(1,5,6),intvec(2,5,6)); T[848]=list(intvec(1,6,8),intvec(7,8,9),intvec(8,9,10),intvec(2,3,6),intvec(5,7,8),intvec(1,5,8),intvec(3,4,6),intvec(4,5,6),intvec(1,5,6)); T[849]=list(intvec(1,6,8),intvec(7,8,9),intvec(8,9,10),intvec(2,3,6),intvec(5,7,8),intvec(1,5,8),intvec(1,5,6),intvec(3,5,6)); T[850]=list(intvec(2,5,10)); T[851]=list(intvec(2,9,10),intvec(2,5,9)); T[852]=list(intvec(6,9,10),intvec(2,6,9),intvec(2,5,9)); T[853]=list(intvec(8,9,10),intvec(2,8,9),intvec(2,5,9)); T[854]=list(intvec(8,9,10),intvec(6,8,9),intvec(2,6,9),intvec(2,5,9)); T[855]=list(intvec(4,5,7),intvec(2,4,7),intvec(2,7,10)); T[856]=list(intvec(3,5,7),intvec(2,3,7),intvec(2,7,10)); T[857]=list(intvec(4,5,7),intvec(3,4,7),intvec(2,3,7),intvec(2,7,10)); T[858]=list(intvec(2,5,7),intvec(2,7,10)); T[859]=list(intvec(4,5,7),intvec(2,4,7),intvec(2,9,10),intvec(2,7,9)); T[860]=list(intvec(2,5,7),intvec(2,9,10),intvec(2,7,9)); T[861]=list(intvec(4,5,7),intvec(3,4,7),intvec(2,3,7),intvec(2,9,10),intvec(2,7,9)); T[862]=list(intvec(4,5,7),intvec(2,4,7),intvec(6,9,10),intvec(2,6,9),intvec(2,7,9)); T[863]=list(intvec(4,5,7),intvec(3,4,7),intvec(2,3,7),intvec(6,9,10),intvec(2,6,9),intvec(2,7,9)); T[864]=list(intvec(2,5,7),intvec(6,9,10),intvec(2,6,9),intvec(2,7,9)); T[865]=list(intvec(3,5,7),intvec(2,3,7),intvec(2,9,10),intvec(2,7,9)); T[866]=list(intvec(3,5,7),intvec(2,3,7),intvec(6,9,10),intvec(2,6,9),intvec(2,7,9)); T[867]=list(intvec(8,9,10),intvec(6,8,9),intvec(2,5,7),intvec(2,6,9),intvec(2,7,9)); T[868]=list(intvec(8,9,10),intvec(4,5,7),intvec(6,8,9),intvec(2,4,7),intvec(2,6,9),intvec(2,7,9)); T[869]=list(intvec(8,9,10),intvec(4,5,7),intvec(3,4,7),intvec(2,8,9),intvec(2,3,7),intvec(2,7,9)); T[870]=list(intvec(8,9,10),intvec(2,8,9),intvec(2,5,7),intvec(2,7,9)); T[871]=list(intvec(8,9,10),intvec(4,5,7),intvec(2,4,7),intvec(2,8,9),intvec(2,7,9)); T[872]=list(intvec(8,9,10),intvec(3,5,7),intvec(6,8,9),intvec(2,3,7),intvec(2,6,9),intvec(2,7,9)); T[873]=list(intvec(8,9,10),intvec(3,5,7),intvec(2,8,9),intvec(2,3,7),intvec(2,7,9)); T[874]=list(intvec(8,9,10),intvec(4,5,7),intvec(6,8,9),intvec(3,4,7),intvec(2,3,7),intvec(2,6,9),intvec(2,7,9)); T[875]=list(intvec(4,5,9),intvec(6,9,10),intvec(2,6,9),intvec(2,4,9)); T[876]=list(intvec(4,5,7),intvec(4,7,9),intvec(6,9,10),intvec(2,6,9),intvec(2,4,9)); T[877]=list(intvec(4,5,9),intvec(2,9,10),intvec(2,4,9)); T[878]=list(intvec(8,9,10),intvec(6,8,9),intvec(4,5,9),intvec(2,6,9),intvec(2,4,9)); T[879]=list(intvec(4,5,7),intvec(4,7,9),intvec(2,9,10),intvec(2,4,9)); T[880]=list(intvec(8,9,10),intvec(4,5,7),intvec(6,8,9),intvec(4,7,9),intvec(2,6,9),intvec(2,4,9)); T[881]=list(intvec(8,9,10),intvec(2,8,9),intvec(4,5,9),intvec(2,4,9)); T[882]=list(intvec(8,9,10),intvec(4,5,7),intvec(2,8,9),intvec(4,7,9),intvec(2,4,9)); T[883]=list(intvec(7,8,10),intvec(2,5,7),intvec(2,7,8)); T[884]=list(intvec(4,5,7),intvec(7,8,10),intvec(2,4,7),intvec(2,7,8)); T[885]=list(intvec(4,5,7),intvec(7,8,10),intvec(3,4,7),intvec(2,3,7),intvec(2,7,8)); T[886]=list(intvec(7,8,10),intvec(3,5,7),intvec(2,3,7),intvec(2,7,8)); T[887]=list(intvec(7,8,9),intvec(8,9,10),intvec(4,5,7),intvec(2,4,7),intvec(2,7,8)); T[888]=list(intvec(7,8,9),intvec(8,9,10),intvec(4,5,7),intvec(3,4,7),intvec(2,3,7),intvec(2,7,8)); T[889]=list(intvec(7,8,9),intvec(8,9,10),intvec(3,5,7),intvec(2,3,7),intvec(2,7,8)); T[890]=list(intvec(7,8,9),intvec(8,9,10),intvec(2,5,7),intvec(2,7,8)); T[891]=list(intvec(2,9,10),intvec(2,3,9),intvec(3,5,9)); T[892]=list(intvec(6,9,10),intvec(2,6,9),intvec(2,3,9),intvec(3,5,9)); T[893]=list(intvec(8,9,10),intvec(6,8,9),intvec(2,6,9),intvec(2,3,9),intvec(3,5,9)); T[894]=list(intvec(8,9,10),intvec(2,8,9),intvec(2,3,9),intvec(3,5,9)); T[895]=list(intvec(3,5,7),intvec(2,9,10),intvec(3,7,9),intvec(2,3,9)); T[896]=list(intvec(4,5,7),intvec(3,4,7),intvec(6,9,10),intvec(2,6,9),intvec(3,7,9),intvec(2,3,9)); T[897]=list(intvec(3,5,7),intvec(6,9,10),intvec(2,6,9),intvec(3,7,9),intvec(2,3,9)); T[898]=list(intvec(4,5,7),intvec(3,4,7),intvec(2,9,10),intvec(3,7,9),intvec(2,3,9)); T[899]=list(intvec(8,9,10),intvec(4,5,7),intvec(3,4,7),intvec(2,8,9),intvec(3,7,9),intvec(2,3,9)); T[900]=list(intvec(8,9,10),intvec(3,5,7),intvec(2,8,9),intvec(3,7,9),intvec(2,3,9)); T[901]=list(intvec(8,9,10),intvec(3,5,7),intvec(6,8,9),intvec(2,6,9),intvec(3,7,9),intvec(2,3,9)); T[902]=list(intvec(8,9,10),intvec(4,5,7),intvec(6,8,9),intvec(3,4,7),intvec(2,6,9),intvec(3,7,9),intvec(2,3,9)); T[903]=list(intvec(4,5,7),intvec(4,7,9),intvec(2,9,10),intvec(3,4,9),intvec(2,3,9)); T[904]=list(intvec(4,5,9),intvec(2,9,10),intvec(3,4,9),intvec(2,3,9)); T[905]=list(intvec(4,5,7),intvec(4,7,9),intvec(6,9,10),intvec(2,6,9),intvec(3,4,9),intvec(2,3,9)); T[906]=list(intvec(4,5,9),intvec(6,9,10),intvec(2,6,9),intvec(3,4,9),intvec(2,3,9)); T[907]=list(intvec(8,9,10),intvec(4,5,7),intvec(6,8,9),intvec(4,7,9),intvec(2,6,9),intvec(3,4,9),intvec(2,3,9)); T[908]=list(intvec(8,9,10),intvec(6,8,9),intvec(4,5,9),intvec(2,6,9),intvec(3,4,9),intvec(2,3,9)); T[909]=list(intvec(8,9,10),intvec(2,8,9),intvec(4,5,9),intvec(3,4,9),intvec(2,3,9)); T[910]=list(intvec(8,9,10),intvec(4,5,7),intvec(2,8,9),intvec(4,7,9),intvec(3,4,9),intvec(2,3,9)); T[911]=list(intvec(4,5,10),intvec(2,4,10)); T[912]=list(intvec(4,5,9),intvec(4,9,10),intvec(2,4,10)); T[913]=list(intvec(4,5,7),intvec(4,7,10),intvec(2,4,10)); T[914]=list(intvec(4,5,7),intvec(4,7,9),intvec(4,9,10),intvec(2,4,10)); T[915]=list(intvec(5,8,10),intvec(2,5,8)); T[916]=list(intvec(7,8,10),intvec(5,7,8),intvec(2,5,8)); T[917]=list(intvec(8,9,10),intvec(5,8,9),intvec(2,5,8)); T[918]=list(intvec(7,8,9),intvec(8,9,10),intvec(5,7,8),intvec(2,5,8)); T[919]=list(intvec(4,5,7),intvec(2,4,7),intvec(2,6,7),intvec(6,7,10)); T[920]=list(intvec(2,5,7),intvec(2,6,7),intvec(6,7,10)); T[921]=list(intvec(3,5,7),intvec(2,3,7),intvec(2,6,7),intvec(6,7,10)); T[922]=list(intvec(4,5,7),intvec(3,4,7),intvec(2,3,7),intvec(2,6,7),intvec(6,7,10)); T[923]=list(intvec(2,5,7),intvec(6,9,10),intvec(2,6,7),intvec(6,7,9)); T[924]=list(intvec(4,5,7),intvec(2,4,7),intvec(6,9,10),intvec(2,6,7),intvec(6,7,9)); T[925]=list(intvec(3,5,7),intvec(2,3,7),intvec(6,9,10),intvec(2,6,7),intvec(6,7,9)); T[926]=list(intvec(4,5,7),intvec(3,4,7),intvec(2,3,7),intvec(6,9,10),intvec(2,6,7),intvec(6,7,9)); T[927]=list(intvec(8,9,10),intvec(3,5,7),intvec(6,8,9),intvec(2,3,7),intvec(2,6,7),intvec(6,7,9)); T[928]=list(intvec(8,9,10),intvec(4,5,7),intvec(6,8,9),intvec(2,4,7),intvec(2,6,7),intvec(6,7,9)); T[929]=list(intvec(8,9,10),intvec(4,5,7),intvec(6,8,9),intvec(3,4,7),intvec(2,3,7),intvec(2,6,7),intvec(6,7,9)); T[930]=list(intvec(8,9,10),intvec(6,8,9),intvec(2,5,7),intvec(2,6,7),intvec(6,7,9)); T[931]=list(intvec(7,8,10),intvec(3,5,7),intvec(2,3,7),intvec(6,7,8),intvec(2,6,7)); T[932]=list(intvec(4,5,7),intvec(7,8,10),intvec(2,4,7),intvec(6,7,8),intvec(2,6,7)); T[933]=list(intvec(7,8,10),intvec(2,5,7),intvec(6,7,8),intvec(2,6,7)); T[934]=list(intvec(4,5,7),intvec(7,8,10),intvec(3,4,7),intvec(2,3,7),intvec(6,7,8),intvec(2,6,7)); T[935]=list(intvec(7,8,9),intvec(8,9,10),intvec(2,5,7),intvec(6,7,8),intvec(2,6,7)); T[936]=list(intvec(7,8,9),intvec(8,9,10),intvec(4,5,7),intvec(2,4,7),intvec(6,7,8),intvec(2,6,7)); T[937]=list(intvec(7,8,9),intvec(8,9,10),intvec(4,5,7),intvec(3,4,7),intvec(2,3,7),intvec(6,7,8),intvec(2,6,7)); T[938]=list(intvec(7,8,9),intvec(8,9,10),intvec(3,5,7),intvec(2,3,7),intvec(6,7,8),intvec(2,6,7)); T[939]=list(intvec(2,4,8),intvec(4,5,10),intvec(4,8,10)); T[940]=list(intvec(4,5,9),intvec(2,4,8),intvec(4,9,10),intvec(4,8,10)); T[941]=list(intvec(4,5,7),intvec(4,7,9),intvec(2,4,8),intvec(4,9,10),intvec(4,8,10)); T[942]=list(intvec(4,5,7),intvec(2,4,8),intvec(4,7,10),intvec(4,8,10)); T[943]=list(intvec(8,9,10),intvec(4,5,9),intvec(2,4,8),intvec(4,8,9)); T[944]=list(intvec(8,9,10),intvec(4,5,7),intvec(4,7,9),intvec(2,4,8),intvec(4,8,9)); T[945]=list(intvec(4,5,7),intvec(7,8,10),intvec(4,7,8),intvec(2,4,8)); T[946]=list(intvec(7,8,9),intvec(8,9,10),intvec(4,5,7),intvec(4,7,8),intvec(2,4,8)); T[947]=list(intvec(5,8,10),intvec(4,5,8),intvec(2,4,8)); T[948]=list(intvec(7,8,10),intvec(5,7,8),intvec(4,5,8),intvec(2,4,8)); T[949]=list(intvec(8,9,10),intvec(5,8,9),intvec(4,5,8),intvec(2,4,8)); T[950]=list(intvec(7,8,9),intvec(8,9,10),intvec(5,7,8),intvec(4,5,8),intvec(2,4,8)); T[951]=list(intvec(2,3,10),intvec(3,5,10)); T[952]=list(intvec(2,3,8),intvec(3,8,10),intvec(3,5,10)); T[953]=list(intvec(2,3,6),intvec(3,6,8),intvec(3,8,10),intvec(3,5,10)); T[954]=list(intvec(2,3,6),intvec(3,6,10),intvec(3,5,10)); T[955]=list(intvec(2,3,10),intvec(3,5,9),intvec(3,9,10)); T[956]=list(intvec(2,3,6),intvec(3,6,10),intvec(3,5,9),intvec(3,9,10)); T[957]=list(intvec(2,3,6),intvec(3,6,8),intvec(3,8,10),intvec(3,5,9),intvec(3,9,10)); T[958]=list(intvec(2,3,8),intvec(3,8,10),intvec(3,5,9),intvec(3,9,10)); T[959]=list(intvec(4,5,7),intvec(3,4,7),intvec(2,3,10),intvec(3,7,10)); T[960]=list(intvec(3,5,7),intvec(2,3,10),intvec(3,7,10)); T[961]=list(intvec(4,5,7),intvec(2,3,8),intvec(3,4,7),intvec(3,8,10),intvec(3,7,10)); T[962]=list(intvec(2,3,6),intvec(3,6,8),intvec(3,5,7),intvec(3,8,10),intvec(3,7,10)); T[963]=list(intvec(2,3,8),intvec(3,5,7),intvec(3,8,10),intvec(3,7,10)); T[964]=list(intvec(4,5,7),intvec(2,3,6),intvec(3,6,8),intvec(3,4,7),intvec(3,8,10),intvec(3,7,10)); T[965]=list(intvec(4,5,7),intvec(2,3,6),intvec(3,4,7),intvec(3,6,10),intvec(3,7,10)); T[966]=list(intvec(2,3,6),intvec(3,5,7),intvec(3,6,10),intvec(3,7,10)); T[967]=list(intvec(3,5,7),intvec(2,3,10),intvec(3,7,9),intvec(3,9,10)); T[968]=list(intvec(2,3,6),intvec(3,5,7),intvec(3,6,10),intvec(3,7,9),intvec(3,9,10)); T[969]=list(intvec(4,5,7),intvec(3,4,7),intvec(2,3,10),intvec(3,7,9),intvec(3,9,10)); T[970]=list(intvec(4,5,7),intvec(2,3,6),intvec(3,4,7),intvec(3,6,10),intvec(3,7,9),intvec(3,9,10)); T[971]=list(intvec(2,3,6),intvec(3,6,8),intvec(3,5,7),intvec(3,8,10),intvec(3,7,9),intvec(3,9,10)); T[972]=list(intvec(4,5,7),intvec(2,3,6),intvec(3,6,8),intvec(3,4,7),intvec(3,8,10),intvec(3,7,9),intvec(3,9,10)); T[973]=list(intvec(4,5,7),intvec(2,3,8),intvec(3,4,7),intvec(3,8,10),intvec(3,7,9),intvec(3,9,10)); T[974]=list(intvec(2,3,8),intvec(3,5,7),intvec(3,8,10),intvec(3,7,9),intvec(3,9,10)); T[975]=list(intvec(4,5,7),intvec(2,3,6),intvec(4,7,9),intvec(3,6,10),intvec(3,4,9),intvec(3,9,10)); T[976]=list(intvec(4,5,7),intvec(4,7,9),intvec(2,3,10),intvec(3,4,9),intvec(3,9,10)); T[977]=list(intvec(2,3,6),intvec(4,5,9),intvec(3,6,10),intvec(3,4,9),intvec(3,9,10)); T[978]=list(intvec(4,5,9),intvec(2,3,10),intvec(3,4,9),intvec(3,9,10)); T[979]=list(intvec(4,5,7),intvec(2,3,8),intvec(4,7,9),intvec(3,8,10),intvec(3,4,9),intvec(3,9,10)); T[980]=list(intvec(2,3,8),intvec(4,5,9),intvec(3,8,10),intvec(3,4,9),intvec(3,9,10)); T[981]=list(intvec(2,3,6),intvec(3,6,8),intvec(4,5,9),intvec(3,8,10),intvec(3,4,9),intvec(3,9,10)); T[982]=list(intvec(4,5,7),intvec(2,3,6),intvec(3,6,8),intvec(4,7,9),intvec(3,8,10),intvec(3,4,9),intvec(3,9,10)); T[983]=list(intvec(8,9,10),intvec(2,3,6),intvec(3,6,8),intvec(3,8,9),intvec(3,5,9)); T[984]=list(intvec(8,9,10),intvec(2,3,8),intvec(3,8,9),intvec(3,5,9)); T[985]=list(intvec(8,9,10),intvec(2,3,8),intvec(3,5,7),intvec(3,8,9),intvec(3,7,9)); T[986]=list(intvec(8,9,10),intvec(4,5,7),intvec(2,3,8),intvec(3,4,7),intvec(3,8,9),intvec(3,7,9)); T[987]=list(intvec(8,9,10),intvec(2,3,6),intvec(3,6,8),intvec(3,5,7),intvec(3,8,9),intvec(3,7,9)); T[988]=list(intvec(8,9,10),intvec(4,5,7),intvec(2,3,6),intvec(3,6,8),intvec(3,4,7),intvec(3,8,9),intvec(3,7,9)); T[989]=list(intvec(4,5,9),intvec(4,9,10),intvec(2,3,10),intvec(3,4,10)); T[990]=list(intvec(2,3,6),intvec(4,5,9),intvec(4,9,10),intvec(3,6,10),intvec(3,4,10)); T[991]=list(intvec(4,5,10),intvec(2,3,10),intvec(3,4,10)); T[992]=list(intvec(2,3,6),intvec(4,5,10),intvec(3,6,10),intvec(3,4,10)); T[993]=list(intvec(2,3,8),intvec(4,5,9),intvec(4,9,10),intvec(3,8,10),intvec(3,4,10)); T[994]=list(intvec(4,5,7),intvec(2,3,6),intvec(4,7,9),intvec(4,9,10),intvec(3,6,10),intvec(3,4,10)); T[995]=list(intvec(2,3,6),intvec(3,6,8),intvec(4,5,9),intvec(4,9,10),intvec(3,8,10),intvec(3,4,10)); T[996]=list(intvec(4,5,7),intvec(4,7,10),intvec(2,3,10),intvec(3,4,10)); T[997]=list(intvec(2,3,8),intvec(4,5,10),intvec(3,8,10),intvec(3,4,10)); T[998]=list(intvec(4,5,7),intvec(2,3,6),intvec(4,7,10),intvec(3,6,10),intvec(3,4,10)); T[999]=list(intvec(2,3,6),intvec(3,6,8),intvec(4,5,10),intvec(3,8,10),intvec(3,4,10)); T[1000]=list(intvec(4,5,7),intvec(4,7,9),intvec(4,9,10),intvec(2,3,10),intvec(3,4,10)); T[1001]=list(intvec(4,5,7),intvec(2,3,6),intvec(3,6,8),intvec(4,7,10),intvec(3,8,10),intvec(3,4,10)); T[1002]=list(intvec(4,5,7),intvec(2,3,8),intvec(4,7,10),intvec(3,8,10),intvec(3,4,10)); T[1003]=list(intvec(4,5,7),intvec(2,3,6),intvec(3,6,8),intvec(4,7,9),intvec(4,9,10),intvec(3,8,10),intvec(3,4,10)); T[1004]=list(intvec(4,5,7),intvec(2,3,8),intvec(4,7,9),intvec(4,9,10),intvec(3,8,10),intvec(3,4,10)); T[1005]=list(intvec(8,9,10),intvec(4,5,7),intvec(2,3,8),intvec(4,7,9),intvec(3,4,9),intvec(3,8,9)); T[1006]=list(intvec(8,9,10),intvec(4,5,7),intvec(2,3,6),intvec(3,6,8),intvec(4,7,9),intvec(3,4,9),intvec(3,8,9)); T[1007]=list(intvec(8,9,10),intvec(2,3,6),intvec(3,6,8),intvec(4,5,9),intvec(3,4,9),intvec(3,8,9)); T[1008]=list(intvec(8,9,10),intvec(2,3,8),intvec(4,5,9),intvec(3,4,9),intvec(3,8,9)); T[1009]=list(intvec(2,3,6),intvec(6,9,10),intvec(3,6,9),intvec(3,5,9)); T[1010]=list(intvec(8,9,10),intvec(2,3,6),intvec(6,8,9),intvec(3,6,9),intvec(3,5,9)); T[1011]=list(intvec(4,5,7),intvec(2,3,6),intvec(3,4,7),intvec(6,9,10),intvec(3,6,9),intvec(3,7,9)); T[1012]=list(intvec(2,3,6),intvec(3,5,7),intvec(6,9,10),intvec(3,6,9),intvec(3,7,9)); T[1013]=list(intvec(8,9,10),intvec(2,3,6),intvec(3,5,7),intvec(6,8,9),intvec(3,6,9),intvec(3,7,9)); T[1014]=list(intvec(8,9,10),intvec(4,5,7),intvec(2,3,6),intvec(6,8,9),intvec(3,4,7),intvec(3,6,9),intvec(3,7,9)); T[1015]=list(intvec(7,8,10),intvec(2,3,8),intvec(3,5,7),intvec(3,7,8)); T[1016]=list(intvec(4,5,7),intvec(7,8,10),intvec(2,3,8),intvec(3,4,7),intvec(3,7,8)); T[1017]=list(intvec(7,8,10),intvec(2,3,6),intvec(3,6,8),intvec(3,5,7),intvec(3,7,8)); T[1018]=list(intvec(4,5,7),intvec(7,8,10),intvec(2,3,6),intvec(3,6,8),intvec(3,4,7),intvec(3,7,8)); T[1019]=list(intvec(7,8,9),intvec(8,9,10),intvec(2,3,6),intvec(3,6,8),intvec(3,5,7),intvec(3,7,8)); T[1020]=list(intvec(7,8,9),intvec(8,9,10),intvec(4,5,7),intvec(2,3,8),intvec(3,4,7),intvec(3,7,8)); T[1021]=list(intvec(7,8,9),intvec(8,9,10),intvec(4,5,7),intvec(2,3,6),intvec(3,6,8),intvec(3,4,7),intvec(3,7,8)); T[1022]=list(intvec(7,8,9),intvec(8,9,10),intvec(2,3,8),intvec(3,5,7),intvec(3,7,8)); T[1023]=list(intvec(4,5,7),intvec(2,3,6),intvec(4,7,9),intvec(6,9,10),intvec(3,6,9),intvec(3,4,9)); T[1024]=list(intvec(2,3,6),intvec(4,5,9),intvec(6,9,10),intvec(3,6,9),intvec(3,4,9)); T[1025]=list(intvec(8,9,10),intvec(2,3,6),intvec(6,8,9),intvec(4,5,9),intvec(3,6,9),intvec(3,4,9)); T[1026]=list(intvec(8,9,10),intvec(4,5,7),intvec(2,3,6),intvec(6,8,9),intvec(4,7,9),intvec(3,6,9),intvec(3,4,9)); T[1027]=list(intvec(2,3,6),intvec(3,6,8),intvec(5,8,10),intvec(3,5,8)); T[1028]=list(intvec(2,3,8),intvec(5,8,10),intvec(3,5,8)); T[1029]=list(intvec(7,8,10),intvec(5,7,8),intvec(2,3,8),intvec(3,5,8)); T[1030]=list(intvec(8,9,10),intvec(5,8,9),intvec(2,3,8),intvec(3,5,8)); T[1031]=list(intvec(8,9,10),intvec(2,3,6),intvec(5,8,9),intvec(3,6,8),intvec(3,5,8)); T[1032]=list(intvec(7,8,10),intvec(2,3,6),intvec(5,7,8),intvec(3,6,8),intvec(3,5,8)); T[1033]=list(intvec(7,8,9),intvec(8,9,10),intvec(5,7,8),intvec(2,3,8),intvec(3,5,8)); T[1034]=list(intvec(7,8,9),intvec(8,9,10),intvec(2,3,6),intvec(5,7,8),intvec(3,6,8),intvec(3,5,8)); T[1035]=list(intvec(2,3,6),intvec(3,6,8),intvec(4,5,9),intvec(3,4,8),intvec(4,9,10),intvec(4,8,10)); T[1036]=list(intvec(2,3,8),intvec(4,5,9),intvec(3,4,8),intvec(4,9,10),intvec(4,8,10)); T[1037]=list(intvec(2,3,6),intvec(3,6,8),intvec(3,4,8),intvec(4,5,10),intvec(4,8,10)); T[1038]=list(intvec(2,3,8),intvec(3,4,8),intvec(4,5,10),intvec(4,8,10)); T[1039]=list(intvec(4,5,7),intvec(2,3,8),intvec(3,4,8),intvec(4,7,10),intvec(4,8,10)); T[1040]=list(intvec(4,5,7),intvec(2,3,6),intvec(3,6,8),intvec(3,4,8),intvec(4,7,10),intvec(4,8,10)); T[1041]=list(intvec(4,5,7),intvec(2,3,8),intvec(4,7,9),intvec(3,4,8),intvec(4,9,10),intvec(4,8,10)); T[1042]=list(intvec(4,5,7),intvec(2,3,6),intvec(3,6,8),intvec(4,7,9),intvec(3,4,8),intvec(4,9,10),intvec(4,8,10)); T[1043]=list(intvec(8,9,10),intvec(2,3,6),intvec(3,6,8),intvec(4,5,9),intvec(3,4,8),intvec(4,8,9)); T[1044]=list(intvec(8,9,10),intvec(2,3,8),intvec(4,5,9),intvec(3,4,8),intvec(4,8,9)); T[1045]=list(intvec(8,9,10),intvec(4,5,7),intvec(2,3,6),intvec(3,6,8),intvec(4,7,9),intvec(3,4,8),intvec(4,8,9)); T[1046]=list(intvec(8,9,10),intvec(4,5,7),intvec(2,3,8),intvec(4,7,9),intvec(3,4,8),intvec(4,8,9)); T[1047]=list(intvec(4,5,7),intvec(7,8,10),intvec(2,3,6),intvec(3,6,8),intvec(3,4,8),intvec(4,7,8)); T[1048]=list(intvec(4,5,7),intvec(7,8,10),intvec(2,3,8),intvec(3,4,8),intvec(4,7,8)); T[1049]=list(intvec(7,8,9),intvec(8,9,10),intvec(4,5,7),intvec(2,3,6),intvec(3,6,8),intvec(3,4,8),intvec(4,7,8)); T[1050]=list(intvec(7,8,9),intvec(8,9,10),intvec(4,5,7),intvec(2,3,8),intvec(3,4,8),intvec(4,7,8)); T[1051]=list(intvec(2,3,6),intvec(3,6,8),intvec(5,8,10),intvec(4,5,8),intvec(3,4,8)); T[1052]=list(intvec(2,3,8),intvec(5,8,10),intvec(4,5,8),intvec(3,4,8)); T[1053]=list(intvec(7,8,10),intvec(5,7,8),intvec(2,3,8),intvec(4,5,8),intvec(3,4,8)); T[1054]=list(intvec(7,8,10),intvec(2,3,6),intvec(5,7,8),intvec(3,6,8),intvec(4,5,8),intvec(3,4,8)); T[1055]=list(intvec(8,9,10),intvec(5,8,9),intvec(2,3,8),intvec(4,5,8),intvec(3,4,8)); T[1056]=list(intvec(8,9,10),intvec(2,3,6),intvec(5,8,9),intvec(3,6,8),intvec(4,5,8),intvec(3,4,8)); T[1057]=list(intvec(7,8,9),intvec(8,9,10),intvec(2,3,6),intvec(5,7,8),intvec(3,6,8),intvec(4,5,8),intvec(3,4,8)); T[1058]=list(intvec(7,8,9),intvec(8,9,10),intvec(5,7,8),intvec(2,3,8),intvec(4,5,8),intvec(3,4,8)); T[1059]=list(intvec(4,5,7),intvec(2,3,6),intvec(3,4,7),intvec(3,6,7),intvec(6,7,10)); T[1060]=list(intvec(2,3,6),intvec(3,5,7),intvec(3,6,7),intvec(6,7,10)); T[1061]=list(intvec(2,3,6),intvec(3,5,7),intvec(6,9,10),intvec(3,6,7),intvec(6,7,9)); T[1062]=list(intvec(4,5,7),intvec(2,3,6),intvec(3,4,7),intvec(6,9,10),intvec(3,6,7),intvec(6,7,9)); T[1063]=list(intvec(8,9,10),intvec(2,3,6),intvec(3,5,7),intvec(6,8,9),intvec(3,6,7),intvec(6,7,9)); T[1064]=list(intvec(8,9,10),intvec(4,5,7),intvec(2,3,6),intvec(6,8,9),intvec(3,4,7),intvec(3,6,7),intvec(6,7,9)); T[1065]=list(intvec(7,8,10),intvec(2,3,6),intvec(3,5,7),intvec(6,7,8),intvec(3,6,7)); T[1066]=list(intvec(4,5,7),intvec(7,8,10),intvec(2,3,6),intvec(3,4,7),intvec(6,7,8),intvec(3,6,7)); T[1067]=list(intvec(7,8,9),intvec(8,9,10),intvec(2,3,6),intvec(3,5,7),intvec(6,7,8),intvec(3,6,7)); T[1068]=list(intvec(7,8,9),intvec(8,9,10),intvec(4,5,7),intvec(2,3,6),intvec(3,4,7),intvec(6,7,8),intvec(3,6,7)); T[1069]=list(intvec(2,3,6),intvec(3,4,6),intvec(4,5,9),intvec(4,9,10),intvec(4,6,10)); T[1070]=list(intvec(2,3,6),intvec(3,4,6),intvec(4,5,10),intvec(4,6,10)); T[1071]=list(intvec(2,4,6),intvec(4,5,10),intvec(4,6,10)); T[1072]=list(intvec(2,4,6),intvec(4,5,9),intvec(4,9,10),intvec(4,6,10)); T[1073]=list(intvec(4,5,7),intvec(2,3,6),intvec(3,4,6),intvec(4,7,9),intvec(4,9,10),intvec(4,6,10)); T[1074]=list(intvec(4,5,7),intvec(2,4,6),intvec(4,7,9),intvec(4,9,10),intvec(4,6,10)); T[1075]=list(intvec(4,5,7),intvec(2,4,6),intvec(4,7,10),intvec(4,6,10)); T[1076]=list(intvec(4,5,7),intvec(2,3,6),intvec(3,4,6),intvec(4,7,10),intvec(4,6,10)); T[1077]=list(intvec(2,3,6),intvec(3,4,6),intvec(4,5,9),intvec(4,6,8),intvec(4,9,10),intvec(4,8,10)); T[1078]=list(intvec(2,4,6),intvec(4,5,9),intvec(4,6,8),intvec(4,9,10),intvec(4,8,10)); T[1079]=list(intvec(2,4,6),intvec(4,6,8),intvec(4,5,10),intvec(4,8,10)); T[1080]=list(intvec(2,3,6),intvec(3,4,6),intvec(4,6,8),intvec(4,5,10),intvec(4,8,10)); T[1081]=list(intvec(4,5,7),intvec(2,4,6),intvec(4,7,9),intvec(4,6,8),intvec(4,9,10),intvec(4,8,10)); T[1082]=list(intvec(4,5,7),intvec(2,4,6),intvec(4,6,8),intvec(4,7,10),intvec(4,8,10)); T[1083]=list(intvec(4,5,7),intvec(2,3,6),intvec(3,4,6),intvec(4,7,9),intvec(4,6,8),intvec(4,9,10),intvec(4,8,10)); T[1084]=list(intvec(4,5,7),intvec(2,3,6),intvec(3,4,6),intvec(4,6,8),intvec(4,7,10),intvec(4,8,10)); T[1085]=list(intvec(8,9,10),intvec(2,3,6),intvec(3,4,6),intvec(4,5,9),intvec(4,6,8),intvec(4,8,9)); T[1086]=list(intvec(8,9,10),intvec(2,4,6),intvec(4,5,9),intvec(4,6,8),intvec(4,8,9)); T[1087]=list(intvec(8,9,10),intvec(4,5,7),intvec(2,3,6),intvec(3,4,6),intvec(4,7,9),intvec(4,6,8),intvec(4,8,9)); T[1088]=list(intvec(8,9,10),intvec(4,5,7),intvec(2,4,6),intvec(4,7,9),intvec(4,6,8),intvec(4,8,9)); T[1089]=list(intvec(2,4,6),intvec(4,5,9),intvec(6,9,10),intvec(4,6,9)); T[1090]=list(intvec(2,3,6),intvec(3,4,6),intvec(4,5,9),intvec(6,9,10),intvec(4,6,9)); T[1091]=list(intvec(4,5,7),intvec(2,3,6),intvec(3,4,6),intvec(4,7,9),intvec(6,9,10),intvec(4,6,9)); T[1092]=list(intvec(4,5,7),intvec(2,4,6),intvec(4,7,9),intvec(6,9,10),intvec(4,6,9)); T[1093]=list(intvec(8,9,10),intvec(6,8,9),intvec(2,4,6),intvec(4,5,9),intvec(4,6,9)); T[1094]=list(intvec(8,9,10),intvec(2,3,6),intvec(3,4,6),intvec(6,8,9),intvec(4,5,9),intvec(4,6,9)); T[1095]=list(intvec(8,9,10),intvec(4,5,7),intvec(6,8,9),intvec(2,4,6),intvec(4,7,9),intvec(4,6,9)); T[1096]=list(intvec(8,9,10),intvec(4,5,7),intvec(2,3,6),intvec(3,4,6),intvec(6,8,9),intvec(4,7,9),intvec(4,6,9)); T[1097]=list(intvec(4,5,7),intvec(7,8,10),intvec(2,3,6),intvec(3,4,6),intvec(4,7,8),intvec(4,6,8)); T[1098]=list(intvec(4,5,7),intvec(7,8,10),intvec(2,4,6),intvec(4,7,8),intvec(4,6,8)); T[1099]=list(intvec(7,8,9),intvec(8,9,10),intvec(4,5,7),intvec(2,3,6),intvec(3,4,6),intvec(4,7,8),intvec(4,6,8)); T[1100]=list(intvec(7,8,9),intvec(8,9,10),intvec(4,5,7),intvec(2,4,6),intvec(4,7,8),intvec(4,6,8)); T[1101]=list(intvec(2,4,6),intvec(5,8,10),intvec(4,5,8),intvec(4,6,8)); T[1102]=list(intvec(2,3,6),intvec(3,4,6),intvec(5,8,10),intvec(4,5,8),intvec(4,6,8)); T[1103]=list(intvec(7,8,10),intvec(5,7,8),intvec(2,4,6),intvec(4,5,8),intvec(4,6,8)); T[1104]=list(intvec(8,9,10),intvec(5,8,9),intvec(2,4,6),intvec(4,5,8),intvec(4,6,8)); T[1105]=list(intvec(7,8,10),intvec(2,3,6),intvec(5,7,8),intvec(3,4,6),intvec(4,5,8),intvec(4,6,8)); T[1106]=list(intvec(8,9,10),intvec(2,3,6),intvec(5,8,9),intvec(3,4,6),intvec(4,5,8),intvec(4,6,8)); T[1107]=list(intvec(7,8,9),intvec(8,9,10),intvec(5,7,8),intvec(2,4,6),intvec(4,5,8),intvec(4,6,8)); T[1108]=list(intvec(7,8,9),intvec(8,9,10),intvec(2,3,6),intvec(5,7,8),intvec(3,4,6),intvec(4,5,8),intvec(4,6,8)); T[1109]=list(intvec(4,5,7),intvec(2,4,6),intvec(4,6,7),intvec(6,7,10)); T[1110]=list(intvec(4,5,7),intvec(2,3,6),intvec(3,4,6),intvec(4,6,7),intvec(6,7,10)); T[1111]=list(intvec(4,5,7),intvec(2,3,6),intvec(3,4,6),intvec(6,9,10),intvec(4,6,7),intvec(6,7,9)); T[1112]=list(intvec(4,5,7),intvec(2,4,6),intvec(6,9,10),intvec(4,6,7),intvec(6,7,9)); T[1113]=list(intvec(8,9,10),intvec(4,5,7),intvec(6,8,9),intvec(2,4,6),intvec(4,6,7),intvec(6,7,9)); T[1114]=list(intvec(8,9,10),intvec(4,5,7),intvec(2,3,6),intvec(3,4,6),intvec(6,8,9),intvec(4,6,7),intvec(6,7,9)); T[1115]=list(intvec(4,5,7),intvec(7,8,10),intvec(2,4,6),intvec(6,7,8),intvec(4,6,7)); T[1116]=list(intvec(4,5,7),intvec(7,8,10),intvec(2,3,6),intvec(3,4,6),intvec(6,7,8),intvec(4,6,7)); T[1117]=list(intvec(7,8,9),intvec(8,9,10),intvec(4,5,7),intvec(2,3,6),intvec(3,4,6),intvec(6,7,8),intvec(4,6,7)); T[1118]=list(intvec(7,8,9),intvec(8,9,10),intvec(4,5,7),intvec(2,4,6),intvec(6,7,8),intvec(4,6,7)); T[1119]=list(intvec(2,3,6),intvec(3,4,6),intvec(4,5,6),intvec(5,6,10)); T[1120]=list(intvec(2,5,6),intvec(5,6,10)); T[1121]=list(intvec(2,4,6),intvec(4,5,6),intvec(5,6,10)); T[1122]=list(intvec(2,3,6),intvec(3,5,6),intvec(5,6,10)); T[1123]=list(intvec(5,8,10),intvec(2,5,6),intvec(5,6,8)); T[1124]=list(intvec(2,3,6),intvec(5,8,10),intvec(3,5,6),intvec(5,6,8)); T[1125]=list(intvec(2,4,6),intvec(4,5,6),intvec(5,8,10),intvec(5,6,8)); T[1126]=list(intvec(2,3,6),intvec(3,4,6),intvec(4,5,6),intvec(5,8,10),intvec(5,6,8)); T[1127]=list(intvec(7,8,10),intvec(2,3,6),intvec(5,7,8),intvec(3,5,6),intvec(5,6,8)); T[1128]=list(intvec(8,9,10),intvec(2,3,6),intvec(5,8,9),intvec(3,5,6),intvec(5,6,8)); T[1129]=list(intvec(8,9,10),intvec(5,8,9),intvec(2,4,6),intvec(4,5,6),intvec(5,6,8)); T[1130]=list(intvec(8,9,10),intvec(5,8,9),intvec(2,5,6),intvec(5,6,8)); T[1131]=list(intvec(7,8,10),intvec(5,7,8),intvec(2,5,6),intvec(5,6,8)); T[1132]=list(intvec(7,8,10),intvec(5,7,8),intvec(2,4,6),intvec(4,5,6),intvec(5,6,8)); T[1133]=list(intvec(7,8,10),intvec(2,3,6),intvec(5,7,8),intvec(3,4,6),intvec(4,5,6),intvec(5,6,8)); T[1134]=list(intvec(8,9,10),intvec(2,3,6),intvec(5,8,9),intvec(3,4,6),intvec(4,5,6),intvec(5,6,8)); T[1135]=list(intvec(7,8,9),intvec(8,9,10),intvec(5,7,8),intvec(2,5,6),intvec(5,6,8)); T[1136]=list(intvec(7,8,9),intvec(8,9,10),intvec(2,3,6),intvec(5,7,8),intvec(3,5,6),intvec(5,6,8)); T[1137]=list(intvec(7,8,9),intvec(8,9,10),intvec(2,3,6),intvec(5,7,8),intvec(3,4,6),intvec(4,5,6),intvec(5,6,8)); T[1138]=list(intvec(7,8,9),intvec(8,9,10),intvec(5,7,8),intvec(2,4,6),intvec(4,5,6),intvec(5,6,8)); T[1139]=list(intvec(2,4,6),intvec(4,5,6),intvec(6,9,10),intvec(5,6,9)); T[1140]=list(intvec(2,3,6),intvec(3,4,6),intvec(4,5,6),intvec(6,9,10),intvec(5,6,9)); T[1141]=list(intvec(2,3,6),intvec(3,5,6),intvec(6,9,10),intvec(5,6,9)); T[1142]=list(intvec(2,5,6),intvec(6,9,10),intvec(5,6,9)); T[1143]=list(intvec(8,9,10),intvec(6,8,9),intvec(2,4,6),intvec(4,5,6),intvec(5,6,9)); T[1144]=list(intvec(8,9,10),intvec(6,8,9),intvec(2,5,6),intvec(5,6,9)); T[1145]=list(intvec(8,9,10),intvec(2,3,6),intvec(3,4,6),intvec(6,8,9),intvec(4,5,6),intvec(5,6,9)); T[1146]=list(intvec(8,9,10),intvec(2,3,6),intvec(6,8,9),intvec(3,5,6),intvec(5,6,9)); T[1147]=list(intvec(2,3,6),intvec(3,5,6),intvec(5,6,7),intvec(6,7,10)); T[1148]=list(intvec(2,3,6),intvec(3,4,6),intvec(4,5,6),intvec(5,6,7),intvec(6,7,10)); T[1149]=list(intvec(2,4,6),intvec(4,5,6),intvec(5,6,7),intvec(6,7,10)); T[1150]=list(intvec(2,5,6),intvec(5,6,7),intvec(6,7,10)); T[1151]=list(intvec(2,4,6),intvec(4,5,6),intvec(6,9,10),intvec(5,6,7),intvec(6,7,9)); T[1152]=list(intvec(2,5,6),intvec(6,9,10),intvec(5,6,7),intvec(6,7,9)); T[1153]=list(intvec(2,3,6),intvec(3,4,6),intvec(4,5,6),intvec(6,9,10),intvec(5,6,7),intvec(6,7,9)); T[1154]=list(intvec(2,3,6),intvec(3,5,6),intvec(6,9,10),intvec(5,6,7),intvec(6,7,9)); T[1155]=list(intvec(8,9,10),intvec(6,8,9),intvec(2,5,6),intvec(5,6,7),intvec(6,7,9)); T[1156]=list(intvec(8,9,10),intvec(2,3,6),intvec(6,8,9),intvec(3,5,6),intvec(5,6,7),intvec(6,7,9)); T[1157]=list(intvec(8,9,10),intvec(2,3,6),intvec(3,4,6),intvec(6,8,9),intvec(4,5,6),intvec(5,6,7),intvec(6,7,9)); T[1158]=list(intvec(8,9,10),intvec(6,8,9),intvec(2,4,6),intvec(4,5,6),intvec(5,6,7),intvec(6,7,9)); T[1159]=list(intvec(7,8,10),intvec(2,5,6),intvec(5,6,7),intvec(6,7,8)); T[1160]=list(intvec(7,8,10),intvec(2,3,6),intvec(3,5,6),intvec(5,6,7),intvec(6,7,8)); T[1161]=list(intvec(7,8,10),intvec(2,3,6),intvec(3,4,6),intvec(4,5,6),intvec(5,6,7),intvec(6,7,8)); T[1162]=list(intvec(7,8,10),intvec(2,4,6),intvec(4,5,6),intvec(5,6,7),intvec(6,7,8)); T[1163]=list(intvec(7,8,9),intvec(8,9,10),intvec(2,4,6),intvec(4,5,6),intvec(5,6,7),intvec(6,7,8)); T[1164]=list(intvec(7,8,9),intvec(8,9,10),intvec(2,3,6),intvec(3,4,6),intvec(4,5,6),intvec(5,6,7),intvec(6,7,8)); T[1165]=list(intvec(7,8,9),intvec(8,9,10),intvec(2,5,6),intvec(5,6,7),intvec(6,7,8)); T[1166]=list(intvec(7,8,9),intvec(8,9,10),intvec(2,3,6),intvec(3,5,6),intvec(5,6,7),intvec(6,7,8)); } if (polygon=="2x2") { T[1]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,2,5),intvec(1,4,6),intvec(1,5,7),intvec(1,6,7),intvec(6,7,8),intvec(6,8,9)); T[2]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,4,6),intvec(1,6,7),intvec(6,7,8),intvec(6,8,9),intvec(1,2,7)); T[3]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,2,5),intvec(1,4,6),intvec(1,5,7),intvec(6,8,9),intvec(1,7,8),intvec(1,6,8)); T[4]=list(intvec(1,2,5),intvec(1,4,6),intvec(1,5,7),intvec(1,6,7),intvec(6,7,8),intvec(6,8,9),intvec(1,2,4)); T[5]=list(intvec(1,2,3),intvec(1,2,5),intvec(1,5,7),intvec(1,6,7),intvec(6,7,8),intvec(6,8,9),intvec(3,4,6),intvec(1,3,6)); T[6]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,2,5),intvec(1,4,6),intvec(1,5,7),intvec(1,6,7),intvec(6,7,9)); T[7]=list(intvec(1,3,4),intvec(1,4,6),intvec(1,5,7),intvec(1,6,7),intvec(6,7,8),intvec(6,8,9),intvec(2,3,5),intvec(1,3,5)); T[8]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,4,6),intvec(1,6,7),intvec(1,2,7),intvec(6,7,9)); T[9]=list(intvec(1,2,3),intvec(1,2,5),intvec(1,5,7),intvec(1,6,7),intvec(3,4,6),intvec(1,3,6),intvec(6,7,9)); T[10]=list(intvec(1,2,5),intvec(1,4,6),intvec(1,5,7),intvec(1,6,7),intvec(1,2,4),intvec(6,7,9)); T[11]=list(intvec(1,3,4),intvec(1,4,6),intvec(1,5,7),intvec(1,6,7),intvec(6,7,9),intvec(2,3,5),intvec(1,3,5)); T[12]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,2,5),intvec(1,4,6),intvec(1,5,7),intvec(1,7,9),intvec(1,6,9)); T[13]=list(intvec(1,3,4),intvec(1,4,6),intvec(1,6,7),intvec(6,7,8),intvec(6,8,9),intvec(2,3,5),intvec(3,5,7),intvec(1,3,7)); T[14]=list(intvec(1,5,7),intvec(1,6,7),intvec(6,7,8),intvec(6,8,9),intvec(3,4,6),intvec(1,3,6),intvec(2,3,5),intvec(1,3,5)); T[15]=list(intvec(1,3,4),intvec(1,4,6),intvec(1,5,7),intvec(6,8,9),intvec(1,7,8),intvec(1,6,8),intvec(2,3,5),intvec(1,3,5)); T[16]=list(intvec(1,4,6),intvec(1,5,7),intvec(1,6,7),intvec(6,7,8),intvec(6,8,9),intvec(2,3,5),intvec(3,4,5),intvec(1,4,5)); T[17]=list(intvec(1,2,3),intvec(1,6,7),intvec(6,7,8),intvec(6,8,9),intvec(1,2,7),intvec(3,4,6),intvec(1,3,6)); T[18]=list(intvec(1,2,5),intvec(1,5,7),intvec(1,6,7),intvec(6,7,8),intvec(6,8,9),intvec(3,4,6),intvec(2,3,6),intvec(1,2,6)); T[19]=list(intvec(1,2,3),intvec(1,2,5),intvec(1,5,7),intvec(6,8,9),intvec(1,7,8),intvec(1,6,8),intvec(3,4,6),intvec(1,3,6)); T[20]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,2,5),intvec(1,4,6),intvec(1,5,7),intvec(1,7,8),intvec(1,6,9),intvec(1,8,9)); T[21]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,2,5),intvec(1,5,7),intvec(6,8,9),intvec(1,7,8),intvec(4,6,8),intvec(1,4,8)); T[22]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,4,6),intvec(6,8,9),intvec(1,2,7),intvec(1,7,8),intvec(1,6,8)); T[23]=list(intvec(1,2,5),intvec(1,4,6),intvec(1,5,7),intvec(6,8,9),intvec(1,7,8),intvec(1,6,8),intvec(1,2,4)); T[24]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,2,5),intvec(1,4,6),intvec(6,8,9),intvec(1,6,8),intvec(5,7,8),intvec(1,5,8)); T[25]=list(intvec(1,3,4),intvec(1,4,6),intvec(1,6,7),intvec(6,7,8),intvec(6,8,9),intvec(1,3,7),intvec(2,3,7)); T[26]=list(intvec(1,4,6),intvec(1,6,7),intvec(6,7,8),intvec(6,8,9),intvec(1,2,7),intvec(1,2,4)); T[27]=list(intvec(1,2,5),intvec(1,5,7),intvec(1,6,7),intvec(6,7,8),intvec(6,8,9),intvec(1,2,6),intvec(2,4,6)); T[28]=list(intvec(1,4,6),intvec(1,5,7),intvec(1,6,7),intvec(6,7,8),intvec(6,8,9),intvec(1,4,5),intvec(2,4,5)); T[29]=list(intvec(6,7,8),intvec(6,8,9),intvec(2,3,5),intvec(3,4,5),intvec(4,5,7),intvec(4,6,7)); T[30]=list(intvec(1,4,6),intvec(1,5,7),intvec(6,8,9),intvec(1,7,8),intvec(1,6,8),intvec(2,3,5),intvec(3,4,5),intvec(1,4,5)); T[31]=list(intvec(6,7,8),intvec(6,8,9),intvec(2,3,5),intvec(3,4,5),intvec(4,5,6),intvec(5,6,7)); T[32]=list(intvec(1,4,6),intvec(1,5,7),intvec(1,6,7),intvec(6,7,9),intvec(2,3,5),intvec(3,4,5),intvec(1,4,5)); T[33]=list(intvec(1,3,4),intvec(1,4,6),intvec(1,6,7),intvec(6,7,9),intvec(2,3,5),intvec(3,5,7),intvec(1,3,7)); T[34]=list(intvec(1,5,7),intvec(1,6,7),intvec(3,4,6),intvec(1,3,6),intvec(6,7,9),intvec(2,3,5),intvec(1,3,5)); T[35]=list(intvec(1,3,4),intvec(1,4,6),intvec(1,5,7),intvec(2,3,5),intvec(1,3,5),intvec(1,7,9),intvec(1,6,9)); T[36]=list(intvec(1,4,6),intvec(1,6,7),intvec(1,2,7),intvec(1,2,4),intvec(6,7,9)); T[37]=list(intvec(1,2,5),intvec(1,5,7),intvec(1,6,7),intvec(6,7,9),intvec(1,2,6),intvec(2,4,6)); T[38]=list(intvec(1,4,6),intvec(1,5,7),intvec(1,6,7),intvec(6,7,9),intvec(1,4,5),intvec(2,4,5)); T[39]=list(intvec(1,2,5),intvec(1,4,6),intvec(1,5,7),intvec(1,2,4),intvec(1,7,9),intvec(1,6,9)); T[40]=list(intvec(1,6,7),intvec(6,7,8),intvec(6,8,9),intvec(1,2,7),intvec(1,2,6),intvec(2,4,6)); T[41]=list(intvec(6,7,8),intvec(6,8,9),intvec(4,6,7),intvec(2,4,7)); T[42]=list(intvec(1,4,6),intvec(6,8,9),intvec(1,2,7),intvec(1,7,8),intvec(1,6,8),intvec(1,2,4)); T[43]=list(intvec(1,2,3),intvec(1,2,5),intvec(1,5,7),intvec(1,7,8),intvec(3,4,6),intvec(1,3,6),intvec(1,6,9),intvec(1,8,9)); T[44]=list(intvec(1,2,5),intvec(1,5,7),intvec(6,8,9),intvec(1,7,8),intvec(1,6,8),intvec(3,4,6),intvec(2,3,6),intvec(1,2,6)); T[45]=list(intvec(1,2,3),intvec(6,8,9),intvec(1,2,7),intvec(1,7,8),intvec(1,6,8),intvec(3,4,6),intvec(1,3,6)); T[46]=list(intvec(1,2,3),intvec(1,2,5),intvec(6,8,9),intvec(1,6,8),intvec(3,4,6),intvec(1,3,6),intvec(5,7,8),intvec(1,5,8)); T[47]=list(intvec(1,5,7),intvec(6,8,9),intvec(1,7,8),intvec(1,6,8),intvec(3,4,6),intvec(1,3,6),intvec(2,3,5),intvec(1,3,5)); T[48]=list(intvec(1,2,3),intvec(1,3,4),intvec(6,8,9),intvec(1,2,7),intvec(1,7,8),intvec(4,6,8),intvec(1,4,8)); T[49]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,2,5),intvec(1,5,7),intvec(1,7,8),intvec(1,4,8),intvec(4,8,9)); T[50]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,2,5),intvec(6,8,9),intvec(4,6,8),intvec(1,4,8),intvec(5,7,8),intvec(1,5,8)); T[51]=list(intvec(1,2,5),intvec(1,5,7),intvec(6,8,9),intvec(1,7,8),intvec(1,2,4),intvec(4,6,8),intvec(1,4,8)); T[52]=list(intvec(1,3,4),intvec(1,5,7),intvec(6,8,9),intvec(1,7,8),intvec(2,3,5),intvec(1,3,5),intvec(4,6,8),intvec(1,4,8)); T[53]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,4,6),intvec(6,8,9),intvec(1,6,8),intvec(5,7,8),intvec(2,5,8),intvec(1,2,8)); T[54]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,2,5),intvec(1,4,6),intvec(1,6,9),intvec(1,8,9),intvec(5,7,8),intvec(1,5,8)); T[55]=list(intvec(1,2,5),intvec(1,4,6),intvec(6,8,9),intvec(1,6,8),intvec(1,2,4),intvec(5,7,8),intvec(1,5,8)); T[56]=list(intvec(1,3,4),intvec(1,4,6),intvec(6,8,9),intvec(1,6,8),intvec(2,3,5),intvec(1,3,5),intvec(5,7,8),intvec(1,5,8)); T[57]=list(intvec(6,7,8),intvec(6,8,9),intvec(2,3,5),intvec(3,5,7),intvec(4,6,7),intvec(3,4,7)); T[58]=list(intvec(1,3,4),intvec(1,4,6),intvec(6,8,9),intvec(1,7,8),intvec(1,6,8),intvec(2,3,5),intvec(3,5,7),intvec(1,3,7)); T[59]=list(intvec(1,6,7),intvec(6,7,8),intvec(6,8,9),intvec(3,4,6),intvec(1,3,6),intvec(2,3,5),intvec(3,5,7),intvec(1,3,7)); T[60]=list(intvec(6,7,8),intvec(6,8,9),intvec(2,4,5),intvec(4,5,7),intvec(4,6,7)); T[61]=list(intvec(1,4,6),intvec(1,5,7),intvec(6,8,9),intvec(1,7,8),intvec(1,6,8),intvec(1,4,5),intvec(2,4,5)); T[62]=list(intvec(6,7,8),intvec(6,8,9),intvec(2,4,5),intvec(4,5,6),intvec(5,6,7)); T[63]=list(intvec(6,7,8),intvec(6,8,9),intvec(2,3,7),intvec(4,6,7),intvec(3,4,7)); T[64]=list(intvec(1,3,4),intvec(1,4,6),intvec(6,8,9),intvec(1,7,8),intvec(1,6,8),intvec(1,3,7),intvec(2,3,7)); T[65]=list(intvec(1,6,7),intvec(6,7,8),intvec(6,8,9),intvec(3,4,6),intvec(1,3,6),intvec(1,3,7),intvec(2,3,7)); T[66]=list(intvec(1,3,4),intvec(1,4,6),intvec(1,6,7),intvec(6,7,9),intvec(1,3,7),intvec(2,3,7)); T[67]=list(intvec(1,6,7),intvec(6,7,8),intvec(6,8,9),intvec(1,2,7),intvec(3,4,6),intvec(2,3,6),intvec(1,2,6)); T[68]=list(intvec(6,7,8),intvec(6,8,9),intvec(3,4,6),intvec(2,3,6),intvec(5,6,7),intvec(2,5,6)); T[69]=list(intvec(1,2,5),intvec(1,5,7),intvec(1,6,7),intvec(3,4,6),intvec(6,7,9),intvec(2,3,6),intvec(1,2,6)); T[70]=list(intvec(6,7,8),intvec(6,8,9),intvec(3,4,6),intvec(2,3,5),intvec(5,6,7),intvec(3,5,6)); T[71]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,2,5),intvec(1,4,6),intvec(1,6,9),intvec(5,7,9),intvec(1,5,9)); T[72]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,2,5),intvec(1,5,7),intvec(1,7,9),intvec(1,4,9)); T[73]=list(intvec(1,2,3),intvec(1,2,5),intvec(1,5,7),intvec(3,4,6),intvec(1,3,6),intvec(1,7,9),intvec(1,6,9)); T[74]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,4,6),intvec(1,2,7),intvec(1,7,9),intvec(1,6,9)); T[75]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,4,6),intvec(6,8,9),intvec(1,6,8),intvec(1,2,8),intvec(2,7,8)); T[76]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,4,6),intvec(1,2,7),intvec(1,7,8),intvec(1,6,9),intvec(1,8,9)); T[77]=list(intvec(1,2,3),intvec(1,6,7),intvec(1,2,7),intvec(3,4,6),intvec(1,3,6),intvec(6,7,9)); T[78]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,2,5),intvec(1,5,7),intvec(1,7,8),intvec(1,8,9),intvec(1,4,9)); T[79]=list(intvec(1,2,5),intvec(1,4,6),intvec(1,5,7),intvec(1,7,8),intvec(1,2,4),intvec(1,6,9),intvec(1,8,9)); T[80]=list(intvec(1,3,4),intvec(1,4,6),intvec(1,5,7),intvec(1,7,8),intvec(2,3,5),intvec(1,3,5),intvec(1,6,9),intvec(1,8,9)); T[81]=list(intvec(1,2,5),intvec(1,5,7),intvec(6,8,9),intvec(1,7,8),intvec(1,6,8),intvec(1,2,6),intvec(2,4,6)); T[82]=list(intvec(6,7,8),intvec(6,8,9),intvec(2,4,6),intvec(5,6,7),intvec(2,5,6)); T[83]=list(intvec(1,4,6),intvec(1,5,7),intvec(1,7,8),intvec(1,6,9),intvec(1,4,5),intvec(1,8,9),intvec(2,4,5)); T[84]=list(intvec(1,5,7),intvec(6,8,9),intvec(1,7,8),intvec(1,4,5),intvec(4,6,8),intvec(1,4,8),intvec(2,4,5)); T[85]=list(intvec(1,4,6),intvec(6,8,9),intvec(1,6,8),intvec(1,4,5),intvec(5,7,8),intvec(1,5,8),intvec(2,4,5)); T[86]=list(intvec(6,8,9),intvec(1,7,8),intvec(1,6,8),intvec(3,4,6),intvec(1,3,6),intvec(2,3,5),intvec(3,5,7),intvec(1,3,7)); T[87]=list(intvec(6,7,8),intvec(6,8,9),intvec(3,4,6),intvec(2,3,5),intvec(3,5,7),intvec(3,6,7)); T[88]=list(intvec(1,6,7),intvec(3,4,6),intvec(1,3,6),intvec(6,7,9),intvec(2,3,5),intvec(3,5,7),intvec(1,3,7)); T[89]=list(intvec(3,4,6),intvec(6,7,9),intvec(2,3,5),intvec(5,6,7),intvec(3,5,6)); T[90]=list(intvec(6,8,9),intvec(3,4,6),intvec(2,3,5),intvec(5,7,8),intvec(3,5,6),intvec(5,6,8)); T[91]=list(intvec(1,5,7),intvec(3,4,6),intvec(1,3,6),intvec(2,3,5),intvec(1,3,5),intvec(1,7,9),intvec(1,6,9)); T[92]=list(intvec(6,7,8),intvec(6,8,9),intvec(3,4,6),intvec(2,3,6),intvec(2,6,7)); T[93]=list(intvec(6,8,9),intvec(3,4,6),intvec(2,3,6),intvec(5,7,8),intvec(2,5,6),intvec(5,6,8)); T[94]=list(intvec(3,4,6),intvec(6,7,9),intvec(2,3,6),intvec(5,6,7),intvec(2,5,6)); T[95]=list(intvec(1,4,6),intvec(1,5,7),intvec(1,7,8),intvec(2,3,5),intvec(1,6,9),intvec(3,4,5),intvec(1,4,5),intvec(1,8,9)); T[96]=list(intvec(1,5,7),intvec(6,8,9),intvec(1,7,8),intvec(2,3,5),intvec(3,4,5),intvec(1,4,5),intvec(4,6,8),intvec(1,4,8)); T[97]=list(intvec(1,4,6),intvec(6,8,9),intvec(1,6,8),intvec(2,3,5),intvec(3,4,5),intvec(1,4,5),intvec(5,7,8),intvec(1,5,8)); T[98]=list(intvec(6,8,9),intvec(1,2,7),intvec(1,7,8),intvec(1,6,8),intvec(3,4,6),intvec(2,3,6),intvec(1,2,6)); T[99]=list(intvec(1,2,5),intvec(1,5,7),intvec(1,7,8),intvec(3,4,6),intvec(1,6,9),intvec(2,3,6),intvec(1,2,6),intvec(1,8,9)); T[100]=list(intvec(1,2,5),intvec(6,8,9),intvec(1,6,8),intvec(3,4,6),intvec(2,3,6),intvec(1,2,6),intvec(5,7,8),intvec(1,5,8)); T[101]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,2,5),intvec(5,7,9),intvec(1,5,9),intvec(1,4,9)); T[102]=list(intvec(1,2,3),intvec(1,2,5),intvec(1,5,7),intvec(1,7,9),intvec(3,4,9),intvec(1,3,9)); T[103]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,2,7),intvec(1,7,9),intvec(1,4,9)); T[104]=list(intvec(1,2,5),intvec(1,5,7),intvec(1,2,4),intvec(1,7,9),intvec(1,4,9)); T[105]=list(intvec(1,3,4),intvec(1,5,7),intvec(2,3,5),intvec(1,3,5),intvec(1,7,9),intvec(1,4,9)); T[106]=list(intvec(6,7,9),intvec(2,3,5),intvec(3,5,7),intvec(4,6,7),intvec(3,4,7)); T[107]=list(intvec(6,8,9),intvec(2,3,5),intvec(3,5,7),intvec(4,6,8),intvec(3,4,7),intvec(4,7,8)); T[108]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,2,7),intvec(1,7,8),intvec(1,4,8),intvec(4,8,9)); T[109]=list(intvec(1,2,3),intvec(1,3,4),intvec(6,8,9),intvec(4,6,8),intvec(1,4,8),intvec(1,2,8),intvec(2,7,8)); T[110]=list(intvec(1,3,4),intvec(6,8,9),intvec(1,7,8),intvec(1,3,7),intvec(4,6,8),intvec(1,4,8),intvec(2,3,7)); T[111]=list(intvec(6,8,9),intvec(1,2,7),intvec(1,7,8),intvec(1,2,4),intvec(4,6,8),intvec(1,4,8)); T[112]=list(intvec(6,7,9),intvec(2,4,5),intvec(4,5,7),intvec(4,6,7)); T[113]=list(intvec(6,8,9),intvec(4,6,8),intvec(2,4,5),intvec(4,5,7),intvec(4,7,8)); T[114]=list(intvec(1,2,3),intvec(1,2,5),intvec(1,5,7),intvec(3,4,6),intvec(1,7,9),intvec(1,3,9),intvec(3,6,9)); T[115]=list(intvec(1,2,3),intvec(1,2,5),intvec(3,4,6),intvec(1,3,6),intvec(1,6,9),intvec(5,7,9),intvec(1,5,9)); T[116]=list(intvec(1,2,5),intvec(1,5,7),intvec(3,4,6),intvec(1,7,9),intvec(1,6,9),intvec(2,3,6),intvec(1,2,6)); T[117]=list(intvec(1,2,3),intvec(1,2,7),intvec(3,4,6),intvec(1,3,6),intvec(1,7,9),intvec(1,6,9)); T[118]=list(intvec(1,2,3),intvec(1,2,5),intvec(1,5,7),intvec(1,7,8),intvec(3,4,6),intvec(1,8,9),intvec(1,3,9),intvec(3,6,9)); T[119]=list(intvec(1,2,3),intvec(1,2,7),intvec(1,7,8),intvec(3,4,6),intvec(1,3,6),intvec(1,6,9),intvec(1,8,9)); T[120]=list(intvec(1,2,3),intvec(1,2,5),intvec(3,4,6),intvec(1,3,6),intvec(1,6,9),intvec(1,8,9),intvec(5,7,8),intvec(1,5,8)); T[121]=list(intvec(1,5,7),intvec(1,7,8),intvec(3,4,6),intvec(1,3,6),intvec(2,3,5),intvec(1,3,5),intvec(1,6,9),intvec(1,8,9)); T[122]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,4,6),intvec(1,6,9),intvec(1,8,9),intvec(1,2,8),intvec(2,7,8)); T[123]=list(intvec(1,3,4),intvec(1,4,6),intvec(1,7,8),intvec(1,6,9),intvec(1,3,7),intvec(1,8,9),intvec(2,3,7)); T[124]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,2,7),intvec(1,7,8),intvec(1,8,9),intvec(1,4,9)); T[125]=list(intvec(1,4,6),intvec(1,2,7),intvec(1,7,8),intvec(1,2,4),intvec(1,6,9),intvec(1,8,9)); T[126]=list(intvec(1,2,5),intvec(1,5,7),intvec(1,7,8),intvec(1,6,9),intvec(1,2,6),intvec(1,8,9),intvec(2,4,6)); T[127]=list(intvec(1,2,5),intvec(1,5,7),intvec(1,7,8),intvec(1,2,4),intvec(1,8,9),intvec(1,4,9)); T[128]=list(intvec(1,2,5),intvec(1,4,6),intvec(1,2,4),intvec(1,6,9),intvec(1,8,9),intvec(5,7,8),intvec(1,5,8)); T[129]=list(intvec(1,2,5),intvec(6,8,9),intvec(1,6,8),intvec(1,2,6),intvec(5,7,8),intvec(1,5,8),intvec(2,4,6)); T[130]=list(intvec(1,4,6),intvec(6,8,9),intvec(1,6,8),intvec(1,2,4),intvec(5,7,8),intvec(2,5,8),intvec(1,2,8)); T[131]=list(intvec(1,2,5),intvec(6,8,9),intvec(1,2,4),intvec(4,6,8),intvec(1,4,8),intvec(5,7,8),intvec(1,5,8)); T[132]=list(intvec(1,6,7),intvec(1,2,7),intvec(6,7,9),intvec(1,2,6),intvec(2,4,6)); T[133]=list(intvec(6,7,9),intvec(2,4,6),intvec(5,6,7),intvec(2,5,6)); T[134]=list(intvec(1,2,5),intvec(1,5,7),intvec(1,7,9),intvec(1,6,9),intvec(1,2,6),intvec(2,4,6)); T[135]=list(intvec(1,6,7),intvec(1,2,7),intvec(3,4,6),intvec(6,7,9),intvec(2,3,6),intvec(1,2,6)); T[136]=list(intvec(1,3,4),intvec(1,5,7),intvec(1,7,8),intvec(2,3,5),intvec(1,3,5),intvec(1,4,8),intvec(4,8,9)); T[137]=list(intvec(1,3,4),intvec(6,8,9),intvec(1,7,8),intvec(2,3,5),intvec(3,5,7),intvec(1,3,7),intvec(4,6,8),intvec(1,4,8)); T[138]=list(intvec(1,3,4),intvec(6,8,9),intvec(2,3,5),intvec(1,3,5),intvec(4,6,8),intvec(1,4,8),intvec(5,7,8),intvec(1,5,8)); T[139]=list(intvec(6,7,9),intvec(4,6,7),intvec(2,4,7)); T[140]=list(intvec(1,4,6),intvec(1,2,7),intvec(1,2,4),intvec(1,7,9),intvec(1,6,9)); T[141]=list(intvec(1,3,4),intvec(1,4,6),intvec(2,3,5),intvec(1,7,9),intvec(1,6,9),intvec(3,5,7),intvec(1,3,7)); T[142]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,2,5),intvec(1,4,8),intvec(5,7,8),intvec(1,5,8),intvec(4,8,9)); T[143]=list(intvec(1,2,5),intvec(1,5,7),intvec(1,7,8),intvec(1,2,4),intvec(1,4,8),intvec(4,8,9)); T[144]=list(intvec(6,8,9),intvec(1,2,7),intvec(1,7,8),intvec(1,6,8),intvec(1,2,6),intvec(2,4,6)); T[145]=list(intvec(1,4,6),intvec(6,8,9),intvec(1,6,8),intvec(1,2,4),intvec(1,2,8),intvec(2,7,8)); T[146]=list(intvec(1,3,4),intvec(1,4,6),intvec(1,7,8),intvec(2,3,5),intvec(1,6,9),intvec(3,5,7),intvec(1,3,7),intvec(1,8,9)); T[147]=list(intvec(1,2,3),intvec(6,8,9),intvec(1,6,8),intvec(3,4,6),intvec(1,3,6),intvec(1,2,8),intvec(2,7,8)); T[148]=list(intvec(1,4,6),intvec(1,5,7),intvec(1,7,9),intvec(1,6,9),intvec(1,4,5),intvec(2,4,5)); T[149]=list(intvec(1,2,5),intvec(1,4,6),intvec(1,2,4),intvec(1,6,9),intvec(5,7,9),intvec(1,5,9)); T[150]=list(intvec(6,7,8),intvec(6,8,9),intvec(3,4,6),intvec(2,3,7),intvec(3,6,7)); T[151]=list(intvec(6,7,9),intvec(2,3,7),intvec(4,6,7),intvec(3,4,7)); T[152]=list(intvec(6,8,9),intvec(4,6,8),intvec(2,3,7),intvec(3,4,7),intvec(4,7,8)); T[153]=list(intvec(1,3,4),intvec(1,5,7),intvec(1,7,8),intvec(2,3,5),intvec(1,3,5),intvec(1,8,9),intvec(1,4,9)); T[154]=list(intvec(1,3,4),intvec(1,4,6),intvec(2,3,5),intvec(1,3,5),intvec(1,6,9),intvec(1,8,9),intvec(5,7,8),intvec(1,5,8)); T[155]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,2,5),intvec(1,4,6),intvec(1,6,9),intvec(5,7,8),intvec(1,5,9),intvec(5,8,9)); T[156]=list(intvec(1,3,4),intvec(1,4,6),intvec(2,3,5),intvec(1,3,5),intvec(1,6,9),intvec(5,7,9),intvec(1,5,9)); T[157]=list(intvec(1,2,3),intvec(1,3,4),intvec(6,8,9),intvec(4,6,8),intvec(1,4,8),intvec(5,7,8),intvec(2,5,8),intvec(1,2,8)); T[158]=list(intvec(1,4,6),intvec(1,5,7),intvec(2,3,5),intvec(1,7,9),intvec(1,6,9),intvec(3,4,5),intvec(1,4,5)); T[159]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,4,6),intvec(1,6,9),intvec(1,8,9),intvec(5,7,8),intvec(2,5,8),intvec(1,2,8)); T[160]=list(intvec(1,2,3),intvec(6,8,9),intvec(1,6,8),intvec(3,4,6),intvec(1,3,6),intvec(5,7,8),intvec(2,5,8),intvec(1,2,8)); T[161]=list(intvec(1,6,7),intvec(3,4,6),intvec(1,3,6),intvec(6,7,9),intvec(1,3,7),intvec(2,3,7)); T[162]=list(intvec(1,3,4),intvec(1,4,6),intvec(1,7,9),intvec(1,6,9),intvec(1,3,7),intvec(2,3,7)); T[163]=list(intvec(6,8,9),intvec(1,7,8),intvec(1,6,8),intvec(3,4,6),intvec(1,3,6),intvec(1,3,7),intvec(2,3,7)); T[164]=list(intvec(6,7,9),intvec(2,3,5),intvec(3,4,5),intvec(4,5,7),intvec(4,6,7)); T[165]=list(intvec(6,8,9),intvec(2,3,5),intvec(3,4,5),intvec(4,6,8),intvec(4,5,7),intvec(4,7,8)); T[166]=list(intvec(6,7,8),intvec(6,8,9),intvec(2,4,6),intvec(2,6,7)); T[167]=list(intvec(6,8,9),intvec(4,6,8),intvec(2,4,7),intvec(4,7,8)); T[168]=list(intvec(6,8,9),intvec(2,3,5),intvec(3,4,5),intvec(5,7,8),intvec(4,5,6),intvec(5,6,8)); T[169]=list(intvec(6,7,9),intvec(2,3,5),intvec(3,4,5),intvec(4,5,6),intvec(5,6,7)); T[170]=list(intvec(6,8,9),intvec(1,6,8),intvec(3,4,6),intvec(1,3,6),intvec(2,3,5),intvec(1,3,5),intvec(5,7,8),intvec(1,5,8)); T[171]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,2,5),intvec(1,8,9),intvec(5,7,8),intvec(1,5,8),intvec(1,4,9)); T[172]=list(intvec(6,7,9),intvec(2,4,5),intvec(4,5,6),intvec(5,6,7)); T[173]=list(intvec(6,8,9),intvec(5,7,8),intvec(2,4,6),intvec(2,5,6),intvec(5,6,8)); T[174]=list(intvec(6,8,9),intvec(5,7,8),intvec(2,4,5),intvec(4,5,6),intvec(5,6,8)); T[175]=list(intvec(1,2,3),intvec(1,2,5),intvec(1,5,7),intvec(1,7,8),intvec(1,8,9),intvec(3,4,9),intvec(1,3,9)); T[176]=list(intvec(6,7,9),intvec(2,4,6),intvec(2,6,7)); T[177]=list(intvec(2,4,6),intvec(2,5,6),intvec(5,7,9),intvec(5,6,9)); T[178]=list(intvec(2,3,5),intvec(3,4,5),intvec(4,5,7),intvec(4,7,9)); T[179]=list(intvec(1,2,7),intvec(1,7,9),intvec(1,6,9),intvec(1,2,6),intvec(2,4,6)); T[180]=list(intvec(1,2,5),intvec(1,6,9),intvec(1,2,6),intvec(2,4,6),intvec(5,7,9),intvec(1,5,9)); T[181]=list(intvec(1,3,4),intvec(1,7,8),intvec(2,3,5),intvec(3,5,7),intvec(1,3,7),intvec(1,4,8),intvec(4,8,9)); T[182]=list(intvec(6,8,9),intvec(2,3,5),intvec(3,5,7),intvec(4,6,8),intvec(3,7,8),intvec(3,4,8)); T[183]=list(intvec(3,4,6),intvec(6,7,9),intvec(2,3,6),intvec(2,6,7)); T[184]=list(intvec(6,8,9),intvec(3,4,6),intvec(2,3,6),intvec(2,7,8),intvec(2,6,8)); T[185]=list(intvec(2,3,5),intvec(3,5,7),intvec(3,4,7),intvec(4,7,9)); T[186]=list(intvec(3,4,6),intvec(6,7,9),intvec(2,3,5),intvec(3,5,7),intvec(3,6,7)); T[187]=list(intvec(6,8,9),intvec(3,4,6),intvec(2,3,6),intvec(5,7,8),intvec(2,5,8),intvec(2,6,8)); T[188]=list(intvec(3,4,6),intvec(2,3,6),intvec(5,7,8),intvec(2,5,6),intvec(5,8,9),intvec(5,6,9)); T[189]=list(intvec(1,2,5),intvec(1,2,4),intvec(1,4,8),intvec(5,7,8),intvec(1,5,8),intvec(4,8,9)); T[190]=list(intvec(6,8,9),intvec(1,2,4),intvec(4,6,8),intvec(1,4,8),intvec(5,7,8),intvec(2,5,8),intvec(1,2,8)); T[191]=list(intvec(6,8,9),intvec(1,4,5),intvec(4,6,8),intvec(1,4,8),intvec(5,7,8),intvec(1,5,8),intvec(2,4,5)); T[192]=list(intvec(1,2,7),intvec(1,7,8),intvec(1,2,4),intvec(1,4,8),intvec(4,8,9)); T[193]=list(intvec(1,5,7),intvec(1,7,8),intvec(1,4,5),intvec(1,4,8),intvec(2,4,5),intvec(4,8,9)); T[194]=list(intvec(6,8,9),intvec(4,6,8),intvec(2,3,7),intvec(3,7,8),intvec(3,4,8)); T[195]=list(intvec(2,3,7),intvec(4,8,9),intvec(3,4,7),intvec(4,7,8)); T[196]=list(intvec(1,2,5),intvec(1,6,9),intvec(1,2,6),intvec(1,8,9),intvec(5,7,8),intvec(1,5,8),intvec(2,4,6)); T[197]=list(intvec(6,8,9),intvec(1,6,8),intvec(1,2,6),intvec(5,7,8),intvec(2,4,6),intvec(2,5,8),intvec(1,2,8)); T[198]=list(intvec(1,5,7),intvec(1,7,8),intvec(1,4,5),intvec(1,8,9),intvec(2,4,5),intvec(1,4,9)); T[199]=list(intvec(1,2,7),intvec(1,7,8),intvec(1,2,4),intvec(1,8,9),intvec(1,4,9)); T[200]=list(intvec(1,2,5),intvec(1,2,4),intvec(1,8,9),intvec(5,7,8),intvec(1,5,8),intvec(1,4,9)); T[201]=list(intvec(6,8,9),intvec(2,3,5),intvec(3,4,5),intvec(4,6,8),intvec(5,7,8),intvec(4,5,8)); T[202]=list(intvec(2,3,5),intvec(3,4,5),intvec(5,7,8),intvec(4,5,6),intvec(5,8,9),intvec(5,6,9)); T[203]=list(intvec(1,3,4),intvec(2,3,5),intvec(1,7,9),intvec(3,5,7),intvec(1,3,7),intvec(1,4,9)); T[204]=list(intvec(3,4,6),intvec(1,3,6),intvec(2,3,5),intvec(1,7,9),intvec(1,6,9),intvec(3,5,7),intvec(1,3,7)); T[205]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,2,5),intvec(5,7,8),intvec(1,5,9),intvec(1,4,9),intvec(5,8,9)); T[206]=list(intvec(1,2,3),intvec(1,2,5),intvec(3,4,6),intvec(1,3,6),intvec(1,6,9),intvec(5,7,8),intvec(1,5,9),intvec(5,8,9)); T[207]=list(intvec(1,2,5),intvec(1,4,6),intvec(1,2,4),intvec(1,6,9),intvec(5,7,8),intvec(1,5,9),intvec(5,8,9)); T[208]=list(intvec(1,3,4),intvec(1,4,6),intvec(2,3,5),intvec(1,3,5),intvec(1,6,9),intvec(5,7,8),intvec(1,5,9),intvec(5,8,9)); T[209]=list(intvec(3,4,6),intvec(6,7,9),intvec(2,3,7),intvec(3,6,7)); T[210]=list(intvec(3,4,6),intvec(1,3,6),intvec(1,7,9),intvec(1,6,9),intvec(1,3,7),intvec(2,3,7)); T[211]=list(intvec(2,3,5),intvec(3,4,5),intvec(4,5,6),intvec(5,7,9),intvec(5,6,9)); T[212]=list(intvec(3,4,6),intvec(2,3,5),intvec(3,5,6),intvec(5,7,9),intvec(5,6,9)); T[213]=list(intvec(1,3,4),intvec(2,3,5),intvec(1,3,5),intvec(1,4,8),intvec(5,7,8),intvec(1,5,8),intvec(4,8,9)); T[214]=list(intvec(6,8,9),intvec(2,3,5),intvec(4,6,8),intvec(5,7,8),intvec(3,4,8),intvec(3,5,8)); T[215]=list(intvec(6,8,9),intvec(2,3,5),intvec(3,4,5),intvec(1,4,5),intvec(4,6,8),intvec(1,4,8),intvec(5,7,8),intvec(1,5,8)); T[216]=list(intvec(1,2,7),intvec(1,7,8),intvec(1,6,9),intvec(1,2,6),intvec(1,8,9),intvec(2,4,6)); T[217]=list(intvec(3,4,6),intvec(2,3,6),intvec(2,5,6),intvec(5,7,9),intvec(5,6,9)); T[218]=list(intvec(1,3,4),intvec(2,3,5),intvec(1,3,5),intvec(5,7,9),intvec(1,5,9),intvec(1,4,9)); T[219]=list(intvec(3,4,6),intvec(1,3,6),intvec(2,3,5),intvec(1,3,5),intvec(1,6,9),intvec(5,7,9),intvec(1,5,9)); T[220]=list(intvec(1,4,6),intvec(2,3,5),intvec(1,6,9),intvec(3,4,5),intvec(1,4,5),intvec(5,7,9),intvec(1,5,9)); T[221]=list(intvec(1,5,7),intvec(2,3,5),intvec(1,7,9),intvec(3,4,5),intvec(1,4,5),intvec(1,4,9)); T[222]=list(intvec(1,2,7),intvec(1,2,4),intvec(1,7,9),intvec(1,4,9)); T[223]=list(intvec(1,2,7),intvec(3,4,6),intvec(1,7,9),intvec(1,6,9),intvec(2,3,6),intvec(1,2,6)); T[224]=list(intvec(1,2,5),intvec(3,4,6),intvec(1,6,9),intvec(2,3,6),intvec(1,2,6),intvec(5,7,9),intvec(1,5,9)); T[225]=list(intvec(1,2,3),intvec(1,2,5),intvec(3,4,6),intvec(5,7,9),intvec(1,5,9),intvec(1,3,9),intvec(3,6,9)); T[226]=list(intvec(2,3,7),intvec(3,4,7),intvec(4,7,9)); T[227]=list(intvec(1,3,4),intvec(1,7,9),intvec(1,3,7),intvec(2,3,7),intvec(1,4,9)); T[228]=list(intvec(1,2,3),intvec(1,2,7),intvec(1,7,9),intvec(3,4,9),intvec(1,3,9)); T[229]=list(intvec(1,4,6),intvec(1,2,4),intvec(1,6,9),intvec(1,8,9),intvec(1,2,8),intvec(2,7,8)); T[230]=list(intvec(2,4,5),intvec(4,5,7),intvec(4,7,9)); T[231]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,8,9),intvec(1,2,8),intvec(1,4,9),intvec(2,7,8)); T[232]=list(intvec(1,3,4),intvec(1,7,8),intvec(1,3,7),intvec(1,8,9),intvec(2,3,7),intvec(1,4,9)); T[233]=list(intvec(1,2,3),intvec(1,2,7),intvec(1,7,8),intvec(1,8,9),intvec(3,4,9),intvec(1,3,9)); T[234]=list(intvec(6,8,9),intvec(5,7,8),intvec(2,4,6),intvec(2,5,8),intvec(2,6,8)); T[235]=list(intvec(5,7,8),intvec(2,4,6),intvec(2,5,6),intvec(5,8,9),intvec(5,6,9)); T[236]=list(intvec(1,5,7),intvec(1,7,8),intvec(2,3,5),intvec(3,4,5),intvec(1,4,5),intvec(1,4,8),intvec(4,8,9)); T[237]=list(intvec(2,4,7),intvec(4,8,9),intvec(4,7,8)); T[238]=list(intvec(6,8,9),intvec(4,6,8),intvec(2,7,8),intvec(2,4,8)); T[239]=list(intvec(1,7,8),intvec(3,4,6),intvec(1,3,6),intvec(1,6,9),intvec(1,3,7),intvec(1,8,9),intvec(2,3,7)); T[240]=list(intvec(6,8,9),intvec(3,4,6),intvec(2,3,7),intvec(3,7,8),intvec(3,6,8)); T[241]=list(intvec(1,4,6),intvec(1,6,9),intvec(1,4,5),intvec(1,8,9),intvec(5,7,8),intvec(1,5,8),intvec(2,4,5)); T[242]=list(intvec(1,4,6),intvec(1,2,4),intvec(1,6,9),intvec(1,8,9),intvec(5,7,8),intvec(2,5,8),intvec(1,2,8)); T[243]=list(intvec(6,8,9),intvec(1,2,4),intvec(4,6,8),intvec(1,4,8),intvec(1,2,8),intvec(2,7,8)); T[244]=list(intvec(1,4,6),intvec(2,3,5),intvec(1,6,9),intvec(3,4,5),intvec(1,4,5),intvec(1,8,9),intvec(5,7,8),intvec(1,5,8)); T[245]=list(intvec(2,4,7),intvec(4,7,9)); T[246]=list(intvec(1,2,5),intvec(3,4,6),intvec(1,6,9),intvec(2,3,6),intvec(1,2,6),intvec(1,8,9),intvec(5,7,8),intvec(1,5,8)); T[247]=list(intvec(6,8,9),intvec(1,6,8),intvec(3,4,6),intvec(2,3,6),intvec(1,2,6),intvec(5,7,8),intvec(2,5,8),intvec(1,2,8)); T[248]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,8,9),intvec(5,7,8),intvec(2,5,8),intvec(1,2,8),intvec(1,4,9)); T[249]=list(intvec(1,2,3),intvec(1,2,5),intvec(1,8,9),intvec(5,7,8),intvec(1,5,8),intvec(3,4,9),intvec(1,3,9)); T[250]=list(intvec(1,3,4),intvec(2,3,5),intvec(1,3,5),intvec(1,8,9),intvec(5,7,8),intvec(1,5,8),intvec(1,4,9)); T[251]=list(intvec(1,5,7),intvec(3,4,6),intvec(2,3,5),intvec(1,3,5),intvec(1,7,9),intvec(1,3,9),intvec(3,6,9)); T[252]=list(intvec(1,3,4),intvec(1,7,8),intvec(1,3,7),intvec(1,4,8),intvec(2,3,7),intvec(4,8,9)); T[253]=list(intvec(2,3,5),intvec(3,5,7),intvec(4,8,9),intvec(3,4,7),intvec(4,7,8)); T[254]=list(intvec(1,2,5),intvec(1,2,4),intvec(5,7,9),intvec(1,5,9),intvec(1,4,9)); T[255]=list(intvec(1,4,6),intvec(1,6,9),intvec(1,4,5),intvec(2,4,5),intvec(5,7,9),intvec(1,5,9)); T[256]=list(intvec(1,2,3),intvec(1,2,5),intvec(5,7,9),intvec(1,5,9),intvec(3,4,9),intvec(1,3,9)); T[257]=list(intvec(1,5,7),intvec(2,3,5),intvec(1,3,5),intvec(1,7,9),intvec(3,4,9),intvec(1,3,9)); T[258]=list(intvec(1,5,7),intvec(1,7,8),intvec(3,4,6),intvec(2,3,5),intvec(1,3,5),intvec(1,8,9),intvec(1,3,9),intvec(3,6,9)); T[259]=list(intvec(1,7,8),intvec(3,4,6),intvec(1,3,6),intvec(2,3,5),intvec(1,6,9),intvec(3,5,7),intvec(1,3,7),intvec(1,8,9)); T[260]=list(intvec(3,4,6),intvec(1,3,6),intvec(2,3,5),intvec(1,3,5),intvec(1,6,9),intvec(1,8,9),intvec(5,7,8),intvec(1,5,8)); T[261]=list(intvec(1,5,7),intvec(1,7,8),intvec(2,3,5),intvec(1,3,5),intvec(1,8,9),intvec(3,4,9),intvec(1,3,9)); T[262]=list(intvec(2,3,5),intvec(3,4,5),intvec(4,5,7),intvec(4,8,9),intvec(4,7,8)); T[263]=list(intvec(1,2,7),intvec(1,7,8),intvec(3,4,6),intvec(1,6,9),intvec(2,3,6),intvec(1,2,6),intvec(1,8,9)); T[264]=list(intvec(6,8,9),intvec(1,6,8),intvec(3,4,6),intvec(2,3,6),intvec(1,2,6),intvec(1,2,8),intvec(2,7,8)); T[265]=list(intvec(1,5,7),intvec(1,7,8),intvec(2,3,5),intvec(3,4,5),intvec(1,4,5),intvec(1,8,9),intvec(1,4,9)); T[266]=list(intvec(1,3,4),intvec(1,7,8),intvec(2,3,5),intvec(3,5,7),intvec(1,3,7),intvec(1,8,9),intvec(1,4,9)); T[267]=list(intvec(2,4,5),intvec(4,5,7),intvec(4,8,9),intvec(4,7,8)); T[268]=list(intvec(6,8,9),intvec(4,6,8),intvec(5,7,8),intvec(2,4,5),intvec(4,5,8)); T[269]=list(intvec(1,2,3),intvec(1,2,5),intvec(3,4,6),intvec(1,8,9),intvec(5,7,8),intvec(1,5,8),intvec(1,3,9),intvec(3,6,9)); T[270]=list(intvec(1,2,3),intvec(3,4,6),intvec(1,3,6),intvec(1,6,9),intvec(1,8,9),intvec(5,7,8),intvec(2,5,8),intvec(1,2,8)); T[271]=list(intvec(1,2,3),intvec(1,2,7),intvec(1,7,8),intvec(3,4,6),intvec(1,8,9),intvec(1,3,9),intvec(3,6,9)); T[272]=list(intvec(1,2,3),intvec(3,4,6),intvec(1,3,6),intvec(1,6,9),intvec(1,8,9),intvec(1,2,8),intvec(2,7,8)); T[273]=list(intvec(6,8,9),intvec(3,4,6),intvec(2,3,5),intvec(5,7,8),intvec(3,5,8),intvec(3,6,8)); T[274]=list(intvec(3,4,6),intvec(2,3,5),intvec(5,7,8),intvec(3,5,6),intvec(5,8,9),intvec(5,6,9)); T[275]=list(intvec(1,5,7),intvec(1,7,9),intvec(1,4,5),intvec(2,4,5),intvec(1,4,9)); T[276]=list(intvec(6,8,9),intvec(3,4,6),intvec(5,7,8),intvec(2,5,8),intvec(3,6,8),intvec(2,3,8)); T[277]=list(intvec(6,8,9),intvec(3,4,6),intvec(2,7,8),intvec(3,6,8),intvec(2,3,8)); T[278]=list(intvec(6,8,9),intvec(3,4,6),intvec(2,3,5),intvec(3,5,7),intvec(3,7,8),intvec(3,6,8)); T[279]=list(intvec(6,8,9),intvec(2,4,6),intvec(2,7,8),intvec(2,6,8)); T[280]=list(intvec(6,8,9),intvec(1,6,8),intvec(1,2,6),intvec(2,4,6),intvec(1,2,8),intvec(2,7,8)); T[281]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,4,8),intvec(4,8,9),intvec(1,2,8),intvec(2,7,8)); T[282]=list(intvec(1,2,3),intvec(1,2,7),intvec(3,4,6),intvec(1,7,9),intvec(1,3,9),intvec(3,6,9)); T[283]=list(intvec(5,7,8),intvec(2,4,5),intvec(4,5,6),intvec(5,8,9),intvec(5,6,9)); T[284]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,4,8),intvec(5,7,8),intvec(4,8,9),intvec(2,5,8),intvec(1,2,8)); T[285]=list(intvec(6,8,9),intvec(4,6,8),intvec(5,7,8),intvec(2,5,8),intvec(3,4,8),intvec(2,3,8)); T[286]=list(intvec(2,4,5),intvec(4,5,6),intvec(5,7,9),intvec(5,6,9)); T[287]=list(intvec(6,8,9),intvec(4,6,8),intvec(2,7,8),intvec(3,4,8),intvec(2,3,8)); T[288]=list(intvec(6,8,9),intvec(4,6,8),intvec(5,7,8),intvec(2,5,8),intvec(2,4,8)); T[289]=list(intvec(5,7,8),intvec(2,4,6),intvec(2,5,8),intvec(2,8,9),intvec(2,6,9)); T[290]=list(intvec(2,4,6),intvec(2,6,9),intvec(2,7,9)); T[291]=list(intvec(1,2,4),intvec(1,4,8),intvec(4,8,9),intvec(1,2,8),intvec(2,7,8)); T[292]=list(intvec(4,8,9),intvec(2,7,8),intvec(3,4,8),intvec(2,3,8)); T[293]=list(intvec(3,4,6),intvec(2,3,6),intvec(5,7,8),intvec(5,8,9),intvec(2,6,9),intvec(2,5,9)); T[294]=list(intvec(1,2,5),intvec(3,4,6),intvec(1,6,9),intvec(2,3,6),intvec(1,2,6),intvec(5,7,8),intvec(1,5,9),intvec(5,8,9)); T[295]=list(intvec(2,3,5),intvec(3,4,5),intvec(5,7,8),intvec(4,8,9),intvec(4,5,8)); T[296]=list(intvec(2,3,5),intvec(3,4,5),intvec(1,4,5),intvec(1,8,9),intvec(5,7,8),intvec(1,5,8),intvec(1,4,9)); T[297]=list(intvec(1,4,6),intvec(2,3,5),intvec(1,6,9),intvec(3,4,5),intvec(1,4,5),intvec(5,7,8),intvec(1,5,9),intvec(5,8,9)); T[298]=list(intvec(1,4,5),intvec(1,8,9),intvec(5,7,8),intvec(1,5,8),intvec(2,4,5),intvec(1,4,9)); T[299]=list(intvec(3,4,6),intvec(2,3,5),intvec(1,7,9),intvec(3,5,7),intvec(1,3,7),intvec(1,3,9),intvec(3,6,9)); T[300]=list(intvec(1,2,4),intvec(1,8,9),intvec(5,7,8),intvec(2,5,8),intvec(1,2,8),intvec(1,4,9)); T[301]=list(intvec(1,2,3),intvec(1,8,9),intvec(5,7,8),intvec(2,5,8),intvec(1,2,8),intvec(3,4,9),intvec(1,3,9)); T[302]=list(intvec(3,4,6),intvec(1,3,6),intvec(2,3,5),intvec(1,3,5),intvec(1,6,9),intvec(5,7,8),intvec(1,5,9),intvec(5,8,9)); T[303]=list(intvec(3,4,6),intvec(2,3,5),intvec(1,3,5),intvec(5,7,9),intvec(1,5,9),intvec(1,3,9),intvec(3,6,9)); T[304]=list(intvec(3,4,6),intvec(2,3,6),intvec(2,6,9),intvec(2,7,9)); T[305]=list(intvec(1,2,5),intvec(1,6,9),intvec(1,2,6),intvec(5,7,8),intvec(2,4,6),intvec(1,5,9),intvec(5,8,9)); T[306]=list(intvec(1,2,5),intvec(1,2,4),intvec(5,7,8),intvec(1,5,9),intvec(1,4,9),intvec(5,8,9)); T[307]=list(intvec(1,4,6),intvec(1,6,9),intvec(1,4,5),intvec(5,7,8),intvec(2,4,5),intvec(1,5,9),intvec(5,8,9)); T[308]=list(intvec(1,3,4),intvec(2,3,5),intvec(1,3,5),intvec(5,7,8),intvec(1,5,9),intvec(1,4,9),intvec(5,8,9)); T[309]=list(intvec(3,4,6),intvec(2,3,5),intvec(3,5,7),intvec(3,6,9),intvec(3,7,8),intvec(3,8,9)); T[310]=list(intvec(1,7,8),intvec(2,3,5),intvec(3,5,7),intvec(1,3,7),intvec(1,8,9),intvec(3,4,9),intvec(1,3,9)); T[311]=list(intvec(2,3,5),intvec(1,3,5),intvec(1,8,9),intvec(5,7,8),intvec(1,5,8),intvec(3,4,9),intvec(1,3,9)); T[312]=list(intvec(1,7,8),intvec(3,4,6),intvec(1,3,7),intvec(1,8,9),intvec(2,3,7),intvec(1,3,9),intvec(3,6,9)); T[313]=list(intvec(1,4,5),intvec(2,4,5),intvec(5,7,9),intvec(1,5,9),intvec(1,4,9)); T[314]=list(intvec(1,4,5),intvec(1,4,8),intvec(5,7,8),intvec(1,5,8),intvec(2,4,5),intvec(4,8,9)); T[315]=list(intvec(1,2,4),intvec(1,4,8),intvec(5,7,8),intvec(4,8,9),intvec(2,5,8),intvec(1,2,8)); T[316]=list(intvec(2,3,5),intvec(3,5,7),intvec(4,8,9),intvec(3,7,8),intvec(3,4,8)); T[317]=list(intvec(2,3,5),intvec(5,7,8),intvec(4,8,9),intvec(3,4,8),intvec(3,5,8)); T[318]=list(intvec(2,3,5),intvec(3,4,5),intvec(1,4,5),intvec(1,4,8),intvec(5,7,8),intvec(1,5,8),intvec(4,8,9)); T[319]=list(intvec(2,3,5),intvec(3,4,5),intvec(5,7,9),intvec(4,5,9)); T[320]=list(intvec(1,2,3),intvec(1,2,5),intvec(3,4,6),intvec(5,7,8),intvec(1,5,9),intvec(1,3,9),intvec(3,6,9),intvec(5,8,9)); T[321]=list(intvec(2,4,6),intvec(5,7,9),intvec(2,6,9),intvec(2,5,9)); T[322]=list(intvec(2,7,9),intvec(2,4,9)); T[323]=list(intvec(5,7,8),intvec(4,8,9),intvec(2,5,8),intvec(3,4,8),intvec(2,3,8)); T[324]=list(intvec(3,4,6),intvec(2,3,6),intvec(2,7,8),intvec(2,8,9),intvec(2,6,9)); T[325]=list(intvec(4,8,9),intvec(2,7,8),intvec(2,4,8)); T[326]=list(intvec(3,4,6),intvec(2,3,6),intvec(5,7,9),intvec(2,6,9),intvec(2,5,9)); T[327]=list(intvec(3,4,6),intvec(2,3,5),intvec(5,7,8),intvec(3,6,9),intvec(3,5,8),intvec(3,8,9)); T[328]=list(intvec(5,7,9),intvec(2,5,9),intvec(2,4,9)); T[329]=list(intvec(1,2,3),intvec(3,4,6),intvec(1,8,9),intvec(1,2,8),intvec(2,7,8),intvec(1,3,9),intvec(3,6,9)); T[330]=list(intvec(2,4,5),intvec(5,7,9),intvec(4,5,9)); T[331]=list(intvec(1,2,4),intvec(1,8,9),intvec(1,2,8),intvec(1,4,9),intvec(2,7,8)); T[332]=list(intvec(1,2,3),intvec(1,8,9),intvec(1,2,8),intvec(2,7,8),intvec(3,4,9),intvec(1,3,9)); T[333]=list(intvec(3,4,6),intvec(1,6,9),intvec(2,3,6),intvec(1,2,6),intvec(1,8,9),intvec(1,2,8),intvec(2,7,8)); T[334]=list(intvec(2,3,5),intvec(3,4,5),intvec(1,4,5),intvec(5,7,9),intvec(1,5,9),intvec(1,4,9)); T[335]=list(intvec(3,4,6),intvec(1,6,9),intvec(2,3,6),intvec(1,2,6),intvec(1,8,9),intvec(5,7,8),intvec(2,5,8),intvec(1,2,8)); T[336]=list(intvec(1,2,3),intvec(3,4,6),intvec(1,8,9),intvec(5,7,8),intvec(2,5,8),intvec(1,2,8),intvec(1,3,9),intvec(3,6,9)); T[337]=list(intvec(1,7,8),intvec(3,4,6),intvec(2,3,5),intvec(3,5,7),intvec(1,3,7),intvec(1,8,9),intvec(1,3,9),intvec(3,6,9)); T[338]=list(intvec(5,7,8),intvec(2,4,5),intvec(4,8,9),intvec(4,5,8)); T[339]=list(intvec(3,4,6),intvec(1,7,9),intvec(1,3,7),intvec(2,3,7),intvec(1,3,9),intvec(3,6,9)); T[340]=list(intvec(3,4,6),intvec(3,6,9),intvec(2,7,9),intvec(2,3,9)); T[341]=list(intvec(3,4,6),intvec(2,3,5),intvec(1,3,5),intvec(1,8,9),intvec(5,7,8),intvec(1,5,8),intvec(1,3,9),intvec(3,6,9)); T[342]=list(intvec(1,6,9),intvec(1,2,6),intvec(1,8,9),intvec(2,4,6),intvec(1,2,8),intvec(2,7,8)); T[343]=list(intvec(1,2,3),intvec(1,2,5),intvec(5,7,8),intvec(1,5,9),intvec(3,4,9),intvec(1,3,9),intvec(5,8,9)); T[344]=list(intvec(3,4,6),intvec(2,3,7),intvec(3,6,9),intvec(3,7,8),intvec(3,8,9)); T[345]=list(intvec(1,7,8),intvec(1,3,7),intvec(1,8,9),intvec(2,3,7),intvec(3,4,9),intvec(1,3,9)); T[346]=list(intvec(1,6,9),intvec(1,2,6),intvec(1,8,9),intvec(5,7,8),intvec(2,4,6),intvec(2,5,8),intvec(1,2,8)); T[347]=list(intvec(3,4,6),intvec(2,7,8),intvec(3,6,9),intvec(2,3,8),intvec(3,8,9)); T[348]=list(intvec(3,4,6),intvec(2,3,5),intvec(3,5,7),intvec(3,6,9),intvec(3,7,9)); T[349]=list(intvec(2,3,7),intvec(4,8,9),intvec(3,7,8),intvec(3,4,8)); T[350]=list(intvec(2,3,5),intvec(1,7,9),intvec(3,5,7),intvec(1,3,7),intvec(3,4,9),intvec(1,3,9)); T[351]=list(intvec(2,3,5),intvec(1,3,5),intvec(5,7,9),intvec(1,5,9),intvec(3,4,9),intvec(1,3,9)); T[352]=list(intvec(3,4,6),intvec(2,3,6),intvec(5,7,8),intvec(2,5,8),intvec(2,8,9),intvec(2,6,9)); T[353]=list(intvec(3,4,6),intvec(5,7,8),intvec(2,5,8),intvec(3,6,9),intvec(2,3,8),intvec(3,8,9)); T[354]=list(intvec(5,7,8),intvec(2,4,5),intvec(5,8,9),intvec(4,5,9)); T[355]=list(intvec(3,4,6),intvec(2,3,7),intvec(3,6,9),intvec(3,7,9)); T[356]=list(intvec(3,4,6),intvec(2,3,5),intvec(5,7,8),intvec(3,6,9),intvec(5,8,9),intvec(3,5,9)); T[357]=list(intvec(5,7,9),intvec(3,4,9),intvec(2,5,9),intvec(2,3,9)); T[358]=list(intvec(1,7,9),intvec(1,3,7),intvec(2,3,7),intvec(3,4,9),intvec(1,3,9)); T[359]=list(intvec(3,4,9),intvec(2,7,9),intvec(2,3,9)); T[360]=list(intvec(2,3,5),intvec(3,4,5),intvec(5,7,8),intvec(5,8,9),intvec(4,5,9)); T[361]=list(intvec(2,4,6),intvec(2,7,8),intvec(2,8,9),intvec(2,6,9)); T[362]=list(intvec(5,7,8),intvec(2,4,6),intvec(5,8,9),intvec(2,6,9),intvec(2,5,9)); T[363]=list(intvec(3,4,6),intvec(2,3,5),intvec(5,7,9),intvec(3,6,9),intvec(3,5,9)); T[364]=list(intvec(3,4,6),intvec(5,7,9),intvec(3,6,9),intvec(2,5,9),intvec(2,3,9)); T[365]=list(intvec(2,3,7),intvec(3,4,9),intvec(3,7,9)); T[366]=list(intvec(2,3,5),intvec(3,5,7),intvec(3,4,9),intvec(3,7,9)); T[367]=list(intvec(2,7,8),intvec(3,4,9),intvec(2,3,8),intvec(3,8,9)); T[368]=list(intvec(2,7,8),intvec(3,4,9),intvec(2,8,9),intvec(2,3,9)); T[369]=list(intvec(3,4,6),intvec(2,7,8),intvec(3,6,9),intvec(2,8,9),intvec(2,3,9)); T[370]=list(intvec(2,3,5),intvec(3,4,5),intvec(1,4,5),intvec(5,7,8),intvec(1,5,9),intvec(1,4,9),intvec(5,8,9)); T[371]=list(intvec(5,7,8),intvec(5,8,9),intvec(2,5,9),intvec(2,4,9)); T[372]=list(intvec(3,4,6),intvec(5,7,8),intvec(2,5,8),intvec(3,6,9),intvec(2,8,9),intvec(2,3,9)); T[373]=list(intvec(3,4,6),intvec(2,3,5),intvec(1,3,5),intvec(5,7,8),intvec(1,5,9),intvec(1,3,9),intvec(3,6,9),intvec(5,8,9)); T[374]=list(intvec(5,7,8),intvec(4,8,9),intvec(2,5,8),intvec(2,4,8)); T[375]=list(intvec(3,4,6),intvec(5,7,8),intvec(3,6,9),intvec(5,8,9),intvec(2,5,9),intvec(2,3,9)); T[376]=list(intvec(1,4,5),intvec(5,7,8),intvec(2,4,5),intvec(1,5,9),intvec(1,4,9),intvec(5,8,9)); T[377]=list(intvec(2,3,5),intvec(5,7,9),intvec(3,4,9),intvec(3,5,9)); T[378]=list(intvec(2,3,5),intvec(3,5,7),intvec(3,4,9),intvec(3,7,8),intvec(3,8,9)); T[379]=list(intvec(2,3,7),intvec(3,4,9),intvec(3,7,8),intvec(3,8,9)); T[380]=list(intvec(5,7,8),intvec(3,4,9),intvec(5,8,9),intvec(2,5,9),intvec(2,3,9)); T[381]=list(intvec(2,3,5),intvec(1,3,5),intvec(5,7,8),intvec(1,5,9),intvec(3,4,9),intvec(1,3,9),intvec(5,8,9)); T[382]=list(intvec(2,7,8),intvec(2,8,9),intvec(2,4,9)); T[383]=list(intvec(2,3,5),intvec(5,7,8),intvec(3,4,9),intvec(5,8,9),intvec(3,5,9)); T[384]=list(intvec(5,7,8),intvec(2,5,8),intvec(3,4,9),intvec(2,3,8),intvec(3,8,9)); T[385]=list(intvec(2,3,5),intvec(5,7,8),intvec(3,4,9),intvec(3,5,8),intvec(3,8,9)); T[386]=list(intvec(5,7,8),intvec(2,5,8),intvec(3,4,9),intvec(2,8,9),intvec(2,3,9)); T[387]=list(intvec(5,7,8),intvec(2,5,8),intvec(2,8,9),intvec(2,4,9)); } if ((polygon=="4x2") or (polygon=="4x2new")) { T[1]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,4,5),intvec(1,5,6),intvec(1,2,7),intvec(1,6,8),intvec(1,7,9),intvec(1,8,9)); T[2]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,4,5),intvec(1,5,6),intvec(1,6,8),intvec(1,8,9),intvec(1,2,9)); T[3]=list(intvec(1,3,4),intvec(1,4,5),intvec(1,5,6),intvec(1,6,8),intvec(1,7,9),intvec(1,8,9),intvec(2,3,7),intvec(1,3,7)); T[4]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,4,5),intvec(1,5,6),intvec(1,2,7),intvec(1,7,9),intvec(1,6,9)); T[5]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,4,5),intvec(1,2,7),intvec(1,7,9),intvec(1,8,9),intvec(5,6,8),intvec(1,5,8)); T[6]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,2,7),intvec(1,6,8),intvec(1,7,9),intvec(1,8,9),intvec(1,4,6)); T[7]=list(intvec(1,4,5),intvec(1,5,6),intvec(1,2,7),intvec(1,6,8),intvec(1,7,9),intvec(1,8,9),intvec(1,2,4)); T[8]=list(intvec(1,2,3),intvec(1,5,6),intvec(1,2,7),intvec(1,6,8),intvec(1,7,9),intvec(1,8,9),intvec(1,3,5)); T[9]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,4,5),intvec(1,5,6),intvec(1,2,9),intvec(1,6,9)); T[10]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,4,5),intvec(1,8,9),intvec(1,2,9),intvec(5,6,8),intvec(1,5,8)); T[11]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,6,8),intvec(1,8,9),intvec(1,2,9),intvec(1,4,6)); T[12]=list(intvec(1,3,4),intvec(1,4,5),intvec(1,5,6),intvec(1,6,8),intvec(1,8,9),intvec(2,3,9),intvec(1,3,9)); T[13]=list(intvec(1,4,5),intvec(1,5,6),intvec(1,6,8),intvec(1,8,9),intvec(1,2,9),intvec(1,2,4)); T[14]=list(intvec(1,2,3),intvec(1,5,6),intvec(1,6,8),intvec(1,8,9),intvec(1,2,9),intvec(1,3,5)); T[15]=list(intvec(1,4,5),intvec(1,5,6),intvec(1,2,7),intvec(1,7,9),intvec(1,6,9),intvec(1,2,4)); T[16]=list(intvec(1,4,5),intvec(1,2,7),intvec(1,7,9),intvec(1,8,9),intvec(5,6,8),intvec(1,5,8),intvec(1,2,4)); T[17]=list(intvec(1,4,5),intvec(1,5,6),intvec(1,6,8),intvec(1,7,9),intvec(1,8,9),intvec(2,4,7),intvec(1,4,7)); T[18]=list(intvec(1,2,7),intvec(1,6,8),intvec(1,7,9),intvec(1,8,9),intvec(1,4,6),intvec(1,2,4)); T[19]=list(intvec(1,5,6),intvec(1,2,7),intvec(1,6,8),intvec(1,7,9),intvec(1,8,9),intvec(1,2,5)); T[20]=list(intvec(1,3,4),intvec(1,6,8),intvec(1,7,9),intvec(1,8,9),intvec(2,3,7),intvec(1,3,7),intvec(1,4,6)); T[21]=list(intvec(1,2,3),intvec(1,2,7),intvec(1,6,8),intvec(1,7,9),intvec(1,8,9),intvec(1,3,6)); T[22]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,2,7),intvec(1,7,9),intvec(1,6,9),intvec(1,4,6)); T[23]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,2,7),intvec(1,7,9),intvec(1,8,9),intvec(4,6,8),intvec(1,4,8)); T[24]=list(intvec(1,3,4),intvec(1,4,5),intvec(1,5,6),intvec(1,7,9),intvec(2,3,7),intvec(1,3,7),intvec(1,6,9)); T[25]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,4,5),intvec(1,2,7),intvec(1,7,9),intvec(5,6,9),intvec(1,5,9)); T[26]=list(intvec(1,2,3),intvec(1,5,6),intvec(1,2,7),intvec(1,7,9),intvec(1,6,9),intvec(1,3,5)); T[27]=list(intvec(1,5,6),intvec(1,6,8),intvec(1,7,9),intvec(1,8,9),intvec(2,3,7),intvec(1,3,7),intvec(1,3,5)); T[28]=list(intvec(1,2,3),intvec(1,2,7),intvec(1,7,9),intvec(1,8,9),intvec(5,6,8),intvec(1,5,8),intvec(1,3,5)); T[29]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,2,7),intvec(1,7,9),intvec(1,8,9),intvec(5,6,8),intvec(1,4,8),intvec(4,5,8)); T[30]=list(intvec(1,3,4),intvec(1,4,5),intvec(1,7,9),intvec(1,8,9),intvec(2,3,7),intvec(1,3,7),intvec(5,6,8),intvec(1,5,8)); T[31]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,4,5),intvec(1,2,7),intvec(1,7,9),intvec(5,6,8),intvec(1,5,9),intvec(5,8,9)); T[32]=list(intvec(1,3,4),intvec(1,4,5),intvec(1,5,6),intvec(1,6,8),intvec(1,8,9),intvec(2,3,7),intvec(1,3,9),intvec(3,7,9)); T[33]=list(intvec(1,4,5),intvec(1,5,6),intvec(1,6,8),intvec(1,7,9),intvec(1,8,9),intvec(2,3,7),intvec(1,4,7),intvec(3,4,7)); T[34]=list(intvec(1,3,4),intvec(1,4,5),intvec(1,8,9),intvec(2,3,7),intvec(5,6,8),intvec(1,5,8),intvec(1,3,9),intvec(3,7,9)); T[35]=list(intvec(1,5,6),intvec(1,6,8),intvec(1,8,9),intvec(2,3,7),intvec(1,3,5),intvec(1,3,9),intvec(3,7,9)); T[36]=list(intvec(1,3,4),intvec(1,4,5),intvec(1,5,6),intvec(2,3,7),intvec(1,6,9),intvec(1,3,9),intvec(3,7,9)); T[37]=list(intvec(1,3,4),intvec(1,6,8),intvec(1,8,9),intvec(2,3,7),intvec(1,4,6),intvec(1,3,9),intvec(3,7,9)); T[38]=list(intvec(1,2,3),intvec(1,2,7),intvec(1,7,9),intvec(5,6,8),intvec(1,3,5),intvec(1,5,9),intvec(5,8,9)); T[39]=list(intvec(1,4,5),intvec(1,2,7),intvec(1,7,9),intvec(5,6,8),intvec(1,2,4),intvec(1,5,9),intvec(5,8,9)); T[40]=list(intvec(1,3,4),intvec(1,4,5),intvec(1,7,9),intvec(2,3,7),intvec(1,3,7),intvec(5,6,8),intvec(1,5,9),intvec(5,8,9)); T[41]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,4,5),intvec(1,2,9),intvec(5,6,8),intvec(1,5,9),intvec(5,8,9)); T[42]=list(intvec(1,2,3),intvec(1,6,8),intvec(1,8,9),intvec(1,2,9),intvec(1,3,6)); T[43]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,2,9),intvec(1,6,9),intvec(1,4,6)); T[44]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,8,9),intvec(1,2,9),intvec(4,6,8),intvec(1,4,8)); T[45]=list(intvec(1,3,4),intvec(1,6,8),intvec(1,8,9),intvec(1,4,6),intvec(2,3,9),intvec(1,3,9)); T[46]=list(intvec(1,6,8),intvec(1,8,9),intvec(1,2,9),intvec(1,4,6),intvec(1,2,4)); T[47]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,4,5),intvec(1,2,9),intvec(5,6,9),intvec(1,5,9)); T[48]=list(intvec(1,3,4),intvec(1,4,5),intvec(1,5,6),intvec(1,6,9),intvec(2,3,9),intvec(1,3,9)); T[49]=list(intvec(1,4,5),intvec(1,5,6),intvec(1,2,9),intvec(1,6,9),intvec(1,2,4)); T[50]=list(intvec(1,2,3),intvec(1,5,6),intvec(1,2,9),intvec(1,6,9),intvec(1,3,5)); T[51]=list(intvec(1,3,4),intvec(1,7,9),intvec(1,8,9),intvec(2,3,7),intvec(1,3,7),intvec(5,6,8),intvec(1,4,8),intvec(4,5,8)); T[52]=list(intvec(1,4,5),intvec(1,7,9),intvec(1,8,9),intvec(2,3,7),intvec(5,6,8),intvec(1,5,8),intvec(1,4,7),intvec(3,4,7)); T[53]=list(intvec(1,7,9),intvec(1,8,9),intvec(2,3,7),intvec(1,3,7),intvec(5,6,8),intvec(1,5,8),intvec(1,3,5)); T[54]=list(intvec(1,2,3),intvec(1,2,7),intvec(1,7,9),intvec(1,3,5),intvec(5,6,9),intvec(1,5,9)); T[55]=list(intvec(1,4,5),intvec(1,2,7),intvec(1,7,9),intvec(1,2,4),intvec(5,6,9),intvec(1,5,9)); T[56]=list(intvec(1,3,4),intvec(1,4,5),intvec(1,7,9),intvec(2,3,7),intvec(1,3,7),intvec(5,6,9),intvec(1,5,9)); T[57]=list(intvec(1,2,7),intvec(1,6,8),intvec(1,7,9),intvec(1,8,9),intvec(1,2,6)); T[58]=list(intvec(1,2,7),intvec(1,7,9),intvec(1,6,9),intvec(1,4,6),intvec(1,2,4)); T[59]=list(intvec(1,6,8),intvec(1,7,9),intvec(1,8,9),intvec(1,4,6),intvec(2,4,7),intvec(1,4,7)); T[60]=list(intvec(1,2,7),intvec(1,7,9),intvec(1,8,9),intvec(1,2,4),intvec(4,6,8),intvec(1,4,8)); T[61]=list(intvec(1,4,5),intvec(1,5,6),intvec(1,7,9),intvec(2,3,7),intvec(1,6,9),intvec(1,4,7),intvec(3,4,7)); T[62]=list(intvec(1,3,4),intvec(1,7,9),intvec(2,3,7),intvec(1,3,7),intvec(1,6,9),intvec(1,4,6)); T[63]=list(intvec(1,5,6),intvec(1,7,9),intvec(2,3,7),intvec(1,3,7),intvec(1,6,9),intvec(1,3,5)); T[64]=list(intvec(1,5,6),intvec(1,6,8),intvec(1,8,9),intvec(1,2,9),intvec(1,2,5)); T[65]=list(intvec(1,5,6),intvec(1,6,8),intvec(1,7,9),intvec(1,8,9),intvec(2,5,7),intvec(1,5,7)); T[66]=list(intvec(1,5,6),intvec(1,2,7),intvec(1,7,9),intvec(1,6,9),intvec(1,2,5)); T[67]=list(intvec(1,2,7),intvec(1,7,9),intvec(1,8,9),intvec(5,6,8),intvec(1,5,8),intvec(1,2,5)); T[68]=list(intvec(1,4,5),intvec(1,8,9),intvec(1,2,9),intvec(5,6,8),intvec(1,5,8),intvec(1,2,4)); T[69]=list(intvec(1,2,7),intvec(1,7,9),intvec(1,8,9),intvec(5,6,8),intvec(1,2,4),intvec(1,4,8),intvec(4,5,8)); T[70]=list(intvec(1,4,5),intvec(1,7,9),intvec(1,8,9),intvec(5,6,8),intvec(1,5,8),intvec(2,4,7),intvec(1,4,7)); T[71]=list(intvec(1,2,3),intvec(1,8,9),intvec(1,2,9),intvec(5,6,8),intvec(1,5,8),intvec(1,3,5)); T[72]=list(intvec(1,2,3),intvec(1,2,7),intvec(1,7,9),intvec(1,8,9),intvec(5,6,8),intvec(3,5,8),intvec(1,3,8)); T[73]=list(intvec(1,4,5),intvec(1,5,6),intvec(1,7,9),intvec(1,6,9),intvec(2,4,7),intvec(1,4,7)); T[74]=list(intvec(1,3,4),intvec(1,4,5),intvec(1,8,9),intvec(5,6,8),intvec(1,5,8),intvec(2,3,9),intvec(1,3,9)); T[75]=list(intvec(1,5,6),intvec(1,6,8),intvec(1,8,9),intvec(1,3,5),intvec(2,3,9),intvec(1,3,9)); T[76]=list(intvec(1,2,3),intvec(1,2,7),intvec(1,7,9),intvec(1,8,9),intvec(1,3,8),intvec(3,6,8)); T[77]=list(intvec(1,6,8),intvec(1,7,9),intvec(1,8,9),intvec(2,3,7),intvec(1,3,7),intvec(1,3,6)); T[78]=list(intvec(1,2,3),intvec(1,2,7),intvec(1,7,9),intvec(1,6,9),intvec(1,3,6)); T[79]=list(intvec(1,5,6),intvec(1,6,8),intvec(1,7,9),intvec(1,8,9),intvec(2,3,7),intvec(1,5,7),intvec(3,5,7)); T[80]=list(intvec(1,5,6),intvec(1,6,8),intvec(1,7,9),intvec(1,8,9),intvec(2,4,7),intvec(1,5,7),intvec(4,5,7)); T[81]=list(intvec(1,2,3),intvec(1,2,7),intvec(1,7,9),intvec(1,8,9),intvec(5,6,8),intvec(4,5,8),intvec(1,3,8),intvec(3,4,8)); T[82]=list(intvec(1,2,3),intvec(1,3,4),intvec(1,8,9),intvec(1,2,9),intvec(5,6,8),intvec(1,4,8),intvec(4,5,8)); T[83]=list(intvec(1,5,6),intvec(1,6,8),intvec(1,7,9),intvec(1,8,9),intvec(2,3,7),intvec(3,4,7),intvec(1,5,7),intvec(4,5,7)); T[84]=list(intvec(1,6,8),intvec(1,7,9),intvec(1,8,9),intvec(2,3,7),intvec(1,4,6),intvec(1,4,7),intvec(3,4,7)); T[85]=list(intvec(1,3,4),intvec(1,7,9),intvec(1,8,9),intvec(2,3,7),intvec(1,3,7),intvec(4,6,8),intvec(1,4,8)); T[86]=list(intvec(1,2,3),intvec(1,2,7),intvec(1,7,9),intvec(1,8,9),intvec(4,6,8),intvec(1,3,8),intvec(3,4,8)); T[87]=list(intvec(1,7,9),intvec(1,8,9),intvec(5,6,8),intvec(1,5,8),intvec(2,5,7),intvec(1,5,7)); T[88]=list(intvec(1,5,6),intvec(1,7,9),intvec(1,6,9),intvec(2,5,7),intvec(1,5,7)); T[89]=list(intvec(1,6,8),intvec(1,7,9),intvec(1,8,9),intvec(2,5,7),intvec(5,6,7),intvec(1,6,7)); T[90]=list(intvec(1,3,4),intvec(1,8,9),intvec(2,3,7),intvec(1,3,9),intvec(4,6,8),intvec(1,4,8),intvec(3,7,9)); T[91]=list(intvec(1,3,4),intvec(2,3,7),intvec(1,6,9),intvec(1,4,6),intvec(1,3,9),intvec(3,7,9)); T[92]=list(intvec(1,6,8),intvec(1,8,9),intvec(2,3,7),intvec(1,3,9),intvec(1,3,6),intvec(3,7,9)); T[93]=list(intvec(1,5,6),intvec(1,2,9),intvec(1,6,9),intvec(1,2,5)); T[94]=list(intvec(1,2,7),intvec(1,7,9),intvec(1,2,5),intvec(5,6,9),intvec(1,5,9)); T[95]=list(intvec(1,2,7),intvec(1,7,9),intvec(1,6,9),intvec(1,2,6)); T[96]=list(intvec(1,7,9),intvec(1,8,9),intvec(2,3,7),intvec(5,6,8),intvec(1,5,8),intvec(3,4,7),intvec(1,5,7),intvec(4,5,7)); T[97]=list(intvec(1,4,5),intvec(1,7,9),intvec(2,3,7),intvec(5,6,8),intvec(1,4,7),intvec(1,5,9),intvec(5,8,9),intvec(3,4,7)); T[98]=list(intvec(1,7,9),intvec(1,8,9),intvec(2,3,7),intvec(5,6,8),intvec(1,4,7),intvec(1,4,8),intvec(4,5,8),intvec(3,4,7)); T[99]=list(intvec(1,2,3),intvec(1,2,9),intvec(1,3,5),intvec(5,6,9),intvec(1,5,9)); T[100]=list(intvec(1,4,5),intvec(1,2,9),intvec(1,2,4),intvec(5,6,9),intvec(1,5,9)); T[101]=list(intvec(1,3,4),intvec(1,4,5),intvec(2,3,9),intvec(1,3,9),intvec(5,6,9),intvec(1,5,9)); T[102]=list(intvec(1,8,9),intvec(1,2,9),intvec(5,6,8),intvec(1,2,4),intvec(1,4,8),intvec(4,5,8)); T[103]=list(intvec(1,2,3),intvec(1,8,9),intvec(1,2,9),intvec(5,6,8),intvec(4,5,8),intvec(1,3,8),intvec(3,4,8)); T[104]=list(intvec(1,3,4),intvec(1,8,9),intvec(5,6,8),intvec(2,3,9),intvec(1,3,9),intvec(1,4,8),intvec(4,5,8)); T[105]=list(intvec(1,2,3),intvec(1,8,9),intvec(1,2,9),intvec(1,3,8),intvec(3,6,8)); T[106]=list(intvec(1,2,3),intvec(1,2,9),intvec(1,6,9),intvec(1,3,6)); T[107]=list(intvec(1,6,8),intvec(1,8,9),intvec(1,2,9),intvec(1,2,6)); T[108]=list(intvec(1,6,8),intvec(1,8,9),intvec(2,3,9),intvec(1,3,9),intvec(1,3,6)); T[109]=list(intvec(1,2,7),intvec(1,7,9),intvec(1,8,9),intvec(3,6,8),intvec(2,3,8),intvec(1,2,8)); T[110]=list(intvec(1,7,9),intvec(1,8,9),intvec(2,3,7),intvec(1,3,7),intvec(1,3,8),intvec(3,6,8)); T[111]=list(intvec(1,2,3),intvec(1,2,9),intvec(5,6,8),intvec(1,3,5),intvec(1,5,9),intvec(5,8,9)); T[112]=list(intvec(1,4,5),intvec(1,2,9),intvec(5,6,8),intvec(1,2,4),intvec(1,5,9),intvec(5,8,9)); T[113]=list(intvec(1,3,4),intvec(1,4,5),intvec(5,6,8),intvec(2,3,9),intvec(1,3,9),intvec(1,5,9),intvec(5,8,9)); T[114]=list(intvec(1,2,9),intvec(1,6,9),intvec(1,4,6),intvec(1,2,4)); T[115]=list(intvec(1,3,4),intvec(1,6,9),intvec(1,4,6),intvec(2,3,9),intvec(1,3,9)); T[116]=list(intvec(1,8,9),intvec(2,3,7),intvec(5,6,8),intvec(1,5,8),intvec(1,3,5),intvec(1,3,9),intvec(3,7,9)); T[117]=list(intvec(1,7,9),intvec(1,8,9),intvec(2,3,7),intvec(5,6,8),intvec(1,5,8),intvec(1,5,7),intvec(3,5,7)); T[118]=list(intvec(1,7,9),intvec(1,8,9),intvec(2,3,7),intvec(1,3,7),intvec(5,6,8),intvec(3,5,8),intvec(1,3,8)); T[119]=list(intvec(1,7,9),intvec(2,3,7),intvec(1,3,7),intvec(5,6,8),intvec(1,3,5),intvec(1,5,9),intvec(5,8,9)); T[120]=list(intvec(1,7,9),intvec(1,8,9),intvec(5,6,8),intvec(1,5,8),intvec(2,4,7),intvec(1,5,7),intvec(4,5,7)); T[121]=list(intvec(1,5,6),intvec(1,7,9),intvec(1,6,9),intvec(2,4,7),intvec(1,5,7),intvec(4,5,7)); T[122]=list(intvec(1,6,8),intvec(1,7,9),intvec(1,8,9),intvec(2,4,7),intvec(4,5,7),intvec(5,6,7),intvec(1,6,7)); T[123]=list(intvec(1,8,9),intvec(1,2,9),intvec(5,6,8),intvec(1,5,8),intvec(1,2,5)); T[124]=list(intvec(1,4,5),intvec(1,7,9),intvec(2,3,7),intvec(1,4,7),intvec(5,6,9),intvec(1,5,9),intvec(3,4,7)); T[125]=list(intvec(1,7,9),intvec(2,3,7),intvec(1,3,7),intvec(1,3,5),intvec(5,6,9),intvec(1,5,9)); T[126]=list(intvec(1,3,4),intvec(1,4,5),intvec(2,3,7),intvec(1,3,9),intvec(5,6,9),intvec(1,5,9),intvec(3,7,9)); T[127]=list(intvec(1,6,8),intvec(1,7,9),intvec(1,8,9),intvec(2,3,7),intvec(1,6,7),intvec(3,6,7)); T[128]=list(intvec(1,7,9),intvec(2,3,7),intvec(1,3,7),intvec(1,6,9),intvec(1,3,6)); T[129]=list(intvec(1,2,7),intvec(1,7,9),intvec(1,8,9),intvec(1,2,8),intvec(2,6,8)); T[130]=list(intvec(1,6,8),intvec(1,7,9),intvec(1,8,9),intvec(1,6,7),intvec(2,6,7)); T[131]=list(intvec(1,5,6),intvec(2,3,7),intvec(1,6,9),intvec(1,3,5),intvec(1,3,9),intvec(3,7,9)); T[132]=list(intvec(1,5,6),intvec(1,7,9),intvec(2,3,7),intvec(1,6,9),intvec(1,5,7),intvec(3,5,7)); T[133]=list(intvec(1,8,9),intvec(1,2,9),intvec(1,2,4),intvec(4,6,8),intvec(1,4,8)); T[134]=list(intvec(1,5,6),intvec(1,7,9),intvec(2,3,7),intvec(1,6,9),intvec(3,4,7),intvec(1,5,7),intvec(4,5,7)); T[135]=list(intvec(1,7,9),intvec(2,3,7),intvec(1,6,9),intvec(1,4,6),intvec(1,4,7),intvec(3,4,7)); T[136]=list(intvec(1,5,6),intvec(1,6,9),intvec(1,3,5),intvec(2,3,9),intvec(1,3,9)); T[137]=list(intvec(1,4,5),intvec(1,7,9),intvec(2,4,7),intvec(1,4,7),intvec(5,6,9),intvec(1,5,9)); T[138]=list(intvec(1,7,9),intvec(1,6,9),intvec(1,4,6),intvec(2,4,7),intvec(1,4,7)); T[139]=list(intvec(1,2,7),intvec(1,7,9),intvec(5,6,8),intvec(1,2,5),intvec(1,5,9),intvec(5,8,9)); T[140]=list(intvec(1,8,9),intvec(5,6,8),intvec(1,5,8),intvec(1,3,5),intvec(2,3,9),intvec(1,3,9)); T[141]=list(intvec(1,4,5),intvec(1,7,9),intvec(5,6,8),intvec(2,4,7),intvec(1,4,7),intvec(1,5,9),intvec(5,8,9)); T[142]=list(intvec(1,7,9),intvec(1,8,9),intvec(5,6,8),intvec(2,4,7),intvec(1,4,7),intvec(1,4,8),intvec(4,5,8)); T[143]=list(intvec(1,3,4),intvec(1,4,5),intvec(2,3,7),intvec(5,6,8),intvec(1,3,9),intvec(1,5,9),intvec(5,8,9),intvec(3,7,9)); T[144]=list(intvec(1,3,4),intvec(1,8,9),intvec(2,3,7),intvec(5,6,8),intvec(1,3,9),intvec(1,4,8),intvec(4,5,8),intvec(3,7,9)); T[145]=list(intvec(1,7,9),intvec(1,8,9),intvec(2,3,7),intvec(1,3,7),intvec(5,6,8),intvec(4,5,8),intvec(1,3,8),intvec(3,4,8)); T[146]=list(intvec(1,2,7),intvec(1,7,9),intvec(1,8,9),intvec(5,6,8),intvec(1,2,8),intvec(2,5,8)); T[147]=list(intvec(1,7,9),intvec(1,8,9),intvec(2,4,7),intvec(1,4,7),intvec(4,6,8),intvec(1,4,8)); T[148]=list(intvec(1,6,8),intvec(1,7,9),intvec(1,8,9),intvec(2,4,7),intvec(1,6,7),intvec(4,6,7)); T[149]=list(intvec(1,3,4),intvec(1,8,9),intvec(2,3,9),intvec(1,3,9),intvec(4,6,8),intvec(1,4,8)); T[150]=list(intvec(1,2,7),intvec(1,7,9),intvec(1,8,9),intvec(4,6,8),intvec(1,2,8),intvec(2,4,8)); T[151]=list(intvec(1,2,7),intvec(1,7,9),intvec(1,8,9),intvec(5,6,8),intvec(4,5,8),intvec(3,4,8),intvec(2,3,8),intvec(1,2,8)); T[152]=list(intvec(1,7,9),intvec(1,8,9),intvec(2,3,7),intvec(1,4,7),intvec(4,6,8),intvec(1,4,8),intvec(3,4,7)); T[153]=list(intvec(1,6,8),intvec(1,7,9),intvec(1,8,9),intvec(2,3,7),intvec(3,4,7),intvec(1,6,7),intvec(4,6,7)); T[154]=list(intvec(1,6,8),intvec(1,7,9),intvec(1,8,9),intvec(2,3,7),intvec(3,4,7),intvec(4,5,7),intvec(5,6,7),intvec(1,6,7)); T[155]=list(intvec(1,7,9),intvec(1,8,9),intvec(2,3,7),intvec(1,3,7),intvec(4,6,8),intvec(1,3,8),intvec(3,4,8)); T[156]=list(intvec(1,2,7),intvec(1,7,9),intvec(1,8,9),intvec(4,6,8),intvec(3,4,8),intvec(2,3,8),intvec(1,2,8)); T[157]=list(intvec(1,2,3),intvec(1,8,9),intvec(1,2,9),intvec(4,6,8),intvec(1,3,8),intvec(3,4,8)); T[158]=list(intvec(1,6,8),intvec(1,7,9),intvec(1,8,9),intvec(2,3,7),intvec(3,5,7),intvec(5,6,7),intvec(1,6,7)); T[159]=list(intvec(1,2,7),intvec(1,7,9),intvec(1,8,9),intvec(5,6,8),intvec(3,5,8),intvec(2,3,8),intvec(1,2,8)); T[160]=list(intvec(1,2,3),intvec(1,8,9),intvec(1,2,9),intvec(5,6,8),intvec(3,5,8),intvec(1,3,8)); T[161]=list(intvec(1,2,7),intvec(1,7,9),intvec(1,8,9),intvec(5,6,8),intvec(4,5,8),intvec(1,2,8),intvec(2,4,8)); T[162]=list(intvec(2,3,7),intvec(4,6,8),intvec(3,4,7),intvec(4,7,9),intvec(4,8,9)); T[163]=list(intvec(2,3,7),intvec(4,6,8),intvec(3,4,7),intvec(7,8,9),intvec(4,7,8)); T[164]=list(intvec(1,3,5),intvec(2,3,9),intvec(1,3,9),intvec(5,6,9),intvec(1,5,9)); T[165]=list(intvec(1,6,9),intvec(2,3,9),intvec(1,3,9),intvec(1,3,6)); T[166]=list(intvec(1,2,9),intvec(5,6,8),intvec(1,2,5),intvec(1,5,9),intvec(5,8,9)); T[167]=list(intvec(5,6,8),intvec(1,3,5),intvec(2,3,9),intvec(1,3,9),intvec(1,5,9),intvec(5,8,9)); T[168]=list(intvec(2,4,7),intvec(4,6,8),intvec(4,7,9),intvec(4,8,9)); T[169]=list(intvec(2,4,7),intvec(4,6,8),intvec(7,8,9),intvec(4,7,8)); T[170]=list(intvec(1,7,9),intvec(1,6,9),intvec(2,4,7),intvec(1,6,7),intvec(4,6,7)); T[171]=list(intvec(2,4,7),intvec(4,6,7),intvec(7,8,9),intvec(6,7,8)); T[172]=list(intvec(1,7,9),intvec(2,3,7),intvec(5,6,9),intvec(1,5,9),intvec(3,4,7),intvec(1,5,7),intvec(4,5,7)); T[173]=list(intvec(1,7,9),intvec(2,3,7),intvec(1,6,9),intvec(3,4,7),intvec(4,5,7),intvec(5,6,7),intvec(1,6,7)); T[174]=list(intvec(1,7,9),intvec(5,6,8),intvec(1,5,9),intvec(5,8,9),intvec(2,5,7),intvec(1,5,7)); T[175]=list(intvec(5,6,8),intvec(2,5,7),intvec(7,8,9),intvec(5,7,8)); T[176]=list(intvec(1,8,9),intvec(2,3,7),intvec(5,6,8),intvec(1,3,9),intvec(3,7,9),intvec(3,5,8),intvec(1,3,8)); T[177]=list(intvec(2,3,7),intvec(5,6,8),intvec(1,3,5),intvec(1,3,9),intvec(1,5,9),intvec(5,8,9),intvec(3,7,9)); T[178]=list(intvec(1,8,9),intvec(1,2,9),intvec(5,6,8),intvec(1,2,8),intvec(2,5,8)); T[179]=list(intvec(1,8,9),intvec(1,2,9),intvec(4,6,8),intvec(3,4,8),intvec(2,3,8),intvec(1,2,8)); T[180]=list(intvec(4,6,8),intvec(3,4,8),intvec(2,3,8),intvec(7,8,9),intvec(2,7,8)); T[181]=list(intvec(1,2,9),intvec(1,6,9),intvec(1,2,6)); T[182]=list(intvec(1,8,9),intvec(1,2,9),intvec(1,2,8),intvec(2,6,8)); T[183]=list(intvec(2,3,7),intvec(1,6,9),intvec(1,3,9),intvec(1,3,6),intvec(3,7,9)); T[184]=list(intvec(2,3,7),intvec(3,7,9),intvec(4,6,9),intvec(3,4,9)); T[185]=list(intvec(1,8,9),intvec(5,6,8),intvec(2,3,9),intvec(1,3,9),intvec(3,5,8),intvec(1,3,8)); T[186]=list(intvec(2,3,9),intvec(4,6,9),intvec(3,4,9)); T[187]=list(intvec(2,3,7),intvec(1,3,5),intvec(1,3,9),intvec(5,6,9),intvec(1,5,9),intvec(3,7,9)); T[188]=list(intvec(2,3,7),intvec(5,6,9),intvec(3,7,9),intvec(3,4,9),intvec(4,5,9)); T[189]=list(intvec(1,8,9),intvec(2,3,7),intvec(5,6,8),intvec(1,3,9),intvec(4,5,8),intvec(3,7,9),intvec(1,3,8),intvec(3,4,8)); T[190]=list(intvec(2,3,7),intvec(5,6,8),intvec(4,5,8),intvec(3,4,8),intvec(7,8,9),intvec(3,7,8)); T[191]=list(intvec(1,8,9),intvec(1,2,9),intvec(5,6,8),intvec(4,5,8),intvec(1,2,8),intvec(2,4,8)); T[192]=list(intvec(5,6,8),intvec(4,5,8),intvec(4,8,9),intvec(2,4,9)); T[193]=list(intvec(2,3,9),intvec(5,6,9),intvec(3,4,9),intvec(4,5,9)); T[194]=list(intvec(1,2,9),intvec(1,2,5),intvec(5,6,9),intvec(1,5,9)); T[195]=list(intvec(5,6,9),intvec(4,5,9),intvec(2,4,9)); T[196]=list(intvec(5,6,8),intvec(4,5,8),intvec(2,4,8),intvec(7,8,9),intvec(2,7,8)); T[197]=list(intvec(1,7,9),intvec(2,3,7),intvec(5,6,9),intvec(1,5,9),intvec(1,5,7),intvec(3,5,7)); T[198]=list(intvec(1,8,9),intvec(2,3,7),intvec(1,3,9),intvec(3,7,9),intvec(1,3,8),intvec(3,6,8)); T[199]=list(intvec(1,8,9),intvec(2,3,9),intvec(1,3,9),intvec(4,6,8),intvec(1,3,8),intvec(3,4,8)); T[200]=list(intvec(2,3,7),intvec(3,4,7),intvec(4,5,7),intvec(5,6,7),intvec(7,8,9),intvec(6,7,8)); T[201]=list(intvec(1,8,9),intvec(2,3,9),intvec(1,3,9),intvec(1,3,8),intvec(3,6,8)); T[202]=list(intvec(1,7,9),intvec(1,6,9),intvec(2,4,7),intvec(4,5,7),intvec(5,6,7),intvec(1,6,7)); T[203]=list(intvec(2,4,7),intvec(4,5,7),intvec(5,6,7),intvec(7,8,9),intvec(6,7,8)); T[204]=list(intvec(1,7,9),intvec(2,4,7),intvec(5,6,9),intvec(1,5,9),intvec(1,5,7),intvec(4,5,7)); T[205]=list(intvec(2,3,7),intvec(5,6,8),intvec(4,5,8),intvec(3,7,9),intvec(4,8,9),intvec(3,4,9)); T[206]=list(intvec(1,7,9),intvec(2,3,7),intvec(1,6,9),intvec(3,4,7),intvec(1,6,7),intvec(4,6,7)); T[207]=list(intvec(2,3,7),intvec(3,4,7),intvec(4,7,9),intvec(4,6,9)); T[208]=list(intvec(1,7,9),intvec(2,3,7),intvec(1,6,9),intvec(3,5,7),intvec(5,6,7),intvec(1,6,7)); T[209]=list(intvec(1,8,9),intvec(1,2,9),intvec(3,6,8),intvec(2,3,8),intvec(1,2,8)); T[210]=list(intvec(2,4,7),intvec(4,7,9),intvec(4,6,9)); T[211]=list(intvec(3,6,8),intvec(2,3,8),intvec(7,8,9),intvec(2,7,8)); T[212]=list(intvec(1,7,9),intvec(2,3,7),intvec(5,6,8),intvec(1,5,9),intvec(5,8,9),intvec(3,4,7),intvec(1,5,7),intvec(4,5,7)); T[213]=list(intvec(2,3,7),intvec(5,6,8),intvec(3,4,7),intvec(4,5,7),intvec(7,8,9),intvec(5,7,8)); T[214]=list(intvec(2,3,7),intvec(5,6,8),intvec(4,5,8),intvec(3,4,7),intvec(4,7,9),intvec(4,8,9)); T[215]=list(intvec(2,3,7),intvec(5,6,8),intvec(4,5,8),intvec(3,4,7),intvec(7,8,9),intvec(4,7,8)); T[216]=list(intvec(1,7,9),intvec(5,6,9),intvec(1,5,9),intvec(2,5,7),intvec(1,5,7)); T[217]=list(intvec(1,7,9),intvec(1,6,9),intvec(2,5,7),intvec(5,6,7),intvec(1,6,7)); T[218]=list(intvec(1,8,9),intvec(2,3,7),intvec(1,3,9),intvec(4,6,8),intvec(3,7,9),intvec(1,3,8),intvec(3,4,8)); T[219]=list(intvec(2,3,7),intvec(4,6,8),intvec(3,4,8),intvec(7,8,9),intvec(3,7,8)); T[220]=list(intvec(2,6,8),intvec(7,8,9),intvec(2,7,8)); T[221]=list(intvec(2,4,7),intvec(5,6,9),intvec(4,7,9),intvec(4,5,9)); T[222]=list(intvec(1,8,9),intvec(1,2,9),intvec(5,6,8),intvec(4,5,8),intvec(3,4,8),intvec(2,3,8),intvec(1,2,8)); T[223]=list(intvec(5,6,8),intvec(4,5,8),intvec(3,4,8),intvec(2,3,8),intvec(7,8,9),intvec(2,7,8)); T[224]=list(intvec(4,6,9),intvec(2,4,9)); T[225]=list(intvec(5,6,8),intvec(5,8,9),intvec(4,5,9),intvec(2,4,9)); T[226]=list(intvec(1,8,9),intvec(1,2,9),intvec(5,6,8),intvec(3,5,8),intvec(2,3,8),intvec(1,2,8)); T[227]=list(intvec(1,7,9),intvec(2,3,7),intvec(5,6,8),intvec(1,5,9),intvec(5,8,9),intvec(1,5,7),intvec(3,5,7)); T[228]=list(intvec(2,3,7),intvec(3,4,7),intvec(4,6,7),intvec(7,8,9),intvec(6,7,8)); T[229]=list(intvec(1,8,9),intvec(1,2,9),intvec(4,6,8),intvec(1,2,8),intvec(2,4,8)); T[230]=list(intvec(4,6,8),intvec(4,8,9),intvec(2,4,9)); T[231]=list(intvec(1,7,9),intvec(5,6,8),intvec(2,4,7),intvec(1,5,9),intvec(5,8,9),intvec(1,5,7),intvec(4,5,7)); T[232]=list(intvec(5,6,8),intvec(2,4,7),intvec(5,8,9),intvec(4,7,9),intvec(4,5,9)); T[233]=list(intvec(2,5,7),intvec(5,6,7),intvec(7,8,9),intvec(6,7,8)); T[234]=list(intvec(5,6,8),intvec(2,4,7),intvec(4,5,8),intvec(4,7,9),intvec(4,8,9)); T[235]=list(intvec(5,6,8),intvec(2,4,7),intvec(4,5,8),intvec(7,8,9),intvec(4,7,8)); T[236]=list(intvec(5,6,8),intvec(2,3,9),intvec(5,8,9),intvec(3,4,9),intvec(4,5,9)); T[237]=list(intvec(4,6,8),intvec(2,4,8),intvec(7,8,9),intvec(2,7,8)); T[238]=list(intvec(2,3,7),intvec(4,6,8),intvec(3,7,9),intvec(4,8,9),intvec(3,4,9)); T[239]=list(intvec(2,3,7),intvec(5,6,8),intvec(5,8,9),intvec(3,4,7),intvec(4,7,9),intvec(4,5,9)); T[240]=list(intvec(2,3,9),intvec(4,6,8),intvec(4,8,9),intvec(3,4,9)); T[241]=list(intvec(2,3,7),intvec(5,6,8),intvec(3,5,7),intvec(7,8,9),intvec(5,7,8)); T[242]=list(intvec(1,7,9),intvec(1,6,9),intvec(1,6,7),intvec(2,6,7)); T[243]=list(intvec(5,6,8),intvec(2,5,8),intvec(7,8,9),intvec(2,7,8)); T[244]=list(intvec(5,6,8),intvec(3,5,8),intvec(2,3,8),intvec(7,8,9),intvec(2,7,8)); T[245]=list(intvec(2,3,7),intvec(5,6,8),intvec(3,5,8),intvec(7,8,9),intvec(3,7,8)); T[246]=list(intvec(1,8,9),intvec(5,6,8),intvec(2,3,9),intvec(1,3,9),intvec(4,5,8),intvec(1,3,8),intvec(3,4,8)); T[247]=list(intvec(5,6,8),intvec(2,3,9),intvec(4,5,8),intvec(4,8,9),intvec(3,4,9)); T[248]=list(intvec(2,3,7),intvec(5,6,8),intvec(5,8,9),intvec(3,7,9),intvec(3,4,9),intvec(4,5,9)); T[249]=list(intvec(1,7,9),intvec(2,3,7),intvec(1,6,9),intvec(1,6,7),intvec(3,6,7)); T[250]=list(intvec(2,3,7),intvec(3,6,7),intvec(7,8,9),intvec(6,7,8)); T[251]=list(intvec(2,3,7),intvec(5,6,9),intvec(3,4,7),intvec(4,7,9),intvec(4,5,9)); T[252]=list(intvec(2,6,7),intvec(7,8,9),intvec(6,7,8)); T[253]=list(intvec(2,3,7),intvec(3,5,7),intvec(5,6,7),intvec(7,8,9),intvec(6,7,8)); T[254]=list(intvec(2,3,7),intvec(3,6,8),intvec(7,8,9),intvec(3,7,8)); T[255]=list(intvec(5,6,8),intvec(2,4,7),intvec(4,5,7),intvec(7,8,9),intvec(5,7,8)); T[256]=list(intvec(5,6,8),intvec(2,5,8),intvec(2,8,9)); T[257]=list(intvec(2,3,7),intvec(3,5,7),intvec(5,6,7),intvec(6,7,9)); T[258]=list(intvec(2,3,7),intvec(5,6,9),intvec(3,4,7),intvec(4,5,7),intvec(5,7,9)); T[259]=list(intvec(2,3,7),intvec(3,4,7),intvec(4,6,7),intvec(6,7,9)); T[260]=list(intvec(5,6,8),intvec(4,5,8),intvec(2,4,8),intvec(2,8,9)); T[261]=list(intvec(2,3,7),intvec(5,6,9),intvec(3,7,9),intvec(3,5,9)); T[262]=list(intvec(2,3,7),intvec(3,7,9),intvec(3,6,8),intvec(3,8,9)); T[263]=list(intvec(5,6,8),intvec(2,3,9),intvec(4,5,8),intvec(3,4,8),intvec(3,8,9)); T[264]=list(intvec(5,6,8),intvec(2,3,9),intvec(5,8,9),intvec(3,5,9)); T[265]=list(intvec(5,6,8),intvec(2,4,7),intvec(5,8,9),intvec(4,5,7),intvec(5,7,9)); T[266]=list(intvec(5,6,8),intvec(5,8,9),intvec(2,5,7),intvec(5,7,9)); T[267]=list(intvec(2,3,9),intvec(4,6,8),intvec(3,4,8),intvec(3,8,9)); T[268]=list(intvec(2,3,7),intvec(3,4,7),intvec(4,5,7),intvec(5,6,7),intvec(6,7,9)); T[269]=list(intvec(2,6,9)); T[270]=list(intvec(2,3,7),intvec(5,6,8),intvec(5,8,9),intvec(3,5,7),intvec(5,7,9)); T[271]=list(intvec(2,4,7),intvec(4,5,7),intvec(5,6,7),intvec(6,7,9)); T[272]=list(intvec(2,3,7),intvec(3,6,7),intvec(6,7,9)); T[273]=list(intvec(2,3,9),intvec(3,6,8),intvec(3,8,9)); T[274]=list(intvec(2,3,9),intvec(5,6,9),intvec(3,5,9)); T[275]=list(intvec(5,6,8),intvec(5,8,9),intvec(2,5,9)); T[276]=list(intvec(2,3,9),intvec(3,6,9)); T[277]=list(intvec(4,6,8),intvec(3,4,8),intvec(2,3,8),intvec(2,8,9)); T[278]=list(intvec(2,6,7),intvec(6,7,9)); T[279]=list(intvec(2,3,7),intvec(5,6,8),intvec(3,7,9),intvec(3,5,8),intvec(3,8,9)); T[280]=list(intvec(5,6,8),intvec(4,5,8),intvec(3,4,8),intvec(2,3,8),intvec(2,8,9)); T[281]=list(intvec(5,6,8),intvec(2,3,9),intvec(3,5,8),intvec(3,8,9)); T[282]=list(intvec(2,3,7),intvec(5,6,8),intvec(4,5,8),intvec(3,7,9),intvec(3,4,8),intvec(3,8,9)); T[283]=list(intvec(2,6,8),intvec(2,8,9)); T[284]=list(intvec(2,3,7),intvec(5,6,8),intvec(5,8,9),intvec(3,7,9),intvec(3,5,9)); T[285]=list(intvec(5,6,9),intvec(2,5,9)); T[286]=list(intvec(2,3,7),intvec(4,6,8),intvec(3,7,9),intvec(3,4,8),intvec(3,8,9)); T[287]=list(intvec(2,5,7),intvec(5,6,7),intvec(6,7,9)); T[288]=list(intvec(2,3,7),intvec(3,7,9),intvec(3,6,9)); T[289]=list(intvec(3,6,8),intvec(2,3,8),intvec(2,8,9)); T[290]=list(intvec(2,3,7),intvec(5,6,9),intvec(3,5,7),intvec(5,7,9)); T[291]=list(intvec(2,3,7),intvec(5,6,8),intvec(5,8,9),intvec(3,4,7),intvec(4,5,7),intvec(5,7,9)); T[292]=list(intvec(2,4,7),intvec(5,6,9),intvec(4,5,7),intvec(5,7,9)); T[293]=list(intvec(5,6,8),intvec(3,5,8),intvec(2,3,8),intvec(2,8,9)); T[294]=list(intvec(4,6,8),intvec(2,4,8),intvec(2,8,9)); T[295]=list(intvec(2,4,7),intvec(4,6,7),intvec(6,7,9)); T[296]=list(intvec(5,6,9),intvec(2,5,7),intvec(5,7,9)); } return(T[n]); } static proc extremeRaysDatabase (int n,string polygon,string art) "USAGE: extremeRaysDatabase(n,polygon,art); n int, polygon,art string ASSUME: polygon is one of the following strings discribing the type of curve to be considered: - 'cubic' : describing a cubic - '2x2' : describing a curve of type (2,2) - '4x2' : describing a curve of type (4,2) art is one of the following strings: - 'discriminant' : refering to the discriminant of the curve - 'secondary' : refering to the secondary polytope of the curve RETURN: intmat, the rows of the matrix are the extreme rays of the cone dual to the nth vertex of the polytope NOTE: the matrices have been produced by fan with the help of polymake" { list TV; if ((polygon=="cubic") and (art=="discriminant")) { intmat M[14][10]=2,-1,-1,-1,-1,2,2,0,0,-2,7,-5,-3,-1,1,5,-1,5,-3,-5,2,-2,0,2,-1,0,-1,2,-1,-1,7,1,-1,-3,-5,-1,5,-3,5,-5,9,-6,-1,4,-6,4,-1,-1,4,-6,9,-6,4,-1,-6,-1,4,4,-1,-6,7,-5,5,5,-5,-3,-3,-1,-1,1,2,-1,2,0,-2,-1,0,-1,2,-1,3,9,5,1,-3,-23,-1,5,1,3,3,9,-23,5,3,5,1,1,-1,-3,3,3,1,-1,-3,5,1,-23,5,9,3,3,5,-23,9,1,5,-1,1,-3,3,-3,1,5,9,-1,-23,1,5,3,3,-3,-1,1,3,1,5,5,-23,9 ; TV[1]=M; kill M; intmat M[12][10]=3,9,-23,5,3,5,1,1,-1,-3,7,1,-1,-3,-5,-1,5,-3,5,-5,9,-6,4,-1,-6,-1,4,4,-1,-6,9,-6,-1,4,-6,4,-1,-1,4,-6,2,-1,-1,-1,-1,2,2,0,0,-2,2,-2,0,2,-1,0,-1,2,-1,-1,7,-5,5,5,-5,-3,-3,-1,-1,1,3,-3,-1,1,3,1,5,5,-23,9,3,9,5,1,-3,-23,-1,5,1,3,2,-1,2,0,-2,-1,0,-1,2,-1,3,3,1,-1,-3,5,1,-23,5,9,1,-1,1,3,-5,-1,3,-1,1,-1 ; TV[2]=M; kill M; intmat M[12][10]=3,9,5,1,-3,-23,-1,5,1,3,7,1,-1,-3,-5,-1,5,-3,5,-5,2,-1,2,0,-2,-1,0,-1,2,-1,9,-6,4,-1,-6,-1,4,4,-1,-6,9,-6,-1,4,-6,4,-1,-1,4,-6,2,-2,0,2,-1,0,-1,2,-1,-1,7,-5,-3,-1,1,5,-1,5,-3,-5,3,-3,1,5,9,-1,-23,1,5,3,3,3,5,-23,9,1,5,-1,1,-3,3,9,-23,5,3,5,1,1,-1,-3,2,-1,-1,-1,-1,2,2,0,0,-2,1,-1,-1,-1,-1,1,1,3,3,-5 ; TV[3]=M; kill M; intmat M[12][10]=3,3,1,-1,-3,5,1,-23,5,9,7,-5,5,5,-5,-3,-3,-1,-1,1,9,-6,4,-1,-6,-1,4,4,-1,-6,9,-6,-1,4,-6,4,-1,-1,4,-6,2,-1,2,0,-2,-1,0,-1,2,-1,2,-1,-1,-1,-1,2,2,0,0,-2,7,-5,-3,-1,1,5,-1,5,-3,-5,3,3,5,-23,9,1,5,-1,1,-3,2,-2,0,2,-1,0,-1,2,-1,-1,3,-3,1,5,9,-1,-23,1,5,3,3,-3,-1,1,3,1,5,5,-23,9,1,-5,3,1,-1,3,-1,1,-1,-1 ; TV[4]=M; kill M; intmat M[9][10]=7,1,-1,-3,-5,-1,5,-3,5,-5,9,-6,4,-1,-6,-1,4,4,-1,-6,2,-1,-1,-1,-1,2,2,0,0,-2,3,-3,-1,1,3,1,5,5,-23,9,3,3,1,-1,-3,5,1,-23,5,9,2,-1,2,0,-2,-1,0,-1,2,-1,3,9,5,1,-3,-23,-1,5,1,3,1,-1,1,3,-5,-1,3,-1,1,-1,3,3,5,-23,9,1,5,-1,1,-3 ; TV[5]=M; kill M; intmat M[9][10]=3,9,-23,5,3,5,1,1,-1,-3,9,-6,-1,4,-6,4,-1,-1,4,-6,2,-2,0,2,-1,0,-1,2,-1,-1,7,-5,5,5,-5,-3,-3,-1,-1,1,3,9,5,1,-3,-23,-1,5,1,3,2,-1,2,0,-2,-1,0,-1,2,-1,3,3,1,-1,-3,5,1,-23,5,9,1,-1,1,3,-5,-1,3,-1,1,-1,3,-3,1,5,9,-1,-23,1,5,3 ; TV[6]=M; kill M; intmat M[10][10]=3,9,5,1,-3,-23,-1,5,1,3,2,-1,2,0,-2,-1,0,-1,2,-1,9,-6,4,-1,-6,-1,4,4,-1,-6,7,1,-1,-3,-5,-1,5,-3,5,-5,9,-6,-1,4,-6,4,-1,-1,4,-6,3,9,-23,5,3,5,1,1,-1,-3,2,-1,-1,-1,-1,2,2,0,0,-2,2,-2,0,2,-1,0,-1,2,-1,-1,1,-1,1,3,-5,-1,3,-1,1,-1,1,-1,-1,-1,-1,1,1,3,3,-5 ; TV[7]=M; kill M; intmat M[9][10]=7,1,-1,-3,-5,-1,5,-3,5,-5,9,-6,-1,4,-6,4,-1,-1,4,-6,2,-1,2,0,-2,-1,0,-1,2,-1,3,-3,1,5,9,-1,-23,1,5,3,3,3,5,-23,9,1,5,-1,1,-3,2,-1,-1,-1,-1,2,2,0,0,-2,3,9,-23,5,3,5,1,1,-1,-3,1,-1,-1,-1,-1,1,1,3,3,-5,3,3,1,-1,-3,5,1,-23,5,9 ; TV[8]=M; kill M; intmat M[9][10]=3,9,5,1,-3,-23,-1,5,1,3,9,-6,4,-1,-6,-1,4,4,-1,-6,2,-2,0,2,-1,0,-1,2,-1,-1,7,-5,-3,-1,1,5,-1,5,-3,-5,3,9,-23,5,3,5,1,1,-1,-3,3,3,5,-23,9,1,5,-1,1,-3,2,-1,-1,-1,-1,2,2,0,0,-2,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,-1,1,3,1,5,5,-23,9 ; TV[9]=M; kill M; intmat M[9][10]=7,-5,5,5,-5,-3,-3,-1,-1,1,9,-6,4,-1,-6,-1,4,4,-1,-6,2,-1,2,0,-2,-1,0,-1,2,-1,3,3,5,-23,9,1,5,-1,1,-3,3,-3,1,5,9,-1,-23,1,5,3,3,-3,-1,1,3,1,5,5,-23,9,2,-2,0,2,-1,0,-1,2,-1,-1,1,-5,3,1,-1,3,-1,1,-1,-1,3,9,5,1,-3,-23,-1,5,1,3 ; TV[10]=M; kill M; intmat M[10][10]=3,3,1,-1,-3,5,1,-23,5,9,2,-1,2,0,-2,-1,0,-1,2,-1,9,-6,-1,4,-6,4,-1,-1,4,-6,7,-5,5,5,-5,-3,-3,-1,-1,1,9,-6,4,-1,-6,-1,4,4,-1,-6,3,-3,-1,1,3,1,5,5,-23,9,2,-2,0,2,-1,0,-1,2,-1,-1,2,-1,-1,-1,-1,2,2,0,0,-2,1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,1,3,-5,-1,3,-1,1,-1 ; TV[11]=M; kill M; intmat M[10][10]=2,-2,0,2,-1,0,-1,2,-1,-1,9,-6,4,-1,-6,-1,4,4,-1,-6,9,-6,-1,4,-6,4,-1,-1,4,-6,2,-1,2,0,-2,-1,0,-1,2,-1,7,-5,-3,-1,1,5,-1,5,-3,-5,2,-1,-1,-1,-1,2,2,0,0,-2,3,3,5,-23,9,1,5,-1,1,-3,3,-3,1,5,9,-1,-23,1,5,3,1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,-1,-1,-1,1,1,3,3,-5 ; TV[12]=M; kill M; intmat M[9][10]=3,3,1,-1,-3,5,1,-23,5,9,9,-6,-1,4,-6,4,-1,-1,4,-6,2,-1,-1,-1,-1,2,2,0,0,-2,7,-5,-3,-1,1,5,-1,5,-3,-5,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,2,-2,0,2,-1,0,-1,2,-1,-1,3,9,-23,5,3,5,1,1,-1,-3,1,-5,3,1,-1,3,-1,1,-1,-1 ; TV[13]=M; kill M; intmat M[8][10]=3,9,-23,5,3,5,1,1,-1,-3,7,1,-1,-3,-5,-1,5,-3,5,-5,3,-3,1,5,9,-1,-23,1,5,3,2,-1,2,0,-2,-1,0,-1,2,-1,3,3,5,-23,9,1,5,-1,1,-3,1,-1,-1,-1,-1,1,1,3,3,-5,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3 ; TV[14]=M; kill M; intmat M[8][10]=3,9,5,1,-3,-23,-1,5,1,3,7,1,-1,-3,-5,-1,5,-3,5,-5,3,-3,-1,1,3,1,5,5,-23,9,2,-1,-1,-1,-1,2,2,0,0,-2,3,3,1,-1,-3,5,1,-23,5,9,1,-1,1,3,-5,-1,3,-1,1,-1,3,3,5,-23,9,1,5,-1,1,-3,3,9,-23,5,3,5,1,1,-1,-3 ; TV[15]=M; kill M; intmat M[8][10]=2,-1,-1,-1,-1,2,2,0,0,-2,7,1,-1,-3,-5,-1,5,-3,5,-5,9,-6,4,-1,-6,-1,4,4,-1,-6,3,9,5,1,-3,-23,-1,5,1,3,2,-1,2,0,-2,-1,0,-1,2,-1,1,-1,1,3,-5,-1,3,-1,1,-1,3,3,5,-23,9,1,5,-1,1,-3,1,-1,-1,-1,-1,1,1,3,3,-5 ; TV[16]=M; kill M; intmat M[8][10]=3,3,1,-1,-3,5,1,-23,5,9,7,-5,5,5,-5,-3,-3,-1,-1,1,3,9,-23,5,3,5,1,1,-1,-3,2,-2,0,2,-1,0,-1,2,-1,-1,3,9,5,1,-3,-23,-1,5,1,3,1,-1,1,3,-5,-1,3,-1,1,-1,3,-3,1,5,9,-1,-23,1,5,3,3,-3,-1,1,3,1,5,5,-23,9 ; TV[17]=M; kill M; intmat M[8][10]=2,-1,2,0,-2,-1,0,-1,2,-1,9,-6,-1,4,-6,4,-1,-1,4,-6,3,9,5,1,-3,-23,-1,5,1,3,3,9,-23,5,3,5,1,1,-1,-3,2,-2,0,2,-1,0,-1,2,-1,-1,1,-1,1,3,-5,-1,3,-1,1,-1,3,-3,1,5,9,-1,-23,1,5,3,1,-1,-1,-1,-1,1,1,3,3,-5 ; TV[18]=M; kill M; intmat M[8][10]=2,-1,2,0,-2,-1,0,-1,2,-1,7,1,-1,-3,-5,-1,5,-3,5,-5,9,-6,-1,4,-6,4,-1,-1,4,-6,3,9,-23,5,3,5,1,1,-1,-3,2,-1,-1,-1,-1,2,2,0,0,-2,1,-1,1,3,-5,-1,3,-1,1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,3,3,1,-1,-3,5,1,-23,5,9 ; TV[19]=M; kill M; intmat M[8][10]=2,-1,-1,-1,-1,2,2,0,0,-2,9,-6,4,-1,-6,-1,4,4,-1,-6,3,9,-23,5,3,5,1,1,-1,-3,3,9,5,1,-3,-23,-1,5,1,3,2,-2,0,2,-1,0,-1,2,-1,-1,1,-1,1,3,-5,-1,3,-1,1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,-1,1,3,1,5,5,-23,9 ; TV[20]=M; kill M; intmat M[8][10]=3,3,5,-23,9,1,5,-1,1,-3,7,-5,-3,-1,1,5,-1,5,-3,-5,3,9,5,1,-3,-23,-1,5,1,3,2,-2,0,2,-1,0,-1,2,-1,-1,3,9,-23,5,3,5,1,1,-1,-3,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3 ; TV[21]=M; kill M; intmat M[8][10]=3,-3,-1,1,3,1,5,5,-23,9,7,-5,5,5,-5,-3,-3,-1,-1,1,3,3,5,-23,9,1,5,-1,1,-3,2,-1,2,0,-2,-1,0,-1,2,-1,3,-3,1,5,9,-1,-23,1,5,3,1,-5,3,1,-1,3,-1,1,-1,-1,3,9,5,1,-3,-23,-1,5,1,3,3,3,1,-1,-3,5,1,-23,5,9 ; TV[22]=M; kill M; intmat M[8][10]=2,-1,2,0,-2,-1,0,-1,2,-1,7,-5,5,5,-5,-3,-3,-1,-1,1,9,-6,4,-1,-6,-1,4,4,-1,-6,3,-3,-1,1,3,1,5,5,-23,9,2,-2,0,2,-1,0,-1,2,-1,-1,1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,1,3,-5,-1,3,-1,1,-1,3,9,5,1,-3,-23,-1,5,1,3 ; TV[23]=M; kill M; intmat M[8][10]=2,-2,0,2,-1,0,-1,2,-1,-1,9,-6,4,-1,-6,-1,4,4,-1,-6,3,-3,1,5,9,-1,-23,1,5,3,2,-1,2,0,-2,-1,0,-1,2,-1,3,3,5,-23,9,1,5,-1,1,-3,1,-5,3,1,-1,3,-1,1,-1,-1,3,9,5,1,-3,-23,-1,5,1,3,1,-1,-1,-1,-1,1,1,3,3,-5 ; TV[24]=M; kill M; intmat M[8][10]=2,-1,2,0,-2,-1,0,-1,2,-1,9,-6,4,-1,-6,-1,4,4,-1,-6,3,3,1,-1,-3,5,1,-23,5,9,3,-3,-1,1,3,1,5,5,-23,9,2,-1,-1,-1,-1,2,2,0,0,-2,1,-1,1,3,-5,-1,3,-1,1,-1,1,-5,3,1,-1,3,-1,1,-1,-1,3,3,5,-23,9,1,5,-1,1,-3 ; TV[25]=M; kill M; intmat M[8][10]=2,-2,0,2,-1,0,-1,2,-1,-1,7,-5,5,5,-5,-3,-3,-1,-1,1,9,-6,-1,4,-6,4,-1,-1,4,-6,2,-1,2,0,-2,-1,0,-1,2,-1,3,3,1,-1,-3,5,1,-23,5,9,1,-1,1,3,-5,-1,3,-1,1,-1,1,-5,3,1,-1,3,-1,1,-1,-1,3,-3,1,5,9,-1,-23,1,5,3 ; TV[26]=M; kill M; intmat M[8][10]=2,-1,2,0,-2,-1,0,-1,2,-1,9,-6,4,-1,-6,-1,4,4,-1,-6,9,-6,-1,4,-6,4,-1,-1,4,-6,2,-2,0,2,-1,0,-1,2,-1,-1,2,-1,-1,-1,-1,2,2,0,0,-2,1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,1,3,-5,-1,3,-1,1,-1,1,-1,-1,-1,-1,1,1,3,3,-5 ; TV[27]=M; kill M; intmat M[8][10]=2,-1,-1,-1,-1,2,2,0,0,-2,9,-6,-1,4,-6,4,-1,-1,4,-6,3,3,5,-23,9,1,5,-1,1,-3,2,-1,2,0,-2,-1,0,-1,2,-1,3,-3,1,5,9,-1,-23,1,5,3,1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,3,3,1,-1,-3,5,1,-23,5,9 ; TV[28]=M; kill M; intmat M[8][10]=2,-2,0,2,-1,0,-1,2,-1,-1,9,-6,4,-1,-6,-1,4,4,-1,-6,7,-5,-3,-1,1,5,-1,5,-3,-5,3,3,5,-23,9,1,5,-1,1,-3,2,-1,-1,-1,-1,2,2,0,0,-2,1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,-1,1,3,1,5,5,-23,9 ; TV[29]=M; kill M; intmat M[8][10]=2,-2,0,2,-1,0,-1,2,-1,-1,9,-6,-1,4,-6,4,-1,-1,4,-6,3,-3,-1,1,3,1,5,5,-23,9,3,3,1,-1,-3,5,1,-23,5,9,2,-1,-1,-1,-1,2,2,0,0,-2,3,9,-23,5,3,5,1,1,-1,-3,1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,1,3,-5,-1,3,-1,1,-1 ; TV[30]=M; kill M; intmat M[8][10]=2,-1,-1,-1,-1,2,2,0,0,-2,9,-6,-1,4,-6,4,-1,-1,4,-6,7,-5,-3,-1,1,5,-1,5,-3,-5,2,-2,0,2,-1,0,-1,2,-1,-1,3,-3,1,5,9,-1,-23,1,5,3,3,9,-23,5,3,5,1,1,-1,-3,1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,-1,-1,-1,1,1,3,3,-5 ; TV[31]=M; kill M; intmat M[8][10]=3,-3,1,5,9,-1,-23,1,5,3,7,-5,-3,-1,1,5,-1,5,-3,-5,3,3,1,-1,-3,5,1,-23,5,9,2,-1,-1,-1,-1,2,2,0,0,-2,3,-3,-1,1,3,1,5,5,-23,9,1,-5,3,1,-1,3,-1,1,-1,-1,3,9,-23,5,3,5,1,1,-1,-3,3,3,5,-23,9,1,5,-1,1,-3 ; TV[32]=M; kill M; intmat M[7][10]=1,-1,-1,-1,-1,1,1,3,3,-5,1,-1,1,3,-5,-1,3,-1,1,-1,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3,3,9,-23,5,3,5,1,1,-1,-3,7,1,-1,-3,-5,-1,5,-3,5,-5,2,-1,2,0,-2,-1,0,-1,2,-1 ; TV[33]=M; kill M; intmat M[7][10]=1,-1,1,3,-5,-1,3,-1,1,-1,3,3,5,-23,9,1,5,-1,1,-3,1,-1,-1,-1,-1,1,1,3,3,-5,3,9,-23,5,3,5,1,1,-1,-3,3,9,5,1,-3,-23,-1,5,1,3,7,1,-1,-3,-5,-1,5,-3,5,-5,2,-1,-1,-1,-1,2,2,0,0,-2 ; TV[34]=M; kill M; intmat M[7][10]=1,-1,1,3,-5,-1,3,-1,1,-1,3,3,5,-23,9,1,5,-1,1,-3,1,-1,-1,-1,-1,1,1,3,3,-5,3,3,1,-1,-3,5,1,-23,5,9,2,-1,-1,-1,-1,2,2,0,0,-2,2,-1,2,0,-2,-1,0,-1,2,-1,7,1,-1,-3,-5,-1,5,-3,5,-5 ; TV[35]=M; kill M; intmat M[7][10]=1,-1,1,3,-5,-1,3,-1,1,-1,3,3,5,-23,9,1,5,-1,1,-3,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,-1,1,3,1,5,5,-23,9,9,-6,4,-1,-6,-1,4,4,-1,-6,3,9,5,1,-3,-23,-1,5,1,3,2,-1,-1,-1,-1,2,2,0,0,-2 ; TV[36]=M; kill M; intmat M[7][10]=1,-1,1,3,-5,-1,3,-1,1,-1,3,-3,1,5,9,-1,-23,1,5,3,1,-1,-1,-1,-1,1,1,3,3,-5,3,3,1,-1,-3,5,1,-23,5,9,9,-6,-1,4,-6,4,-1,-1,4,-6,3,9,-23,5,3,5,1,1,-1,-3,2,-1,2,0,-2,-1,0,-1,2,-1 ; TV[37]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,3,9,5,1,-3,-23,-1,5,1,3,1,-1,1,3,-5,-1,3,-1,1,-1,3,3,1,-1,-3,5,1,-23,5,9,7,-5,5,5,-5,-3,-3,-1,-1,1,3,-3,-1,1,3,1,5,5,-23,9,2,-1,2,0,-2,-1,0,-1,2,-1 ; TV[38]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,1,3,-5,-1,3,-1,1,-1,3,3,5,-23,9,1,5,-1,1,-3,3,9,5,1,-3,-23,-1,5,1,3,9,-6,4,-1,-6,-1,4,4,-1,-6,3,-3,-1,1,3,1,5,5,-23,9,2,-1,2,0,-2,-1,0,-1,2,-1 ; TV[39]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,1,3,-5,-1,3,-1,1,-1,3,-3,1,5,9,-1,-23,1,5,3,3,9,5,1,-3,-23,-1,5,1,3,2,-2,0,2,-1,0,-1,2,-1,-1,2,-1,2,0,-2,-1,0,-1,2,-1,7,-5,5,5,-5,-3,-3,-1,-1,1 ; TV[40]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,1,3,-5,-1,3,-1,1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,3,9,5,1,-3,-23,-1,5,1,3,2,-2,0,2,-1,0,-1,2,-1,-1,9,-6,4,-1,-6,-1,4,4,-1,-6,2,-1,2,0,-2,-1,0,-1,2,-1 ; TV[41]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,3,9,5,1,-3,-23,-1,5,1,3,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,-1,1,3,1,5,5,-23,9,3,3,5,-23,9,1,5,-1,1,-3,9,-6,4,-1,-6,-1,4,4,-1,-6,2,-2,0,2,-1,0,-1,2,-1,-1 ; TV[42]=M; kill M; intmat M[7][10]=1,-1,1,3,-5,-1,3,-1,1,-1,1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,3,3,5,-23,9,1,5,-1,1,-3,2,-1,-1,-1,-1,2,2,0,0,-2,9,-6,4,-1,-6,-1,4,4,-1,-6,2,-1,2,0,-2,-1,0,-1,2,-1 ; TV[43]=M; kill M; intmat M[7][10]=1,-1,1,3,-5,-1,3,-1,1,-1,3,-3,1,5,9,-1,-23,1,5,3,1,-5,3,1,-1,3,-1,1,-1,-1,3,-3,-1,1,3,1,5,5,-23,9,3,3,1,-1,-3,5,1,-23,5,9,7,-5,5,5,-5,-3,-3,-1,-1,1,2,-2,0,2,-1,0,-1,2,-1,-1 ; TV[44]=M; kill M; intmat M[7][10]=1,-1,1,3,-5,-1,3,-1,1,-1,1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,1,5,9,-1,-23,1,5,3,9,-6,-1,4,-6,4,-1,-1,4,-6,2,-2,0,2,-1,0,-1,2,-1,-1,2,-1,2,0,-2,-1,0,-1,2,-1 ; TV[45]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,1,3,-5,-1,3,-1,1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,3,3,1,-1,-3,5,1,-23,5,9,9,-6,-1,4,-6,4,-1,-1,4,-6,2,-1,-1,-1,-1,2,2,0,0,-2,2,-1,2,0,-2,-1,0,-1,2,-1 ; TV[46]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,1,3,-5,-1,3,-1,1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,-1,1,3,1,5,5,-23,9,2,-1,-1,-1,-1,2,2,0,0,-2,2,-2,0,2,-1,0,-1,2,-1,-1,9,-6,4,-1,-6,-1,4,4,-1,-6 ; TV[47]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,7,-5,-3,-1,1,5,-1,5,-3,-5,3,3,5,-23,9,1,5,-1,1,-3,2,-2,0,2,-1,0,-1,2,-1,-1 ; TV[48]=M; kill M; intmat M[7][10]=1,-1,1,3,-5,-1,3,-1,1,-1,1,-5,3,1,-1,3,-1,1,-1,-1,3,9,-23,5,3,5,1,1,-1,-3,3,-3,1,5,9,-1,-23,1,5,3,9,-6,-1,4,-6,4,-1,-1,4,-6,3,3,1,-1,-3,5,1,-23,5,9,2,-2,0,2,-1,0,-1,2,-1,-1 ; TV[49]=M; kill M; intmat M[7][10]=3,9,-23,5,3,5,1,1,-1,-3,1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,1,-1,1,3,-5,-1,3,-1,1,-1,2,-1,-1,-1,-1,2,2,0,0,-2,2,-2,0,2,-1,0,-1,2,-1,-1,9,-6,-1,4,-6,4,-1,-1,4,-6 ; TV[50]=M; kill M; intmat M[7][10]=3,9,-23,5,3,5,1,1,-1,-3,1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,3,3,1,-1,-3,5,1,-23,5,9,3,-3,1,5,9,-1,-23,1,5,3,9,-6,-1,4,-6,4,-1,-1,4,-6,2,-1,-1,-1,-1,2,2,0,0,-2 ; TV[51]=M; kill M; intmat M[7][10]=3,9,-23,5,3,5,1,1,-1,-3,1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,-1,1,3,1,5,5,-23,9,7,-5,-3,-1,1,5,-1,5,-3,-5,2,-1,-1,-1,-1,2,2,0,0,-2,2,-2,0,2,-1,0,-1,2,-1,-1 ; TV[52]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,3,9,-23,5,3,5,1,1,-1,-3,3,3,5,-23,9,1,5,-1,1,-3,1,-1,-1,-1,-1,1,1,3,3,-5,7,-5,-3,-1,1,5,-1,5,-3,-5,3,-3,1,5,9,-1,-23,1,5,3,2,-1,-1,-1,-1,2,2,0,0,-2 ; TV[53]=M; kill M; intmat M[7][10]=1,-1,-1,-1,-1,1,1,3,3,-5,3,3,5,-23,9,1,5,-1,1,-3,1,-1,1,3,-5,-1,3,-1,1,-1,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3,2,-1,2,0,-2,-1,0,-1,2,-1,7,1,-1,-3,-5,-1,5,-3,5,-5 ; TV[54]=M; kill M; intmat M[7][10]=1,-1,-1,-1,-1,1,1,3,3,-5,1,-1,1,3,-5,-1,3,-1,1,-1,3,3,1,-1,-3,5,1,-23,5,9,3,-3,1,5,9,-1,-23,1,5,3,3,9,5,1,-3,-23,-1,5,1,3,2,-1,2,0,-2,-1,0,-1,2,-1,3,9,-23,5,3,5,1,1,-1,-3 ; TV[55]=M; kill M; intmat M[7][10]=1,-1,1,3,-5,-1,3,-1,1,-1,3,3,5,-23,9,1,5,-1,1,-3,1,-1,-1,-1,-1,1,1,3,3,-5,3,3,1,-1,-3,5,1,-23,5,9,3,9,-23,5,3,5,1,1,-1,-3,2,-1,-1,-1,-1,2,2,0,0,-2,7,1,-1,-3,-5,-1,5,-3,5,-5 ; TV[56]=M; kill M; intmat M[7][10]=1,-1,1,3,-5,-1,3,-1,1,-1,3,3,5,-23,9,1,5,-1,1,-3,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,-1,1,3,1,5,5,-23,9,3,9,-23,5,3,5,1,1,-1,-3,2,-1,-1,-1,-1,2,2,0,0,-2,3,9,5,1,-3,-23,-1,5,1,3 ; TV[57]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,1,3,-5,-1,3,-1,1,-1,3,9,5,1,-3,-23,-1,5,1,3,3,3,5,-23,9,1,5,-1,1,-3,3,3,1,-1,-3,5,1,-23,5,9,2,-1,2,0,-2,-1,0,-1,2,-1,3,-3,-1,1,3,1,5,5,-23,9 ; TV[58]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,1,3,-5,-1,3,-1,1,-1,3,9,5,1,-3,-23,-1,5,1,3,3,-3,1,5,9,-1,-23,1,5,3,3,3,1,-1,-3,5,1,-23,5,9,2,-1,2,0,-2,-1,0,-1,2,-1,7,-5,5,5,-5,-3,-3,-1,-1,1 ; TV[59]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,1,3,-5,-1,3,-1,1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,3,3,5,-23,9,1,5,-1,1,-3,3,9,5,1,-3,-23,-1,5,1,3,2,-1,2,0,-2,-1,0,-1,2,-1,9,-6,4,-1,-6,-1,4,4,-1,-6 ; TV[60]=M; kill M; intmat M[7][10]=1,-1,1,3,-5,-1,3,-1,1,-1,1,-5,3,1,-1,3,-1,1,-1,-1,3,-3,1,5,9,-1,-23,1,5,3,3,-3,-1,1,3,1,5,5,-23,9,3,9,5,1,-3,-23,-1,5,1,3,2,-2,0,2,-1,0,-1,2,-1,-1,7,-5,5,5,-5,-3,-3,-1,-1,1 ; TV[61]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,1,3,-5,-1,3,-1,1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,1,5,9,-1,-23,1,5,3,3,9,5,1,-3,-23,-1,5,1,3,2,-2,0,2,-1,0,-1,2,-1,-1,2,-1,2,0,-2,-1,0,-1,2,-1 ; TV[62]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,1,3,-5,-1,3,-1,1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,-1,1,3,1,5,5,-23,9,3,9,5,1,-3,-23,-1,5,1,3,2,-2,0,2,-1,0,-1,2,-1,-1,9,-6,4,-1,-6,-1,4,4,-1,-6 ; TV[63]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,3,9,5,1,-3,-23,-1,5,1,3,2,-2,0,2,-1,0,-1,2,-1,-1,3,3,5,-23,9,1,5,-1,1,-3 ; TV[64]=M; kill M; intmat M[7][10]=1,-1,1,3,-5,-1,3,-1,1,-1,1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,3,3,1,-1,-3,5,1,-23,5,9,3,3,5,-23,9,1,5,-1,1,-3,2,-1,-1,-1,-1,2,2,0,0,-2,2,-1,2,0,-2,-1,0,-1,2,-1 ; TV[65]=M; kill M; intmat M[7][10]=1,-1,1,3,-5,-1,3,-1,1,-1,1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,-1,1,3,1,5,5,-23,9,3,3,5,-23,9,1,5,-1,1,-3,2,-1,-1,-1,-1,2,2,0,0,-2,9,-6,4,-1,-6,-1,4,4,-1,-6 ; TV[66]=M; kill M; intmat M[7][10]=1,-1,1,3,-5,-1,3,-1,1,-1,1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,3,3,1,-1,-3,5,1,-23,5,9,3,-3,1,5,9,-1,-23,1,5,3,2,-1,2,0,-2,-1,0,-1,2,-1,9,-6,-1,4,-6,4,-1,-1,4,-6 ; TV[67]=M; kill M; intmat M[7][10]=1,-1,1,3,-5,-1,3,-1,1,-1,1,-5,3,1,-1,3,-1,1,-1,-1,3,-3,1,5,9,-1,-23,1,5,3,3,9,-23,5,3,5,1,1,-1,-3,3,-3,-1,1,3,1,5,5,-23,9,2,-2,0,2,-1,0,-1,2,-1,-1,3,3,1,-1,-3,5,1,-23,5,9 ; TV[68]=M; kill M; intmat M[7][10]=1,-1,1,3,-5,-1,3,-1,1,-1,1,-5,3,1,-1,3,-1,1,-1,-1,3,9,-23,5,3,5,1,1,-1,-3,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,1,5,9,-1,-23,1,5,3,2,-2,0,2,-1,0,-1,2,-1,-1,9,-6,-1,4,-6,4,-1,-1,4,-6 ; TV[69]=M; kill M; intmat M[7][10]=3,9,-23,5,3,5,1,1,-1,-3,1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,3,3,1,-1,-3,5,1,-23,5,9,1,-1,1,3,-5,-1,3,-1,1,-1,2,-1,-1,-1,-1,2,2,0,0,-2,9,-6,-1,4,-6,4,-1,-1,4,-6 ; TV[70]=M; kill M; intmat M[7][10]=3,9,-23,5,3,5,1,1,-1,-3,1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,-1,1,3,1,5,5,-23,9,1,-1,1,3,-5,-1,3,-1,1,-1,2,-1,-1,-1,-1,2,2,0,0,-2,2,-2,0,2,-1,0,-1,2,-1,-1 ; TV[71]=M; kill M; intmat M[7][10]=3,9,-23,5,3,5,1,1,-1,-3,1,-1,-1,-1,-1,1,1,3,3,-5,1,-5,3,1,-1,3,-1,1,-1,-1,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,2,-2,0,2,-1,0,-1,2,-1,-1,7,-5,-3,-1,1,5,-1,5,-3,-5 ; TV[72]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,3,9,-23,5,3,5,1,1,-1,-3,1,-1,-1,-1,-1,1,1,3,3,-5,3,3,5,-23,9,1,5,-1,1,-3,3,3,1,-1,-3,5,1,-23,5,9,2,-1,-1,-1,-1,2,2,0,0,-2,3,-3,1,5,9,-1,-23,1,5,3 ; TV[73]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,3,9,-23,5,3,5,1,1,-1,-3,1,-1,-1,-1,-1,1,1,3,3,-5,3,3,5,-23,9,1,5,-1,1,-3,3,-3,-1,1,3,1,5,5,-23,9,2,-1,-1,-1,-1,2,2,0,0,-2,7,-5,-3,-1,1,5,-1,5,-3,-5 ; TV[74]=M; kill M; intmat M[7][10]=1,-1,1,3,-5,-1,3,-1,1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,3,3,5,-23,9,1,5,-1,1,-3,3,3,1,-1,-3,5,1,-23,5,9,3,9,-23,5,3,5,1,1,-1,-3,3,9,5,1,-3,-23,-1,5,1,3,7,1,-1,-3,-5,-1,5,-3,5,-5 ; TV[75]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,1,3,-5,-1,3,-1,1,-1,3,-3,1,5,9,-1,-23,1,5,3,3,-3,-1,1,3,1,5,5,-23,9,3,9,5,1,-3,-23,-1,5,1,3,3,3,1,-1,-3,5,1,-23,5,9,7,-5,5,5,-5,-3,-3,-1,-1,1 ; TV[76]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,1,3,-5,-1,3,-1,1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,-1,1,3,1,5,5,-23,9,3,3,5,-23,9,1,5,-1,1,-3,3,9,5,1,-3,-23,-1,5,1,3,9,-6,4,-1,-6,-1,4,4,-1,-6 ; TV[77]=M; kill M; intmat M[7][10]=1,-1,1,3,-5,-1,3,-1,1,-1,1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,3,9,-23,5,3,5,1,1,-1,-3,3,3,1,-1,-3,5,1,-23,5,9,3,-3,1,5,9,-1,-23,1,5,3,9,-6,-1,4,-6,4,-1,-1,4,-6 ; TV[78]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,3,9,-23,5,3,5,1,1,-1,-3,3,-3,-1,1,3,1,5,5,-23,9,3,3,5,-23,9,1,5,-1,1,-3,3,-3,1,5,9,-1,-23,1,5,3,7,-5,-3,-1,1,5,-1,5,-3,-5 ; TV[79]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,3,-3,-1,1,3,1,5,5,-23,9,3,3,5,-23,9,1,5,-1,1,-3,3,-3,1,5,9,-1,-23,1,5,3,3,9,-23,5,3,5,1,1,-1,-3,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3 ; TV[80]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-1,-1,-1,-1,1,1,3,3,-5,3,3,5,-23,9,1,5,-1,1,-3,3,-3,1,5,9,-1,-23,1,5,3,3,9,-23,5,3,5,1,1,-1,-3,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3 ; TV[81]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-1,1,3,-5,-1,3,-1,1,-1,3,3,1,-1,-3,5,1,-23,5,9,3,-3,-1,1,3,1,5,5,-23,9,3,9,5,1,-3,-23,-1,5,1,3,3,3,5,-23,9,1,5,-1,1,-3,3,9,-23,5,3,5,1,1,-1,-3 ; TV[82]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-1,1,3,-5,-1,3,-1,1,-1,3,3,5,-23,9,1,5,-1,1,-3,1,-1,-1,-1,-1,1,1,3,3,-5,3,9,-23,5,3,5,1,1,-1,-3,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3 ; TV[83]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-1,1,3,-5,-1,3,-1,1,-1,3,-3,1,5,9,-1,-23,1,5,3,3,9,-23,5,3,5,1,1,-1,-3,1,-1,-1,-1,-1,1,1,3,3,-5,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3 ; TV[84]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-1,1,3,-5,-1,3,-1,1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,-1,1,3,1,5,5,-23,9,3,9,5,1,-3,-23,-1,5,1,3,3,3,5,-23,9,1,5,-1,1,-3,3,9,-23,5,3,5,1,1,-1,-3 ; TV[85]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,2,-1,2,0,-2,-1,0,-1,2,-1,3,-3,1,5,9,-1,-23,1,5,3,3,3,5,-23,9,1,5,-1,1,-3,1,-1,-1,-1,-1,1,1,3,3,-5,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3 ; TV[86]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,2,-1,2,0,-2,-1,0,-1,2,-1,1,-1,1,3,-5,-1,3,-1,1,-1,3,3,5,-23,9,1,5,-1,1,-3,1,-1,-1,-1,-1,1,1,3,3,-5,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3 ; TV[87]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,2,-1,2,0,-2,-1,0,-1,2,-1,1,-1,1,3,-5,-1,3,-1,1,-1,3,-3,1,5,9,-1,-23,1,5,3,1,-1,-1,-1,-1,1,1,3,3,-5,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3 ; TV[88]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-1,1,3,-5,-1,3,-1,1,-1,3,-3,1,5,9,-1,-23,1,5,3,3,-3,-1,1,3,1,5,5,-23,9,3,9,-23,5,3,5,1,1,-1,-3,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3 ; TV[89]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,3,9,-23,5,3,5,1,1,-1,-3,3,3,5,-23,9,1,5,-1,1,-3,3,9,5,1,-3,-23,-1,5,1,3 ; TV[90]=M; kill M; intmat M[7][10]=2,-1,-1,-1,-1,2,2,0,0,-2,3,9,-23,5,3,5,1,1,-1,-3,-9,1,1,1,1,1,1,1,1,1,3,-3,-1,1,3,1,5,5,-23,9,3,3,1,-1,-3,5,1,-23,5,9,3,3,5,-23,9,1,5,-1,1,-3,1,-1,1,3,-5,-1,3,-1,1,-1 ; TV[91]=M; kill M; intmat M[7][10]=2,-1,-1,-1,-1,2,2,0,0,-2,3,9,-23,5,3,5,1,1,-1,-3,-9,1,1,1,1,1,1,1,1,1,1,-1,-1,-1,-1,1,1,3,3,-5,3,3,1,-1,-3,5,1,-23,5,9,3,3,5,-23,9,1,5,-1,1,-3,1,-1,1,3,-5,-1,3,-1,1,-1 ; TV[92]=M; kill M; intmat M[7][10]=2,-1,-1,-1,-1,2,2,0,0,-2,3,9,-23,5,3,5,1,1,-1,-3,-9,1,1,1,1,1,1,1,1,1,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,-1,1,3,1,5,5,-23,9,3,3,5,-23,9,1,5,-1,1,-3,1,-1,1,3,-5,-1,3,-1,1,-1 ; TV[93]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,2,-2,0,2,-1,0,-1,2,-1,-1,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,3,9,-23,5,3,5,1,1,-1,-3,1,-1,1,3,-5,-1,3,-1,1,-1,3,9,5,1,-3,-23,-1,5,1,3 ; TV[94]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,2,-2,0,2,-1,0,-1,2,-1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,1,5,9,-1,-23,1,5,3,3,9,-23,5,3,5,1,1,-1,-3,1,-1,1,3,-5,-1,3,-1,1,-1,3,9,5,1,-3,-23,-1,5,1,3 ; TV[95]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,2,-2,0,2,-1,0,-1,2,-1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,-1,1,3,1,5,5,-23,9,3,9,-23,5,3,5,1,1,-1,-3,1,-1,1,3,-5,-1,3,-1,1,-1,3,9,5,1,-3,-23,-1,5,1,3 ; TV[96]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,2,-2,0,2,-1,0,-1,2,-1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,-1,1,3,1,5,5,-23,9,3,9,-23,5,3,5,1,1,-1,-3,3,-3,1,5,9,-1,-23,1,5,3,3,9,5,1,-3,-23,-1,5,1,3 ; TV[97]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,3,3,5,-23,9,1,5,-1,1,-3,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3 ; TV[98]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,2,-1,2,0,-2,-1,0,-1,2,-1,3,-3,1,5,9,-1,-23,1,5,3,3,3,5,-23,9,1,5,-1,1,-3,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3 ; TV[99]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,1,3,-5,-1,3,-1,1,-1,3,-3,-1,1,3,1,5,5,-23,9,3,3,5,-23,9,1,5,-1,1,-3,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3 ; TV[100]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,1,3,-5,-1,3,-1,1,-1,2,-1,2,0,-2,-1,0,-1,2,-1,3,3,5,-23,9,1,5,-1,1,-3,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3 ; TV[101]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,1,3,-5,-1,3,-1,1,-1,3,-3,1,5,9,-1,-23,1,5,3,2,-1,2,0,-2,-1,0,-1,2,-1,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3 ; TV[102]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,1,5,9,-1,-23,1,5,3,3,3,5,-23,9,1,5,-1,1,-3,3,9,5,1,-3,-23,-1,5,1,3,2,-1,2,0,-2,-1,0,-1,2,-1 ; TV[103]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,1,-1,1,3,-5,-1,3,-1,1,-1,3,3,5,-23,9,1,5,-1,1,-3,3,9,5,1,-3,-23,-1,5,1,3,2,-1,2,0,-2,-1,0,-1,2,-1 ; TV[104]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,1,3,-5,-1,3,-1,1,-1,3,-3,1,5,9,-1,-23,1,5,3,3,-3,-1,1,3,1,5,5,-23,9,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3 ; TV[105]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,1,-1,1,3,-5,-1,3,-1,1,-1,3,-3,1,5,9,-1,-23,1,5,3,3,9,5,1,-3,-23,-1,5,1,3,2,-1,2,0,-2,-1,0,-1,2,-1 ; TV[106]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,3,3,1,-1,-3,5,1,-23,5,9,3,-3,1,5,9,-1,-23,1,5,3,3,3,5,-23,9,1,5,-1,1,-3,2,-1,2,0,-2,-1,0,-1,2,-1 ; TV[107]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,3,3,1,-1,-3,5,1,-23,5,9,1,-1,1,3,-5,-1,3,-1,1,-1,3,3,5,-23,9,1,5,-1,1,-3,2,-1,2,0,-2,-1,0,-1,2,-1 ; TV[108]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,-1,1,3,1,5,5,-23,9,1,-1,1,3,-5,-1,3,-1,1,-1,3,3,5,-23,9,1,5,-1,1,-3,3,9,5,1,-3,-23,-1,5,1,3 ; TV[109]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,3,3,1,-1,-3,5,1,-23,5,9,1,-1,1,3,-5,-1,3,-1,1,-1,3,-3,1,5,9,-1,-23,1,5,3,2,-1,2,0,-2,-1,0,-1,2,-1 ; TV[110]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,3,3,5,-23,9,1,5,-1,1,-3,3,9,5,1,-3,-23,-1,5,1,3 ; TV[111]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,2,-2,0,2,-1,0,-1,2,-1,-1,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,1,-1,1,3,-5,-1,3,-1,1,-1,3,9,5,1,-3,-23,-1,5,1,3 ; TV[112]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,2,-2,0,2,-1,0,-1,2,-1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,1,5,9,-1,-23,1,5,3,1,-1,1,3,-5,-1,3,-1,1,-1,3,9,5,1,-3,-23,-1,5,1,3 ; TV[113]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,2,-2,0,2,-1,0,-1,2,-1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,-1,1,3,1,5,5,-23,9,1,-1,1,3,-5,-1,3,-1,1,-1,3,9,5,1,-3,-23,-1,5,1,3 ; TV[114]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,2,-2,0,2,-1,0,-1,2,-1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,3,9,5,1,-3,-23,-1,5,1,3 ; TV[115]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,2,-1,-1,-1,-1,2,2,0,0,-2,-9,1,1,1,1,1,1,1,1,1,3,-3,-1,1,3,1,5,5,-23,9,3,3,1,-1,-3,5,1,-23,5,9,3,3,5,-23,9,1,5,-1,1,-3,1,-1,1,3,-5,-1,3,-1,1,-1 ; TV[116]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,2,-1,-1,-1,-1,2,2,0,0,-2,-9,1,1,1,1,1,1,1,1,1,1,-1,-1,-1,-1,1,1,3,3,-5,3,3,1,-1,-3,5,1,-23,5,9,3,3,5,-23,9,1,5,-1,1,-3,1,-1,1,3,-5,-1,3,-1,1,-1 ; TV[117]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,2,-1,-1,-1,-1,2,2,0,0,-2,-9,1,1,1,1,1,1,1,1,1,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,-1,1,3,1,5,5,-23,9,3,3,5,-23,9,1,5,-1,1,-3,1,-1,1,3,-5,-1,3,-1,1,-1 ; TV[118]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,3,9,-23,5,3,5,1,1,-1,-3,3,3,1,-1,-3,5,1,-23,5,9,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,1,-1,1,3,-5,-1,3,-1,1,-1 ; TV[119]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,3,9,-23,5,3,5,1,1,-1,-3,2,-2,0,2,-1,0,-1,2,-1,-1,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,1,-1,1,3,-5,-1,3,-1,1,-1 ; TV[120]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,3,9,-23,5,3,5,1,1,-1,-3,1,-1,-1,-1,-1,1,1,3,3,-5,2,-2,0,2,-1,0,-1,2,-1,-1,3,-3,1,5,9,-1,-23,1,5,3,1,-1,1,3,-5,-1,3,-1,1,-1 ; TV[121]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,3,9,-23,5,3,5,1,1,-1,-3,1,-1,-1,-1,-1,1,1,3,3,-5,3,3,1,-1,-3,5,1,-23,5,9,3,-3,1,5,9,-1,-23,1,5,3,1,-1,1,3,-5,-1,3,-1,1,-1 ; TV[122]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,3,9,-23,5,3,5,1,1,-1,-3,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,-1,1,3,1,5,5,-23,9,1,-1,1,3,-5,-1,3,-1,1,-1,2,-2,0,2,-1,0,-1,2,-1,-1 ; TV[123]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,3,9,-23,5,3,5,1,1,-1,-3,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,2,-2,0,2,-1,0,-1,2,-1,-1 ; TV[124]=M; kill M; intmat M[7][10]=3,9,-23,5,3,5,1,1,-1,-3,1,-5,3,1,-1,3,-1,1,-1,-1,-9,1,1,1,1,1,1,1,1,1,2,-1,-1,-1,-1,2,2,0,0,-2,3,-3,-1,1,3,1,5,5,-23,9,3,3,1,-1,-3,5,1,-23,5,9,1,-1,1,3,-5,-1,3,-1,1,-1 ; TV[125]=M; kill M; intmat M[7][10]=3,9,-23,5,3,5,1,1,-1,-3,1,-5,3,1,-1,3,-1,1,-1,-1,-9,1,1,1,1,1,1,1,1,1,2,-1,-1,-1,-1,2,2,0,0,-2,1,-1,-1,-1,-1,1,1,3,3,-5,3,3,1,-1,-3,5,1,-23,5,9,1,-1,1,3,-5,-1,3,-1,1,-1 ; TV[126]=M; kill M; intmat M[7][10]=3,9,-23,5,3,5,1,1,-1,-3,1,-5,3,1,-1,3,-1,1,-1,-1,-9,1,1,1,1,1,1,1,1,1,2,-1,-1,-1,-1,2,2,0,0,-2,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,-1,1,3,1,5,5,-23,9,1,-1,1,3,-5,-1,3,-1,1,-1 ; TV[127]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,-9,1,1,1,1,1,1,1,1,1,3,9,-23,5,3,5,1,1,-1,-3,3,3,5,-23,9,1,5,-1,1,-3,3,3,1,-1,-3,5,1,-23,5,9,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3 ; TV[128]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,-9,1,1,1,1,1,1,1,1,1,3,9,-23,5,3,5,1,1,-1,-3,3,3,5,-23,9,1,5,-1,1,-3,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3 ; TV[129]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,-9,1,1,1,1,1,1,1,1,1,3,9,-23,5,3,5,1,1,-1,-3,3,3,5,-23,9,1,5,-1,1,-3,1,-1,-1,-1,-1,1,1,3,3,-5,3,3,1,-1,-3,5,1,-23,5,9,3,-3,1,5,9,-1,-23,1,5,3 ; TV[130]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,3,9,-23,5,3,5,1,1,-1,-3,-9,1,1,1,1,1,1,1,1,1,3,3,5,-23,9,1,5,-1,1,-3,2,-1,-1,-1,-1,2,2,0,0,-2,3,-3,-1,1,3,1,5,5,-23,9,3,3,1,-1,-3,5,1,-23,5,9 ; TV[131]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,3,9,-23,5,3,5,1,1,-1,-3,-9,1,1,1,1,1,1,1,1,1,3,3,5,-23,9,1,5,-1,1,-3,2,-1,-1,-1,-1,2,2,0,0,-2,1,-1,-1,-1,-1,1,1,3,3,-5,3,3,1,-1,-3,5,1,-23,5,9 ; TV[132]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,3,9,-23,5,3,5,1,1,-1,-3,-9,1,1,1,1,1,1,1,1,1,3,3,5,-23,9,1,5,-1,1,-3,2,-1,-1,-1,-1,2,2,0,0,-2,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,-1,1,3,1,5,5,-23,9 ; TV[133]=M; kill M; } if ((polygon=="cubic") and (art=="secondary")) { intmat M[7][10]=3,3,5,-23,9,1,5,-1,1,-3,3,-3,-1,1,3,1,5,5,-23,9,3,3,1,-1,-3,5,1,-23,5,9,3,-3,1,5,9,-1,-23,1,5,3,3,9,-23,5,3,5,1,1,-1,-3,3,9,5,1,-3,-23,-1,5,1,3,9,-1,-1,-1,-1,-1,-1,-1,-1,-1 ; TV[1]=M; kill M; intmat M[7][10]=3,3,5,-23,9,1,5,-1,1,-3,45,3,-5,-13,-21,-7,7,-17,35,-27,3,3,1,-1,-3,5,1,-23,5,9,3,-3,1,5,9,-1,-23,1,5,3,3,9,-23,5,3,5,1,1,-1,-3,3,9,5,1,-3,-23,-1,5,1,3,9,-1,-1,-1,-1,-1,-1,-1,-1,-1 ; TV[2]=M; kill M; intmat M[7][10]=45,-21,-13,-5,3,7,-7,35,-17,-27,45,3,-5,-13,-21,-7,7,-17,35,-27,3,3,5,-23,9,1,5,-1,1,-3,3,-3,1,5,9,-1,-23,1,5,3,3,9,5,1,-3,-23,-1,5,1,3,3,9,-23,5,3,5,1,1,-1,-3,9,-1,-1,-1,-1,-1,-1,-1,-1,-1 ; TV[3]=M; kill M; intmat M[7][10]=45,-27,-17,-7,3,35,-5,7,-13,-21,3,-3,-1,1,3,1,5,5,-23,9,3,3,1,-1,-3,5,1,-23,5,9,3,-3,1,5,9,-1,-23,1,5,3,3,3,5,-23,9,1,5,-1,1,-3,3,9,-23,5,3,5,1,1,-1,-3,9,-1,-1,-1,-1,-1,-1,-1,-1,-1 ; TV[4]=M; kill M; intmat M[7][10]=45,-27,35,7,-21,-17,-13,-7,-5,3,3,-3,-1,1,3,1,5,5,-23,9,3,3,5,-23,9,1,5,-1,1,-3,3,-3,1,5,9,-1,-23,1,5,3,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3,9,-1,-1,-1,-1,-1,-1,-1,-1,-1 ; TV[5]=M; kill M; intmat M[8][10]=9,-1,-1,-1,-1,-1,-1,-1,-1,-1,45,3,-5,-13,-21,-7,7,-17,35,-27,7,1,-1,-3,-5,-1,5,-3,5,-5,45,3,-7,-17,-27,-5,35,-13,7,-21,3,3,5,-23,9,1,5,-1,1,-3,3,3,1,-1,-3,5,1,-23,5,9,3,9,-23,5,3,5,1,1,-1,-3,3,9,5,1,-3,-23,-1,5,1,3 ; TV[6]=M; kill M; intmat M[7][10]=45,-21,-13,-5,3,7,-7,35,-17,-27,3,-3,-1,1,3,1,5,5,-23,9,3,3,5,-23,9,1,5,-1,1,-3,3,-3,1,5,9,-1,-23,1,5,3,3,9,5,1,-3,-23,-1,5,1,3,3,9,-23,5,3,5,1,1,-1,-3,9,-1,-1,-1,-1,-1,-1,-1,-1,-1 ; TV[7]=M; kill M; intmat M[8][10]=9,-1,-1,-1,-1,-1,-1,-1,-1,-1,45,3,-5,-13,-21,-7,7,-17,35,-27,27,-15,-11,-7,-3,23,1,1,5,-21,45,-27,-17,-7,3,35,-5,7,-13,-21,3,3,1,-1,-3,5,1,-23,5,9,3,-3,1,5,9,-1,-23,1,5,3,3,3,5,-23,9,1,5,-1,1,-3,3,9,-23,5,3,5,1,1,-1,-3 ; TV[8]=M; kill M; intmat M[7][10]=3,3,5,-23,9,1,5,-1,1,-3,45,3,-7,-17,-27,-5,35,-13,7,-21,3,3,1,-1,-3,5,1,-23,5,9,3,-3,-1,1,3,1,5,5,-23,9,3,9,-23,5,3,5,1,1,-1,-3,3,9,5,1,-3,-23,-1,5,1,3,9,-1,-1,-1,-1,-1,-1,-1,-1,-1 ; TV[9]=M; kill M; intmat M[7][10]=45,-21,7,35,-27,-13,-17,-5,-7,3,3,-3,-1,1,3,1,5,5,-23,9,3,9,-23,5,3,5,1,1,-1,-3,3,-3,1,5,9,-1,-23,1,5,3,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3,9,-1,-1,-1,-1,-1,-1,-1,-1,-1 ; TV[10]=M; kill M; intmat M[8][10]=9,-1,-1,-1,-1,-1,-1,-1,-1,-1,45,3,-5,-13,-21,-7,7,-17,35,-27,2,-1,2,0,-2,-1,0,-1,2,-1,45,-27,35,7,-21,-17,-13,-7,-5,3,3,3,5,-23,9,1,5,-1,1,-3,3,-3,1,5,9,-1,-23,1,5,3,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3 ; TV[11]=M; kill M; intmat M[8][10]=9,-1,-1,-1,-1,-1,-1,-1,-1,-1,45,-21,7,35,-27,-13,-17,-5,-7,3,27,-3,1,5,-21,-7,1,-11,23,-15,45,3,-5,-13,-21,-7,7,-17,35,-27,3,9,-23,5,3,5,1,1,-1,-3,3,-3,1,5,9,-1,-23,1,5,3,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3 ; TV[12]=M; kill M; intmat M[8][10]=9,-1,-1,-1,-1,-1,-1,-1,-1,-1,45,-21,7,35,-27,-13,-17,-5,-7,3,2,-2,0,2,-1,0,-1,2,-1,-1,45,-21,-13,-5,3,7,-7,35,-17,-27,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,3,9,-23,5,3,5,1,1,-1,-3,3,9,5,1,-3,-23,-1,5,1,3 ; TV[13]=M; kill M; intmat M[8][10]=9,-1,-1,-1,-1,-1,-1,-1,-1,-1,45,-27,-17,-7,3,35,-5,7,-13,-21,27,-21,1,23,-15,5,-11,1,-7,-3,45,-21,7,35,-27,-13,-17,-5,-7,3,3,3,1,-1,-3,5,1,-23,5,9,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,3,9,-23,5,3,5,1,1,-1,-3 ; TV[14]=M; kill M; intmat M[8][10]=9,-1,-1,-1,-1,-1,-1,-1,-1,-1,45,3,-7,-17,-27,-5,35,-13,7,-21,2,-1,-1,-1,-1,2,2,0,0,-2,45,-27,-17,-7,3,35,-5,7,-13,-21,3,3,1,-1,-3,5,1,-23,5,9,3,-3,-1,1,3,1,5,5,-23,9,3,3,5,-23,9,1,5,-1,1,-3,3,9,-23,5,3,5,1,1,-1,-3 ; TV[15]=M; kill M; intmat M[9][10]=9,-1,-1,-1,-1,-1,-1,-1,-1,-1,45,3,-7,-17,-27,-5,35,-13,7,-21,45,-21,7,35,-27,-13,-17,-5,-7,3,27,-3,1,5,-21,-7,1,-11,23,-15,7,1,-1,-3,-5,-1,5,-3,5,-5,45,3,-5,-13,-21,-7,7,-17,35,-27,3,9,-23,5,3,5,1,1,-1,-3,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3 ; TV[16]=M; kill M; intmat M[10][10]=45,3,-5,-13,-21,-7,7,-17,35,-27,27,-3,1,5,-21,-7,1,-11,23,-15,45,-21,7,35,-27,-13,-17,-5,-7,3,9,-1,-1,-1,-1,-1,-1,-1,-1,-1,7,-5,5,5,-5,-3,-3,-1,-1,1,45,-27,35,7,-21,-17,-13,-7,-5,3,2,-1,2,0,-2,-1,0,-1,2,-1,3,-3,1,5,9,-1,-23,1,5,3,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3 ; TV[17]=M; kill M; intmat M[8][10]=9,-1,-1,-1,-1,-1,-1,-1,-1,-1,45,-27,35,7,-21,-17,-13,-7,-5,3,27,-21,5,1,-3,1,-7,23,-11,-15,45,-21,-13,-5,3,7,-7,35,-17,-27,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,3,3,5,-23,9,1,5,-1,1,-3,3,9,5,1,-3,-23,-1,5,1,3 ; TV[18]=M; kill M; intmat M[8][10]=9,-1,-1,-1,-1,-1,-1,-1,-1,-1,45,-21,-13,-5,3,7,-7,35,-17,-27,7,-5,-3,-1,1,5,-1,5,-3,-5,45,-27,-17,-7,3,35,-5,7,-13,-21,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,3,3,5,-23,9,1,5,-1,1,-3,3,9,-23,5,3,5,1,1,-1,-3 ; TV[19]=M; kill M; intmat M[7][10]=45,-27,-17,-7,3,35,-5,7,-13,-21,45,-27,35,7,-21,-17,-13,-7,-5,3,3,3,1,-1,-3,5,1,-23,5,9,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,3,3,5,-23,9,1,5,-1,1,-3,9,-1,-1,-1,-1,-1,-1,-1,-1,-1 ; TV[20]=M; kill M; intmat M[8][10]=9,-1,-1,-1,-1,-1,-1,-1,-1,-1,45,-21,-13,-5,3,7,-7,35,-17,-27,27,-3,-7,-11,-15,1,23,5,1,-21,45,3,-7,-17,-27,-5,35,-13,7,-21,3,3,5,-23,9,1,5,-1,1,-3,3,-3,-1,1,3,1,5,5,-23,9,3,9,5,1,-3,-23,-1,5,1,3,3,9,-23,5,3,5,1,1,-1,-3 ; TV[21]=M; kill M; intmat M[9][10]=9,-1,-1,-1,-1,-1,-1,-1,-1,-1,45,3,-5,-13,-21,-7,7,-17,35,-27,45,-21,-13,-5,3,7,-7,35,-17,-27,27,-3,-7,-11,-15,1,23,5,1,-21,7,1,-1,-3,-5,-1,5,-3,5,-5,45,3,-7,-17,-27,-5,35,-13,7,-21,3,3,5,-23,9,1,5,-1,1,-3,3,9,5,1,-3,-23,-1,5,1,3,3,9,-23,5,3,5,1,1,-1,-3 ; TV[22]=M; kill M; intmat M[9][10]=9,-1,-1,-1,-1,-1,-1,-1,-1,-1,45,3,-5,-13,-21,-7,7,-17,35,-27,45,-21,-13,-5,3,7,-7,35,-17,-27,27,-21,5,1,-3,1,-7,23,-11,-15,2,-1,2,0,-2,-1,0,-1,2,-1,45,-27,35,7,-21,-17,-13,-7,-5,3,3,-3,1,5,9,-1,-23,1,5,3,3,3,5,-23,9,1,5,-1,1,-3,3,9,5,1,-3,-23,-1,5,1,3 ; TV[23]=M; kill M; intmat M[10][10]=45,3,-5,-13,-21,-7,7,-17,35,-27,7,1,-1,-3,-5,-1,5,-3,5,-5,45,3,-7,-17,-27,-5,35,-13,7,-21,9,-1,-1,-1,-1,-1,-1,-1,-1,-1,27,-15,23,1,-21,-11,5,-7,1,-3,45,-27,35,7,-21,-17,-13,-7,-5,3,2,-1,2,0,-2,-1,0,-1,2,-1,3,3,5,-23,9,1,5,-1,1,-3,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3 ; TV[24]=M; kill M; intmat M[10][10]=45,3,-7,-17,-27,-5,35,-13,7,-21,7,1,-1,-3,-5,-1,5,-3,5,-5,45,3,-5,-13,-21,-7,7,-17,35,-27,9,-1,-1,-1,-1,-1,-1,-1,-1,-1,27,-15,-11,-7,-3,23,1,1,5,-21,45,-27,-17,-7,3,35,-5,7,-13,-21,2,-1,-1,-1,-1,2,2,0,0,-2,3,3,1,-1,-3,5,1,-23,5,9,3,3,5,-23,9,1,5,-1,1,-3,3,9,-23,5,3,5,1,1,-1,-3 ; TV[25]=M; kill M; intmat M[9][10]=9,-1,-1,-1,-1,-1,-1,-1,-1,-1,45,-27,35,7,-21,-17,-13,-7,-5,3,45,-27,-17,-7,3,35,-5,7,-13,-21,27,-15,-11,-7,-3,23,1,1,5,-21,2,-1,2,0,-2,-1,0,-1,2,-1,45,3,-5,-13,-21,-7,7,-17,35,-27,3,3,1,-1,-3,5,1,-23,5,9,3,-3,1,5,9,-1,-23,1,5,3,3,3,5,-23,9,1,5,-1,1,-3 ; TV[26]=M; kill M; intmat M[8][10]=9,-1,-1,-1,-1,-1,-1,-1,-1,-1,45,3,-7,-17,-27,-5,35,-13,7,-21,27,-15,23,1,-21,-11,5,-7,1,-3,45,-27,35,7,-21,-17,-13,-7,-5,3,3,3,5,-23,9,1,5,-1,1,-3,3,-3,-1,1,3,1,5,5,-23,9,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3 ; TV[27]=M; kill M; intmat M[8][10]=9,-1,-1,-1,-1,-1,-1,-1,-1,-1,45,-21,7,35,-27,-13,-17,-5,-7,3,7,-5,5,5,-5,-3,-3,-1,-1,1,45,-27,35,7,-21,-17,-13,-7,-5,3,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3 ; TV[28]=M; kill M; intmat M[7][10]=45,-21,7,35,-27,-13,-17,-5,-7,3,45,3,-7,-17,-27,-5,35,-13,7,-21,3,9,-23,5,3,5,1,1,-1,-3,3,-3,-1,1,3,1,5,5,-23,9,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3,9,-1,-1,-1,-1,-1,-1,-1,-1,-1 ; TV[29]=M; kill M; intmat M[9][10]=9,-1,-1,-1,-1,-1,-1,-1,-1,-1,45,-21,-13,-5,3,7,-7,35,-17,-27,45,3,-5,-13,-21,-7,7,-17,35,-27,27,-15,-11,-7,-3,23,1,1,5,-21,7,-5,-3,-1,1,5,-1,5,-3,-5,45,-27,-17,-7,3,35,-5,7,-13,-21,3,-3,1,5,9,-1,-23,1,5,3,3,3,5,-23,9,1,5,-1,1,-3,3,9,-23,5,3,5,1,1,-1,-3 ; TV[30]=M; kill M; intmat M[9][10]=9,-1,-1,-1,-1,-1,-1,-1,-1,-1,45,3,-5,-13,-21,-7,7,-17,35,-27,45,-21,-13,-5,3,7,-7,35,-17,-27,2,-2,0,2,-1,0,-1,2,-1,-1,27,-3,1,5,-21,-7,1,-11,23,-15,45,-21,7,35,-27,-13,-17,-5,-7,3,3,-3,1,5,9,-1,-23,1,5,3,3,9,-23,5,3,5,1,1,-1,-3,3,9,5,1,-3,-23,-1,5,1,3 ; TV[31]=M; kill M; intmat M[11][10]=45,3,-5,-13,-21,-7,7,-17,35,-27,27,-3,1,5,-21,-7,1,-11,23,-15,45,-21,7,35,-27,-13,-17,-5,-7,3,9,-1,-1,-1,-1,-1,-1,-1,-1,-1,45,-27,-17,-7,3,35,-5,7,-13,-21,27,-21,1,23,-15,5,-11,1,-7,-3,9,-6,-1,4,-6,4,-1,-1,4,-6,27,-15,-11,-7,-3,23,1,1,5,-21,3,3,1,-1,-3,5,1,-23,5,9,3,-3,1,5,9,-1,-23,1,5,3,3,9,-23,5,3,5,1,1,-1,-3 ; TV[32]=M; kill M; intmat M[10][10]=45,3,-7,-17,-27,-5,35,-13,7,-21,27,-3,-7,-11,-15,1,23,5,1,-21,45,-21,-13,-5,3,7,-7,35,-17,-27,9,-1,-1,-1,-1,-1,-1,-1,-1,-1,7,-5,-3,-1,1,5,-1,5,-3,-5,45,-27,-17,-7,3,35,-5,7,-13,-21,2,-1,-1,-1,-1,2,2,0,0,-2,3,-3,-1,1,3,1,5,5,-23,9,3,3,5,-23,9,1,5,-1,1,-3,3,9,-23,5,3,5,1,1,-1,-3 ; TV[33]=M; kill M; intmat M[9][10]=9,-1,-1,-1,-1,-1,-1,-1,-1,-1,45,-27,35,7,-21,-17,-13,-7,-5,3,45,-27,-17,-7,3,35,-5,7,-13,-21,2,-1,-1,-1,-1,2,2,0,0,-2,27,-15,23,1,-21,-11,5,-7,1,-3,45,3,-7,-17,-27,-5,35,-13,7,-21,3,-3,-1,1,3,1,5,5,-23,9,3,3,1,-1,-3,5,1,-23,5,9,3,3,5,-23,9,1,5,-1,1,-3 ; TV[34]=M; kill M; intmat M[9][10]=9,-1,-1,-1,-1,-1,-1,-1,-1,-1,45,3,-7,-17,-27,-5,35,-13,7,-21,45,-21,7,35,-27,-13,-17,-5,-7,3,27,-21,1,23,-15,5,-11,1,-7,-3,2,-1,-1,-1,-1,2,2,0,0,-2,45,-27,-17,-7,3,35,-5,7,-13,-21,3,-3,-1,1,3,1,5,5,-23,9,3,3,1,-1,-3,5,1,-23,5,9,3,9,-23,5,3,5,1,1,-1,-3 ; TV[35]=M; kill M; intmat M[9][10]=9,-1,-1,-1,-1,-1,-1,-1,-1,-1,45,3,-7,-17,-27,-5,35,-13,7,-21,45,-21,7,35,-27,-13,-17,-5,-7,3,7,-5,5,5,-5,-3,-3,-1,-1,1,27,-15,23,1,-21,-11,5,-7,1,-3,45,-27,35,7,-21,-17,-13,-7,-5,3,3,-3,-1,1,3,1,5,5,-23,9,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3 ; TV[36]=M; kill M; intmat M[11][10]=9,-1,-1,-1,-1,-1,-1,-1,-1,-1,45,3,-7,-17,-27,-5,35,-13,7,-21,45,-21,7,35,-27,-13,-17,-5,-7,3,2,-2,0,2,-1,0,-1,2,-1,-1,27,-3,-7,-11,-15,1,23,5,1,-21,45,-21,-13,-5,3,7,-7,35,-17,-27,27,-3,1,5,-21,-7,1,-11,23,-15,7,1,-1,-3,-5,-1,5,-3,5,-5,45,3,-5,-13,-21,-7,7,-17,35,-27,3,9,-23,5,3,5,1,1,-1,-3,3,9,5,1,-3,-23,-1,5,1,3 ; TV[37]=M; kill M; intmat M[13][10]=45,3,-7,-17,-27,-5,35,-13,7,-21,7,1,-1,-3,-5,-1,5,-3,5,-5,27,-3,-7,-11,-15,1,23,5,1,-21,45,-21,-13,-5,3,7,-7,35,-17,-27,45,3,-5,-13,-21,-7,7,-17,35,-27,9,-1,-1,-1,-1,-1,-1,-1,-1,-1,45,-27,35,7,-21,-17,-13,-7,-5,3,27,-21,5,1,-3,1,-7,23,-11,-15,9,-6,4,-1,-6,-1,4,4,-1,-6,27,-15,23,1,-21,-11,5,-7,1,-3,2,-1,2,0,-2,-1,0,-1,2,-1,3,3,5,-23,9,1,5,-1,1,-3,3,9,5,1,-3,-23,-1,5,1,3 ; TV[38]=M; kill M; intmat M[12][10]=45,3,-7,-17,-27,-5,35,-13,7,-21,7,1,-1,-3,-5,-1,5,-3,5,-5,27,-3,-7,-11,-15,1,23,5,1,-21,45,-21,-13,-5,3,7,-7,35,-17,-27,45,3,-5,-13,-21,-7,7,-17,35,-27,9,-1,-1,-1,-1,-1,-1,-1,-1,-1,7,-5,-3,-1,1,5,-1,5,-3,-5,27,-15,-11,-7,-3,23,1,1,5,-21,45,-27,-17,-7,3,35,-5,7,-13,-21,2,-1,-1,-1,-1,2,2,0,0,-2,3,3,5,-23,9,1,5,-1,1,-3,3,9,-23,5,3,5,1,1,-1,-3 ; TV[39]=M; kill M; intmat M[9][10]=9,-1,-1,-1,-1,-1,-1,-1,-1,-1,45,3,-7,-17,-27,-5,35,-13,7,-21,45,-21,7,35,-27,-13,-17,-5,-7,3,2,-2,0,2,-1,0,-1,2,-1,-1,27,-3,-7,-11,-15,1,23,5,1,-21,45,-21,-13,-5,3,7,-7,35,-17,-27,3,-3,-1,1,3,1,5,5,-23,9,3,9,-23,5,3,5,1,1,-1,-3,3,9,5,1,-3,-23,-1,5,1,3 ; TV[40]=M; kill M; intmat M[11][10]=45,-21,-13,-5,3,7,-7,35,-17,-27,27,-3,-7,-11,-15,1,23,5,1,-21,45,3,-7,-17,-27,-5,35,-13,7,-21,9,-1,-1,-1,-1,-1,-1,-1,-1,-1,27,-15,23,1,-21,-11,5,-7,1,-3,45,-27,35,7,-21,-17,-13,-7,-5,3,9,-6,4,-1,-6,-1,4,4,-1,-6,27,-21,5,1,-3,1,-7,23,-11,-15,3,-3,-1,1,3,1,5,5,-23,9,3,3,5,-23,9,1,5,-1,1,-3,3,9,5,1,-3,-23,-1,5,1,3 ; TV[41]=M; kill M; intmat M[9][10]=9,-1,-1,-1,-1,-1,-1,-1,-1,-1,45,-27,-17,-7,3,35,-5,7,-13,-21,45,-27,35,7,-21,-17,-13,-7,-5,3,27,-21,5,1,-3,1,-7,23,-11,-15,7,-5,-3,-1,1,5,-1,5,-3,-5,45,-21,-13,-5,3,7,-7,35,-17,-27,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,3,3,5,-23,9,1,5,-1,1,-3 ; TV[42]=M; kill M; intmat M[10][10]=45,-21,7,35,-27,-13,-17,-5,-7,3,7,-5,5,5,-5,-3,-3,-1,-1,1,45,-27,35,7,-21,-17,-13,-7,-5,3,9,-1,-1,-1,-1,-1,-1,-1,-1,-1,27,-21,5,1,-3,1,-7,23,-11,-15,45,-21,-13,-5,3,7,-7,35,-17,-27,2,-2,0,2,-1,0,-1,2,-1,-1,3,-3,1,5,9,-1,-23,1,5,3,3,-3,-1,1,3,1,5,5,-23,9,3,9,5,1,-3,-23,-1,5,1,3 ; TV[43]=M; kill M; intmat M[10][10]=45,-21,7,35,-27,-13,-17,-5,-7,3,27,-21,1,23,-15,5,-11,1,-7,-3,45,-27,-17,-7,3,35,-5,7,-13,-21,9,-1,-1,-1,-1,-1,-1,-1,-1,-1,7,-5,-3,-1,1,5,-1,5,-3,-5,45,-21,-13,-5,3,7,-7,35,-17,-27,2,-2,0,2,-1,0,-1,2,-1,-1,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,3,9,-23,5,3,5,1,1,-1,-3 ; TV[44]=M; kill M; intmat M[9][10]=9,-1,-1,-1,-1,-1,-1,-1,-1,-1,45,-27,35,7,-21,-17,-13,-7,-5,3,45,-27,-17,-7,3,35,-5,7,-13,-21,27,-21,1,23,-15,5,-11,1,-7,-3,7,-5,5,5,-5,-3,-3,-1,-1,1,45,-21,7,35,-27,-13,-17,-5,-7,3,3,3,1,-1,-3,5,1,-23,5,9,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3 ; TV[45]=M; kill M; intmat M[12][10]=45,-21,7,35,-27,-13,-17,-5,-7,3,27,-3,1,5,-21,-7,1,-11,23,-15,45,-21,-13,-5,3,7,-7,35,-17,-27,45,3,-5,-13,-21,-7,7,-17,35,-27,9,-1,-1,-1,-1,-1,-1,-1,-1,-1,45,-27,35,7,-21,-17,-13,-7,-5,3,27,-21,5,1,-3,1,-7,23,-11,-15,7,-5,5,5,-5,-3,-3,-1,-1,1,2,-2,0,2,-1,0,-1,2,-1,-1,2,-1,2,0,-2,-1,0,-1,2,-1,3,-3,1,5,9,-1,-23,1,5,3,3,9,5,1,-3,-23,-1,5,1,3 ; TV[46]=M; kill M; intmat M[13][10]=45,-21,7,35,-27,-13,-17,-5,-7,3,27,-3,1,5,-21,-7,1,-11,23,-15,45,3,-5,-13,-21,-7,7,-17,35,-27,45,-21,-13,-5,3,7,-7,35,-17,-27,9,-1,-1,-1,-1,-1,-1,-1,-1,-1,27,-15,-11,-7,-3,23,1,1,5,-21,7,-5,-3,-1,1,5,-1,5,-3,-5,45,-27,-17,-7,3,35,-5,7,-13,-21,9,-6,-1,4,-6,4,-1,-1,4,-6,27,-21,1,23,-15,5,-11,1,-7,-3,2,-2,0,2,-1,0,-1,2,-1,-1,3,-3,1,5,9,-1,-23,1,5,3,3,9,-23,5,3,5,1,1,-1,-3 ; TV[47]=M; kill M; intmat M[11][10]=9,-1,-1,-1,-1,-1,-1,-1,-1,-1,45,-21,-13,-5,3,7,-7,35,-17,-27,45,3,-5,-13,-21,-7,7,-17,35,-27,2,-1,2,0,-2,-1,0,-1,2,-1,27,-21,5,1,-3,1,-7,23,-11,-15,45,-27,35,7,-21,-17,-13,-7,-5,3,27,-15,-11,-7,-3,23,1,1,5,-21,7,-5,-3,-1,1,5,-1,5,-3,-5,45,-27,-17,-7,3,35,-5,7,-13,-21,3,-3,1,5,9,-1,-23,1,5,3,3,3,5,-23,9,1,5,-1,1,-3 ; TV[48]=M; kill M; intmat M[12][10]=45,3,-7,-17,-27,-5,35,-13,7,-21,27,-15,23,1,-21,-11,5,-7,1,-3,45,-27,-17,-7,3,35,-5,7,-13,-21,45,-27,35,7,-21,-17,-13,-7,-5,3,9,-1,-1,-1,-1,-1,-1,-1,-1,-1,45,3,-5,-13,-21,-7,7,-17,35,-27,27,-15,-11,-7,-3,23,1,1,5,-21,7,1,-1,-3,-5,-1,5,-3,5,-5,2,-1,-1,-1,-1,2,2,0,0,-2,2,-1,2,0,-2,-1,0,-1,2,-1,3,3,1,-1,-3,5,1,-23,5,9,3,3,5,-23,9,1,5,-1,1,-3 ; TV[49]=M; kill M; intmat M[13][10]=45,3,-5,-13,-21,-7,7,-17,35,-27,7,1,-1,-3,-5,-1,5,-3,5,-5,27,-3,1,5,-21,-7,1,-11,23,-15,45,-21,7,35,-27,-13,-17,-5,-7,3,45,3,-7,-17,-27,-5,35,-13,7,-21,9,-1,-1,-1,-1,-1,-1,-1,-1,-1,45,-27,-17,-7,3,35,-5,7,-13,-21,27,-21,1,23,-15,5,-11,1,-7,-3,9,-6,-1,4,-6,4,-1,-1,4,-6,27,-15,-11,-7,-3,23,1,1,5,-21,2,-1,-1,-1,-1,2,2,0,0,-2,3,3,1,-1,-3,5,1,-23,5,9,3,9,-23,5,3,5,1,1,-1,-3 ; TV[50]=M; kill M; intmat M[12][10]=45,3,-5,-13,-21,-7,7,-17,35,-27,7,1,-1,-3,-5,-1,5,-3,5,-5,27,-3,1,5,-21,-7,1,-11,23,-15,45,-21,7,35,-27,-13,-17,-5,-7,3,45,3,-7,-17,-27,-5,35,-13,7,-21,9,-1,-1,-1,-1,-1,-1,-1,-1,-1,7,-5,5,5,-5,-3,-3,-1,-1,1,27,-15,23,1,-21,-11,5,-7,1,-3,45,-27,35,7,-21,-17,-13,-7,-5,3,2,-1,2,0,-2,-1,0,-1,2,-1,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3 ; TV[51]=M; kill M; intmat M[13][10]=45,-21,7,35,-27,-13,-17,-5,-7,3,7,-5,5,5,-5,-3,-3,-1,-1,1,27,-21,1,23,-15,5,-11,1,-7,-3,45,-27,-17,-7,3,35,-5,7,-13,-21,45,-27,35,7,-21,-17,-13,-7,-5,3,9,-1,-1,-1,-1,-1,-1,-1,-1,-1,45,3,-5,-13,-21,-7,7,-17,35,-27,27,-15,-11,-7,-3,23,1,1,5,-21,9,-6,-1,4,-6,4,-1,-1,4,-6,27,-3,1,5,-21,-7,1,-11,23,-15,2,-1,2,0,-2,-1,0,-1,2,-1,3,3,1,-1,-3,5,1,-23,5,9,3,-3,1,5,9,-1,-23,1,5,3 ; TV[52]=M; kill M; intmat M[16][10]=45,3,-5,-13,-21,-7,7,-17,35,-27,7,1,-1,-3,-5,-1,5,-3,5,-5,27,-3,1,5,-21,-7,1,-11,23,-15,45,-21,-13,-5,3,7,-7,35,-17,-27,27,-3,-7,-11,-15,1,23,5,1,-21,45,-21,7,35,-27,-13,-17,-5,-7,3,45,3,-7,-17,-27,-5,35,-13,7,-21,9,-1,-1,-1,-1,-1,-1,-1,-1,-1,7,-5,5,5,-5,-3,-3,-1,-1,1,27,-15,23,1,-21,-11,5,-7,1,-3,45,-27,35,7,-21,-17,-13,-7,-5,3,9,-6,4,-1,-6,-1,4,4,-1,-6,27,-21,5,1,-3,1,-7,23,-11,-15,2,-2,0,2,-1,0,-1,2,-1,-1,2,-1,2,0,-2,-1,0,-1,2,-1,3,9,5,1,-3,-23,-1,5,1,3 ; TV[53]=M; kill M; intmat M[16][10]=45,3,-5,-13,-21,-7,7,-17,35,-27,45,-21,-13,-5,3,7,-7,35,-17,-27,7,1,-1,-3,-5,-1,5,-3,5,-5,27,-3,-7,-11,-15,1,23,5,1,-21,27,-3,1,5,-21,-7,1,-11,23,-15,45,-21,7,35,-27,-13,-17,-5,-7,3,45,3,-7,-17,-27,-5,35,-13,7,-21,9,-1,-1,-1,-1,-1,-1,-1,-1,-1,45,-27,-17,-7,3,35,-5,7,-13,-21,27,-21,1,23,-15,5,-11,1,-7,-3,9,-6,-1,4,-6,4,-1,-1,4,-6,7,-5,-3,-1,1,5,-1,5,-3,-5,27,-15,-11,-7,-3,23,1,1,5,-21,2,-1,-1,-1,-1,2,2,0,0,-2,2,-2,0,2,-1,0,-1,2,-1,-1,3,9,-23,5,3,5,1,1,-1,-3 ; TV[54]=M; kill M; intmat M[16][10]=45,-27,35,7,-21,-17,-13,-7,-5,3,27,-15,23,1,-21,-11,5,-7,1,-3,7,-5,5,5,-5,-3,-3,-1,-1,1,45,-27,-17,-7,3,35,-5,7,-13,-21,27,-21,1,23,-15,5,-11,1,-7,-3,45,-21,7,35,-27,-13,-17,-5,-7,3,45,3,-7,-17,-27,-5,35,-13,7,-21,9,-1,-1,-1,-1,-1,-1,-1,-1,-1,27,-3,1,5,-21,-7,1,-11,23,-15,7,1,-1,-3,-5,-1,5,-3,5,-5,45,3,-5,-13,-21,-7,7,-17,35,-27,9,-6,-1,4,-6,4,-1,-1,4,-6,27,-15,-11,-7,-3,23,1,1,5,-21,2,-1,-1,-1,-1,2,2,0,0,-2,2,-1,2,0,-2,-1,0,-1,2,-1,3,3,1,-1,-3,5,1,-23,5,9 ; TV[55]=M; kill M; intmat M[16][10]=45,-27,-17,-7,3,35,-5,7,-13,-21,27,-15,-11,-7,-3,23,1,1,5,-21,7,-5,-3,-1,1,5,-1,5,-3,-5,45,-27,35,7,-21,-17,-13,-7,-5,3,27,-21,5,1,-3,1,-7,23,-11,-15,45,-21,-13,-5,3,7,-7,35,-17,-27,45,3,-5,-13,-21,-7,7,-17,35,-27,9,-1,-1,-1,-1,-1,-1,-1,-1,-1,27,-3,-7,-11,-15,1,23,5,1,-21,7,1,-1,-3,-5,-1,5,-3,5,-5,45,3,-7,-17,-27,-5,35,-13,7,-21,9,-6,4,-1,-6,-1,4,4,-1,-6,27,-15,23,1,-21,-11,5,-7,1,-3,2,-1,2,0,-2,-1,0,-1,2,-1,2,-1,-1,-1,-1,2,2,0,0,-2,3,3,5,-23,9,1,5,-1,1,-3 ; TV[56]=M; kill M; intmat M[16][10]=45,-27,35,7,-21,-17,-13,-7,-5,3,27,-21,5,1,-3,1,-7,23,-11,-15,45,-27,-17,-7,3,35,-5,7,-13,-21,7,-5,-3,-1,1,5,-1,5,-3,-5,27,-15,-11,-7,-3,23,1,1,5,-21,45,3,-5,-13,-21,-7,7,-17,35,-27,45,-21,-13,-5,3,7,-7,35,-17,-27,9,-1,-1,-1,-1,-1,-1,-1,-1,-1,45,-21,7,35,-27,-13,-17,-5,-7,3,27,-3,1,5,-21,-7,1,-11,23,-15,9,-6,-1,4,-6,4,-1,-1,4,-6,27,-21,1,23,-15,5,-11,1,-7,-3,7,-5,5,5,-5,-3,-3,-1,-1,1,2,-1,2,0,-2,-1,0,-1,2,-1,2,-2,0,2,-1,0,-1,2,-1,-1,3,-3,1,5,9,-1,-23,1,5,3 ; TV[57]=M; kill M; intmat M[13][10]=45,3,-7,-17,-27,-5,35,-13,7,-21,27,-15,23,1,-21,-11,5,-7,1,-3,45,-27,35,7,-21,-17,-13,-7,-5,3,45,-27,-17,-7,3,35,-5,7,-13,-21,9,-1,-1,-1,-1,-1,-1,-1,-1,-1,27,-21,5,1,-3,1,-7,23,-11,-15,7,-5,-3,-1,1,5,-1,5,-3,-5,45,-21,-13,-5,3,7,-7,35,-17,-27,9,-6,4,-1,-6,-1,4,4,-1,-6,27,-3,-7,-11,-15,1,23,5,1,-21,2,-1,-1,-1,-1,2,2,0,0,-2,3,-3,-1,1,3,1,5,5,-23,9,3,3,5,-23,9,1,5,-1,1,-3 ; TV[58]=M; kill M; intmat M[12][10]=45,-21,7,35,-27,-13,-17,-5,-7,3,7,-5,5,5,-5,-3,-3,-1,-1,1,27,-21,1,23,-15,5,-11,1,-7,-3,45,-27,-17,-7,3,35,-5,7,-13,-21,45,-27,35,7,-21,-17,-13,-7,-5,3,9,-1,-1,-1,-1,-1,-1,-1,-1,-1,7,-5,-3,-1,1,5,-1,5,-3,-5,27,-21,5,1,-3,1,-7,23,-11,-15,45,-21,-13,-5,3,7,-7,35,-17,-27,2,-2,0,2,-1,0,-1,2,-1,-1,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3 ; TV[59]=M; kill M; intmat M[13][10]=45,-21,-13,-5,3,7,-7,35,-17,-27,27,-3,-7,-11,-15,1,23,5,1,-21,45,-21,7,35,-27,-13,-17,-5,-7,3,45,3,-7,-17,-27,-5,35,-13,7,-21,9,-1,-1,-1,-1,-1,-1,-1,-1,-1,7,-5,5,5,-5,-3,-3,-1,-1,1,27,-15,23,1,-21,-11,5,-7,1,-3,45,-27,35,7,-21,-17,-13,-7,-5,3,9,-6,4,-1,-6,-1,4,4,-1,-6,27,-21,5,1,-3,1,-7,23,-11,-15,2,-2,0,2,-1,0,-1,2,-1,-1,3,-3,-1,1,3,1,5,5,-23,9,3,9,5,1,-3,-23,-1,5,1,3 ; TV[60]=M; kill M; intmat M[12][10]=45,-21,-13,-5,3,7,-7,35,-17,-27,27,-3,-7,-11,-15,1,23,5,1,-21,45,-21,7,35,-27,-13,-17,-5,-7,3,45,3,-7,-17,-27,-5,35,-13,7,-21,9,-1,-1,-1,-1,-1,-1,-1,-1,-1,45,-27,-17,-7,3,35,-5,7,-13,-21,27,-21,1,23,-15,5,-11,1,-7,-3,7,-5,-3,-1,1,5,-1,5,-3,-5,2,-1,-1,-1,-1,2,2,0,0,-2,2,-2,0,2,-1,0,-1,2,-1,-1,3,-3,-1,1,3,1,5,5,-23,9,3,9,-23,5,3,5,1,1,-1,-3 ; TV[61]=M; kill M; intmat M[11][10]=9,-1,-1,-1,-1,-1,-1,-1,-1,-1,45,3,-7,-17,-27,-5,35,-13,7,-21,45,-21,7,35,-27,-13,-17,-5,-7,3,27,-21,1,23,-15,5,-11,1,-7,-3,2,-1,-1,-1,-1,2,2,0,0,-2,45,-27,-17,-7,3,35,-5,7,-13,-21,7,-5,5,5,-5,-3,-3,-1,-1,1,27,-15,23,1,-21,-11,5,-7,1,-3,45,-27,35,7,-21,-17,-13,-7,-5,3,3,-3,-1,1,3,1,5,5,-23,9,3,3,1,-1,-3,5,1,-23,5,9 ; TV[62]=M; kill M; intmat M[16][10]=45,-27,35,7,-21,-17,-13,-7,-5,3,27,-15,23,1,-21,-11,5,-7,1,-3,7,-5,5,5,-5,-3,-3,-1,-1,1,45,-27,-17,-7,3,35,-5,7,-13,-21,27,-21,1,23,-15,5,-11,1,-7,-3,45,-21,7,35,-27,-13,-17,-5,-7,3,45,3,-7,-17,-27,-5,35,-13,7,-21,9,-1,-1,-1,-1,-1,-1,-1,-1,-1,45,-21,-13,-5,3,7,-7,35,-17,-27,27,-3,-7,-11,-15,1,23,5,1,-21,9,-6,4,-1,-6,-1,4,4,-1,-6,7,-5,-3,-1,1,5,-1,5,-3,-5,27,-21,5,1,-3,1,-7,23,-11,-15,2,-1,-1,-1,-1,2,2,0,0,-2,2,-2,0,2,-1,0,-1,2,-1,-1,3,-3,-1,1,3,1,5,5,-23,9 ; TV[63]=M; kill M; intmat M[21][10]=45,3,-5,-13,-21,-7,7,-17,35,-27,45,-21,-13,-5,3,7,-7,35,-17,-27,7,1,-1,-3,-5,-1,5,-3,5,-5,27,-3,-7,-11,-15,1,23,5,1,-21,27,-3,1,5,-21,-7,1,-11,23,-15,45,-21,7,35,-27,-13,-17,-5,-7,3,45,3,-7,-17,-27,-5,35,-13,7,-21,9,-1,-1,-1,-1,-1,-1,-1,-1,-1,7,-5,5,5,-5,-3,-3,-1,-1,1,27,-15,23,1,-21,-11,5,-7,1,-3,45,-27,35,7,-21,-17,-13,-7,-5,3,45,-27,-17,-7,3,35,-5,7,-13,-21,27,-21,1,23,-15,5,-11,1,-7,-3,9,-6,-1,4,-6,4,-1,-1,4,-6,7,-5,-3,-1,1,5,-1,5,-3,-5,27,-15,-11,-7,-3,23,1,1,5,-21,9,-6,4,-1,-6,-1,4,4,-1,-6,27,-21,5,1,-3,1,-7,23,-11,-15,2,-1,-1,-1,-1,2,2,0,0,-2,2,-1,2,0,-2,-1,0,-1,2,-1,2,-2,0,2,-1,0,-1,2,-1,-1 ; TV[64]=M; kill M; intmat M[8][10]=45,-21,7,35,-27,-13,-17,-5,-7,3,45,3,-7,-17,-27,-5,35,-13,7,-21,7,1,-1,-3,-5,-1,5,-3,5,-5,27,-3,1,5,-21,-7,1,-11,23,-15,1,-1,1,3,-5,-1,3,-1,1,-1,3,9,-23,5,3,5,1,1,-1,-3,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3 ; TV[65]=M; kill M; intmat M[7][10]=1,-1,1,3,-5,-1,3,-1,1,-1,3,9,-23,5,3,5,1,1,-1,-3,3,3,1,-1,-3,5,1,-23,5,9,3,-3,-1,1,3,1,5,5,-23,9,3,9,5,1,-3,-23,-1,5,1,3,45,-21,7,35,-27,-13,-17,-5,-7,3,45,3,-7,-17,-27,-5,35,-13,7,-21 ; TV[66]=M; kill M; intmat M[8][10]=45,3,-7,-17,-27,-5,35,-13,7,-21,45,-21,7,35,-27,-13,-17,-5,-7,3,27,-21,1,23,-15,5,-11,1,-7,-3,2,-1,-1,-1,-1,2,2,0,0,-2,1,-1,1,3,-5,-1,3,-1,1,-1,3,3,1,-1,-3,5,1,-23,5,9,3,-3,-1,1,3,1,5,5,-23,9,3,9,-23,5,3,5,1,1,-1,-3 ; TV[67]=M; kill M; intmat M[8][10]=45,3,-7,-17,-27,-5,35,-13,7,-21,45,-21,7,35,-27,-13,-17,-5,-7,3,2,-2,0,2,-1,0,-1,2,-1,-1,27,-3,-7,-11,-15,1,23,5,1,-21,1,-1,1,3,-5,-1,3,-1,1,-1,3,9,-23,5,3,5,1,1,-1,-3,3,-3,-1,1,3,1,5,5,-23,9,3,9,5,1,-3,-23,-1,5,1,3 ; TV[68]=M; kill M; intmat M[10][10]=27,-3,1,5,-21,-7,1,-11,23,-15,7,1,-1,-3,-5,-1,5,-3,5,-5,45,3,-7,-17,-27,-5,35,-13,7,-21,45,-21,7,35,-27,-13,-17,-5,-7,3,27,-21,1,23,-15,5,-11,1,-7,-3,9,-6,-1,4,-6,4,-1,-1,4,-6,2,-1,-1,-1,-1,2,2,0,0,-2,1,-1,1,3,-5,-1,3,-1,1,-1,3,3,1,-1,-3,5,1,-23,5,9,3,9,-23,5,3,5,1,1,-1,-3 ; TV[69]=M; kill M; intmat M[10][10]=7,1,-1,-3,-5,-1,5,-3,5,-5,27,-3,1,5,-21,-7,1,-11,23,-15,45,-21,7,35,-27,-13,-17,-5,-7,3,45,3,-7,-17,-27,-5,35,-13,7,-21,7,-5,5,5,-5,-3,-3,-1,-1,1,27,-15,23,1,-21,-11,5,-7,1,-3,2,-1,2,0,-2,-1,0,-1,2,-1,1,-1,1,3,-5,-1,3,-1,1,-1,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3 ; TV[70]=M; kill M; intmat M[9][10]=45,-21,7,35,-27,-13,-17,-5,-7,3,27,-3,1,5,-21,-7,1,-11,23,-15,2,-2,0,2,-1,0,-1,2,-1,-1,27,-3,-7,-11,-15,1,23,5,1,-21,7,1,-1,-3,-5,-1,5,-3,5,-5,45,3,-7,-17,-27,-5,35,-13,7,-21,1,-1,1,3,-5,-1,3,-1,1,-1,3,9,-23,5,3,5,1,1,-1,-3,3,9,5,1,-3,-23,-1,5,1,3 ; TV[71]=M; kill M; intmat M[8][10]=45,3,-7,-17,-27,-5,35,-13,7,-21,45,-21,7,35,-27,-13,-17,-5,-7,3,7,-5,5,5,-5,-3,-3,-1,-1,1,27,-15,23,1,-21,-11,5,-7,1,-3,1,-1,1,3,-5,-1,3,-1,1,-1,3,3,1,-1,-3,5,1,-23,5,9,3,-3,-1,1,3,1,5,5,-23,9,3,9,5,1,-3,-23,-1,5,1,3 ; TV[72]=M; kill M; intmat M[12][10]=7,1,-1,-3,-5,-1,5,-3,5,-5,27,-3,1,5,-21,-7,1,-11,23,-15,27,-3,-7,-11,-15,1,23,5,1,-21,45,-21,7,35,-27,-13,-17,-5,-7,3,45,3,-7,-17,-27,-5,35,-13,7,-21,7,-5,5,5,-5,-3,-3,-1,-1,1,27,-15,23,1,-21,-11,5,-7,1,-3,9,-6,4,-1,-6,-1,4,4,-1,-6,2,-2,0,2,-1,0,-1,2,-1,-1,2,-1,2,0,-2,-1,0,-1,2,-1,1,-1,1,3,-5,-1,3,-1,1,-1,3,9,5,1,-3,-23,-1,5,1,3 ; TV[73]=M; kill M; intmat M[10][10]=27,-3,-7,-11,-15,1,23,5,1,-21,45,-21,7,35,-27,-13,-17,-5,-7,3,45,3,-7,-17,-27,-5,35,-13,7,-21,7,-5,5,5,-5,-3,-3,-1,-1,1,27,-15,23,1,-21,-11,5,-7,1,-3,9,-6,4,-1,-6,-1,4,4,-1,-6,2,-2,0,2,-1,0,-1,2,-1,-1,1,-1,1,3,-5,-1,3,-1,1,-1,3,-3,-1,1,3,1,5,5,-23,9,3,9,5,1,-3,-23,-1,5,1,3 ; TV[74]=M; kill M; intmat M[9][10]=27,-3,-7,-11,-15,1,23,5,1,-21,45,-21,7,35,-27,-13,-17,-5,-7,3,45,3,-7,-17,-27,-5,35,-13,7,-21,27,-21,1,23,-15,5,-11,1,-7,-3,2,-1,-1,-1,-1,2,2,0,0,-2,2,-2,0,2,-1,0,-1,2,-1,-1,1,-1,1,3,-5,-1,3,-1,1,-1,3,-3,-1,1,3,1,5,5,-23,9,3,9,-23,5,3,5,1,1,-1,-3 ; TV[75]=M; kill M; intmat M[9][10]=45,3,-7,-17,-27,-5,35,-13,7,-21,27,-15,23,1,-21,-11,5,-7,1,-3,2,-1,-1,-1,-1,2,2,0,0,-2,27,-21,1,23,-15,5,-11,1,-7,-3,7,-5,5,5,-5,-3,-3,-1,-1,1,45,-21,7,35,-27,-13,-17,-5,-7,3,1,-1,1,3,-5,-1,3,-1,1,-1,3,-3,-1,1,3,1,5,5,-23,9,3,3,1,-1,-3,5,1,-23,5,9 ; TV[76]=M; kill M; intmat M[11][10]=45,3,-7,-17,-27,-5,35,-13,7,-21,7,1,-1,-3,-5,-1,5,-3,5,-5,27,-3,-7,-11,-15,1,23,5,1,-21,27,-3,1,5,-21,-7,1,-11,23,-15,45,-21,7,35,-27,-13,-17,-5,-7,3,9,-6,-1,4,-6,4,-1,-1,4,-6,27,-21,1,23,-15,5,-11,1,-7,-3,2,-2,0,2,-1,0,-1,2,-1,-1,2,-1,-1,-1,-1,2,2,0,0,-2,1,-1,1,3,-5,-1,3,-1,1,-1,3,9,-23,5,3,5,1,1,-1,-3 ; TV[77]=M; kill M; intmat M[12][10]=27,-15,23,1,-21,-11,5,-7,1,-3,7,-5,5,5,-5,-3,-3,-1,-1,1,27,-21,1,23,-15,5,-11,1,-7,-3,45,-21,7,35,-27,-13,-17,-5,-7,3,45,3,-7,-17,-27,-5,35,-13,7,-21,27,-3,1,5,-21,-7,1,-11,23,-15,7,1,-1,-3,-5,-1,5,-3,5,-5,9,-6,-1,4,-6,4,-1,-1,4,-6,2,-1,-1,-1,-1,2,2,0,0,-2,2,-1,2,0,-2,-1,0,-1,2,-1,1,-1,1,3,-5,-1,3,-1,1,-1,3,3,1,-1,-3,5,1,-23,5,9 ; TV[78]=M; kill M; intmat M[14][10]=7,1,-1,-3,-5,-1,5,-3,5,-5,27,-3,1,5,-21,-7,1,-11,23,-15,27,-3,-7,-11,-15,1,23,5,1,-21,45,-21,7,35,-27,-13,-17,-5,-7,3,45,3,-7,-17,-27,-5,35,-13,7,-21,7,-5,5,5,-5,-3,-3,-1,-1,1,27,-15,23,1,-21,-11,5,-7,1,-3,27,-21,1,23,-15,5,-11,1,-7,-3,9,-6,-1,4,-6,4,-1,-1,4,-6,9,-6,4,-1,-6,-1,4,4,-1,-6,2,-1,-1,-1,-1,2,2,0,0,-2,2,-1,2,0,-2,-1,0,-1,2,-1,2,-2,0,2,-1,0,-1,2,-1,-1,1,-1,1,3,-5,-1,3,-1,1,-1 ; TV[79]=M; kill M; intmat M[11][10]=45,-21,7,35,-27,-13,-17,-5,-7,3,7,-5,5,5,-5,-3,-3,-1,-1,1,27,-21,1,23,-15,5,-11,1,-7,-3,27,-15,23,1,-21,-11,5,-7,1,-3,45,3,-7,-17,-27,-5,35,-13,7,-21,9,-6,4,-1,-6,-1,4,4,-1,-6,27,-3,-7,-11,-15,1,23,5,1,-21,2,-1,-1,-1,-1,2,2,0,0,-2,2,-2,0,2,-1,0,-1,2,-1,-1,1,-1,1,3,-5,-1,3,-1,1,-1,3,-3,-1,1,3,1,5,5,-23,9 ; TV[80]=M; kill M; intmat M[7][10]=3,3,5,-23,9,1,5,-1,1,-3,3,-3,1,5,9,-1,-23,1,5,3,1,-1,-1,-1,-1,1,1,3,3,-5,3,9,5,1,-3,-23,-1,5,1,3,3,9,-23,5,3,5,1,1,-1,-3,45,-21,-13,-5,3,7,-7,35,-17,-27,45,3,-5,-13,-21,-7,7,-17,35,-27 ; TV[81]=M; kill M; intmat M[8][10]=45,-21,-13,-5,3,7,-7,35,-17,-27,45,3,-5,-13,-21,-7,7,-17,35,-27,7,1,-1,-3,-5,-1,5,-3,5,-5,27,-3,-7,-11,-15,1,23,5,1,-21,3,3,5,-23,9,1,5,-1,1,-3,1,-1,-1,-1,-1,1,1,3,3,-5,3,9,5,1,-3,-23,-1,5,1,3,3,9,-23,5,3,5,1,1,-1,-3 ; TV[82]=M; kill M; intmat M[8][10]=45,3,-5,-13,-21,-7,7,-17,35,-27,27,-3,1,5,-21,-7,1,-11,23,-15,2,-2,0,2,-1,0,-1,2,-1,-1,45,-21,-13,-5,3,7,-7,35,-17,-27,3,-3,1,5,9,-1,-23,1,5,3,1,-1,-1,-1,-1,1,1,3,3,-5,3,9,-23,5,3,5,1,1,-1,-3,3,9,5,1,-3,-23,-1,5,1,3 ; TV[83]=M; kill M; intmat M[8][10]=45,3,-5,-13,-21,-7,7,-17,35,-27,45,-21,-13,-5,3,7,-7,35,-17,-27,27,-21,5,1,-3,1,-7,23,-11,-15,2,-1,2,0,-2,-1,0,-1,2,-1,3,-3,1,5,9,-1,-23,1,5,3,1,-1,-1,-1,-1,1,1,3,3,-5,3,3,5,-23,9,1,5,-1,1,-3,3,9,5,1,-3,-23,-1,5,1,3 ; TV[84]=M; kill M; intmat M[8][10]=45,3,-5,-13,-21,-7,7,-17,35,-27,45,-21,-13,-5,3,7,-7,35,-17,-27,7,-5,-3,-1,1,5,-1,5,-3,-5,27,-15,-11,-7,-3,23,1,1,5,-21,3,-3,1,5,9,-1,-23,1,5,3,1,-1,-1,-1,-1,1,1,3,3,-5,3,3,5,-23,9,1,5,-1,1,-3,3,9,-23,5,3,5,1,1,-1,-3 ; TV[85]=M; kill M; intmat M[9][10]=45,-21,-13,-5,3,7,-7,35,-17,-27,27,-3,-7,-11,-15,1,23,5,1,-21,2,-2,0,2,-1,0,-1,2,-1,-1,27,-3,1,5,-21,-7,1,-11,23,-15,7,1,-1,-3,-5,-1,5,-3,5,-5,45,3,-5,-13,-21,-7,7,-17,35,-27,1,-1,-1,-1,-1,1,1,3,3,-5,3,9,-23,5,3,5,1,1,-1,-3,3,9,5,1,-3,-23,-1,5,1,3 ; TV[86]=M; kill M; intmat M[10][10]=7,1,-1,-3,-5,-1,5,-3,5,-5,27,-3,-7,-11,-15,1,23,5,1,-21,45,-21,-13,-5,3,7,-7,35,-17,-27,45,3,-5,-13,-21,-7,7,-17,35,-27,7,-5,-3,-1,1,5,-1,5,-3,-5,27,-15,-11,-7,-3,23,1,1,5,-21,2,-1,-1,-1,-1,2,2,0,0,-2,1,-1,-1,-1,-1,1,1,3,3,-5,3,3,5,-23,9,1,5,-1,1,-3,3,9,-23,5,3,5,1,1,-1,-3 ; TV[87]=M; kill M; intmat M[10][10]=27,-3,-7,-11,-15,1,23,5,1,-21,7,1,-1,-3,-5,-1,5,-3,5,-5,45,3,-5,-13,-21,-7,7,-17,35,-27,45,-21,-13,-5,3,7,-7,35,-17,-27,27,-21,5,1,-3,1,-7,23,-11,-15,9,-6,4,-1,-6,-1,4,4,-1,-6,2,-1,2,0,-2,-1,0,-1,2,-1,1,-1,-1,-1,-1,1,1,3,3,-5,3,3,5,-23,9,1,5,-1,1,-3,3,9,5,1,-3,-23,-1,5,1,3 ; TV[88]=M; kill M; intmat M[9][10]=45,3,-5,-13,-21,-7,7,-17,35,-27,27,-15,-11,-7,-3,23,1,1,5,-21,2,-1,2,0,-2,-1,0,-1,2,-1,27,-21,5,1,-3,1,-7,23,-11,-15,7,-5,-3,-1,1,5,-1,5,-3,-5,45,-21,-13,-5,3,7,-7,35,-17,-27,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,1,5,9,-1,-23,1,5,3,3,3,5,-23,9,1,5,-1,1,-3 ; TV[89]=M; kill M; intmat M[9][10]=45,-21,-13,-5,3,7,-7,35,-17,-27,27,-3,1,5,-21,-7,1,-11,23,-15,45,3,-5,-13,-21,-7,7,-17,35,-27,27,-21,5,1,-3,1,-7,23,-11,-15,2,-1,2,0,-2,-1,0,-1,2,-1,2,-2,0,2,-1,0,-1,2,-1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,1,5,9,-1,-23,1,5,3,3,9,5,1,-3,-23,-1,5,1,3 ; TV[90]=M; kill M; intmat M[10][10]=45,-21,-13,-5,3,7,-7,35,-17,-27,27,-3,1,5,-21,-7,1,-11,23,-15,45,3,-5,-13,-21,-7,7,-17,35,-27,27,-15,-11,-7,-3,23,1,1,5,-21,9,-6,-1,4,-6,4,-1,-1,4,-6,7,-5,-3,-1,1,5,-1,5,-3,-5,2,-2,0,2,-1,0,-1,2,-1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,1,5,9,-1,-23,1,5,3,3,9,-23,5,3,5,1,1,-1,-3 ; TV[91]=M; kill M; intmat M[12][10]=27,-15,-11,-7,-3,23,1,1,5,-21,7,-5,-3,-1,1,5,-1,5,-3,-5,27,-21,5,1,-3,1,-7,23,-11,-15,45,-21,-13,-5,3,7,-7,35,-17,-27,45,3,-5,-13,-21,-7,7,-17,35,-27,27,-3,-7,-11,-15,1,23,5,1,-21,7,1,-1,-3,-5,-1,5,-3,5,-5,9,-6,4,-1,-6,-1,4,4,-1,-6,2,-1,2,0,-2,-1,0,-1,2,-1,2,-1,-1,-1,-1,2,2,0,0,-2,1,-1,-1,-1,-1,1,1,3,3,-5,3,3,5,-23,9,1,5,-1,1,-3 ; TV[92]=M; kill M; intmat M[11][10]=45,3,-5,-13,-21,-7,7,-17,35,-27,7,1,-1,-3,-5,-1,5,-3,5,-5,27,-3,1,5,-21,-7,1,-11,23,-15,27,-3,-7,-11,-15,1,23,5,1,-21,45,-21,-13,-5,3,7,-7,35,-17,-27,9,-6,4,-1,-6,-1,4,4,-1,-6,27,-21,5,1,-3,1,-7,23,-11,-15,2,-2,0,2,-1,0,-1,2,-1,-1,2,-1,2,0,-2,-1,0,-1,2,-1,1,-1,-1,-1,-1,1,1,3,3,-5,3,9,5,1,-3,-23,-1,5,1,3 ; TV[93]=M; kill M; intmat M[11][10]=2,-1,2,0,-2,-1,0,-1,2,-1,27,-3,1,5,-21,-7,1,-11,23,-15,9,-6,-1,4,-6,4,-1,-1,4,-6,27,-15,-11,-7,-3,23,1,1,5,-21,45,3,-5,-13,-21,-7,7,-17,35,-27,7,-5,-3,-1,1,5,-1,5,-3,-5,27,-21,5,1,-3,1,-7,23,-11,-15,45,-21,-13,-5,3,7,-7,35,-17,-27,2,-2,0,2,-1,0,-1,2,-1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,1,5,9,-1,-23,1,5,3 ; TV[94]=M; kill M; intmat M[12][10]=45,-21,-13,-5,3,7,-7,35,-17,-27,27,-3,-7,-11,-15,1,23,5,1,-21,27,-3,1,5,-21,-7,1,-11,23,-15,7,1,-1,-3,-5,-1,5,-3,5,-5,45,3,-5,-13,-21,-7,7,-17,35,-27,27,-15,-11,-7,-3,23,1,1,5,-21,9,-6,-1,4,-6,4,-1,-1,4,-6,7,-5,-3,-1,1,5,-1,5,-3,-5,2,-1,-1,-1,-1,2,2,0,0,-2,2,-2,0,2,-1,0,-1,2,-1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,3,9,-23,5,3,5,1,1,-1,-3 ; TV[95]=M; kill M; intmat M[14][10]=45,-21,-13,-5,3,7,-7,35,-17,-27,27,-3,-7,-11,-15,1,23,5,1,-21,27,-3,1,5,-21,-7,1,-11,23,-15,7,1,-1,-3,-5,-1,5,-3,5,-5,45,3,-5,-13,-21,-7,7,-17,35,-27,27,-15,-11,-7,-3,23,1,1,5,-21,9,-6,-1,4,-6,4,-1,-1,4,-6,7,-5,-3,-1,1,5,-1,5,-3,-5,9,-6,4,-1,-6,-1,4,4,-1,-6,27,-21,5,1,-3,1,-7,23,-11,-15,2,-1,2,0,-2,-1,0,-1,2,-1,2,-1,-1,-1,-1,2,2,0,0,-2,2,-2,0,2,-1,0,-1,2,-1,-1,1,-1,-1,-1,-1,1,1,3,3,-5 ; TV[96]=M; kill M; intmat M[8][10]=45,-27,35,7,-21,-17,-13,-7,-5,3,2,-1,2,0,-2,-1,0,-1,2,-1,27,-15,-11,-7,-3,23,1,1,5,-21,45,-27,-17,-7,3,35,-5,7,-13,-21,1,-5,3,1,-1,3,-1,1,-1,-1,3,3,1,-1,-3,5,1,-23,5,9,3,-3,1,5,9,-1,-23,1,5,3,3,3,5,-23,9,1,5,-1,1,-3 ; TV[97]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,3,-3,-1,1,3,1,5,5,-23,9,3,3,1,-1,-3,5,1,-23,5,9,3,-3,1,5,9,-1,-23,1,5,3,3,3,5,-23,9,1,5,-1,1,-3,45,-27,-17,-7,3,35,-5,7,-13,-21,45,-27,35,7,-21,-17,-13,-7,-5,3 ; TV[98]=M; kill M; intmat M[8][10]=45,-27,-17,-7,3,35,-5,7,-13,-21,45,-27,35,7,-21,-17,-13,-7,-5,3,7,-5,5,5,-5,-3,-3,-1,-1,1,27,-21,1,23,-15,5,-11,1,-7,-3,1,-5,3,1,-1,3,-1,1,-1,-1,3,3,1,-1,-3,5,1,-23,5,9,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3 ; TV[99]=M; kill M; intmat M[8][10]=45,-27,35,7,-21,-17,-13,-7,-5,3,27,-15,23,1,-21,-11,5,-7,1,-3,2,-1,-1,-1,-1,2,2,0,0,-2,45,-27,-17,-7,3,35,-5,7,-13,-21,1,-5,3,1,-1,3,-1,1,-1,-1,3,3,1,-1,-3,5,1,-23,5,9,3,-3,-1,1,3,1,5,5,-23,9,3,3,5,-23,9,1,5,-1,1,-3 ; TV[100]=M; kill M; intmat M[8][10]=45,-27,35,7,-21,-17,-13,-7,-5,3,45,-27,-17,-7,3,35,-5,7,-13,-21,7,-5,-3,-1,1,5,-1,5,-3,-5,27,-21,5,1,-3,1,-7,23,-11,-15,1,-5,3,1,-1,3,-1,1,-1,-1,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,3,3,5,-23,9,1,5,-1,1,-3 ; TV[101]=M; kill M; intmat M[9][10]=2,-1,2,0,-2,-1,0,-1,2,-1,27,-15,23,1,-21,-11,5,-7,1,-3,45,-27,35,7,-21,-17,-13,-7,-5,3,45,-27,-17,-7,3,35,-5,7,-13,-21,27,-15,-11,-7,-3,23,1,1,5,-21,2,-1,-1,-1,-1,2,2,0,0,-2,1,-5,3,1,-1,3,-1,1,-1,-1,3,3,1,-1,-3,5,1,-23,5,9,3,3,5,-23,9,1,5,-1,1,-3 ; TV[102]=M; kill M; intmat M[9][10]=45,-27,35,7,-21,-17,-13,-7,-5,3,27,-21,5,1,-3,1,-7,23,-11,-15,2,-1,2,0,-2,-1,0,-1,2,-1,27,-15,-11,-7,-3,23,1,1,5,-21,7,-5,-3,-1,1,5,-1,5,-3,-5,45,-27,-17,-7,3,35,-5,7,-13,-21,1,-5,3,1,-1,3,-1,1,-1,-1,3,-3,1,5,9,-1,-23,1,5,3,3,3,5,-23,9,1,5,-1,1,-3 ; TV[103]=M; kill M; intmat M[10][10]=27,-21,1,23,-15,5,-11,1,-7,-3,7,-5,5,5,-5,-3,-3,-1,-1,1,45,-27,35,7,-21,-17,-13,-7,-5,3,45,-27,-17,-7,3,35,-5,7,-13,-21,27,-15,-11,-7,-3,23,1,1,5,-21,9,-6,-1,4,-6,4,-1,-1,4,-6,2,-1,2,0,-2,-1,0,-1,2,-1,1,-5,3,1,-1,3,-1,1,-1,-1,3,3,1,-1,-3,5,1,-23,5,9,3,-3,1,5,9,-1,-23,1,5,3 ; TV[104]=M; kill M; intmat M[10][10]=27,-21,5,1,-3,1,-7,23,-11,-15,9,-6,4,-1,-6,-1,4,4,-1,-6,27,-15,23,1,-21,-11,5,-7,1,-3,45,-27,35,7,-21,-17,-13,-7,-5,3,45,-27,-17,-7,3,35,-5,7,-13,-21,7,-5,-3,-1,1,5,-1,5,-3,-5,2,-1,-1,-1,-1,2,2,0,0,-2,1,-5,3,1,-1,3,-1,1,-1,-1,3,-3,-1,1,3,1,5,5,-23,9,3,3,5,-23,9,1,5,-1,1,-3 ; TV[105]=M; kill M; intmat M[9][10]=45,-27,-17,-7,3,35,-5,7,-13,-21,2,-1,-1,-1,-1,2,2,0,0,-2,27,-21,1,23,-15,5,-11,1,-7,-3,7,-5,5,5,-5,-3,-3,-1,-1,1,27,-15,23,1,-21,-11,5,-7,1,-3,45,-27,35,7,-21,-17,-13,-7,-5,3,1,-5,3,1,-1,3,-1,1,-1,-1,3,-3,-1,1,3,1,5,5,-23,9,3,3,1,-1,-3,5,1,-23,5,9 ; TV[106]=M; kill M; intmat M[12][10]=45,-27,-17,-7,3,35,-5,7,-13,-21,7,-5,-3,-1,1,5,-1,5,-3,-5,27,-15,-11,-7,-3,23,1,1,5,-21,27,-21,5,1,-3,1,-7,23,-11,-15,45,-27,35,7,-21,-17,-13,-7,-5,3,7,-5,5,5,-5,-3,-3,-1,-1,1,9,-6,-1,4,-6,4,-1,-1,4,-6,27,-21,1,23,-15,5,-11,1,-7,-3,2,-1,2,0,-2,-1,0,-1,2,-1,2,-2,0,2,-1,0,-1,2,-1,-1,1,-5,3,1,-1,3,-1,1,-1,-1,3,-3,1,5,9,-1,-23,1,5,3 ; TV[107]=M; kill M; intmat M[11][10]=2,-1,2,0,-2,-1,0,-1,2,-1,27,-15,23,1,-21,-11,5,-7,1,-3,9,-6,4,-1,-6,-1,4,4,-1,-6,27,-21,5,1,-3,1,-7,23,-11,-15,45,-27,35,7,-21,-17,-13,-7,-5,3,7,-5,-3,-1,1,5,-1,5,-3,-5,27,-15,-11,-7,-3,23,1,1,5,-21,45,-27,-17,-7,3,35,-5,7,-13,-21,2,-1,-1,-1,-1,2,2,0,0,-2,1,-5,3,1,-1,3,-1,1,-1,-1,3,3,5,-23,9,1,5,-1,1,-3 ; TV[108]=M; kill M; intmat M[10][10]=7,-5,5,5,-5,-3,-3,-1,-1,1,27,-21,1,23,-15,5,-11,1,-7,-3,45,-27,-17,-7,3,35,-5,7,-13,-21,45,-27,35,7,-21,-17,-13,-7,-5,3,7,-5,-3,-1,1,5,-1,5,-3,-5,27,-21,5,1,-3,1,-7,23,-11,-15,2,-2,0,2,-1,0,-1,2,-1,-1,1,-5,3,1,-1,3,-1,1,-1,-1,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3 ; TV[109]=M; kill M; intmat M[11][10]=45,-27,35,7,-21,-17,-13,-7,-5,3,27,-15,23,1,-21,-11,5,-7,1,-3,7,-5,5,5,-5,-3,-3,-1,-1,1,27,-21,1,23,-15,5,-11,1,-7,-3,45,-27,-17,-7,3,35,-5,7,-13,-21,9,-6,-1,4,-6,4,-1,-1,4,-6,27,-15,-11,-7,-3,23,1,1,5,-21,2,-1,-1,-1,-1,2,2,0,0,-2,2,-1,2,0,-2,-1,0,-1,2,-1,1,-5,3,1,-1,3,-1,1,-1,-1,3,3,1,-1,-3,5,1,-23,5,9 ; TV[110]=M; kill M; intmat M[14][10]=2,-1,2,0,-2,-1,0,-1,2,-1,27,-21,5,1,-3,1,-7,23,-11,-15,9,-6,4,-1,-6,-1,4,4,-1,-6,7,-5,5,5,-5,-3,-3,-1,-1,1,27,-15,23,1,-21,-11,5,-7,1,-3,45,-27,35,7,-21,-17,-13,-7,-5,3,45,-27,-17,-7,3,35,-5,7,-13,-21,27,-21,1,23,-15,5,-11,1,-7,-3,9,-6,-1,4,-6,4,-1,-1,4,-6,7,-5,-3,-1,1,5,-1,5,-3,-5,27,-15,-11,-7,-3,23,1,1,5,-21,2,-2,0,2,-1,0,-1,2,-1,-1,2,-1,-1,-1,-1,2,2,0,0,-2,1,-5,3,1,-1,3,-1,1,-1,-1 ; TV[111]=M; kill M; intmat M[12][10]=45,-27,-17,-7,3,35,-5,7,-13,-21,27,-21,1,23,-15,5,-11,1,-7,-3,7,-5,5,5,-5,-3,-3,-1,-1,1,27,-15,23,1,-21,-11,5,-7,1,-3,45,-27,35,7,-21,-17,-13,-7,-5,3,27,-21,5,1,-3,1,-7,23,-11,-15,9,-6,4,-1,-6,-1,4,4,-1,-6,7,-5,-3,-1,1,5,-1,5,-3,-5,2,-2,0,2,-1,0,-1,2,-1,-1,2,-1,-1,-1,-1,2,2,0,0,-2,1,-5,3,1,-1,3,-1,1,-1,-1,3,-3,-1,1,3,1,5,5,-23,9 ; TV[112]=M; kill M; intmat M[8][10]=45,3,-7,-17,-27,-5,35,-13,7,-21,7,1,-1,-3,-5,-1,5,-3,5,-5,2,-1,2,0,-2,-1,0,-1,2,-1,27,-15,23,1,-21,-11,5,-7,1,-3,9,-3,11,-5,-21,-5,23,-7,7,-9,3,3,5,-23,9,1,5,-1,1,-3,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3 ; TV[113]=M; kill M; intmat M[8][10]=45,3,-7,-17,-27,-5,35,-13,7,-21,7,1,-1,-3,-5,-1,5,-3,5,-5,2,-1,2,0,-2,-1,0,-1,2,-1,27,-15,23,1,-21,-11,5,-7,1,-3,9,-3,11,-5,-21,-5,23,-7,7,-9,1,-1,1,3,-5,-1,3,-1,1,-1,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3 ; TV[114]=M; kill M; intmat M[7][10]=9,-3,11,-5,-21,-5,23,-7,7,-9,3,3,5,-23,9,1,5,-1,1,-3,3,3,1,-1,-3,5,1,-23,5,9,3,-3,-1,1,3,1,5,5,-23,9,27,-15,23,1,-21,-11,5,-7,1,-3,3,9,5,1,-3,-23,-1,5,1,3,45,3,-7,-17,-27,-5,35,-13,7,-21 ; TV[115]=M; kill M; intmat M[7][10]=9,-3,11,-5,-21,-5,23,-7,7,-9,1,-1,1,3,-5,-1,3,-1,1,-1,3,3,1,-1,-3,5,1,-23,5,9,3,-3,-1,1,3,1,5,5,-23,9,27,-15,23,1,-21,-11,5,-7,1,-3,3,9,5,1,-3,-23,-1,5,1,3,45,3,-7,-17,-27,-5,35,-13,7,-21 ; TV[116]=M; kill M; intmat M[7][10]=9,-3,11,-5,-21,-5,23,-7,7,-9,2,-1,-1,-1,-1,2,2,0,0,-2,1,-1,1,3,-5,-1,3,-1,1,-1,3,-3,-1,1,3,1,5,5,-23,9,27,-15,23,1,-21,-11,5,-7,1,-3,3,3,1,-1,-3,5,1,-23,5,9,45,3,-7,-17,-27,-5,35,-13,7,-21 ; TV[117]=M; kill M; intmat M[8][10]=45,3,-7,-17,-27,-5,35,-13,7,-21,27,-3,-7,-11,-15,1,23,5,1,-21,9,-6,4,-1,-6,-1,4,4,-1,-6,27,-15,23,1,-21,-11,5,-7,1,-3,9,-3,11,-5,-21,-5,23,-7,7,-9,1,-1,1,3,-5,-1,3,-1,1,-1,3,-3,-1,1,3,1,5,5,-23,9,3,9,5,1,-3,-23,-1,5,1,3 ; TV[118]=M; kill M; intmat M[7][10]=9,-3,11,-5,-21,-5,23,-7,7,-9,3,3,5,-23,9,1,5,-1,1,-3,2,-1,-1,-1,-1,2,2,0,0,-2,3,-3,-1,1,3,1,5,5,-23,9,27,-15,23,1,-21,-11,5,-7,1,-3,3,3,1,-1,-3,5,1,-23,5,9,45,3,-7,-17,-27,-5,35,-13,7,-21 ; TV[119]=M; kill M; intmat M[9][10]=45,3,-7,-17,-27,-5,35,-13,7,-21,7,1,-1,-3,-5,-1,5,-3,5,-5,27,-3,-7,-11,-15,1,23,5,1,-21,9,-6,4,-1,-6,-1,4,4,-1,-6,2,-1,2,0,-2,-1,0,-1,2,-1,27,-15,23,1,-21,-11,5,-7,1,-3,9,-3,11,-5,-21,-5,23,-7,7,-9,3,3,5,-23,9,1,5,-1,1,-3,3,9,5,1,-3,-23,-1,5,1,3 ; TV[120]=M; kill M; intmat M[8][10]=45,3,-7,-17,-27,-5,35,-13,7,-21,27,-15,23,1,-21,-11,5,-7,1,-3,2,-1,2,0,-2,-1,0,-1,2,-1,7,1,-1,-3,-5,-1,5,-3,5,-5,9,-3,11,-5,-21,-5,23,-7,7,-9,3,3,5,-23,9,1,5,-1,1,-3,2,-1,-1,-1,-1,2,2,0,0,-2,3,3,1,-1,-3,5,1,-23,5,9 ; TV[121]=M; kill M; intmat M[9][10]=45,3,-7,-17,-27,-5,35,-13,7,-21,7,1,-1,-3,-5,-1,5,-3,5,-5,27,-3,-7,-11,-15,1,23,5,1,-21,9,-6,4,-1,-6,-1,4,4,-1,-6,2,-1,2,0,-2,-1,0,-1,2,-1,27,-15,23,1,-21,-11,5,-7,1,-3,9,-3,11,-5,-21,-5,23,-7,7,-9,1,-1,1,3,-5,-1,3,-1,1,-1,3,9,5,1,-3,-23,-1,5,1,3 ; TV[122]=M; kill M; intmat M[8][10]=45,3,-7,-17,-27,-5,35,-13,7,-21,27,-15,23,1,-21,-11,5,-7,1,-3,2,-1,2,0,-2,-1,0,-1,2,-1,7,1,-1,-3,-5,-1,5,-3,5,-5,9,-3,11,-5,-21,-5,23,-7,7,-9,2,-1,-1,-1,-1,2,2,0,0,-2,1,-1,1,3,-5,-1,3,-1,1,-1,3,3,1,-1,-3,5,1,-23,5,9 ; TV[123]=M; kill M; intmat M[8][10]=45,3,-7,-17,-27,-5,35,-13,7,-21,27,-3,-7,-11,-15,1,23,5,1,-21,9,-6,4,-1,-6,-1,4,4,-1,-6,27,-15,23,1,-21,-11,5,-7,1,-3,9,-3,11,-5,-21,-5,23,-7,7,-9,3,3,5,-23,9,1,5,-1,1,-3,3,-3,-1,1,3,1,5,5,-23,9,3,9,5,1,-3,-23,-1,5,1,3 ; TV[124]=M; kill M; intmat M[9][10]=45,3,-7,-17,-27,-5,35,-13,7,-21,7,1,-1,-3,-5,-1,5,-3,5,-5,27,-3,-7,-11,-15,1,23,5,1,-21,9,-6,4,-1,-6,-1,4,4,-1,-6,2,-1,2,0,-2,-1,0,-1,2,-1,27,-15,23,1,-21,-11,5,-7,1,-3,9,-3,11,-5,-21,-5,23,-7,7,-9,2,-1,-1,-1,-1,2,2,0,0,-2,1,-1,1,3,-5,-1,3,-1,1,-1 ; TV[125]=M; kill M; intmat M[8][10]=45,3,-7,-17,-27,-5,35,-13,7,-21,27,-15,23,1,-21,-11,5,-7,1,-3,9,-6,4,-1,-6,-1,4,4,-1,-6,27,-3,-7,-11,-15,1,23,5,1,-21,9,-3,11,-5,-21,-5,23,-7,7,-9,3,3,5,-23,9,1,5,-1,1,-3,2,-1,-1,-1,-1,2,2,0,0,-2,3,-3,-1,1,3,1,5,5,-23,9 ; TV[126]=M; kill M; intmat M[8][10]=45,3,-7,-17,-27,-5,35,-13,7,-21,27,-15,23,1,-21,-11,5,-7,1,-3,9,-6,4,-1,-6,-1,4,4,-1,-6,27,-3,-7,-11,-15,1,23,5,1,-21,9,-3,11,-5,-21,-5,23,-7,7,-9,2,-1,-1,-1,-1,2,2,0,0,-2,1,-1,1,3,-5,-1,3,-1,1,-1,3,-3,-1,1,3,1,5,5,-23,9 ; TV[127]=M; kill M; intmat M[9][10]=45,3,-7,-17,-27,-5,35,-13,7,-21,7,1,-1,-3,-5,-1,5,-3,5,-5,27,-3,-7,-11,-15,1,23,5,1,-21,9,-6,4,-1,-6,-1,4,4,-1,-6,2,-1,2,0,-2,-1,0,-1,2,-1,27,-15,23,1,-21,-11,5,-7,1,-3,9,-3,11,-5,-21,-5,23,-7,7,-9,3,3,5,-23,9,1,5,-1,1,-3,2,-1,-1,-1,-1,2,2,0,0,-2 ; TV[128]=M; kill M; intmat M[7][10]=9,-9,7,23,-21,-7,-5,-5,11,-3,1,-1,1,3,-5,-1,3,-1,1,-1,3,9,-23,5,3,5,1,1,-1,-3,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3,27,-3,1,5,-21,-7,1,-11,23,-15,45,-21,7,35,-27,-13,-17,-5,-7,3 ; TV[129]=M; kill M; intmat M[7][10]=9,-9,7,23,-21,-7,-5,-5,11,-3,3,-3,1,5,9,-1,-23,1,5,3,3,9,-23,5,3,5,1,1,-1,-3,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3,27,-3,1,5,-21,-7,1,-11,23,-15,45,-21,7,35,-27,-13,-17,-5,-7,3 ; TV[130]=M; kill M; intmat M[7][10]=9,-9,7,23,-21,-7,-5,-5,11,-3,2,-2,0,2,-1,0,-1,2,-1,-1,3,-3,1,5,9,-1,-23,1,5,3,3,9,-23,5,3,5,1,1,-1,-3,3,9,5,1,-3,-23,-1,5,1,3,27,-3,1,5,-21,-7,1,-11,23,-15,45,-21,7,35,-27,-13,-17,-5,-7,3 ; TV[131]=M; kill M; intmat M[8][10]=45,-21,7,35,-27,-13,-17,-5,-7,3,27,-3,1,5,-21,-7,1,-11,23,-15,9,-6,-1,4,-6,4,-1,-1,4,-6,27,-21,1,23,-15,5,-11,1,-7,-3,9,-9,7,23,-21,-7,-5,-5,11,-3,1,-1,1,3,-5,-1,3,-1,1,-1,3,3,1,-1,-3,5,1,-23,5,9,3,9,-23,5,3,5,1,1,-1,-3 ; TV[132]=M; kill M; intmat M[8][10]=45,-21,7,35,-27,-13,-17,-5,-7,3,27,-3,1,5,-21,-7,1,-11,23,-15,2,-1,2,0,-2,-1,0,-1,2,-1,7,-5,5,5,-5,-3,-3,-1,-1,1,9,-9,7,23,-21,-7,-5,-5,11,-3,1,-1,1,3,-5,-1,3,-1,1,-1,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3 ; TV[133]=M; kill M; intmat M[7][10]=9,-9,7,23,-21,-7,-5,-5,11,-3,2,-2,0,2,-1,0,-1,2,-1,-1,1,-1,1,3,-5,-1,3,-1,1,-1,3,9,-23,5,3,5,1,1,-1,-3,3,9,5,1,-3,-23,-1,5,1,3,27,-3,1,5,-21,-7,1,-11,23,-15,45,-21,7,35,-27,-13,-17,-5,-7,3 ; TV[134]=M; kill M; intmat M[8][10]=45,-21,7,35,-27,-13,-17,-5,-7,3,27,-3,1,5,-21,-7,1,-11,23,-15,9,-6,-1,4,-6,4,-1,-1,4,-6,27,-21,1,23,-15,5,-11,1,-7,-3,9,-9,7,23,-21,-7,-5,-5,11,-3,3,3,1,-1,-3,5,1,-23,5,9,3,-3,1,5,9,-1,-23,1,5,3,3,9,-23,5,3,5,1,1,-1,-3 ; TV[135]=M; kill M; intmat M[8][10]=45,-21,7,35,-27,-13,-17,-5,-7,3,27,-3,1,5,-21,-7,1,-11,23,-15,2,-1,2,0,-2,-1,0,-1,2,-1,7,-5,5,5,-5,-3,-3,-1,-1,1,9,-9,7,23,-21,-7,-5,-5,11,-3,3,-3,1,5,9,-1,-23,1,5,3,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3 ; TV[136]=M; kill M; intmat M[8][10]=45,-21,7,35,-27,-13,-17,-5,-7,3,27,-3,1,5,-21,-7,1,-11,23,-15,9,-6,-1,4,-6,4,-1,-1,4,-6,27,-21,1,23,-15,5,-11,1,-7,-3,9,-9,7,23,-21,-7,-5,-5,11,-3,1,-1,1,3,-5,-1,3,-1,1,-1,2,-2,0,2,-1,0,-1,2,-1,-1,3,9,-23,5,3,5,1,1,-1,-3 ; TV[137]=M; kill M; intmat M[9][10]=45,-21,7,35,-27,-13,-17,-5,-7,3,7,-5,5,5,-5,-3,-3,-1,-1,1,27,-21,1,23,-15,5,-11,1,-7,-3,9,-6,-1,4,-6,4,-1,-1,4,-6,2,-1,2,0,-2,-1,0,-1,2,-1,27,-3,1,5,-21,-7,1,-11,23,-15,9,-9,7,23,-21,-7,-5,-5,11,-3,1,-1,1,3,-5,-1,3,-1,1,-1,3,3,1,-1,-3,5,1,-23,5,9 ; TV[138]=M; kill M; intmat M[8][10]=45,-21,7,35,-27,-13,-17,-5,-7,3,27,-3,1,5,-21,-7,1,-11,23,-15,2,-1,2,0,-2,-1,0,-1,2,-1,7,-5,5,5,-5,-3,-3,-1,-1,1,9,-9,7,23,-21,-7,-5,-5,11,-3,2,-2,0,2,-1,0,-1,2,-1,-1,3,-3,1,5,9,-1,-23,1,5,3,3,9,5,1,-3,-23,-1,5,1,3 ; TV[139]=M; kill M; intmat M[9][10]=45,-21,7,35,-27,-13,-17,-5,-7,3,7,-5,5,5,-5,-3,-3,-1,-1,1,27,-21,1,23,-15,5,-11,1,-7,-3,9,-6,-1,4,-6,4,-1,-1,4,-6,2,-1,2,0,-2,-1,0,-1,2,-1,27,-3,1,5,-21,-7,1,-11,23,-15,9,-9,7,23,-21,-7,-5,-5,11,-3,3,3,1,-1,-3,5,1,-23,5,9,3,-3,1,5,9,-1,-23,1,5,3 ; TV[140]=M; kill M; intmat M[8][10]=45,-21,7,35,-27,-13,-17,-5,-7,3,27,-3,1,5,-21,-7,1,-11,23,-15,2,-1,2,0,-2,-1,0,-1,2,-1,7,-5,5,5,-5,-3,-3,-1,-1,1,9,-9,7,23,-21,-7,-5,-5,11,-3,2,-2,0,2,-1,0,-1,2,-1,-1,1,-1,1,3,-5,-1,3,-1,1,-1,3,9,5,1,-3,-23,-1,5,1,3 ; TV[141]=M; kill M; intmat M[8][10]=45,-21,7,35,-27,-13,-17,-5,-7,3,27,-3,1,5,-21,-7,1,-11,23,-15,9,-6,-1,4,-6,4,-1,-1,4,-6,27,-21,1,23,-15,5,-11,1,-7,-3,9,-9,7,23,-21,-7,-5,-5,11,-3,2,-2,0,2,-1,0,-1,2,-1,-1,3,-3,1,5,9,-1,-23,1,5,3,3,9,-23,5,3,5,1,1,-1,-3 ; TV[142]=M; kill M; intmat M[9][10]=45,-21,7,35,-27,-13,-17,-5,-7,3,27,-3,1,5,-21,-7,1,-11,23,-15,9,-6,-1,4,-6,4,-1,-1,4,-6,27,-21,1,23,-15,5,-11,1,-7,-3,2,-1,2,0,-2,-1,0,-1,2,-1,7,-5,5,5,-5,-3,-3,-1,-1,1,9,-9,7,23,-21,-7,-5,-5,11,-3,1,-1,1,3,-5,-1,3,-1,1,-1,2,-2,0,2,-1,0,-1,2,-1,-1 ; TV[143]=M; kill M; intmat M[9][10]=45,-21,7,35,-27,-13,-17,-5,-7,3,27,-3,1,5,-21,-7,1,-11,23,-15,9,-6,-1,4,-6,4,-1,-1,4,-6,27,-21,1,23,-15,5,-11,1,-7,-3,2,-1,2,0,-2,-1,0,-1,2,-1,7,-5,5,5,-5,-3,-3,-1,-1,1,9,-9,7,23,-21,-7,-5,-5,11,-3,2,-2,0,2,-1,0,-1,2,-1,-1,3,-3,1,5,9,-1,-23,1,5,3 ; TV[144]=M; kill M; intmat M[8][10]=2,-2,0,2,-1,0,-1,2,-1,-1,27,-3,1,5,-21,-7,1,-11,23,-15,7,1,-1,-3,-5,-1,5,-3,5,-5,27,-3,-7,-11,-15,1,23,5,1,-21,1,-1,1,3,-5,-1,3,-1,1,-1,3,9,-23,5,3,5,1,1,-1,-3,1,-1,-1,-1,-1,1,1,3,3,-5,3,9,5,1,-3,-23,-1,5,1,3 ; TV[145]=M; kill M; intmat M[9][10]=7,1,-1,-3,-5,-1,5,-3,5,-5,27,-3,1,5,-21,-7,1,-11,23,-15,27,-3,-7,-11,-15,1,23,5,1,-21,9,-6,4,-1,-6,-1,4,4,-1,-6,2,-2,0,2,-1,0,-1,2,-1,-1,2,-1,2,0,-2,-1,0,-1,2,-1,1,-1,1,3,-5,-1,3,-1,1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,3,9,5,1,-3,-23,-1,5,1,3 ; TV[146]=M; kill M; intmat M[9][10]=7,1,-1,-3,-5,-1,5,-3,5,-5,27,-3,-7,-11,-15,1,23,5,1,-21,27,-3,1,5,-21,-7,1,-11,23,-15,9,-6,-1,4,-6,4,-1,-1,4,-6,2,-2,0,2,-1,0,-1,2,-1,-1,2,-1,-1,-1,-1,2,2,0,0,-2,1,-1,1,3,-5,-1,3,-1,1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,3,9,-23,5,3,5,1,1,-1,-3 ; TV[147]=M; kill M; intmat M[10][10]=27,-3,-7,-11,-15,1,23,5,1,-21,27,-3,1,5,-21,-7,1,-11,23,-15,7,1,-1,-3,-5,-1,5,-3,5,-5,9,-6,-1,4,-6,4,-1,-1,4,-6,9,-6,4,-1,-6,-1,4,4,-1,-6,2,-1,2,0,-2,-1,0,-1,2,-1,2,-1,-1,-1,-1,2,2,0,0,-2,2,-2,0,2,-1,0,-1,2,-1,-1,1,-1,1,3,-5,-1,3,-1,1,-1,1,-1,-1,-1,-1,1,1,3,3,-5 ; TV[148]=M; kill M; intmat M[7][10]=3,3,5,-23,9,1,5,-1,1,-3,3,-3,1,5,9,-1,-23,1,5,3,9,-3,-5,-7,-9,11,7,-5,23,-21,3,3,1,-1,-3,5,1,-23,5,9,3,9,-23,5,3,5,1,1,-1,-3,27,-15,-11,-7,-3,23,1,1,5,-21,45,3,-5,-13,-21,-7,7,-17,35,-27 ; TV[149]=M; kill M; intmat M[7][10]=3,3,5,-23,9,1,5,-1,1,-3,3,-3,1,5,9,-1,-23,1,5,3,9,-3,-5,-7,-9,11,7,-5,23,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,9,-23,5,3,5,1,1,-1,-3,27,-15,-11,-7,-3,23,1,1,5,-21,45,3,-5,-13,-21,-7,7,-17,35,-27 ; TV[150]=M; kill M; intmat M[8][10]=45,3,-5,-13,-21,-7,7,-17,35,-27,27,-3,1,5,-21,-7,1,-11,23,-15,9,-6,-1,4,-6,4,-1,-1,4,-6,27,-15,-11,-7,-3,23,1,1,5,-21,3,-3,1,5,9,-1,-23,1,5,3,9,-3,-5,-7,-9,11,7,-5,23,-21,3,3,1,-1,-3,5,1,-23,5,9,3,9,-23,5,3,5,1,1,-1,-3 ; TV[151]=M; kill M; intmat M[8][10]=45,3,-5,-13,-21,-7,7,-17,35,-27,7,1,-1,-3,-5,-1,5,-3,5,-5,2,-1,-1,-1,-1,2,2,0,0,-2,27,-15,-11,-7,-3,23,1,1,5,-21,3,3,5,-23,9,1,5,-1,1,-3,9,-3,-5,-7,-9,11,7,-5,23,-21,3,3,1,-1,-3,5,1,-23,5,9,3,9,-23,5,3,5,1,1,-1,-3 ; TV[152]=M; kill M; intmat M[7][10]=2,-1,2,0,-2,-1,0,-1,2,-1,3,-3,1,5,9,-1,-23,1,5,3,9,-3,-5,-7,-9,11,7,-5,23,-21,3,3,1,-1,-3,5,1,-23,5,9,3,3,5,-23,9,1,5,-1,1,-3,27,-15,-11,-7,-3,23,1,1,5,-21,45,3,-5,-13,-21,-7,7,-17,35,-27 ; TV[153]=M; kill M; intmat M[8][10]=45,3,-5,-13,-21,-7,7,-17,35,-27,27,-15,-11,-7,-3,23,1,1,5,-21,9,-6,-1,4,-6,4,-1,-1,4,-6,27,-3,1,5,-21,-7,1,-11,23,-15,2,-1,2,0,-2,-1,0,-1,2,-1,9,-3,-5,-7,-9,11,7,-5,23,-21,3,3,1,-1,-3,5,1,-23,5,9,3,-3,1,5,9,-1,-23,1,5,3 ; TV[154]=M; kill M; intmat M[9][10]=45,3,-5,-13,-21,-7,7,-17,35,-27,7,1,-1,-3,-5,-1,5,-3,5,-5,27,-3,1,5,-21,-7,1,-11,23,-15,9,-6,-1,4,-6,4,-1,-1,4,-6,2,-1,-1,-1,-1,2,2,0,0,-2,27,-15,-11,-7,-3,23,1,1,5,-21,9,-3,-5,-7,-9,11,7,-5,23,-21,3,3,1,-1,-3,5,1,-23,5,9,3,9,-23,5,3,5,1,1,-1,-3 ; TV[155]=M; kill M; intmat M[8][10]=45,3,-5,-13,-21,-7,7,-17,35,-27,7,1,-1,-3,-5,-1,5,-3,5,-5,2,-1,-1,-1,-1,2,2,0,0,-2,27,-15,-11,-7,-3,23,1,1,5,-21,3,3,5,-23,9,1,5,-1,1,-3,9,-3,-5,-7,-9,11,7,-5,23,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,9,-23,5,3,5,1,1,-1,-3 ; TV[156]=M; kill M; intmat M[8][10]=45,3,-5,-13,-21,-7,7,-17,35,-27,27,-15,-11,-7,-3,23,1,1,5,-21,2,-1,-1,-1,-1,2,2,0,0,-2,7,1,-1,-3,-5,-1,5,-3,5,-5,2,-1,2,0,-2,-1,0,-1,2,-1,9,-3,-5,-7,-9,11,7,-5,23,-21,3,3,1,-1,-3,5,1,-23,5,9,3,3,5,-23,9,1,5,-1,1,-3 ; TV[157]=M; kill M; intmat M[8][10]=45,3,-5,-13,-21,-7,7,-17,35,-27,27,-3,1,5,-21,-7,1,-11,23,-15,9,-6,-1,4,-6,4,-1,-1,4,-6,27,-15,-11,-7,-3,23,1,1,5,-21,3,-3,1,5,9,-1,-23,1,5,3,9,-3,-5,-7,-9,11,7,-5,23,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,9,-23,5,3,5,1,1,-1,-3 ; TV[158]=M; kill M; intmat M[7][10]=2,-1,2,0,-2,-1,0,-1,2,-1,3,-3,1,5,9,-1,-23,1,5,3,9,-3,-5,-7,-9,11,7,-5,23,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,3,5,-23,9,1,5,-1,1,-3,27,-15,-11,-7,-3,23,1,1,5,-21,45,3,-5,-13,-21,-7,7,-17,35,-27 ; TV[159]=M; kill M; intmat M[9][10]=45,3,-5,-13,-21,-7,7,-17,35,-27,7,1,-1,-3,-5,-1,5,-3,5,-5,27,-3,1,5,-21,-7,1,-11,23,-15,9,-6,-1,4,-6,4,-1,-1,4,-6,2,-1,-1,-1,-1,2,2,0,0,-2,27,-15,-11,-7,-3,23,1,1,5,-21,9,-3,-5,-7,-9,11,7,-5,23,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,9,-23,5,3,5,1,1,-1,-3 ; TV[160]=M; kill M; intmat M[9][10]=45,3,-5,-13,-21,-7,7,-17,35,-27,7,1,-1,-3,-5,-1,5,-3,5,-5,27,-3,1,5,-21,-7,1,-11,23,-15,9,-6,-1,4,-6,4,-1,-1,4,-6,2,-1,-1,-1,-1,2,2,0,0,-2,27,-15,-11,-7,-3,23,1,1,5,-21,2,-1,2,0,-2,-1,0,-1,2,-1,9,-3,-5,-7,-9,11,7,-5,23,-21,3,3,1,-1,-3,5,1,-23,5,9 ; TV[161]=M; kill M; intmat M[8][10]=45,3,-5,-13,-21,-7,7,-17,35,-27,27,-15,-11,-7,-3,23,1,1,5,-21,2,-1,-1,-1,-1,2,2,0,0,-2,7,1,-1,-3,-5,-1,5,-3,5,-5,2,-1,2,0,-2,-1,0,-1,2,-1,9,-3,-5,-7,-9,11,7,-5,23,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,3,5,-23,9,1,5,-1,1,-3 ; TV[162]=M; kill M; intmat M[8][10]=45,3,-5,-13,-21,-7,7,-17,35,-27,27,-15,-11,-7,-3,23,1,1,5,-21,9,-6,-1,4,-6,4,-1,-1,4,-6,27,-3,1,5,-21,-7,1,-11,23,-15,2,-1,2,0,-2,-1,0,-1,2,-1,9,-3,-5,-7,-9,11,7,-5,23,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,1,5,9,-1,-23,1,5,3 ; TV[163]=M; kill M; intmat M[9][10]=45,3,-5,-13,-21,-7,7,-17,35,-27,7,1,-1,-3,-5,-1,5,-3,5,-5,27,-3,1,5,-21,-7,1,-11,23,-15,9,-6,-1,4,-6,4,-1,-1,4,-6,2,-1,-1,-1,-1,2,2,0,0,-2,27,-15,-11,-7,-3,23,1,1,5,-21,2,-1,2,0,-2,-1,0,-1,2,-1,9,-3,-5,-7,-9,11,7,-5,23,-21,1,-1,-1,-1,-1,1,1,3,3,-5 ; TV[164]=M; kill M; intmat M[7][10]=3,3,5,-23,9,1,5,-1,1,-3,3,9,5,1,-3,-23,-1,5,1,3,9,-9,-7,-5,-3,7,11,23,-5,-21,3,-3,-1,1,3,1,5,5,-23,9,3,9,-23,5,3,5,1,1,-1,-3,27,-3,-7,-11,-15,1,23,5,1,-21,45,-21,-13,-5,3,7,-7,35,-17,-27 ; TV[165]=M; kill M; intmat M[7][10]=2,-2,0,2,-1,0,-1,2,-1,-1,3,9,-23,5,3,5,1,1,-1,-3,9,-9,-7,-5,-3,7,11,23,-5,-21,3,-3,-1,1,3,1,5,5,-23,9,3,9,5,1,-3,-23,-1,5,1,3,45,-21,-13,-5,3,7,-7,35,-17,-27,27,-3,-7,-11,-15,1,23,5,1,-21 ; TV[166]=M; kill M; intmat M[8][10]=45,-21,-13,-5,3,7,-7,35,-17,-27,27,-3,-7,-11,-15,1,23,5,1,-21,2,-1,-1,-1,-1,2,2,0,0,-2,7,-5,-3,-1,1,5,-1,5,-3,-5,3,3,5,-23,9,1,5,-1,1,-3,9,-9,-7,-5,-3,7,11,23,-5,-21,3,-3,-1,1,3,1,5,5,-23,9,3,9,-23,5,3,5,1,1,-1,-3 ; TV[167]=M; kill M; intmat M[8][10]=45,-21,-13,-5,3,7,-7,35,-17,-27,27,-3,-7,-11,-15,1,23,5,1,-21,9,-6,4,-1,-6,-1,4,4,-1,-6,27,-21,5,1,-3,1,-7,23,-11,-15,3,3,5,-23,9,1,5,-1,1,-3,9,-9,-7,-5,-3,7,11,23,-5,-21,3,-3,-1,1,3,1,5,5,-23,9,3,9,5,1,-3,-23,-1,5,1,3 ; TV[168]=M; kill M; intmat M[7][10]=3,3,5,-23,9,1,5,-1,1,-3,3,9,5,1,-3,-23,-1,5,1,3,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,9,-23,5,3,5,1,1,-1,-3,27,-3,-7,-11,-15,1,23,5,1,-21,45,-21,-13,-5,3,7,-7,35,-17,-27 ; TV[169]=M; kill M; intmat M[8][10]=45,-21,-13,-5,3,7,-7,35,-17,-27,27,-3,-7,-11,-15,1,23,5,1,-21,9,-6,4,-1,-6,-1,4,4,-1,-6,27,-21,5,1,-3,1,-7,23,-11,-15,3,3,5,-23,9,1,5,-1,1,-3,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,9,5,1,-3,-23,-1,5,1,3 ; TV[170]=M; kill M; intmat M[9][10]=45,-21,-13,-5,3,7,-7,35,-17,-27,7,-5,-3,-1,1,5,-1,5,-3,-5,27,-21,5,1,-3,1,-7,23,-11,-15,9,-6,4,-1,-6,-1,4,4,-1,-6,2,-1,-1,-1,-1,2,2,0,0,-2,27,-3,-7,-11,-15,1,23,5,1,-21,9,-9,-7,-5,-3,7,11,23,-5,-21,3,-3,-1,1,3,1,5,5,-23,9,3,3,5,-23,9,1,5,-1,1,-3 ; TV[171]=M; kill M; intmat M[8][10]=27,-3,-7,-11,-15,1,23,5,1,-21,45,-21,-13,-5,3,7,-7,35,-17,-27,27,-21,5,1,-3,1,-7,23,-11,-15,9,-6,4,-1,-6,-1,4,4,-1,-6,2,-2,0,2,-1,0,-1,2,-1,-1,9,-9,-7,-5,-3,7,11,23,-5,-21,3,-3,-1,1,3,1,5,5,-23,9,3,9,5,1,-3,-23,-1,5,1,3 ; TV[172]=M; kill M; intmat M[8][10]=45,-21,-13,-5,3,7,-7,35,-17,-27,27,-3,-7,-11,-15,1,23,5,1,-21,2,-1,-1,-1,-1,2,2,0,0,-2,7,-5,-3,-1,1,5,-1,5,-3,-5,3,3,5,-23,9,1,5,-1,1,-3,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,9,-23,5,3,5,1,1,-1,-3 ; TV[173]=M; kill M; intmat M[8][10]=27,-3,-7,-11,-15,1,23,5,1,-21,45,-21,-13,-5,3,7,-7,35,-17,-27,7,-5,-3,-1,1,5,-1,5,-3,-5,2,-1,-1,-1,-1,2,2,0,0,-2,2,-2,0,2,-1,0,-1,2,-1,-1,9,-9,-7,-5,-3,7,11,23,-5,-21,3,-3,-1,1,3,1,5,5,-23,9,3,9,-23,5,3,5,1,1,-1,-3 ; TV[174]=M; kill M; intmat M[7][10]=2,-2,0,2,-1,0,-1,2,-1,-1,3,9,-23,5,3,5,1,1,-1,-3,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,9,5,1,-3,-23,-1,5,1,3,45,-21,-13,-5,3,7,-7,35,-17,-27,27,-3,-7,-11,-15,1,23,5,1,-21 ; TV[175]=M; kill M; intmat M[9][10]=45,-21,-13,-5,3,7,-7,35,-17,-27,7,-5,-3,-1,1,5,-1,5,-3,-5,27,-21,5,1,-3,1,-7,23,-11,-15,9,-6,4,-1,-6,-1,4,4,-1,-6,2,-1,-1,-1,-1,2,2,0,0,-2,27,-3,-7,-11,-15,1,23,5,1,-21,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,3,5,-23,9,1,5,-1,1,-3 ; TV[176]=M; kill M; intmat M[9][10]=27,-3,-7,-11,-15,1,23,5,1,-21,45,-21,-13,-5,3,7,-7,35,-17,-27,7,-5,-3,-1,1,5,-1,5,-3,-5,2,-1,-1,-1,-1,2,2,0,0,-2,27,-21,5,1,-3,1,-7,23,-11,-15,9,-6,4,-1,-6,-1,4,4,-1,-6,9,-9,-7,-5,-3,7,11,23,-5,-21,2,-2,0,2,-1,0,-1,2,-1,-1,3,-3,-1,1,3,1,5,5,-23,9 ; TV[177]=M; kill M; intmat M[8][10]=27,-3,-7,-11,-15,1,23,5,1,-21,45,-21,-13,-5,3,7,-7,35,-17,-27,27,-21,5,1,-3,1,-7,23,-11,-15,9,-6,4,-1,-6,-1,4,4,-1,-6,2,-2,0,2,-1,0,-1,2,-1,-1,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,9,5,1,-3,-23,-1,5,1,3 ; TV[178]=M; kill M; intmat M[8][10]=27,-3,-7,-11,-15,1,23,5,1,-21,45,-21,-13,-5,3,7,-7,35,-17,-27,7,-5,-3,-1,1,5,-1,5,-3,-5,2,-1,-1,-1,-1,2,2,0,0,-2,2,-2,0,2,-1,0,-1,2,-1,-1,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,9,-23,5,3,5,1,1,-1,-3 ; TV[179]=M; kill M; intmat M[9][10]=27,-3,-7,-11,-15,1,23,5,1,-21,45,-21,-13,-5,3,7,-7,35,-17,-27,7,-5,-3,-1,1,5,-1,5,-3,-5,2,-1,-1,-1,-1,2,2,0,0,-2,27,-21,5,1,-3,1,-7,23,-11,-15,9,-6,4,-1,-6,-1,4,4,-1,-6,9,-9,-7,-5,-3,7,11,23,-5,-21,2,-2,0,2,-1,0,-1,2,-1,-1,1,-1,-1,-1,-1,1,1,3,3,-5 ; TV[180]=M; kill M; intmat M[7][10]=9,-21,23,7,-9,-5,-7,11,-5,-3,2,-1,2,0,-2,-1,0,-1,2,-1,3,3,5,-23,9,1,5,-1,1,-3,3,-3,1,5,9,-1,-23,1,5,3,3,9,5,1,-3,-23,-1,5,1,3,27,-21,5,1,-3,1,-7,23,-11,-15,45,-27,35,7,-21,-17,-13,-7,-5,3 ; TV[181]=M; kill M; intmat M[7][10]=9,-21,23,7,-9,-5,-7,11,-5,-3,3,-3,-1,1,3,1,5,5,-23,9,3,3,5,-23,9,1,5,-1,1,-3,3,-3,1,5,9,-1,-23,1,5,3,3,9,5,1,-3,-23,-1,5,1,3,27,-21,5,1,-3,1,-7,23,-11,-15,45,-27,35,7,-21,-17,-13,-7,-5,3 ; TV[182]=M; kill M; intmat M[7][10]=9,-21,23,7,-9,-5,-7,11,-5,-3,1,-5,3,1,-1,3,-1,1,-1,-1,2,-1,2,0,-2,-1,0,-1,2,-1,3,-3,1,5,9,-1,-23,1,5,3,3,3,5,-23,9,1,5,-1,1,-3,27,-21,5,1,-3,1,-7,23,-11,-15,45,-27,35,7,-21,-17,-13,-7,-5,3 ; TV[183]=M; kill M; intmat M[7][10]=9,-21,23,7,-9,-5,-7,11,-5,-3,1,-5,3,1,-1,3,-1,1,-1,-1,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,3,3,5,-23,9,1,5,-1,1,-3,27,-21,5,1,-3,1,-7,23,-11,-15,45,-27,35,7,-21,-17,-13,-7,-5,3 ; TV[184]=M; kill M; intmat M[8][10]=45,-27,35,7,-21,-17,-13,-7,-5,3,27,-15,23,1,-21,-11,5,-7,1,-3,9,-6,4,-1,-6,-1,4,4,-1,-6,27,-21,5,1,-3,1,-7,23,-11,-15,9,-21,23,7,-9,-5,-7,11,-5,-3,1,-5,3,1,-1,3,-1,1,-1,-1,3,-3,-1,1,3,1,5,5,-23,9,3,3,5,-23,9,1,5,-1,1,-3 ; TV[185]=M; kill M; intmat M[8][10]=45,-27,35,7,-21,-17,-13,-7,-5,3,7,-5,5,5,-5,-3,-3,-1,-1,1,2,-2,0,2,-1,0,-1,2,-1,-1,27,-21,5,1,-3,1,-7,23,-11,-15,9,-21,23,7,-9,-5,-7,11,-5,-3,1,-5,3,1,-1,3,-1,1,-1,-1,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3 ; TV[186]=M; kill M; intmat M[8][10]=45,-27,35,7,-21,-17,-13,-7,-5,3,7,-5,5,5,-5,-3,-3,-1,-1,1,2,-2,0,2,-1,0,-1,2,-1,-1,27,-21,5,1,-3,1,-7,23,-11,-15,9,-21,23,7,-9,-5,-7,11,-5,-3,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,3,9,5,1,-3,-23,-1,5,1,3 ; TV[187]=M; kill M; intmat M[8][10]=45,-27,35,7,-21,-17,-13,-7,-5,3,27,-15,23,1,-21,-11,5,-7,1,-3,9,-6,4,-1,-6,-1,4,4,-1,-6,27,-21,5,1,-3,1,-7,23,-11,-15,9,-21,23,7,-9,-5,-7,11,-5,-3,3,3,5,-23,9,1,5,-1,1,-3,3,-3,-1,1,3,1,5,5,-23,9,3,9,5,1,-3,-23,-1,5,1,3 ; TV[188]=M; kill M; intmat M[8][10]=45,-27,35,7,-21,-17,-13,-7,-5,3,27,-21,5,1,-3,1,-7,23,-11,-15,2,-2,0,2,-1,0,-1,2,-1,-1,7,-5,5,5,-5,-3,-3,-1,-1,1,9,-21,23,7,-9,-5,-7,11,-5,-3,2,-1,2,0,-2,-1,0,-1,2,-1,3,-3,1,5,9,-1,-23,1,5,3,3,9,5,1,-3,-23,-1,5,1,3 ; TV[189]=M; kill M; intmat M[8][10]=45,-27,35,7,-21,-17,-13,-7,-5,3,27,-21,5,1,-3,1,-7,23,-11,-15,9,-6,4,-1,-6,-1,4,4,-1,-6,27,-15,23,1,-21,-11,5,-7,1,-3,9,-21,23,7,-9,-5,-7,11,-5,-3,1,-5,3,1,-1,3,-1,1,-1,-1,2,-1,2,0,-2,-1,0,-1,2,-1,3,3,5,-23,9,1,5,-1,1,-3 ; TV[190]=M; kill M; intmat M[8][10]=45,-27,35,7,-21,-17,-13,-7,-5,3,27,-21,5,1,-3,1,-7,23,-11,-15,2,-2,0,2,-1,0,-1,2,-1,-1,7,-5,5,5,-5,-3,-3,-1,-1,1,9,-21,23,7,-9,-5,-7,11,-5,-3,1,-5,3,1,-1,3,-1,1,-1,-1,2,-1,2,0,-2,-1,0,-1,2,-1,3,-3,1,5,9,-1,-23,1,5,3 ; TV[191]=M; kill M; intmat M[8][10]=45,-27,35,7,-21,-17,-13,-7,-5,3,27,-21,5,1,-3,1,-7,23,-11,-15,9,-6,4,-1,-6,-1,4,4,-1,-6,27,-15,23,1,-21,-11,5,-7,1,-3,9,-21,23,7,-9,-5,-7,11,-5,-3,3,3,5,-23,9,1,5,-1,1,-3,2,-1,2,0,-2,-1,0,-1,2,-1,3,9,5,1,-3,-23,-1,5,1,3 ; TV[192]=M; kill M; intmat M[9][10]=45,-27,35,7,-21,-17,-13,-7,-5,3,27,-15,23,1,-21,-11,5,-7,1,-3,7,-5,5,5,-5,-3,-3,-1,-1,1,2,-2,0,2,-1,0,-1,2,-1,-1,9,-6,4,-1,-6,-1,4,4,-1,-6,27,-21,5,1,-3,1,-7,23,-11,-15,9,-21,23,7,-9,-5,-7,11,-5,-3,2,-1,2,0,-2,-1,0,-1,2,-1,3,9,5,1,-3,-23,-1,5,1,3 ; TV[193]=M; kill M; intmat M[9][10]=45,-27,35,7,-21,-17,-13,-7,-5,3,27,-15,23,1,-21,-11,5,-7,1,-3,7,-5,5,5,-5,-3,-3,-1,-1,1,2,-2,0,2,-1,0,-1,2,-1,-1,9,-6,4,-1,-6,-1,4,4,-1,-6,27,-21,5,1,-3,1,-7,23,-11,-15,9,-21,23,7,-9,-5,-7,11,-5,-3,1,-5,3,1,-1,3,-1,1,-1,-1,2,-1,2,0,-2,-1,0,-1,2,-1 ; TV[194]=M; kill M; intmat M[9][10]=45,-27,35,7,-21,-17,-13,-7,-5,3,27,-15,23,1,-21,-11,5,-7,1,-3,7,-5,5,5,-5,-3,-3,-1,-1,1,2,-2,0,2,-1,0,-1,2,-1,-1,9,-6,4,-1,-6,-1,4,4,-1,-6,27,-21,5,1,-3,1,-7,23,-11,-15,9,-21,23,7,-9,-5,-7,11,-5,-3,3,-3,-1,1,3,1,5,5,-23,9,3,9,5,1,-3,-23,-1,5,1,3 ; TV[195]=M; kill M; intmat M[9][10]=45,-27,35,7,-21,-17,-13,-7,-5,3,27,-15,23,1,-21,-11,5,-7,1,-3,7,-5,5,5,-5,-3,-3,-1,-1,1,2,-2,0,2,-1,0,-1,2,-1,-1,9,-6,4,-1,-6,-1,4,4,-1,-6,27,-21,5,1,-3,1,-7,23,-11,-15,9,-21,23,7,-9,-5,-7,11,-5,-3,1,-5,3,1,-1,3,-1,1,-1,-1,3,-3,-1,1,3,1,5,5,-23,9 ; TV[196]=M; kill M; intmat M[8][10]=2,-1,-1,-1,-1,2,2,0,0,-2,27,-15,23,1,-21,-11,5,-7,1,-3,7,-5,5,5,-5,-3,-3,-1,-1,1,27,-21,1,23,-15,5,-11,1,-7,-3,1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,1,3,-5,-1,3,-1,1,-1,3,3,1,-1,-3,5,1,-23,5,9,3,-3,-1,1,3,1,5,5,-23,9 ; TV[197]=M; kill M; intmat M[9][10]=27,-15,23,1,-21,-11,5,-7,1,-3,7,-5,5,5,-5,-3,-3,-1,-1,1,27,-21,1,23,-15,5,-11,1,-7,-3,9,-6,-1,4,-6,4,-1,-1,4,-6,2,-1,-1,-1,-1,2,2,0,0,-2,2,-1,2,0,-2,-1,0,-1,2,-1,1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,1,3,-5,-1,3,-1,1,-1,3,3,1,-1,-3,5,1,-23,5,9 ; TV[198]=M; kill M; intmat M[10][10]=2,-1,2,0,-2,-1,0,-1,2,-1,9,-6,4,-1,-6,-1,4,4,-1,-6,7,-5,5,5,-5,-3,-3,-1,-1,1,27,-15,23,1,-21,-11,5,-7,1,-3,27,-21,1,23,-15,5,-11,1,-7,-3,9,-6,-1,4,-6,4,-1,-1,4,-6,2,-2,0,2,-1,0,-1,2,-1,-1,2,-1,-1,-1,-1,2,2,0,0,-2,1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,1,3,-5,-1,3,-1,1,-1 ; TV[199]=M; kill M; intmat M[9][10]=7,-5,5,5,-5,-3,-3,-1,-1,1,27,-21,1,23,-15,5,-11,1,-7,-3,27,-15,23,1,-21,-11,5,-7,1,-3,9,-6,4,-1,-6,-1,4,4,-1,-6,2,-1,-1,-1,-1,2,2,0,0,-2,2,-2,0,2,-1,0,-1,2,-1,-1,1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,1,3,-5,-1,3,-1,1,-1,3,-3,-1,1,3,1,5,5,-23,9 ; TV[200]=M; kill M; intmat M[8][10]=2,-1,2,0,-2,-1,0,-1,2,-1,27,-21,5,1,-3,1,-7,23,-11,-15,7,-5,-3,-1,1,5,-1,5,-3,-5,27,-15,-11,-7,-3,23,1,1,5,-21,1,-5,3,1,-1,3,-1,1,-1,-1,3,-3,1,5,9,-1,-23,1,5,3,1,-1,-1,-1,-1,1,1,3,3,-5,3,3,5,-23,9,1,5,-1,1,-3 ; TV[201]=M; kill M; intmat M[9][10]=2,-1,2,0,-2,-1,0,-1,2,-1,9,-6,4,-1,-6,-1,4,4,-1,-6,27,-21,5,1,-3,1,-7,23,-11,-15,7,-5,-3,-1,1,5,-1,5,-3,-5,27,-15,-11,-7,-3,23,1,1,5,-21,2,-1,-1,-1,-1,2,2,0,0,-2,1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,3,3,5,-23,9,1,5,-1,1,-3 ; TV[202]=M; kill M; intmat M[9][10]=2,-1,2,0,-2,-1,0,-1,2,-1,9,-6,-1,4,-6,4,-1,-1,4,-6,27,-15,-11,-7,-3,23,1,1,5,-21,7,-5,-3,-1,1,5,-1,5,-3,-5,27,-21,5,1,-3,1,-7,23,-11,-15,2,-2,0,2,-1,0,-1,2,-1,-1,1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,1,5,9,-1,-23,1,5,3 ; TV[203]=M; kill M; intmat M[10][10]=2,-1,2,0,-2,-1,0,-1,2,-1,9,-6,4,-1,-6,-1,4,4,-1,-6,27,-21,5,1,-3,1,-7,23,-11,-15,7,-5,-3,-1,1,5,-1,5,-3,-5,9,-6,-1,4,-6,4,-1,-1,4,-6,27,-15,-11,-7,-3,23,1,1,5,-21,2,-2,0,2,-1,0,-1,2,-1,-1,2,-1,-1,-1,-1,2,2,0,0,-2,1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,-1,-1,-1,1,1,3,3,-5 ; TV[204]=M; kill M; intmat M[7][10]=3,9,-23,5,3,5,1,1,-1,-3,9,-21,-5,11,-3,23,-5,7,-7,-9,3,3,1,-1,-3,5,1,-23,5,9,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,27,-21,1,23,-15,5,-11,1,-7,-3,45,-27,-17,-7,3,35,-5,7,-13,-21 ; TV[205]=M; kill M; intmat M[8][10]=45,-27,-17,-7,3,35,-5,7,-13,-21,27,-21,1,23,-15,5,-11,1,-7,-3,9,-6,-1,4,-6,4,-1,-1,4,-6,27,-15,-11,-7,-3,23,1,1,5,-21,9,-21,-5,11,-3,23,-5,7,-7,-9,1,-5,3,1,-1,3,-1,1,-1,-1,3,3,1,-1,-3,5,1,-23,5,9,3,-3,1,5,9,-1,-23,1,5,3 ; TV[206]=M; kill M; intmat M[7][10]=9,-21,-5,11,-3,23,-5,7,-7,-9,1,-5,3,1,-1,3,-1,1,-1,-1,3,3,1,-1,-3,5,1,-23,5,9,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,27,-21,1,23,-15,5,-11,1,-7,-3,45,-27,-17,-7,3,35,-5,7,-13,-21 ; TV[207]=M; kill M; intmat M[8][10]=45,-27,-17,-7,3,35,-5,7,-13,-21,27,-21,1,23,-15,5,-11,1,-7,-3,9,-6,-1,4,-6,4,-1,-1,4,-6,27,-15,-11,-7,-3,23,1,1,5,-21,3,9,-23,5,3,5,1,1,-1,-3,9,-21,-5,11,-3,23,-5,7,-7,-9,3,3,1,-1,-3,5,1,-23,5,9,3,-3,1,5,9,-1,-23,1,5,3 ; TV[208]=M; kill M; intmat M[8][10]=45,-27,-17,-7,3,35,-5,7,-13,-21,27,-21,1,23,-15,5,-11,1,-7,-3,2,-2,0,2,-1,0,-1,2,-1,-1,7,-5,-3,-1,1,5,-1,5,-3,-5,9,-21,-5,11,-3,23,-5,7,-7,-9,1,-5,3,1,-1,3,-1,1,-1,-1,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3 ; TV[209]=M; kill M; intmat M[7][10]=9,-21,-5,11,-3,23,-5,7,-7,-9,1,-5,3,1,-1,3,-1,1,-1,-1,2,-1,-1,-1,-1,2,2,0,0,-2,3,-3,-1,1,3,1,5,5,-23,9,3,3,1,-1,-3,5,1,-23,5,9,45,-27,-17,-7,3,35,-5,7,-13,-21,27,-21,1,23,-15,5,-11,1,-7,-3 ; TV[210]=M; kill M; intmat M[8][10]=27,-21,1,23,-15,5,-11,1,-7,-3,45,-27,-17,-7,3,35,-5,7,-13,-21,27,-15,-11,-7,-3,23,1,1,5,-21,9,-6,-1,4,-6,4,-1,-1,4,-6,9,-21,-5,11,-3,23,-5,7,-7,-9,1,-5,3,1,-1,3,-1,1,-1,-1,2,-1,-1,-1,-1,2,2,0,0,-2,3,3,1,-1,-3,5,1,-23,5,9 ; TV[211]=M; kill M; intmat M[8][10]=27,-21,1,23,-15,5,-11,1,-7,-3,45,-27,-17,-7,3,35,-5,7,-13,-21,27,-15,-11,-7,-3,23,1,1,5,-21,9,-6,-1,4,-6,4,-1,-1,4,-6,3,9,-23,5,3,5,1,1,-1,-3,9,-21,-5,11,-3,23,-5,7,-7,-9,2,-1,-1,-1,-1,2,2,0,0,-2,3,3,1,-1,-3,5,1,-23,5,9 ; TV[212]=M; kill M; intmat M[8][10]=45,-27,-17,-7,3,35,-5,7,-13,-21,27,-21,1,23,-15,5,-11,1,-7,-3,2,-2,0,2,-1,0,-1,2,-1,-1,7,-5,-3,-1,1,5,-1,5,-3,-5,3,9,-23,5,3,5,1,1,-1,-3,9,-21,-5,11,-3,23,-5,7,-7,-9,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3 ; TV[213]=M; kill M; intmat M[7][10]=3,9,-23,5,3,5,1,1,-1,-3,9,-21,-5,11,-3,23,-5,7,-7,-9,2,-1,-1,-1,-1,2,2,0,0,-2,3,-3,-1,1,3,1,5,5,-23,9,3,3,1,-1,-3,5,1,-23,5,9,45,-27,-17,-7,3,35,-5,7,-13,-21,27,-21,1,23,-15,5,-11,1,-7,-3 ; TV[214]=M; kill M; intmat M[9][10]=45,-27,-17,-7,3,35,-5,7,-13,-21,7,-5,-3,-1,1,5,-1,5,-3,-5,27,-15,-11,-7,-3,23,1,1,5,-21,9,-6,-1,4,-6,4,-1,-1,4,-6,2,-2,0,2,-1,0,-1,2,-1,-1,27,-21,1,23,-15,5,-11,1,-7,-3,3,9,-23,5,3,5,1,1,-1,-3,9,-21,-5,11,-3,23,-5,7,-7,-9,3,-3,1,5,9,-1,-23,1,5,3 ; TV[215]=M; kill M; intmat M[9][10]=45,-27,-17,-7,3,35,-5,7,-13,-21,7,-5,-3,-1,1,5,-1,5,-3,-5,27,-15,-11,-7,-3,23,1,1,5,-21,9,-6,-1,4,-6,4,-1,-1,4,-6,2,-2,0,2,-1,0,-1,2,-1,-1,27,-21,1,23,-15,5,-11,1,-7,-3,9,-21,-5,11,-3,23,-5,7,-7,-9,1,-5,3,1,-1,3,-1,1,-1,-1,3,-3,1,5,9,-1,-23,1,5,3 ; TV[216]=M; kill M; intmat M[8][10]=27,-21,1,23,-15,5,-11,1,-7,-3,45,-27,-17,-7,3,35,-5,7,-13,-21,7,-5,-3,-1,1,5,-1,5,-3,-5,2,-2,0,2,-1,0,-1,2,-1,-1,9,-21,-5,11,-3,23,-5,7,-7,-9,1,-5,3,1,-1,3,-1,1,-1,-1,2,-1,-1,-1,-1,2,2,0,0,-2,3,-3,-1,1,3,1,5,5,-23,9 ; TV[217]=M; kill M; intmat M[9][10]=27,-21,1,23,-15,5,-11,1,-7,-3,9,-6,-1,4,-6,4,-1,-1,4,-6,2,-2,0,2,-1,0,-1,2,-1,-1,7,-5,-3,-1,1,5,-1,5,-3,-5,27,-15,-11,-7,-3,23,1,1,5,-21,45,-27,-17,-7,3,35,-5,7,-13,-21,9,-21,-5,11,-3,23,-5,7,-7,-9,1,-5,3,1,-1,3,-1,1,-1,-1,2,-1,-1,-1,-1,2,2,0,0,-2 ; TV[218]=M; kill M; intmat M[8][10]=27,-21,1,23,-15,5,-11,1,-7,-3,45,-27,-17,-7,3,35,-5,7,-13,-21,7,-5,-3,-1,1,5,-1,5,-3,-5,2,-2,0,2,-1,0,-1,2,-1,-1,3,9,-23,5,3,5,1,1,-1,-3,9,-21,-5,11,-3,23,-5,7,-7,-9,2,-1,-1,-1,-1,2,2,0,0,-2,3,-3,-1,1,3,1,5,5,-23,9 ; TV[219]=M; kill M; intmat M[9][10]=27,-21,1,23,-15,5,-11,1,-7,-3,9,-6,-1,4,-6,4,-1,-1,4,-6,2,-2,0,2,-1,0,-1,2,-1,-1,7,-5,-3,-1,1,5,-1,5,-3,-5,27,-15,-11,-7,-3,23,1,1,5,-21,45,-27,-17,-7,3,35,-5,7,-13,-21,3,9,-23,5,3,5,1,1,-1,-3,9,-21,-5,11,-3,23,-5,7,-7,-9,2,-1,-1,-1,-1,2,2,0,0,-2 ; TV[220]=M; kill M; intmat M[7][10]=9,3,-1,-5,-9,-2,5,-7,19,-12,3,-3,1,5,9,-1,-23,1,5,3,3,3,5,-23,9,1,5,-1,1,-3,3,3,1,-1,-3,5,1,-23,5,9,3,9,-23,5,3,5,1,1,-1,-3,3,9,5,1,-3,-23,-1,5,1,3,45,3,-5,-13,-21,-7,7,-17,35,-27 ; TV[221]=M; kill M; intmat M[7][10]=9,3,-1,-5,-9,-2,5,-7,19,-12,3,-3,1,5,9,-1,-23,1,5,3,9,-3,-5,-7,-9,11,7,-5,23,-21,3,3,1,-1,-3,5,1,-23,5,9,3,3,5,-23,9,1,5,-1,1,-3,3,9,-23,5,3,5,1,1,-1,-3,45,3,-5,-13,-21,-7,7,-17,35,-27 ; TV[222]=M; kill M; intmat M[7][10]=9,3,-1,-5,-9,-2,5,-7,19,-12,2,-1,2,0,-2,-1,0,-1,2,-1,9,-3,-5,-7,-9,11,7,-5,23,-21,3,3,1,-1,-3,5,1,-23,5,9,3,-3,1,5,9,-1,-23,1,5,3,3,3,5,-23,9,1,5,-1,1,-3,45,3,-5,-13,-21,-7,7,-17,35,-27 ; TV[223]=M; kill M; intmat M[7][10]=9,3,-1,-5,-9,-2,5,-7,19,-12,7,1,-1,-3,-5,-1,5,-3,5,-5,9,-3,-5,-7,-9,11,7,-5,23,-21,3,3,1,-1,-3,5,1,-23,5,9,3,3,5,-23,9,1,5,-1,1,-3,3,9,-23,5,3,5,1,1,-1,-3,45,3,-5,-13,-21,-7,7,-17,35,-27 ; TV[224]=M; kill M; intmat M[7][10]=9,3,-1,-5,-9,-2,5,-7,19,-12,3,-3,1,5,9,-1,-23,1,5,3,9,-3,-5,-7,-9,11,7,-5,23,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,3,5,-23,9,1,5,-1,1,-3,3,9,-23,5,3,5,1,1,-1,-3,45,3,-5,-13,-21,-7,7,-17,35,-27 ; TV[225]=M; kill M; intmat M[7][10]=9,3,-1,-5,-9,-2,5,-7,19,-12,27,-3,1,5,-21,-7,1,-11,23,-15,9,-3,-5,-7,-9,11,7,-5,23,-21,3,3,1,-1,-3,5,1,-23,5,9,3,-3,1,5,9,-1,-23,1,5,3,3,9,-23,5,3,5,1,1,-1,-3,45,3,-5,-13,-21,-7,7,-17,35,-27 ; TV[226]=M; kill M; intmat M[7][10]=9,3,-1,-5,-9,-2,5,-7,19,-12,27,-3,1,5,-21,-7,1,-11,23,-15,3,-3,1,5,9,-1,-23,1,5,3,3,9,-23,5,3,5,1,1,-1,-3,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3,45,3,-5,-13,-21,-7,7,-17,35,-27 ; TV[227]=M; kill M; intmat M[7][10]=9,3,-1,-5,-9,-2,5,-7,19,-12,2,-1,2,0,-2,-1,0,-1,2,-1,3,-3,1,5,9,-1,-23,1,5,3,3,3,5,-23,9,1,5,-1,1,-3,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3,45,3,-5,-13,-21,-7,7,-17,35,-27 ; TV[228]=M; kill M; intmat M[7][10]=9,3,-1,-5,-9,-2,5,-7,19,-12,7,1,-1,-3,-5,-1,5,-3,5,-5,3,3,5,-23,9,1,5,-1,1,-3,3,3,1,-1,-3,5,1,-23,5,9,3,9,-23,5,3,5,1,1,-1,-3,3,9,5,1,-3,-23,-1,5,1,3,45,3,-5,-13,-21,-7,7,-17,35,-27 ; TV[229]=M; kill M; intmat M[7][10]=9,3,-1,-5,-9,-2,5,-7,19,-12,3,-3,1,5,9,-1,-23,1,5,3,1,-1,-1,-1,-1,1,1,3,3,-5,3,3,5,-23,9,1,5,-1,1,-3,3,9,5,1,-3,-23,-1,5,1,3,3,9,-23,5,3,5,1,1,-1,-3,45,3,-5,-13,-21,-7,7,-17,35,-27 ; TV[230]=M; kill M; intmat M[7][10]=9,3,-1,-5,-9,-2,5,-7,19,-12,27,-3,1,5,-21,-7,1,-11,23,-15,9,-3,-5,-7,-9,11,7,-5,23,-21,7,1,-1,-3,-5,-1,5,-3,5,-5,3,3,1,-1,-3,5,1,-23,5,9,3,9,-23,5,3,5,1,1,-1,-3,45,3,-5,-13,-21,-7,7,-17,35,-27 ; TV[231]=M; kill M; intmat M[7][10]=9,3,-1,-5,-9,-2,5,-7,19,-12,2,-1,2,0,-2,-1,0,-1,2,-1,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,1,5,9,-1,-23,1,5,3,3,3,5,-23,9,1,5,-1,1,-3,3,9,5,1,-3,-23,-1,5,1,3,45,3,-5,-13,-21,-7,7,-17,35,-27 ; TV[232]=M; kill M; intmat M[7][10]=9,3,-1,-5,-9,-2,5,-7,19,-12,7,1,-1,-3,-5,-1,5,-3,5,-5,9,-3,-5,-7,-9,11,7,-5,23,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,3,5,-23,9,1,5,-1,1,-3,3,9,-23,5,3,5,1,1,-1,-3,45,3,-5,-13,-21,-7,7,-17,35,-27 ; TV[233]=M; kill M; intmat M[7][10]=9,3,-1,-5,-9,-2,5,-7,19,-12,27,-3,1,5,-21,-7,1,-11,23,-15,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,1,5,9,-1,-23,1,5,3,3,9,-23,5,3,5,1,1,-1,-3,3,9,5,1,-3,-23,-1,5,1,3,45,3,-5,-13,-21,-7,7,-17,35,-27 ; TV[234]=M; kill M; intmat M[7][10]=9,3,-1,-5,-9,-2,5,-7,19,-12,7,1,-1,-3,-5,-1,5,-3,5,-5,1,-1,-1,-1,-1,1,1,3,3,-5,3,3,5,-23,9,1,5,-1,1,-3,3,9,5,1,-3,-23,-1,5,1,3,3,9,-23,5,3,5,1,1,-1,-3,45,3,-5,-13,-21,-7,7,-17,35,-27 ; TV[235]=M; kill M; intmat M[7][10]=9,3,-1,-5,-9,-2,5,-7,19,-12,2,-1,2,0,-2,-1,0,-1,2,-1,9,-3,-5,-7,-9,11,7,-5,23,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,1,5,9,-1,-23,1,5,3,3,3,5,-23,9,1,5,-1,1,-3,45,3,-5,-13,-21,-7,7,-17,35,-27 ; TV[236]=M; kill M; intmat M[7][10]=9,3,-1,-5,-9,-2,5,-7,19,-12,27,-3,1,5,-21,-7,1,-11,23,-15,9,-3,-5,-7,-9,11,7,-5,23,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,1,5,9,-1,-23,1,5,3,3,9,-23,5,3,5,1,1,-1,-3,45,3,-5,-13,-21,-7,7,-17,35,-27 ; TV[237]=M; kill M; intmat M[7][10]=9,3,-1,-5,-9,-2,5,-7,19,-12,2,-1,2,0,-2,-1,0,-1,2,-1,9,-3,-5,-7,-9,11,7,-5,23,-21,27,-3,1,5,-21,-7,1,-11,23,-15,3,3,1,-1,-3,5,1,-23,5,9,3,-3,1,5,9,-1,-23,1,5,3,45,3,-5,-13,-21,-7,7,-17,35,-27 ; TV[238]=M; kill M; intmat M[7][10]=9,3,-1,-5,-9,-2,5,-7,19,-12,2,-1,2,0,-2,-1,0,-1,2,-1,9,-3,-5,-7,-9,11,7,-5,23,-21,7,1,-1,-3,-5,-1,5,-3,5,-5,3,3,1,-1,-3,5,1,-23,5,9,3,3,5,-23,9,1,5,-1,1,-3,45,3,-5,-13,-21,-7,7,-17,35,-27 ; TV[239]=M; kill M; intmat M[7][10]=9,3,-1,-5,-9,-2,5,-7,19,-12,2,-1,2,0,-2,-1,0,-1,2,-1,7,1,-1,-3,-5,-1,5,-3,5,-5,3,3,5,-23,9,1,5,-1,1,-3,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3,45,3,-5,-13,-21,-7,7,-17,35,-27 ; TV[240]=M; kill M; intmat M[7][10]=9,3,-1,-5,-9,-2,5,-7,19,-12,27,-3,1,5,-21,-7,1,-11,23,-15,7,1,-1,-3,-5,-1,5,-3,5,-5,3,9,-23,5,3,5,1,1,-1,-3,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3,45,3,-5,-13,-21,-7,7,-17,35,-27 ; TV[241]=M; kill M; intmat M[7][10]=9,3,-1,-5,-9,-2,5,-7,19,-12,2,-1,2,0,-2,-1,0,-1,2,-1,27,-3,1,5,-21,-7,1,-11,23,-15,3,-3,1,5,9,-1,-23,1,5,3,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3,45,3,-5,-13,-21,-7,7,-17,35,-27 ; TV[242]=M; kill M; intmat M[7][10]=9,3,-1,-5,-9,-2,5,-7,19,-12,2,-1,2,0,-2,-1,0,-1,2,-1,9,-3,-5,-7,-9,11,7,-5,23,-21,27,-3,1,5,-21,-7,1,-11,23,-15,7,1,-1,-3,-5,-1,5,-3,5,-5,3,3,1,-1,-3,5,1,-23,5,9,45,3,-5,-13,-21,-7,7,-17,35,-27 ; TV[243]=M; kill M; intmat M[7][10]=9,3,-1,-5,-9,-2,5,-7,19,-12,2,-1,2,0,-2,-1,0,-1,2,-1,27,-3,1,5,-21,-7,1,-11,23,-15,7,1,-1,-3,-5,-1,5,-3,5,-5,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3,45,3,-5,-13,-21,-7,7,-17,35,-27 ; TV[244]=M; kill M; intmat M[7][10]=9,3,-1,-5,-9,-2,5,-7,19,-12,2,-1,2,0,-2,-1,0,-1,2,-1,9,-3,-5,-7,-9,11,7,-5,23,-21,27,-3,1,5,-21,-7,1,-11,23,-15,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,1,5,9,-1,-23,1,5,3,45,3,-5,-13,-21,-7,7,-17,35,-27 ; TV[245]=M; kill M; intmat M[7][10]=9,3,-1,-5,-9,-2,5,-7,19,-12,27,-3,1,5,-21,-7,1,-11,23,-15,1,-1,-1,-1,-1,1,1,3,3,-5,7,1,-1,-3,-5,-1,5,-3,5,-5,3,9,-23,5,3,5,1,1,-1,-3,3,9,5,1,-3,-23,-1,5,1,3,45,3,-5,-13,-21,-7,7,-17,35,-27 ; TV[246]=M; kill M; intmat M[7][10]=9,3,-1,-5,-9,-2,5,-7,19,-12,2,-1,2,0,-2,-1,0,-1,2,-1,1,-1,-1,-1,-1,1,1,3,3,-5,7,1,-1,-3,-5,-1,5,-3,5,-5,3,3,5,-23,9,1,5,-1,1,-3,3,9,5,1,-3,-23,-1,5,1,3,45,3,-5,-13,-21,-7,7,-17,35,-27 ; TV[247]=M; kill M; intmat M[7][10]=9,3,-1,-5,-9,-2,5,-7,19,-12,27,-3,1,5,-21,-7,1,-11,23,-15,9,-3,-5,-7,-9,11,7,-5,23,-21,7,1,-1,-3,-5,-1,5,-3,5,-5,1,-1,-1,-1,-1,1,1,3,3,-5,3,9,-23,5,3,5,1,1,-1,-3,45,3,-5,-13,-21,-7,7,-17,35,-27 ; TV[248]=M; kill M; intmat M[7][10]=9,3,-1,-5,-9,-2,5,-7,19,-12,2,-1,2,0,-2,-1,0,-1,2,-1,9,-3,-5,-7,-9,11,7,-5,23,-21,7,1,-1,-3,-5,-1,5,-3,5,-5,1,-1,-1,-1,-1,1,1,3,3,-5,3,3,5,-23,9,1,5,-1,1,-3,45,3,-5,-13,-21,-7,7,-17,35,-27 ; TV[249]=M; kill M; intmat M[7][10]=9,3,-1,-5,-9,-2,5,-7,19,-12,2,-1,2,0,-2,-1,0,-1,2,-1,1,-1,-1,-1,-1,1,1,3,3,-5,27,-3,1,5,-21,-7,1,-11,23,-15,3,-3,1,5,9,-1,-23,1,5,3,3,9,5,1,-3,-23,-1,5,1,3,45,3,-5,-13,-21,-7,7,-17,35,-27 ; TV[250]=M; kill M; intmat M[7][10]=9,3,-1,-5,-9,-2,5,-7,19,-12,2,-1,2,0,-2,-1,0,-1,2,-1,1,-1,-1,-1,-1,1,1,3,3,-5,27,-3,1,5,-21,-7,1,-11,23,-15,7,1,-1,-3,-5,-1,5,-3,5,-5,3,9,5,1,-3,-23,-1,5,1,3,45,3,-5,-13,-21,-7,7,-17,35,-27 ; TV[251]=M; kill M; intmat M[7][10]=9,3,-1,-5,-9,-2,5,-7,19,-12,2,-1,2,0,-2,-1,0,-1,2,-1,9,-3,-5,-7,-9,11,7,-5,23,-21,27,-3,1,5,-21,-7,1,-11,23,-15,7,1,-1,-3,-5,-1,5,-3,5,-5,1,-1,-1,-1,-1,1,1,3,3,-5,45,3,-5,-13,-21,-7,7,-17,35,-27 ; TV[252]=M; kill M; intmat M[7][10]=9,3,-2,-7,-12,-1,19,-5,5,-9,9,-3,11,-5,-21,-5,23,-7,7,-9,3,3,5,-23,9,1,5,-1,1,-3,7,1,-1,-3,-5,-1,5,-3,5,-5,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3,45,3,-7,-17,-27,-5,35,-13,7,-21 ; TV[253]=M; kill M; intmat M[7][10]=9,3,-2,-7,-12,-1,19,-5,5,-9,3,3,5,-23,9,1,5,-1,1,-3,3,3,1,-1,-3,5,1,-23,5,9,7,1,-1,-3,-5,-1,5,-3,5,-5,3,9,-23,5,3,5,1,1,-1,-3,3,9,5,1,-3,-23,-1,5,1,3,45,3,-7,-17,-27,-5,35,-13,7,-21 ; TV[254]=M; kill M; intmat M[7][10]=9,3,-2,-7,-12,-1,19,-5,5,-9,3,3,5,-23,9,1,5,-1,1,-3,3,3,1,-1,-3,5,1,-23,5,9,3,-3,-1,1,3,1,5,5,-23,9,3,9,-23,5,3,5,1,1,-1,-3,3,9,5,1,-3,-23,-1,5,1,3,45,3,-7,-17,-27,-5,35,-13,7,-21 ; TV[255]=M; kill M; intmat M[7][10]=9,3,-2,-7,-12,-1,19,-5,5,-9,9,-3,11,-5,-21,-5,23,-7,7,-9,3,3,5,-23,9,1,5,-1,1,-3,3,-3,-1,1,3,1,5,5,-23,9,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3,45,3,-7,-17,-27,-5,35,-13,7,-21 ; TV[256]=M; kill M; intmat M[7][10]=9,3,-2,-7,-12,-1,19,-5,5,-9,9,-3,11,-5,-21,-5,23,-7,7,-9,1,-1,1,3,-5,-1,3,-1,1,-1,7,1,-1,-3,-5,-1,5,-3,5,-5,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3,45,3,-7,-17,-27,-5,35,-13,7,-21 ; TV[257]=M; kill M; intmat M[7][10]=9,3,-2,-7,-12,-1,19,-5,5,-9,9,-3,11,-5,-21,-5,23,-7,7,-9,1,-1,1,3,-5,-1,3,-1,1,-1,3,-3,-1,1,3,1,5,5,-23,9,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3,45,3,-7,-17,-27,-5,35,-13,7,-21 ; TV[258]=M; kill M; intmat M[7][10]=1,-1,1,3,-5,-1,3,-1,1,-1,9,3,-2,-7,-12,-1,19,-5,5,-9,3,9,-23,5,3,5,1,1,-1,-3,7,1,-1,-3,-5,-1,5,-3,5,-5,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3,45,3,-7,-17,-27,-5,35,-13,7,-21 ; TV[259]=M; kill M; intmat M[7][10]=1,-1,1,3,-5,-1,3,-1,1,-1,9,3,-2,-7,-12,-1,19,-5,5,-9,3,9,-23,5,3,5,1,1,-1,-3,3,-3,-1,1,3,1,5,5,-23,9,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3,45,3,-7,-17,-27,-5,35,-13,7,-21 ; TV[260]=M; kill M; intmat M[7][10]=9,3,-2,-7,-12,-1,19,-5,5,-9,2,-1,-1,-1,-1,2,2,0,0,-2,3,3,1,-1,-3,5,1,-23,5,9,7,1,-1,-3,-5,-1,5,-3,5,-5,3,3,5,-23,9,1,5,-1,1,-3,3,9,-23,5,3,5,1,1,-1,-3,45,3,-7,-17,-27,-5,35,-13,7,-21 ; TV[261]=M; kill M; intmat M[7][10]=9,3,-2,-7,-12,-1,19,-5,5,-9,9,-3,11,-5,-21,-5,23,-7,7,-9,27,-3,-7,-11,-15,1,23,5,1,-21,7,1,-1,-3,-5,-1,5,-3,5,-5,3,3,5,-23,9,1,5,-1,1,-3,3,9,5,1,-3,-23,-1,5,1,3,45,3,-7,-17,-27,-5,35,-13,7,-21 ; TV[262]=M; kill M; intmat M[7][10]=2,-1,-1,-1,-1,2,2,0,0,-2,9,3,-2,-7,-12,-1,19,-5,5,-9,1,-1,1,3,-5,-1,3,-1,1,-1,7,1,-1,-3,-5,-1,5,-3,5,-5,3,3,1,-1,-3,5,1,-23,5,9,3,9,-23,5,3,5,1,1,-1,-3,45,3,-7,-17,-27,-5,35,-13,7,-21 ; TV[263]=M; kill M; intmat M[7][10]=9,3,-2,-7,-12,-1,19,-5,5,-9,27,-3,-7,-11,-15,1,23,5,1,-21,3,3,5,-23,9,1,5,-1,1,-3,7,1,-1,-3,-5,-1,5,-3,5,-5,3,9,5,1,-3,-23,-1,5,1,3,3,9,-23,5,3,5,1,1,-1,-3,45,3,-7,-17,-27,-5,35,-13,7,-21 ; TV[264]=M; kill M; intmat M[7][10]=9,3,-2,-7,-12,-1,19,-5,5,-9,2,-1,-1,-1,-1,2,2,0,0,-2,9,-3,11,-5,-21,-5,23,-7,7,-9,7,1,-1,-3,-5,-1,5,-3,5,-5,3,3,5,-23,9,1,5,-1,1,-3,3,3,1,-1,-3,5,1,-23,5,9,45,3,-7,-17,-27,-5,35,-13,7,-21 ; TV[265]=M; kill M; intmat M[7][10]=27,-3,-7,-11,-15,1,23,5,1,-21,9,3,-2,-7,-12,-1,19,-5,5,-9,1,-1,1,3,-5,-1,3,-1,1,-1,3,-3,-1,1,3,1,5,5,-23,9,3,9,-23,5,3,5,1,1,-1,-3,3,9,5,1,-3,-23,-1,5,1,3,45,3,-7,-17,-27,-5,35,-13,7,-21 ; TV[266]=M; kill M; intmat M[7][10]=2,-1,-1,-1,-1,2,2,0,0,-2,9,3,-2,-7,-12,-1,19,-5,5,-9,1,-1,1,3,-5,-1,3,-1,1,-1,3,-3,-1,1,3,1,5,5,-23,9,3,3,1,-1,-3,5,1,-23,5,9,3,9,-23,5,3,5,1,1,-1,-3,45,3,-7,-17,-27,-5,35,-13,7,-21 ; TV[267]=M; kill M; intmat M[7][10]=9,3,-2,-7,-12,-1,19,-5,5,-9,9,-3,11,-5,-21,-5,23,-7,7,-9,27,-3,-7,-11,-15,1,23,5,1,-21,3,-3,-1,1,3,1,5,5,-23,9,3,3,5,-23,9,1,5,-1,1,-3,3,9,5,1,-3,-23,-1,5,1,3,45,3,-7,-17,-27,-5,35,-13,7,-21 ; TV[268]=M; kill M; intmat M[7][10]=9,3,-2,-7,-12,-1,19,-5,5,-9,27,-3,-7,-11,-15,1,23,5,1,-21,3,3,5,-23,9,1,5,-1,1,-3,3,-3,-1,1,3,1,5,5,-23,9,3,9,5,1,-3,-23,-1,5,1,3,3,9,-23,5,3,5,1,1,-1,-3,45,3,-7,-17,-27,-5,35,-13,7,-21 ; TV[269]=M; kill M; intmat M[7][10]=9,3,-2,-7,-12,-1,19,-5,5,-9,2,-1,-1,-1,-1,2,2,0,0,-2,3,3,1,-1,-3,5,1,-23,5,9,3,-3,-1,1,3,1,5,5,-23,9,3,3,5,-23,9,1,5,-1,1,-3,3,9,-23,5,3,5,1,1,-1,-3,45,3,-7,-17,-27,-5,35,-13,7,-21 ; TV[270]=M; kill M; intmat M[7][10]=9,3,-2,-7,-12,-1,19,-5,5,-9,27,-3,-7,-11,-15,1,23,5,1,-21,9,-3,11,-5,-21,-5,23,-7,7,-9,1,-1,1,3,-5,-1,3,-1,1,-1,3,-3,-1,1,3,1,5,5,-23,9,3,9,5,1,-3,-23,-1,5,1,3,45,3,-7,-17,-27,-5,35,-13,7,-21 ; TV[271]=M; kill M; intmat M[7][10]=9,3,-2,-7,-12,-1,19,-5,5,-9,2,-1,-1,-1,-1,2,2,0,0,-2,9,-3,11,-5,-21,-5,23,-7,7,-9,3,-3,-1,1,3,1,5,5,-23,9,3,3,5,-23,9,1,5,-1,1,-3,3,3,1,-1,-3,5,1,-23,5,9,45,3,-7,-17,-27,-5,35,-13,7,-21 ; TV[272]=M; kill M; intmat M[7][10]=9,3,-2,-7,-12,-1,19,-5,5,-9,27,-3,-7,-11,-15,1,23,5,1,-21,9,-3,11,-5,-21,-5,23,-7,7,-9,1,-1,1,3,-5,-1,3,-1,1,-1,7,1,-1,-3,-5,-1,5,-3,5,-5,3,9,5,1,-3,-23,-1,5,1,3,45,3,-7,-17,-27,-5,35,-13,7,-21 ; TV[273]=M; kill M; intmat M[7][10]=9,3,-2,-7,-12,-1,19,-5,5,-9,2,-1,-1,-1,-1,2,2,0,0,-2,9,-3,11,-5,-21,-5,23,-7,7,-9,1,-1,1,3,-5,-1,3,-1,1,-1,7,1,-1,-3,-5,-1,5,-3,5,-5,3,3,1,-1,-3,5,1,-23,5,9,45,3,-7,-17,-27,-5,35,-13,7,-21 ; TV[274]=M; kill M; intmat M[7][10]=27,-3,-7,-11,-15,1,23,5,1,-21,9,3,-2,-7,-12,-1,19,-5,5,-9,1,-1,1,3,-5,-1,3,-1,1,-1,7,1,-1,-3,-5,-1,5,-3,5,-5,3,9,-23,5,3,5,1,1,-1,-3,3,9,5,1,-3,-23,-1,5,1,3,45,3,-7,-17,-27,-5,35,-13,7,-21 ; TV[275]=M; kill M; intmat M[7][10]=9,3,-2,-7,-12,-1,19,-5,5,-9,2,-1,-1,-1,-1,2,2,0,0,-2,9,-3,11,-5,-21,-5,23,-7,7,-9,1,-1,1,3,-5,-1,3,-1,1,-1,3,-3,-1,1,3,1,5,5,-23,9,3,3,1,-1,-3,5,1,-23,5,9,45,3,-7,-17,-27,-5,35,-13,7,-21 ; TV[276]=M; kill M; intmat M[7][10]=2,-1,-1,-1,-1,2,2,0,0,-2,9,3,-2,-7,-12,-1,19,-5,5,-9,1,-1,1,3,-5,-1,3,-1,1,-1,27,-3,-7,-11,-15,1,23,5,1,-21,3,-3,-1,1,3,1,5,5,-23,9,3,9,-23,5,3,5,1,1,-1,-3,45,3,-7,-17,-27,-5,35,-13,7,-21 ; TV[277]=M; kill M; intmat M[7][10]=9,3,-2,-7,-12,-1,19,-5,5,-9,2,-1,-1,-1,-1,2,2,0,0,-2,27,-3,-7,-11,-15,1,23,5,1,-21,3,-3,-1,1,3,1,5,5,-23,9,3,3,5,-23,9,1,5,-1,1,-3,3,9,-23,5,3,5,1,1,-1,-3,45,3,-7,-17,-27,-5,35,-13,7,-21 ; TV[278]=M; kill M; intmat M[7][10]=2,-1,-1,-1,-1,2,2,0,0,-2,9,3,-2,-7,-12,-1,19,-5,5,-9,1,-1,1,3,-5,-1,3,-1,1,-1,27,-3,-7,-11,-15,1,23,5,1,-21,7,1,-1,-3,-5,-1,5,-3,5,-5,3,9,-23,5,3,5,1,1,-1,-3,45,3,-7,-17,-27,-5,35,-13,7,-21 ; TV[279]=M; kill M; intmat M[7][10]=9,3,-2,-7,-12,-1,19,-5,5,-9,9,-3,11,-5,-21,-5,23,-7,7,-9,2,-1,-1,-1,-1,2,2,0,0,-2,27,-3,-7,-11,-15,1,23,5,1,-21,3,3,5,-23,9,1,5,-1,1,-3,7,1,-1,-3,-5,-1,5,-3,5,-5,45,3,-7,-17,-27,-5,35,-13,7,-21 ; TV[280]=M; kill M; intmat M[7][10]=9,3,-2,-7,-12,-1,19,-5,5,-9,9,-3,11,-5,-21,-5,23,-7,7,-9,2,-1,-1,-1,-1,2,2,0,0,-2,27,-3,-7,-11,-15,1,23,5,1,-21,3,3,5,-23,9,1,5,-1,1,-3,3,-3,-1,1,3,1,5,5,-23,9,45,3,-7,-17,-27,-5,35,-13,7,-21 ; TV[281]=M; kill M; intmat M[7][10]=9,3,-2,-7,-12,-1,19,-5,5,-9,2,-1,-1,-1,-1,2,2,0,0,-2,9,-3,11,-5,-21,-5,23,-7,7,-9,1,-1,1,3,-5,-1,3,-1,1,-1,27,-3,-7,-11,-15,1,23,5,1,-21,3,-3,-1,1,3,1,5,5,-23,9,45,3,-7,-17,-27,-5,35,-13,7,-21 ; TV[282]=M; kill M; intmat M[7][10]=9,3,-2,-7,-12,-1,19,-5,5,-9,2,-1,-1,-1,-1,2,2,0,0,-2,27,-3,-7,-11,-15,1,23,5,1,-21,7,1,-1,-3,-5,-1,5,-3,5,-5,3,3,5,-23,9,1,5,-1,1,-3,3,9,-23,5,3,5,1,1,-1,-3,45,3,-7,-17,-27,-5,35,-13,7,-21 ; TV[283]=M; kill M; intmat M[7][10]=9,3,-2,-7,-12,-1,19,-5,5,-9,2,-1,-1,-1,-1,2,2,0,0,-2,9,-3,11,-5,-21,-5,23,-7,7,-9,1,-1,1,3,-5,-1,3,-1,1,-1,27,-3,-7,-11,-15,1,23,5,1,-21,7,1,-1,-3,-5,-1,5,-3,5,-5,45,3,-7,-17,-27,-5,35,-13,7,-21 ; TV[284]=M; kill M; intmat M[8][10]=27,-3,-7,-11,-15,1,23,5,1,-21,7,1,-1,-3,-5,-1,5,-3,5,-5,2,-1,2,0,-2,-1,0,-1,2,-1,9,-6,4,-1,-6,-1,4,4,-1,-6,9,-3,11,-5,-21,-5,23,-7,7,-9,1,-1,1,3,-5,-1,3,-1,1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,3,9,5,1,-3,-23,-1,5,1,3 ; TV[285]=M; kill M; intmat M[8][10]=27,-3,-7,-11,-15,1,23,5,1,-21,7,1,-1,-3,-5,-1,5,-3,5,-5,2,-1,2,0,-2,-1,0,-1,2,-1,9,-6,4,-1,-6,-1,4,4,-1,-6,9,-3,11,-5,-21,-5,23,-7,7,-9,3,3,5,-23,9,1,5,-1,1,-3,1,-1,-1,-1,-1,1,1,3,3,-5,3,9,5,1,-3,-23,-1,5,1,3 ; TV[286]=M; kill M; intmat M[8][10]=7,1,-1,-3,-5,-1,5,-3,5,-5,27,-3,-7,-11,-15,1,23,5,1,-21,9,-6,4,-1,-6,-1,4,4,-1,-6,2,-1,2,0,-2,-1,0,-1,2,-1,9,-3,11,-5,-21,-5,23,-7,7,-9,2,-1,-1,-1,-1,2,2,0,0,-2,1,-1,-1,-1,-1,1,1,3,3,-5,1,-1,1,3,-5,-1,3,-1,1,-1 ; TV[287]=M; kill M; intmat M[8][10]=7,1,-1,-3,-5,-1,5,-3,5,-5,27,-3,-7,-11,-15,1,23,5,1,-21,9,-6,4,-1,-6,-1,4,4,-1,-6,2,-1,2,0,-2,-1,0,-1,2,-1,9,-3,11,-5,-21,-5,23,-7,7,-9,3,3,5,-23,9,1,5,-1,1,-3,1,-1,-1,-1,-1,1,1,3,3,-5,2,-1,-1,-1,-1,2,2,0,0,-2 ; TV[288]=M; kill M; intmat M[7][10]=9,-9,5,19,-12,-5,-7,-1,-2,3,9,-9,7,23,-21,-7,-5,-5,11,-3,3,9,-23,5,3,5,1,1,-1,-3,3,-3,1,5,9,-1,-23,1,5,3,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3,45,-21,7,35,-27,-13,-17,-5,-7,3 ; TV[289]=M; kill M; intmat M[7][10]=9,-9,5,19,-12,-5,-7,-1,-2,3,1,-1,1,3,-5,-1,3,-1,1,-1,3,9,-23,5,3,5,1,1,-1,-3,9,-9,7,23,-21,-7,-5,-5,11,-3,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3,45,-21,7,35,-27,-13,-17,-5,-7,3 ; TV[290]=M; kill M; intmat M[7][10]=9,-9,5,19,-12,-5,-7,-1,-2,3,1,-1,1,3,-5,-1,3,-1,1,-1,3,9,-23,5,3,5,1,1,-1,-3,3,-3,-1,1,3,1,5,5,-23,9,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3,45,-21,7,35,-27,-13,-17,-5,-7,3 ; TV[291]=M; kill M; intmat M[7][10]=9,-9,5,19,-12,-5,-7,-1,-2,3,7,-5,5,5,-5,-3,-3,-1,-1,1,1,-1,1,3,-5,-1,3,-1,1,-1,9,-9,7,23,-21,-7,-5,-5,11,-3,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3,45,-21,7,35,-27,-13,-17,-5,-7,3 ; TV[292]=M; kill M; intmat M[7][10]=9,-9,5,19,-12,-5,-7,-1,-2,3,2,-2,0,2,-1,0,-1,2,-1,-1,1,-1,1,3,-5,-1,3,-1,1,-1,9,-9,7,23,-21,-7,-5,-5,11,-3,3,9,-23,5,3,5,1,1,-1,-3,3,9,5,1,-3,-23,-1,5,1,3,45,-21,7,35,-27,-13,-17,-5,-7,3 ; TV[293]=M; kill M; intmat M[7][10]=9,-9,5,19,-12,-5,-7,-1,-2,3,27,-21,1,23,-15,5,-11,1,-7,-3,1,-1,1,3,-5,-1,3,-1,1,-1,9,-9,7,23,-21,-7,-5,-5,11,-3,3,3,1,-1,-3,5,1,-23,5,9,3,9,-23,5,3,5,1,1,-1,-3,45,-21,7,35,-27,-13,-17,-5,-7,3 ; TV[294]=M; kill M; intmat M[7][10]=9,-9,5,19,-12,-5,-7,-1,-2,3,2,-2,0,2,-1,0,-1,2,-1,-1,9,-9,7,23,-21,-7,-5,-5,11,-3,3,-3,1,5,9,-1,-23,1,5,3,3,9,-23,5,3,5,1,1,-1,-3,3,9,5,1,-3,-23,-1,5,1,3,45,-21,7,35,-27,-13,-17,-5,-7,3 ; TV[295]=M; kill M; intmat M[7][10]=9,-9,5,19,-12,-5,-7,-1,-2,3,27,-21,1,23,-15,5,-11,1,-7,-3,9,-9,7,23,-21,-7,-5,-5,11,-3,3,-3,1,5,9,-1,-23,1,5,3,3,3,1,-1,-3,5,1,-23,5,9,3,9,-23,5,3,5,1,1,-1,-3,45,-21,7,35,-27,-13,-17,-5,-7,3 ; TV[296]=M; kill M; intmat M[7][10]=9,-9,5,19,-12,-5,-7,-1,-2,3,3,-3,-1,1,3,1,5,5,-23,9,3,9,-23,5,3,5,1,1,-1,-3,3,-3,1,5,9,-1,-23,1,5,3,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3,45,-21,7,35,-27,-13,-17,-5,-7,3 ; TV[297]=M; kill M; intmat M[7][10]=9,-9,5,19,-12,-5,-7,-1,-2,3,7,-5,5,5,-5,-3,-3,-1,-1,1,9,-9,7,23,-21,-7,-5,-5,11,-3,3,-3,1,5,9,-1,-23,1,5,3,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3,45,-21,7,35,-27,-13,-17,-5,-7,3 ; TV[298]=M; kill M; intmat M[7][10]=9,-9,5,19,-12,-5,-7,-1,-2,3,2,-2,0,2,-1,0,-1,2,-1,-1,7,-5,5,5,-5,-3,-3,-1,-1,1,9,-9,7,23,-21,-7,-5,-5,11,-3,3,-3,1,5,9,-1,-23,1,5,3,3,9,5,1,-3,-23,-1,5,1,3,45,-21,7,35,-27,-13,-17,-5,-7,3 ; TV[299]=M; kill M; intmat M[7][10]=9,-9,5,19,-12,-5,-7,-1,-2,3,27,-21,1,23,-15,5,-11,1,-7,-3,9,-9,7,23,-21,-7,-5,-5,11,-3,3,-3,1,5,9,-1,-23,1,5,3,2,-2,0,2,-1,0,-1,2,-1,-1,3,9,-23,5,3,5,1,1,-1,-3,45,-21,7,35,-27,-13,-17,-5,-7,3 ; TV[300]=M; kill M; intmat M[7][10]=9,-9,5,19,-12,-5,-7,-1,-2,3,27,-21,1,23,-15,5,-11,1,-7,-3,7,-5,5,5,-5,-3,-3,-1,-1,1,1,-1,1,3,-5,-1,3,-1,1,-1,9,-9,7,23,-21,-7,-5,-5,11,-3,3,3,1,-1,-3,5,1,-23,5,9,45,-21,7,35,-27,-13,-17,-5,-7,3 ; TV[301]=M; kill M; intmat M[7][10]=9,-9,5,19,-12,-5,-7,-1,-2,3,27,-21,1,23,-15,5,-11,1,-7,-3,3,3,1,-1,-3,5,1,-23,5,9,3,-3,1,5,9,-1,-23,1,5,3,3,-3,-1,1,3,1,5,5,-23,9,3,9,-23,5,3,5,1,1,-1,-3,45,-21,7,35,-27,-13,-17,-5,-7,3 ; TV[302]=M; kill M; intmat M[7][10]=9,-9,5,19,-12,-5,-7,-1,-2,3,7,-5,5,5,-5,-3,-3,-1,-1,1,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3,45,-21,7,35,-27,-13,-17,-5,-7,3 ; TV[303]=M; kill M; intmat M[7][10]=9,-9,5,19,-12,-5,-7,-1,-2,3,2,-2,0,2,-1,0,-1,2,-1,-1,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,3,9,-23,5,3,5,1,1,-1,-3,3,9,5,1,-3,-23,-1,5,1,3,45,-21,7,35,-27,-13,-17,-5,-7,3 ; TV[304]=M; kill M; intmat M[7][10]=9,-9,5,19,-12,-5,-7,-1,-2,3,27,-21,1,23,-15,5,-11,1,-7,-3,1,-1,1,3,-5,-1,3,-1,1,-1,2,-2,0,2,-1,0,-1,2,-1,-1,9,-9,7,23,-21,-7,-5,-5,11,-3,3,9,-23,5,3,5,1,1,-1,-3,45,-21,7,35,-27,-13,-17,-5,-7,3 ; TV[305]=M; kill M; intmat M[7][10]=9,-9,5,19,-12,-5,-7,-1,-2,3,27,-21,1,23,-15,5,-11,1,-7,-3,1,-1,1,3,-5,-1,3,-1,1,-1,3,-3,-1,1,3,1,5,5,-23,9,3,3,1,-1,-3,5,1,-23,5,9,3,9,-23,5,3,5,1,1,-1,-3,45,-21,7,35,-27,-13,-17,-5,-7,3 ; TV[306]=M; kill M; intmat M[7][10]=9,-9,5,19,-12,-5,-7,-1,-2,3,7,-5,5,5,-5,-3,-3,-1,-1,1,1,-1,1,3,-5,-1,3,-1,1,-1,3,-3,-1,1,3,1,5,5,-23,9,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3,45,-21,7,35,-27,-13,-17,-5,-7,3 ; TV[307]=M; kill M; intmat M[7][10]=9,-9,5,19,-12,-5,-7,-1,-2,3,2,-2,0,2,-1,0,-1,2,-1,-1,1,-1,1,3,-5,-1,3,-1,1,-1,3,-3,-1,1,3,1,5,5,-23,9,3,9,-23,5,3,5,1,1,-1,-3,3,9,5,1,-3,-23,-1,5,1,3,45,-21,7,35,-27,-13,-17,-5,-7,3 ; TV[308]=M; kill M; intmat M[7][10]=9,-9,5,19,-12,-5,-7,-1,-2,3,2,-2,0,2,-1,0,-1,2,-1,-1,7,-5,5,5,-5,-3,-3,-1,-1,1,1,-1,1,3,-5,-1,3,-1,1,-1,9,-9,7,23,-21,-7,-5,-5,11,-3,3,9,5,1,-3,-23,-1,5,1,3,45,-21,7,35,-27,-13,-17,-5,-7,3 ; TV[309]=M; kill M; intmat M[7][10]=9,-9,5,19,-12,-5,-7,-1,-2,3,27,-21,1,23,-15,5,-11,1,-7,-3,7,-5,5,5,-5,-3,-3,-1,-1,1,9,-9,7,23,-21,-7,-5,-5,11,-3,3,3,1,-1,-3,5,1,-23,5,9,3,-3,1,5,9,-1,-23,1,5,3,45,-21,7,35,-27,-13,-17,-5,-7,3 ; TV[310]=M; kill M; intmat M[7][10]=9,-9,5,19,-12,-5,-7,-1,-2,3,2,-2,0,2,-1,0,-1,2,-1,-1,7,-5,5,5,-5,-3,-3,-1,-1,1,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,3,9,5,1,-3,-23,-1,5,1,3,45,-21,7,35,-27,-13,-17,-5,-7,3 ; TV[311]=M; kill M; intmat M[7][10]=9,-9,5,19,-12,-5,-7,-1,-2,3,27,-21,1,23,-15,5,-11,1,-7,-3,2,-2,0,2,-1,0,-1,2,-1,-1,3,-3,1,5,9,-1,-23,1,5,3,3,-3,-1,1,3,1,5,5,-23,9,3,9,-23,5,3,5,1,1,-1,-3,45,-21,7,35,-27,-13,-17,-5,-7,3 ; TV[312]=M; kill M; intmat M[7][10]=9,-9,5,19,-12,-5,-7,-1,-2,3,27,-21,1,23,-15,5,-11,1,-7,-3,7,-5,5,5,-5,-3,-3,-1,-1,1,3,3,1,-1,-3,5,1,-23,5,9,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,45,-21,7,35,-27,-13,-17,-5,-7,3 ; TV[313]=M; kill M; intmat M[7][10]=9,-9,5,19,-12,-5,-7,-1,-2,3,27,-21,1,23,-15,5,-11,1,-7,-3,7,-5,5,5,-5,-3,-3,-1,-1,1,9,-9,7,23,-21,-7,-5,-5,11,-3,2,-2,0,2,-1,0,-1,2,-1,-1,3,-3,1,5,9,-1,-23,1,5,3,45,-21,7,35,-27,-13,-17,-5,-7,3 ; TV[314]=M; kill M; intmat M[7][10]=9,-9,5,19,-12,-5,-7,-1,-2,3,2,-2,0,2,-1,0,-1,2,-1,-1,7,-5,5,5,-5,-3,-3,-1,-1,1,1,-1,1,3,-5,-1,3,-1,1,-1,3,-3,-1,1,3,1,5,5,-23,9,3,9,5,1,-3,-23,-1,5,1,3,45,-21,7,35,-27,-13,-17,-5,-7,3 ; TV[315]=M; kill M; intmat M[7][10]=9,-9,5,19,-12,-5,-7,-1,-2,3,27,-21,1,23,-15,5,-11,1,-7,-3,1,-1,1,3,-5,-1,3,-1,1,-1,2,-2,0,2,-1,0,-1,2,-1,-1,3,-3,-1,1,3,1,5,5,-23,9,3,9,-23,5,3,5,1,1,-1,-3,45,-21,7,35,-27,-13,-17,-5,-7,3 ; TV[316]=M; kill M; intmat M[7][10]=9,-9,5,19,-12,-5,-7,-1,-2,3,27,-21,1,23,-15,5,-11,1,-7,-3,7,-5,5,5,-5,-3,-3,-1,-1,1,1,-1,1,3,-5,-1,3,-1,1,-1,2,-2,0,2,-1,0,-1,2,-1,-1,9,-9,7,23,-21,-7,-5,-5,11,-3,45,-21,7,35,-27,-13,-17,-5,-7,3 ; TV[317]=M; kill M; intmat M[7][10]=9,-9,5,19,-12,-5,-7,-1,-2,3,27,-21,1,23,-15,5,-11,1,-7,-3,7,-5,5,5,-5,-3,-3,-1,-1,1,1,-1,1,3,-5,-1,3,-1,1,-1,3,-3,-1,1,3,1,5,5,-23,9,3,3,1,-1,-3,5,1,-23,5,9,45,-21,7,35,-27,-13,-17,-5,-7,3 ; TV[318]=M; kill M; intmat M[7][10]=9,-9,5,19,-12,-5,-7,-1,-2,3,27,-21,1,23,-15,5,-11,1,-7,-3,7,-5,5,5,-5,-3,-3,-1,-1,1,1,-1,1,3,-5,-1,3,-1,1,-1,2,-2,0,2,-1,0,-1,2,-1,-1,3,-3,-1,1,3,1,5,5,-23,9,45,-21,7,35,-27,-13,-17,-5,-7,3 ; TV[319]=M; kill M; intmat M[7][10]=9,-9,5,19,-12,-5,-7,-1,-2,3,27,-21,1,23,-15,5,-11,1,-7,-3,7,-5,5,5,-5,-3,-3,-1,-1,1,2,-2,0,2,-1,0,-1,2,-1,-1,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,45,-21,7,35,-27,-13,-17,-5,-7,3 ; TV[320]=M; kill M; intmat M[7][10]=9,-9,7,23,-21,-7,-5,-5,11,-3,3,-3,1,5,9,-1,-23,1,5,3,1,-1,-1,-1,-1,1,1,3,3,-5,3,9,-23,5,3,5,1,1,-1,-3,3,9,5,1,-3,-23,-1,5,1,3,2,-2,0,2,-1,0,-1,2,-1,-1,27,-3,1,5,-21,-7,1,-11,23,-15 ; TV[321]=M; kill M; intmat M[7][10]=9,-9,7,23,-21,-7,-5,-5,11,-3,1,-1,1,3,-5,-1,3,-1,1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,3,9,-23,5,3,5,1,1,-1,-3,3,9,5,1,-3,-23,-1,5,1,3,2,-2,0,2,-1,0,-1,2,-1,-1,27,-3,1,5,-21,-7,1,-11,23,-15 ; TV[322]=M; kill M; intmat M[7][10]=9,-9,7,23,-21,-7,-5,-5,11,-3,2,-1,2,0,-2,-1,0,-1,2,-1,1,-1,-1,-1,-1,1,1,3,3,-5,1,-1,1,3,-5,-1,3,-1,1,-1,3,9,5,1,-3,-23,-1,5,1,3,2,-2,0,2,-1,0,-1,2,-1,-1,27,-3,1,5,-21,-7,1,-11,23,-15 ; TV[323]=M; kill M; intmat M[7][10]=9,-9,7,23,-21,-7,-5,-5,11,-3,9,-6,-1,4,-6,4,-1,-1,4,-6,1,-1,-1,-1,-1,1,1,3,3,-5,1,-1,1,3,-5,-1,3,-1,1,-1,3,9,-23,5,3,5,1,1,-1,-3,2,-2,0,2,-1,0,-1,2,-1,-1,27,-3,1,5,-21,-7,1,-11,23,-15 ; TV[324]=M; kill M; intmat M[7][10]=9,-9,7,23,-21,-7,-5,-5,11,-3,2,-1,2,0,-2,-1,0,-1,2,-1,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,1,5,9,-1,-23,1,5,3,3,9,5,1,-3,-23,-1,5,1,3,2,-2,0,2,-1,0,-1,2,-1,-1,27,-3,1,5,-21,-7,1,-11,23,-15 ; TV[325]=M; kill M; intmat M[7][10]=9,-9,7,23,-21,-7,-5,-5,11,-3,9,-6,-1,4,-6,4,-1,-1,4,-6,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,1,5,9,-1,-23,1,5,3,3,9,-23,5,3,5,1,1,-1,-3,2,-2,0,2,-1,0,-1,2,-1,-1,27,-3,1,5,-21,-7,1,-11,23,-15 ; TV[326]=M; kill M; intmat M[7][10]=9,-9,7,23,-21,-7,-5,-5,11,-3,9,-6,-1,4,-6,4,-1,-1,4,-6,1,-1,-1,-1,-1,1,1,3,3,-5,2,-1,2,0,-2,-1,0,-1,2,-1,1,-1,1,3,-5,-1,3,-1,1,-1,2,-2,0,2,-1,0,-1,2,-1,-1,27,-3,1,5,-21,-7,1,-11,23,-15 ; TV[327]=M; kill M; intmat M[7][10]=9,-9,7,23,-21,-7,-5,-5,11,-3,9,-6,-1,4,-6,4,-1,-1,4,-6,1,-1,-1,-1,-1,1,1,3,3,-5,2,-1,2,0,-2,-1,0,-1,2,-1,3,-3,1,5,9,-1,-23,1,5,3,2,-2,0,2,-1,0,-1,2,-1,-1,27,-3,1,5,-21,-7,1,-11,23,-15 ; TV[328]=M; kill M; intmat M[8][10]=27,-3,1,5,-21,-7,1,-11,23,-15,7,1,-1,-3,-5,-1,5,-3,5,-5,2,-1,-1,-1,-1,2,2,0,0,-2,9,-6,-1,4,-6,4,-1,-1,4,-6,1,-1,1,3,-5,-1,3,-1,1,-1,3,9,-23,5,3,5,1,1,-1,-3,9,-3,-5,-7,-9,11,7,-5,23,-21,3,3,1,-1,-3,5,1,-23,5,9 ; TV[329]=M; kill M; intmat M[8][10]=7,1,-1,-3,-5,-1,5,-3,5,-5,27,-3,1,5,-21,-7,1,-11,23,-15,9,-6,-1,4,-6,4,-1,-1,4,-6,2,-1,-1,-1,-1,2,2,0,0,-2,1,-1,1,3,-5,-1,3,-1,1,-1,2,-1,2,0,-2,-1,0,-1,2,-1,9,-3,-5,-7,-9,11,7,-5,23,-21,3,3,1,-1,-3,5,1,-23,5,9 ; TV[330]=M; kill M; intmat M[8][10]=27,-3,1,5,-21,-7,1,-11,23,-15,7,1,-1,-3,-5,-1,5,-3,5,-5,2,-1,-1,-1,-1,2,2,0,0,-2,9,-6,-1,4,-6,4,-1,-1,4,-6,1,-1,1,3,-5,-1,3,-1,1,-1,3,9,-23,5,3,5,1,1,-1,-3,9,-3,-5,-7,-9,11,7,-5,23,-21,1,-1,-1,-1,-1,1,1,3,3,-5 ; TV[331]=M; kill M; intmat M[8][10]=7,1,-1,-3,-5,-1,5,-3,5,-5,27,-3,1,5,-21,-7,1,-11,23,-15,9,-6,-1,4,-6,4,-1,-1,4,-6,2,-1,-1,-1,-1,2,2,0,0,-2,1,-1,1,3,-5,-1,3,-1,1,-1,2,-1,2,0,-2,-1,0,-1,2,-1,9,-3,-5,-7,-9,11,7,-5,23,-21,1,-1,-1,-1,-1,1,1,3,3,-5 ; TV[332]=M; kill M; intmat M[7][10]=1,-1,1,3,-5,-1,3,-1,1,-1,3,9,-23,5,3,5,1,1,-1,-3,9,-9,-7,-5,-3,7,11,23,-5,-21,3,-3,-1,1,3,1,5,5,-23,9,3,9,5,1,-3,-23,-1,5,1,3,2,-2,0,2,-1,0,-1,2,-1,-1,27,-3,-7,-11,-15,1,23,5,1,-21 ; TV[333]=M; kill M; intmat M[7][10]=1,-1,1,3,-5,-1,3,-1,1,-1,9,-6,4,-1,-6,-1,4,4,-1,-6,9,-9,-7,-5,-3,7,11,23,-5,-21,3,-3,-1,1,3,1,5,5,-23,9,3,9,5,1,-3,-23,-1,5,1,3,2,-2,0,2,-1,0,-1,2,-1,-1,27,-3,-7,-11,-15,1,23,5,1,-21 ; TV[334]=M; kill M; intmat M[7][10]=1,-1,1,3,-5,-1,3,-1,1,-1,2,-1,-1,-1,-1,2,2,0,0,-2,9,-9,-7,-5,-3,7,11,23,-5,-21,3,-3,-1,1,3,1,5,5,-23,9,3,9,-23,5,3,5,1,1,-1,-3,2,-2,0,2,-1,0,-1,2,-1,-1,27,-3,-7,-11,-15,1,23,5,1,-21 ; TV[335]=M; kill M; intmat M[7][10]=1,-1,1,3,-5,-1,3,-1,1,-1,3,9,-23,5,3,5,1,1,-1,-3,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,9,5,1,-3,-23,-1,5,1,3,2,-2,0,2,-1,0,-1,2,-1,-1,27,-3,-7,-11,-15,1,23,5,1,-21 ; TV[336]=M; kill M; intmat M[7][10]=1,-1,1,3,-5,-1,3,-1,1,-1,2,-1,-1,-1,-1,2,2,0,0,-2,9,-9,-7,-5,-3,7,11,23,-5,-21,9,-6,4,-1,-6,-1,4,4,-1,-6,3,-3,-1,1,3,1,5,5,-23,9,2,-2,0,2,-1,0,-1,2,-1,-1,27,-3,-7,-11,-15,1,23,5,1,-21 ; TV[337]=M; kill M; intmat M[7][10]=1,-1,1,3,-5,-1,3,-1,1,-1,9,-6,4,-1,-6,-1,4,4,-1,-6,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,9,5,1,-3,-23,-1,5,1,3,2,-2,0,2,-1,0,-1,2,-1,-1,27,-3,-7,-11,-15,1,23,5,1,-21 ; TV[338]=M; kill M; intmat M[7][10]=1,-1,1,3,-5,-1,3,-1,1,-1,2,-1,-1,-1,-1,2,2,0,0,-2,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,9,-23,5,3,5,1,1,-1,-3,2,-2,0,2,-1,0,-1,2,-1,-1,27,-3,-7,-11,-15,1,23,5,1,-21 ; TV[339]=M; kill M; intmat M[7][10]=1,-1,1,3,-5,-1,3,-1,1,-1,2,-1,-1,-1,-1,2,2,0,0,-2,9,-9,-7,-5,-3,7,11,23,-5,-21,9,-6,4,-1,-6,-1,4,4,-1,-6,1,-1,-1,-1,-1,1,1,3,3,-5,2,-2,0,2,-1,0,-1,2,-1,-1,27,-3,-7,-11,-15,1,23,5,1,-21 ; TV[340]=M; kill M; intmat M[7][10]=3,3,5,-23,9,1,5,-1,1,-3,9,-9,-5,-1,3,5,-2,19,-7,-12,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,3,9,5,1,-3,-23,-1,5,1,3,3,9,-23,5,3,5,1,1,-1,-3,45,-21,-13,-5,3,7,-7,35,-17,-27 ; TV[341]=M; kill M; intmat M[7][10]=2,-2,0,2,-1,0,-1,2,-1,-1,9,-9,-5,-1,3,5,-2,19,-7,-12,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,3,9,-23,5,3,5,1,1,-1,-3,3,9,5,1,-3,-23,-1,5,1,3,45,-21,-13,-5,3,7,-7,35,-17,-27 ; TV[342]=M; kill M; intmat M[7][10]=3,3,5,-23,9,1,5,-1,1,-3,9,-9,-5,-1,3,5,-2,19,-7,-12,9,-9,-7,-5,-3,7,11,23,-5,-21,3,-3,-1,1,3,1,5,5,-23,9,3,9,5,1,-3,-23,-1,5,1,3,3,9,-23,5,3,5,1,1,-1,-3,45,-21,-13,-5,3,7,-7,35,-17,-27 ; TV[343]=M; kill M; intmat M[7][10]=3,3,5,-23,9,1,5,-1,1,-3,9,-9,-5,-1,3,5,-2,19,-7,-12,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,1,5,9,-1,-23,1,5,3,3,9,5,1,-3,-23,-1,5,1,3,3,9,-23,5,3,5,1,1,-1,-3,45,-21,-13,-5,3,7,-7,35,-17,-27 ; TV[344]=M; kill M; intmat M[7][10]=27,-21,5,1,-3,1,-7,23,-11,-15,9,-9,-5,-1,3,5,-2,19,-7,-12,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,3,3,5,-23,9,1,5,-1,1,-3,3,9,5,1,-3,-23,-1,5,1,3,45,-21,-13,-5,3,7,-7,35,-17,-27 ; TV[345]=M; kill M; intmat M[7][10]=7,-5,-3,-1,1,5,-1,5,-3,-5,9,-9,-5,-1,3,5,-2,19,-7,-12,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,3,3,5,-23,9,1,5,-1,1,-3,3,9,-23,5,3,5,1,1,-1,-3,45,-21,-13,-5,3,7,-7,35,-17,-27 ; TV[346]=M; kill M; intmat M[7][10]=2,-2,0,2,-1,0,-1,2,-1,-1,9,-9,-5,-1,3,5,-2,19,-7,-12,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,1,5,9,-1,-23,1,5,3,3,9,-23,5,3,5,1,1,-1,-3,3,9,5,1,-3,-23,-1,5,1,3,45,-21,-13,-5,3,7,-7,35,-17,-27 ; TV[347]=M; kill M; intmat M[7][10]=7,-5,-3,-1,1,5,-1,5,-3,-5,9,-9,-5,-1,3,5,-2,19,-7,-12,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,1,5,9,-1,-23,1,5,3,3,3,5,-23,9,1,5,-1,1,-3,3,9,-23,5,3,5,1,1,-1,-3,45,-21,-13,-5,3,7,-7,35,-17,-27 ; TV[348]=M; kill M; intmat M[7][10]=27,-21,5,1,-3,1,-7,23,-11,-15,9,-9,-5,-1,3,5,-2,19,-7,-12,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,1,5,9,-1,-23,1,5,3,3,3,5,-23,9,1,5,-1,1,-3,3,9,5,1,-3,-23,-1,5,1,3,45,-21,-13,-5,3,7,-7,35,-17,-27 ; TV[349]=M; kill M; intmat M[7][10]=27,-21,5,1,-3,1,-7,23,-11,-15,9,-9,-5,-1,3,5,-2,19,-7,-12,7,-5,-3,-1,1,5,-1,5,-3,-5,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,3,3,5,-23,9,1,5,-1,1,-3,45,-21,-13,-5,3,7,-7,35,-17,-27 ; TV[350]=M; kill M; intmat M[7][10]=27,-21,5,1,-3,1,-7,23,-11,-15,9,-9,-5,-1,3,5,-2,19,-7,-12,2,-2,0,2,-1,0,-1,2,-1,-1,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,3,9,5,1,-3,-23,-1,5,1,3,45,-21,-13,-5,3,7,-7,35,-17,-27 ; TV[351]=M; kill M; intmat M[7][10]=7,-5,-3,-1,1,5,-1,5,-3,-5,9,-9,-5,-1,3,5,-2,19,-7,-12,2,-2,0,2,-1,0,-1,2,-1,-1,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,3,9,-23,5,3,5,1,1,-1,-3,45,-21,-13,-5,3,7,-7,35,-17,-27 ; TV[352]=M; kill M; intmat M[7][10]=7,-5,-3,-1,1,5,-1,5,-3,-5,9,-9,-5,-1,3,5,-2,19,-7,-12,9,-9,-7,-5,-3,7,11,23,-5,-21,3,-3,-1,1,3,1,5,5,-23,9,3,3,5,-23,9,1,5,-1,1,-3,3,9,-23,5,3,5,1,1,-1,-3,45,-21,-13,-5,3,7,-7,35,-17,-27 ; TV[353]=M; kill M; intmat M[7][10]=3,3,5,-23,9,1,5,-1,1,-3,9,-9,-5,-1,3,5,-2,19,-7,-12,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,9,5,1,-3,-23,-1,5,1,3,3,9,-23,5,3,5,1,1,-1,-3,45,-21,-13,-5,3,7,-7,35,-17,-27 ; TV[354]=M; kill M; intmat M[7][10]=2,-2,0,2,-1,0,-1,2,-1,-1,9,-9,-5,-1,3,5,-2,19,-7,-12,9,-9,-7,-5,-3,7,11,23,-5,-21,3,-3,-1,1,3,1,5,5,-23,9,3,9,-23,5,3,5,1,1,-1,-3,3,9,5,1,-3,-23,-1,5,1,3,45,-21,-13,-5,3,7,-7,35,-17,-27 ; TV[355]=M; kill M; intmat M[7][10]=27,-21,5,1,-3,1,-7,23,-11,-15,9,-9,-5,-1,3,5,-2,19,-7,-12,9,-9,-7,-5,-3,7,11,23,-5,-21,3,-3,-1,1,3,1,5,5,-23,9,3,3,5,-23,9,1,5,-1,1,-3,3,9,5,1,-3,-23,-1,5,1,3,45,-21,-13,-5,3,7,-7,35,-17,-27 ; TV[356]=M; kill M; intmat M[7][10]=7,-5,-3,-1,1,5,-1,5,-3,-5,9,-9,-5,-1,3,5,-2,19,-7,-12,27,-21,5,1,-3,1,-7,23,-11,-15,2,-2,0,2,-1,0,-1,2,-1,-1,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,45,-21,-13,-5,3,7,-7,35,-17,-27 ; TV[357]=M; kill M; intmat M[7][10]=27,-21,5,1,-3,1,-7,23,-11,-15,9,-9,-5,-1,3,5,-2,19,-7,-12,2,-2,0,2,-1,0,-1,2,-1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,1,5,9,-1,-23,1,5,3,3,9,5,1,-3,-23,-1,5,1,3,45,-21,-13,-5,3,7,-7,35,-17,-27 ; TV[358]=M; kill M; intmat M[7][10]=7,-5,-3,-1,1,5,-1,5,-3,-5,9,-9,-5,-1,3,5,-2,19,-7,-12,2,-2,0,2,-1,0,-1,2,-1,-1,9,-9,-7,-5,-3,7,11,23,-5,-21,3,-3,-1,1,3,1,5,5,-23,9,3,9,-23,5,3,5,1,1,-1,-3,45,-21,-13,-5,3,7,-7,35,-17,-27 ; TV[359]=M; kill M; intmat M[7][10]=7,-5,-3,-1,1,5,-1,5,-3,-5,9,-9,-5,-1,3,5,-2,19,-7,-12,2,-2,0,2,-1,0,-1,2,-1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,1,5,9,-1,-23,1,5,3,3,9,-23,5,3,5,1,1,-1,-3,45,-21,-13,-5,3,7,-7,35,-17,-27 ; TV[360]=M; kill M; intmat M[7][10]=27,-21,5,1,-3,1,-7,23,-11,-15,9,-9,-5,-1,3,5,-2,19,-7,-12,2,-2,0,2,-1,0,-1,2,-1,-1,9,-9,-7,-5,-3,7,11,23,-5,-21,3,-3,-1,1,3,1,5,5,-23,9,3,9,5,1,-3,-23,-1,5,1,3,45,-21,-13,-5,3,7,-7,35,-17,-27 ; TV[361]=M; kill M; intmat M[7][10]=2,-2,0,2,-1,0,-1,2,-1,-1,9,-9,-5,-1,3,5,-2,19,-7,-12,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,9,-23,5,3,5,1,1,-1,-3,3,9,5,1,-3,-23,-1,5,1,3,45,-21,-13,-5,3,7,-7,35,-17,-27 ; TV[362]=M; kill M; intmat M[7][10]=7,-5,-3,-1,1,5,-1,5,-3,-5,9,-9,-5,-1,3,5,-2,19,-7,-12,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,3,5,-23,9,1,5,-1,1,-3,3,9,-23,5,3,5,1,1,-1,-3,45,-21,-13,-5,3,7,-7,35,-17,-27 ; TV[363]=M; kill M; intmat M[7][10]=27,-21,5,1,-3,1,-7,23,-11,-15,9,-9,-5,-1,3,5,-2,19,-7,-12,7,-5,-3,-1,1,5,-1,5,-3,-5,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,1,5,9,-1,-23,1,5,3,3,3,5,-23,9,1,5,-1,1,-3,45,-21,-13,-5,3,7,-7,35,-17,-27 ; TV[364]=M; kill M; intmat M[7][10]=27,-21,5,1,-3,1,-7,23,-11,-15,9,-9,-5,-1,3,5,-2,19,-7,-12,7,-5,-3,-1,1,5,-1,5,-3,-5,9,-9,-7,-5,-3,7,11,23,-5,-21,3,-3,-1,1,3,1,5,5,-23,9,3,3,5,-23,9,1,5,-1,1,-3,45,-21,-13,-5,3,7,-7,35,-17,-27 ; TV[365]=M; kill M; intmat M[7][10]=27,-21,5,1,-3,1,-7,23,-11,-15,9,-9,-5,-1,3,5,-2,19,-7,-12,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,3,5,-23,9,1,5,-1,1,-3,3,9,5,1,-3,-23,-1,5,1,3,45,-21,-13,-5,3,7,-7,35,-17,-27 ; TV[366]=M; kill M; intmat M[7][10]=27,-21,5,1,-3,1,-7,23,-11,-15,9,-9,-5,-1,3,5,-2,19,-7,-12,7,-5,-3,-1,1,5,-1,5,-3,-5,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,3,5,-23,9,1,5,-1,1,-3,45,-21,-13,-5,3,7,-7,35,-17,-27 ; TV[367]=M; kill M; intmat M[7][10]=7,-5,-3,-1,1,5,-1,5,-3,-5,9,-9,-5,-1,3,5,-2,19,-7,-12,27,-21,5,1,-3,1,-7,23,-11,-15,2,-2,0,2,-1,0,-1,2,-1,-1,9,-9,-7,-5,-3,7,11,23,-5,-21,3,-3,-1,1,3,1,5,5,-23,9,45,-21,-13,-5,3,7,-7,35,-17,-27 ; TV[368]=M; kill M; intmat M[7][10]=27,-21,5,1,-3,1,-7,23,-11,-15,9,-9,-5,-1,3,5,-2,19,-7,-12,2,-2,0,2,-1,0,-1,2,-1,-1,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,9,5,1,-3,-23,-1,5,1,3,45,-21,-13,-5,3,7,-7,35,-17,-27 ; TV[369]=M; kill M; intmat M[7][10]=7,-5,-3,-1,1,5,-1,5,-3,-5,9,-9,-5,-1,3,5,-2,19,-7,-12,27,-21,5,1,-3,1,-7,23,-11,-15,2,-2,0,2,-1,0,-1,2,-1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,1,5,9,-1,-23,1,5,3,45,-21,-13,-5,3,7,-7,35,-17,-27 ; TV[370]=M; kill M; intmat M[7][10]=7,-5,-3,-1,1,5,-1,5,-3,-5,9,-9,-5,-1,3,5,-2,19,-7,-12,2,-2,0,2,-1,0,-1,2,-1,-1,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,9,-23,5,3,5,1,1,-1,-3,45,-21,-13,-5,3,7,-7,35,-17,-27 ; TV[371]=M; kill M; intmat M[7][10]=7,-5,-3,-1,1,5,-1,5,-3,-5,9,-9,-5,-1,3,5,-2,19,-7,-12,27,-21,5,1,-3,1,-7,23,-11,-15,2,-2,0,2,-1,0,-1,2,-1,-1,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-1,-1,-1,-1,1,1,3,3,-5,45,-21,-13,-5,3,7,-7,35,-17,-27 ; TV[372]=M; kill M; intmat M[7][10]=9,-12,19,5,-9,-7,-5,-2,-1,3,1,-5,3,1,-1,3,-1,1,-1,-1,3,3,1,-1,-3,5,1,-23,5,9,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,3,3,5,-23,9,1,5,-1,1,-3,45,-27,35,7,-21,-17,-13,-7,-5,3 ; TV[373]=M; kill M; intmat M[7][10]=9,-12,19,5,-9,-7,-5,-2,-1,3,9,-21,23,7,-9,-5,-7,11,-5,-3,3,3,5,-23,9,1,5,-1,1,-3,2,-1,2,0,-2,-1,0,-1,2,-1,3,-3,1,5,9,-1,-23,1,5,3,3,9,5,1,-3,-23,-1,5,1,3,45,-27,35,7,-21,-17,-13,-7,-5,3 ; TV[374]=M; kill M; intmat M[7][10]=9,-12,19,5,-9,-7,-5,-2,-1,3,2,-1,2,0,-2,-1,0,-1,2,-1,3,3,5,-23,9,1,5,-1,1,-3,3,-3,1,5,9,-1,-23,1,5,3,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3,45,-27,35,7,-21,-17,-13,-7,-5,3 ; TV[375]=M; kill M; intmat M[7][10]=9,-12,19,5,-9,-7,-5,-2,-1,3,1,-5,3,1,-1,3,-1,1,-1,-1,9,-21,23,7,-9,-5,-7,11,-5,-3,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,3,3,5,-23,9,1,5,-1,1,-3,45,-27,35,7,-21,-17,-13,-7,-5,3 ; TV[376]=M; kill M; intmat M[7][10]=9,-12,19,5,-9,-7,-5,-2,-1,3,1,-5,3,1,-1,3,-1,1,-1,-1,2,-1,2,0,-2,-1,0,-1,2,-1,3,3,1,-1,-3,5,1,-23,5,9,3,-3,1,5,9,-1,-23,1,5,3,3,3,5,-23,9,1,5,-1,1,-3,45,-27,35,7,-21,-17,-13,-7,-5,3 ; TV[377]=M; kill M; intmat M[7][10]=9,-12,19,5,-9,-7,-5,-2,-1,3,9,-21,23,7,-9,-5,-7,11,-5,-3,3,3,5,-23,9,1,5,-1,1,-3,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,3,9,5,1,-3,-23,-1,5,1,3,45,-27,35,7,-21,-17,-13,-7,-5,3 ; TV[378]=M; kill M; intmat M[7][10]=9,-12,19,5,-9,-7,-5,-2,-1,3,3,-3,-1,1,3,1,5,5,-23,9,3,3,5,-23,9,1,5,-1,1,-3,3,-3,1,5,9,-1,-23,1,5,3,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3,45,-27,35,7,-21,-17,-13,-7,-5,3 ; TV[379]=M; kill M; intmat M[7][10]=9,-12,19,5,-9,-7,-5,-2,-1,3,1,-5,3,1,-1,3,-1,1,-1,-1,2,-1,2,0,-2,-1,0,-1,2,-1,9,-21,23,7,-9,-5,-7,11,-5,-3,3,-3,1,5,9,-1,-23,1,5,3,3,3,5,-23,9,1,5,-1,1,-3,45,-27,35,7,-21,-17,-13,-7,-5,3 ; TV[380]=M; kill M; intmat M[7][10]=9,-12,19,5,-9,-7,-5,-2,-1,3,27,-15,23,1,-21,-11,5,-7,1,-3,3,3,5,-23,9,1,5,-1,1,-3,3,-3,-1,1,3,1,5,5,-23,9,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3,45,-27,35,7,-21,-17,-13,-7,-5,3 ; TV[381]=M; kill M; intmat M[7][10]=9,-12,19,5,-9,-7,-5,-2,-1,3,7,-5,5,5,-5,-3,-3,-1,-1,1,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3,45,-27,35,7,-21,-17,-13,-7,-5,3 ; TV[382]=M; kill M; intmat M[7][10]=9,-12,19,5,-9,-7,-5,-2,-1,3,9,-21,23,7,-9,-5,-7,11,-5,-3,3,3,5,-23,9,1,5,-1,1,-3,27,-15,23,1,-21,-11,5,-7,1,-3,2,-1,2,0,-2,-1,0,-1,2,-1,3,9,5,1,-3,-23,-1,5,1,3,45,-27,35,7,-21,-17,-13,-7,-5,3 ; TV[383]=M; kill M; intmat M[7][10]=9,-12,19,5,-9,-7,-5,-2,-1,3,9,-21,23,7,-9,-5,-7,11,-5,-3,7,-5,5,5,-5,-3,-3,-1,-1,1,2,-1,2,0,-2,-1,0,-1,2,-1,3,-3,1,5,9,-1,-23,1,5,3,3,9,5,1,-3,-23,-1,5,1,3,45,-27,35,7,-21,-17,-13,-7,-5,3 ; TV[384]=M; kill M; intmat M[7][10]=9,-12,19,5,-9,-7,-5,-2,-1,3,9,-21,23,7,-9,-5,-7,11,-5,-3,7,-5,5,5,-5,-3,-3,-1,-1,1,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,3,9,5,1,-3,-23,-1,5,1,3,45,-27,35,7,-21,-17,-13,-7,-5,3 ; TV[385]=M; kill M; intmat M[7][10]=9,-12,19,5,-9,-7,-5,-2,-1,3,9,-21,23,7,-9,-5,-7,11,-5,-3,3,3,5,-23,9,1,5,-1,1,-3,27,-15,23,1,-21,-11,5,-7,1,-3,3,-3,-1,1,3,1,5,5,-23,9,3,9,5,1,-3,-23,-1,5,1,3,45,-27,35,7,-21,-17,-13,-7,-5,3 ; TV[386]=M; kill M; intmat M[7][10]=9,-12,19,5,-9,-7,-5,-2,-1,3,27,-15,23,1,-21,-11,5,-7,1,-3,3,3,5,-23,9,1,5,-1,1,-3,2,-1,2,0,-2,-1,0,-1,2,-1,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3,45,-27,35,7,-21,-17,-13,-7,-5,3 ; TV[387]=M; kill M; intmat M[7][10]=9,-12,19,5,-9,-7,-5,-2,-1,3,1,-5,3,1,-1,3,-1,1,-1,-1,27,-15,23,1,-21,-11,5,-7,1,-3,9,-21,23,7,-9,-5,-7,11,-5,-3,3,-3,-1,1,3,1,5,5,-23,9,3,3,5,-23,9,1,5,-1,1,-3,45,-27,35,7,-21,-17,-13,-7,-5,3 ; TV[388]=M; kill M; intmat M[7][10]=9,-12,19,5,-9,-7,-5,-2,-1,3,1,-5,3,1,-1,3,-1,1,-1,-1,7,-5,5,5,-5,-3,-3,-1,-1,1,2,-1,2,0,-2,-1,0,-1,2,-1,3,3,1,-1,-3,5,1,-23,5,9,3,-3,1,5,9,-1,-23,1,5,3,45,-27,35,7,-21,-17,-13,-7,-5,3 ; TV[389]=M; kill M; intmat M[7][10]=9,-12,19,5,-9,-7,-5,-2,-1,3,1,-5,3,1,-1,3,-1,1,-1,-1,27,-15,23,1,-21,-11,5,-7,1,-3,2,-1,2,0,-2,-1,0,-1,2,-1,3,3,1,-1,-3,5,1,-23,5,9,3,3,5,-23,9,1,5,-1,1,-3,45,-27,35,7,-21,-17,-13,-7,-5,3 ; TV[390]=M; kill M; intmat M[7][10]=9,-12,19,5,-9,-7,-5,-2,-1,3,1,-5,3,1,-1,3,-1,1,-1,-1,7,-5,5,5,-5,-3,-3,-1,-1,1,3,3,1,-1,-3,5,1,-23,5,9,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,45,-27,35,7,-21,-17,-13,-7,-5,3 ; TV[391]=M; kill M; intmat M[7][10]=9,-12,19,5,-9,-7,-5,-2,-1,3,1,-5,3,1,-1,3,-1,1,-1,-1,7,-5,5,5,-5,-3,-3,-1,-1,1,9,-21,23,7,-9,-5,-7,11,-5,-3,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,45,-27,35,7,-21,-17,-13,-7,-5,3 ; TV[392]=M; kill M; intmat M[7][10]=9,-12,19,5,-9,-7,-5,-2,-1,3,1,-5,3,1,-1,3,-1,1,-1,-1,27,-15,23,1,-21,-11,5,-7,1,-3,3,-3,-1,1,3,1,5,5,-23,9,3,3,1,-1,-3,5,1,-23,5,9,3,3,5,-23,9,1,5,-1,1,-3,45,-27,35,7,-21,-17,-13,-7,-5,3 ; TV[393]=M; kill M; intmat M[7][10]=9,-12,19,5,-9,-7,-5,-2,-1,3,1,-5,3,1,-1,3,-1,1,-1,-1,27,-15,23,1,-21,-11,5,-7,1,-3,9,-21,23,7,-9,-5,-7,11,-5,-3,2,-1,2,0,-2,-1,0,-1,2,-1,3,3,5,-23,9,1,5,-1,1,-3,45,-27,35,7,-21,-17,-13,-7,-5,3 ; TV[394]=M; kill M; intmat M[7][10]=9,-12,19,5,-9,-7,-5,-2,-1,3,1,-5,3,1,-1,3,-1,1,-1,-1,7,-5,5,5,-5,-3,-3,-1,-1,1,2,-1,2,0,-2,-1,0,-1,2,-1,9,-21,23,7,-9,-5,-7,11,-5,-3,3,-3,1,5,9,-1,-23,1,5,3,45,-27,35,7,-21,-17,-13,-7,-5,3 ; TV[395]=M; kill M; intmat M[7][10]=9,-12,19,5,-9,-7,-5,-2,-1,3,7,-5,5,5,-5,-3,-3,-1,-1,1,2,-1,2,0,-2,-1,0,-1,2,-1,3,-3,1,5,9,-1,-23,1,5,3,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3,45,-27,35,7,-21,-17,-13,-7,-5,3 ; TV[396]=M; kill M; intmat M[7][10]=9,-12,19,5,-9,-7,-5,-2,-1,3,1,-5,3,1,-1,3,-1,1,-1,-1,7,-5,5,5,-5,-3,-3,-1,-1,1,27,-15,23,1,-21,-11,5,-7,1,-3,9,-21,23,7,-9,-5,-7,11,-5,-3,2,-1,2,0,-2,-1,0,-1,2,-1,45,-27,35,7,-21,-17,-13,-7,-5,3 ; TV[397]=M; kill M; intmat M[7][10]=9,-12,19,5,-9,-7,-5,-2,-1,3,9,-21,23,7,-9,-5,-7,11,-5,-3,7,-5,5,5,-5,-3,-3,-1,-1,1,27,-15,23,1,-21,-11,5,-7,1,-3,3,-3,-1,1,3,1,5,5,-23,9,3,9,5,1,-3,-23,-1,5,1,3,45,-27,35,7,-21,-17,-13,-7,-5,3 ; TV[398]=M; kill M; intmat M[7][10]=9,-12,19,5,-9,-7,-5,-2,-1,3,1,-5,3,1,-1,3,-1,1,-1,-1,7,-5,5,5,-5,-3,-3,-1,-1,1,27,-15,23,1,-21,-11,5,-7,1,-3,3,-3,-1,1,3,1,5,5,-23,9,3,3,1,-1,-3,5,1,-23,5,9,45,-27,35,7,-21,-17,-13,-7,-5,3 ; TV[399]=M; kill M; intmat M[7][10]=9,-12,19,5,-9,-7,-5,-2,-1,3,1,-5,3,1,-1,3,-1,1,-1,-1,7,-5,5,5,-5,-3,-3,-1,-1,1,27,-15,23,1,-21,-11,5,-7,1,-3,9,-21,23,7,-9,-5,-7,11,-5,-3,3,-3,-1,1,3,1,5,5,-23,9,45,-27,35,7,-21,-17,-13,-7,-5,3 ; TV[400]=M; kill M; intmat M[7][10]=9,-12,19,5,-9,-7,-5,-2,-1,3,1,-5,3,1,-1,3,-1,1,-1,-1,7,-5,5,5,-5,-3,-3,-1,-1,1,27,-15,23,1,-21,-11,5,-7,1,-3,2,-1,2,0,-2,-1,0,-1,2,-1,3,3,1,-1,-3,5,1,-23,5,9,45,-27,35,7,-21,-17,-13,-7,-5,3 ; TV[401]=M; kill M; intmat M[7][10]=9,-12,19,5,-9,-7,-5,-2,-1,3,9,-21,23,7,-9,-5,-7,11,-5,-3,7,-5,5,5,-5,-3,-3,-1,-1,1,27,-15,23,1,-21,-11,5,-7,1,-3,2,-1,2,0,-2,-1,0,-1,2,-1,3,9,5,1,-3,-23,-1,5,1,3,45,-27,35,7,-21,-17,-13,-7,-5,3 ; TV[402]=M; kill M; intmat M[7][10]=9,-12,19,5,-9,-7,-5,-2,-1,3,7,-5,5,5,-5,-3,-3,-1,-1,1,27,-15,23,1,-21,-11,5,-7,1,-3,2,-1,2,0,-2,-1,0,-1,2,-1,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3,45,-27,35,7,-21,-17,-13,-7,-5,3 ; TV[403]=M; kill M; intmat M[7][10]=9,-12,19,5,-9,-7,-5,-2,-1,3,7,-5,5,5,-5,-3,-3,-1,-1,1,27,-15,23,1,-21,-11,5,-7,1,-3,3,-3,-1,1,3,1,5,5,-23,9,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3,45,-27,35,7,-21,-17,-13,-7,-5,3 ; TV[404]=M; kill M; intmat M[8][10]=27,-15,23,1,-21,-11,5,-7,1,-3,7,-5,5,5,-5,-3,-3,-1,-1,1,2,-2,0,2,-1,0,-1,2,-1,-1,9,-6,4,-1,-6,-1,4,4,-1,-6,1,-1,1,3,-5,-1,3,-1,1,-1,9,-21,23,7,-9,-5,-7,11,-5,-3,1,-5,3,1,-1,3,-1,1,-1,-1,3,-3,-1,1,3,1,5,5,-23,9 ; TV[405]=M; kill M; intmat M[8][10]=27,-15,23,1,-21,-11,5,-7,1,-3,7,-5,5,5,-5,-3,-3,-1,-1,1,2,-2,0,2,-1,0,-1,2,-1,-1,9,-6,4,-1,-6,-1,4,4,-1,-6,1,-1,1,3,-5,-1,3,-1,1,-1,9,-21,23,7,-9,-5,-7,11,-5,-3,1,-5,3,1,-1,3,-1,1,-1,-1,2,-1,2,0,-2,-1,0,-1,2,-1 ; TV[406]=M; kill M; intmat M[8][10]=27,-15,23,1,-21,-11,5,-7,1,-3,7,-5,5,5,-5,-3,-3,-1,-1,1,2,-2,0,2,-1,0,-1,2,-1,-1,9,-6,4,-1,-6,-1,4,4,-1,-6,9,-21,23,7,-9,-5,-7,11,-5,-3,1,-1,1,3,-5,-1,3,-1,1,-1,3,9,5,1,-3,-23,-1,5,1,3,2,-1,2,0,-2,-1,0,-1,2,-1 ; TV[407]=M; kill M; intmat M[8][10]=27,-15,23,1,-21,-11,5,-7,1,-3,7,-5,5,5,-5,-3,-3,-1,-1,1,2,-2,0,2,-1,0,-1,2,-1,-1,9,-6,4,-1,-6,-1,4,4,-1,-6,9,-21,23,7,-9,-5,-7,11,-5,-3,1,-1,1,3,-5,-1,3,-1,1,-1,3,9,5,1,-3,-23,-1,5,1,3,3,-3,-1,1,3,1,5,5,-23,9 ; TV[408]=M; kill M; intmat M[7][10]=9,-21,23,7,-9,-5,-7,11,-5,-3,1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,1,5,9,-1,-23,1,5,3,3,3,5,-23,9,1,5,-1,1,-3,2,-1,2,0,-2,-1,0,-1,2,-1,27,-21,5,1,-3,1,-7,23,-11,-15 ; TV[409]=M; kill M; intmat M[7][10]=9,-21,23,7,-9,-5,-7,11,-5,-3,3,-3,1,5,9,-1,-23,1,5,3,1,-1,-1,-1,-1,1,1,3,3,-5,3,3,5,-23,9,1,5,-1,1,-3,3,9,5,1,-3,-23,-1,5,1,3,2,-1,2,0,-2,-1,0,-1,2,-1,27,-21,5,1,-3,1,-7,23,-11,-15 ; TV[410]=M; kill M; intmat M[7][10]=9,-21,23,7,-9,-5,-7,11,-5,-3,1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,9,-6,4,-1,-6,-1,4,4,-1,-6,3,3,5,-23,9,1,5,-1,1,-3,2,-1,2,0,-2,-1,0,-1,2,-1,27,-21,5,1,-3,1,-7,23,-11,-15 ; TV[411]=M; kill M; intmat M[7][10]=9,-21,23,7,-9,-5,-7,11,-5,-3,1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,2,-2,0,2,-1,0,-1,2,-1,-1,3,-3,1,5,9,-1,-23,1,5,3,27,-21,5,1,-3,1,-7,23,-11,-15,2,-1,2,0,-2,-1,0,-1,2,-1 ; TV[412]=M; kill M; intmat M[7][10]=9,-21,23,7,-9,-5,-7,11,-5,-3,9,-6,4,-1,-6,-1,4,4,-1,-6,1,-1,-1,-1,-1,1,1,3,3,-5,3,3,5,-23,9,1,5,-1,1,-3,3,9,5,1,-3,-23,-1,5,1,3,2,-1,2,0,-2,-1,0,-1,2,-1,27,-21,5,1,-3,1,-7,23,-11,-15 ; TV[413]=M; kill M; intmat M[7][10]=9,-21,23,7,-9,-5,-7,11,-5,-3,2,-2,0,2,-1,0,-1,2,-1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,1,5,9,-1,-23,1,5,3,3,9,5,1,-3,-23,-1,5,1,3,27,-21,5,1,-3,1,-7,23,-11,-15,2,-1,2,0,-2,-1,0,-1,2,-1 ; TV[414]=M; kill M; intmat M[7][10]=9,-21,23,7,-9,-5,-7,11,-5,-3,1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,2,-2,0,2,-1,0,-1,2,-1,-1,9,-6,4,-1,-6,-1,4,4,-1,-6,27,-21,5,1,-3,1,-7,23,-11,-15,2,-1,2,0,-2,-1,0,-1,2,-1 ; TV[415]=M; kill M; intmat M[7][10]=9,-21,23,7,-9,-5,-7,11,-5,-3,2,-2,0,2,-1,0,-1,2,-1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,9,-6,4,-1,-6,-1,4,4,-1,-6,3,9,5,1,-3,-23,-1,5,1,3,27,-21,5,1,-3,1,-7,23,-11,-15,2,-1,2,0,-2,-1,0,-1,2,-1 ; TV[416]=M; kill M; intmat M[7][10]=9,-3,11,-5,-21,-5,23,-7,7,-9,1,-5,3,1,-1,3,-1,1,-1,-1,3,3,1,-1,-3,5,1,-23,5,9,2,-1,2,0,-2,-1,0,-1,2,-1,3,3,5,-23,9,1,5,-1,1,-3,2,-1,-1,-1,-1,2,2,0,0,-2,27,-15,23,1,-21,-11,5,-7,1,-3 ; TV[417]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,9,-3,11,-5,-21,-5,23,-7,7,-9,1,-1,1,3,-5,-1,3,-1,1,-1,2,-1,2,0,-2,-1,0,-1,2,-1,3,3,1,-1,-3,5,1,-23,5,9,2,-1,-1,-1,-1,2,2,0,0,-2,27,-15,23,1,-21,-11,5,-7,1,-3 ; TV[418]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,9,-3,11,-5,-21,-5,23,-7,7,-9,1,-1,1,3,-5,-1,3,-1,1,-1,3,-3,-1,1,3,1,5,5,-23,9,3,3,1,-1,-3,5,1,-23,5,9,2,-1,-1,-1,-1,2,2,0,0,-2,27,-15,23,1,-21,-11,5,-7,1,-3 ; TV[419]=M; kill M; intmat M[7][10]=9,-3,11,-5,-21,-5,23,-7,7,-9,1,-5,3,1,-1,3,-1,1,-1,-1,3,3,1,-1,-3,5,1,-23,5,9,3,-3,-1,1,3,1,5,5,-23,9,3,3,5,-23,9,1,5,-1,1,-3,2,-1,-1,-1,-1,2,2,0,0,-2,27,-15,23,1,-21,-11,5,-7,1,-3 ; TV[420]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,9,-3,11,-5,-21,-5,23,-7,7,-9,1,-1,1,3,-5,-1,3,-1,1,-1,9,-6,4,-1,-6,-1,4,4,-1,-6,3,-3,-1,1,3,1,5,5,-23,9,2,-1,-1,-1,-1,2,2,0,0,-2,27,-15,23,1,-21,-11,5,-7,1,-3 ; TV[421]=M; kill M; intmat M[7][10]=9,-3,11,-5,-21,-5,23,-7,7,-9,1,-5,3,1,-1,3,-1,1,-1,-1,9,-6,4,-1,-6,-1,4,4,-1,-6,3,-3,-1,1,3,1,5,5,-23,9,3,3,5,-23,9,1,5,-1,1,-3,2,-1,-1,-1,-1,2,2,0,0,-2,27,-15,23,1,-21,-11,5,-7,1,-3 ; TV[422]=M; kill M; intmat M[7][10]=9,-3,11,-5,-21,-5,23,-7,7,-9,1,-5,3,1,-1,3,-1,1,-1,-1,9,-6,4,-1,-6,-1,4,4,-1,-6,2,-1,2,0,-2,-1,0,-1,2,-1,3,3,5,-23,9,1,5,-1,1,-3,2,-1,-1,-1,-1,2,2,0,0,-2,27,-15,23,1,-21,-11,5,-7,1,-3 ; TV[423]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,9,-3,11,-5,-21,-5,23,-7,7,-9,1,-1,1,3,-5,-1,3,-1,1,-1,9,-6,4,-1,-6,-1,4,4,-1,-6,2,-1,2,0,-2,-1,0,-1,2,-1,2,-1,-1,-1,-1,2,2,0,0,-2,27,-15,23,1,-21,-11,5,-7,1,-3 ; TV[424]=M; kill M; intmat M[8][10]=27,-21,1,23,-15,5,-11,1,-7,-3,7,-5,5,5,-5,-3,-3,-1,-1,1,2,-1,2,0,-2,-1,0,-1,2,-1,9,-6,-1,4,-6,4,-1,-1,4,-6,1,-5,3,1,-1,3,-1,1,-1,-1,9,-9,7,23,-21,-7,-5,-5,11,-3,1,-1,1,3,-5,-1,3,-1,1,-1,3,3,1,-1,-3,5,1,-23,5,9 ; TV[425]=M; kill M; intmat M[8][10]=27,-21,1,23,-15,5,-11,1,-7,-3,7,-5,5,5,-5,-3,-3,-1,-1,1,2,-1,2,0,-2,-1,0,-1,2,-1,9,-6,-1,4,-6,4,-1,-1,4,-6,9,-9,7,23,-21,-7,-5,-5,11,-3,1,-5,3,1,-1,3,-1,1,-1,-1,3,3,1,-1,-3,5,1,-23,5,9,3,-3,1,5,9,-1,-23,1,5,3 ; TV[426]=M; kill M; intmat M[8][10]=7,-5,5,5,-5,-3,-3,-1,-1,1,2,-1,2,0,-2,-1,0,-1,2,-1,9,-6,-1,4,-6,4,-1,-1,4,-6,27,-21,1,23,-15,5,-11,1,-7,-3,1,-5,3,1,-1,3,-1,1,-1,-1,9,-9,7,23,-21,-7,-5,-5,11,-3,1,-1,1,3,-5,-1,3,-1,1,-1,2,-2,0,2,-1,0,-1,2,-1,-1 ; TV[427]=M; kill M; intmat M[8][10]=7,-5,5,5,-5,-3,-3,-1,-1,1,2,-1,2,0,-2,-1,0,-1,2,-1,9,-6,-1,4,-6,4,-1,-1,4,-6,27,-21,1,23,-15,5,-11,1,-7,-3,9,-9,7,23,-21,-7,-5,-5,11,-3,1,-5,3,1,-1,3,-1,1,-1,-1,2,-2,0,2,-1,0,-1,2,-1,-1,3,-3,1,5,9,-1,-23,1,5,3 ; TV[428]=M; kill M; intmat M[8][10]=2,-1,2,0,-2,-1,0,-1,2,-1,9,-6,4,-1,-6,-1,4,4,-1,-6,9,-6,-1,4,-6,4,-1,-1,4,-6,2,-2,0,2,-1,0,-1,2,-1,-1,2,-1,-1,-1,-1,2,2,0,0,-2,1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,1,3,-5,-1,3,-1,1,-1,1,-1,-1,-1,-1,1,1,3,3,-5 ; TV[429]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,3,-3,1,5,9,-1,-23,1,5,3,9,-3,-5,-7,-9,11,7,-5,23,-21,3,3,1,-1,-3,5,1,-23,5,9,3,3,5,-23,9,1,5,-1,1,-3,2,-1,2,0,-2,-1,0,-1,2,-1,27,-15,-11,-7,-3,23,1,1,5,-21 ; TV[430]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,3,-3,1,5,9,-1,-23,1,5,3,9,-3,-5,-7,-9,11,7,-5,23,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,3,5,-23,9,1,5,-1,1,-3,2,-1,2,0,-2,-1,0,-1,2,-1,27,-15,-11,-7,-3,23,1,1,5,-21 ; TV[431]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,9,-6,-1,4,-6,4,-1,-1,4,-6,9,-3,-5,-7,-9,11,7,-5,23,-21,3,3,1,-1,-3,5,1,-23,5,9,3,-3,1,5,9,-1,-23,1,5,3,2,-1,2,0,-2,-1,0,-1,2,-1,27,-15,-11,-7,-3,23,1,1,5,-21 ; TV[432]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,2,-1,-1,-1,-1,2,2,0,0,-2,9,-3,-5,-7,-9,11,7,-5,23,-21,3,3,1,-1,-3,5,1,-23,5,9,3,3,5,-23,9,1,5,-1,1,-3,27,-15,-11,-7,-3,23,1,1,5,-21,2,-1,2,0,-2,-1,0,-1,2,-1 ; TV[433]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,9,-6,-1,4,-6,4,-1,-1,4,-6,9,-3,-5,-7,-9,11,7,-5,23,-21,2,-1,-1,-1,-1,2,2,0,0,-2,3,3,1,-1,-3,5,1,-23,5,9,27,-15,-11,-7,-3,23,1,1,5,-21,2,-1,2,0,-2,-1,0,-1,2,-1 ; TV[434]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,9,-6,-1,4,-6,4,-1,-1,4,-6,9,-3,-5,-7,-9,11,7,-5,23,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,1,5,9,-1,-23,1,5,3,2,-1,2,0,-2,-1,0,-1,2,-1,27,-15,-11,-7,-3,23,1,1,5,-21 ; TV[435]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,2,-1,-1,-1,-1,2,2,0,0,-2,9,-3,-5,-7,-9,11,7,-5,23,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,3,5,-23,9,1,5,-1,1,-3,27,-15,-11,-7,-3,23,1,1,5,-21,2,-1,2,0,-2,-1,0,-1,2,-1 ; TV[436]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,9,-6,-1,4,-6,4,-1,-1,4,-6,9,-3,-5,-7,-9,11,7,-5,23,-21,2,-1,-1,-1,-1,2,2,0,0,-2,1,-1,-1,-1,-1,1,1,3,3,-5,27,-15,-11,-7,-3,23,1,1,5,-21,2,-1,2,0,-2,-1,0,-1,2,-1 ; TV[437]=M; kill M; intmat M[8][10]=27,-21,5,1,-3,1,-7,23,-11,-15,9,-6,4,-1,-6,-1,4,4,-1,-6,2,-1,-1,-1,-1,2,2,0,0,-2,7,-5,-3,-1,1,5,-1,5,-3,-5,1,-5,3,1,-1,3,-1,1,-1,-1,3,3,5,-23,9,1,5,-1,1,-3,9,-9,-7,-5,-3,7,11,23,-5,-21,3,-3,-1,1,3,1,5,5,-23,9 ; TV[438]=M; kill M; intmat M[8][10]=27,-21,5,1,-3,1,-7,23,-11,-15,9,-6,4,-1,-6,-1,4,4,-1,-6,2,-1,-1,-1,-1,2,2,0,0,-2,7,-5,-3,-1,1,5,-1,5,-3,-5,1,-5,3,1,-1,3,-1,1,-1,-1,3,3,5,-23,9,1,5,-1,1,-3,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-1,-1,-1,-1,1,1,3,3,-5 ; TV[439]=M; kill M; intmat M[8][10]=9,-6,4,-1,-6,-1,4,4,-1,-6,27,-21,5,1,-3,1,-7,23,-11,-15,7,-5,-3,-1,1,5,-1,5,-3,-5,2,-1,-1,-1,-1,2,2,0,0,-2,1,-5,3,1,-1,3,-1,1,-1,-1,2,-2,0,2,-1,0,-1,2,-1,-1,9,-9,-7,-5,-3,7,11,23,-5,-21,3,-3,-1,1,3,1,5,5,-23,9 ; TV[440]=M; kill M; intmat M[8][10]=9,-6,4,-1,-6,-1,4,4,-1,-6,27,-21,5,1,-3,1,-7,23,-11,-15,7,-5,-3,-1,1,5,-1,5,-3,-5,2,-1,-1,-1,-1,2,2,0,0,-2,1,-5,3,1,-1,3,-1,1,-1,-1,2,-2,0,2,-1,0,-1,2,-1,-1,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-1,-1,-1,-1,1,1,3,3,-5 ; TV[441]=M; kill M; intmat M[7][10]=1,-1,1,3,-5,-1,3,-1,1,-1,9,-21,-5,11,-3,23,-5,7,-7,-9,3,3,1,-1,-3,5,1,-23,5,9,9,-6,-1,4,-6,4,-1,-1,4,-6,3,9,-23,5,3,5,1,1,-1,-3,2,-1,-1,-1,-1,2,2,0,0,-2,27,-21,1,23,-15,5,-11,1,-7,-3 ; TV[442]=M; kill M; intmat M[7][10]=9,-21,-5,11,-3,23,-5,7,-7,-9,1,-1,1,3,-5,-1,3,-1,1,-1,1,-5,3,1,-1,3,-1,1,-1,-1,3,-3,-1,1,3,1,5,5,-23,9,3,3,1,-1,-3,5,1,-23,5,9,2,-1,-1,-1,-1,2,2,0,0,-2,27,-21,1,23,-15,5,-11,1,-7,-3 ; TV[443]=M; kill M; intmat M[7][10]=1,-1,1,3,-5,-1,3,-1,1,-1,9,-21,-5,11,-3,23,-5,7,-7,-9,3,3,1,-1,-3,5,1,-23,5,9,3,-3,-1,1,3,1,5,5,-23,9,3,9,-23,5,3,5,1,1,-1,-3,2,-1,-1,-1,-1,2,2,0,0,-2,27,-21,1,23,-15,5,-11,1,-7,-3 ; TV[444]=M; kill M; intmat M[7][10]=9,-21,-5,11,-3,23,-5,7,-7,-9,1,-1,1,3,-5,-1,3,-1,1,-1,1,-5,3,1,-1,3,-1,1,-1,-1,9,-6,-1,4,-6,4,-1,-1,4,-6,3,3,1,-1,-3,5,1,-23,5,9,2,-1,-1,-1,-1,2,2,0,0,-2,27,-21,1,23,-15,5,-11,1,-7,-3 ; TV[445]=M; kill M; intmat M[7][10]=9,-21,-5,11,-3,23,-5,7,-7,-9,1,-1,1,3,-5,-1,3,-1,1,-1,1,-5,3,1,-1,3,-1,1,-1,-1,2,-2,0,2,-1,0,-1,2,-1,-1,3,-3,-1,1,3,1,5,5,-23,9,2,-1,-1,-1,-1,2,2,0,0,-2,27,-21,1,23,-15,5,-11,1,-7,-3 ; TV[446]=M; kill M; intmat M[7][10]=1,-1,1,3,-5,-1,3,-1,1,-1,9,-21,-5,11,-3,23,-5,7,-7,-9,2,-2,0,2,-1,0,-1,2,-1,-1,9,-6,-1,4,-6,4,-1,-1,4,-6,3,9,-23,5,3,5,1,1,-1,-3,2,-1,-1,-1,-1,2,2,0,0,-2,27,-21,1,23,-15,5,-11,1,-7,-3 ; TV[447]=M; kill M; intmat M[7][10]=9,-21,-5,11,-3,23,-5,7,-7,-9,1,-1,1,3,-5,-1,3,-1,1,-1,1,-5,3,1,-1,3,-1,1,-1,-1,2,-2,0,2,-1,0,-1,2,-1,-1,9,-6,-1,4,-6,4,-1,-1,4,-6,2,-1,-1,-1,-1,2,2,0,0,-2,27,-21,1,23,-15,5,-11,1,-7,-3 ; TV[448]=M; kill M; intmat M[7][10]=1,-1,1,3,-5,-1,3,-1,1,-1,9,-21,-5,11,-3,23,-5,7,-7,-9,2,-2,0,2,-1,0,-1,2,-1,-1,3,-3,-1,1,3,1,5,5,-23,9,3,9,-23,5,3,5,1,1,-1,-3,2,-1,-1,-1,-1,2,2,0,0,-2,27,-21,1,23,-15,5,-11,1,-7,-3 ; TV[449]=M; kill M; intmat M[8][10]=27,-15,-11,-7,-3,23,1,1,5,-21,9,-6,-1,4,-6,4,-1,-1,4,-6,2,-2,0,2,-1,0,-1,2,-1,-1,7,-5,-3,-1,1,5,-1,5,-3,-5,9,-21,-5,11,-3,23,-5,7,-7,-9,1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,1,5,9,-1,-23,1,5,3 ; TV[450]=M; kill M; intmat M[8][10]=27,-15,-11,-7,-3,23,1,1,5,-21,9,-6,-1,4,-6,4,-1,-1,4,-6,2,-2,0,2,-1,0,-1,2,-1,-1,7,-5,-3,-1,1,5,-1,5,-3,-5,3,9,-23,5,3,5,1,1,-1,-3,9,-21,-5,11,-3,23,-5,7,-7,-9,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,1,5,9,-1,-23,1,5,3 ; TV[451]=M; kill M; intmat M[8][10]=9,-6,-1,4,-6,4,-1,-1,4,-6,2,-2,0,2,-1,0,-1,2,-1,-1,7,-5,-3,-1,1,5,-1,5,-3,-5,27,-15,-11,-7,-3,23,1,1,5,-21,9,-21,-5,11,-3,23,-5,7,-7,-9,1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,2,-1,-1,-1,-1,2,2,0,0,-2 ; TV[452]=M; kill M; intmat M[8][10]=9,-6,-1,4,-6,4,-1,-1,4,-6,2,-2,0,2,-1,0,-1,2,-1,-1,7,-5,-3,-1,1,5,-1,5,-3,-5,27,-15,-11,-7,-3,23,1,1,5,-21,3,9,-23,5,3,5,1,1,-1,-3,9,-21,-5,11,-3,23,-5,7,-7,-9,1,-1,-1,-1,-1,1,1,3,3,-5,2,-1,-1,-1,-1,2,2,0,0,-2 ; TV[453]=M; kill M; intmat M[7][10]=9,-12,-7,-2,3,19,-1,5,-5,-9,3,-3,-1,1,3,1,5,5,-23,9,3,3,1,-1,-3,5,1,-23,5,9,3,-3,1,5,9,-1,-23,1,5,3,3,3,5,-23,9,1,5,-1,1,-3,3,9,-23,5,3,5,1,1,-1,-3,45,-27,-17,-7,3,35,-5,7,-13,-21 ; TV[454]=M; kill M; intmat M[7][10]=9,-12,-7,-2,3,19,-1,5,-5,-9,9,-21,-5,11,-3,23,-5,7,-7,-9,27,-15,-11,-7,-3,23,1,1,5,-21,3,3,1,-1,-3,5,1,-23,5,9,3,-3,1,5,9,-1,-23,1,5,3,3,9,-23,5,3,5,1,1,-1,-3,45,-27,-17,-7,3,35,-5,7,-13,-21 ; TV[455]=M; kill M; intmat M[7][10]=9,-12,-7,-2,3,19,-1,5,-5,-9,1,-5,3,1,-1,3,-1,1,-1,-1,9,-21,-5,11,-3,23,-5,7,-7,-9,27,-15,-11,-7,-3,23,1,1,5,-21,3,3,1,-1,-3,5,1,-23,5,9,3,-3,1,5,9,-1,-23,1,5,3,45,-27,-17,-7,3,35,-5,7,-13,-21 ; TV[456]=M; kill M; intmat M[7][10]=9,-12,-7,-2,3,19,-1,5,-5,-9,9,-21,-5,11,-3,23,-5,7,-7,-9,3,3,1,-1,-3,5,1,-23,5,9,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,3,9,-23,5,3,5,1,1,-1,-3,45,-27,-17,-7,3,35,-5,7,-13,-21 ; TV[457]=M; kill M; intmat M[7][10]=9,-12,-7,-2,3,19,-1,5,-5,-9,1,-5,3,1,-1,3,-1,1,-1,-1,27,-15,-11,-7,-3,23,1,1,5,-21,3,3,1,-1,-3,5,1,-23,5,9,3,-3,1,5,9,-1,-23,1,5,3,3,3,5,-23,9,1,5,-1,1,-3,45,-27,-17,-7,3,35,-5,7,-13,-21 ; TV[458]=M; kill M; intmat M[7][10]=9,-12,-7,-2,3,19,-1,5,-5,-9,27,-15,-11,-7,-3,23,1,1,5,-21,3,3,1,-1,-3,5,1,-23,5,9,3,-3,1,5,9,-1,-23,1,5,3,3,3,5,-23,9,1,5,-1,1,-3,3,9,-23,5,3,5,1,1,-1,-3,45,-27,-17,-7,3,35,-5,7,-13,-21 ; TV[459]=M; kill M; intmat M[7][10]=9,-12,-7,-2,3,19,-1,5,-5,-9,1,-5,3,1,-1,3,-1,1,-1,-1,9,-21,-5,11,-3,23,-5,7,-7,-9,3,3,1,-1,-3,5,1,-23,5,9,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,45,-27,-17,-7,3,35,-5,7,-13,-21 ; TV[460]=M; kill M; intmat M[7][10]=9,-12,-7,-2,3,19,-1,5,-5,-9,1,-5,3,1,-1,3,-1,1,-1,-1,3,3,1,-1,-3,5,1,-23,5,9,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,3,3,5,-23,9,1,5,-1,1,-3,45,-27,-17,-7,3,35,-5,7,-13,-21 ; TV[461]=M; kill M; intmat M[7][10]=9,-12,-7,-2,3,19,-1,5,-5,-9,1,-5,3,1,-1,3,-1,1,-1,-1,9,-21,-5,11,-3,23,-5,7,-7,-9,27,-15,-11,-7,-3,23,1,1,5,-21,7,-5,-3,-1,1,5,-1,5,-3,-5,3,-3,1,5,9,-1,-23,1,5,3,45,-27,-17,-7,3,35,-5,7,-13,-21 ; TV[462]=M; kill M; intmat M[7][10]=9,-12,-7,-2,3,19,-1,5,-5,-9,1,-5,3,1,-1,3,-1,1,-1,-1,9,-21,-5,11,-3,23,-5,7,-7,-9,2,-1,-1,-1,-1,2,2,0,0,-2,27,-15,-11,-7,-3,23,1,1,5,-21,3,3,1,-1,-3,5,1,-23,5,9,45,-27,-17,-7,3,35,-5,7,-13,-21 ; TV[463]=M; kill M; intmat M[7][10]=9,-12,-7,-2,3,19,-1,5,-5,-9,9,-21,-5,11,-3,23,-5,7,-7,-9,2,-1,-1,-1,-1,2,2,0,0,-2,27,-15,-11,-7,-3,23,1,1,5,-21,3,3,1,-1,-3,5,1,-23,5,9,3,9,-23,5,3,5,1,1,-1,-3,45,-27,-17,-7,3,35,-5,7,-13,-21 ; TV[464]=M; kill M; intmat M[7][10]=9,-12,-7,-2,3,19,-1,5,-5,-9,9,-21,-5,11,-3,23,-5,7,-7,-9,27,-15,-11,-7,-3,23,1,1,5,-21,7,-5,-3,-1,1,5,-1,5,-3,-5,3,-3,1,5,9,-1,-23,1,5,3,3,9,-23,5,3,5,1,1,-1,-3,45,-27,-17,-7,3,35,-5,7,-13,-21 ; TV[465]=M; kill M; intmat M[7][10]=9,-12,-7,-2,3,19,-1,5,-5,-9,1,-5,3,1,-1,3,-1,1,-1,-1,9,-21,-5,11,-3,23,-5,7,-7,-9,7,-5,-3,-1,1,5,-1,5,-3,-5,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,45,-27,-17,-7,3,35,-5,7,-13,-21 ; TV[466]=M; kill M; intmat M[7][10]=9,-12,-7,-2,3,19,-1,5,-5,-9,9,-21,-5,11,-3,23,-5,7,-7,-9,7,-5,-3,-1,1,5,-1,5,-3,-5,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,3,9,-23,5,3,5,1,1,-1,-3,45,-27,-17,-7,3,35,-5,7,-13,-21 ; TV[467]=M; kill M; intmat M[7][10]=9,-12,-7,-2,3,19,-1,5,-5,-9,9,-21,-5,11,-3,23,-5,7,-7,-9,2,-1,-1,-1,-1,2,2,0,0,-2,3,-3,-1,1,3,1,5,5,-23,9,3,3,1,-1,-3,5,1,-23,5,9,3,9,-23,5,3,5,1,1,-1,-3,45,-27,-17,-7,3,35,-5,7,-13,-21 ; TV[468]=M; kill M; intmat M[7][10]=9,-12,-7,-2,3,19,-1,5,-5,-9,3,-3,-1,1,3,1,5,5,-23,9,7,-5,-3,-1,1,5,-1,5,-3,-5,3,-3,1,5,9,-1,-23,1,5,3,3,3,5,-23,9,1,5,-1,1,-3,3,9,-23,5,3,5,1,1,-1,-3,45,-27,-17,-7,3,35,-5,7,-13,-21 ; TV[469]=M; kill M; intmat M[7][10]=9,-12,-7,-2,3,19,-1,5,-5,-9,2,-1,-1,-1,-1,2,2,0,0,-2,3,3,1,-1,-3,5,1,-23,5,9,3,-3,-1,1,3,1,5,5,-23,9,3,3,5,-23,9,1,5,-1,1,-3,3,9,-23,5,3,5,1,1,-1,-3,45,-27,-17,-7,3,35,-5,7,-13,-21 ; TV[470]=M; kill M; intmat M[7][10]=9,-12,-7,-2,3,19,-1,5,-5,-9,1,-5,3,1,-1,3,-1,1,-1,-1,7,-5,-3,-1,1,5,-1,5,-3,-5,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,3,3,5,-23,9,1,5,-1,1,-3,45,-27,-17,-7,3,35,-5,7,-13,-21 ; TV[471]=M; kill M; intmat M[7][10]=9,-12,-7,-2,3,19,-1,5,-5,-9,1,-5,3,1,-1,3,-1,1,-1,-1,9,-21,-5,11,-3,23,-5,7,-7,-9,2,-1,-1,-1,-1,2,2,0,0,-2,3,-3,-1,1,3,1,5,5,-23,9,3,3,1,-1,-3,5,1,-23,5,9,45,-27,-17,-7,3,35,-5,7,-13,-21 ; TV[472]=M; kill M; intmat M[7][10]=9,-12,-7,-2,3,19,-1,5,-5,-9,1,-5,3,1,-1,3,-1,1,-1,-1,2,-1,-1,-1,-1,2,2,0,0,-2,27,-15,-11,-7,-3,23,1,1,5,-21,3,3,1,-1,-3,5,1,-23,5,9,3,3,5,-23,9,1,5,-1,1,-3,45,-27,-17,-7,3,35,-5,7,-13,-21 ; TV[473]=M; kill M; intmat M[7][10]=9,-12,-7,-2,3,19,-1,5,-5,-9,1,-5,3,1,-1,3,-1,1,-1,-1,27,-15,-11,-7,-3,23,1,1,5,-21,7,-5,-3,-1,1,5,-1,5,-3,-5,3,-3,1,5,9,-1,-23,1,5,3,3,3,5,-23,9,1,5,-1,1,-3,45,-27,-17,-7,3,35,-5,7,-13,-21 ; TV[474]=M; kill M; intmat M[7][10]=9,-12,-7,-2,3,19,-1,5,-5,-9,1,-5,3,1,-1,3,-1,1,-1,-1,2,-1,-1,-1,-1,2,2,0,0,-2,3,-3,-1,1,3,1,5,5,-23,9,3,3,1,-1,-3,5,1,-23,5,9,3,3,5,-23,9,1,5,-1,1,-3,45,-27,-17,-7,3,35,-5,7,-13,-21 ; TV[475]=M; kill M; intmat M[7][10]=9,-12,-7,-2,3,19,-1,5,-5,-9,27,-15,-11,-7,-3,23,1,1,5,-21,7,-5,-3,-1,1,5,-1,5,-3,-5,3,-3,1,5,9,-1,-23,1,5,3,3,3,5,-23,9,1,5,-1,1,-3,3,9,-23,5,3,5,1,1,-1,-3,45,-27,-17,-7,3,35,-5,7,-13,-21 ; TV[476]=M; kill M; intmat M[7][10]=9,-12,-7,-2,3,19,-1,5,-5,-9,2,-1,-1,-1,-1,2,2,0,0,-2,3,3,1,-1,-3,5,1,-23,5,9,27,-15,-11,-7,-3,23,1,1,5,-21,3,3,5,-23,9,1,5,-1,1,-3,3,9,-23,5,3,5,1,1,-1,-3,45,-27,-17,-7,3,35,-5,7,-13,-21 ; TV[477]=M; kill M; intmat M[7][10]=9,-12,-7,-2,3,19,-1,5,-5,-9,1,-5,3,1,-1,3,-1,1,-1,-1,9,-21,-5,11,-3,23,-5,7,-7,-9,2,-1,-1,-1,-1,2,2,0,0,-2,7,-5,-3,-1,1,5,-1,5,-3,-5,3,-3,-1,1,3,1,5,5,-23,9,45,-27,-17,-7,3,35,-5,7,-13,-21 ; TV[478]=M; kill M; intmat M[7][10]=9,-12,-7,-2,3,19,-1,5,-5,-9,9,-21,-5,11,-3,23,-5,7,-7,-9,2,-1,-1,-1,-1,2,2,0,0,-2,7,-5,-3,-1,1,5,-1,5,-3,-5,27,-15,-11,-7,-3,23,1,1,5,-21,3,9,-23,5,3,5,1,1,-1,-3,45,-27,-17,-7,3,35,-5,7,-13,-21 ; TV[479]=M; kill M; intmat M[7][10]=9,-12,-7,-2,3,19,-1,5,-5,-9,1,-5,3,1,-1,3,-1,1,-1,-1,9,-21,-5,11,-3,23,-5,7,-7,-9,2,-1,-1,-1,-1,2,2,0,0,-2,7,-5,-3,-1,1,5,-1,5,-3,-5,27,-15,-11,-7,-3,23,1,1,5,-21,45,-27,-17,-7,3,35,-5,7,-13,-21 ; TV[480]=M; kill M; intmat M[7][10]=9,-12,-7,-2,3,19,-1,5,-5,-9,2,-1,-1,-1,-1,2,2,0,0,-2,7,-5,-3,-1,1,5,-1,5,-3,-5,27,-15,-11,-7,-3,23,1,1,5,-21,3,3,5,-23,9,1,5,-1,1,-3,3,9,-23,5,3,5,1,1,-1,-3,45,-27,-17,-7,3,35,-5,7,-13,-21 ; TV[481]=M; kill M; intmat M[7][10]=9,-12,-7,-2,3,19,-1,5,-5,-9,1,-5,3,1,-1,3,-1,1,-1,-1,2,-1,-1,-1,-1,2,2,0,0,-2,7,-5,-3,-1,1,5,-1,5,-3,-5,3,-3,-1,1,3,1,5,5,-23,9,3,3,5,-23,9,1,5,-1,1,-3,45,-27,-17,-7,3,35,-5,7,-13,-21 ; TV[482]=M; kill M; intmat M[7][10]=9,-12,-7,-2,3,19,-1,5,-5,-9,9,-21,-5,11,-3,23,-5,7,-7,-9,2,-1,-1,-1,-1,2,2,0,0,-2,7,-5,-3,-1,1,5,-1,5,-3,-5,3,-3,-1,1,3,1,5,5,-23,9,3,9,-23,5,3,5,1,1,-1,-3,45,-27,-17,-7,3,35,-5,7,-13,-21 ; TV[483]=M; kill M; intmat M[7][10]=9,-12,-7,-2,3,19,-1,5,-5,-9,1,-5,3,1,-1,3,-1,1,-1,-1,2,-1,-1,-1,-1,2,2,0,0,-2,7,-5,-3,-1,1,5,-1,5,-3,-5,27,-15,-11,-7,-3,23,1,1,5,-21,3,3,5,-23,9,1,5,-1,1,-3,45,-27,-17,-7,3,35,-5,7,-13,-21 ; TV[484]=M; kill M; intmat M[7][10]=9,-12,-7,-2,3,19,-1,5,-5,-9,2,-1,-1,-1,-1,2,2,0,0,-2,7,-5,-3,-1,1,5,-1,5,-3,-5,3,-3,-1,1,3,1,5,5,-23,9,3,3,5,-23,9,1,5,-1,1,-3,3,9,-23,5,3,5,1,1,-1,-3,45,-27,-17,-7,3,35,-5,7,-13,-21 ; TV[485]=M; kill M; intmat M[7][10]=9,3,-1,-5,-9,-2,5,-7,19,-12,1,-1,1,3,-5,-1,3,-1,1,-1,3,9,-23,5,3,5,1,1,-1,-3,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3,7,1,-1,-3,-5,-1,5,-3,5,-5,27,-3,1,5,-21,-7,1,-11,23,-15 ; TV[486]=M; kill M; intmat M[7][10]=1,-1,1,3,-5,-1,3,-1,1,-1,9,3,-1,-5,-9,-2,5,-7,19,-12,9,-3,-5,-7,-9,11,7,-5,23,-21,3,3,1,-1,-3,5,1,-23,5,9,3,9,-23,5,3,5,1,1,-1,-3,7,1,-1,-3,-5,-1,5,-3,5,-5,27,-3,1,5,-21,-7,1,-11,23,-15 ; TV[487]=M; kill M; intmat M[7][10]=1,-1,1,3,-5,-1,3,-1,1,-1,9,3,-1,-5,-9,-2,5,-7,19,-12,9,-3,-5,-7,-9,11,7,-5,23,-21,2,-1,2,0,-2,-1,0,-1,2,-1,3,3,1,-1,-3,5,1,-23,5,9,27,-3,1,5,-21,-7,1,-11,23,-15,7,1,-1,-3,-5,-1,5,-3,5,-5 ; TV[488]=M; kill M; intmat M[7][10]=9,3,-1,-5,-9,-2,5,-7,19,-12,1,-1,1,3,-5,-1,3,-1,1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,3,9,-23,5,3,5,1,1,-1,-3,3,9,5,1,-3,-23,-1,5,1,3,7,1,-1,-3,-5,-1,5,-3,5,-5,27,-3,1,5,-21,-7,1,-11,23,-15 ; TV[489]=M; kill M; intmat M[7][10]=1,-1,1,3,-5,-1,3,-1,1,-1,9,3,-1,-5,-9,-2,5,-7,19,-12,9,-3,-5,-7,-9,11,7,-5,23,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,9,-23,5,3,5,1,1,-1,-3,7,1,-1,-3,-5,-1,5,-3,5,-5,27,-3,1,5,-21,-7,1,-11,23,-15 ; TV[490]=M; kill M; intmat M[7][10]=9,3,-1,-5,-9,-2,5,-7,19,-12,1,-1,1,3,-5,-1,3,-1,1,-1,2,-1,2,0,-2,-1,0,-1,2,-1,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3,27,-3,1,5,-21,-7,1,-11,23,-15,7,1,-1,-3,-5,-1,5,-3,5,-5 ; TV[491]=M; kill M; intmat M[7][10]=1,-1,1,3,-5,-1,3,-1,1,-1,9,3,-1,-5,-9,-2,5,-7,19,-12,9,-3,-5,-7,-9,11,7,-5,23,-21,2,-1,2,0,-2,-1,0,-1,2,-1,1,-1,-1,-1,-1,1,1,3,3,-5,27,-3,1,5,-21,-7,1,-11,23,-15,7,1,-1,-3,-5,-1,5,-3,5,-5 ; TV[492]=M; kill M; intmat M[7][10]=9,3,-1,-5,-9,-2,5,-7,19,-12,1,-1,1,3,-5,-1,3,-1,1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,2,-1,2,0,-2,-1,0,-1,2,-1,3,9,5,1,-3,-23,-1,5,1,3,27,-3,1,5,-21,-7,1,-11,23,-15,7,1,-1,-3,-5,-1,5,-3,5,-5 ; TV[493]=M; kill M; intmat M[7][10]=1,-1,1,3,-5,-1,3,-1,1,-1,9,3,-2,-7,-12,-1,19,-5,5,-9,1,-1,-1,-1,-1,1,1,3,3,-5,3,9,-23,5,3,5,1,1,-1,-3,3,9,5,1,-3,-23,-1,5,1,3,7,1,-1,-3,-5,-1,5,-3,5,-5,27,-3,-7,-11,-15,1,23,5,1,-21 ; TV[494]=M; kill M; intmat M[7][10]=9,3,-2,-7,-12,-1,19,-5,5,-9,9,-3,11,-5,-21,-5,23,-7,7,-9,1,-1,-1,-1,-1,1,1,3,3,-5,1,-1,1,3,-5,-1,3,-1,1,-1,3,9,5,1,-3,-23,-1,5,1,3,7,1,-1,-3,-5,-1,5,-3,5,-5,27,-3,-7,-11,-15,1,23,5,1,-21 ; TV[495]=M; kill M; intmat M[7][10]=9,3,-2,-7,-12,-1,19,-5,5,-9,9,-3,11,-5,-21,-5,23,-7,7,-9,1,-1,-1,-1,-1,1,1,3,3,-5,3,3,5,-23,9,1,5,-1,1,-3,3,9,5,1,-3,-23,-1,5,1,3,7,1,-1,-3,-5,-1,5,-3,5,-5,27,-3,-7,-11,-15,1,23,5,1,-21 ; TV[496]=M; kill M; intmat M[7][10]=9,3,-2,-7,-12,-1,19,-5,5,-9,3,3,5,-23,9,1,5,-1,1,-3,1,-1,-1,-1,-1,1,1,3,3,-5,3,9,5,1,-3,-23,-1,5,1,3,3,9,-23,5,3,5,1,1,-1,-3,7,1,-1,-3,-5,-1,5,-3,5,-5,27,-3,-7,-11,-15,1,23,5,1,-21 ; TV[497]=M; kill M; intmat M[7][10]=2,-1,-1,-1,-1,2,2,0,0,-2,9,3,-2,-7,-12,-1,19,-5,5,-9,1,-1,-1,-1,-1,1,1,3,3,-5,1,-1,1,3,-5,-1,3,-1,1,-1,3,9,-23,5,3,5,1,1,-1,-3,27,-3,-7,-11,-15,1,23,5,1,-21,7,1,-1,-3,-5,-1,5,-3,5,-5 ; TV[498]=M; kill M; intmat M[7][10]=9,3,-2,-7,-12,-1,19,-5,5,-9,2,-1,-1,-1,-1,2,2,0,0,-2,1,-1,-1,-1,-1,1,1,3,3,-5,9,-3,11,-5,-21,-5,23,-7,7,-9,1,-1,1,3,-5,-1,3,-1,1,-1,27,-3,-7,-11,-15,1,23,5,1,-21,7,1,-1,-3,-5,-1,5,-3,5,-5 ; TV[499]=M; kill M; intmat M[7][10]=9,3,-2,-7,-12,-1,19,-5,5,-9,2,-1,-1,-1,-1,2,2,0,0,-2,1,-1,-1,-1,-1,1,1,3,3,-5,3,3,5,-23,9,1,5,-1,1,-3,3,9,-23,5,3,5,1,1,-1,-3,27,-3,-7,-11,-15,1,23,5,1,-21,7,1,-1,-3,-5,-1,5,-3,5,-5 ; TV[500]=M; kill M; intmat M[7][10]=9,3,-2,-7,-12,-1,19,-5,5,-9,9,-3,11,-5,-21,-5,23,-7,7,-9,1,-1,-1,-1,-1,1,1,3,3,-5,2,-1,-1,-1,-1,2,2,0,0,-2,3,3,5,-23,9,1,5,-1,1,-3,27,-3,-7,-11,-15,1,23,5,1,-21,7,1,-1,-3,-5,-1,5,-3,5,-5 ; TV[501]=M; kill M; intmat M[7][10]=9,-3,11,-5,-21,-5,23,-7,7,-9,1,-1,1,3,-5,-1,3,-1,1,-1,9,-3,-5,-7,-9,11,7,-5,23,-21,3,3,1,-1,-3,5,1,-23,5,9,2,-1,-1,-1,-1,2,2,0,0,-2,2,-1,2,0,-2,-1,0,-1,2,-1,7,1,-1,-3,-5,-1,5,-3,5,-5 ; TV[502]=M; kill M; intmat M[7][10]=9,-3,11,-5,-21,-5,23,-7,7,-9,3,3,5,-23,9,1,5,-1,1,-3,9,-3,-5,-7,-9,11,7,-5,23,-21,3,3,1,-1,-3,5,1,-23,5,9,2,-1,-1,-1,-1,2,2,0,0,-2,2,-1,2,0,-2,-1,0,-1,2,-1,7,1,-1,-3,-5,-1,5,-3,5,-5 ; TV[503]=M; kill M; intmat M[7][10]=9,-3,11,-5,-21,-5,23,-7,7,-9,1,-1,1,3,-5,-1,3,-1,1,-1,9,-3,-5,-7,-9,11,7,-5,23,-21,1,-1,-1,-1,-1,1,1,3,3,-5,2,-1,-1,-1,-1,2,2,0,0,-2,2,-1,2,0,-2,-1,0,-1,2,-1,7,1,-1,-3,-5,-1,5,-3,5,-5 ; TV[504]=M; kill M; intmat M[7][10]=9,-3,11,-5,-21,-5,23,-7,7,-9,3,3,5,-23,9,1,5,-1,1,-3,9,-3,-5,-7,-9,11,7,-5,23,-21,1,-1,-1,-1,-1,1,1,3,3,-5,2,-1,-1,-1,-1,2,2,0,0,-2,2,-1,2,0,-2,-1,0,-1,2,-1,7,1,-1,-3,-5,-1,5,-3,5,-5 ; TV[505]=M; kill M; intmat M[7][10]=9,-3,11,-5,-21,-5,23,-7,7,-9,1,-1,1,3,-5,-1,3,-1,1,-1,9,-9,-7,-5,-3,7,11,23,-5,-21,3,-3,-1,1,3,1,5,5,-23,9,3,9,5,1,-3,-23,-1,5,1,3,9,-6,4,-1,-6,-1,4,4,-1,-6,27,-3,-7,-11,-15,1,23,5,1,-21 ; TV[506]=M; kill M; intmat M[7][10]=9,-3,11,-5,-21,-5,23,-7,7,-9,3,3,5,-23,9,1,5,-1,1,-3,9,-9,-7,-5,-3,7,11,23,-5,-21,3,-3,-1,1,3,1,5,5,-23,9,3,9,5,1,-3,-23,-1,5,1,3,9,-6,4,-1,-6,-1,4,4,-1,-6,27,-3,-7,-11,-15,1,23,5,1,-21 ; TV[507]=M; kill M; intmat M[7][10]=9,-3,11,-5,-21,-5,23,-7,7,-9,2,-1,-1,-1,-1,2,2,0,0,-2,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-1,1,3,-5,-1,3,-1,1,-1,3,-3,-1,1,3,1,5,5,-23,9,9,-6,4,-1,-6,-1,4,4,-1,-6,27,-3,-7,-11,-15,1,23,5,1,-21 ; TV[508]=M; kill M; intmat M[7][10]=9,-3,11,-5,-21,-5,23,-7,7,-9,1,-1,1,3,-5,-1,3,-1,1,-1,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,9,5,1,-3,-23,-1,5,1,3,9,-6,4,-1,-6,-1,4,4,-1,-6,27,-3,-7,-11,-15,1,23,5,1,-21 ; TV[509]=M; kill M; intmat M[7][10]=9,-3,11,-5,-21,-5,23,-7,7,-9,3,3,5,-23,9,1,5,-1,1,-3,9,-9,-7,-5,-3,7,11,23,-5,-21,2,-1,-1,-1,-1,2,2,0,0,-2,3,-3,-1,1,3,1,5,5,-23,9,9,-6,4,-1,-6,-1,4,4,-1,-6,27,-3,-7,-11,-15,1,23,5,1,-21 ; TV[510]=M; kill M; intmat M[7][10]=9,-3,11,-5,-21,-5,23,-7,7,-9,3,3,5,-23,9,1,5,-1,1,-3,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,9,5,1,-3,-23,-1,5,1,3,9,-6,4,-1,-6,-1,4,4,-1,-6,27,-3,-7,-11,-15,1,23,5,1,-21 ; TV[511]=M; kill M; intmat M[7][10]=9,-3,11,-5,-21,-5,23,-7,7,-9,3,3,5,-23,9,1,5,-1,1,-3,9,-9,-7,-5,-3,7,11,23,-5,-21,2,-1,-1,-1,-1,2,2,0,0,-2,1,-1,-1,-1,-1,1,1,3,3,-5,9,-6,4,-1,-6,-1,4,4,-1,-6,27,-3,-7,-11,-15,1,23,5,1,-21 ; TV[512]=M; kill M; intmat M[7][10]=9,-3,11,-5,-21,-5,23,-7,7,-9,2,-1,-1,-1,-1,2,2,0,0,-2,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-1,1,3,-5,-1,3,-1,1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,9,-6,4,-1,-6,-1,4,4,-1,-6,27,-3,-7,-11,-15,1,23,5,1,-21 ; TV[513]=M; kill M; intmat M[7][10]=9,-9,7,23,-21,-7,-5,-5,11,-3,3,-3,1,5,9,-1,-23,1,5,3,9,-3,-5,-7,-9,11,7,-5,23,-21,3,3,1,-1,-3,5,1,-23,5,9,3,9,-23,5,3,5,1,1,-1,-3,9,-6,-1,4,-6,4,-1,-1,4,-6,27,-3,1,5,-21,-7,1,-11,23,-15 ; TV[514]=M; kill M; intmat M[7][10]=9,-9,7,23,-21,-7,-5,-5,11,-3,1,-1,1,3,-5,-1,3,-1,1,-1,9,-3,-5,-7,-9,11,7,-5,23,-21,3,3,1,-1,-3,5,1,-23,5,9,3,9,-23,5,3,5,1,1,-1,-3,9,-6,-1,4,-6,4,-1,-1,4,-6,27,-3,1,5,-21,-7,1,-11,23,-15 ; TV[515]=M; kill M; intmat M[7][10]=9,-9,7,23,-21,-7,-5,-5,11,-3,2,-1,2,0,-2,-1,0,-1,2,-1,9,-3,-5,-7,-9,11,7,-5,23,-21,3,3,1,-1,-3,5,1,-23,5,9,3,-3,1,5,9,-1,-23,1,5,3,9,-6,-1,4,-6,4,-1,-1,4,-6,27,-3,1,5,-21,-7,1,-11,23,-15 ; TV[516]=M; kill M; intmat M[7][10]=9,-9,7,23,-21,-7,-5,-5,11,-3,3,-3,1,5,9,-1,-23,1,5,3,9,-3,-5,-7,-9,11,7,-5,23,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,9,-23,5,3,5,1,1,-1,-3,9,-6,-1,4,-6,4,-1,-1,4,-6,27,-3,1,5,-21,-7,1,-11,23,-15 ; TV[517]=M; kill M; intmat M[7][10]=9,-9,7,23,-21,-7,-5,-5,11,-3,1,-1,1,3,-5,-1,3,-1,1,-1,9,-3,-5,-7,-9,11,7,-5,23,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,9,-23,5,3,5,1,1,-1,-3,9,-6,-1,4,-6,4,-1,-1,4,-6,27,-3,1,5,-21,-7,1,-11,23,-15 ; TV[518]=M; kill M; intmat M[7][10]=9,-9,7,23,-21,-7,-5,-5,11,-3,2,-1,2,0,-2,-1,0,-1,2,-1,9,-3,-5,-7,-9,11,7,-5,23,-21,1,-1,1,3,-5,-1,3,-1,1,-1,3,3,1,-1,-3,5,1,-23,5,9,9,-6,-1,4,-6,4,-1,-1,4,-6,27,-3,1,5,-21,-7,1,-11,23,-15 ; TV[519]=M; kill M; intmat M[7][10]=9,-9,7,23,-21,-7,-5,-5,11,-3,2,-1,2,0,-2,-1,0,-1,2,-1,9,-3,-5,-7,-9,11,7,-5,23,-21,1,-1,1,3,-5,-1,3,-1,1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,9,-6,-1,4,-6,4,-1,-1,4,-6,27,-3,1,5,-21,-7,1,-11,23,-15 ; TV[520]=M; kill M; intmat M[7][10]=9,-9,7,23,-21,-7,-5,-5,11,-3,2,-1,2,0,-2,-1,0,-1,2,-1,9,-3,-5,-7,-9,11,7,-5,23,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,1,5,9,-1,-23,1,5,3,9,-6,-1,4,-6,4,-1,-1,4,-6,27,-3,1,5,-21,-7,1,-11,23,-15 ; TV[521]=M; kill M; intmat M[7][10]=9,-12,19,5,-9,-7,-5,-2,-1,3,1,-1,1,3,-5,-1,3,-1,1,-1,3,3,1,-1,-3,5,1,-23,5,9,2,-1,2,0,-2,-1,0,-1,2,-1,3,9,5,1,-3,-23,-1,5,1,3,7,-5,5,5,-5,-3,-3,-1,-1,1,27,-15,23,1,-21,-11,5,-7,1,-3 ; TV[522]=M; kill M; intmat M[7][10]=9,-12,19,5,-9,-7,-5,-2,-1,3,1,-1,1,3,-5,-1,3,-1,1,-1,3,3,1,-1,-3,5,1,-23,5,9,3,-3,-1,1,3,1,5,5,-23,9,3,9,5,1,-3,-23,-1,5,1,3,7,-5,5,5,-5,-3,-3,-1,-1,1,27,-15,23,1,-21,-11,5,-7,1,-3 ; TV[523]=M; kill M; intmat M[7][10]=1,-1,1,3,-5,-1,3,-1,1,-1,9,-12,19,5,-9,-7,-5,-2,-1,3,9,-21,23,7,-9,-5,-7,11,-5,-3,3,-3,-1,1,3,1,5,5,-23,9,3,9,5,1,-3,-23,-1,5,1,3,7,-5,5,5,-5,-3,-3,-1,-1,1,27,-15,23,1,-21,-11,5,-7,1,-3 ; TV[524]=M; kill M; intmat M[7][10]=1,-1,1,3,-5,-1,3,-1,1,-1,9,-12,19,5,-9,-7,-5,-2,-1,3,9,-21,23,7,-9,-5,-7,11,-5,-3,2,-1,2,0,-2,-1,0,-1,2,-1,3,9,5,1,-3,-23,-1,5,1,3,7,-5,5,5,-5,-3,-3,-1,-1,1,27,-15,23,1,-21,-11,5,-7,1,-3 ; TV[525]=M; kill M; intmat M[7][10]=9,-12,19,5,-9,-7,-5,-2,-1,3,1,-1,1,3,-5,-1,3,-1,1,-1,1,-5,3,1,-1,3,-1,1,-1,-1,3,-3,-1,1,3,1,5,5,-23,9,3,3,1,-1,-3,5,1,-23,5,9,7,-5,5,5,-5,-3,-3,-1,-1,1,27,-15,23,1,-21,-11,5,-7,1,-3 ; TV[526]=M; kill M; intmat M[7][10]=1,-1,1,3,-5,-1,3,-1,1,-1,9,-12,19,5,-9,-7,-5,-2,-1,3,1,-5,3,1,-1,3,-1,1,-1,-1,9,-21,23,7,-9,-5,-7,11,-5,-3,3,-3,-1,1,3,1,5,5,-23,9,7,-5,5,5,-5,-3,-3,-1,-1,1,27,-15,23,1,-21,-11,5,-7,1,-3 ; TV[527]=M; kill M; intmat M[7][10]=9,-12,19,5,-9,-7,-5,-2,-1,3,1,-1,1,3,-5,-1,3,-1,1,-1,1,-5,3,1,-1,3,-1,1,-1,-1,2,-1,2,0,-2,-1,0,-1,2,-1,3,3,1,-1,-3,5,1,-23,5,9,7,-5,5,5,-5,-3,-3,-1,-1,1,27,-15,23,1,-21,-11,5,-7,1,-3 ; TV[528]=M; kill M; intmat M[7][10]=1,-1,1,3,-5,-1,3,-1,1,-1,9,-12,19,5,-9,-7,-5,-2,-1,3,1,-5,3,1,-1,3,-1,1,-1,-1,9,-21,23,7,-9,-5,-7,11,-5,-3,2,-1,2,0,-2,-1,0,-1,2,-1,7,-5,5,5,-5,-3,-3,-1,-1,1,27,-15,23,1,-21,-11,5,-7,1,-3 ; TV[529]=M; kill M; intmat M[7][10]=9,-21,23,7,-9,-5,-7,11,-5,-3,9,-3,11,-5,-21,-5,23,-7,7,-9,3,3,5,-23,9,1,5,-1,1,-3,2,-1,2,0,-2,-1,0,-1,2,-1,3,9,5,1,-3,-23,-1,5,1,3,9,-6,4,-1,-6,-1,4,4,-1,-6,27,-15,23,1,-21,-11,5,-7,1,-3 ; TV[530]=M; kill M; intmat M[7][10]=9,-21,23,7,-9,-5,-7,11,-5,-3,9,-3,11,-5,-21,-5,23,-7,7,-9,1,-1,1,3,-5,-1,3,-1,1,-1,2,-1,2,0,-2,-1,0,-1,2,-1,3,9,5,1,-3,-23,-1,5,1,3,9,-6,4,-1,-6,-1,4,4,-1,-6,27,-15,23,1,-21,-11,5,-7,1,-3 ; TV[531]=M; kill M; intmat M[7][10]=9,-21,23,7,-9,-5,-7,11,-5,-3,9,-3,11,-5,-21,-5,23,-7,7,-9,3,3,5,-23,9,1,5,-1,1,-3,3,-3,-1,1,3,1,5,5,-23,9,3,9,5,1,-3,-23,-1,5,1,3,9,-6,4,-1,-6,-1,4,4,-1,-6,27,-15,23,1,-21,-11,5,-7,1,-3 ; TV[532]=M; kill M; intmat M[7][10]=9,-21,23,7,-9,-5,-7,11,-5,-3,9,-3,11,-5,-21,-5,23,-7,7,-9,1,-1,1,3,-5,-1,3,-1,1,-1,3,-3,-1,1,3,1,5,5,-23,9,3,9,5,1,-3,-23,-1,5,1,3,9,-6,4,-1,-6,-1,4,4,-1,-6,27,-15,23,1,-21,-11,5,-7,1,-3 ; TV[533]=M; kill M; intmat M[7][10]=9,-3,11,-5,-21,-5,23,-7,7,-9,9,-21,23,7,-9,-5,-7,11,-5,-3,1,-5,3,1,-1,3,-1,1,-1,-1,2,-1,2,0,-2,-1,0,-1,2,-1,3,3,5,-23,9,1,5,-1,1,-3,9,-6,4,-1,-6,-1,4,4,-1,-6,27,-15,23,1,-21,-11,5,-7,1,-3 ; TV[534]=M; kill M; intmat M[7][10]=9,-3,11,-5,-21,-5,23,-7,7,-9,9,-21,23,7,-9,-5,-7,11,-5,-3,1,-5,3,1,-1,3,-1,1,-1,-1,3,-3,-1,1,3,1,5,5,-23,9,3,3,5,-23,9,1,5,-1,1,-3,9,-6,4,-1,-6,-1,4,4,-1,-6,27,-15,23,1,-21,-11,5,-7,1,-3 ; TV[535]=M; kill M; intmat M[7][10]=9,-3,11,-5,-21,-5,23,-7,7,-9,9,-21,23,7,-9,-5,-7,11,-5,-3,1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,1,3,-5,-1,3,-1,1,-1,2,-1,2,0,-2,-1,0,-1,2,-1,9,-6,4,-1,-6,-1,4,4,-1,-6,27,-15,23,1,-21,-11,5,-7,1,-3 ; TV[536]=M; kill M; intmat M[7][10]=9,-3,11,-5,-21,-5,23,-7,7,-9,9,-21,23,7,-9,-5,-7,11,-5,-3,1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,1,3,-5,-1,3,-1,1,-1,3,-3,-1,1,3,1,5,5,-23,9,9,-6,4,-1,-6,-1,4,4,-1,-6,27,-15,23,1,-21,-11,5,-7,1,-3 ; TV[537]=M; kill M; intmat M[7][10]=9,-9,7,23,-21,-7,-5,-5,11,-3,9,-21,23,7,-9,-5,-7,11,-5,-3,1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,1,3,-5,-1,3,-1,1,-1,2,-2,0,2,-1,0,-1,2,-1,-1,2,-1,2,0,-2,-1,0,-1,2,-1,7,-5,5,5,-5,-3,-3,-1,-1,1 ; TV[538]=M; kill M; intmat M[7][10]=9,-9,7,23,-21,-7,-5,-5,11,-3,9,-21,23,7,-9,-5,-7,11,-5,-3,1,-5,3,1,-1,3,-1,1,-1,-1,3,-3,1,5,9,-1,-23,1,5,3,2,-2,0,2,-1,0,-1,2,-1,-1,2,-1,2,0,-2,-1,0,-1,2,-1,7,-5,5,5,-5,-3,-3,-1,-1,1 ; TV[539]=M; kill M; intmat M[7][10]=9,-21,23,7,-9,-5,-7,11,-5,-3,9,-9,7,23,-21,-7,-5,-5,11,-3,1,-1,1,3,-5,-1,3,-1,1,-1,3,9,5,1,-3,-23,-1,5,1,3,2,-2,0,2,-1,0,-1,2,-1,-1,2,-1,2,0,-2,-1,0,-1,2,-1,7,-5,5,5,-5,-3,-3,-1,-1,1 ; TV[540]=M; kill M; intmat M[7][10]=9,-21,23,7,-9,-5,-7,11,-5,-3,9,-9,7,23,-21,-7,-5,-5,11,-3,3,-3,1,5,9,-1,-23,1,5,3,3,9,5,1,-3,-23,-1,5,1,3,2,-2,0,2,-1,0,-1,2,-1,-1,2,-1,2,0,-2,-1,0,-1,2,-1,7,-5,5,5,-5,-3,-3,-1,-1,1 ; TV[541]=M; kill M; intmat M[7][10]=9,-21,23,7,-9,-5,-7,11,-5,-3,1,-1,1,3,-5,-1,3,-1,1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,3,9,5,1,-3,-23,-1,5,1,3,2,-2,0,2,-1,0,-1,2,-1,-1,9,-6,4,-1,-6,-1,4,4,-1,-6,2,-1,2,0,-2,-1,0,-1,2,-1 ; TV[542]=M; kill M; intmat M[7][10]=1,-1,1,3,-5,-1,3,-1,1,-1,9,-21,23,7,-9,-5,-7,11,-5,-3,1,-1,-1,-1,-1,1,1,3,3,-5,1,-5,3,1,-1,3,-1,1,-1,-1,2,-2,0,2,-1,0,-1,2,-1,-1,9,-6,4,-1,-6,-1,4,4,-1,-6,2,-1,2,0,-2,-1,0,-1,2,-1 ; TV[543]=M; kill M; intmat M[7][10]=9,-21,23,7,-9,-5,-7,11,-5,-3,1,-5,3,1,-1,3,-1,1,-1,-1,9,-9,-7,-5,-3,7,11,23,-5,-21,3,-3,-1,1,3,1,5,5,-23,9,3,3,5,-23,9,1,5,-1,1,-3,9,-6,4,-1,-6,-1,4,4,-1,-6,27,-21,5,1,-3,1,-7,23,-11,-15 ; TV[544]=M; kill M; intmat M[7][10]=9,-21,23,7,-9,-5,-7,11,-5,-3,3,3,5,-23,9,1,5,-1,1,-3,9,-9,-7,-5,-3,7,11,23,-5,-21,3,-3,-1,1,3,1,5,5,-23,9,3,9,5,1,-3,-23,-1,5,1,3,9,-6,4,-1,-6,-1,4,4,-1,-6,27,-21,5,1,-3,1,-7,23,-11,-15 ; TV[545]=M; kill M; intmat M[7][10]=9,-21,23,7,-9,-5,-7,11,-5,-3,1,-5,3,1,-1,3,-1,1,-1,-1,9,-9,-7,-5,-3,7,11,23,-5,-21,2,-2,0,2,-1,0,-1,2,-1,-1,3,-3,-1,1,3,1,5,5,-23,9,27,-21,5,1,-3,1,-7,23,-11,-15,9,-6,4,-1,-6,-1,4,4,-1,-6 ; TV[546]=M; kill M; intmat M[7][10]=9,-21,23,7,-9,-5,-7,11,-5,-3,2,-2,0,2,-1,0,-1,2,-1,-1,9,-9,-7,-5,-3,7,11,23,-5,-21,3,-3,-1,1,3,1,5,5,-23,9,3,9,5,1,-3,-23,-1,5,1,3,27,-21,5,1,-3,1,-7,23,-11,-15,9,-6,4,-1,-6,-1,4,4,-1,-6 ; TV[547]=M; kill M; intmat M[7][10]=9,-21,23,7,-9,-5,-7,11,-5,-3,1,-5,3,1,-1,3,-1,1,-1,-1,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,3,5,-23,9,1,5,-1,1,-3,9,-6,4,-1,-6,-1,4,4,-1,-6,27,-21,5,1,-3,1,-7,23,-11,-15 ; TV[548]=M; kill M; intmat M[7][10]=9,-21,23,7,-9,-5,-7,11,-5,-3,3,3,5,-23,9,1,5,-1,1,-3,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,9,5,1,-3,-23,-1,5,1,3,9,-6,4,-1,-6,-1,4,4,-1,-6,27,-21,5,1,-3,1,-7,23,-11,-15 ; TV[549]=M; kill M; intmat M[7][10]=9,-21,23,7,-9,-5,-7,11,-5,-3,1,-5,3,1,-1,3,-1,1,-1,-1,9,-9,-7,-5,-3,7,11,23,-5,-21,2,-2,0,2,-1,0,-1,2,-1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,27,-21,5,1,-3,1,-7,23,-11,-15,9,-6,4,-1,-6,-1,4,4,-1,-6 ; TV[550]=M; kill M; intmat M[7][10]=9,-21,23,7,-9,-5,-7,11,-5,-3,2,-2,0,2,-1,0,-1,2,-1,-1,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,9,5,1,-3,-23,-1,5,1,3,27,-21,5,1,-3,1,-7,23,-11,-15,9,-6,4,-1,-6,-1,4,4,-1,-6 ; TV[551]=M; kill M; intmat M[7][10]=9,-3,11,-5,-21,-5,23,-7,7,-9,1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,3,3,5,-23,9,1,5,-1,1,-3,2,-1,-1,-1,-1,2,2,0,0,-2,9,-6,4,-1,-6,-1,4,4,-1,-6,2,-1,2,0,-2,-1,0,-1,2,-1 ; TV[552]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,9,-3,11,-5,-21,-5,23,-7,7,-9,1,-1,-1,-1,-1,1,1,3,3,-5,1,-1,1,3,-5,-1,3,-1,1,-1,2,-1,-1,-1,-1,2,2,0,0,-2,9,-6,4,-1,-6,-1,4,4,-1,-6,2,-1,2,0,-2,-1,0,-1,2,-1 ; TV[553]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,9,-9,5,19,-12,-5,-7,-1,-2,3,9,-9,7,23,-21,-7,-5,-5,11,-3,3,3,1,-1,-3,5,1,-23,5,9,3,-3,1,5,9,-1,-23,1,5,3,7,-5,5,5,-5,-3,-3,-1,-1,1,27,-21,1,23,-15,5,-11,1,-7,-3 ; TV[554]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,9,-9,5,19,-12,-5,-7,-1,-2,3,1,-1,1,3,-5,-1,3,-1,1,-1,9,-9,7,23,-21,-7,-5,-5,11,-3,3,3,1,-1,-3,5,1,-23,5,9,7,-5,5,5,-5,-3,-3,-1,-1,1,27,-21,1,23,-15,5,-11,1,-7,-3 ; TV[555]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,9,-9,5,19,-12,-5,-7,-1,-2,3,9,-9,7,23,-21,-7,-5,-5,11,-3,2,-2,0,2,-1,0,-1,2,-1,-1,3,-3,1,5,9,-1,-23,1,5,3,27,-21,1,23,-15,5,-11,1,-7,-3,7,-5,5,5,-5,-3,-3,-1,-1,1 ; TV[556]=M; kill M; intmat M[7][10]=9,-9,5,19,-12,-5,-7,-1,-2,3,1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,1,3,-5,-1,3,-1,1,-1,3,-3,-1,1,3,1,5,5,-23,9,3,3,1,-1,-3,5,1,-23,5,9,7,-5,5,5,-5,-3,-3,-1,-1,1,27,-21,1,23,-15,5,-11,1,-7,-3 ; TV[557]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,9,-9,5,19,-12,-5,-7,-1,-2,3,1,-1,1,3,-5,-1,3,-1,1,-1,2,-2,0,2,-1,0,-1,2,-1,-1,9,-9,7,23,-21,-7,-5,-5,11,-3,27,-21,1,23,-15,5,-11,1,-7,-3,7,-5,5,5,-5,-3,-3,-1,-1,1 ; TV[558]=M; kill M; intmat M[7][10]=9,-9,5,19,-12,-5,-7,-1,-2,3,1,-5,3,1,-1,3,-1,1,-1,-1,3,3,1,-1,-3,5,1,-23,5,9,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,7,-5,5,5,-5,-3,-3,-1,-1,1,27,-21,1,23,-15,5,-11,1,-7,-3 ; TV[559]=M; kill M; intmat M[7][10]=9,-9,5,19,-12,-5,-7,-1,-2,3,1,-5,3,1,-1,3,-1,1,-1,-1,2,-2,0,2,-1,0,-1,2,-1,-1,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,27,-21,1,23,-15,5,-11,1,-7,-3,7,-5,5,5,-5,-3,-3,-1,-1,1 ; TV[560]=M; kill M; intmat M[7][10]=9,-9,5,19,-12,-5,-7,-1,-2,3,1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,1,3,-5,-1,3,-1,1,-1,2,-2,0,2,-1,0,-1,2,-1,-1,3,-3,-1,1,3,1,5,5,-23,9,27,-21,1,23,-15,5,-11,1,-7,-3,7,-5,5,5,-5,-3,-3,-1,-1,1 ; TV[561]=M; kill M; intmat M[7][10]=9,-9,7,23,-21,-7,-5,-5,11,-3,1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,1,5,9,-1,-23,1,5,3,9,-6,-1,4,-6,4,-1,-1,4,-6,2,-2,0,2,-1,0,-1,2,-1,-1,2,-1,2,0,-2,-1,0,-1,2,-1 ; TV[562]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,9,-9,7,23,-21,-7,-5,-5,11,-3,1,-1,-1,-1,-1,1,1,3,3,-5,1,-1,1,3,-5,-1,3,-1,1,-1,9,-6,-1,4,-6,4,-1,-1,4,-6,2,-2,0,2,-1,0,-1,2,-1,-1,2,-1,2,0,-2,-1,0,-1,2,-1 ; TV[563]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,1,3,-5,-1,3,-1,1,-1,9,-3,-5,-7,-9,11,7,-5,23,-21,3,3,1,-1,-3,5,1,-23,5,9,9,-6,-1,4,-6,4,-1,-1,4,-6,2,-1,-1,-1,-1,2,2,0,0,-2,2,-1,2,0,-2,-1,0,-1,2,-1 ; TV[564]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,1,3,-5,-1,3,-1,1,-1,9,-3,-5,-7,-9,11,7,-5,23,-21,1,-1,-1,-1,-1,1,1,3,3,-5,9,-6,-1,4,-6,4,-1,-1,4,-6,2,-1,-1,-1,-1,2,2,0,0,-2,2,-1,2,0,-2,-1,0,-1,2,-1 ; TV[565]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,1,3,-5,-1,3,-1,1,-1,9,-9,-7,-5,-3,7,11,23,-5,-21,3,-3,-1,1,3,1,5,5,-23,9,2,-1,-1,-1,-1,2,2,0,0,-2,2,-2,0,2,-1,0,-1,2,-1,-1,9,-6,4,-1,-6,-1,4,4,-1,-6 ; TV[566]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,1,3,-5,-1,3,-1,1,-1,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-1,-1,-1,-1,1,1,3,3,-5,2,-1,-1,-1,-1,2,2,0,0,-2,2,-2,0,2,-1,0,-1,2,-1,-1,9,-6,4,-1,-6,-1,4,4,-1,-6 ; TV[567]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,9,-9,-5,-1,3,5,-2,19,-7,-12,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,3,3,5,-23,9,1,5,-1,1,-3,7,-5,-3,-1,1,5,-1,5,-3,-5,27,-21,5,1,-3,1,-7,23,-11,-15 ; TV[568]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,9,-9,-5,-1,3,5,-2,19,-7,-12,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,1,5,9,-1,-23,1,5,3,3,3,5,-23,9,1,5,-1,1,-3,7,-5,-3,-1,1,5,-1,5,-3,-5,27,-21,5,1,-3,1,-7,23,-11,-15 ; TV[569]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,9,-9,-5,-1,3,5,-2,19,-7,-12,9,-9,-7,-5,-3,7,11,23,-5,-21,3,-3,-1,1,3,1,5,5,-23,9,3,3,5,-23,9,1,5,-1,1,-3,7,-5,-3,-1,1,5,-1,5,-3,-5,27,-21,5,1,-3,1,-7,23,-11,-15 ; TV[570]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,9,-9,-5,-1,3,5,-2,19,-7,-12,2,-2,0,2,-1,0,-1,2,-1,-1,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,7,-5,-3,-1,1,5,-1,5,-3,-5,27,-21,5,1,-3,1,-7,23,-11,-15 ; TV[571]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,9,-9,-5,-1,3,5,-2,19,-7,-12,2,-2,0,2,-1,0,-1,2,-1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,1,5,9,-1,-23,1,5,3,7,-5,-3,-1,1,5,-1,5,-3,-5,27,-21,5,1,-3,1,-7,23,-11,-15 ; TV[572]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,9,-9,-5,-1,3,5,-2,19,-7,-12,2,-2,0,2,-1,0,-1,2,-1,-1,9,-9,-7,-5,-3,7,11,23,-5,-21,3,-3,-1,1,3,1,5,5,-23,9,7,-5,-3,-1,1,5,-1,5,-3,-5,27,-21,5,1,-3,1,-7,23,-11,-15 ; TV[573]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,9,-9,-5,-1,3,5,-2,19,-7,-12,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,3,5,-23,9,1,5,-1,1,-3,7,-5,-3,-1,1,5,-1,5,-3,-5,27,-21,5,1,-3,1,-7,23,-11,-15 ; TV[574]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,9,-9,-5,-1,3,5,-2,19,-7,-12,2,-2,0,2,-1,0,-1,2,-1,-1,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-1,-1,-1,-1,1,1,3,3,-5,7,-5,-3,-1,1,5,-1,5,-3,-5,27,-21,5,1,-3,1,-7,23,-11,-15 ; TV[575]=M; kill M; intmat M[7][10]=9,-9,7,23,-21,-7,-5,-5,11,-3,9,-21,-5,11,-3,23,-5,7,-7,-9,1,-5,3,1,-1,3,-1,1,-1,-1,3,3,1,-1,-3,5,1,-23,5,9,3,-3,1,5,9,-1,-23,1,5,3,9,-6,-1,4,-6,4,-1,-1,4,-6,27,-21,1,23,-15,5,-11,1,-7,-3 ; TV[576]=M; kill M; intmat M[7][10]=9,-21,-5,11,-3,23,-5,7,-7,-9,9,-9,7,23,-21,-7,-5,-5,11,-3,1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,1,3,-5,-1,3,-1,1,-1,3,3,1,-1,-3,5,1,-23,5,9,9,-6,-1,4,-6,4,-1,-1,4,-6,27,-21,1,23,-15,5,-11,1,-7,-3 ; TV[577]=M; kill M; intmat M[7][10]=9,-9,7,23,-21,-7,-5,-5,11,-3,9,-21,-5,11,-3,23,-5,7,-7,-9,1,-1,1,3,-5,-1,3,-1,1,-1,3,3,1,-1,-3,5,1,-23,5,9,3,9,-23,5,3,5,1,1,-1,-3,9,-6,-1,4,-6,4,-1,-1,4,-6,27,-21,1,23,-15,5,-11,1,-7,-3 ; TV[578]=M; kill M; intmat M[7][10]=9,-9,7,23,-21,-7,-5,-5,11,-3,9,-21,-5,11,-3,23,-5,7,-7,-9,3,3,1,-1,-3,5,1,-23,5,9,3,-3,1,5,9,-1,-23,1,5,3,3,9,-23,5,3,5,1,1,-1,-3,9,-6,-1,4,-6,4,-1,-1,4,-6,27,-21,1,23,-15,5,-11,1,-7,-3 ; TV[579]=M; kill M; intmat M[7][10]=9,-9,7,23,-21,-7,-5,-5,11,-3,9,-21,-5,11,-3,23,-5,7,-7,-9,1,-5,3,1,-1,3,-1,1,-1,-1,2,-2,0,2,-1,0,-1,2,-1,-1,3,-3,1,5,9,-1,-23,1,5,3,9,-6,-1,4,-6,4,-1,-1,4,-6,27,-21,1,23,-15,5,-11,1,-7,-3 ; TV[580]=M; kill M; intmat M[7][10]=9,-21,-5,11,-3,23,-5,7,-7,-9,9,-9,7,23,-21,-7,-5,-5,11,-3,1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,1,3,-5,-1,3,-1,1,-1,2,-2,0,2,-1,0,-1,2,-1,-1,9,-6,-1,4,-6,4,-1,-1,4,-6,27,-21,1,23,-15,5,-11,1,-7,-3 ; TV[581]=M; kill M; intmat M[7][10]=9,-9,7,23,-21,-7,-5,-5,11,-3,9,-21,-5,11,-3,23,-5,7,-7,-9,1,-1,1,3,-5,-1,3,-1,1,-1,2,-2,0,2,-1,0,-1,2,-1,-1,3,9,-23,5,3,5,1,1,-1,-3,9,-6,-1,4,-6,4,-1,-1,4,-6,27,-21,1,23,-15,5,-11,1,-7,-3 ; TV[582]=M; kill M; intmat M[7][10]=9,-9,7,23,-21,-7,-5,-5,11,-3,9,-21,-5,11,-3,23,-5,7,-7,-9,2,-2,0,2,-1,0,-1,2,-1,-1,3,-3,1,5,9,-1,-23,1,5,3,3,9,-23,5,3,5,1,1,-1,-3,9,-6,-1,4,-6,4,-1,-1,4,-6,27,-21,1,23,-15,5,-11,1,-7,-3 ; TV[583]=M; kill M; intmat M[7][10]=1,-1,1,3,-5,-1,3,-1,1,-1,9,-21,-5,11,-3,23,-5,7,-7,-9,1,-1,-1,-1,-1,1,1,3,3,-5,3,9,-23,5,3,5,1,1,-1,-3,2,-1,-1,-1,-1,2,2,0,0,-2,2,-2,0,2,-1,0,-1,2,-1,-1,9,-6,-1,4,-6,4,-1,-1,4,-6 ; TV[584]=M; kill M; intmat M[7][10]=9,-21,-5,11,-3,23,-5,7,-7,-9,1,-1,1,3,-5,-1,3,-1,1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,1,-5,3,1,-1,3,-1,1,-1,-1,2,-1,-1,-1,-1,2,2,0,0,-2,2,-2,0,2,-1,0,-1,2,-1,-1,9,-6,-1,4,-6,4,-1,-1,4,-6 ; TV[585]=M; kill M; intmat M[7][10]=9,-21,-5,11,-3,23,-5,7,-7,-9,1,-5,3,1,-1,3,-1,1,-1,-1,9,-3,-5,-7,-9,11,7,-5,23,-21,3,3,1,-1,-3,5,1,-23,5,9,3,-3,1,5,9,-1,-23,1,5,3,9,-6,-1,4,-6,4,-1,-1,4,-6,27,-15,-11,-7,-3,23,1,1,5,-21 ; TV[586]=M; kill M; intmat M[7][10]=3,9,-23,5,3,5,1,1,-1,-3,9,-21,-5,11,-3,23,-5,7,-7,-9,9,-3,-5,-7,-9,11,7,-5,23,-21,3,3,1,-1,-3,5,1,-23,5,9,3,-3,1,5,9,-1,-23,1,5,3,9,-6,-1,4,-6,4,-1,-1,4,-6,27,-15,-11,-7,-3,23,1,1,5,-21 ; TV[587]=M; kill M; intmat M[7][10]=9,-21,-5,11,-3,23,-5,7,-7,-9,1,-5,3,1,-1,3,-1,1,-1,-1,9,-3,-5,-7,-9,11,7,-5,23,-21,2,-1,-1,-1,-1,2,2,0,0,-2,3,3,1,-1,-3,5,1,-23,5,9,27,-15,-11,-7,-3,23,1,1,5,-21,9,-6,-1,4,-6,4,-1,-1,4,-6 ; TV[588]=M; kill M; intmat M[7][10]=9,-21,-5,11,-3,23,-5,7,-7,-9,1,-5,3,1,-1,3,-1,1,-1,-1,9,-3,-5,-7,-9,11,7,-5,23,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,1,5,9,-1,-23,1,5,3,9,-6,-1,4,-6,4,-1,-1,4,-6,27,-15,-11,-7,-3,23,1,1,5,-21 ; TV[589]=M; kill M; intmat M[7][10]=3,9,-23,5,3,5,1,1,-1,-3,9,-21,-5,11,-3,23,-5,7,-7,-9,9,-3,-5,-7,-9,11,7,-5,23,-21,2,-1,-1,-1,-1,2,2,0,0,-2,3,3,1,-1,-3,5,1,-23,5,9,27,-15,-11,-7,-3,23,1,1,5,-21,9,-6,-1,4,-6,4,-1,-1,4,-6 ; TV[590]=M; kill M; intmat M[7][10]=3,9,-23,5,3,5,1,1,-1,-3,9,-21,-5,11,-3,23,-5,7,-7,-9,9,-3,-5,-7,-9,11,7,-5,23,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,1,5,9,-1,-23,1,5,3,9,-6,-1,4,-6,4,-1,-1,4,-6,27,-15,-11,-7,-3,23,1,1,5,-21 ; TV[591]=M; kill M; intmat M[7][10]=9,-21,-5,11,-3,23,-5,7,-7,-9,1,-5,3,1,-1,3,-1,1,-1,-1,9,-3,-5,-7,-9,11,7,-5,23,-21,2,-1,-1,-1,-1,2,2,0,0,-2,1,-1,-1,-1,-1,1,1,3,3,-5,27,-15,-11,-7,-3,23,1,1,5,-21,9,-6,-1,4,-6,4,-1,-1,4,-6 ; TV[592]=M; kill M; intmat M[7][10]=3,9,-23,5,3,5,1,1,-1,-3,9,-21,-5,11,-3,23,-5,7,-7,-9,9,-3,-5,-7,-9,11,7,-5,23,-21,2,-1,-1,-1,-1,2,2,0,0,-2,1,-1,-1,-1,-1,1,1,3,3,-5,27,-15,-11,-7,-3,23,1,1,5,-21,9,-6,-1,4,-6,4,-1,-1,4,-6 ; TV[593]=M; kill M; intmat M[7][10]=9,-21,-5,11,-3,23,-5,7,-7,-9,1,-5,3,1,-1,3,-1,1,-1,-1,9,-9,-7,-5,-3,7,11,23,-5,-21,3,-3,-1,1,3,1,5,5,-23,9,7,-5,-3,-1,1,5,-1,5,-3,-5,2,-1,-1,-1,-1,2,2,0,0,-2,2,-2,0,2,-1,0,-1,2,-1,-1 ; TV[594]=M; kill M; intmat M[7][10]=3,9,-23,5,3,5,1,1,-1,-3,9,-21,-5,11,-3,23,-5,7,-7,-9,9,-9,-7,-5,-3,7,11,23,-5,-21,3,-3,-1,1,3,1,5,5,-23,9,7,-5,-3,-1,1,5,-1,5,-3,-5,2,-1,-1,-1,-1,2,2,0,0,-2,2,-2,0,2,-1,0,-1,2,-1,-1 ; TV[595]=M; kill M; intmat M[7][10]=9,-21,-5,11,-3,23,-5,7,-7,-9,1,-5,3,1,-1,3,-1,1,-1,-1,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-1,-1,-1,-1,1,1,3,3,-5,7,-5,-3,-1,1,5,-1,5,-3,-5,2,-1,-1,-1,-1,2,2,0,0,-2,2,-2,0,2,-1,0,-1,2,-1,-1 ; TV[596]=M; kill M; intmat M[7][10]=3,9,-23,5,3,5,1,1,-1,-3,9,-21,-5,11,-3,23,-5,7,-7,-9,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-1,-1,-1,-1,1,1,3,3,-5,7,-5,-3,-1,1,5,-1,5,-3,-5,2,-1,-1,-1,-1,2,2,0,0,-2,2,-2,0,2,-1,0,-1,2,-1,-1 ; TV[597]=M; kill M; intmat M[7][10]=9,-12,-7,-2,3,19,-1,5,-5,-9,1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,9,-21,-5,11,-3,23,-5,7,-7,-9,3,-3,1,5,9,-1,-23,1,5,3,7,-5,-3,-1,1,5,-1,5,-3,-5,27,-15,-11,-7,-3,23,1,1,5,-21 ; TV[598]=M; kill M; intmat M[7][10]=9,-12,-7,-2,3,19,-1,5,-5,-9,3,-3,1,5,9,-1,-23,1,5,3,1,-1,-1,-1,-1,1,1,3,3,-5,3,3,5,-23,9,1,5,-1,1,-3,3,9,-23,5,3,5,1,1,-1,-3,7,-5,-3,-1,1,5,-1,5,-3,-5,27,-15,-11,-7,-3,23,1,1,5,-21 ; TV[599]=M; kill M; intmat M[7][10]=9,-12,-7,-2,3,19,-1,5,-5,-9,9,-21,-5,11,-3,23,-5,7,-7,-9,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,1,5,9,-1,-23,1,5,3,3,9,-23,5,3,5,1,1,-1,-3,7,-5,-3,-1,1,5,-1,5,-3,-5,27,-15,-11,-7,-3,23,1,1,5,-21 ; TV[600]=M; kill M; intmat M[7][10]=9,-12,-7,-2,3,19,-1,5,-5,-9,1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,1,5,9,-1,-23,1,5,3,3,3,5,-23,9,1,5,-1,1,-3,7,-5,-3,-1,1,5,-1,5,-3,-5,27,-15,-11,-7,-3,23,1,1,5,-21 ; TV[601]=M; kill M; intmat M[7][10]=9,-12,-7,-2,3,19,-1,5,-5,-9,1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,9,-21,-5,11,-3,23,-5,7,-7,-9,2,-1,-1,-1,-1,2,2,0,0,-2,7,-5,-3,-1,1,5,-1,5,-3,-5,27,-15,-11,-7,-3,23,1,1,5,-21 ; TV[602]=M; kill M; intmat M[7][10]=9,-12,-7,-2,3,19,-1,5,-5,-9,2,-1,-1,-1,-1,2,2,0,0,-2,1,-1,-1,-1,-1,1,1,3,3,-5,3,3,5,-23,9,1,5,-1,1,-3,3,9,-23,5,3,5,1,1,-1,-3,7,-5,-3,-1,1,5,-1,5,-3,-5,27,-15,-11,-7,-3,23,1,1,5,-21 ; TV[603]=M; kill M; intmat M[7][10]=9,-12,-7,-2,3,19,-1,5,-5,-9,9,-21,-5,11,-3,23,-5,7,-7,-9,1,-1,-1,-1,-1,1,1,3,3,-5,2,-1,-1,-1,-1,2,2,0,0,-2,3,9,-23,5,3,5,1,1,-1,-3,7,-5,-3,-1,1,5,-1,5,-3,-5,27,-15,-11,-7,-3,23,1,1,5,-21 ; TV[604]=M; kill M; intmat M[7][10]=9,-12,-7,-2,3,19,-1,5,-5,-9,1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,2,-1,-1,-1,-1,2,2,0,0,-2,3,3,5,-23,9,1,5,-1,1,-3,7,-5,-3,-1,1,5,-1,5,-3,-5,27,-15,-11,-7,-3,23,1,1,5,-21 ; TV[605]=M; kill M; intmat M[7][10]=9,3,-1,-5,-9,-2,5,-7,19,-12,9,-3,11,-5,-21,-5,23,-7,7,-9,1,-1,1,3,-5,-1,3,-1,1,-1,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3,2,-1,2,0,-2,-1,0,-1,2,-1,7,1,-1,-3,-5,-1,5,-3,5,-5 ; TV[606]=M; kill M; intmat M[7][10]=9,-3,11,-5,-21,-5,23,-7,7,-9,3,3,5,-23,9,1,5,-1,1,-3,9,3,-1,-5,-9,-2,5,-7,19,-12,9,-3,-5,-7,-9,11,7,-5,23,-21,3,3,1,-1,-3,5,1,-23,5,9,2,-1,2,0,-2,-1,0,-1,2,-1,7,1,-1,-3,-5,-1,5,-3,5,-5 ; TV[607]=M; kill M; intmat M[7][10]=9,3,-1,-5,-9,-2,5,-7,19,-12,3,3,5,-23,9,1,5,-1,1,-3,9,-3,11,-5,-21,-5,23,-7,7,-9,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3,2,-1,2,0,-2,-1,0,-1,2,-1,7,1,-1,-3,-5,-1,5,-3,5,-5 ; TV[608]=M; kill M; intmat M[7][10]=9,-3,11,-5,-21,-5,23,-7,7,-9,9,3,-1,-5,-9,-2,5,-7,19,-12,9,-3,-5,-7,-9,11,7,-5,23,-21,1,-1,1,3,-5,-1,3,-1,1,-1,3,3,1,-1,-3,5,1,-23,5,9,2,-1,2,0,-2,-1,0,-1,2,-1,7,1,-1,-3,-5,-1,5,-3,5,-5 ; TV[609]=M; kill M; intmat M[7][10]=9,-3,11,-5,-21,-5,23,-7,7,-9,3,3,5,-23,9,1,5,-1,1,-3,9,3,-1,-5,-9,-2,5,-7,19,-12,1,-1,-1,-1,-1,1,1,3,3,-5,3,9,5,1,-3,-23,-1,5,1,3,2,-1,2,0,-2,-1,0,-1,2,-1,7,1,-1,-3,-5,-1,5,-3,5,-5 ; TV[610]=M; kill M; intmat M[7][10]=9,-3,11,-5,-21,-5,23,-7,7,-9,9,3,-1,-5,-9,-2,5,-7,19,-12,9,-3,-5,-7,-9,11,7,-5,23,-21,1,-1,1,3,-5,-1,3,-1,1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,2,-1,2,0,-2,-1,0,-1,2,-1,7,1,-1,-3,-5,-1,5,-3,5,-5 ; TV[611]=M; kill M; intmat M[7][10]=9,-3,11,-5,-21,-5,23,-7,7,-9,3,3,5,-23,9,1,5,-1,1,-3,9,3,-1,-5,-9,-2,5,-7,19,-12,9,-3,-5,-7,-9,11,7,-5,23,-21,1,-1,-1,-1,-1,1,1,3,3,-5,2,-1,2,0,-2,-1,0,-1,2,-1,7,1,-1,-3,-5,-1,5,-3,5,-5 ; TV[612]=M; kill M; intmat M[7][10]=9,3,-1,-5,-9,-2,5,-7,19,-12,9,-3,11,-5,-21,-5,23,-7,7,-9,1,-1,-1,-1,-1,1,1,3,3,-5,1,-1,1,3,-5,-1,3,-1,1,-1,3,9,5,1,-3,-23,-1,5,1,3,2,-1,2,0,-2,-1,0,-1,2,-1,7,1,-1,-3,-5,-1,5,-3,5,-5 ; TV[613]=M; kill M; intmat M[7][10]=9,3,-1,-5,-9,-2,5,-7,19,-12,9,-9,7,23,-21,-7,-5,-5,11,-3,1,-1,1,3,-5,-1,3,-1,1,-1,3,9,-23,5,3,5,1,1,-1,-3,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3,27,-3,1,5,-21,-7,1,-11,23,-15 ; TV[614]=M; kill M; intmat M[7][10]=9,3,-1,-5,-9,-2,5,-7,19,-12,9,-9,7,23,-21,-7,-5,-5,11,-3,3,-3,1,5,9,-1,-23,1,5,3,3,9,-23,5,3,5,1,1,-1,-3,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3,27,-3,1,5,-21,-7,1,-11,23,-15 ; TV[615]=M; kill M; intmat M[7][10]=9,-9,7,23,-21,-7,-5,-5,11,-3,9,3,-1,-5,-9,-2,5,-7,19,-12,9,-3,-5,-7,-9,11,7,-5,23,-21,1,-1,1,3,-5,-1,3,-1,1,-1,3,3,1,-1,-3,5,1,-23,5,9,3,9,-23,5,3,5,1,1,-1,-3,27,-3,1,5,-21,-7,1,-11,23,-15 ; TV[616]=M; kill M; intmat M[7][10]=9,-9,7,23,-21,-7,-5,-5,11,-3,9,3,-1,-5,-9,-2,5,-7,19,-12,9,-3,-5,-7,-9,11,7,-5,23,-21,3,3,1,-1,-3,5,1,-23,5,9,3,-3,1,5,9,-1,-23,1,5,3,3,9,-23,5,3,5,1,1,-1,-3,27,-3,1,5,-21,-7,1,-11,23,-15 ; TV[617]=M; kill M; intmat M[7][10]=9,-9,7,23,-21,-7,-5,-5,11,-3,9,3,-1,-5,-9,-2,5,-7,19,-12,9,-3,-5,-7,-9,11,7,-5,23,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,1,5,9,-1,-23,1,5,3,3,9,-23,5,3,5,1,1,-1,-3,27,-3,1,5,-21,-7,1,-11,23,-15 ; TV[618]=M; kill M; intmat M[7][10]=9,-9,7,23,-21,-7,-5,-5,11,-3,9,3,-1,-5,-9,-2,5,-7,19,-12,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,1,5,9,-1,-23,1,5,3,3,9,-23,5,3,5,1,1,-1,-3,3,9,5,1,-3,-23,-1,5,1,3,27,-3,1,5,-21,-7,1,-11,23,-15 ; TV[619]=M; kill M; intmat M[7][10]=9,3,-1,-5,-9,-2,5,-7,19,-12,9,-9,7,23,-21,-7,-5,-5,11,-3,2,-1,2,0,-2,-1,0,-1,2,-1,1,-1,1,3,-5,-1,3,-1,1,-1,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3,27,-3,1,5,-21,-7,1,-11,23,-15 ; TV[620]=M; kill M; intmat M[7][10]=9,3,-1,-5,-9,-2,5,-7,19,-12,9,-9,7,23,-21,-7,-5,-5,11,-3,1,-1,-1,-1,-1,1,1,3,3,-5,1,-1,1,3,-5,-1,3,-1,1,-1,3,9,-23,5,3,5,1,1,-1,-3,3,9,5,1,-3,-23,-1,5,1,3,27,-3,1,5,-21,-7,1,-11,23,-15 ; TV[621]=M; kill M; intmat M[7][10]=9,3,-1,-5,-9,-2,5,-7,19,-12,9,-9,7,23,-21,-7,-5,-5,11,-3,2,-1,2,0,-2,-1,0,-1,2,-1,3,-3,1,5,9,-1,-23,1,5,3,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3,27,-3,1,5,-21,-7,1,-11,23,-15 ; TV[622]=M; kill M; intmat M[7][10]=9,-9,7,23,-21,-7,-5,-5,11,-3,9,3,-1,-5,-9,-2,5,-7,19,-12,9,-3,-5,-7,-9,11,7,-5,23,-21,2,-1,2,0,-2,-1,0,-1,2,-1,3,3,1,-1,-3,5,1,-23,5,9,3,-3,1,5,9,-1,-23,1,5,3,27,-3,1,5,-21,-7,1,-11,23,-15 ; TV[623]=M; kill M; intmat M[7][10]=9,-9,7,23,-21,-7,-5,-5,11,-3,9,3,-1,-5,-9,-2,5,-7,19,-12,9,-3,-5,-7,-9,11,7,-5,23,-21,2,-1,2,0,-2,-1,0,-1,2,-1,1,-1,1,3,-5,-1,3,-1,1,-1,3,3,1,-1,-3,5,1,-23,5,9,27,-3,1,5,-21,-7,1,-11,23,-15 ; TV[624]=M; kill M; intmat M[7][10]=9,-9,7,23,-21,-7,-5,-5,11,-3,9,3,-1,-5,-9,-2,5,-7,19,-12,9,-3,-5,-7,-9,11,7,-5,23,-21,1,-1,1,3,-5,-1,3,-1,1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,3,9,-23,5,3,5,1,1,-1,-3,27,-3,1,5,-21,-7,1,-11,23,-15 ; TV[625]=M; kill M; intmat M[7][10]=9,-9,7,23,-21,-7,-5,-5,11,-3,9,3,-1,-5,-9,-2,5,-7,19,-12,1,-1,-1,-1,-1,1,1,3,3,-5,2,-1,2,0,-2,-1,0,-1,2,-1,3,-3,1,5,9,-1,-23,1,5,3,3,9,5,1,-3,-23,-1,5,1,3,27,-3,1,5,-21,-7,1,-11,23,-15 ; TV[626]=M; kill M; intmat M[7][10]=9,3,-1,-5,-9,-2,5,-7,19,-12,9,-9,7,23,-21,-7,-5,-5,11,-3,1,-1,-1,-1,-1,1,1,3,3,-5,1,-1,1,3,-5,-1,3,-1,1,-1,2,-1,2,0,-2,-1,0,-1,2,-1,3,9,5,1,-3,-23,-1,5,1,3,27,-3,1,5,-21,-7,1,-11,23,-15 ; TV[627]=M; kill M; intmat M[7][10]=9,-9,7,23,-21,-7,-5,-5,11,-3,9,3,-1,-5,-9,-2,5,-7,19,-12,9,-3,-5,-7,-9,11,7,-5,23,-21,2,-1,2,0,-2,-1,0,-1,2,-1,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,1,5,9,-1,-23,1,5,3,27,-3,1,5,-21,-7,1,-11,23,-15 ; TV[628]=M; kill M; intmat M[7][10]=9,-9,7,23,-21,-7,-5,-5,11,-3,9,3,-1,-5,-9,-2,5,-7,19,-12,9,-3,-5,-7,-9,11,7,-5,23,-21,2,-1,2,0,-2,-1,0,-1,2,-1,1,-1,1,3,-5,-1,3,-1,1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,27,-3,1,5,-21,-7,1,-11,23,-15 ; TV[629]=M; kill M; intmat M[7][10]=9,3,-2,-7,-12,-1,19,-5,5,-9,9,-3,11,-5,-21,-5,23,-7,7,-9,9,-3,-5,-7,-9,11,7,-5,23,-21,3,3,1,-1,-3,5,1,-23,5,9,3,3,5,-23,9,1,5,-1,1,-3,2,-1,-1,-1,-1,2,2,0,0,-2,7,1,-1,-3,-5,-1,5,-3,5,-5 ; TV[630]=M; kill M; intmat M[7][10]=9,3,-2,-7,-12,-1,19,-5,5,-9,9,-3,11,-5,-21,-5,23,-7,7,-9,9,-3,-5,-7,-9,11,7,-5,23,-21,1,-1,1,3,-5,-1,3,-1,1,-1,3,3,1,-1,-3,5,1,-23,5,9,2,-1,-1,-1,-1,2,2,0,0,-2,7,1,-1,-3,-5,-1,5,-3,5,-5 ; TV[631]=M; kill M; intmat M[7][10]=9,3,-2,-7,-12,-1,19,-5,5,-9,3,3,5,-23,9,1,5,-1,1,-3,9,-3,-5,-7,-9,11,7,-5,23,-21,3,3,1,-1,-3,5,1,-23,5,9,3,9,-23,5,3,5,1,1,-1,-3,2,-1,-1,-1,-1,2,2,0,0,-2,7,1,-1,-3,-5,-1,5,-3,5,-5 ; TV[632]=M; kill M; intmat M[7][10]=1,-1,1,3,-5,-1,3,-1,1,-1,9,3,-2,-7,-12,-1,19,-5,5,-9,9,-3,-5,-7,-9,11,7,-5,23,-21,3,3,1,-1,-3,5,1,-23,5,9,3,9,-23,5,3,5,1,1,-1,-3,2,-1,-1,-1,-1,2,2,0,0,-2,7,1,-1,-3,-5,-1,5,-3,5,-5 ; TV[633]=M; kill M; intmat M[7][10]=9,3,-2,-7,-12,-1,19,-5,5,-9,9,-3,11,-5,-21,-5,23,-7,7,-9,9,-3,-5,-7,-9,11,7,-5,23,-21,1,-1,1,3,-5,-1,3,-1,1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,2,-1,-1,-1,-1,2,2,0,0,-2,7,1,-1,-3,-5,-1,5,-3,5,-5 ; TV[634]=M; kill M; intmat M[7][10]=9,3,-2,-7,-12,-1,19,-5,5,-9,9,-3,11,-5,-21,-5,23,-7,7,-9,9,-3,-5,-7,-9,11,7,-5,23,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,3,5,-23,9,1,5,-1,1,-3,2,-1,-1,-1,-1,2,2,0,0,-2,7,1,-1,-3,-5,-1,5,-3,5,-5 ; TV[635]=M; kill M; intmat M[7][10]=9,3,-2,-7,-12,-1,19,-5,5,-9,3,3,5,-23,9,1,5,-1,1,-3,9,-3,-5,-7,-9,11,7,-5,23,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,9,-23,5,3,5,1,1,-1,-3,2,-1,-1,-1,-1,2,2,0,0,-2,7,1,-1,-3,-5,-1,5,-3,5,-5 ; TV[636]=M; kill M; intmat M[7][10]=1,-1,1,3,-5,-1,3,-1,1,-1,9,3,-2,-7,-12,-1,19,-5,5,-9,9,-3,-5,-7,-9,11,7,-5,23,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,9,-23,5,3,5,1,1,-1,-3,2,-1,-1,-1,-1,2,2,0,0,-2,7,1,-1,-3,-5,-1,5,-3,5,-5 ; TV[637]=M; kill M; intmat M[7][10]=1,-1,1,3,-5,-1,3,-1,1,-1,9,3,-2,-7,-12,-1,19,-5,5,-9,9,-9,-7,-5,-3,7,11,23,-5,-21,3,-3,-1,1,3,1,5,5,-23,9,3,9,-23,5,3,5,1,1,-1,-3,3,9,5,1,-3,-23,-1,5,1,3,27,-3,-7,-11,-15,1,23,5,1,-21 ; TV[638]=M; kill M; intmat M[7][10]=9,3,-2,-7,-12,-1,19,-5,5,-9,9,-3,11,-5,-21,-5,23,-7,7,-9,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-1,1,3,-5,-1,3,-1,1,-1,3,-3,-1,1,3,1,5,5,-23,9,3,9,5,1,-3,-23,-1,5,1,3,27,-3,-7,-11,-15,1,23,5,1,-21 ; TV[639]=M; kill M; intmat M[7][10]=9,3,-2,-7,-12,-1,19,-5,5,-9,3,3,5,-23,9,1,5,-1,1,-3,9,-9,-7,-5,-3,7,11,23,-5,-21,3,-3,-1,1,3,1,5,5,-23,9,3,9,5,1,-3,-23,-1,5,1,3,3,9,-23,5,3,5,1,1,-1,-3,27,-3,-7,-11,-15,1,23,5,1,-21 ; TV[640]=M; kill M; intmat M[7][10]=9,3,-2,-7,-12,-1,19,-5,5,-9,9,-3,11,-5,-21,-5,23,-7,7,-9,9,-9,-7,-5,-3,7,11,23,-5,-21,3,-3,-1,1,3,1,5,5,-23,9,3,3,5,-23,9,1,5,-1,1,-3,3,9,5,1,-3,-23,-1,5,1,3,27,-3,-7,-11,-15,1,23,5,1,-21 ; TV[641]=M; kill M; intmat M[7][10]=1,-1,1,3,-5,-1,3,-1,1,-1,9,3,-2,-7,-12,-1,19,-5,5,-9,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,9,-23,5,3,5,1,1,-1,-3,3,9,5,1,-3,-23,-1,5,1,3,27,-3,-7,-11,-15,1,23,5,1,-21 ; TV[642]=M; kill M; intmat M[7][10]=2,-1,-1,-1,-1,2,2,0,0,-2,9,3,-2,-7,-12,-1,19,-5,5,-9,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-1,1,3,-5,-1,3,-1,1,-1,3,-3,-1,1,3,1,5,5,-23,9,3,9,-23,5,3,5,1,1,-1,-3,27,-3,-7,-11,-15,1,23,5,1,-21 ; TV[643]=M; kill M; intmat M[7][10]=9,3,-2,-7,-12,-1,19,-5,5,-9,2,-1,-1,-1,-1,2,2,0,0,-2,9,-9,-7,-5,-3,7,11,23,-5,-21,9,-3,11,-5,-21,-5,23,-7,7,-9,1,-1,1,3,-5,-1,3,-1,1,-1,3,-3,-1,1,3,1,5,5,-23,9,27,-3,-7,-11,-15,1,23,5,1,-21 ; TV[644]=M; kill M; intmat M[7][10]=9,3,-2,-7,-12,-1,19,-5,5,-9,9,-3,11,-5,-21,-5,23,-7,7,-9,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-1,1,3,-5,-1,3,-1,1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,3,9,5,1,-3,-23,-1,5,1,3,27,-3,-7,-11,-15,1,23,5,1,-21 ; TV[645]=M; kill M; intmat M[7][10]=9,3,-2,-7,-12,-1,19,-5,5,-9,2,-1,-1,-1,-1,2,2,0,0,-2,9,-9,-7,-5,-3,7,11,23,-5,-21,3,-3,-1,1,3,1,5,5,-23,9,3,3,5,-23,9,1,5,-1,1,-3,3,9,-23,5,3,5,1,1,-1,-3,27,-3,-7,-11,-15,1,23,5,1,-21 ; TV[646]=M; kill M; intmat M[7][10]=9,3,-2,-7,-12,-1,19,-5,5,-9,9,-3,11,-5,-21,-5,23,-7,7,-9,9,-9,-7,-5,-3,7,11,23,-5,-21,2,-1,-1,-1,-1,2,2,0,0,-2,3,-3,-1,1,3,1,5,5,-23,9,3,3,5,-23,9,1,5,-1,1,-3,27,-3,-7,-11,-15,1,23,5,1,-21 ; TV[647]=M; kill M; intmat M[7][10]=9,3,-2,-7,-12,-1,19,-5,5,-9,3,3,5,-23,9,1,5,-1,1,-3,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,9,5,1,-3,-23,-1,5,1,3,3,9,-23,5,3,5,1,1,-1,-3,27,-3,-7,-11,-15,1,23,5,1,-21 ; TV[648]=M; kill M; intmat M[7][10]=9,3,-2,-7,-12,-1,19,-5,5,-9,9,-3,11,-5,-21,-5,23,-7,7,-9,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,3,5,-23,9,1,5,-1,1,-3,3,9,5,1,-3,-23,-1,5,1,3,27,-3,-7,-11,-15,1,23,5,1,-21 ; TV[649]=M; kill M; intmat M[7][10]=9,3,-2,-7,-12,-1,19,-5,5,-9,2,-1,-1,-1,-1,2,2,0,0,-2,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,3,5,-23,9,1,5,-1,1,-3,3,9,-23,5,3,5,1,1,-1,-3,27,-3,-7,-11,-15,1,23,5,1,-21 ; TV[650]=M; kill M; intmat M[7][10]=9,3,-2,-7,-12,-1,19,-5,5,-9,2,-1,-1,-1,-1,2,2,0,0,-2,9,-9,-7,-5,-3,7,11,23,-5,-21,9,-3,11,-5,-21,-5,23,-7,7,-9,1,-1,1,3,-5,-1,3,-1,1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,27,-3,-7,-11,-15,1,23,5,1,-21 ; TV[651]=M; kill M; intmat M[7][10]=2,-1,-1,-1,-1,2,2,0,0,-2,9,3,-2,-7,-12,-1,19,-5,5,-9,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-1,1,3,-5,-1,3,-1,1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,3,9,-23,5,3,5,1,1,-1,-3,27,-3,-7,-11,-15,1,23,5,1,-21 ; TV[652]=M; kill M; intmat M[7][10]=9,3,-2,-7,-12,-1,19,-5,5,-9,9,-3,11,-5,-21,-5,23,-7,7,-9,9,-9,-7,-5,-3,7,11,23,-5,-21,2,-1,-1,-1,-1,2,2,0,0,-2,1,-1,-1,-1,-1,1,1,3,3,-5,3,3,5,-23,9,1,5,-1,1,-3,27,-3,-7,-11,-15,1,23,5,1,-21 ; TV[653]=M; kill M; intmat M[7][10]=9,-3,11,-5,-21,-5,23,-7,7,-9,9,-12,19,5,-9,-7,-5,-2,-1,3,1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,1,3,-5,-1,3,-1,1,-1,9,-21,23,7,-9,-5,-7,11,-5,-3,2,-1,2,0,-2,-1,0,-1,2,-1,27,-15,23,1,-21,-11,5,-7,1,-3 ; TV[654]=M; kill M; intmat M[7][10]=9,-3,11,-5,-21,-5,23,-7,7,-9,9,-12,19,5,-9,-7,-5,-2,-1,3,9,-21,23,7,-9,-5,-7,11,-5,-3,3,-3,-1,1,3,1,5,5,-23,9,3,3,5,-23,9,1,5,-1,1,-3,3,9,5,1,-3,-23,-1,5,1,3,27,-15,23,1,-21,-11,5,-7,1,-3 ; TV[655]=M; kill M; intmat M[7][10]=9,-12,19,5,-9,-7,-5,-2,-1,3,9,-3,11,-5,-21,-5,23,-7,7,-9,1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,1,3,-5,-1,3,-1,1,-1,2,-1,2,0,-2,-1,0,-1,2,-1,3,3,1,-1,-3,5,1,-23,5,9,27,-15,23,1,-21,-11,5,-7,1,-3 ; TV[656]=M; kill M; intmat M[7][10]=9,-3,11,-5,-21,-5,23,-7,7,-9,9,-12,19,5,-9,-7,-5,-2,-1,3,1,-5,3,1,-1,3,-1,1,-1,-1,9,-21,23,7,-9,-5,-7,11,-5,-3,3,3,5,-23,9,1,5,-1,1,-3,3,-3,-1,1,3,1,5,5,-23,9,27,-15,23,1,-21,-11,5,-7,1,-3 ; TV[657]=M; kill M; intmat M[7][10]=9,-12,19,5,-9,-7,-5,-2,-1,3,9,-3,11,-5,-21,-5,23,-7,7,-9,3,3,5,-23,9,1,5,-1,1,-3,2,-1,2,0,-2,-1,0,-1,2,-1,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3,27,-15,23,1,-21,-11,5,-7,1,-3 ; TV[658]=M; kill M; intmat M[7][10]=9,-12,19,5,-9,-7,-5,-2,-1,3,9,-3,11,-5,-21,-5,23,-7,7,-9,3,3,5,-23,9,1,5,-1,1,-3,3,-3,-1,1,3,1,5,5,-23,9,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3,27,-15,23,1,-21,-11,5,-7,1,-3 ; TV[659]=M; kill M; intmat M[7][10]=9,-12,19,5,-9,-7,-5,-2,-1,3,9,-3,11,-5,-21,-5,23,-7,7,-9,1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,1,3,-5,-1,3,-1,1,-1,3,-3,-1,1,3,1,5,5,-23,9,3,3,1,-1,-3,5,1,-23,5,9,27,-15,23,1,-21,-11,5,-7,1,-3 ; TV[660]=M; kill M; intmat M[7][10]=9,-3,11,-5,-21,-5,23,-7,7,-9,9,-12,19,5,-9,-7,-5,-2,-1,3,9,-21,23,7,-9,-5,-7,11,-5,-3,1,-1,1,3,-5,-1,3,-1,1,-1,2,-1,2,0,-2,-1,0,-1,2,-1,3,9,5,1,-3,-23,-1,5,1,3,27,-15,23,1,-21,-11,5,-7,1,-3 ; TV[661]=M; kill M; intmat M[7][10]=9,-3,11,-5,-21,-5,23,-7,7,-9,9,-12,19,5,-9,-7,-5,-2,-1,3,1,-5,3,1,-1,3,-1,1,-1,-1,2,-1,2,0,-2,-1,0,-1,2,-1,3,3,5,-23,9,1,5,-1,1,-3,3,3,1,-1,-3,5,1,-23,5,9,27,-15,23,1,-21,-11,5,-7,1,-3 ; TV[662]=M; kill M; intmat M[7][10]=9,-3,11,-5,-21,-5,23,-7,7,-9,9,-12,19,5,-9,-7,-5,-2,-1,3,9,-21,23,7,-9,-5,-7,11,-5,-3,2,-1,2,0,-2,-1,0,-1,2,-1,3,3,5,-23,9,1,5,-1,1,-3,3,9,5,1,-3,-23,-1,5,1,3,27,-15,23,1,-21,-11,5,-7,1,-3 ; TV[663]=M; kill M; intmat M[7][10]=9,-3,11,-5,-21,-5,23,-7,7,-9,9,-12,19,5,-9,-7,-5,-2,-1,3,9,-21,23,7,-9,-5,-7,11,-5,-3,1,-1,1,3,-5,-1,3,-1,1,-1,3,-3,-1,1,3,1,5,5,-23,9,3,9,5,1,-3,-23,-1,5,1,3,27,-15,23,1,-21,-11,5,-7,1,-3 ; TV[664]=M; kill M; intmat M[7][10]=9,-3,11,-5,-21,-5,23,-7,7,-9,9,-12,19,5,-9,-7,-5,-2,-1,3,1,-5,3,1,-1,3,-1,1,-1,-1,3,-3,-1,1,3,1,5,5,-23,9,3,3,5,-23,9,1,5,-1,1,-3,3,3,1,-1,-3,5,1,-23,5,9,27,-15,23,1,-21,-11,5,-7,1,-3 ; TV[665]=M; kill M; intmat M[7][10]=9,-12,19,5,-9,-7,-5,-2,-1,3,9,-3,11,-5,-21,-5,23,-7,7,-9,1,-1,1,3,-5,-1,3,-1,1,-1,2,-1,2,0,-2,-1,0,-1,2,-1,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3,27,-15,23,1,-21,-11,5,-7,1,-3 ; TV[666]=M; kill M; intmat M[7][10]=9,-12,19,5,-9,-7,-5,-2,-1,3,9,-3,11,-5,-21,-5,23,-7,7,-9,1,-1,1,3,-5,-1,3,-1,1,-1,3,-3,-1,1,3,1,5,5,-23,9,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3,27,-15,23,1,-21,-11,5,-7,1,-3 ; TV[667]=M; kill M; intmat M[7][10]=9,-3,11,-5,-21,-5,23,-7,7,-9,9,-12,19,5,-9,-7,-5,-2,-1,3,1,-5,3,1,-1,3,-1,1,-1,-1,9,-21,23,7,-9,-5,-7,11,-5,-3,3,3,5,-23,9,1,5,-1,1,-3,2,-1,2,0,-2,-1,0,-1,2,-1,27,-15,23,1,-21,-11,5,-7,1,-3 ; TV[668]=M; kill M; intmat M[7][10]=9,-3,11,-5,-21,-5,23,-7,7,-9,9,-12,19,5,-9,-7,-5,-2,-1,3,1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,1,3,-5,-1,3,-1,1,-1,9,-21,23,7,-9,-5,-7,11,-5,-3,3,-3,-1,1,3,1,5,5,-23,9,27,-15,23,1,-21,-11,5,-7,1,-3 ; TV[669]=M; kill M; intmat M[7][10]=9,-9,7,23,-21,-7,-5,-5,11,-3,9,-12,19,5,-9,-7,-5,-2,-1,3,1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,1,3,-5,-1,3,-1,1,-1,9,-21,23,7,-9,-5,-7,11,-5,-3,2,-1,2,0,-2,-1,0,-1,2,-1,7,-5,5,5,-5,-3,-3,-1,-1,1 ; TV[670]=M; kill M; intmat M[7][10]=9,-12,19,5,-9,-7,-5,-2,-1,3,9,-9,7,23,-21,-7,-5,-5,11,-3,1,-1,1,3,-5,-1,3,-1,1,-1,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3,2,-1,2,0,-2,-1,0,-1,2,-1,7,-5,5,5,-5,-3,-3,-1,-1,1 ; TV[671]=M; kill M; intmat M[7][10]=9,-9,7,23,-21,-7,-5,-5,11,-3,9,-12,19,5,-9,-7,-5,-2,-1,3,1,-5,3,1,-1,3,-1,1,-1,-1,3,3,1,-1,-3,5,1,-23,5,9,3,-3,1,5,9,-1,-23,1,5,3,2,-1,2,0,-2,-1,0,-1,2,-1,7,-5,5,5,-5,-3,-3,-1,-1,1 ; TV[672]=M; kill M; intmat M[7][10]=9,-12,19,5,-9,-7,-5,-2,-1,3,9,-9,7,23,-21,-7,-5,-5,11,-3,3,-3,1,5,9,-1,-23,1,5,3,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3,2,-1,2,0,-2,-1,0,-1,2,-1,7,-5,5,5,-5,-3,-3,-1,-1,1 ; TV[673]=M; kill M; intmat M[7][10]=9,-12,19,5,-9,-7,-5,-2,-1,3,9,-9,7,23,-21,-7,-5,-5,11,-3,1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,1,3,-5,-1,3,-1,1,-1,3,3,1,-1,-3,5,1,-23,5,9,2,-1,2,0,-2,-1,0,-1,2,-1,7,-5,5,5,-5,-3,-3,-1,-1,1 ; TV[674]=M; kill M; intmat M[7][10]=9,-9,7,23,-21,-7,-5,-5,11,-3,9,-12,19,5,-9,-7,-5,-2,-1,3,1,-5,3,1,-1,3,-1,1,-1,-1,9,-21,23,7,-9,-5,-7,11,-5,-3,3,-3,1,5,9,-1,-23,1,5,3,2,-1,2,0,-2,-1,0,-1,2,-1,7,-5,5,5,-5,-3,-3,-1,-1,1 ; TV[675]=M; kill M; intmat M[7][10]=9,-9,7,23,-21,-7,-5,-5,11,-3,9,-12,19,5,-9,-7,-5,-2,-1,3,9,-21,23,7,-9,-5,-7,11,-5,-3,1,-1,1,3,-5,-1,3,-1,1,-1,3,9,5,1,-3,-23,-1,5,1,3,2,-1,2,0,-2,-1,0,-1,2,-1,7,-5,5,5,-5,-3,-3,-1,-1,1 ; TV[676]=M; kill M; intmat M[7][10]=9,-9,7,23,-21,-7,-5,-5,11,-3,9,-12,19,5,-9,-7,-5,-2,-1,3,9,-21,23,7,-9,-5,-7,11,-5,-3,3,-3,1,5,9,-1,-23,1,5,3,3,9,5,1,-3,-23,-1,5,1,3,2,-1,2,0,-2,-1,0,-1,2,-1,7,-5,5,5,-5,-3,-3,-1,-1,1 ; TV[677]=M; kill M; intmat M[7][10]=9,-3,11,-5,-21,-5,23,-7,7,-9,9,-21,23,7,-9,-5,-7,11,-5,-3,1,-1,-1,-1,-1,1,1,3,3,-5,1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,1,3,-5,-1,3,-1,1,-1,2,-1,2,0,-2,-1,0,-1,2,-1,9,-6,4,-1,-6,-1,4,4,-1,-6 ; TV[678]=M; kill M; intmat M[7][10]=9,-21,23,7,-9,-5,-7,11,-5,-3,9,-3,11,-5,-21,-5,23,-7,7,-9,1,-1,-1,-1,-1,1,1,3,3,-5,1,-1,1,3,-5,-1,3,-1,1,-1,3,9,5,1,-3,-23,-1,5,1,3,2,-1,2,0,-2,-1,0,-1,2,-1,9,-6,4,-1,-6,-1,4,4,-1,-6 ; TV[679]=M; kill M; intmat M[7][10]=9,-3,11,-5,-21,-5,23,-7,7,-9,9,-21,23,7,-9,-5,-7,11,-5,-3,1,-1,-1,-1,-1,1,1,3,3,-5,1,-5,3,1,-1,3,-1,1,-1,-1,3,3,5,-23,9,1,5,-1,1,-3,2,-1,2,0,-2,-1,0,-1,2,-1,9,-6,4,-1,-6,-1,4,4,-1,-6 ; TV[680]=M; kill M; intmat M[7][10]=9,-21,23,7,-9,-5,-7,11,-5,-3,9,-3,11,-5,-21,-5,23,-7,7,-9,1,-1,-1,-1,-1,1,1,3,3,-5,3,3,5,-23,9,1,5,-1,1,-3,3,9,5,1,-3,-23,-1,5,1,3,2,-1,2,0,-2,-1,0,-1,2,-1,9,-6,4,-1,-6,-1,4,4,-1,-6 ; TV[681]=M; kill M; intmat M[7][10]=9,-9,5,19,-12,-5,-7,-1,-2,3,9,-21,23,7,-9,-5,-7,11,-5,-3,1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,1,3,-5,-1,3,-1,1,-1,9,-9,7,23,-21,-7,-5,-5,11,-3,2,-2,0,2,-1,0,-1,2,-1,-1,7,-5,5,5,-5,-3,-3,-1,-1,1 ; TV[682]=M; kill M; intmat M[7][10]=9,-21,23,7,-9,-5,-7,11,-5,-3,9,-9,5,19,-12,-5,-7,-1,-2,3,1,-1,1,3,-5,-1,3,-1,1,-1,9,-9,7,23,-21,-7,-5,-5,11,-3,3,9,5,1,-3,-23,-1,5,1,3,2,-2,0,2,-1,0,-1,2,-1,-1,7,-5,5,5,-5,-3,-3,-1,-1,1 ; TV[683]=M; kill M; intmat M[7][10]=9,-9,5,19,-12,-5,-7,-1,-2,3,9,-21,23,7,-9,-5,-7,11,-5,-3,1,-5,3,1,-1,3,-1,1,-1,-1,9,-9,7,23,-21,-7,-5,-5,11,-3,3,-3,1,5,9,-1,-23,1,5,3,2,-2,0,2,-1,0,-1,2,-1,-1,7,-5,5,5,-5,-3,-3,-1,-1,1 ; TV[684]=M; kill M; intmat M[7][10]=9,-21,23,7,-9,-5,-7,11,-5,-3,9,-9,5,19,-12,-5,-7,-1,-2,3,9,-9,7,23,-21,-7,-5,-5,11,-3,3,-3,1,5,9,-1,-23,1,5,3,3,9,5,1,-3,-23,-1,5,1,3,2,-2,0,2,-1,0,-1,2,-1,-1,7,-5,5,5,-5,-3,-3,-1,-1,1 ; TV[685]=M; kill M; intmat M[7][10]=9,-9,5,19,-12,-5,-7,-1,-2,3,9,-21,23,7,-9,-5,-7,11,-5,-3,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,3,9,5,1,-3,-23,-1,5,1,3,2,-2,0,2,-1,0,-1,2,-1,-1,7,-5,5,5,-5,-3,-3,-1,-1,1 ; TV[686]=M; kill M; intmat M[7][10]=9,-9,5,19,-12,-5,-7,-1,-2,3,9,-21,23,7,-9,-5,-7,11,-5,-3,1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,1,3,-5,-1,3,-1,1,-1,3,-3,-1,1,3,1,5,5,-23,9,2,-2,0,2,-1,0,-1,2,-1,-1,7,-5,5,5,-5,-3,-3,-1,-1,1 ; TV[687]=M; kill M; intmat M[7][10]=9,-9,5,19,-12,-5,-7,-1,-2,3,9,-21,23,7,-9,-5,-7,11,-5,-3,1,-5,3,1,-1,3,-1,1,-1,-1,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,2,-2,0,2,-1,0,-1,2,-1,-1,7,-5,5,5,-5,-3,-3,-1,-1,1 ; TV[688]=M; kill M; intmat M[7][10]=9,-21,23,7,-9,-5,-7,11,-5,-3,9,-9,5,19,-12,-5,-7,-1,-2,3,1,-1,1,3,-5,-1,3,-1,1,-1,3,-3,-1,1,3,1,5,5,-23,9,3,9,5,1,-3,-23,-1,5,1,3,2,-2,0,2,-1,0,-1,2,-1,-1,7,-5,5,5,-5,-3,-3,-1,-1,1 ; TV[689]=M; kill M; intmat M[7][10]=9,-9,7,23,-21,-7,-5,-5,11,-3,9,-21,23,7,-9,-5,-7,11,-5,-3,1,-1,-1,-1,-1,1,1,3,3,-5,1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,1,3,-5,-1,3,-1,1,-1,2,-2,0,2,-1,0,-1,2,-1,-1,2,-1,2,0,-2,-1,0,-1,2,-1 ; TV[690]=M; kill M; intmat M[7][10]=9,-9,7,23,-21,-7,-5,-5,11,-3,9,-21,23,7,-9,-5,-7,11,-5,-3,1,-1,-1,-1,-1,1,1,3,3,-5,1,-5,3,1,-1,3,-1,1,-1,-1,3,-3,1,5,9,-1,-23,1,5,3,2,-2,0,2,-1,0,-1,2,-1,-1,2,-1,2,0,-2,-1,0,-1,2,-1 ; TV[691]=M; kill M; intmat M[7][10]=9,-21,23,7,-9,-5,-7,11,-5,-3,9,-9,7,23,-21,-7,-5,-5,11,-3,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,1,5,9,-1,-23,1,5,3,3,9,5,1,-3,-23,-1,5,1,3,2,-2,0,2,-1,0,-1,2,-1,-1,2,-1,2,0,-2,-1,0,-1,2,-1 ; TV[692]=M; kill M; intmat M[7][10]=9,-21,23,7,-9,-5,-7,11,-5,-3,9,-9,7,23,-21,-7,-5,-5,11,-3,1,-1,-1,-1,-1,1,1,3,3,-5,1,-1,1,3,-5,-1,3,-1,1,-1,3,9,5,1,-3,-23,-1,5,1,3,2,-2,0,2,-1,0,-1,2,-1,-1,2,-1,2,0,-2,-1,0,-1,2,-1 ; TV[693]=M; kill M; intmat M[7][10]=9,-21,23,7,-9,-5,-7,11,-5,-3,1,-1,1,3,-5,-1,3,-1,1,-1,9,-9,-7,-5,-3,7,11,23,-5,-21,3,-3,-1,1,3,1,5,5,-23,9,3,9,5,1,-3,-23,-1,5,1,3,2,-2,0,2,-1,0,-1,2,-1,-1,9,-6,4,-1,-6,-1,4,4,-1,-6 ; TV[694]=M; kill M; intmat M[7][10]=1,-1,1,3,-5,-1,3,-1,1,-1,9,-21,23,7,-9,-5,-7,11,-5,-3,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-5,3,1,-1,3,-1,1,-1,-1,3,-3,-1,1,3,1,5,5,-23,9,2,-2,0,2,-1,0,-1,2,-1,-1,9,-6,4,-1,-6,-1,4,4,-1,-6 ; TV[695]=M; kill M; intmat M[7][10]=1,-1,1,3,-5,-1,3,-1,1,-1,9,-21,23,7,-9,-5,-7,11,-5,-3,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,2,-2,0,2,-1,0,-1,2,-1,-1,9,-6,4,-1,-6,-1,4,4,-1,-6 ; TV[696]=M; kill M; intmat M[7][10]=9,-21,23,7,-9,-5,-7,11,-5,-3,1,-1,1,3,-5,-1,3,-1,1,-1,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,9,5,1,-3,-23,-1,5,1,3,2,-2,0,2,-1,0,-1,2,-1,-1,9,-6,4,-1,-6,-1,4,4,-1,-6 ; TV[697]=M; kill M; intmat M[7][10]=9,-21,23,7,-9,-5,-7,11,-5,-3,9,-9,-5,-1,3,5,-2,19,-7,-12,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,3,3,5,-23,9,1,5,-1,1,-3,3,9,5,1,-3,-23,-1,5,1,3,27,-21,5,1,-3,1,-7,23,-11,-15 ; TV[698]=M; kill M; intmat M[7][10]=9,-21,23,7,-9,-5,-7,11,-5,-3,9,-9,-5,-1,3,5,-2,19,-7,-12,1,-5,3,1,-1,3,-1,1,-1,-1,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,3,3,5,-23,9,1,5,-1,1,-3,27,-21,5,1,-3,1,-7,23,-11,-15 ; TV[699]=M; kill M; intmat M[7][10]=9,-21,23,7,-9,-5,-7,11,-5,-3,9,-9,-5,-1,3,5,-2,19,-7,-12,9,-9,-7,-5,-3,7,11,23,-5,-21,3,-3,-1,1,3,1,5,5,-23,9,3,3,5,-23,9,1,5,-1,1,-3,3,9,5,1,-3,-23,-1,5,1,3,27,-21,5,1,-3,1,-7,23,-11,-15 ; TV[700]=M; kill M; intmat M[7][10]=9,-21,23,7,-9,-5,-7,11,-5,-3,9,-9,-5,-1,3,5,-2,19,-7,-12,2,-2,0,2,-1,0,-1,2,-1,-1,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,3,9,5,1,-3,-23,-1,5,1,3,27,-21,5,1,-3,1,-7,23,-11,-15 ; TV[701]=M; kill M; intmat M[7][10]=9,-21,23,7,-9,-5,-7,11,-5,-3,9,-9,-5,-1,3,5,-2,19,-7,-12,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,1,5,9,-1,-23,1,5,3,3,3,5,-23,9,1,5,-1,1,-3,3,9,5,1,-3,-23,-1,5,1,3,27,-21,5,1,-3,1,-7,23,-11,-15 ; TV[702]=M; kill M; intmat M[7][10]=9,-21,23,7,-9,-5,-7,11,-5,-3,9,-9,-5,-1,3,5,-2,19,-7,-12,1,-5,3,1,-1,3,-1,1,-1,-1,2,-2,0,2,-1,0,-1,2,-1,-1,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,27,-21,5,1,-3,1,-7,23,-11,-15 ; TV[703]=M; kill M; intmat M[7][10]=9,-21,23,7,-9,-5,-7,11,-5,-3,9,-9,-5,-1,3,5,-2,19,-7,-12,1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,1,5,9,-1,-23,1,5,3,3,3,5,-23,9,1,5,-1,1,-3,27,-21,5,1,-3,1,-7,23,-11,-15 ; TV[704]=M; kill M; intmat M[7][10]=9,-21,23,7,-9,-5,-7,11,-5,-3,9,-9,-5,-1,3,5,-2,19,-7,-12,1,-5,3,1,-1,3,-1,1,-1,-1,9,-9,-7,-5,-3,7,11,23,-5,-21,3,-3,-1,1,3,1,5,5,-23,9,3,3,5,-23,9,1,5,-1,1,-3,27,-21,5,1,-3,1,-7,23,-11,-15 ; TV[705]=M; kill M; intmat M[7][10]=9,-21,23,7,-9,-5,-7,11,-5,-3,9,-9,-5,-1,3,5,-2,19,-7,-12,1,-5,3,1,-1,3,-1,1,-1,-1,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,3,5,-23,9,1,5,-1,1,-3,27,-21,5,1,-3,1,-7,23,-11,-15 ; TV[706]=M; kill M; intmat M[7][10]=9,-21,23,7,-9,-5,-7,11,-5,-3,9,-9,-5,-1,3,5,-2,19,-7,-12,1,-5,3,1,-1,3,-1,1,-1,-1,2,-2,0,2,-1,0,-1,2,-1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,1,5,9,-1,-23,1,5,3,27,-21,5,1,-3,1,-7,23,-11,-15 ; TV[707]=M; kill M; intmat M[7][10]=9,-21,23,7,-9,-5,-7,11,-5,-3,9,-9,-5,-1,3,5,-2,19,-7,-12,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,3,5,-23,9,1,5,-1,1,-3,3,9,5,1,-3,-23,-1,5,1,3,27,-21,5,1,-3,1,-7,23,-11,-15 ; TV[708]=M; kill M; intmat M[7][10]=9,-21,23,7,-9,-5,-7,11,-5,-3,9,-9,-5,-1,3,5,-2,19,-7,-12,2,-2,0,2,-1,0,-1,2,-1,-1,9,-9,-7,-5,-3,7,11,23,-5,-21,3,-3,-1,1,3,1,5,5,-23,9,3,9,5,1,-3,-23,-1,5,1,3,27,-21,5,1,-3,1,-7,23,-11,-15 ; TV[709]=M; kill M; intmat M[7][10]=9,-21,23,7,-9,-5,-7,11,-5,-3,9,-9,-5,-1,3,5,-2,19,-7,-12,2,-2,0,2,-1,0,-1,2,-1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,1,5,9,-1,-23,1,5,3,3,9,5,1,-3,-23,-1,5,1,3,27,-21,5,1,-3,1,-7,23,-11,-15 ; TV[710]=M; kill M; intmat M[7][10]=9,-21,23,7,-9,-5,-7,11,-5,-3,9,-9,-5,-1,3,5,-2,19,-7,-12,1,-5,3,1,-1,3,-1,1,-1,-1,2,-2,0,2,-1,0,-1,2,-1,-1,9,-9,-7,-5,-3,7,11,23,-5,-21,3,-3,-1,1,3,1,5,5,-23,9,27,-21,5,1,-3,1,-7,23,-11,-15 ; TV[711]=M; kill M; intmat M[7][10]=9,-21,23,7,-9,-5,-7,11,-5,-3,9,-9,-5,-1,3,5,-2,19,-7,-12,1,-5,3,1,-1,3,-1,1,-1,-1,2,-2,0,2,-1,0,-1,2,-1,-1,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-1,-1,-1,-1,1,1,3,3,-5,27,-21,5,1,-3,1,-7,23,-11,-15 ; TV[712]=M; kill M; intmat M[7][10]=9,-21,23,7,-9,-5,-7,11,-5,-3,9,-9,-5,-1,3,5,-2,19,-7,-12,2,-2,0,2,-1,0,-1,2,-1,-1,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,9,5,1,-3,-23,-1,5,1,3,27,-21,5,1,-3,1,-7,23,-11,-15 ; TV[713]=M; kill M; intmat M[7][10]=9,-3,11,-5,-21,-5,23,-7,7,-9,1,-5,3,1,-1,3,-1,1,-1,-1,9,-3,-5,-7,-9,11,7,-5,23,-21,3,3,1,-1,-3,5,1,-23,5,9,3,3,5,-23,9,1,5,-1,1,-3,2,-1,-1,-1,-1,2,2,0,0,-2,2,-1,2,0,-2,-1,0,-1,2,-1 ; TV[714]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,9,-3,11,-5,-21,-5,23,-7,7,-9,9,-3,-5,-7,-9,11,7,-5,23,-21,1,-1,1,3,-5,-1,3,-1,1,-1,3,3,1,-1,-3,5,1,-23,5,9,2,-1,-1,-1,-1,2,2,0,0,-2,2,-1,2,0,-2,-1,0,-1,2,-1 ; TV[715]=M; kill M; intmat M[7][10]=9,-3,11,-5,-21,-5,23,-7,7,-9,1,-5,3,1,-1,3,-1,1,-1,-1,9,-3,-5,-7,-9,11,7,-5,23,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,3,5,-23,9,1,5,-1,1,-3,2,-1,-1,-1,-1,2,2,0,0,-2,2,-1,2,0,-2,-1,0,-1,2,-1 ; TV[716]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,9,-3,11,-5,-21,-5,23,-7,7,-9,9,-3,-5,-7,-9,11,7,-5,23,-21,1,-1,1,3,-5,-1,3,-1,1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,2,-1,-1,-1,-1,2,2,0,0,-2,2,-1,2,0,-2,-1,0,-1,2,-1 ; TV[717]=M; kill M; intmat M[7][10]=9,-3,11,-5,-21,-5,23,-7,7,-9,1,-5,3,1,-1,3,-1,1,-1,-1,9,-9,-7,-5,-3,7,11,23,-5,-21,3,-3,-1,1,3,1,5,5,-23,9,3,3,5,-23,9,1,5,-1,1,-3,2,-1,-1,-1,-1,2,2,0,0,-2,9,-6,4,-1,-6,-1,4,4,-1,-6 ; TV[718]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,9,-3,11,-5,-21,-5,23,-7,7,-9,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-1,1,3,-5,-1,3,-1,1,-1,3,-3,-1,1,3,1,5,5,-23,9,2,-1,-1,-1,-1,2,2,0,0,-2,9,-6,4,-1,-6,-1,4,4,-1,-6 ; TV[719]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,9,-3,11,-5,-21,-5,23,-7,7,-9,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-1,1,3,-5,-1,3,-1,1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,2,-1,-1,-1,-1,2,2,0,0,-2,9,-6,4,-1,-6,-1,4,4,-1,-6 ; TV[720]=M; kill M; intmat M[7][10]=9,-3,11,-5,-21,-5,23,-7,7,-9,1,-5,3,1,-1,3,-1,1,-1,-1,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,3,5,-23,9,1,5,-1,1,-3,2,-1,-1,-1,-1,2,2,0,0,-2,9,-6,4,-1,-6,-1,4,4,-1,-6 ; TV[721]=M; kill M; intmat M[7][10]=9,-9,7,23,-21,-7,-5,-5,11,-3,1,-5,3,1,-1,3,-1,1,-1,-1,9,-3,-5,-7,-9,11,7,-5,23,-21,3,3,1,-1,-3,5,1,-23,5,9,3,-3,1,5,9,-1,-23,1,5,3,2,-1,2,0,-2,-1,0,-1,2,-1,9,-6,-1,4,-6,4,-1,-1,4,-6 ; TV[722]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,9,-9,7,23,-21,-7,-5,-5,11,-3,9,-3,-5,-7,-9,11,7,-5,23,-21,1,-1,1,3,-5,-1,3,-1,1,-1,3,3,1,-1,-3,5,1,-23,5,9,2,-1,2,0,-2,-1,0,-1,2,-1,9,-6,-1,4,-6,4,-1,-1,4,-6 ; TV[723]=M; kill M; intmat M[7][10]=9,-9,7,23,-21,-7,-5,-5,11,-3,1,-5,3,1,-1,3,-1,1,-1,-1,9,-3,-5,-7,-9,11,7,-5,23,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,1,5,9,-1,-23,1,5,3,2,-1,2,0,-2,-1,0,-1,2,-1,9,-6,-1,4,-6,4,-1,-1,4,-6 ; TV[724]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,9,-9,7,23,-21,-7,-5,-5,11,-3,9,-3,-5,-7,-9,11,7,-5,23,-21,1,-1,1,3,-5,-1,3,-1,1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,2,-1,2,0,-2,-1,0,-1,2,-1,9,-6,-1,4,-6,4,-1,-1,4,-6 ; TV[725]=M; kill M; intmat M[7][10]=9,-21,-5,11,-3,23,-5,7,-7,-9,9,-9,5,19,-12,-5,-7,-1,-2,3,1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,1,3,-5,-1,3,-1,1,-1,9,-9,7,23,-21,-7,-5,-5,11,-3,3,3,1,-1,-3,5,1,-23,5,9,27,-21,1,23,-15,5,-11,1,-7,-3 ; TV[726]=M; kill M; intmat M[7][10]=9,-9,5,19,-12,-5,-7,-1,-2,3,9,-21,-5,11,-3,23,-5,7,-7,-9,9,-9,7,23,-21,-7,-5,-5,11,-3,3,3,1,-1,-3,5,1,-23,5,9,3,-3,1,5,9,-1,-23,1,5,3,3,9,-23,5,3,5,1,1,-1,-3,27,-21,1,23,-15,5,-11,1,-7,-3 ; TV[727]=M; kill M; intmat M[7][10]=9,-9,5,19,-12,-5,-7,-1,-2,3,9,-21,-5,11,-3,23,-5,7,-7,-9,1,-1,1,3,-5,-1,3,-1,1,-1,9,-9,7,23,-21,-7,-5,-5,11,-3,3,3,1,-1,-3,5,1,-23,5,9,3,9,-23,5,3,5,1,1,-1,-3,27,-21,1,23,-15,5,-11,1,-7,-3 ; TV[728]=M; kill M; intmat M[7][10]=9,-21,-5,11,-3,23,-5,7,-7,-9,9,-9,5,19,-12,-5,-7,-1,-2,3,1,-5,3,1,-1,3,-1,1,-1,-1,9,-9,7,23,-21,-7,-5,-5,11,-3,3,3,1,-1,-3,5,1,-23,5,9,3,-3,1,5,9,-1,-23,1,5,3,27,-21,1,23,-15,5,-11,1,-7,-3 ; TV[729]=M; kill M; intmat M[7][10]=9,-21,-5,11,-3,23,-5,7,-7,-9,9,-9,5,19,-12,-5,-7,-1,-2,3,1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,1,3,-5,-1,3,-1,1,-1,2,-2,0,2,-1,0,-1,2,-1,-1,9,-9,7,23,-21,-7,-5,-5,11,-3,27,-21,1,23,-15,5,-11,1,-7,-3 ; TV[730]=M; kill M; intmat M[7][10]=9,-9,5,19,-12,-5,-7,-1,-2,3,9,-21,-5,11,-3,23,-5,7,-7,-9,1,-1,1,3,-5,-1,3,-1,1,-1,3,-3,-1,1,3,1,5,5,-23,9,3,3,1,-1,-3,5,1,-23,5,9,3,9,-23,5,3,5,1,1,-1,-3,27,-21,1,23,-15,5,-11,1,-7,-3 ; TV[731]=M; kill M; intmat M[7][10]=9,-9,5,19,-12,-5,-7,-1,-2,3,9,-21,-5,11,-3,23,-5,7,-7,-9,1,-5,3,1,-1,3,-1,1,-1,-1,3,3,1,-1,-3,5,1,-23,5,9,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,27,-21,1,23,-15,5,-11,1,-7,-3 ; TV[732]=M; kill M; intmat M[7][10]=9,-21,-5,11,-3,23,-5,7,-7,-9,9,-9,5,19,-12,-5,-7,-1,-2,3,1,-5,3,1,-1,3,-1,1,-1,-1,9,-9,7,23,-21,-7,-5,-5,11,-3,2,-2,0,2,-1,0,-1,2,-1,-1,3,-3,1,5,9,-1,-23,1,5,3,27,-21,1,23,-15,5,-11,1,-7,-3 ; TV[733]=M; kill M; intmat M[7][10]=9,-9,5,19,-12,-5,-7,-1,-2,3,9,-21,-5,11,-3,23,-5,7,-7,-9,3,3,1,-1,-3,5,1,-23,5,9,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,3,9,-23,5,3,5,1,1,-1,-3,27,-21,1,23,-15,5,-11,1,-7,-3 ; TV[734]=M; kill M; intmat M[7][10]=9,-9,5,19,-12,-5,-7,-1,-2,3,9,-21,-5,11,-3,23,-5,7,-7,-9,1,-1,1,3,-5,-1,3,-1,1,-1,2,-2,0,2,-1,0,-1,2,-1,-1,9,-9,7,23,-21,-7,-5,-5,11,-3,3,9,-23,5,3,5,1,1,-1,-3,27,-21,1,23,-15,5,-11,1,-7,-3 ; TV[735]=M; kill M; intmat M[7][10]=9,-9,5,19,-12,-5,-7,-1,-2,3,9,-21,-5,11,-3,23,-5,7,-7,-9,9,-9,7,23,-21,-7,-5,-5,11,-3,2,-2,0,2,-1,0,-1,2,-1,-1,3,-3,1,5,9,-1,-23,1,5,3,3,9,-23,5,3,5,1,1,-1,-3,27,-21,1,23,-15,5,-11,1,-7,-3 ; TV[736]=M; kill M; intmat M[7][10]=9,-9,5,19,-12,-5,-7,-1,-2,3,9,-21,-5,11,-3,23,-5,7,-7,-9,1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,1,3,-5,-1,3,-1,1,-1,3,-3,-1,1,3,1,5,5,-23,9,3,3,1,-1,-3,5,1,-23,5,9,27,-21,1,23,-15,5,-11,1,-7,-3 ; TV[737]=M; kill M; intmat M[7][10]=9,-9,5,19,-12,-5,-7,-1,-2,3,9,-21,-5,11,-3,23,-5,7,-7,-9,2,-2,0,2,-1,0,-1,2,-1,-1,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,3,9,-23,5,3,5,1,1,-1,-3,27,-21,1,23,-15,5,-11,1,-7,-3 ; TV[738]=M; kill M; intmat M[7][10]=9,-9,5,19,-12,-5,-7,-1,-2,3,9,-21,-5,11,-3,23,-5,7,-7,-9,1,-5,3,1,-1,3,-1,1,-1,-1,2,-2,0,2,-1,0,-1,2,-1,-1,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,27,-21,1,23,-15,5,-11,1,-7,-3 ; TV[739]=M; kill M; intmat M[7][10]=9,-9,5,19,-12,-5,-7,-1,-2,3,9,-21,-5,11,-3,23,-5,7,-7,-9,1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,1,3,-5,-1,3,-1,1,-1,2,-2,0,2,-1,0,-1,2,-1,-1,3,-3,-1,1,3,1,5,5,-23,9,27,-21,1,23,-15,5,-11,1,-7,-3 ; TV[740]=M; kill M; intmat M[7][10]=9,-9,5,19,-12,-5,-7,-1,-2,3,9,-21,-5,11,-3,23,-5,7,-7,-9,1,-1,1,3,-5,-1,3,-1,1,-1,2,-2,0,2,-1,0,-1,2,-1,-1,3,-3,-1,1,3,1,5,5,-23,9,3,9,-23,5,3,5,1,1,-1,-3,27,-21,1,23,-15,5,-11,1,-7,-3 ; TV[741]=M; kill M; intmat M[7][10]=9,-9,7,23,-21,-7,-5,-5,11,-3,9,-21,-5,11,-3,23,-5,7,-7,-9,1,-1,-1,-1,-1,1,1,3,3,-5,1,-1,1,3,-5,-1,3,-1,1,-1,3,9,-23,5,3,5,1,1,-1,-3,2,-2,0,2,-1,0,-1,2,-1,-1,9,-6,-1,4,-6,4,-1,-1,4,-6 ; TV[742]=M; kill M; intmat M[7][10]=9,-9,7,23,-21,-7,-5,-5,11,-3,9,-21,-5,11,-3,23,-5,7,-7,-9,1,-1,-1,-1,-1,1,1,3,3,-5,1,-5,3,1,-1,3,-1,1,-1,-1,3,-3,1,5,9,-1,-23,1,5,3,2,-2,0,2,-1,0,-1,2,-1,-1,9,-6,-1,4,-6,4,-1,-1,4,-6 ; TV[743]=M; kill M; intmat M[7][10]=9,-21,-5,11,-3,23,-5,7,-7,-9,9,-9,7,23,-21,-7,-5,-5,11,-3,1,-1,-1,-1,-1,1,1,3,3,-5,1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,1,3,-5,-1,3,-1,1,-1,2,-2,0,2,-1,0,-1,2,-1,-1,9,-6,-1,4,-6,4,-1,-1,4,-6 ; TV[744]=M; kill M; intmat M[7][10]=9,-9,7,23,-21,-7,-5,-5,11,-3,9,-21,-5,11,-3,23,-5,7,-7,-9,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,1,5,9,-1,-23,1,5,3,3,9,-23,5,3,5,1,1,-1,-3,2,-2,0,2,-1,0,-1,2,-1,-1,9,-6,-1,4,-6,4,-1,-1,4,-6 ; TV[745]=M; kill M; intmat M[7][10]=9,-21,-5,11,-3,23,-5,7,-7,-9,1,-1,1,3,-5,-1,3,-1,1,-1,9,-3,-5,-7,-9,11,7,-5,23,-21,1,-5,3,1,-1,3,-1,1,-1,-1,3,3,1,-1,-3,5,1,-23,5,9,2,-1,-1,-1,-1,2,2,0,0,-2,9,-6,-1,4,-6,4,-1,-1,4,-6 ; TV[746]=M; kill M; intmat M[7][10]=1,-1,1,3,-5,-1,3,-1,1,-1,9,-21,-5,11,-3,23,-5,7,-7,-9,9,-3,-5,-7,-9,11,7,-5,23,-21,3,3,1,-1,-3,5,1,-23,5,9,3,9,-23,5,3,5,1,1,-1,-3,2,-1,-1,-1,-1,2,2,0,0,-2,9,-6,-1,4,-6,4,-1,-1,4,-6 ; TV[747]=M; kill M; intmat M[7][10]=9,-21,-5,11,-3,23,-5,7,-7,-9,1,-1,1,3,-5,-1,3,-1,1,-1,9,-3,-5,-7,-9,11,7,-5,23,-21,1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,2,-1,-1,-1,-1,2,2,0,0,-2,9,-6,-1,4,-6,4,-1,-1,4,-6 ; TV[748]=M; kill M; intmat M[7][10]=1,-1,1,3,-5,-1,3,-1,1,-1,9,-21,-5,11,-3,23,-5,7,-7,-9,9,-3,-5,-7,-9,11,7,-5,23,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,9,-23,5,3,5,1,1,-1,-3,2,-1,-1,-1,-1,2,2,0,0,-2,9,-6,-1,4,-6,4,-1,-1,4,-6 ; TV[749]=M; kill M; intmat M[7][10]=9,-21,-5,11,-3,23,-5,7,-7,-9,1,-1,1,3,-5,-1,3,-1,1,-1,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-5,3,1,-1,3,-1,1,-1,-1,3,-3,-1,1,3,1,5,5,-23,9,2,-1,-1,-1,-1,2,2,0,0,-2,2,-2,0,2,-1,0,-1,2,-1,-1 ; TV[750]=M; kill M; intmat M[7][10]=1,-1,1,3,-5,-1,3,-1,1,-1,9,-21,-5,11,-3,23,-5,7,-7,-9,9,-9,-7,-5,-3,7,11,23,-5,-21,3,-3,-1,1,3,1,5,5,-23,9,3,9,-23,5,3,5,1,1,-1,-3,2,-1,-1,-1,-1,2,2,0,0,-2,2,-2,0,2,-1,0,-1,2,-1,-1 ; TV[751]=M; kill M; intmat M[7][10]=9,-21,-5,11,-3,23,-5,7,-7,-9,1,-1,1,3,-5,-1,3,-1,1,-1,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,2,-1,-1,-1,-1,2,2,0,0,-2,2,-2,0,2,-1,0,-1,2,-1,-1 ; TV[752]=M; kill M; intmat M[7][10]=1,-1,1,3,-5,-1,3,-1,1,-1,9,-21,-5,11,-3,23,-5,7,-7,-9,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,9,-23,5,3,5,1,1,-1,-3,2,-1,-1,-1,-1,2,2,0,0,-2,2,-2,0,2,-1,0,-1,2,-1,-1 ; TV[753]=M; kill M; intmat M[7][10]=3,9,-23,5,3,5,1,1,-1,-3,9,-9,-5,-1,3,5,-2,19,-7,-12,9,-21,-5,11,-3,23,-5,7,-7,-9,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,2,-2,0,2,-1,0,-1,2,-1,-1,7,-5,-3,-1,1,5,-1,5,-3,-5 ; TV[754]=M; kill M; intmat M[7][10]=9,-21,-5,11,-3,23,-5,7,-7,-9,9,-9,-5,-1,3,5,-2,19,-7,-12,1,-5,3,1,-1,3,-1,1,-1,-1,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,2,-2,0,2,-1,0,-1,2,-1,-1,7,-5,-3,-1,1,5,-1,5,-3,-5 ; TV[755]=M; kill M; intmat M[7][10]=3,9,-23,5,3,5,1,1,-1,-3,9,-21,-5,11,-3,23,-5,7,-7,-9,9,-9,-5,-1,3,5,-2,19,-7,-12,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,1,5,9,-1,-23,1,5,3,2,-2,0,2,-1,0,-1,2,-1,-1,7,-5,-3,-1,1,5,-1,5,-3,-5 ; TV[756]=M; kill M; intmat M[7][10]=9,-21,-5,11,-3,23,-5,7,-7,-9,9,-9,-5,-1,3,5,-2,19,-7,-12,1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,1,5,9,-1,-23,1,5,3,2,-2,0,2,-1,0,-1,2,-1,-1,7,-5,-3,-1,1,5,-1,5,-3,-5 ; TV[757]=M; kill M; intmat M[7][10]=9,-21,-5,11,-3,23,-5,7,-7,-9,9,-9,-5,-1,3,5,-2,19,-7,-12,1,-5,3,1,-1,3,-1,1,-1,-1,9,-9,-7,-5,-3,7,11,23,-5,-21,3,-3,-1,1,3,1,5,5,-23,9,2,-2,0,2,-1,0,-1,2,-1,-1,7,-5,-3,-1,1,5,-1,5,-3,-5 ; TV[758]=M; kill M; intmat M[7][10]=3,9,-23,5,3,5,1,1,-1,-3,9,-21,-5,11,-3,23,-5,7,-7,-9,9,-9,-5,-1,3,5,-2,19,-7,-12,9,-9,-7,-5,-3,7,11,23,-5,-21,3,-3,-1,1,3,1,5,5,-23,9,2,-2,0,2,-1,0,-1,2,-1,-1,7,-5,-3,-1,1,5,-1,5,-3,-5 ; TV[759]=M; kill M; intmat M[7][10]=9,-21,-5,11,-3,23,-5,7,-7,-9,9,-9,-5,-1,3,5,-2,19,-7,-12,1,-5,3,1,-1,3,-1,1,-1,-1,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-1,-1,-1,-1,1,1,3,3,-5,2,-2,0,2,-1,0,-1,2,-1,-1,7,-5,-3,-1,1,5,-1,5,-3,-5 ; TV[760]=M; kill M; intmat M[7][10]=3,9,-23,5,3,5,1,1,-1,-3,9,-21,-5,11,-3,23,-5,7,-7,-9,9,-9,-5,-1,3,5,-2,19,-7,-12,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-1,-1,-1,-1,1,1,3,3,-5,2,-2,0,2,-1,0,-1,2,-1,-1,7,-5,-3,-1,1,5,-1,5,-3,-5 ; TV[761]=M; kill M; intmat M[7][10]=9,-12,-7,-2,3,19,-1,5,-5,-9,1,-5,3,1,-1,3,-1,1,-1,-1,9,-3,-5,-7,-9,11,7,-5,23,-21,9,-21,-5,11,-3,23,-5,7,-7,-9,3,3,1,-1,-3,5,1,-23,5,9,3,-3,1,5,9,-1,-23,1,5,3,27,-15,-11,-7,-3,23,1,1,5,-21 ; TV[762]=M; kill M; intmat M[7][10]=9,-12,-7,-2,3,19,-1,5,-5,-9,9,-21,-5,11,-3,23,-5,7,-7,-9,9,-3,-5,-7,-9,11,7,-5,23,-21,3,3,1,-1,-3,5,1,-23,5,9,3,-3,1,5,9,-1,-23,1,5,3,3,9,-23,5,3,5,1,1,-1,-3,27,-15,-11,-7,-3,23,1,1,5,-21 ; TV[763]=M; kill M; intmat M[7][10]=9,-12,-7,-2,3,19,-1,5,-5,-9,1,-5,3,1,-1,3,-1,1,-1,-1,9,-3,-5,-7,-9,11,7,-5,23,-21,3,3,1,-1,-3,5,1,-23,5,9,3,-3,1,5,9,-1,-23,1,5,3,3,3,5,-23,9,1,5,-1,1,-3,27,-15,-11,-7,-3,23,1,1,5,-21 ; TV[764]=M; kill M; intmat M[7][10]=9,-12,-7,-2,3,19,-1,5,-5,-9,3,-3,1,5,9,-1,-23,1,5,3,9,-3,-5,-7,-9,11,7,-5,23,-21,3,3,1,-1,-3,5,1,-23,5,9,3,3,5,-23,9,1,5,-1,1,-3,3,9,-23,5,3,5,1,1,-1,-3,27,-15,-11,-7,-3,23,1,1,5,-21 ; TV[765]=M; kill M; intmat M[7][10]=9,-12,-7,-2,3,19,-1,5,-5,-9,1,-5,3,1,-1,3,-1,1,-1,-1,9,-3,-5,-7,-9,11,7,-5,23,-21,9,-21,-5,11,-3,23,-5,7,-7,-9,2,-1,-1,-1,-1,2,2,0,0,-2,3,3,1,-1,-3,5,1,-23,5,9,27,-15,-11,-7,-3,23,1,1,5,-21 ; TV[766]=M; kill M; intmat M[7][10]=9,-12,-7,-2,3,19,-1,5,-5,-9,2,-1,-1,-1,-1,2,2,0,0,-2,9,-3,-5,-7,-9,11,7,-5,23,-21,3,3,1,-1,-3,5,1,-23,5,9,3,3,5,-23,9,1,5,-1,1,-3,3,9,-23,5,3,5,1,1,-1,-3,27,-15,-11,-7,-3,23,1,1,5,-21 ; TV[767]=M; kill M; intmat M[7][10]=9,-12,-7,-2,3,19,-1,5,-5,-9,1,-5,3,1,-1,3,-1,1,-1,-1,9,-3,-5,-7,-9,11,7,-5,23,-21,9,-21,-5,11,-3,23,-5,7,-7,-9,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,1,5,9,-1,-23,1,5,3,27,-15,-11,-7,-3,23,1,1,5,-21 ; TV[768]=M; kill M; intmat M[7][10]=9,-12,-7,-2,3,19,-1,5,-5,-9,3,-3,1,5,9,-1,-23,1,5,3,9,-3,-5,-7,-9,11,7,-5,23,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,3,5,-23,9,1,5,-1,1,-3,3,9,-23,5,3,5,1,1,-1,-3,27,-15,-11,-7,-3,23,1,1,5,-21 ; TV[769]=M; kill M; intmat M[7][10]=9,-12,-7,-2,3,19,-1,5,-5,-9,9,-21,-5,11,-3,23,-5,7,-7,-9,9,-3,-5,-7,-9,11,7,-5,23,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,1,5,9,-1,-23,1,5,3,3,9,-23,5,3,5,1,1,-1,-3,27,-15,-11,-7,-3,23,1,1,5,-21 ; TV[770]=M; kill M; intmat M[7][10]=9,-12,-7,-2,3,19,-1,5,-5,-9,9,-21,-5,11,-3,23,-5,7,-7,-9,9,-3,-5,-7,-9,11,7,-5,23,-21,2,-1,-1,-1,-1,2,2,0,0,-2,3,3,1,-1,-3,5,1,-23,5,9,3,9,-23,5,3,5,1,1,-1,-3,27,-15,-11,-7,-3,23,1,1,5,-21 ; TV[771]=M; kill M; intmat M[7][10]=9,-12,-7,-2,3,19,-1,5,-5,-9,1,-5,3,1,-1,3,-1,1,-1,-1,9,-3,-5,-7,-9,11,7,-5,23,-21,2,-1,-1,-1,-1,2,2,0,0,-2,3,3,1,-1,-3,5,1,-23,5,9,3,3,5,-23,9,1,5,-1,1,-3,27,-15,-11,-7,-3,23,1,1,5,-21 ; TV[772]=M; kill M; intmat M[7][10]=9,-12,-7,-2,3,19,-1,5,-5,-9,1,-5,3,1,-1,3,-1,1,-1,-1,9,-3,-5,-7,-9,11,7,-5,23,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,1,5,9,-1,-23,1,5,3,3,3,5,-23,9,1,5,-1,1,-3,27,-15,-11,-7,-3,23,1,1,5,-21 ; TV[773]=M; kill M; intmat M[7][10]=9,-12,-7,-2,3,19,-1,5,-5,-9,2,-1,-1,-1,-1,2,2,0,0,-2,9,-3,-5,-7,-9,11,7,-5,23,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,3,5,-23,9,1,5,-1,1,-3,3,9,-23,5,3,5,1,1,-1,-3,27,-15,-11,-7,-3,23,1,1,5,-21 ; TV[774]=M; kill M; intmat M[7][10]=9,-12,-7,-2,3,19,-1,5,-5,-9,1,-5,3,1,-1,3,-1,1,-1,-1,9,-3,-5,-7,-9,11,7,-5,23,-21,2,-1,-1,-1,-1,2,2,0,0,-2,1,-1,-1,-1,-1,1,1,3,3,-5,3,3,5,-23,9,1,5,-1,1,-3,27,-15,-11,-7,-3,23,1,1,5,-21 ; TV[775]=M; kill M; intmat M[7][10]=9,-12,-7,-2,3,19,-1,5,-5,-9,1,-5,3,1,-1,3,-1,1,-1,-1,9,-3,-5,-7,-9,11,7,-5,23,-21,9,-21,-5,11,-3,23,-5,7,-7,-9,2,-1,-1,-1,-1,2,2,0,0,-2,1,-1,-1,-1,-1,1,1,3,3,-5,27,-15,-11,-7,-3,23,1,1,5,-21 ; TV[776]=M; kill M; intmat M[7][10]=9,-12,-7,-2,3,19,-1,5,-5,-9,9,-21,-5,11,-3,23,-5,7,-7,-9,9,-3,-5,-7,-9,11,7,-5,23,-21,2,-1,-1,-1,-1,2,2,0,0,-2,1,-1,-1,-1,-1,1,1,3,3,-5,3,9,-23,5,3,5,1,1,-1,-3,27,-15,-11,-7,-3,23,1,1,5,-21 ; TV[777]=M; kill M; intmat M[7][10]=9,-12,-7,-2,3,19,-1,5,-5,-9,1,-5,3,1,-1,3,-1,1,-1,-1,9,-9,-7,-5,-3,7,11,23,-5,-21,9,-21,-5,11,-3,23,-5,7,-7,-9,3,-3,-1,1,3,1,5,5,-23,9,2,-1,-1,-1,-1,2,2,0,0,-2,7,-5,-3,-1,1,5,-1,5,-3,-5 ; TV[778]=M; kill M; intmat M[7][10]=9,-12,-7,-2,3,19,-1,5,-5,-9,3,3,5,-23,9,1,5,-1,1,-3,9,-9,-7,-5,-3,7,11,23,-5,-21,3,-3,-1,1,3,1,5,5,-23,9,3,9,-23,5,3,5,1,1,-1,-3,2,-1,-1,-1,-1,2,2,0,0,-2,7,-5,-3,-1,1,5,-1,5,-3,-5 ; TV[779]=M; kill M; intmat M[7][10]=9,-12,-7,-2,3,19,-1,5,-5,-9,9,-21,-5,11,-3,23,-5,7,-7,-9,9,-9,-7,-5,-3,7,11,23,-5,-21,3,-3,-1,1,3,1,5,5,-23,9,3,9,-23,5,3,5,1,1,-1,-3,2,-1,-1,-1,-1,2,2,0,0,-2,7,-5,-3,-1,1,5,-1,5,-3,-5 ; TV[780]=M; kill M; intmat M[7][10]=9,-12,-7,-2,3,19,-1,5,-5,-9,1,-5,3,1,-1,3,-1,1,-1,-1,9,-9,-7,-5,-3,7,11,23,-5,-21,3,-3,-1,1,3,1,5,5,-23,9,3,3,5,-23,9,1,5,-1,1,-3,2,-1,-1,-1,-1,2,2,0,0,-2,7,-5,-3,-1,1,5,-1,5,-3,-5 ; TV[781]=M; kill M; intmat M[7][10]=9,-12,-7,-2,3,19,-1,5,-5,-9,3,3,5,-23,9,1,5,-1,1,-3,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,9,-23,5,3,5,1,1,-1,-3,2,-1,-1,-1,-1,2,2,0,0,-2,7,-5,-3,-1,1,5,-1,5,-3,-5 ; TV[782]=M; kill M; intmat M[7][10]=9,-12,-7,-2,3,19,-1,5,-5,-9,1,-5,3,1,-1,3,-1,1,-1,-1,9,-9,-7,-5,-3,7,11,23,-5,-21,9,-21,-5,11,-3,23,-5,7,-7,-9,1,-1,-1,-1,-1,1,1,3,3,-5,2,-1,-1,-1,-1,2,2,0,0,-2,7,-5,-3,-1,1,5,-1,5,-3,-5 ; TV[783]=M; kill M; intmat M[7][10]=9,-12,-7,-2,3,19,-1,5,-5,-9,1,-5,3,1,-1,3,-1,1,-1,-1,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,3,5,-23,9,1,5,-1,1,-3,2,-1,-1,-1,-1,2,2,0,0,-2,7,-5,-3,-1,1,5,-1,5,-3,-5 ; TV[784]=M; kill M; intmat M[7][10]=9,-12,-7,-2,3,19,-1,5,-5,-9,9,-21,-5,11,-3,23,-5,7,-7,-9,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,9,-23,5,3,5,1,1,-1,-3,2,-1,-1,-1,-1,2,2,0,0,-2,7,-5,-3,-1,1,5,-1,5,-3,-5 ; TV[785]=M; kill M; intmat M[7][10]=9,3,-1,-5,-9,-2,5,-7,19,-12,9,3,-2,-7,-12,-1,19,-5,5,-9,9,-3,11,-5,-21,-5,23,-7,7,-9,3,3,5,-23,9,1,5,-1,1,-3,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3,7,1,-1,-3,-5,-1,5,-3,5,-5 ; TV[786]=M; kill M; intmat M[7][10]=9,3,-1,-5,-9,-2,5,-7,19,-12,9,3,-2,-7,-12,-1,19,-5,5,-9,1,-1,1,3,-5,-1,3,-1,1,-1,3,9,-23,5,3,5,1,1,-1,-3,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3,7,1,-1,-3,-5,-1,5,-3,5,-5 ; TV[787]=M; kill M; intmat M[7][10]=9,3,-2,-7,-12,-1,19,-5,5,-9,9,3,-1,-5,-9,-2,5,-7,19,-12,9,-3,-5,-7,-9,11,7,-5,23,-21,9,-3,11,-5,-21,-5,23,-7,7,-9,3,3,1,-1,-3,5,1,-23,5,9,3,3,5,-23,9,1,5,-1,1,-3,7,1,-1,-3,-5,-1,5,-3,5,-5 ; TV[788]=M; kill M; intmat M[7][10]=9,3,-2,-7,-12,-1,19,-5,5,-9,9,3,-1,-5,-9,-2,5,-7,19,-12,3,3,5,-23,9,1,5,-1,1,-3,3,3,1,-1,-3,5,1,-23,5,9,3,9,-23,5,3,5,1,1,-1,-3,3,9,5,1,-3,-23,-1,5,1,3,7,1,-1,-3,-5,-1,5,-3,5,-5 ; TV[789]=M; kill M; intmat M[7][10]=9,3,-2,-7,-12,-1,19,-5,5,-9,9,3,-1,-5,-9,-2,5,-7,19,-12,9,-3,-5,-7,-9,11,7,-5,23,-21,9,-3,11,-5,-21,-5,23,-7,7,-9,1,-1,1,3,-5,-1,3,-1,1,-1,3,3,1,-1,-3,5,1,-23,5,9,7,1,-1,-3,-5,-1,5,-3,5,-5 ; TV[790]=M; kill M; intmat M[7][10]=9,3,-1,-5,-9,-2,5,-7,19,-12,9,3,-2,-7,-12,-1,19,-5,5,-9,9,-3,11,-5,-21,-5,23,-7,7,-9,1,-1,1,3,-5,-1,3,-1,1,-1,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3,7,1,-1,-3,-5,-1,5,-3,5,-5 ; TV[791]=M; kill M; intmat M[7][10]=9,3,-1,-5,-9,-2,5,-7,19,-12,9,3,-2,-7,-12,-1,19,-5,5,-9,9,-3,-5,-7,-9,11,7,-5,23,-21,1,-1,1,3,-5,-1,3,-1,1,-1,3,3,1,-1,-3,5,1,-23,5,9,3,9,-23,5,3,5,1,1,-1,-3,7,1,-1,-3,-5,-1,5,-3,5,-5 ; TV[792]=M; kill M; intmat M[7][10]=9,3,-2,-7,-12,-1,19,-5,5,-9,9,3,-1,-5,-9,-2,5,-7,19,-12,9,-3,-5,-7,-9,11,7,-5,23,-21,3,3,1,-1,-3,5,1,-23,5,9,3,3,5,-23,9,1,5,-1,1,-3,3,9,-23,5,3,5,1,1,-1,-3,7,1,-1,-3,-5,-1,5,-3,5,-5 ; TV[793]=M; kill M; intmat M[7][10]=9,3,-1,-5,-9,-2,5,-7,19,-12,9,3,-2,-7,-12,-1,19,-5,5,-9,9,-3,11,-5,-21,-5,23,-7,7,-9,1,-1,-1,-1,-1,1,1,3,3,-5,3,3,5,-23,9,1,5,-1,1,-3,3,9,5,1,-3,-23,-1,5,1,3,7,1,-1,-3,-5,-1,5,-3,5,-5 ; TV[794]=M; kill M; intmat M[7][10]=9,3,-1,-5,-9,-2,5,-7,19,-12,9,3,-2,-7,-12,-1,19,-5,5,-9,9,-3,-5,-7,-9,11,7,-5,23,-21,1,-1,1,3,-5,-1,3,-1,1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,3,9,-23,5,3,5,1,1,-1,-3,7,1,-1,-3,-5,-1,5,-3,5,-5 ; TV[795]=M; kill M; intmat M[7][10]=9,3,-2,-7,-12,-1,19,-5,5,-9,9,3,-1,-5,-9,-2,5,-7,19,-12,9,-3,-5,-7,-9,11,7,-5,23,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,3,5,-23,9,1,5,-1,1,-3,3,9,-23,5,3,5,1,1,-1,-3,7,1,-1,-3,-5,-1,5,-3,5,-5 ; TV[796]=M; kill M; intmat M[7][10]=9,3,-1,-5,-9,-2,5,-7,19,-12,9,3,-2,-7,-12,-1,19,-5,5,-9,1,-1,-1,-1,-1,1,1,3,3,-5,1,-1,1,3,-5,-1,3,-1,1,-1,3,9,-23,5,3,5,1,1,-1,-3,3,9,5,1,-3,-23,-1,5,1,3,7,1,-1,-3,-5,-1,5,-3,5,-5 ; TV[797]=M; kill M; intmat M[7][10]=9,3,-1,-5,-9,-2,5,-7,19,-12,9,3,-2,-7,-12,-1,19,-5,5,-9,1,-1,-1,-1,-1,1,1,3,3,-5,9,-3,11,-5,-21,-5,23,-7,7,-9,1,-1,1,3,-5,-1,3,-1,1,-1,3,9,5,1,-3,-23,-1,5,1,3,7,1,-1,-3,-5,-1,5,-3,5,-5 ; TV[798]=M; kill M; intmat M[7][10]=9,3,-2,-7,-12,-1,19,-5,5,-9,9,3,-1,-5,-9,-2,5,-7,19,-12,9,-3,11,-5,-21,-5,23,-7,7,-9,9,-3,-5,-7,-9,11,7,-5,23,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,3,5,-23,9,1,5,-1,1,-3,7,1,-1,-3,-5,-1,5,-3,5,-5 ; TV[799]=M; kill M; intmat M[7][10]=9,3,-2,-7,-12,-1,19,-5,5,-9,9,3,-1,-5,-9,-2,5,-7,19,-12,9,-3,-5,-7,-9,11,7,-5,23,-21,9,-3,11,-5,-21,-5,23,-7,7,-9,1,-1,1,3,-5,-1,3,-1,1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,7,1,-1,-3,-5,-1,5,-3,5,-5 ; TV[800]=M; kill M; intmat M[7][10]=9,3,-2,-7,-12,-1,19,-5,5,-9,9,3,-1,-5,-9,-2,5,-7,19,-12,1,-1,-1,-1,-1,1,1,3,3,-5,3,3,5,-23,9,1,5,-1,1,-3,3,9,5,1,-3,-23,-1,5,1,3,3,9,-23,5,3,5,1,1,-1,-3,7,1,-1,-3,-5,-1,5,-3,5,-5 ; TV[801]=M; kill M; intmat M[7][10]=9,-12,19,5,-9,-7,-5,-2,-1,3,9,-9,5,19,-12,-5,-7,-1,-2,3,9,-9,7,23,-21,-7,-5,-5,11,-3,3,-3,1,5,9,-1,-23,1,5,3,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3,7,-5,5,5,-5,-3,-3,-1,-1,1 ; TV[802]=M; kill M; intmat M[7][10]=9,-12,19,5,-9,-7,-5,-2,-1,3,9,-9,5,19,-12,-5,-7,-1,-2,3,1,-5,3,1,-1,3,-1,1,-1,-1,9,-9,7,23,-21,-7,-5,-5,11,-3,3,3,1,-1,-3,5,1,-23,5,9,3,-3,1,5,9,-1,-23,1,5,3,7,-5,5,5,-5,-3,-3,-1,-1,1 ; TV[803]=M; kill M; intmat M[7][10]=9,-12,19,5,-9,-7,-5,-2,-1,3,9,-9,5,19,-12,-5,-7,-1,-2,3,1,-1,1,3,-5,-1,3,-1,1,-1,9,-9,7,23,-21,-7,-5,-5,11,-3,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3,7,-5,5,5,-5,-3,-3,-1,-1,1 ; TV[804]=M; kill M; intmat M[7][10]=9,-12,19,5,-9,-7,-5,-2,-1,3,9,-9,5,19,-12,-5,-7,-1,-2,3,1,-5,3,1,-1,3,-1,1,-1,-1,9,-9,7,23,-21,-7,-5,-5,11,-3,1,-1,1,3,-5,-1,3,-1,1,-1,3,3,1,-1,-3,5,1,-23,5,9,7,-5,5,5,-5,-3,-3,-1,-1,1 ; TV[805]=M; kill M; intmat M[7][10]=9,-9,5,19,-12,-5,-7,-1,-2,3,9,-12,19,5,-9,-7,-5,-2,-1,3,9,-21,23,7,-9,-5,-7,11,-5,-3,9,-9,7,23,-21,-7,-5,-5,11,-3,3,-3,1,5,9,-1,-23,1,5,3,3,9,5,1,-3,-23,-1,5,1,3,7,-5,5,5,-5,-3,-3,-1,-1,1 ; TV[806]=M; kill M; intmat M[7][10]=9,-9,5,19,-12,-5,-7,-1,-2,3,9,-12,19,5,-9,-7,-5,-2,-1,3,1,-5,3,1,-1,3,-1,1,-1,-1,9,-9,7,23,-21,-7,-5,-5,11,-3,9,-21,23,7,-9,-5,-7,11,-5,-3,3,-3,1,5,9,-1,-23,1,5,3,7,-5,5,5,-5,-3,-3,-1,-1,1 ; TV[807]=M; kill M; intmat M[7][10]=9,-9,5,19,-12,-5,-7,-1,-2,3,9,-12,19,5,-9,-7,-5,-2,-1,3,9,-21,23,7,-9,-5,-7,11,-5,-3,1,-1,1,3,-5,-1,3,-1,1,-1,9,-9,7,23,-21,-7,-5,-5,11,-3,3,9,5,1,-3,-23,-1,5,1,3,7,-5,5,5,-5,-3,-3,-1,-1,1 ; TV[808]=M; kill M; intmat M[7][10]=9,-9,5,19,-12,-5,-7,-1,-2,3,9,-12,19,5,-9,-7,-5,-2,-1,3,1,-5,3,1,-1,3,-1,1,-1,-1,9,-21,23,7,-9,-5,-7,11,-5,-3,1,-1,1,3,-5,-1,3,-1,1,-1,9,-9,7,23,-21,-7,-5,-5,11,-3,7,-5,5,5,-5,-3,-3,-1,-1,1 ; TV[809]=M; kill M; intmat M[7][10]=9,-9,5,19,-12,-5,-7,-1,-2,3,9,-12,19,5,-9,-7,-5,-2,-1,3,1,-5,3,1,-1,3,-1,1,-1,-1,3,3,1,-1,-3,5,1,-23,5,9,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,7,-5,5,5,-5,-3,-3,-1,-1,1 ; TV[810]=M; kill M; intmat M[7][10]=9,-12,19,5,-9,-7,-5,-2,-1,3,9,-9,5,19,-12,-5,-7,-1,-2,3,1,-1,1,3,-5,-1,3,-1,1,-1,3,-3,-1,1,3,1,5,5,-23,9,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3,7,-5,5,5,-5,-3,-3,-1,-1,1 ; TV[811]=M; kill M; intmat M[7][10]=9,-9,5,19,-12,-5,-7,-1,-2,3,9,-12,19,5,-9,-7,-5,-2,-1,3,1,-5,3,1,-1,3,-1,1,-1,-1,9,-21,23,7,-9,-5,-7,11,-5,-3,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,7,-5,5,5,-5,-3,-3,-1,-1,1 ; TV[812]=M; kill M; intmat M[7][10]=9,-9,5,19,-12,-5,-7,-1,-2,3,9,-12,19,5,-9,-7,-5,-2,-1,3,9,-21,23,7,-9,-5,-7,11,-5,-3,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,3,9,5,1,-3,-23,-1,5,1,3,7,-5,5,5,-5,-3,-3,-1,-1,1 ; TV[813]=M; kill M; intmat M[7][10]=9,-9,5,19,-12,-5,-7,-1,-2,3,9,-12,19,5,-9,-7,-5,-2,-1,3,9,-21,23,7,-9,-5,-7,11,-5,-3,1,-1,1,3,-5,-1,3,-1,1,-1,3,-3,-1,1,3,1,5,5,-23,9,3,9,5,1,-3,-23,-1,5,1,3,7,-5,5,5,-5,-3,-3,-1,-1,1 ; TV[814]=M; kill M; intmat M[7][10]=9,-9,5,19,-12,-5,-7,-1,-2,3,9,-12,19,5,-9,-7,-5,-2,-1,3,1,-5,3,1,-1,3,-1,1,-1,-1,3,-3,-1,1,3,1,5,5,-23,9,1,-1,1,3,-5,-1,3,-1,1,-1,3,3,1,-1,-3,5,1,-23,5,9,7,-5,5,5,-5,-3,-3,-1,-1,1 ; TV[815]=M; kill M; intmat M[7][10]=9,-9,5,19,-12,-5,-7,-1,-2,3,9,-12,19,5,-9,-7,-5,-2,-1,3,1,-5,3,1,-1,3,-1,1,-1,-1,9,-21,23,7,-9,-5,-7,11,-5,-3,1,-1,1,3,-5,-1,3,-1,1,-1,3,-3,-1,1,3,1,5,5,-23,9,7,-5,5,5,-5,-3,-3,-1,-1,1 ; TV[816]=M; kill M; intmat M[7][10]=9,-12,19,5,-9,-7,-5,-2,-1,3,9,-9,5,19,-12,-5,-7,-1,-2,3,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3,7,-5,5,5,-5,-3,-3,-1,-1,1 ; TV[817]=M; kill M; intmat M[7][10]=9,-3,11,-5,-21,-5,23,-7,7,-9,9,-21,23,7,-9,-5,-7,11,-5,-3,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,1,3,-5,-1,3,-1,1,-1,3,-3,-1,1,3,1,5,5,-23,9,9,-6,4,-1,-6,-1,4,4,-1,-6 ; TV[818]=M; kill M; intmat M[7][10]=9,-3,11,-5,-21,-5,23,-7,7,-9,9,-21,23,7,-9,-5,-7,11,-5,-3,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-5,3,1,-1,3,-1,1,-1,-1,3,-3,-1,1,3,1,5,5,-23,9,3,3,5,-23,9,1,5,-1,1,-3,9,-6,4,-1,-6,-1,4,4,-1,-6 ; TV[819]=M; kill M; intmat M[7][10]=9,-21,23,7,-9,-5,-7,11,-5,-3,9,-3,11,-5,-21,-5,23,-7,7,-9,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-1,1,3,-5,-1,3,-1,1,-1,3,-3,-1,1,3,1,5,5,-23,9,3,9,5,1,-3,-23,-1,5,1,3,9,-6,4,-1,-6,-1,4,4,-1,-6 ; TV[820]=M; kill M; intmat M[7][10]=9,-21,23,7,-9,-5,-7,11,-5,-3,9,-3,11,-5,-21,-5,23,-7,7,-9,9,-9,-7,-5,-3,7,11,23,-5,-21,3,-3,-1,1,3,1,5,5,-23,9,3,3,5,-23,9,1,5,-1,1,-3,3,9,5,1,-3,-23,-1,5,1,3,9,-6,4,-1,-6,-1,4,4,-1,-6 ; TV[821]=M; kill M; intmat M[7][10]=9,-3,11,-5,-21,-5,23,-7,7,-9,9,-21,23,7,-9,-5,-7,11,-5,-3,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,3,3,5,-23,9,1,5,-1,1,-3,9,-6,4,-1,-6,-1,4,4,-1,-6 ; TV[822]=M; kill M; intmat M[7][10]=9,-21,23,7,-9,-5,-7,11,-5,-3,9,-3,11,-5,-21,-5,23,-7,7,-9,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-1,1,3,-5,-1,3,-1,1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,3,9,5,1,-3,-23,-1,5,1,3,9,-6,4,-1,-6,-1,4,4,-1,-6 ; TV[823]=M; kill M; intmat M[7][10]=9,-21,23,7,-9,-5,-7,11,-5,-3,9,-3,11,-5,-21,-5,23,-7,7,-9,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,3,5,-23,9,1,5,-1,1,-3,3,9,5,1,-3,-23,-1,5,1,3,9,-6,4,-1,-6,-1,4,4,-1,-6 ; TV[824]=M; kill M; intmat M[7][10]=9,-3,11,-5,-21,-5,23,-7,7,-9,9,-21,23,7,-9,-5,-7,11,-5,-3,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,1,3,-5,-1,3,-1,1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,9,-6,4,-1,-6,-1,4,4,-1,-6 ; TV[825]=M; kill M; intmat M[7][10]=9,-21,-5,11,-3,23,-5,7,-7,-9,9,-9,7,23,-21,-7,-5,-5,11,-3,9,-3,-5,-7,-9,11,7,-5,23,-21,1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,1,3,-5,-1,3,-1,1,-1,3,3,1,-1,-3,5,1,-23,5,9,9,-6,-1,4,-6,4,-1,-1,4,-6 ; TV[826]=M; kill M; intmat M[7][10]=9,-9,7,23,-21,-7,-5,-5,11,-3,9,-21,-5,11,-3,23,-5,7,-7,-9,9,-3,-5,-7,-9,11,7,-5,23,-21,1,-1,1,3,-5,-1,3,-1,1,-1,3,3,1,-1,-3,5,1,-23,5,9,3,9,-23,5,3,5,1,1,-1,-3,9,-6,-1,4,-6,4,-1,-1,4,-6 ; TV[827]=M; kill M; intmat M[7][10]=9,-9,7,23,-21,-7,-5,-5,11,-3,9,-21,-5,11,-3,23,-5,7,-7,-9,9,-3,-5,-7,-9,11,7,-5,23,-21,3,3,1,-1,-3,5,1,-23,5,9,3,-3,1,5,9,-1,-23,1,5,3,3,9,-23,5,3,5,1,1,-1,-3,9,-6,-1,4,-6,4,-1,-1,4,-6 ; TV[828]=M; kill M; intmat M[7][10]=9,-9,7,23,-21,-7,-5,-5,11,-3,9,-21,-5,11,-3,23,-5,7,-7,-9,9,-3,-5,-7,-9,11,7,-5,23,-21,1,-5,3,1,-1,3,-1,1,-1,-1,3,3,1,-1,-3,5,1,-23,5,9,3,-3,1,5,9,-1,-23,1,5,3,9,-6,-1,4,-6,4,-1,-1,4,-6 ; TV[829]=M; kill M; intmat M[7][10]=9,-9,7,23,-21,-7,-5,-5,11,-3,9,-21,-5,11,-3,23,-5,7,-7,-9,9,-3,-5,-7,-9,11,7,-5,23,-21,1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,1,5,9,-1,-23,1,5,3,9,-6,-1,4,-6,4,-1,-1,4,-6 ; TV[830]=M; kill M; intmat M[7][10]=9,-21,-5,11,-3,23,-5,7,-7,-9,9,-9,7,23,-21,-7,-5,-5,11,-3,9,-3,-5,-7,-9,11,7,-5,23,-21,1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,1,3,-5,-1,3,-1,1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,9,-6,-1,4,-6,4,-1,-1,4,-6 ; TV[831]=M; kill M; intmat M[7][10]=9,-9,7,23,-21,-7,-5,-5,11,-3,9,-21,-5,11,-3,23,-5,7,-7,-9,9,-3,-5,-7,-9,11,7,-5,23,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,1,5,9,-1,-23,1,5,3,3,9,-23,5,3,5,1,1,-1,-3,9,-6,-1,4,-6,4,-1,-1,4,-6 ; TV[832]=M; kill M; intmat M[7][10]=9,-9,7,23,-21,-7,-5,-5,11,-3,9,-21,-5,11,-3,23,-5,7,-7,-9,9,-3,-5,-7,-9,11,7,-5,23,-21,1,-1,1,3,-5,-1,3,-1,1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,3,9,-23,5,3,5,1,1,-1,-3,9,-6,-1,4,-6,4,-1,-1,4,-6 ; TV[833]=M; kill M; intmat M[7][10]=9,-12,-7,-2,3,19,-1,5,-5,-9,9,-9,-5,-1,3,5,-2,19,-7,-12,1,-5,3,1,-1,3,-1,1,-1,-1,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,3,3,5,-23,9,1,5,-1,1,-3,7,-5,-3,-1,1,5,-1,5,-3,-5 ; TV[834]=M; kill M; intmat M[7][10]=9,-12,-7,-2,3,19,-1,5,-5,-9,9,-9,-5,-1,3,5,-2,19,-7,-12,1,-5,3,1,-1,3,-1,1,-1,-1,9,-21,-5,11,-3,23,-5,7,-7,-9,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,7,-5,-3,-1,1,5,-1,5,-3,-5 ; TV[835]=M; kill M; intmat M[7][10]=9,-12,-7,-2,3,19,-1,5,-5,-9,9,-9,-5,-1,3,5,-2,19,-7,-12,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,3,3,5,-23,9,1,5,-1,1,-3,3,9,-23,5,3,5,1,1,-1,-3,7,-5,-3,-1,1,5,-1,5,-3,-5 ; TV[836]=M; kill M; intmat M[7][10]=9,-12,-7,-2,3,19,-1,5,-5,-9,9,-9,-5,-1,3,5,-2,19,-7,-12,9,-21,-5,11,-3,23,-5,7,-7,-9,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,3,9,-23,5,3,5,1,1,-1,-3,7,-5,-3,-1,1,5,-1,5,-3,-5 ; TV[837]=M; kill M; intmat M[7][10]=9,-12,-7,-2,3,19,-1,5,-5,-9,9,-9,-5,-1,3,5,-2,19,-7,-12,9,-21,-5,11,-3,23,-5,7,-7,-9,9,-9,-7,-5,-3,7,11,23,-5,-21,3,-3,-1,1,3,1,5,5,-23,9,3,9,-23,5,3,5,1,1,-1,-3,7,-5,-3,-1,1,5,-1,5,-3,-5 ; TV[838]=M; kill M; intmat M[7][10]=9,-12,-7,-2,3,19,-1,5,-5,-9,9,-9,-5,-1,3,5,-2,19,-7,-12,9,-21,-5,11,-3,23,-5,7,-7,-9,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,1,5,9,-1,-23,1,5,3,3,9,-23,5,3,5,1,1,-1,-3,7,-5,-3,-1,1,5,-1,5,-3,-5 ; TV[839]=M; kill M; intmat M[7][10]=9,-12,-7,-2,3,19,-1,5,-5,-9,9,-9,-5,-1,3,5,-2,19,-7,-12,1,-5,3,1,-1,3,-1,1,-1,-1,9,-21,-5,11,-3,23,-5,7,-7,-9,9,-9,-7,-5,-3,7,11,23,-5,-21,3,-3,-1,1,3,1,5,5,-23,9,7,-5,-3,-1,1,5,-1,5,-3,-5 ; TV[840]=M; kill M; intmat M[7][10]=9,-12,-7,-2,3,19,-1,5,-5,-9,9,-9,-5,-1,3,5,-2,19,-7,-12,1,-5,3,1,-1,3,-1,1,-1,-1,9,-21,-5,11,-3,23,-5,7,-7,-9,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,1,5,9,-1,-23,1,5,3,7,-5,-3,-1,1,5,-1,5,-3,-5 ; TV[841]=M; kill M; intmat M[7][10]=9,-12,-7,-2,3,19,-1,5,-5,-9,9,-9,-5,-1,3,5,-2,19,-7,-12,1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,1,5,9,-1,-23,1,5,3,3,3,5,-23,9,1,5,-1,1,-3,7,-5,-3,-1,1,5,-1,5,-3,-5 ; TV[842]=M; kill M; intmat M[7][10]=9,-12,-7,-2,3,19,-1,5,-5,-9,9,-9,-5,-1,3,5,-2,19,-7,-12,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,1,5,9,-1,-23,1,5,3,3,3,5,-23,9,1,5,-1,1,-3,3,9,-23,5,3,5,1,1,-1,-3,7,-5,-3,-1,1,5,-1,5,-3,-5 ; TV[843]=M; kill M; intmat M[7][10]=9,-12,-7,-2,3,19,-1,5,-5,-9,9,-9,-5,-1,3,5,-2,19,-7,-12,9,-9,-7,-5,-3,7,11,23,-5,-21,3,-3,-1,1,3,1,5,5,-23,9,3,3,5,-23,9,1,5,-1,1,-3,3,9,-23,5,3,5,1,1,-1,-3,7,-5,-3,-1,1,5,-1,5,-3,-5 ; TV[844]=M; kill M; intmat M[7][10]=9,-12,-7,-2,3,19,-1,5,-5,-9,9,-9,-5,-1,3,5,-2,19,-7,-12,1,-5,3,1,-1,3,-1,1,-1,-1,9,-9,-7,-5,-3,7,11,23,-5,-21,3,-3,-1,1,3,1,5,5,-23,9,3,3,5,-23,9,1,5,-1,1,-3,7,-5,-3,-1,1,5,-1,5,-3,-5 ; TV[845]=M; kill M; intmat M[7][10]=9,-12,-7,-2,3,19,-1,5,-5,-9,9,-9,-5,-1,3,5,-2,19,-7,-12,9,-21,-5,11,-3,23,-5,7,-7,-9,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,9,-23,5,3,5,1,1,-1,-3,7,-5,-3,-1,1,5,-1,5,-3,-5 ; TV[846]=M; kill M; intmat M[7][10]=9,-12,-7,-2,3,19,-1,5,-5,-9,9,-9,-5,-1,3,5,-2,19,-7,-12,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,3,5,-23,9,1,5,-1,1,-3,3,9,-23,5,3,5,1,1,-1,-3,7,-5,-3,-1,1,5,-1,5,-3,-5 ; TV[847]=M; kill M; intmat M[7][10]=9,-12,-7,-2,3,19,-1,5,-5,-9,9,-9,-5,-1,3,5,-2,19,-7,-12,1,-5,3,1,-1,3,-1,1,-1,-1,9,-21,-5,11,-3,23,-5,7,-7,-9,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-1,-1,-1,-1,1,1,3,3,-5,7,-5,-3,-1,1,5,-1,5,-3,-5 ; TV[848]=M; kill M; intmat M[7][10]=9,-12,-7,-2,3,19,-1,5,-5,-9,9,-9,-5,-1,3,5,-2,19,-7,-12,1,-5,3,1,-1,3,-1,1,-1,-1,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,3,5,-23,9,1,5,-1,1,-3,7,-5,-3,-1,1,5,-1,5,-3,-5 ; TV[849]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,3,-3,-1,1,3,1,5,5,-23,9,3,3,5,-23,9,1,5,-1,1,-3,3,-3,1,5,9,-1,-23,1,5,3,3,9,-23,5,3,5,1,1,-1,-3,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3 ; TV[850]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,3,-1,-5,-9,-2,5,-7,19,-12,3,3,1,-1,-3,5,1,-23,5,9,3,-3,1,5,9,-1,-23,1,5,3,3,9,5,1,-3,-23,-1,5,1,3,3,3,5,-23,9,1,5,-1,1,-3,3,9,-23,5,3,5,1,1,-1,-3 ; TV[851]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-3,-5,-7,-9,11,7,-5,23,-21,3,3,1,-1,-3,5,1,-23,5,9,3,-3,1,5,9,-1,-23,1,5,3,3,3,5,-23,9,1,5,-1,1,-3,3,9,-23,5,3,5,1,1,-1,-3,9,3,-1,-5,-9,-2,5,-7,19,-12 ; TV[852]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,1,5,9,-1,-23,1,5,3,3,9,5,1,-3,-23,-1,5,1,3,3,3,5,-23,9,1,5,-1,1,-3,9,3,-1,-5,-9,-2,5,-7,19,-12,3,9,-23,5,3,5,1,1,-1,-3 ; TV[853]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-3,-5,-7,-9,11,7,-5,23,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,1,5,9,-1,-23,1,5,3,3,3,5,-23,9,1,5,-1,1,-3,3,9,-23,5,3,5,1,1,-1,-3,9,3,-1,-5,-9,-2,5,-7,19,-12 ; TV[854]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-1,1,3,-5,-1,3,-1,1,-1,3,9,-23,5,3,5,1,1,-1,-3,3,-3,-1,1,3,1,5,5,-23,9,9,3,-2,-7,-12,-1,19,-5,5,-9,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3 ; TV[855]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-3,11,-5,-21,-5,23,-7,7,-9,3,3,5,-23,9,1,5,-1,1,-3,3,-3,-1,1,3,1,5,5,-23,9,3,3,1,-1,-3,5,1,-23,5,9,9,3,-2,-7,-12,-1,19,-5,5,-9,3,9,5,1,-3,-23,-1,5,1,3 ; TV[856]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-3,11,-5,-21,-5,23,-7,7,-9,1,-1,1,3,-5,-1,3,-1,1,-1,3,-3,-1,1,3,1,5,5,-23,9,3,3,1,-1,-3,5,1,-23,5,9,9,3,-2,-7,-12,-1,19,-5,5,-9,3,9,5,1,-3,-23,-1,5,1,3 ; TV[857]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,3,-2,-7,-12,-1,19,-5,5,-9,3,3,5,-23,9,1,5,-1,1,-3,3,-3,-1,1,3,1,5,5,-23,9,3,9,-23,5,3,5,1,1,-1,-3,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3 ; TV[858]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-1,1,3,-5,-1,3,-1,1,-1,3,9,-23,5,3,5,1,1,-1,-3,9,3,-1,-5,-9,-2,5,-7,19,-12,9,3,-2,-7,-12,-1,19,-5,5,-9,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3 ; TV[859]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,3,-2,-7,-12,-1,19,-5,5,-9,3,3,5,-23,9,1,5,-1,1,-3,9,3,-1,-5,-9,-2,5,-7,19,-12,3,9,-23,5,3,5,1,1,-1,-3,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3 ; TV[860]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-3,11,-5,-21,-5,23,-7,7,-9,1,-1,1,3,-5,-1,3,-1,1,-1,9,3,-1,-5,-9,-2,5,-7,19,-12,3,3,1,-1,-3,5,1,-23,5,9,9,3,-2,-7,-12,-1,19,-5,5,-9,3,9,5,1,-3,-23,-1,5,1,3 ; TV[861]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-1,1,3,-5,-1,3,-1,1,-1,9,-3,-5,-7,-9,11,7,-5,23,-21,3,3,1,-1,-3,5,1,-23,5,9,3,9,-23,5,3,5,1,1,-1,-3,9,3,-2,-7,-12,-1,19,-5,5,-9,9,3,-1,-5,-9,-2,5,-7,19,-12 ; TV[862]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-3,11,-5,-21,-5,23,-7,7,-9,9,-3,-5,-7,-9,11,7,-5,23,-21,1,-1,1,3,-5,-1,3,-1,1,-1,3,3,1,-1,-3,5,1,-23,5,9,9,3,-2,-7,-12,-1,19,-5,5,-9,9,3,-1,-5,-9,-2,5,-7,19,-12 ; TV[863]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,3,-2,-7,-12,-1,19,-5,5,-9,9,-3,-5,-7,-9,11,7,-5,23,-21,3,3,1,-1,-3,5,1,-23,5,9,3,3,5,-23,9,1,5,-1,1,-3,3,9,-23,5,3,5,1,1,-1,-3,9,3,-1,-5,-9,-2,5,-7,19,-12 ; TV[864]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-3,11,-5,-21,-5,23,-7,7,-9,3,3,5,-23,9,1,5,-1,1,-3,9,3,-1,-5,-9,-2,5,-7,19,-12,3,3,1,-1,-3,5,1,-23,5,9,9,3,-2,-7,-12,-1,19,-5,5,-9,3,9,5,1,-3,-23,-1,5,1,3 ; TV[865]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-3,11,-5,-21,-5,23,-7,7,-9,9,-3,-5,-7,-9,11,7,-5,23,-21,3,3,1,-1,-3,5,1,-23,5,9,3,3,5,-23,9,1,5,-1,1,-3,9,3,-2,-7,-12,-1,19,-5,5,-9,9,3,-1,-5,-9,-2,5,-7,19,-12 ; TV[866]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,3,-2,-7,-12,-1,19,-5,5,-9,9,-3,-5,-7,-9,11,7,-5,23,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,3,5,-23,9,1,5,-1,1,-3,3,9,-23,5,3,5,1,1,-1,-3,9,3,-1,-5,-9,-2,5,-7,19,-12 ; TV[867]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-1,1,3,-5,-1,3,-1,1,-1,9,-3,-5,-7,-9,11,7,-5,23,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,9,-23,5,3,5,1,1,-1,-3,9,3,-2,-7,-12,-1,19,-5,5,-9,9,3,-1,-5,-9,-2,5,-7,19,-12 ; TV[868]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-3,11,-5,-21,-5,23,-7,7,-9,1,-1,-1,-1,-1,1,1,3,3,-5,1,-1,1,3,-5,-1,3,-1,1,-1,3,9,5,1,-3,-23,-1,5,1,3,9,3,-1,-5,-9,-2,5,-7,19,-12,9,3,-2,-7,-12,-1,19,-5,5,-9 ; TV[869]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,3,-2,-7,-12,-1,19,-5,5,-9,1,-1,-1,-1,-1,1,1,3,3,-5,3,3,5,-23,9,1,5,-1,1,-3,3,9,5,1,-3,-23,-1,5,1,3,9,3,-1,-5,-9,-2,5,-7,19,-12,3,9,-23,5,3,5,1,1,-1,-3 ; TV[870]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-1,1,3,-5,-1,3,-1,1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,3,9,-23,5,3,5,1,1,-1,-3,9,3,-2,-7,-12,-1,19,-5,5,-9,3,9,5,1,-3,-23,-1,5,1,3,9,3,-1,-5,-9,-2,5,-7,19,-12 ; TV[871]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-3,11,-5,-21,-5,23,-7,7,-9,9,-3,-5,-7,-9,11,7,-5,23,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,3,5,-23,9,1,5,-1,1,-3,9,3,-2,-7,-12,-1,19,-5,5,-9,9,3,-1,-5,-9,-2,5,-7,19,-12 ; TV[872]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-3,11,-5,-21,-5,23,-7,7,-9,1,-1,-1,-1,-1,1,1,3,3,-5,3,3,5,-23,9,1,5,-1,1,-3,3,9,5,1,-3,-23,-1,5,1,3,9,3,-1,-5,-9,-2,5,-7,19,-12,9,3,-2,-7,-12,-1,19,-5,5,-9 ; TV[873]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-3,11,-5,-21,-5,23,-7,7,-9,9,-3,-5,-7,-9,11,7,-5,23,-21,1,-1,1,3,-5,-1,3,-1,1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,9,3,-2,-7,-12,-1,19,-5,5,-9,9,3,-1,-5,-9,-2,5,-7,19,-12 ; TV[874]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-3,-5,-7,-9,11,7,-5,23,-21,9,-9,7,23,-21,-7,-5,-5,11,-3,3,3,1,-1,-3,5,1,-23,5,9,3,-3,1,5,9,-1,-23,1,5,3,3,9,-23,5,3,5,1,1,-1,-3,9,3,-1,-5,-9,-2,5,-7,19,-12 ; TV[875]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-3,-5,-7,-9,11,7,-5,23,-21,9,-9,7,23,-21,-7,-5,-5,11,-3,1,-1,1,3,-5,-1,3,-1,1,-1,3,3,1,-1,-3,5,1,-23,5,9,3,9,-23,5,3,5,1,1,-1,-3,9,3,-1,-5,-9,-2,5,-7,19,-12 ; TV[876]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-9,7,23,-21,-7,-5,-5,11,-3,3,-3,1,5,9,-1,-23,1,5,3,9,3,-1,-5,-9,-2,5,-7,19,-12,3,9,-23,5,3,5,1,1,-1,-3,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3 ; TV[877]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-9,7,23,-21,-7,-5,-5,11,-3,9,-3,-5,-7,-9,11,7,-5,23,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,1,5,9,-1,-23,1,5,3,3,9,-23,5,3,5,1,1,-1,-3,9,3,-1,-5,-9,-2,5,-7,19,-12 ; TV[878]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-9,7,23,-21,-7,-5,-5,11,-3,1,-1,1,3,-5,-1,3,-1,1,-1,9,3,-1,-5,-9,-2,5,-7,19,-12,3,9,-23,5,3,5,1,1,-1,-3,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3 ; TV[879]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-3,-5,-7,-9,11,7,-5,23,-21,9,-9,7,23,-21,-7,-5,-5,11,-3,1,-1,1,3,-5,-1,3,-1,1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,3,9,-23,5,3,5,1,1,-1,-3,9,3,-1,-5,-9,-2,5,-7,19,-12 ; TV[880]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-9,7,23,-21,-7,-5,-5,11,-3,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,1,5,9,-1,-23,1,5,3,3,9,5,1,-3,-23,-1,5,1,3,3,9,-23,5,3,5,1,1,-1,-3,9,3,-1,-5,-9,-2,5,-7,19,-12 ; TV[881]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-1,-1,-1,-1,1,1,3,3,-5,9,-9,7,23,-21,-7,-5,-5,11,-3,1,-1,1,3,-5,-1,3,-1,1,-1,3,9,5,1,-3,-23,-1,5,1,3,3,9,-23,5,3,5,1,1,-1,-3,9,3,-1,-5,-9,-2,5,-7,19,-12 ; TV[882]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,3,3,5,-23,9,1,5,-1,1,-3,9,-9,-7,-5,-3,7,11,23,-5,-21,3,-3,-1,1,3,1,5,5,-23,9,3,9,-23,5,3,5,1,1,-1,-3,9,3,-2,-7,-12,-1,19,-5,5,-9,3,9,5,1,-3,-23,-1,5,1,3 ; TV[883]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-1,1,3,-5,-1,3,-1,1,-1,9,-9,-7,-5,-3,7,11,23,-5,-21,3,-3,-1,1,3,1,5,5,-23,9,3,9,-23,5,3,5,1,1,-1,-3,9,3,-2,-7,-12,-1,19,-5,5,-9,3,9,5,1,-3,-23,-1,5,1,3 ; TV[884]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-3,11,-5,-21,-5,23,-7,7,-9,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-1,1,3,-5,-1,3,-1,1,-1,3,-3,-1,1,3,1,5,5,-23,9,3,9,5,1,-3,-23,-1,5,1,3,9,3,-2,-7,-12,-1,19,-5,5,-9 ; TV[885]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-3,11,-5,-21,-5,23,-7,7,-9,9,-9,-7,-5,-3,7,11,23,-5,-21,3,-3,-1,1,3,1,5,5,-23,9,3,3,5,-23,9,1,5,-1,1,-3,3,9,5,1,-3,-23,-1,5,1,3,9,3,-2,-7,-12,-1,19,-5,5,-9 ; TV[886]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-1,1,3,-5,-1,3,-1,1,-1,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,9,-23,5,3,5,1,1,-1,-3,9,3,-2,-7,-12,-1,19,-5,5,-9,3,9,5,1,-3,-23,-1,5,1,3 ; TV[887]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-3,11,-5,-21,-5,23,-7,7,-9,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-1,1,3,-5,-1,3,-1,1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,3,9,5,1,-3,-23,-1,5,1,3,9,3,-2,-7,-12,-1,19,-5,5,-9 ; TV[888]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-3,11,-5,-21,-5,23,-7,7,-9,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,3,5,-23,9,1,5,-1,1,-3,3,9,5,1,-3,-23,-1,5,1,3,9,3,-2,-7,-12,-1,19,-5,5,-9 ; TV[889]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,3,3,5,-23,9,1,5,-1,1,-3,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,9,-23,5,3,5,1,1,-1,-3,9,3,-2,-7,-12,-1,19,-5,5,-9,3,9,5,1,-3,-23,-1,5,1,3 ; TV[890]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,2,-1,2,0,-2,-1,0,-1,2,-1,3,-3,1,5,9,-1,-23,1,5,3,3,3,5,-23,9,1,5,-1,1,-3,3,3,1,-1,-3,5,1,-23,5,9,9,3,-1,-5,-9,-2,5,-7,19,-12,3,9,5,1,-3,-23,-1,5,1,3 ; TV[891]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,2,-1,2,0,-2,-1,0,-1,2,-1,9,-3,-5,-7,-9,11,7,-5,23,-21,3,3,1,-1,-3,5,1,-23,5,9,3,-3,1,5,9,-1,-23,1,5,3,3,3,5,-23,9,1,5,-1,1,-3,9,3,-1,-5,-9,-2,5,-7,19,-12 ; TV[892]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,2,-1,2,0,-2,-1,0,-1,2,-1,9,-3,-5,-7,-9,11,7,-5,23,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,1,5,9,-1,-23,1,5,3,3,3,5,-23,9,1,5,-1,1,-3,9,3,-1,-5,-9,-2,5,-7,19,-12 ; TV[893]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,2,-1,2,0,-2,-1,0,-1,2,-1,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,1,5,9,-1,-23,1,5,3,3,3,5,-23,9,1,5,-1,1,-3,3,9,5,1,-3,-23,-1,5,1,3,9,3,-1,-5,-9,-2,5,-7,19,-12 ; TV[894]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,2,-1,2,0,-2,-1,0,-1,2,-1,9,-3,11,-5,-21,-5,23,-7,7,-9,3,3,5,-23,9,1,5,-1,1,-3,3,3,1,-1,-3,5,1,-23,5,9,9,3,-1,-5,-9,-2,5,-7,19,-12,3,9,5,1,-3,-23,-1,5,1,3 ; TV[895]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-3,-5,-7,-9,11,7,-5,23,-21,2,-1,2,0,-2,-1,0,-1,2,-1,1,-1,1,3,-5,-1,3,-1,1,-1,3,3,1,-1,-3,5,1,-23,5,9,9,-3,11,-5,-21,-5,23,-7,7,-9,9,3,-1,-5,-9,-2,5,-7,19,-12 ; TV[896]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-3,-5,-7,-9,11,7,-5,23,-21,2,-1,2,0,-2,-1,0,-1,2,-1,9,-3,11,-5,-21,-5,23,-7,7,-9,3,3,1,-1,-3,5,1,-23,5,9,3,3,5,-23,9,1,5,-1,1,-3,9,3,-1,-5,-9,-2,5,-7,19,-12 ; TV[897]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,2,-1,2,0,-2,-1,0,-1,2,-1,1,-1,1,3,-5,-1,3,-1,1,-1,9,-3,11,-5,-21,-5,23,-7,7,-9,3,3,1,-1,-3,5,1,-23,5,9,9,3,-1,-5,-9,-2,5,-7,19,-12,3,9,5,1,-3,-23,-1,5,1,3 ; TV[898]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,2,-1,2,0,-2,-1,0,-1,2,-1,1,-1,-1,-1,-1,1,1,3,3,-5,1,-1,1,3,-5,-1,3,-1,1,-1,9,-3,11,-5,-21,-5,23,-7,7,-9,3,9,5,1,-3,-23,-1,5,1,3,9,3,-1,-5,-9,-2,5,-7,19,-12 ; TV[899]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,2,-1,2,0,-2,-1,0,-1,2,-1,1,-1,-1,-1,-1,1,1,3,3,-5,9,-3,11,-5,-21,-5,23,-7,7,-9,3,3,5,-23,9,1,5,-1,1,-3,3,9,5,1,-3,-23,-1,5,1,3,9,3,-1,-5,-9,-2,5,-7,19,-12 ; TV[900]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,2,-1,2,0,-2,-1,0,-1,2,-1,9,-3,-5,-7,-9,11,7,-5,23,-21,9,-3,11,-5,-21,-5,23,-7,7,-9,1,-1,-1,-1,-1,1,1,3,3,-5,3,3,5,-23,9,1,5,-1,1,-3,9,3,-1,-5,-9,-2,5,-7,19,-12 ; TV[901]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,2,-1,2,0,-2,-1,0,-1,2,-1,9,-3,-5,-7,-9,11,7,-5,23,-21,1,-1,1,3,-5,-1,3,-1,1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,9,-3,11,-5,-21,-5,23,-7,7,-9,9,3,-1,-5,-9,-2,5,-7,19,-12 ; TV[902]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,2,-1,2,0,-2,-1,0,-1,2,-1,9,-9,7,23,-21,-7,-5,-5,11,-3,1,-1,1,3,-5,-1,3,-1,1,-1,3,3,1,-1,-3,5,1,-23,5,9,9,3,-1,-5,-9,-2,5,-7,19,-12,3,9,5,1,-3,-23,-1,5,1,3 ; TV[903]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,2,-1,2,0,-2,-1,0,-1,2,-1,9,-9,7,23,-21,-7,-5,-5,11,-3,3,-3,1,5,9,-1,-23,1,5,3,3,3,1,-1,-3,5,1,-23,5,9,9,3,-1,-5,-9,-2,5,-7,19,-12,3,9,5,1,-3,-23,-1,5,1,3 ; TV[904]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-3,-5,-7,-9,11,7,-5,23,-21,2,-1,2,0,-2,-1,0,-1,2,-1,9,-9,7,23,-21,-7,-5,-5,11,-3,1,-1,1,3,-5,-1,3,-1,1,-1,3,3,1,-1,-3,5,1,-23,5,9,9,3,-1,-5,-9,-2,5,-7,19,-12 ; TV[905]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-3,-5,-7,-9,11,7,-5,23,-21,2,-1,2,0,-2,-1,0,-1,2,-1,9,-9,7,23,-21,-7,-5,-5,11,-3,3,3,1,-1,-3,5,1,-23,5,9,3,-3,1,5,9,-1,-23,1,5,3,9,3,-1,-5,-9,-2,5,-7,19,-12 ; TV[906]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,2,-1,2,0,-2,-1,0,-1,2,-1,9,-3,-5,-7,-9,11,7,-5,23,-21,9,-9,7,23,-21,-7,-5,-5,11,-3,1,-1,1,3,-5,-1,3,-1,1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,9,3,-1,-5,-9,-2,5,-7,19,-12 ; TV[907]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,2,-1,2,0,-2,-1,0,-1,2,-1,9,-3,-5,-7,-9,11,7,-5,23,-21,9,-9,7,23,-21,-7,-5,-5,11,-3,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,1,5,9,-1,-23,1,5,3,9,3,-1,-5,-9,-2,5,-7,19,-12 ; TV[908]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,2,-1,2,0,-2,-1,0,-1,2,-1,1,-1,-1,-1,-1,1,1,3,3,-5,9,-9,7,23,-21,-7,-5,-5,11,-3,3,-3,1,5,9,-1,-23,1,5,3,3,9,5,1,-3,-23,-1,5,1,3,9,3,-1,-5,-9,-2,5,-7,19,-12 ; TV[909]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,2,-1,2,0,-2,-1,0,-1,2,-1,1,-1,-1,-1,-1,1,1,3,3,-5,9,-9,7,23,-21,-7,-5,-5,11,-3,1,-1,1,3,-5,-1,3,-1,1,-1,3,9,5,1,-3,-23,-1,5,1,3,9,3,-1,-5,-9,-2,5,-7,19,-12 ; TV[910]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-9,5,19,-12,-5,-7,-1,-2,3,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,3,9,-23,5,3,5,1,1,-1,-3,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3 ; TV[911]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-9,5,19,-12,-5,-7,-1,-2,3,9,-9,7,23,-21,-7,-5,-5,11,-3,3,-3,1,5,9,-1,-23,1,5,3,3,9,-23,5,3,5,1,1,-1,-3,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3 ; TV[912]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-9,5,19,-12,-5,-7,-1,-2,3,1,-1,1,3,-5,-1,3,-1,1,-1,3,-3,-1,1,3,1,5,5,-23,9,3,9,-23,5,3,5,1,1,-1,-3,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3 ; TV[913]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-9,5,19,-12,-5,-7,-1,-2,3,1,-1,1,3,-5,-1,3,-1,1,-1,9,-9,7,23,-21,-7,-5,-5,11,-3,3,9,-23,5,3,5,1,1,-1,-3,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3 ; TV[914]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-9,-5,-1,3,5,-2,19,-7,-12,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,3,9,5,1,-3,-23,-1,5,1,3,3,3,5,-23,9,1,5,-1,1,-3,3,9,-23,5,3,5,1,1,-1,-3 ; TV[915]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-9,-5,-1,3,5,-2,19,-7,-12,9,-9,-7,-5,-3,7,11,23,-5,-21,3,-3,-1,1,3,1,5,5,-23,9,3,9,5,1,-3,-23,-1,5,1,3,3,3,5,-23,9,1,5,-1,1,-3,3,9,-23,5,3,5,1,1,-1,-3 ; TV[916]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-9,-5,-1,3,5,-2,19,-7,-12,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,1,5,9,-1,-23,1,5,3,3,9,5,1,-3,-23,-1,5,1,3,3,3,5,-23,9,1,5,-1,1,-3,3,9,-23,5,3,5,1,1,-1,-3 ; TV[917]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-9,-5,-1,3,5,-2,19,-7,-12,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,9,5,1,-3,-23,-1,5,1,3,3,3,5,-23,9,1,5,-1,1,-3,3,9,-23,5,3,5,1,1,-1,-3 ; TV[918]=M; kill M; intmat M[7][10]=2,-1,-1,-1,-1,2,2,0,0,-2,1,-1,1,3,-5,-1,3,-1,1,-1,-9,1,1,1,1,1,1,1,1,1,3,-3,-1,1,3,1,5,5,-23,9,3,3,1,-1,-3,5,1,-23,5,9,3,9,-23,5,3,5,1,1,-1,-3,9,3,-2,-7,-12,-1,19,-5,5,-9 ; TV[919]=M; kill M; intmat M[7][10]=2,-1,-1,-1,-1,2,2,0,0,-2,3,3,5,-23,9,1,5,-1,1,-3,-9,1,1,1,1,1,1,1,1,1,3,-3,-1,1,3,1,5,5,-23,9,3,3,1,-1,-3,5,1,-23,5,9,3,9,-23,5,3,5,1,1,-1,-3,9,3,-2,-7,-12,-1,19,-5,5,-9 ; TV[920]=M; kill M; intmat M[7][10]=2,-1,-1,-1,-1,2,2,0,0,-2,9,-3,11,-5,-21,-5,23,-7,7,-9,-9,1,1,1,1,1,1,1,1,1,3,-3,-1,1,3,1,5,5,-23,9,3,3,1,-1,-3,5,1,-23,5,9,3,3,5,-23,9,1,5,-1,1,-3,9,3,-2,-7,-12,-1,19,-5,5,-9 ; TV[921]=M; kill M; intmat M[7][10]=2,-1,-1,-1,-1,2,2,0,0,-2,9,-3,11,-5,-21,-5,23,-7,7,-9,-9,1,1,1,1,1,1,1,1,1,1,-1,1,3,-5,-1,3,-1,1,-1,3,-3,-1,1,3,1,5,5,-23,9,3,3,1,-1,-3,5,1,-23,5,9,9,3,-2,-7,-12,-1,19,-5,5,-9 ; TV[922]=M; kill M; intmat M[7][10]=2,-1,-1,-1,-1,2,2,0,0,-2,3,3,5,-23,9,1,5,-1,1,-3,-9,1,1,1,1,1,1,1,1,1,9,-3,-5,-7,-9,11,7,-5,23,-21,3,3,1,-1,-3,5,1,-23,5,9,3,9,-23,5,3,5,1,1,-1,-3,9,3,-2,-7,-12,-1,19,-5,5,-9 ; TV[923]=M; kill M; intmat M[7][10]=2,-1,-1,-1,-1,2,2,0,0,-2,1,-1,1,3,-5,-1,3,-1,1,-1,-9,1,1,1,1,1,1,1,1,1,9,-3,-5,-7,-9,11,7,-5,23,-21,3,3,1,-1,-3,5,1,-23,5,9,3,9,-23,5,3,5,1,1,-1,-3,9,3,-2,-7,-12,-1,19,-5,5,-9 ; TV[924]=M; kill M; intmat M[7][10]=2,-1,-1,-1,-1,2,2,0,0,-2,9,-3,11,-5,-21,-5,23,-7,7,-9,-9,1,1,1,1,1,1,1,1,1,9,-3,-5,-7,-9,11,7,-5,23,-21,3,3,1,-1,-3,5,1,-23,5,9,3,3,5,-23,9,1,5,-1,1,-3,9,3,-2,-7,-12,-1,19,-5,5,-9 ; TV[925]=M; kill M; intmat M[7][10]=2,-1,-1,-1,-1,2,2,0,0,-2,9,-3,11,-5,-21,-5,23,-7,7,-9,-9,1,1,1,1,1,1,1,1,1,1,-1,1,3,-5,-1,3,-1,1,-1,9,-3,-5,-7,-9,11,7,-5,23,-21,3,3,1,-1,-3,5,1,-23,5,9,9,3,-2,-7,-12,-1,19,-5,5,-9 ; TV[926]=M; kill M; intmat M[7][10]=2,-1,-1,-1,-1,2,2,0,0,-2,9,-3,11,-5,-21,-5,23,-7,7,-9,-9,1,1,1,1,1,1,1,1,1,1,-1,-1,-1,-1,1,1,3,3,-5,9,-3,-5,-7,-9,11,7,-5,23,-21,3,3,5,-23,9,1,5,-1,1,-3,9,3,-2,-7,-12,-1,19,-5,5,-9 ; TV[927]=M; kill M; intmat M[7][10]=2,-1,-1,-1,-1,2,2,0,0,-2,1,-1,1,3,-5,-1,3,-1,1,-1,-9,1,1,1,1,1,1,1,1,1,1,-1,-1,-1,-1,1,1,3,3,-5,9,-3,-5,-7,-9,11,7,-5,23,-21,3,9,-23,5,3,5,1,1,-1,-3,9,3,-2,-7,-12,-1,19,-5,5,-9 ; TV[928]=M; kill M; intmat M[7][10]=2,-1,-1,-1,-1,2,2,0,0,-2,9,-3,11,-5,-21,-5,23,-7,7,-9,-9,1,1,1,1,1,1,1,1,1,1,-1,1,3,-5,-1,3,-1,1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,9,-3,-5,-7,-9,11,7,-5,23,-21,9,3,-2,-7,-12,-1,19,-5,5,-9 ; TV[929]=M; kill M; intmat M[7][10]=2,-1,-1,-1,-1,2,2,0,0,-2,3,3,5,-23,9,1,5,-1,1,-3,-9,1,1,1,1,1,1,1,1,1,1,-1,-1,-1,-1,1,1,3,3,-5,9,-3,-5,-7,-9,11,7,-5,23,-21,3,9,-23,5,3,5,1,1,-1,-3,9,3,-2,-7,-12,-1,19,-5,5,-9 ; TV[930]=M; kill M; intmat M[7][10]=2,-1,-1,-1,-1,2,2,0,0,-2,9,-3,11,-5,-21,-5,23,-7,7,-9,-9,1,1,1,1,1,1,1,1,1,9,-9,-7,-5,-3,7,11,23,-5,-21,3,-3,-1,1,3,1,5,5,-23,9,3,3,5,-23,9,1,5,-1,1,-3,9,3,-2,-7,-12,-1,19,-5,5,-9 ; TV[931]=M; kill M; intmat M[7][10]=2,-1,-1,-1,-1,2,2,0,0,-2,1,-1,1,3,-5,-1,3,-1,1,-1,-9,1,1,1,1,1,1,1,1,1,9,-9,-7,-5,-3,7,11,23,-5,-21,3,-3,-1,1,3,1,5,5,-23,9,3,9,-23,5,3,5,1,1,-1,-3,9,3,-2,-7,-12,-1,19,-5,5,-9 ; TV[932]=M; kill M; intmat M[7][10]=2,-1,-1,-1,-1,2,2,0,0,-2,3,3,5,-23,9,1,5,-1,1,-3,-9,1,1,1,1,1,1,1,1,1,9,-9,-7,-5,-3,7,11,23,-5,-21,3,-3,-1,1,3,1,5,5,-23,9,3,9,-23,5,3,5,1,1,-1,-3,9,3,-2,-7,-12,-1,19,-5,5,-9 ; TV[933]=M; kill M; intmat M[7][10]=2,-1,-1,-1,-1,2,2,0,0,-2,9,-3,11,-5,-21,-5,23,-7,7,-9,-9,1,1,1,1,1,1,1,1,1,1,-1,1,3,-5,-1,3,-1,1,-1,9,-9,-7,-5,-3,7,11,23,-5,-21,3,-3,-1,1,3,1,5,5,-23,9,9,3,-2,-7,-12,-1,19,-5,5,-9 ; TV[934]=M; kill M; intmat M[7][10]=2,-1,-1,-1,-1,2,2,0,0,-2,3,3,5,-23,9,1,5,-1,1,-3,-9,1,1,1,1,1,1,1,1,1,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,9,-23,5,3,5,1,1,-1,-3,9,3,-2,-7,-12,-1,19,-5,5,-9 ; TV[935]=M; kill M; intmat M[7][10]=2,-1,-1,-1,-1,2,2,0,0,-2,1,-1,1,3,-5,-1,3,-1,1,-1,-9,1,1,1,1,1,1,1,1,1,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,9,-23,5,3,5,1,1,-1,-3,9,3,-2,-7,-12,-1,19,-5,5,-9 ; TV[936]=M; kill M; intmat M[7][10]=2,-1,-1,-1,-1,2,2,0,0,-2,9,-3,11,-5,-21,-5,23,-7,7,-9,-9,1,1,1,1,1,1,1,1,1,1,-1,1,3,-5,-1,3,-1,1,-1,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-1,-1,-1,-1,1,1,3,3,-5,9,3,-2,-7,-12,-1,19,-5,5,-9 ; TV[937]=M; kill M; intmat M[7][10]=2,-1,-1,-1,-1,2,2,0,0,-2,9,-3,11,-5,-21,-5,23,-7,7,-9,-9,1,1,1,1,1,1,1,1,1,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,3,5,-23,9,1,5,-1,1,-3,9,3,-2,-7,-12,-1,19,-5,5,-9 ; TV[938]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,2,-2,0,2,-1,0,-1,2,-1,-1,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,3,9,-23,5,3,5,1,1,-1,-3,9,-9,5,19,-12,-5,-7,-1,-2,3,3,9,5,1,-3,-23,-1,5,1,3 ; TV[939]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,2,-2,0,2,-1,0,-1,2,-1,-1,9,-9,7,23,-21,-7,-5,-5,11,-3,3,-3,1,5,9,-1,-23,1,5,3,3,9,-23,5,3,5,1,1,-1,-3,9,-9,5,19,-12,-5,-7,-1,-2,3,3,9,5,1,-3,-23,-1,5,1,3 ; TV[940]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,2,-2,0,2,-1,0,-1,2,-1,-1,1,-1,1,3,-5,-1,3,-1,1,-1,9,-9,7,23,-21,-7,-5,-5,11,-3,3,9,-23,5,3,5,1,1,-1,-3,9,-9,5,19,-12,-5,-7,-1,-2,3,3,9,5,1,-3,-23,-1,5,1,3 ; TV[941]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,2,-2,0,2,-1,0,-1,2,-1,-1,1,-1,1,3,-5,-1,3,-1,1,-1,3,-3,-1,1,3,1,5,5,-23,9,3,9,-23,5,3,5,1,1,-1,-3,9,-9,5,19,-12,-5,-7,-1,-2,3,3,9,5,1,-3,-23,-1,5,1,3 ; TV[942]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,2,-2,0,2,-1,0,-1,2,-1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,1,5,9,-1,-23,1,5,3,3,9,-23,5,3,5,1,1,-1,-3,9,-9,7,23,-21,-7,-5,-5,11,-3,3,9,5,1,-3,-23,-1,5,1,3 ; TV[943]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,2,-2,0,2,-1,0,-1,2,-1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,1,-1,1,3,-5,-1,3,-1,1,-1,3,9,-23,5,3,5,1,1,-1,-3,9,-9,7,23,-21,-7,-5,-5,11,-3,3,9,5,1,-3,-23,-1,5,1,3 ; TV[944]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,2,-2,0,2,-1,0,-1,2,-1,-1,9,-9,-7,-5,-3,7,11,23,-5,-21,3,-3,-1,1,3,1,5,5,-23,9,3,9,-23,5,3,5,1,1,-1,-3,1,-1,1,3,-5,-1,3,-1,1,-1,3,9,5,1,-3,-23,-1,5,1,3 ; TV[945]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,2,-2,0,2,-1,0,-1,2,-1,-1,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,9,-23,5,3,5,1,1,-1,-3,1,-1,1,3,-5,-1,3,-1,1,-1,3,9,5,1,-3,-23,-1,5,1,3 ; TV[946]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,2,-2,0,2,-1,0,-1,2,-1,-1,9,-9,-5,-1,3,5,-2,19,-7,-12,3,-3,-1,1,3,1,5,5,-23,9,3,9,-23,5,3,5,1,1,-1,-3,3,-3,1,5,9,-1,-23,1,5,3,3,9,5,1,-3,-23,-1,5,1,3 ; TV[947]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,2,-2,0,2,-1,0,-1,2,-1,-1,9,-9,-5,-1,3,5,-2,19,-7,-12,9,-9,-7,-5,-3,7,11,23,-5,-21,3,9,-23,5,3,5,1,1,-1,-3,3,-3,-1,1,3,1,5,5,-23,9,3,9,5,1,-3,-23,-1,5,1,3 ; TV[948]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,2,-2,0,2,-1,0,-1,2,-1,-1,9,-9,-5,-1,3,5,-2,19,-7,-12,1,-1,-1,-1,-1,1,1,3,3,-5,3,9,-23,5,3,5,1,1,-1,-3,3,-3,1,5,9,-1,-23,1,5,3,3,9,5,1,-3,-23,-1,5,1,3 ; TV[949]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,2,-2,0,2,-1,0,-1,2,-1,-1,9,-9,-5,-1,3,5,-2,19,-7,-12,9,-9,-7,-5,-3,7,11,23,-5,-21,3,9,-23,5,3,5,1,1,-1,-3,1,-1,-1,-1,-1,1,1,3,3,-5,3,9,5,1,-3,-23,-1,5,1,3 ; TV[950]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-12,19,5,-9,-7,-5,-2,-1,3,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,3,3,5,-23,9,1,5,-1,1,-3,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3 ; TV[951]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-21,23,7,-9,-5,-7,11,-5,-3,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,3,3,5,-23,9,1,5,-1,1,-3,9,-12,19,5,-9,-7,-5,-2,-1,3,3,9,5,1,-3,-23,-1,5,1,3 ; TV[952]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,9,-21,23,7,-9,-5,-7,11,-5,-3,3,-3,-1,1,3,1,5,5,-23,9,3,3,5,-23,9,1,5,-1,1,-3,3,-3,1,5,9,-1,-23,1,5,3,9,-12,19,5,-9,-7,-5,-2,-1,3 ; TV[953]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,3,3,1,-1,-3,5,1,-23,5,9,3,-3,-1,1,3,1,5,5,-23,9,3,3,5,-23,9,1,5,-1,1,-3,3,-3,1,5,9,-1,-23,1,5,3,9,-12,19,5,-9,-7,-5,-2,-1,3 ; TV[954]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-12,19,5,-9,-7,-5,-2,-1,3,2,-1,2,0,-2,-1,0,-1,2,-1,3,-3,1,5,9,-1,-23,1,5,3,3,3,5,-23,9,1,5,-1,1,-3,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3 ; TV[955]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,2,-1,2,0,-2,-1,0,-1,2,-1,3,3,1,-1,-3,5,1,-23,5,9,3,3,5,-23,9,1,5,-1,1,-3,3,-3,1,5,9,-1,-23,1,5,3,9,-12,19,5,-9,-7,-5,-2,-1,3 ; TV[956]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,2,-1,2,0,-2,-1,0,-1,2,-1,9,-21,23,7,-9,-5,-7,11,-5,-3,9,-12,19,5,-9,-7,-5,-2,-1,3,3,-3,1,5,9,-1,-23,1,5,3,3,3,5,-23,9,1,5,-1,1,-3 ; TV[957]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-21,23,7,-9,-5,-7,11,-5,-3,2,-1,2,0,-2,-1,0,-1,2,-1,3,-3,1,5,9,-1,-23,1,5,3,9,-12,19,5,-9,-7,-5,-2,-1,3,3,3,5,-23,9,1,5,-1,1,-3,3,9,5,1,-3,-23,-1,5,1,3 ; TV[958]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-12,19,5,-9,-7,-5,-2,-1,3,1,-1,1,3,-5,-1,3,-1,1,-1,3,-3,-1,1,3,1,5,5,-23,9,9,-3,11,-5,-21,-5,23,-7,7,-9,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3 ; TV[959]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-12,19,5,-9,-7,-5,-2,-1,3,9,-3,11,-5,-21,-5,23,-7,7,-9,3,-3,-1,1,3,1,5,5,-23,9,3,3,5,-23,9,1,5,-1,1,-3,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3 ; TV[960]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-21,23,7,-9,-5,-7,11,-5,-3,1,-1,1,3,-5,-1,3,-1,1,-1,3,-3,-1,1,3,1,5,5,-23,9,9,-3,11,-5,-21,-5,23,-7,7,-9,9,-12,19,5,-9,-7,-5,-2,-1,3,3,9,5,1,-3,-23,-1,5,1,3 ; TV[961]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,9,-3,11,-5,-21,-5,23,-7,7,-9,9,-21,23,7,-9,-5,-7,11,-5,-3,3,3,5,-23,9,1,5,-1,1,-3,3,-3,-1,1,3,1,5,5,-23,9,9,-12,19,5,-9,-7,-5,-2,-1,3 ; TV[962]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-21,23,7,-9,-5,-7,11,-5,-3,9,-3,11,-5,-21,-5,23,-7,7,-9,3,-3,-1,1,3,1,5,5,-23,9,3,3,5,-23,9,1,5,-1,1,-3,9,-12,19,5,-9,-7,-5,-2,-1,3,3,9,5,1,-3,-23,-1,5,1,3 ; TV[963]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,1,3,-5,-1,3,-1,1,-1,9,-21,23,7,-9,-5,-7,11,-5,-3,3,-3,-1,1,3,1,5,5,-23,9,9,-3,11,-5,-21,-5,23,-7,7,-9,9,-12,19,5,-9,-7,-5,-2,-1,3 ; TV[964]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,1,3,-5,-1,3,-1,1,-1,3,-3,-1,1,3,1,5,5,-23,9,3,3,1,-1,-3,5,1,-23,5,9,9,-3,11,-5,-21,-5,23,-7,7,-9,9,-12,19,5,-9,-7,-5,-2,-1,3 ; TV[965]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,9,-3,11,-5,-21,-5,23,-7,7,-9,3,-3,-1,1,3,1,5,5,-23,9,3,3,5,-23,9,1,5,-1,1,-3,3,3,1,-1,-3,5,1,-23,5,9,9,-12,19,5,-9,-7,-5,-2,-1,3 ; TV[966]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-12,19,5,-9,-7,-5,-2,-1,3,9,-3,11,-5,-21,-5,23,-7,7,-9,2,-1,2,0,-2,-1,0,-1,2,-1,3,3,5,-23,9,1,5,-1,1,-3,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3 ; TV[967]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,9,-3,11,-5,-21,-5,23,-7,7,-9,2,-1,2,0,-2,-1,0,-1,2,-1,3,3,5,-23,9,1,5,-1,1,-3,3,3,1,-1,-3,5,1,-23,5,9,9,-12,19,5,-9,-7,-5,-2,-1,3 ; TV[968]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-12,19,5,-9,-7,-5,-2,-1,3,1,-1,1,3,-5,-1,3,-1,1,-1,2,-1,2,0,-2,-1,0,-1,2,-1,9,-3,11,-5,-21,-5,23,-7,7,-9,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3 ; TV[969]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,1,3,-5,-1,3,-1,1,-1,2,-1,2,0,-2,-1,0,-1,2,-1,3,3,1,-1,-3,5,1,-23,5,9,9,-3,11,-5,-21,-5,23,-7,7,-9,9,-12,19,5,-9,-7,-5,-2,-1,3 ; TV[970]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,9,-3,11,-5,-21,-5,23,-7,7,-9,9,-21,23,7,-9,-5,-7,11,-5,-3,3,3,5,-23,9,1,5,-1,1,-3,2,-1,2,0,-2,-1,0,-1,2,-1,9,-12,19,5,-9,-7,-5,-2,-1,3 ; TV[971]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,1,3,-5,-1,3,-1,1,-1,9,-21,23,7,-9,-5,-7,11,-5,-3,2,-1,2,0,-2,-1,0,-1,2,-1,9,-3,11,-5,-21,-5,23,-7,7,-9,9,-12,19,5,-9,-7,-5,-2,-1,3 ; TV[972]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-21,23,7,-9,-5,-7,11,-5,-3,1,-1,1,3,-5,-1,3,-1,1,-1,2,-1,2,0,-2,-1,0,-1,2,-1,9,-3,11,-5,-21,-5,23,-7,7,-9,9,-12,19,5,-9,-7,-5,-2,-1,3,3,9,5,1,-3,-23,-1,5,1,3 ; TV[973]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-21,23,7,-9,-5,-7,11,-5,-3,9,-3,11,-5,-21,-5,23,-7,7,-9,2,-1,2,0,-2,-1,0,-1,2,-1,3,3,5,-23,9,1,5,-1,1,-3,9,-12,19,5,-9,-7,-5,-2,-1,3,3,9,5,1,-3,-23,-1,5,1,3 ; TV[974]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,9,-9,7,23,-21,-7,-5,-5,11,-3,1,-1,1,3,-5,-1,3,-1,1,-1,3,3,1,-1,-3,5,1,-23,5,9,2,-1,2,0,-2,-1,0,-1,2,-1,9,-12,19,5,-9,-7,-5,-2,-1,3 ; TV[975]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-12,19,5,-9,-7,-5,-2,-1,3,9,-9,7,23,-21,-7,-5,-5,11,-3,1,-1,1,3,-5,-1,3,-1,1,-1,2,-1,2,0,-2,-1,0,-1,2,-1,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3 ; TV[976]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,9,-9,7,23,-21,-7,-5,-5,11,-3,3,3,1,-1,-3,5,1,-23,5,9,3,-3,1,5,9,-1,-23,1,5,3,2,-1,2,0,-2,-1,0,-1,2,-1,9,-12,19,5,-9,-7,-5,-2,-1,3 ; TV[977]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-12,19,5,-9,-7,-5,-2,-1,3,9,-9,7,23,-21,-7,-5,-5,11,-3,3,-3,1,5,9,-1,-23,1,5,3,2,-1,2,0,-2,-1,0,-1,2,-1,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3 ; TV[978]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-21,23,7,-9,-5,-7,11,-5,-3,9,-9,7,23,-21,-7,-5,-5,11,-3,1,-1,1,3,-5,-1,3,-1,1,-1,2,-1,2,0,-2,-1,0,-1,2,-1,9,-12,19,5,-9,-7,-5,-2,-1,3,3,9,5,1,-3,-23,-1,5,1,3 ; TV[979]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-21,23,7,-9,-5,-7,11,-5,-3,9,-9,7,23,-21,-7,-5,-5,11,-3,3,-3,1,5,9,-1,-23,1,5,3,2,-1,2,0,-2,-1,0,-1,2,-1,9,-12,19,5,-9,-7,-5,-2,-1,3,3,9,5,1,-3,-23,-1,5,1,3 ; TV[980]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,9,-9,7,23,-21,-7,-5,-5,11,-3,9,-21,23,7,-9,-5,-7,11,-5,-3,3,-3,1,5,9,-1,-23,1,5,3,2,-1,2,0,-2,-1,0,-1,2,-1,9,-12,19,5,-9,-7,-5,-2,-1,3 ; TV[981]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,9,-9,7,23,-21,-7,-5,-5,11,-3,1,-1,1,3,-5,-1,3,-1,1,-1,9,-21,23,7,-9,-5,-7,11,-5,-3,2,-1,2,0,-2,-1,0,-1,2,-1,9,-12,19,5,-9,-7,-5,-2,-1,3 ; TV[982]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,1,5,9,-1,-23,1,5,3,9,-21,23,7,-9,-5,-7,11,-5,-3,3,3,5,-23,9,1,5,-1,1,-3,2,-1,2,0,-2,-1,0,-1,2,-1 ; TV[983]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-21,23,7,-9,-5,-7,11,-5,-3,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,1,5,9,-1,-23,1,5,3,3,3,5,-23,9,1,5,-1,1,-3,2,-1,2,0,-2,-1,0,-1,2,-1,3,9,5,1,-3,-23,-1,5,1,3 ; TV[984]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-21,23,7,-9,-5,-7,11,-5,-3,1,-1,-1,-1,-1,1,1,3,3,-5,9,-3,11,-5,-21,-5,23,-7,7,-9,3,3,5,-23,9,1,5,-1,1,-3,2,-1,2,0,-2,-1,0,-1,2,-1,3,9,5,1,-3,-23,-1,5,1,3 ; TV[985]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-21,23,7,-9,-5,-7,11,-5,-3,1,-1,-1,-1,-1,1,1,3,3,-5,1,-1,1,3,-5,-1,3,-1,1,-1,9,-3,11,-5,-21,-5,23,-7,7,-9,2,-1,2,0,-2,-1,0,-1,2,-1,3,9,5,1,-3,-23,-1,5,1,3 ; TV[986]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,9,-3,11,-5,-21,-5,23,-7,7,-9,3,3,5,-23,9,1,5,-1,1,-3,9,-21,23,7,-9,-5,-7,11,-5,-3,2,-1,2,0,-2,-1,0,-1,2,-1 ; TV[987]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,1,-1,1,3,-5,-1,3,-1,1,-1,9,-3,11,-5,-21,-5,23,-7,7,-9,9,-21,23,7,-9,-5,-7,11,-5,-3,2,-1,2,0,-2,-1,0,-1,2,-1 ; TV[988]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-12,19,5,-9,-7,-5,-2,-1,3,9,-9,5,19,-12,-5,-7,-1,-2,3,9,-9,7,23,-21,-7,-5,-5,11,-3,3,-3,1,5,9,-1,-23,1,5,3,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3 ; TV[989]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,9,-9,5,19,-12,-5,-7,-1,-2,3,9,-9,7,23,-21,-7,-5,-5,11,-3,3,3,1,-1,-3,5,1,-23,5,9,3,-3,1,5,9,-1,-23,1,5,3,9,-12,19,5,-9,-7,-5,-2,-1,3 ; TV[990]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-12,19,5,-9,-7,-5,-2,-1,3,9,-9,5,19,-12,-5,-7,-1,-2,3,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3 ; TV[991]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,3,3,1,-1,-3,5,1,-23,5,9,9,-9,5,19,-12,-5,-7,-1,-2,3,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,9,-12,19,5,-9,-7,-5,-2,-1,3 ; TV[992]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-21,23,7,-9,-5,-7,11,-5,-3,9,-9,5,19,-12,-5,-7,-1,-2,3,9,-9,7,23,-21,-7,-5,-5,11,-3,3,-3,1,5,9,-1,-23,1,5,3,9,-12,19,5,-9,-7,-5,-2,-1,3,3,9,5,1,-3,-23,-1,5,1,3 ; TV[993]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,9,-9,5,19,-12,-5,-7,-1,-2,3,1,-1,1,3,-5,-1,3,-1,1,-1,9,-9,7,23,-21,-7,-5,-5,11,-3,3,3,1,-1,-3,5,1,-23,5,9,9,-12,19,5,-9,-7,-5,-2,-1,3 ; TV[994]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,9,-9,5,19,-12,-5,-7,-1,-2,3,9,-9,7,23,-21,-7,-5,-5,11,-3,9,-21,23,7,-9,-5,-7,11,-5,-3,3,-3,1,5,9,-1,-23,1,5,3,9,-12,19,5,-9,-7,-5,-2,-1,3 ; TV[995]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-12,19,5,-9,-7,-5,-2,-1,3,9,-9,5,19,-12,-5,-7,-1,-2,3,1,-1,1,3,-5,-1,3,-1,1,-1,3,-3,-1,1,3,1,5,5,-23,9,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3 ; TV[996]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-21,23,7,-9,-5,-7,11,-5,-3,9,-9,5,19,-12,-5,-7,-1,-2,3,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,9,-12,19,5,-9,-7,-5,-2,-1,3,3,9,5,1,-3,-23,-1,5,1,3 ; TV[997]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,9,-9,5,19,-12,-5,-7,-1,-2,3,1,-1,1,3,-5,-1,3,-1,1,-1,3,-3,-1,1,3,1,5,5,-23,9,3,3,1,-1,-3,5,1,-23,5,9,9,-12,19,5,-9,-7,-5,-2,-1,3 ; TV[998]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,9,-9,5,19,-12,-5,-7,-1,-2,3,9,-21,23,7,-9,-5,-7,11,-5,-3,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,9,-12,19,5,-9,-7,-5,-2,-1,3 ; TV[999]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-12,19,5,-9,-7,-5,-2,-1,3,9,-9,5,19,-12,-5,-7,-1,-2,3,1,-1,1,3,-5,-1,3,-1,1,-1,9,-9,7,23,-21,-7,-5,-5,11,-3,3,3,1,-1,-3,5,1,-23,5,9,3,9,5,1,-3,-23,-1,5,1,3 ; TV[1000]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,9,-9,5,19,-12,-5,-7,-1,-2,3,1,-1,1,3,-5,-1,3,-1,1,-1,9,-21,23,7,-9,-5,-7,11,-5,-3,3,-3,-1,1,3,1,5,5,-23,9,9,-12,19,5,-9,-7,-5,-2,-1,3 ; TV[1001]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-21,23,7,-9,-5,-7,11,-5,-3,9,-9,5,19,-12,-5,-7,-1,-2,3,1,-1,1,3,-5,-1,3,-1,1,-1,3,-3,-1,1,3,1,5,5,-23,9,9,-12,19,5,-9,-7,-5,-2,-1,3,3,9,5,1,-3,-23,-1,5,1,3 ; TV[1002]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,9,-9,5,19,-12,-5,-7,-1,-2,3,1,-1,1,3,-5,-1,3,-1,1,-1,9,-21,23,7,-9,-5,-7,11,-5,-3,9,-9,7,23,-21,-7,-5,-5,11,-3,9,-12,19,5,-9,-7,-5,-2,-1,3 ; TV[1003]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-21,23,7,-9,-5,-7,11,-5,-3,9,-9,5,19,-12,-5,-7,-1,-2,3,1,-1,1,3,-5,-1,3,-1,1,-1,9,-9,7,23,-21,-7,-5,-5,11,-3,9,-12,19,5,-9,-7,-5,-2,-1,3,3,9,5,1,-3,-23,-1,5,1,3 ; TV[1004]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-21,23,7,-9,-5,-7,11,-5,-3,1,-1,-1,-1,-1,1,1,3,3,-5,9,-9,7,23,-21,-7,-5,-5,11,-3,1,-1,1,3,-5,-1,3,-1,1,-1,2,-1,2,0,-2,-1,0,-1,2,-1,3,9,5,1,-3,-23,-1,5,1,3 ; TV[1005]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,9,-9,7,23,-21,-7,-5,-5,11,-3,1,-1,1,3,-5,-1,3,-1,1,-1,9,-21,23,7,-9,-5,-7,11,-5,-3,2,-1,2,0,-2,-1,0,-1,2,-1 ; TV[1006]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,9,-9,7,23,-21,-7,-5,-5,11,-3,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,1,5,9,-1,-23,1,5,3,9,-21,23,7,-9,-5,-7,11,-5,-3,2,-1,2,0,-2,-1,0,-1,2,-1 ; TV[1007]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-21,23,7,-9,-5,-7,11,-5,-3,9,-9,7,23,-21,-7,-5,-5,11,-3,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,1,5,9,-1,-23,1,5,3,2,-1,2,0,-2,-1,0,-1,2,-1,3,9,5,1,-3,-23,-1,5,1,3 ; TV[1008]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,9,-3,-5,-7,-9,11,7,-5,23,-21,3,3,1,-1,-3,5,1,-23,5,9,3,-3,1,5,9,-1,-23,1,5,3,3,3,5,-23,9,1,5,-1,1,-3,2,-1,2,0,-2,-1,0,-1,2,-1 ; TV[1009]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,9,-3,-5,-7,-9,11,7,-5,23,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,1,5,9,-1,-23,1,5,3,3,3,5,-23,9,1,5,-1,1,-3,2,-1,2,0,-2,-1,0,-1,2,-1 ; TV[1010]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,9,-3,-5,-7,-9,11,7,-5,23,-21,1,-1,1,3,-5,-1,3,-1,1,-1,3,3,1,-1,-3,5,1,-23,5,9,9,-3,11,-5,-21,-5,23,-7,7,-9,2,-1,2,0,-2,-1,0,-1,2,-1 ; TV[1011]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,9,-3,-5,-7,-9,11,7,-5,23,-21,9,-3,11,-5,-21,-5,23,-7,7,-9,3,3,1,-1,-3,5,1,-23,5,9,3,3,5,-23,9,1,5,-1,1,-3,2,-1,2,0,-2,-1,0,-1,2,-1 ; TV[1012]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,9,-3,-5,-7,-9,11,7,-5,23,-21,9,-3,11,-5,-21,-5,23,-7,7,-9,1,-1,-1,-1,-1,1,1,3,3,-5,3,3,5,-23,9,1,5,-1,1,-3,2,-1,2,0,-2,-1,0,-1,2,-1 ; TV[1013]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,9,-3,-5,-7,-9,11,7,-5,23,-21,1,-1,1,3,-5,-1,3,-1,1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,9,-3,11,-5,-21,-5,23,-7,7,-9,2,-1,2,0,-2,-1,0,-1,2,-1 ; TV[1014]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-21,23,7,-9,-5,-7,11,-5,-3,9,-9,-7,-5,-3,7,11,23,-5,-21,3,-3,-1,1,3,1,5,5,-23,9,3,3,5,-23,9,1,5,-1,1,-3,9,-3,11,-5,-21,-5,23,-7,7,-9,3,9,5,1,-3,-23,-1,5,1,3 ; TV[1015]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-21,23,7,-9,-5,-7,11,-5,-3,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-1,1,3,-5,-1,3,-1,1,-1,3,-3,-1,1,3,1,5,5,-23,9,9,-3,11,-5,-21,-5,23,-7,7,-9,3,9,5,1,-3,-23,-1,5,1,3 ; TV[1016]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,9,-9,-7,-5,-3,7,11,23,-5,-21,3,-3,-1,1,3,1,5,5,-23,9,3,3,5,-23,9,1,5,-1,1,-3,9,-3,11,-5,-21,-5,23,-7,7,-9,9,-21,23,7,-9,-5,-7,11,-5,-3 ; TV[1017]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-1,1,3,-5,-1,3,-1,1,-1,3,-3,-1,1,3,1,5,5,-23,9,9,-3,11,-5,-21,-5,23,-7,7,-9,9,-21,23,7,-9,-5,-7,11,-5,-3 ; TV[1018]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,3,5,-23,9,1,5,-1,1,-3,9,-3,11,-5,-21,-5,23,-7,7,-9,9,-21,23,7,-9,-5,-7,11,-5,-3 ; TV[1019]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-21,23,7,-9,-5,-7,11,-5,-3,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-1,1,3,-5,-1,3,-1,1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,9,-3,11,-5,-21,-5,23,-7,7,-9,3,9,5,1,-3,-23,-1,5,1,3 ; TV[1020]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-1,1,3,-5,-1,3,-1,1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,9,-3,11,-5,-21,-5,23,-7,7,-9,9,-21,23,7,-9,-5,-7,11,-5,-3 ; TV[1021]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-21,23,7,-9,-5,-7,11,-5,-3,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,3,5,-23,9,1,5,-1,1,-3,9,-3,11,-5,-21,-5,23,-7,7,-9,3,9,5,1,-3,-23,-1,5,1,3 ; TV[1022]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,9,-3,-5,-7,-9,11,7,-5,23,-21,9,-9,7,23,-21,-7,-5,-5,11,-3,1,-1,1,3,-5,-1,3,-1,1,-1,3,3,1,-1,-3,5,1,-23,5,9,2,-1,2,0,-2,-1,0,-1,2,-1 ; TV[1023]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,9,-3,-5,-7,-9,11,7,-5,23,-21,9,-9,7,23,-21,-7,-5,-5,11,-3,3,3,1,-1,-3,5,1,-23,5,9,3,-3,1,5,9,-1,-23,1,5,3,2,-1,2,0,-2,-1,0,-1,2,-1 ; TV[1024]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,9,-9,7,23,-21,-7,-5,-5,11,-3,9,-3,-5,-7,-9,11,7,-5,23,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,1,5,9,-1,-23,1,5,3,2,-1,2,0,-2,-1,0,-1,2,-1 ; TV[1025]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,9,-3,-5,-7,-9,11,7,-5,23,-21,9,-9,7,23,-21,-7,-5,-5,11,-3,1,-1,1,3,-5,-1,3,-1,1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,2,-1,2,0,-2,-1,0,-1,2,-1 ; TV[1026]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,9,-9,-5,-1,3,5,-2,19,-7,-12,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,3,3,5,-23,9,1,5,-1,1,-3,9,-21,23,7,-9,-5,-7,11,-5,-3 ; TV[1027]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-21,23,7,-9,-5,-7,11,-5,-3,9,-9,-5,-1,3,5,-2,19,-7,-12,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,3,3,5,-23,9,1,5,-1,1,-3,3,9,5,1,-3,-23,-1,5,1,3 ; TV[1028]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-21,23,7,-9,-5,-7,11,-5,-3,9,-9,-5,-1,3,5,-2,19,-7,-12,9,-9,-7,-5,-3,7,11,23,-5,-21,3,-3,-1,1,3,1,5,5,-23,9,3,3,5,-23,9,1,5,-1,1,-3,3,9,5,1,-3,-23,-1,5,1,3 ; TV[1029]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-21,23,7,-9,-5,-7,11,-5,-3,9,-9,-5,-1,3,5,-2,19,-7,-12,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,1,5,9,-1,-23,1,5,3,3,3,5,-23,9,1,5,-1,1,-3,3,9,5,1,-3,-23,-1,5,1,3 ; TV[1030]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,9,-9,-5,-1,3,5,-2,19,-7,-12,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,1,5,9,-1,-23,1,5,3,3,3,5,-23,9,1,5,-1,1,-3,9,-21,23,7,-9,-5,-7,11,-5,-3 ; TV[1031]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,9,-9,-5,-1,3,5,-2,19,-7,-12,9,-9,-7,-5,-3,7,11,23,-5,-21,3,-3,-1,1,3,1,5,5,-23,9,3,3,5,-23,9,1,5,-1,1,-3,9,-21,23,7,-9,-5,-7,11,-5,-3 ; TV[1032]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-21,23,7,-9,-5,-7,11,-5,-3,9,-9,-5,-1,3,5,-2,19,-7,-12,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,3,5,-23,9,1,5,-1,1,-3,3,9,5,1,-3,-23,-1,5,1,3 ; TV[1033]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,9,-9,-5,-1,3,5,-2,19,-7,-12,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,3,5,-23,9,1,5,-1,1,-3,9,-21,23,7,-9,-5,-7,11,-5,-3 ; TV[1034]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,2,-2,0,2,-1,0,-1,2,-1,-1,9,-9,7,23,-21,-7,-5,-5,11,-3,3,-3,1,5,9,-1,-23,1,5,3,9,-9,5,19,-12,-5,-7,-1,-2,3,9,-21,23,7,-9,-5,-7,11,-5,-3 ; TV[1035]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-21,23,7,-9,-5,-7,11,-5,-3,2,-2,0,2,-1,0,-1,2,-1,-1,9,-9,7,23,-21,-7,-5,-5,11,-3,3,-3,1,5,9,-1,-23,1,5,3,9,-9,5,19,-12,-5,-7,-1,-2,3,3,9,5,1,-3,-23,-1,5,1,3 ; TV[1036]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,2,-2,0,2,-1,0,-1,2,-1,-1,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,9,-9,5,19,-12,-5,-7,-1,-2,3,9,-21,23,7,-9,-5,-7,11,-5,-3 ; TV[1037]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-21,23,7,-9,-5,-7,11,-5,-3,2,-2,0,2,-1,0,-1,2,-1,-1,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,9,-9,5,19,-12,-5,-7,-1,-2,3,3,9,5,1,-3,-23,-1,5,1,3 ; TV[1038]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-21,23,7,-9,-5,-7,11,-5,-3,2,-2,0,2,-1,0,-1,2,-1,-1,1,-1,1,3,-5,-1,3,-1,1,-1,3,-3,-1,1,3,1,5,5,-23,9,9,-9,5,19,-12,-5,-7,-1,-2,3,3,9,5,1,-3,-23,-1,5,1,3 ; TV[1039]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,2,-2,0,2,-1,0,-1,2,-1,-1,1,-1,1,3,-5,-1,3,-1,1,-1,3,-3,-1,1,3,1,5,5,-23,9,9,-9,5,19,-12,-5,-7,-1,-2,3,9,-21,23,7,-9,-5,-7,11,-5,-3 ; TV[1040]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-21,23,7,-9,-5,-7,11,-5,-3,2,-2,0,2,-1,0,-1,2,-1,-1,1,-1,1,3,-5,-1,3,-1,1,-1,9,-9,7,23,-21,-7,-5,-5,11,-3,9,-9,5,19,-12,-5,-7,-1,-2,3,3,9,5,1,-3,-23,-1,5,1,3 ; TV[1041]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,2,-2,0,2,-1,0,-1,2,-1,-1,1,-1,1,3,-5,-1,3,-1,1,-1,9,-9,7,23,-21,-7,-5,-5,11,-3,9,-9,5,19,-12,-5,-7,-1,-2,3,9,-21,23,7,-9,-5,-7,11,-5,-3 ; TV[1042]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,2,-2,0,2,-1,0,-1,2,-1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,1,5,9,-1,-23,1,5,3,9,-9,7,23,-21,-7,-5,-5,11,-3,9,-21,23,7,-9,-5,-7,11,-5,-3 ; TV[1043]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-21,23,7,-9,-5,-7,11,-5,-3,2,-2,0,2,-1,0,-1,2,-1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,1,5,9,-1,-23,1,5,3,9,-9,7,23,-21,-7,-5,-5,11,-3,3,9,5,1,-3,-23,-1,5,1,3 ; TV[1044]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,2,-2,0,2,-1,0,-1,2,-1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,1,-1,1,3,-5,-1,3,-1,1,-1,9,-9,7,23,-21,-7,-5,-5,11,-3,9,-21,23,7,-9,-5,-7,11,-5,-3 ; TV[1045]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-21,23,7,-9,-5,-7,11,-5,-3,2,-2,0,2,-1,0,-1,2,-1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,1,-1,1,3,-5,-1,3,-1,1,-1,9,-9,7,23,-21,-7,-5,-5,11,-3,3,9,5,1,-3,-23,-1,5,1,3 ; TV[1046]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,2,-2,0,2,-1,0,-1,2,-1,-1,9,-9,-7,-5,-3,7,11,23,-5,-21,3,-3,-1,1,3,1,5,5,-23,9,1,-1,1,3,-5,-1,3,-1,1,-1,9,-21,23,7,-9,-5,-7,11,-5,-3 ; TV[1047]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-21,23,7,-9,-5,-7,11,-5,-3,2,-2,0,2,-1,0,-1,2,-1,-1,9,-9,-7,-5,-3,7,11,23,-5,-21,3,-3,-1,1,3,1,5,5,-23,9,1,-1,1,3,-5,-1,3,-1,1,-1,3,9,5,1,-3,-23,-1,5,1,3 ; TV[1048]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,2,-2,0,2,-1,0,-1,2,-1,-1,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-1,-1,-1,-1,1,1,3,3,-5,1,-1,1,3,-5,-1,3,-1,1,-1,9,-21,23,7,-9,-5,-7,11,-5,-3 ; TV[1049]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-21,23,7,-9,-5,-7,11,-5,-3,2,-2,0,2,-1,0,-1,2,-1,-1,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-1,-1,-1,-1,1,1,3,3,-5,1,-1,1,3,-5,-1,3,-1,1,-1,3,9,5,1,-3,-23,-1,5,1,3 ; TV[1050]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,2,-2,0,2,-1,0,-1,2,-1,-1,9,-9,-5,-1,3,5,-2,19,-7,-12,3,-3,1,5,9,-1,-23,1,5,3,3,-3,-1,1,3,1,5,5,-23,9,9,-21,23,7,-9,-5,-7,11,-5,-3 ; TV[1051]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-21,23,7,-9,-5,-7,11,-5,-3,2,-2,0,2,-1,0,-1,2,-1,-1,9,-9,-5,-1,3,5,-2,19,-7,-12,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,3,9,5,1,-3,-23,-1,5,1,3 ; TV[1052]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-21,23,7,-9,-5,-7,11,-5,-3,2,-2,0,2,-1,0,-1,2,-1,-1,9,-9,-5,-1,3,5,-2,19,-7,-12,9,-9,-7,-5,-3,7,11,23,-5,-21,3,-3,-1,1,3,1,5,5,-23,9,3,9,5,1,-3,-23,-1,5,1,3 ; TV[1053]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,2,-2,0,2,-1,0,-1,2,-1,-1,9,-9,-5,-1,3,5,-2,19,-7,-12,9,-9,-7,-5,-3,7,11,23,-5,-21,3,-3,-1,1,3,1,5,5,-23,9,9,-21,23,7,-9,-5,-7,11,-5,-3 ; TV[1054]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-21,23,7,-9,-5,-7,11,-5,-3,2,-2,0,2,-1,0,-1,2,-1,-1,9,-9,-5,-1,3,5,-2,19,-7,-12,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,1,5,9,-1,-23,1,5,3,3,9,5,1,-3,-23,-1,5,1,3 ; TV[1055]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,2,-2,0,2,-1,0,-1,2,-1,-1,9,-9,-5,-1,3,5,-2,19,-7,-12,3,-3,1,5,9,-1,-23,1,5,3,1,-1,-1,-1,-1,1,1,3,3,-5,9,-21,23,7,-9,-5,-7,11,-5,-3 ; TV[1056]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,2,-2,0,2,-1,0,-1,2,-1,-1,9,-9,-5,-1,3,5,-2,19,-7,-12,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-1,-1,-1,-1,1,1,3,3,-5,9,-21,23,7,-9,-5,-7,11,-5,-3 ; TV[1057]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-21,23,7,-9,-5,-7,11,-5,-3,2,-2,0,2,-1,0,-1,2,-1,-1,9,-9,-5,-1,3,5,-2,19,-7,-12,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,9,5,1,-3,-23,-1,5,1,3 ; TV[1058]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,2,-1,-1,-1,-1,2,2,0,0,-2,-9,1,1,1,1,1,1,1,1,1,1,-1,1,3,-5,-1,3,-1,1,-1,3,-3,-1,1,3,1,5,5,-23,9,3,3,1,-1,-3,5,1,-23,5,9,9,-3,11,-5,-21,-5,23,-7,7,-9 ; TV[1059]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,2,-1,-1,-1,-1,2,2,0,0,-2,-9,1,1,1,1,1,1,1,1,1,3,-3,-1,1,3,1,5,5,-23,9,3,3,1,-1,-3,5,1,-23,5,9,3,3,5,-23,9,1,5,-1,1,-3,9,-3,11,-5,-21,-5,23,-7,7,-9 ; TV[1060]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,2,-1,-1,-1,-1,2,2,0,0,-2,-9,1,1,1,1,1,1,1,1,1,9,-3,-5,-7,-9,11,7,-5,23,-21,3,3,1,-1,-3,5,1,-23,5,9,3,3,5,-23,9,1,5,-1,1,-3,9,-3,11,-5,-21,-5,23,-7,7,-9 ; TV[1061]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,2,-1,-1,-1,-1,2,2,0,0,-2,-9,1,1,1,1,1,1,1,1,1,1,-1,1,3,-5,-1,3,-1,1,-1,9,-3,-5,-7,-9,11,7,-5,23,-21,3,3,1,-1,-3,5,1,-23,5,9,9,-3,11,-5,-21,-5,23,-7,7,-9 ; TV[1062]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,2,-1,-1,-1,-1,2,2,0,0,-2,-9,1,1,1,1,1,1,1,1,1,1,-1,-1,-1,-1,1,1,3,3,-5,9,-3,-5,-7,-9,11,7,-5,23,-21,3,3,5,-23,9,1,5,-1,1,-3,9,-3,11,-5,-21,-5,23,-7,7,-9 ; TV[1063]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,2,-1,-1,-1,-1,2,2,0,0,-2,-9,1,1,1,1,1,1,1,1,1,1,-1,1,3,-5,-1,3,-1,1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,9,-3,-5,-7,-9,11,7,-5,23,-21,9,-3,11,-5,-21,-5,23,-7,7,-9 ; TV[1064]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,2,-1,-1,-1,-1,2,2,0,0,-2,-9,1,1,1,1,1,1,1,1,1,9,-9,-7,-5,-3,7,11,23,-5,-21,3,-3,-1,1,3,1,5,5,-23,9,3,3,5,-23,9,1,5,-1,1,-3,9,-3,11,-5,-21,-5,23,-7,7,-9 ; TV[1065]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,2,-1,-1,-1,-1,2,2,0,0,-2,-9,1,1,1,1,1,1,1,1,1,1,-1,1,3,-5,-1,3,-1,1,-1,9,-9,-7,-5,-3,7,11,23,-5,-21,3,-3,-1,1,3,1,5,5,-23,9,9,-3,11,-5,-21,-5,23,-7,7,-9 ; TV[1066]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,2,-1,-1,-1,-1,2,2,0,0,-2,-9,1,1,1,1,1,1,1,1,1,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,3,5,-23,9,1,5,-1,1,-3,9,-3,11,-5,-21,-5,23,-7,7,-9 ; TV[1067]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,2,-1,-1,-1,-1,2,2,0,0,-2,-9,1,1,1,1,1,1,1,1,1,1,-1,1,3,-5,-1,3,-1,1,-1,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-1,-1,-1,-1,1,1,3,3,-5,9,-3,11,-5,-21,-5,23,-7,7,-9 ; TV[1068]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,9,-21,-5,11,-3,23,-5,7,-7,-9,9,-9,7,23,-21,-7,-5,-5,11,-3,3,3,1,-1,-3,5,1,-23,5,9,3,-3,1,5,9,-1,-23,1,5,3,9,-9,5,19,-12,-5,-7,-1,-2,3 ; TV[1069]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,9,-21,-5,11,-3,23,-5,7,-7,-9,3,3,1,-1,-3,5,1,-23,5,9,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,9,-9,5,19,-12,-5,-7,-1,-2,3 ; TV[1070]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-21,-5,11,-3,23,-5,7,-7,-9,3,3,1,-1,-3,5,1,-23,5,9,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,9,-9,5,19,-12,-5,-7,-1,-2,3,3,9,-23,5,3,5,1,1,-1,-3 ; TV[1071]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-21,-5,11,-3,23,-5,7,-7,-9,9,-9,7,23,-21,-7,-5,-5,11,-3,3,3,1,-1,-3,5,1,-23,5,9,3,-3,1,5,9,-1,-23,1,5,3,9,-9,5,19,-12,-5,-7,-1,-2,3,3,9,-23,5,3,5,1,1,-1,-3 ; TV[1072]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,9,-21,-5,11,-3,23,-5,7,-7,-9,1,-1,1,3,-5,-1,3,-1,1,-1,9,-9,7,23,-21,-7,-5,-5,11,-3,3,3,1,-1,-3,5,1,-23,5,9,9,-9,5,19,-12,-5,-7,-1,-2,3 ; TV[1073]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-21,-5,11,-3,23,-5,7,-7,-9,1,-1,1,3,-5,-1,3,-1,1,-1,9,-9,7,23,-21,-7,-5,-5,11,-3,3,3,1,-1,-3,5,1,-23,5,9,9,-9,5,19,-12,-5,-7,-1,-2,3,3,9,-23,5,3,5,1,1,-1,-3 ; TV[1074]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-21,-5,11,-3,23,-5,7,-7,-9,1,-1,1,3,-5,-1,3,-1,1,-1,3,-3,-1,1,3,1,5,5,-23,9,3,3,1,-1,-3,5,1,-23,5,9,9,-9,5,19,-12,-5,-7,-1,-2,3,3,9,-23,5,3,5,1,1,-1,-3 ; TV[1075]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,9,-21,-5,11,-3,23,-5,7,-7,-9,1,-1,1,3,-5,-1,3,-1,1,-1,3,-3,-1,1,3,1,5,5,-23,9,3,3,1,-1,-3,5,1,-23,5,9,9,-9,5,19,-12,-5,-7,-1,-2,3 ; TV[1076]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,9,-21,-5,11,-3,23,-5,7,-7,-9,9,-9,7,23,-21,-7,-5,-5,11,-3,2,-2,0,2,-1,0,-1,2,-1,-1,3,-3,1,5,9,-1,-23,1,5,3,9,-9,5,19,-12,-5,-7,-1,-2,3 ; TV[1077]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-21,-5,11,-3,23,-5,7,-7,-9,9,-9,7,23,-21,-7,-5,-5,11,-3,2,-2,0,2,-1,0,-1,2,-1,-1,3,-3,1,5,9,-1,-23,1,5,3,9,-9,5,19,-12,-5,-7,-1,-2,3,3,9,-23,5,3,5,1,1,-1,-3 ; TV[1078]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-21,-5,11,-3,23,-5,7,-7,-9,2,-2,0,2,-1,0,-1,2,-1,-1,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,9,-9,5,19,-12,-5,-7,-1,-2,3,3,9,-23,5,3,5,1,1,-1,-3 ; TV[1079]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,9,-21,-5,11,-3,23,-5,7,-7,-9,2,-2,0,2,-1,0,-1,2,-1,-1,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,9,-9,5,19,-12,-5,-7,-1,-2,3 ; TV[1080]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-21,-5,11,-3,23,-5,7,-7,-9,1,-1,1,3,-5,-1,3,-1,1,-1,2,-2,0,2,-1,0,-1,2,-1,-1,9,-9,7,23,-21,-7,-5,-5,11,-3,9,-9,5,19,-12,-5,-7,-1,-2,3,3,9,-23,5,3,5,1,1,-1,-3 ; TV[1081]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-21,-5,11,-3,23,-5,7,-7,-9,1,-1,1,3,-5,-1,3,-1,1,-1,2,-2,0,2,-1,0,-1,2,-1,-1,3,-3,-1,1,3,1,5,5,-23,9,9,-9,5,19,-12,-5,-7,-1,-2,3,3,9,-23,5,3,5,1,1,-1,-3 ; TV[1082]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,9,-21,-5,11,-3,23,-5,7,-7,-9,1,-1,1,3,-5,-1,3,-1,1,-1,2,-2,0,2,-1,0,-1,2,-1,-1,9,-9,7,23,-21,-7,-5,-5,11,-3,9,-9,5,19,-12,-5,-7,-1,-2,3 ; TV[1083]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,9,-21,-5,11,-3,23,-5,7,-7,-9,1,-1,1,3,-5,-1,3,-1,1,-1,2,-2,0,2,-1,0,-1,2,-1,-1,3,-3,-1,1,3,1,5,5,-23,9,9,-9,5,19,-12,-5,-7,-1,-2,3 ; TV[1084]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,9,-21,-5,11,-3,23,-5,7,-7,-9,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,1,5,9,-1,-23,1,5,3,2,-2,0,2,-1,0,-1,2,-1,-1,9,-9,7,23,-21,-7,-5,-5,11,-3 ; TV[1085]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-21,-5,11,-3,23,-5,7,-7,-9,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,1,5,9,-1,-23,1,5,3,2,-2,0,2,-1,0,-1,2,-1,-1,9,-9,7,23,-21,-7,-5,-5,11,-3,3,9,-23,5,3,5,1,1,-1,-3 ; TV[1086]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,9,-21,-5,11,-3,23,-5,7,-7,-9,1,-1,-1,-1,-1,1,1,3,3,-5,1,-1,1,3,-5,-1,3,-1,1,-1,2,-2,0,2,-1,0,-1,2,-1,-1,9,-9,7,23,-21,-7,-5,-5,11,-3 ; TV[1087]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-21,-5,11,-3,23,-5,7,-7,-9,1,-1,-1,-1,-1,1,1,3,3,-5,1,-1,1,3,-5,-1,3,-1,1,-1,2,-2,0,2,-1,0,-1,2,-1,-1,9,-9,7,23,-21,-7,-5,-5,11,-3,3,9,-23,5,3,5,1,1,-1,-3 ; TV[1088]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-21,-5,11,-3,23,-5,7,-7,-9,9,-3,-5,-7,-9,11,7,-5,23,-21,3,3,1,-1,-3,5,1,-23,5,9,3,-3,1,5,9,-1,-23,1,5,3,9,-9,7,23,-21,-7,-5,-5,11,-3,3,9,-23,5,3,5,1,1,-1,-3 ; TV[1089]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,9,-21,-5,11,-3,23,-5,7,-7,-9,9,-3,-5,-7,-9,11,7,-5,23,-21,3,3,1,-1,-3,5,1,-23,5,9,3,-3,1,5,9,-1,-23,1,5,3,9,-9,7,23,-21,-7,-5,-5,11,-3 ; TV[1090]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,9,-21,-5,11,-3,23,-5,7,-7,-9,9,-3,-5,-7,-9,11,7,-5,23,-21,1,-1,1,3,-5,-1,3,-1,1,-1,3,3,1,-1,-3,5,1,-23,5,9,9,-9,7,23,-21,-7,-5,-5,11,-3 ; TV[1091]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-21,-5,11,-3,23,-5,7,-7,-9,9,-3,-5,-7,-9,11,7,-5,23,-21,1,-1,1,3,-5,-1,3,-1,1,-1,3,3,1,-1,-3,5,1,-23,5,9,9,-9,7,23,-21,-7,-5,-5,11,-3,3,9,-23,5,3,5,1,1,-1,-3 ; TV[1092]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-21,-5,11,-3,23,-5,7,-7,-9,9,-3,-5,-7,-9,11,7,-5,23,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,1,5,9,-1,-23,1,5,3,9,-9,7,23,-21,-7,-5,-5,11,-3,3,9,-23,5,3,5,1,1,-1,-3 ; TV[1093]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,9,-21,-5,11,-3,23,-5,7,-7,-9,9,-3,-5,-7,-9,11,7,-5,23,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,1,5,9,-1,-23,1,5,3,9,-9,7,23,-21,-7,-5,-5,11,-3 ; TV[1094]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-21,-5,11,-3,23,-5,7,-7,-9,9,-3,-5,-7,-9,11,7,-5,23,-21,1,-1,1,3,-5,-1,3,-1,1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,9,-9,7,23,-21,-7,-5,-5,11,-3,3,9,-23,5,3,5,1,1,-1,-3 ; TV[1095]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,9,-21,-5,11,-3,23,-5,7,-7,-9,9,-3,-5,-7,-9,11,7,-5,23,-21,1,-1,1,3,-5,-1,3,-1,1,-1,1,-1,-1,-1,-1,1,1,3,3,-5,9,-9,7,23,-21,-7,-5,-5,11,-3 ; TV[1096]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,9,-21,-5,11,-3,23,-5,7,-7,-9,9,-9,-7,-5,-3,7,11,23,-5,-21,3,-3,-1,1,3,1,5,5,-23,9,1,-1,1,3,-5,-1,3,-1,1,-1,2,-2,0,2,-1,0,-1,2,-1,-1 ; TV[1097]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-21,-5,11,-3,23,-5,7,-7,-9,9,-9,-7,-5,-3,7,11,23,-5,-21,3,-3,-1,1,3,1,5,5,-23,9,1,-1,1,3,-5,-1,3,-1,1,-1,2,-2,0,2,-1,0,-1,2,-1,-1,3,9,-23,5,3,5,1,1,-1,-3 ; TV[1098]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,9,-21,-5,11,-3,23,-5,7,-7,-9,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-1,-1,-1,-1,1,1,3,3,-5,1,-1,1,3,-5,-1,3,-1,1,-1,2,-2,0,2,-1,0,-1,2,-1,-1 ; TV[1099]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-21,-5,11,-3,23,-5,7,-7,-9,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-1,-1,-1,-1,1,1,3,3,-5,1,-1,1,3,-5,-1,3,-1,1,-1,2,-2,0,2,-1,0,-1,2,-1,-1,3,9,-23,5,3,5,1,1,-1,-3 ; TV[1100]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-21,-5,11,-3,23,-5,7,-7,-9,9,-9,-5,-1,3,5,-2,19,-7,-12,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,2,-2,0,2,-1,0,-1,2,-1,-1,3,9,-23,5,3,5,1,1,-1,-3 ; TV[1101]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,9,-21,-5,11,-3,23,-5,7,-7,-9,9,-9,-5,-1,3,5,-2,19,-7,-12,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,2,-2,0,2,-1,0,-1,2,-1,-1 ; TV[1102]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-21,-5,11,-3,23,-5,7,-7,-9,9,-9,-5,-1,3,5,-2,19,-7,-12,9,-9,-7,-5,-3,7,11,23,-5,-21,3,-3,-1,1,3,1,5,5,-23,9,2,-2,0,2,-1,0,-1,2,-1,-1,3,9,-23,5,3,5,1,1,-1,-3 ; TV[1103]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-21,-5,11,-3,23,-5,7,-7,-9,9,-9,-5,-1,3,5,-2,19,-7,-12,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,1,5,9,-1,-23,1,5,3,2,-2,0,2,-1,0,-1,2,-1,-1,3,9,-23,5,3,5,1,1,-1,-3 ; TV[1104]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,9,-21,-5,11,-3,23,-5,7,-7,-9,9,-9,-5,-1,3,5,-2,19,-7,-12,9,-9,-7,-5,-3,7,11,23,-5,-21,3,-3,-1,1,3,1,5,5,-23,9,2,-2,0,2,-1,0,-1,2,-1,-1 ; TV[1105]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,9,-21,-5,11,-3,23,-5,7,-7,-9,9,-9,-5,-1,3,5,-2,19,-7,-12,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,1,5,9,-1,-23,1,5,3,2,-2,0,2,-1,0,-1,2,-1,-1 ; TV[1106]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,9,-21,-5,11,-3,23,-5,7,-7,-9,9,-9,-5,-1,3,5,-2,19,-7,-12,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-1,-1,-1,-1,1,1,3,3,-5,2,-2,0,2,-1,0,-1,2,-1,-1,3,9,-23,5,3,5,1,1,-1,-3 ; TV[1107]=M; kill M; intmat M[7][10]=-9,1,1,1,1,1,1,1,1,1,1,-5,3,1,-1,3,-1,1,-1,-1,9,-21,-5,11,-3,23,-5,7,-7,-9,9,-9,-5,-1,3,5,-2,19,-7,-12,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-1,-1,-1,-1,1,1,3,3,-5,2,-2,0,2,-1,0,-1,2,-1,-1 ; TV[1108]=M; kill M; intmat M[7][10]=2,-1,-1,-1,-1,2,2,0,0,-2,9,-21,-5,11,-3,23,-5,7,-7,-9,-9,1,1,1,1,1,1,1,1,1,3,-3,-1,1,3,1,5,5,-23,9,3,3,1,-1,-3,5,1,-23,5,9,1,-1,1,3,-5,-1,3,-1,1,-1,3,9,-23,5,3,5,1,1,-1,-3 ; TV[1109]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,9,-21,-5,11,-3,23,-5,7,-7,-9,-9,1,1,1,1,1,1,1,1,1,2,-1,-1,-1,-1,2,2,0,0,-2,3,-3,-1,1,3,1,5,5,-23,9,3,3,1,-1,-3,5,1,-23,5,9,1,-1,1,3,-5,-1,3,-1,1,-1 ; TV[1110]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,9,-21,-5,11,-3,23,-5,7,-7,-9,-9,1,1,1,1,1,1,1,1,1,2,-1,-1,-1,-1,2,2,0,0,-2,9,-3,-5,-7,-9,11,7,-5,23,-21,3,3,1,-1,-3,5,1,-23,5,9,1,-1,1,3,-5,-1,3,-1,1,-1 ; TV[1111]=M; kill M; intmat M[7][10]=2,-1,-1,-1,-1,2,2,0,0,-2,9,-21,-5,11,-3,23,-5,7,-7,-9,-9,1,1,1,1,1,1,1,1,1,9,-3,-5,-7,-9,11,7,-5,23,-21,3,3,1,-1,-3,5,1,-23,5,9,1,-1,1,3,-5,-1,3,-1,1,-1,3,9,-23,5,3,5,1,1,-1,-3 ; TV[1112]=M; kill M; intmat M[7][10]=2,-1,-1,-1,-1,2,2,0,0,-2,9,-21,-5,11,-3,23,-5,7,-7,-9,-9,1,1,1,1,1,1,1,1,1,1,-1,-1,-1,-1,1,1,3,3,-5,9,-3,-5,-7,-9,11,7,-5,23,-21,1,-1,1,3,-5,-1,3,-1,1,-1,3,9,-23,5,3,5,1,1,-1,-3 ; TV[1113]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,9,-21,-5,11,-3,23,-5,7,-7,-9,-9,1,1,1,1,1,1,1,1,1,2,-1,-1,-1,-1,2,2,0,0,-2,1,-1,-1,-1,-1,1,1,3,3,-5,9,-3,-5,-7,-9,11,7,-5,23,-21,1,-1,1,3,-5,-1,3,-1,1,-1 ; TV[1114]=M; kill M; intmat M[7][10]=2,-1,-1,-1,-1,2,2,0,0,-2,9,-21,-5,11,-3,23,-5,7,-7,-9,-9,1,1,1,1,1,1,1,1,1,9,-9,-7,-5,-3,7,11,23,-5,-21,3,-3,-1,1,3,1,5,5,-23,9,1,-1,1,3,-5,-1,3,-1,1,-1,3,9,-23,5,3,5,1,1,-1,-3 ; TV[1115]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,9,-21,-5,11,-3,23,-5,7,-7,-9,-9,1,1,1,1,1,1,1,1,1,2,-1,-1,-1,-1,2,2,0,0,-2,9,-9,-7,-5,-3,7,11,23,-5,-21,3,-3,-1,1,3,1,5,5,-23,9,1,-1,1,3,-5,-1,3,-1,1,-1 ; TV[1116]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,9,-21,-5,11,-3,23,-5,7,-7,-9,-9,1,1,1,1,1,1,1,1,1,2,-1,-1,-1,-1,2,2,0,0,-2,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-1,-1,-1,-1,1,1,3,3,-5,1,-1,1,3,-5,-1,3,-1,1,-1 ; TV[1117]=M; kill M; intmat M[7][10]=2,-1,-1,-1,-1,2,2,0,0,-2,9,-21,-5,11,-3,23,-5,7,-7,-9,-9,1,1,1,1,1,1,1,1,1,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-1,-1,-1,-1,1,1,3,3,-5,1,-1,1,3,-5,-1,3,-1,1,-1,3,9,-23,5,3,5,1,1,-1,-3 ; TV[1118]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,-9,1,1,1,1,1,1,1,1,1,9,-21,-5,11,-3,23,-5,7,-7,-9,9,-12,-7,-2,3,19,-1,5,-5,-9,3,3,1,-1,-3,5,1,-23,5,9,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3 ; TV[1119]=M; kill M; intmat M[7][10]=9,-12,-7,-2,3,19,-1,5,-5,-9,-9,1,1,1,1,1,1,1,1,1,3,3,1,-1,-3,5,1,-23,5,9,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,3,3,5,-23,9,1,5,-1,1,-3,3,9,-23,5,3,5,1,1,-1,-3 ; TV[1120]=M; kill M; intmat M[7][10]=9,-21,-5,11,-3,23,-5,7,-7,-9,-9,1,1,1,1,1,1,1,1,1,9,-12,-7,-2,3,19,-1,5,-5,-9,3,3,1,-1,-3,5,1,-23,5,9,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,3,9,-23,5,3,5,1,1,-1,-3 ; TV[1121]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,-9,1,1,1,1,1,1,1,1,1,9,-12,-7,-2,3,19,-1,5,-5,-9,3,3,1,-1,-3,5,1,-23,5,9,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,3,3,5,-23,9,1,5,-1,1,-3 ; TV[1122]=M; kill M; intmat M[7][10]=9,-12,-7,-2,3,19,-1,5,-5,-9,-9,1,1,1,1,1,1,1,1,1,9,-9,-5,-1,3,5,-2,19,-7,-12,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,3,3,5,-23,9,1,5,-1,1,-3,3,9,-23,5,3,5,1,1,-1,-3 ; TV[1123]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,-9,1,1,1,1,1,1,1,1,1,9,-12,-7,-2,3,19,-1,5,-5,-9,9,-9,-5,-1,3,5,-2,19,-7,-12,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,3,3,5,-23,9,1,5,-1,1,-3 ; TV[1124]=M; kill M; intmat M[7][10]=9,-21,-5,11,-3,23,-5,7,-7,-9,-9,1,1,1,1,1,1,1,1,1,9,-12,-7,-2,3,19,-1,5,-5,-9,9,-9,-5,-1,3,5,-2,19,-7,-12,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3,3,9,-23,5,3,5,1,1,-1,-3 ; TV[1125]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,-9,1,1,1,1,1,1,1,1,1,9,-21,-5,11,-3,23,-5,7,-7,-9,9,-12,-7,-2,3,19,-1,5,-5,-9,9,-9,-5,-1,3,5,-2,19,-7,-12,3,-3,-1,1,3,1,5,5,-23,9,3,-3,1,5,9,-1,-23,1,5,3 ; TV[1126]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,-9,1,1,1,1,1,1,1,1,1,9,-12,-7,-2,3,19,-1,5,-5,-9,9,-9,-7,-5,-3,7,11,23,-5,-21,3,-3,-1,1,3,1,5,5,-23,9,9,-9,-5,-1,3,5,-2,19,-7,-12,3,3,5,-23,9,1,5,-1,1,-3 ; TV[1127]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,-9,1,1,1,1,1,1,1,1,1,9,-12,-7,-2,3,19,-1,5,-5,-9,1,-1,-1,-1,-1,1,1,3,3,-5,9,-9,-5,-1,3,5,-2,19,-7,-12,3,-3,1,5,9,-1,-23,1,5,3,3,3,5,-23,9,1,5,-1,1,-3 ; TV[1128]=M; kill M; intmat M[7][10]=9,-21,-5,11,-3,23,-5,7,-7,-9,-9,1,1,1,1,1,1,1,1,1,9,-12,-7,-2,3,19,-1,5,-5,-9,1,-1,-1,-1,-1,1,1,3,3,-5,9,-9,-5,-1,3,5,-2,19,-7,-12,3,-3,1,5,9,-1,-23,1,5,3,3,9,-23,5,3,5,1,1,-1,-3 ; TV[1129]=M; kill M; intmat M[7][10]=9,-12,-7,-2,3,19,-1,5,-5,-9,-9,1,1,1,1,1,1,1,1,1,1,-1,-1,-1,-1,1,1,3,3,-5,9,-9,-5,-1,3,5,-2,19,-7,-12,3,-3,1,5,9,-1,-23,1,5,3,3,3,5,-23,9,1,5,-1,1,-3,3,9,-23,5,3,5,1,1,-1,-3 ; TV[1130]=M; kill M; intmat M[7][10]=9,-12,-7,-2,3,19,-1,5,-5,-9,-9,1,1,1,1,1,1,1,1,1,9,-9,-7,-5,-3,7,11,23,-5,-21,3,-3,-1,1,3,1,5,5,-23,9,9,-9,-5,-1,3,5,-2,19,-7,-12,3,3,5,-23,9,1,5,-1,1,-3,3,9,-23,5,3,5,1,1,-1,-3 ; TV[1131]=M; kill M; intmat M[7][10]=9,-21,-5,11,-3,23,-5,7,-7,-9,-9,1,1,1,1,1,1,1,1,1,9,-12,-7,-2,3,19,-1,5,-5,-9,9,-9,-7,-5,-3,7,11,23,-5,-21,3,-3,-1,1,3,1,5,5,-23,9,9,-9,-5,-1,3,5,-2,19,-7,-12,3,9,-23,5,3,5,1,1,-1,-3 ; TV[1132]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,-9,1,1,1,1,1,1,1,1,1,9,-21,-5,11,-3,23,-5,7,-7,-9,9,-12,-7,-2,3,19,-1,5,-5,-9,9,-9,-7,-5,-3,7,11,23,-5,-21,3,-3,-1,1,3,1,5,5,-23,9,9,-9,-5,-1,3,5,-2,19,-7,-12 ; TV[1133]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,-9,1,1,1,1,1,1,1,1,1,9,-21,-5,11,-3,23,-5,7,-7,-9,9,-12,-7,-2,3,19,-1,5,-5,-9,1,-1,-1,-1,-1,1,1,3,3,-5,9,-9,-5,-1,3,5,-2,19,-7,-12,3,-3,1,5,9,-1,-23,1,5,3 ; TV[1134]=M; kill M; intmat M[7][10]=9,-12,-7,-2,3,19,-1,5,-5,-9,-9,1,1,1,1,1,1,1,1,1,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-1,-1,-1,-1,1,1,3,3,-5,9,-9,-5,-1,3,5,-2,19,-7,-12,3,3,5,-23,9,1,5,-1,1,-3,3,9,-23,5,3,5,1,1,-1,-3 ; TV[1135]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,-9,1,1,1,1,1,1,1,1,1,9,-12,-7,-2,3,19,-1,5,-5,-9,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-1,-1,-1,-1,1,1,3,3,-5,9,-9,-5,-1,3,5,-2,19,-7,-12,3,3,5,-23,9,1,5,-1,1,-3 ; TV[1136]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,-9,1,1,1,1,1,1,1,1,1,9,-21,-5,11,-3,23,-5,7,-7,-9,9,-12,-7,-2,3,19,-1,5,-5,-9,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-1,-1,-1,-1,1,1,3,3,-5,9,-9,-5,-1,3,5,-2,19,-7,-12 ; TV[1137]=M; kill M; intmat M[7][10]=9,-21,-5,11,-3,23,-5,7,-7,-9,-9,1,1,1,1,1,1,1,1,1,9,-12,-7,-2,3,19,-1,5,-5,-9,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-1,-1,-1,-1,1,1,3,3,-5,9,-9,-5,-1,3,5,-2,19,-7,-12,3,9,-23,5,3,5,1,1,-1,-3 ; TV[1138]=M; kill M; intmat M[7][10]=9,-21,-5,11,-3,23,-5,7,-7,-9,-9,1,1,1,1,1,1,1,1,1,9,-12,-7,-2,3,19,-1,5,-5,-9,9,-3,-5,-7,-9,11,7,-5,23,-21,3,3,1,-1,-3,5,1,-23,5,9,3,-3,1,5,9,-1,-23,1,5,3,3,9,-23,5,3,5,1,1,-1,-3 ; TV[1139]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,-9,1,1,1,1,1,1,1,1,1,9,-21,-5,11,-3,23,-5,7,-7,-9,9,-12,-7,-2,3,19,-1,5,-5,-9,9,-3,-5,-7,-9,11,7,-5,23,-21,3,3,1,-1,-3,5,1,-23,5,9,3,-3,1,5,9,-1,-23,1,5,3 ; TV[1140]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,-9,1,1,1,1,1,1,1,1,1,9,-12,-7,-2,3,19,-1,5,-5,-9,9,-3,-5,-7,-9,11,7,-5,23,-21,3,3,1,-1,-3,5,1,-23,5,9,3,-3,1,5,9,-1,-23,1,5,3,3,3,5,-23,9,1,5,-1,1,-3 ; TV[1141]=M; kill M; intmat M[7][10]=9,-12,-7,-2,3,19,-1,5,-5,-9,-9,1,1,1,1,1,1,1,1,1,9,-3,-5,-7,-9,11,7,-5,23,-21,3,3,1,-1,-3,5,1,-23,5,9,3,-3,1,5,9,-1,-23,1,5,3,3,3,5,-23,9,1,5,-1,1,-3,3,9,-23,5,3,5,1,1,-1,-3 ; TV[1142]=M; kill M; intmat M[7][10]=9,-21,-5,11,-3,23,-5,7,-7,-9,-9,1,1,1,1,1,1,1,1,1,9,-12,-7,-2,3,19,-1,5,-5,-9,9,-3,-5,-7,-9,11,7,-5,23,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,1,5,9,-1,-23,1,5,3,3,9,-23,5,3,5,1,1,-1,-3 ; TV[1143]=M; kill M; intmat M[7][10]=9,-12,-7,-2,3,19,-1,5,-5,-9,-9,1,1,1,1,1,1,1,1,1,9,-3,-5,-7,-9,11,7,-5,23,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,1,5,9,-1,-23,1,5,3,3,3,5,-23,9,1,5,-1,1,-3,3,9,-23,5,3,5,1,1,-1,-3 ; TV[1144]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,-9,1,1,1,1,1,1,1,1,1,9,-21,-5,11,-3,23,-5,7,-7,-9,9,-12,-7,-2,3,19,-1,5,-5,-9,9,-3,-5,-7,-9,11,7,-5,23,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,1,5,9,-1,-23,1,5,3 ; TV[1145]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,-9,1,1,1,1,1,1,1,1,1,9,-12,-7,-2,3,19,-1,5,-5,-9,9,-3,-5,-7,-9,11,7,-5,23,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,-3,1,5,9,-1,-23,1,5,3,3,3,5,-23,9,1,5,-1,1,-3 ; TV[1146]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,9,-12,-7,-2,3,19,-1,5,-5,-9,-9,1,1,1,1,1,1,1,1,1,2,-1,-1,-1,-1,2,2,0,0,-2,3,-3,-1,1,3,1,5,5,-23,9,3,3,1,-1,-3,5,1,-23,5,9,3,3,5,-23,9,1,5,-1,1,-3 ; TV[1147]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,9,-21,-5,11,-3,23,-5,7,-7,-9,-9,1,1,1,1,1,1,1,1,1,9,-12,-7,-2,3,19,-1,5,-5,-9,2,-1,-1,-1,-1,2,2,0,0,-2,3,-3,-1,1,3,1,5,5,-23,9,3,3,1,-1,-3,5,1,-23,5,9 ; TV[1148]=M; kill M; intmat M[7][10]=9,-21,-5,11,-3,23,-5,7,-7,-9,9,-12,-7,-2,3,19,-1,5,-5,-9,-9,1,1,1,1,1,1,1,1,1,2,-1,-1,-1,-1,2,2,0,0,-2,3,-3,-1,1,3,1,5,5,-23,9,3,3,1,-1,-3,5,1,-23,5,9,3,9,-23,5,3,5,1,1,-1,-3 ; TV[1149]=M; kill M; intmat M[7][10]=9,-12,-7,-2,3,19,-1,5,-5,-9,2,-1,-1,-1,-1,2,2,0,0,-2,-9,1,1,1,1,1,1,1,1,1,3,-3,-1,1,3,1,5,5,-23,9,3,3,1,-1,-3,5,1,-23,5,9,3,3,5,-23,9,1,5,-1,1,-3,3,9,-23,5,3,5,1,1,-1,-3 ; TV[1150]=M; kill M; intmat M[7][10]=9,-21,-5,11,-3,23,-5,7,-7,-9,9,-12,-7,-2,3,19,-1,5,-5,-9,-9,1,1,1,1,1,1,1,1,1,2,-1,-1,-1,-1,2,2,0,0,-2,9,-3,-5,-7,-9,11,7,-5,23,-21,3,3,1,-1,-3,5,1,-23,5,9,3,9,-23,5,3,5,1,1,-1,-3 ; TV[1151]=M; kill M; intmat M[7][10]=9,-12,-7,-2,3,19,-1,5,-5,-9,2,-1,-1,-1,-1,2,2,0,0,-2,-9,1,1,1,1,1,1,1,1,1,9,-3,-5,-7,-9,11,7,-5,23,-21,3,3,1,-1,-3,5,1,-23,5,9,3,3,5,-23,9,1,5,-1,1,-3,3,9,-23,5,3,5,1,1,-1,-3 ; TV[1152]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,9,-21,-5,11,-3,23,-5,7,-7,-9,-9,1,1,1,1,1,1,1,1,1,9,-12,-7,-2,3,19,-1,5,-5,-9,2,-1,-1,-1,-1,2,2,0,0,-2,9,-3,-5,-7,-9,11,7,-5,23,-21,3,3,1,-1,-3,5,1,-23,5,9 ; TV[1153]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,9,-12,-7,-2,3,19,-1,5,-5,-9,-9,1,1,1,1,1,1,1,1,1,2,-1,-1,-1,-1,2,2,0,0,-2,9,-3,-5,-7,-9,11,7,-5,23,-21,3,3,1,-1,-3,5,1,-23,5,9,3,3,5,-23,9,1,5,-1,1,-3 ; TV[1154]=M; kill M; intmat M[7][10]=9,-12,-7,-2,3,19,-1,5,-5,-9,2,-1,-1,-1,-1,2,2,0,0,-2,-9,1,1,1,1,1,1,1,1,1,1,-1,-1,-1,-1,1,1,3,3,-5,9,-3,-5,-7,-9,11,7,-5,23,-21,3,3,5,-23,9,1,5,-1,1,-3,3,9,-23,5,3,5,1,1,-1,-3 ; TV[1155]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,9,-12,-7,-2,3,19,-1,5,-5,-9,-9,1,1,1,1,1,1,1,1,1,2,-1,-1,-1,-1,2,2,0,0,-2,1,-1,-1,-1,-1,1,1,3,3,-5,9,-3,-5,-7,-9,11,7,-5,23,-21,3,3,5,-23,9,1,5,-1,1,-3 ; TV[1156]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,9,-21,-5,11,-3,23,-5,7,-7,-9,-9,1,1,1,1,1,1,1,1,1,9,-12,-7,-2,3,19,-1,5,-5,-9,2,-1,-1,-1,-1,2,2,0,0,-2,1,-1,-1,-1,-1,1,1,3,3,-5,9,-3,-5,-7,-9,11,7,-5,23,-21 ; TV[1157]=M; kill M; intmat M[7][10]=9,-21,-5,11,-3,23,-5,7,-7,-9,9,-12,-7,-2,3,19,-1,5,-5,-9,-9,1,1,1,1,1,1,1,1,1,2,-1,-1,-1,-1,2,2,0,0,-2,1,-1,-1,-1,-1,1,1,3,3,-5,9,-3,-5,-7,-9,11,7,-5,23,-21,3,9,-23,5,3,5,1,1,-1,-3 ; TV[1158]=M; kill M; intmat M[7][10]=9,-12,-7,-2,3,19,-1,5,-5,-9,2,-1,-1,-1,-1,2,2,0,0,-2,-9,1,1,1,1,1,1,1,1,1,9,-9,-7,-5,-3,7,11,23,-5,-21,3,-3,-1,1,3,1,5,5,-23,9,3,3,5,-23,9,1,5,-1,1,-3,3,9,-23,5,3,5,1,1,-1,-3 ; TV[1159]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,9,-12,-7,-2,3,19,-1,5,-5,-9,-9,1,1,1,1,1,1,1,1,1,2,-1,-1,-1,-1,2,2,0,0,-2,9,-9,-7,-5,-3,7,11,23,-5,-21,3,-3,-1,1,3,1,5,5,-23,9,3,3,5,-23,9,1,5,-1,1,-3 ; TV[1160]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,9,-21,-5,11,-3,23,-5,7,-7,-9,-9,1,1,1,1,1,1,1,1,1,9,-12,-7,-2,3,19,-1,5,-5,-9,2,-1,-1,-1,-1,2,2,0,0,-2,9,-9,-7,-5,-3,7,11,23,-5,-21,3,-3,-1,1,3,1,5,5,-23,9 ; TV[1161]=M; kill M; intmat M[7][10]=9,-21,-5,11,-3,23,-5,7,-7,-9,9,-12,-7,-2,3,19,-1,5,-5,-9,-9,1,1,1,1,1,1,1,1,1,2,-1,-1,-1,-1,2,2,0,0,-2,9,-9,-7,-5,-3,7,11,23,-5,-21,3,-3,-1,1,3,1,5,5,-23,9,3,9,-23,5,3,5,1,1,-1,-3 ; TV[1162]=M; kill M; intmat M[7][10]=9,-21,-5,11,-3,23,-5,7,-7,-9,9,-12,-7,-2,3,19,-1,5,-5,-9,-9,1,1,1,1,1,1,1,1,1,2,-1,-1,-1,-1,2,2,0,0,-2,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,9,-23,5,3,5,1,1,-1,-3 ; TV[1163]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,9,-21,-5,11,-3,23,-5,7,-7,-9,-9,1,1,1,1,1,1,1,1,1,9,-12,-7,-2,3,19,-1,5,-5,-9,2,-1,-1,-1,-1,2,2,0,0,-2,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-1,-1,-1,-1,1,1,3,3,-5 ; TV[1164]=M; kill M; intmat M[7][10]=9,-12,-7,-2,3,19,-1,5,-5,-9,2,-1,-1,-1,-1,2,2,0,0,-2,-9,1,1,1,1,1,1,1,1,1,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,3,5,-23,9,1,5,-1,1,-3,3,9,-23,5,3,5,1,1,-1,-3 ; TV[1165]=M; kill M; intmat M[7][10]=1,-5,3,1,-1,3,-1,1,-1,-1,9,-12,-7,-2,3,19,-1,5,-5,-9,-9,1,1,1,1,1,1,1,1,1,2,-1,-1,-1,-1,2,2,0,0,-2,9,-9,-7,-5,-3,7,11,23,-5,-21,1,-1,-1,-1,-1,1,1,3,3,-5,3,3,5,-23,9,1,5,-1,1,-3 ; TV[1166]=M; kill M; } if ((polygon=="2x2") and (art=="discriminant")) { intmat M[12][9]=8,8,-1,-10,-1,-1,-10,-1,8,2,-1,2,-1,-1,-1,-1,2,-1,5,-4,2,-1,-1,2,2,-1,-4,5,-1,2,-4,2,-1,-4,-1,2,5,2,-1,-4,-1,2,-4,2,-1,5,-4,-1,2,2,-1,-1,2,-4,2,-1,-1,-1,2,2,-1,-1,-1,8,-10,-1,8,-1,-1,8,-1,-10,2,5,2,-1,-13,-1,5,2,-1,2,5,-13,5,2,2,-1,-1,-1,2,-1,2,5,-1,-13,-1,2,5,2,-1,-1,-1,2,2,5,-13,5 ; TV[1]=M; kill M; intmat M[9][9]=2,-1,-1,-1,2,2,-1,-1,-1,5,2,-1,-4,-1,2,-4,2,-1,5,-1,2,-4,2,-1,-4,-1,2,8,8,-1,-10,-1,-1,-10,-1,8,5,-4,2,-1,-1,2,2,-1,-4,2,-1,2,-1,-1,-1,-1,2,-1,2,5,2,-1,-13,-1,5,2,-1,2,-1,-1,-1,2,2,5,-13,5,2,2,5,-10,-1,5,-4,-1,2 ; TV[2]=M; kill M; intmat M[9][9]=2,-1,2,-1,-1,-1,-1,2,-1,5,2,-1,-4,-1,2,-4,2,-1,5,-1,2,-4,2,-1,-4,-1,2,8,8,-1,-10,-1,-1,-10,-1,8,5,-4,-1,2,2,-1,-1,2,-4,2,-1,-1,-1,2,2,-1,-1,-1,2,5,-13,5,2,2,-1,-1,-1,2,-1,2,5,-1,-13,-1,2,5,2,2,-1,-4,5,-1,-10,5,2 ; TV[3]=M; kill M; intmat M[9][9]=2,5,2,-1,-13,-1,5,2,-1,2,-1,2,-1,-1,-1,-1,2,-1,5,-4,2,-1,-1,2,2,-1,-4,5,2,-1,-4,-1,2,-4,2,-1,5,-4,-1,2,2,-1,-1,2,-4,2,5,-13,5,2,2,-1,-1,-1,2,-1,-1,-1,2,2,-1,-1,-1,8,-10,-1,8,-1,-1,8,-1,-10,2,-4,-1,2,-1,5,2,5,-10 ; TV[4]=M; kill M; intmat M[9][9]=2,-1,2,5,-1,-13,-1,2,5,5,-1,2,-4,2,-1,-4,-1,2,5,-4,-1,2,2,-1,-1,2,-4,2,-1,2,-1,-1,-1,-1,2,-1,5,-4,2,-1,-1,2,2,-1,-4,8,-10,-1,8,-1,-1,8,-1,-10,2,-1,-1,-1,2,2,5,-13,5,2,-1,-1,-1,2,2,-1,-1,-1,2,-10,5,2,5,-1,2,-1,-4 ; TV[5]=M; kill M; intmat M[7][9]=2,-1,2,-1,-1,-1,-1,2,-1,5,2,-1,-4,-1,2,-4,2,-1,2,-1,2,5,-1,-13,-1,2,5,8,8,-1,-10,-1,-1,-10,-1,8,2,5,-13,5,2,2,-1,-1,-1,2,2,-1,-4,5,-1,-10,5,2,2,5,2,-1,-13,-1,5,2,-1 ; TV[6]=M; kill M; intmat M[7][9]=2,-1,-1,-1,2,2,-1,-1,-1,5,2,-1,-4,-1,2,-4,2,-1,2,-1,-1,-1,2,2,5,-13,5,8,8,-1,-10,-1,-1,-10,-1,8,2,5,2,-1,-13,-1,5,2,-1,2,5,-13,5,2,2,-1,-1,-1,2,2,5,-10,-1,5,-4,-1,2 ; TV[7]=M; kill M; intmat M[7][9]=2,-1,2,-1,-1,-1,-1,2,-1,5,-1,2,-4,2,-1,-4,-1,2,2,5,2,-1,-13,-1,5,2,-1,8,8,-1,-10,-1,-1,-10,-1,8,2,-1,-1,-1,2,2,5,-13,5,2,2,5,-10,-1,5,-4,-1,2,2,-1,2,5,-1,-13,-1,2,5 ; TV[8]=M; kill M; intmat M[7][9]=8,8,-1,-10,-1,-1,-10,-1,8,5,2,-1,-4,-1,2,-4,2,-1,5,-1,2,-4,2,-1,-4,-1,2,2,-1,2,-1,-1,-1,-1,2,-1,2,-1,-1,-1,2,2,-1,-1,-1,2,2,5,-10,-1,5,-4,-1,2,2,2,-1,-4,5,-1,-10,5,2 ; TV[9]=M; kill M; intmat M[7][9]=2,-1,-1,-1,2,2,-1,-1,-1,5,2,-1,-4,-1,2,-4,2,-1,5,-4,2,-1,-1,2,2,-1,-4,2,5,2,-1,-13,-1,5,2,-1,2,-1,2,-1,-1,-1,-1,2,-1,2,2,5,-10,-1,5,-4,-1,2,2,-4,-1,2,-1,5,2,5,-10 ; TV[10]=M; kill M; intmat M[7][9]=2,-1,2,-1,-1,-1,-1,2,-1,5,-4,-1,2,2,-1,-1,2,-4,2,5,2,-1,-13,-1,5,2,-1,2,5,-13,5,2,2,-1,-1,-1,8,-10,-1,8,-1,-1,8,-1,-10,2,-4,-1,2,-1,5,2,5,-10,2,-1,2,5,-1,-13,-1,2,5 ; TV[11]=M; kill M; intmat M[7][9]=2,-1,-1,-1,2,2,-1,-1,-1,5,-1,2,-4,2,-1,-4,-1,2,2,5,-13,5,2,2,-1,-1,-1,8,8,-1,-10,-1,-1,-10,-1,8,2,-1,2,5,-1,-13,-1,2,5,2,2,-1,-4,5,-1,-10,5,2,2,-1,-1,-1,2,2,5,-13,5 ; TV[12]=M; kill M; intmat M[7][9]=2,-1,2,-1,-1,-1,-1,2,-1,5,2,-1,-4,-1,2,-4,2,-1,5,-4,-1,2,2,-1,-1,2,-4,2,5,-13,5,2,2,-1,-1,-1,2,-1,-1,-1,2,2,-1,-1,-1,2,-4,-1,2,-1,5,2,5,-10,2,2,-1,-4,5,-1,-10,5,2 ; TV[13]=M; kill M; intmat M[7][9]=2,-1,-1,-1,2,2,-1,-1,-1,5,-4,2,-1,-1,2,2,-1,-4,2,5,-13,5,2,2,-1,-1,-1,2,5,2,-1,-13,-1,5,2,-1,8,-10,-1,8,-1,-1,8,-1,-10,2,-4,-1,2,-1,5,2,5,-10,2,-1,-1,-1,2,2,5,-13,5 ; TV[14]=M; kill M; intmat M[7][9]=2,-1,2,-1,-1,-1,-1,2,-1,5,-4,2,-1,-1,2,2,-1,-4,2,-1,2,5,-1,-13,-1,2,5,2,-1,-1,-1,2,2,5,-13,5,8,-10,-1,8,-1,-1,8,-1,-10,2,-10,5,2,5,-1,2,-1,-4,2,5,2,-1,-13,-1,5,2,-1 ; TV[15]=M; kill M; intmat M[7][9]=2,-1,2,-1,-1,-1,-1,2,-1,5,-1,2,-4,2,-1,-4,-1,2,5,-4,2,-1,-1,2,2,-1,-4,2,-1,-1,-1,2,2,5,-13,5,2,-1,-1,-1,2,2,-1,-1,-1,2,-10,5,2,5,-1,2,-1,-4,2,2,5,-10,-1,5,-4,-1,2 ; TV[16]=M; kill M; intmat M[7][9]=2,-1,-1,-1,2,2,-1,-1,-1,5,-1,2,-4,2,-1,-4,-1,2,5,-4,-1,2,2,-1,-1,2,-4,2,-1,2,-1,-1,-1,-1,2,-1,2,-1,2,5,-1,-13,-1,2,5,2,-10,5,2,5,-1,2,-1,-4,2,2,-1,-4,5,-1,-10,5,2 ; TV[17]=M; kill M; intmat M[7][9]=2,-1,2,-1,-1,-1,-1,2,-1,5,-4,2,-1,-1,2,2,-1,-4,5,-4,-1,2,2,-1,-1,2,-4,8,-10,-1,8,-1,-1,8,-1,-10,2,-1,-1,-1,2,2,-1,-1,-1,2,-10,5,2,5,-1,2,-1,-4,2,-4,-1,2,-1,5,2,5,-10 ; TV[18]=M; kill M; intmat M[7][9]=2,-1,-1,-1,2,2,-1,-1,-1,5,-4,-1,2,2,-1,-1,2,-4,2,-1,-1,-1,2,2,5,-13,5,2,-1,2,5,-1,-13,-1,2,5,8,-10,-1,8,-1,-1,8,-1,-10,2,5,-13,5,2,2,-1,-1,-1,2,-10,5,2,5,-1,2,-1,-4 ; TV[19]=M; kill M; intmat M[6][9]=2,2,-1,-4,5,-1,-10,5,2,2,2,5,-10,-1,5,-4,-1,2,2,5,2,-1,-13,-1,5,2,-1,2,-1,2,-1,-1,-1,-1,2,-1,5,2,-1,-4,-1,2,-4,2,-1,8,8,-1,-10,-1,-1,-10,-1,8 ; TV[20]=M; kill M; intmat M[6][9]=2,2,-1,-4,5,-1,-10,5,2,2,-4,-1,2,-1,5,2,5,-10,2,5,2,-1,-13,-1,5,2,-1,5,2,-1,-4,-1,2,-4,2,-1,2,5,-13,5,2,2,-1,-1,-1,2,-1,2,-1,-1,-1,-1,2,-1 ; TV[21]=M; kill M; intmat M[6][9]=2,5,-13,5,2,2,-1,-1,-1,2,2,5,-10,-1,5,-4,-1,2,2,2,-1,-4,5,-1,-10,5,2,2,-1,-1,-1,2,2,-1,-1,-1,5,2,-1,-4,-1,2,-4,2,-1,8,8,-1,-10,-1,-1,-10,-1,8 ; TV[22]=M; kill M; intmat M[6][9]=2,5,-13,5,2,2,-1,-1,-1,2,2,5,-10,-1,5,-4,-1,2,2,-4,-1,2,-1,5,2,5,-10,2,5,2,-1,-13,-1,5,2,-1,5,2,-1,-4,-1,2,-4,2,-1,2,-1,-1,-1,2,2,-1,-1,-1 ; TV[23]=M; kill M; intmat M[6][9]=2,2,5,-10,-1,5,-4,-1,2,2,2,-1,-4,5,-1,-10,5,2,2,-1,2,5,-1,-13,-1,2,5,5,-1,2,-4,2,-1,-4,-1,2,2,-1,2,-1,-1,-1,-1,2,-1,8,8,-1,-10,-1,-1,-10,-1,8 ; TV[24]=M; kill M; intmat M[6][9]=2,2,5,-10,-1,5,-4,-1,2,2,2,-1,-4,5,-1,-10,5,2,5,-1,2,-4,2,-1,-4,-1,2,2,-1,-1,-1,2,2,5,-13,5,2,-1,-1,-1,2,2,-1,-1,-1,8,8,-1,-10,-1,-1,-10,-1,8 ; TV[25]=M; kill M; intmat M[6][9]=2,2,5,-10,-1,5,-4,-1,2,2,-4,-1,2,-1,5,2,5,-10,2,2,-1,-4,5,-1,-10,5,2,2,-1,2,-1,-1,-1,-1,2,-1,2,-1,-1,-1,2,2,-1,-1,-1,5,2,-1,-4,-1,2,-4,2,-1 ; TV[26]=M; kill M; intmat M[6][9]=2,2,5,-10,-1,5,-4,-1,2,2,-4,-1,2,-1,5,2,5,-10,5,-4,2,-1,-1,2,2,-1,-4,2,-1,-1,-1,2,2,5,-13,5,2,5,2,-1,-13,-1,5,2,-1,2,-1,-1,-1,2,2,-1,-1,-1 ; TV[27]=M; kill M; intmat M[6][9]=2,-4,-1,2,-1,5,2,5,-10,2,2,-1,-4,5,-1,-10,5,2,2,-1,2,5,-1,-13,-1,2,5,5,-4,-1,2,2,-1,-1,2,-4,2,5,-13,5,2,2,-1,-1,-1,2,-1,2,-1,-1,-1,-1,2,-1 ; TV[28]=M; kill M; intmat M[6][9]=2,2,5,-10,-1,5,-4,-1,2,2,-10,5,2,5,-1,2,-1,-4,2,-1,2,5,-1,-13,-1,2,5,5,-1,2,-4,2,-1,-4,-1,2,2,-1,-1,-1,2,2,5,-13,5,2,-1,2,-1,-1,-1,-1,2,-1 ; TV[29]=M; kill M; intmat M[6][9]=2,-10,5,2,5,-1,2,-1,-4,2,2,5,-10,-1,5,-4,-1,2,2,5,2,-1,-13,-1,5,2,-1,5,-4,2,-1,-1,2,2,-1,-4,2,-1,-1,-1,2,2,5,-13,5,2,-1,2,-1,-1,-1,-1,2,-1 ; TV[30]=M; kill M; intmat M[6][9]=2,-10,5,2,5,-1,2,-1,-4,2,-4,-1,2,-1,5,2,5,-10,2,5,2,-1,-13,-1,5,2,-1,8,-10,-1,8,-1,-1,8,-1,-10,5,-4,2,-1,-1,2,2,-1,-4,2,-1,2,-1,-1,-1,-1,2,-1 ; TV[31]=M; kill M; intmat M[6][9]=2,-10,5,2,5,-1,2,-1,-4,2,2,-1,-4,5,-1,-10,5,2,2,2,5,-10,-1,5,-4,-1,2,2,-1,-1,-1,2,2,-1,-1,-1,2,-1,2,-1,-1,-1,-1,2,-1,5,-1,2,-4,2,-1,-4,-1,2 ; TV[32]=M; kill M; intmat M[6][9]=2,-10,5,2,5,-1,2,-1,-4,2,-4,-1,2,-1,5,2,5,-10,2,2,5,-10,-1,5,-4,-1,2,2,-1,-1,-1,2,2,-1,-1,-1,5,-4,2,-1,-1,2,2,-1,-4,2,-1,2,-1,-1,-1,-1,2,-1 ; TV[33]=M; kill M; intmat M[6][9]=2,-4,-1,2,-1,5,2,5,-10,2,-10,5,2,5,-1,2,-1,-4,2,-1,2,5,-1,-13,-1,2,5,5,-4,-1,2,2,-1,-1,2,-4,8,-10,-1,8,-1,-1,8,-1,-10,2,-1,2,-1,-1,-1,-1,2,-1 ; TV[34]=M; kill M; intmat M[6][9]=2,-10,5,2,5,-1,2,-1,-4,2,2,-1,-4,5,-1,-10,5,2,2,-1,2,5,-1,-13,-1,2,5,2,-1,-1,-1,2,2,5,-13,5,5,-1,2,-4,2,-1,-4,-1,2,2,-1,-1,-1,2,2,-1,-1,-1 ; TV[35]=M; kill M; intmat M[6][9]=2,-10,5,2,5,-1,2,-1,-4,2,-4,-1,2,-1,5,2,5,-10,2,2,-1,-4,5,-1,-10,5,2,5,-4,-1,2,2,-1,-1,2,-4,2,-1,-1,-1,2,2,-1,-1,-1,2,-1,2,-1,-1,-1,-1,2,-1 ; TV[36]=M; kill M; intmat M[6][9]=2,-10,5,2,5,-1,2,-1,-4,2,-4,-1,2,-1,5,2,5,-10,2,-1,-1,-1,2,2,-1,-1,-1,2,-1,-1,-1,2,2,5,-13,5,8,-10,-1,8,-1,-1,8,-1,-10,5,-4,2,-1,-1,2,2,-1,-4 ; TV[37]=M; kill M; intmat M[6][9]=2,5,-13,5,2,2,-1,-1,-1,2,-10,5,2,5,-1,2,-1,-4,2,2,-1,-4,5,-1,-10,5,2,5,-4,-1,2,2,-1,-1,2,-4,2,-1,2,5,-1,-13,-1,2,5,2,-1,-1,-1,2,2,-1,-1,-1 ; TV[38]=M; kill M; intmat M[6][9]=2,5,-13,5,2,2,-1,-1,-1,2,-10,5,2,5,-1,2,-1,-4,2,-4,-1,2,-1,5,2,5,-10,2,-1,-1,-1,2,2,-1,-1,-1,8,-10,-1,8,-1,-1,8,-1,-10,5,-4,-1,2,2,-1,-1,2,-4 ; TV[39]=M; kill M; intmat M[6][9]=2,2,-1,-4,5,-1,-10,5,2,2,2,5,-10,-1,5,-4,-1,2,2,5,-13,5,2,2,-1,-1,-1,2,5,2,-1,-13,-1,5,2,-1,8,8,-1,-10,-1,-1,-10,-1,8,5,2,-1,-4,-1,2,-4,2,-1 ; TV[40]=M; kill M; intmat M[6][9]=2,2,5,-10,-1,5,-4,-1,2,2,2,-1,-4,5,-1,-10,5,2,2,-1,2,5,-1,-13,-1,2,5,2,5,2,-1,-13,-1,5,2,-1,2,-1,2,-1,-1,-1,-1,2,-1,8,8,-1,-10,-1,-1,-10,-1,8 ; TV[41]=M; kill M; intmat M[6][9]=2,2,-1,-4,5,-1,-10,5,2,2,-4,-1,2,-1,5,2,5,-10,2,5,2,-1,-13,-1,5,2,-1,2,-1,2,-1,-1,-1,-1,2,-1,2,2,5,-10,-1,5,-4,-1,2,5,2,-1,-4,-1,2,-4,2,-1 ; TV[42]=M; kill M; intmat M[6][9]=2,-4,-1,2,-1,5,2,5,-10,2,2,-1,-4,5,-1,-10,5,2,2,-1,2,5,-1,-13,-1,2,5,2,5,2,-1,-13,-1,5,2,-1,2,-1,2,-1,-1,-1,-1,2,-1,2,5,-13,5,2,2,-1,-1,-1 ; TV[43]=M; kill M; intmat M[6][9]=2,5,-13,5,2,2,-1,-1,-1,2,2,-1,-4,5,-1,-10,5,2,2,2,5,-10,-1,5,-4,-1,2,2,-1,-1,-1,2,2,5,-13,5,2,-1,-1,-1,2,2,-1,-1,-1,8,8,-1,-10,-1,-1,-10,-1,8 ; TV[44]=M; kill M; intmat M[6][9]=2,5,-13,5,2,2,-1,-1,-1,2,2,5,-10,-1,5,-4,-1,2,2,-4,-1,2,-1,5,2,5,-10,2,2,-1,-4,5,-1,-10,5,2,2,-1,-1,-1,2,2,-1,-1,-1,5,2,-1,-4,-1,2,-4,2,-1 ; TV[45]=M; kill M; intmat M[6][9]=2,5,-13,5,2,2,-1,-1,-1,2,-4,-1,2,-1,5,2,5,-10,2,2,5,-10,-1,5,-4,-1,2,2,-1,-1,-1,2,2,5,-13,5,2,-1,-1,-1,2,2,-1,-1,-1,2,5,2,-1,-13,-1,5,2,-1 ; TV[46]=M; kill M; intmat M[6][9]=2,2,5,-10,-1,5,-4,-1,2,2,2,-1,-4,5,-1,-10,5,2,2,-1,2,5,-1,-13,-1,2,5,2,-1,-1,-1,2,2,5,-13,5,8,8,-1,-10,-1,-1,-10,-1,8,5,-1,2,-4,2,-1,-4,-1,2 ; TV[47]=M; kill M; intmat M[6][9]=2,-10,5,2,5,-1,2,-1,-4,2,2,5,-10,-1,5,-4,-1,2,2,5,2,-1,-13,-1,5,2,-1,2,-1,2,5,-1,-13,-1,2,5,2,-1,2,-1,-1,-1,-1,2,-1,2,-1,-1,-1,2,2,5,-13,5 ; TV[48]=M; kill M; intmat M[6][9]=2,2,5,-10,-1,5,-4,-1,2,2,-10,5,2,5,-1,2,-1,-4,2,2,-1,-4,5,-1,-10,5,2,2,-1,2,5,-1,-13,-1,2,5,2,-1,2,-1,-1,-1,-1,2,-1,5,-1,2,-4,2,-1,-4,-1,2 ; TV[49]=M; kill M; intmat M[6][9]=2,-10,5,2,5,-1,2,-1,-4,2,-4,-1,2,-1,5,2,5,-10,2,2,5,-10,-1,5,-4,-1,2,2,5,2,-1,-13,-1,5,2,-1,2,-1,2,-1,-1,-1,-1,2,-1,5,-4,2,-1,-1,2,2,-1,-4 ; TV[50]=M; kill M; intmat M[6][9]=2,-10,5,2,5,-1,2,-1,-4,2,-4,-1,2,-1,5,2,5,-10,2,-1,2,5,-1,-13,-1,2,5,2,5,2,-1,-13,-1,5,2,-1,8,-10,-1,8,-1,-1,8,-1,-10,2,-1,2,-1,-1,-1,-1,2,-1 ; TV[51]=M; kill M; intmat M[6][9]=2,-10,5,2,5,-1,2,-1,-4,2,-4,-1,2,-1,5,2,5,-10,2,5,2,-1,-13,-1,5,2,-1,2,-1,-1,-1,2,2,5,-13,5,8,-10,-1,8,-1,-1,8,-1,-10,5,-4,2,-1,-1,2,2,-1,-4 ; TV[52]=M; kill M; intmat M[6][9]=2,-10,5,2,5,-1,2,-1,-4,2,2,-1,-4,5,-1,-10,5,2,2,2,5,-10,-1,5,-4,-1,2,2,-1,-1,-1,2,2,5,-13,5,2,-1,-1,-1,2,2,-1,-1,-1,5,-1,2,-4,2,-1,-4,-1,2 ; TV[53]=M; kill M; intmat M[6][9]=2,-10,5,2,5,-1,2,-1,-4,2,-4,-1,2,-1,5,2,5,-10,2,2,-1,-4,5,-1,-10,5,2,2,2,5,-10,-1,5,-4,-1,2,2,-1,-1,-1,2,2,-1,-1,-1,2,-1,2,-1,-1,-1,-1,2,-1 ; TV[54]=M; kill M; intmat M[6][9]=2,-10,5,2,5,-1,2,-1,-4,2,-4,-1,2,-1,5,2,5,-10,2,2,5,-10,-1,5,-4,-1,2,2,-1,-1,-1,2,2,5,-13,5,2,-1,-1,-1,2,2,-1,-1,-1,5,-4,2,-1,-1,2,2,-1,-4 ; TV[55]=M; kill M; intmat M[6][9]=2,-4,-1,2,-1,5,2,5,-10,2,-10,5,2,5,-1,2,-1,-4,2,-1,2,5,-1,-13,-1,2,5,2,2,-1,-4,5,-1,-10,5,2,2,-1,2,-1,-1,-1,-1,2,-1,5,-4,-1,2,2,-1,-1,2,-4 ; TV[56]=M; kill M; intmat M[6][9]=2,-4,-1,2,-1,5,2,5,-10,2,-10,5,2,5,-1,2,-1,-4,2,5,-13,5,2,2,-1,-1,-1,2,-1,2,5,-1,-13,-1,2,5,8,-10,-1,8,-1,-1,8,-1,-10,5,-4,-1,2,2,-1,-1,2,-4 ; TV[57]=M; kill M; intmat M[6][9]=2,5,-13,5,2,2,-1,-1,-1,2,-10,5,2,5,-1,2,-1,-4,2,2,-1,-4,5,-1,-10,5,2,2,-1,-1,-1,2,2,5,-13,5,2,-1,-1,-1,2,2,-1,-1,-1,2,-1,2,5,-1,-13,-1,2,5 ; TV[58]=M; kill M; intmat M[6][9]=2,5,-13,5,2,2,-1,-1,-1,2,-10,5,2,5,-1,2,-1,-4,2,-4,-1,2,-1,5,2,5,-10,2,2,-1,-4,5,-1,-10,5,2,2,-1,-1,-1,2,2,-1,-1,-1,5,-4,-1,2,2,-1,-1,2,-4 ; TV[59]=M; kill M; intmat M[6][9]=2,5,-13,5,2,2,-1,-1,-1,2,-10,5,2,5,-1,2,-1,-4,2,-4,-1,2,-1,5,2,5,-10,2,-1,-1,-1,2,2,5,-13,5,2,-1,-1,-1,2,2,-1,-1,-1,8,-10,-1,8,-1,-1,8,-1,-10 ; TV[60]=M; kill M; intmat M[6][9]=2,2,-1,-4,5,-1,-10,5,2,2,2,5,-10,-1,5,-4,-1,2,2,-4,-1,2,-1,5,2,5,-10,2,5,2,-1,-13,-1,5,2,-1,2,5,-13,5,2,2,-1,-1,-1,5,2,-1,-4,-1,2,-4,2,-1 ; TV[61]=M; kill M; intmat M[6][9]=2,2,5,-10,-1,5,-4,-1,2,2,2,-1,-4,5,-1,-10,5,2,2,-10,5,2,5,-1,2,-1,-4,2,-1,-1,-1,2,2,5,-13,5,2,-1,2,5,-1,-13,-1,2,5,5,-1,2,-4,2,-1,-4,-1,2 ; TV[62]=M; kill M; intmat M[6][9]=2,-10,5,2,5,-1,2,-1,-4,2,-4,-1,2,-1,5,2,5,-10,2,2,5,-10,-1,5,-4,-1,2,2,-1,-1,-1,2,2,5,-13,5,2,5,2,-1,-13,-1,5,2,-1,5,-4,2,-1,-1,2,2,-1,-4 ; TV[63]=M; kill M; intmat M[6][9]=2,-4,-1,2,-1,5,2,5,-10,2,-10,5,2,5,-1,2,-1,-4,2,5,-13,5,2,2,-1,-1,-1,2,2,-1,-4,5,-1,-10,5,2,2,-1,2,5,-1,-13,-1,2,5,5,-4,-1,2,2,-1,-1,2,-4 ; TV[64]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-1,2,5,-1,-13,-1,2,5,2,5,-13,5,2,2,-1,-1,-1,2,-1,-1,-1,2,2,5,-13,5,2,5,2,-1,-13,-1,5,2,-1,8,8,-1,-10,-1,-1,-10,-1,8 ; TV[65]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-1,2,5,-1,-13,-1,2,5,2,5,-13,5,2,2,-1,-1,-1,2,2,-1,-4,5,-1,-10,5,2,2,5,2,-1,-13,-1,5,2,-1,8,8,-1,-10,-1,-1,-10,-1,8 ; TV[66]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,2,5,-10,-1,5,-4,-1,2,2,5,-13,5,2,2,-1,-1,-1,2,-1,-1,-1,2,2,5,-13,5,2,5,2,-1,-13,-1,5,2,-1,8,8,-1,-10,-1,-1,-10,-1,8 ; TV[67]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,2,5,-10,-1,5,-4,-1,2,2,5,-13,5,2,2,-1,-1,-1,2,2,-1,-4,5,-1,-10,5,2,2,5,2,-1,-13,-1,5,2,-1,8,8,-1,-10,-1,-1,-10,-1,8 ; TV[68]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,2,5,-10,-1,5,-4,-1,2,2,-1,2,5,-1,-13,-1,2,5,2,-1,-1,-1,2,2,5,-13,5,2,5,2,-1,-13,-1,5,2,-1,8,8,-1,-10,-1,-1,-10,-1,8 ; TV[69]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,2,5,-10,-1,5,-4,-1,2,2,-1,2,5,-1,-13,-1,2,5,2,2,-1,-4,5,-1,-10,5,2,2,5,2,-1,-13,-1,5,2,-1,8,8,-1,-10,-1,-1,-10,-1,8 ; TV[70]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,2,-1,-4,5,-1,-10,5,2,2,-1,2,5,-1,-13,-1,2,5,2,-1,-1,-1,2,2,5,-13,5,2,5,-13,5,2,2,-1,-1,-1,8,8,-1,-10,-1,-1,-10,-1,8 ; TV[71]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,2,-1,-4,5,-1,-10,5,2,2,2,5,-10,-1,5,-4,-1,2,2,-1,-1,-1,2,2,5,-13,5,2,5,-13,5,2,2,-1,-1,-1,8,8,-1,-10,-1,-1,-10,-1,8 ; TV[72]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-4,-1,2,-1,5,2,5,-10,2,2,5,-10,-1,5,-4,-1,2,2,2,-1,-4,5,-1,-10,5,2,2,5,-13,5,2,2,-1,-1,-1,2,5,2,-1,-13,-1,5,2,-1 ; TV[73]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,2,-1,-4,5,-1,-10,5,2,2,2,5,-10,-1,5,-4,-1,2,2,-1,-1,-1,2,2,5,-13,5,2,-1,2,5,-1,-13,-1,2,5,8,8,-1,-10,-1,-1,-10,-1,8 ; TV[74]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-4,-1,2,-1,5,2,5,-10,2,-1,2,5,-1,-13,-1,2,5,2,5,-13,5,2,2,-1,-1,-1,2,2,-1,-4,5,-1,-10,5,2,2,5,2,-1,-13,-1,5,2,-1 ; TV[75]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-4,-1,2,-1,5,2,5,-10,2,5,2,-1,-13,-1,5,2,-1,2,-1,-1,-1,2,2,5,-13,5,2,2,5,-10,-1,5,-4,-1,2,2,5,-13,5,2,2,-1,-1,-1 ; TV[76]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-1,2,-1,-1,-1,-1,2,-1,2,-1,2,5,-1,-13,-1,2,5,2,2,5,-10,-1,5,-4,-1,2,2,2,-1,-4,5,-1,-10,5,2,2,5,2,-1,-13,-1,5,2,-1 ; TV[77]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-1,2,-1,-1,-1,-1,2,-1,2,-4,-1,2,-1,5,2,5,-10,2,2,5,-10,-1,5,-4,-1,2,2,2,-1,-4,5,-1,-10,5,2,2,5,2,-1,-13,-1,5,2,-1 ; TV[78]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-1,2,-1,-1,-1,-1,2,-1,2,-4,-1,2,-1,5,2,5,-10,2,-1,2,5,-1,-13,-1,2,5,2,2,-1,-4,5,-1,-10,5,2,2,5,2,-1,-13,-1,5,2,-1 ; TV[79]=M; kill M; intmat M[6][9]=2,-1,-1,-1,2,2,-1,-1,-1,-8,1,1,1,1,1,1,1,1,2,-1,-1,-1,2,2,5,-13,5,2,2,-1,-4,5,-1,-10,5,2,2,5,-13,5,2,2,-1,-1,-1,2,2,5,-10,-1,5,-4,-1,2 ; TV[80]=M; kill M; intmat M[6][9]=2,-1,-1,-1,2,2,-1,-1,-1,-8,1,1,1,1,1,1,1,1,2,-4,-1,2,-1,5,2,5,-10,2,2,-1,-4,5,-1,-10,5,2,2,5,-13,5,2,2,-1,-1,-1,2,2,5,-10,-1,5,-4,-1,2 ; TV[81]=M; kill M; intmat M[6][9]=2,-1,-1,-1,2,2,-1,-1,-1,-8,1,1,1,1,1,1,1,1,2,-4,-1,2,-1,5,2,5,-10,2,-1,-1,-1,2,2,5,-13,5,2,5,-13,5,2,2,-1,-1,-1,2,2,5,-10,-1,5,-4,-1,2 ; TV[82]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,8,-10,-1,8,-1,-1,8,-1,-10,2,-1,2,5,-1,-13,-1,2,5,2,-1,-1,-1,2,2,5,-13,5,2,5,-13,5,2,2,-1,-1,-1,2,5,2,-1,-13,-1,5,2,-1 ; TV[83]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,8,-10,-1,8,-1,-1,8,-1,-10,2,-1,2,5,-1,-13,-1,2,5,2,-4,-1,2,-1,5,2,5,-10,2,5,-13,5,2,2,-1,-1,-1,2,5,2,-1,-13,-1,5,2,-1 ; TV[84]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,8,-10,-1,8,-1,-1,8,-1,-10,2,-4,-1,2,-1,5,2,5,-10,2,-1,-1,-1,2,2,5,-13,5,2,5,-13,5,2,2,-1,-1,-1,2,5,2,-1,-13,-1,5,2,-1 ; TV[85]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-10,5,2,5,-1,2,-1,-4,2,5,2,-1,-13,-1,5,2,-1,2,-1,-1,-1,2,2,5,-13,5,2,-1,2,5,-1,-13,-1,2,5,2,2,5,-10,-1,5,-4,-1,2 ; TV[86]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-10,5,2,5,-1,2,-1,-4,2,5,2,-1,-13,-1,5,2,-1,2,-1,2,-1,-1,-1,-1,2,-1,2,-1,2,5,-1,-13,-1,2,5,2,2,5,-10,-1,5,-4,-1,2 ; TV[87]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-10,5,2,5,-1,2,-1,-4,2,2,-1,-4,5,-1,-10,5,2,2,-1,2,-1,-1,-1,-1,2,-1,2,-1,2,5,-1,-13,-1,2,5,2,2,5,-10,-1,5,-4,-1,2 ; TV[88]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-10,5,2,5,-1,2,-1,-4,2,-4,-1,2,-1,5,2,5,-10,2,5,2,-1,-13,-1,5,2,-1,2,2,5,-10,-1,5,-4,-1,2,2,-1,2,-1,-1,-1,-1,2,-1 ; TV[89]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-10,5,2,5,-1,2,-1,-4,2,-4,-1,2,-1,5,2,5,-10,2,5,2,-1,-13,-1,5,2,-1,2,-1,2,5,-1,-13,-1,2,5,2,-1,2,-1,-1,-1,-1,2,-1 ; TV[90]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-10,5,2,5,-1,2,-1,-4,2,2,-1,-4,5,-1,-10,5,2,2,-1,-1,-1,2,2,5,-13,5,2,-1,2,5,-1,-13,-1,2,5,2,2,5,-10,-1,5,-4,-1,2 ; TV[91]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-10,5,2,5,-1,2,-1,-4,2,-4,-1,2,-1,5,2,5,-10,2,2,-1,-4,5,-1,-10,5,2,2,2,5,-10,-1,5,-4,-1,2,2,-1,2,-1,-1,-1,-1,2,-1 ; TV[92]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-10,5,2,5,-1,2,-1,-4,2,-4,-1,2,-1,5,2,5,-10,2,-1,-1,-1,2,2,5,-13,5,2,2,5,-10,-1,5,-4,-1,2,2,5,2,-1,-13,-1,5,2,-1 ; TV[93]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-10,5,2,5,-1,2,-1,-4,2,-4,-1,2,-1,5,2,5,-10,2,2,-1,-4,5,-1,-10,5,2,2,-1,2,5,-1,-13,-1,2,5,2,-1,2,-1,-1,-1,-1,2,-1 ; TV[94]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-10,5,2,5,-1,2,-1,-4,8,-10,-1,8,-1,-1,8,-1,-10,2,-1,-1,-1,2,2,5,-13,5,2,-1,2,5,-1,-13,-1,2,5,2,5,2,-1,-13,-1,5,2,-1 ; TV[95]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-10,5,2,5,-1,2,-1,-4,8,-10,-1,8,-1,-1,8,-1,-10,2,-4,-1,2,-1,5,2,5,-10,2,-1,2,5,-1,-13,-1,2,5,2,5,2,-1,-13,-1,5,2,-1 ; TV[96]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-10,5,2,5,-1,2,-1,-4,8,-10,-1,8,-1,-1,8,-1,-10,2,-4,-1,2,-1,5,2,5,-10,2,-1,-1,-1,2,2,5,-13,5,2,5,2,-1,-13,-1,5,2,-1 ; TV[97]=M; kill M; intmat M[6][9]=2,-10,5,2,5,-1,2,-1,-4,-8,1,1,1,1,1,1,1,1,2,-1,-1,-1,2,2,-1,-1,-1,2,-1,-1,-1,2,2,5,-13,5,2,2,-1,-4,5,-1,-10,5,2,2,2,5,-10,-1,5,-4,-1,2 ; TV[98]=M; kill M; intmat M[6][9]=2,-10,5,2,5,-1,2,-1,-4,-8,1,1,1,1,1,1,1,1,2,-1,-1,-1,2,2,-1,-1,-1,2,-4,-1,2,-1,5,2,5,-10,2,2,-1,-4,5,-1,-10,5,2,2,2,5,-10,-1,5,-4,-1,2 ; TV[99]=M; kill M; intmat M[6][9]=2,-10,5,2,5,-1,2,-1,-4,-8,1,1,1,1,1,1,1,1,2,-1,-1,-1,2,2,-1,-1,-1,2,-4,-1,2,-1,5,2,5,-10,2,-1,-1,-1,2,2,5,-13,5,2,2,5,-10,-1,5,-4,-1,2 ; TV[100]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-10,5,2,5,-1,2,-1,-4,2,5,-13,5,2,2,-1,-1,-1,2,-1,-1,-1,2,2,5,-13,5,2,-1,2,5,-1,-13,-1,2,5,8,-10,-1,8,-1,-1,8,-1,-10 ; TV[101]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-10,5,2,5,-1,2,-1,-4,2,5,-13,5,2,2,-1,-1,-1,2,-4,-1,2,-1,5,2,5,-10,8,-10,-1,8,-1,-1,8,-1,-10,2,-1,2,5,-1,-13,-1,2,5 ; TV[102]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-10,5,2,5,-1,2,-1,-4,2,5,-13,5,2,2,-1,-1,-1,2,2,-1,-4,5,-1,-10,5,2,2,-4,-1,2,-1,5,2,5,-10,2,-1,2,5,-1,-13,-1,2,5 ; TV[103]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-10,5,2,5,-1,2,-1,-4,2,5,-13,5,2,2,-1,-1,-1,2,-4,-1,2,-1,5,2,5,-10,2,-1,-1,-1,2,2,5,-13,5,8,-10,-1,8,-1,-1,8,-1,-10 ; TV[104]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-10,5,2,5,-1,2,-1,-4,2,5,-13,5,2,2,-1,-1,-1,2,2,-1,-4,5,-1,-10,5,2,2,-1,-1,-1,2,2,5,-13,5,2,-1,2,5,-1,-13,-1,2,5 ; TV[105]=M; kill M; intmat M[6][9]=2,5,-13,5,2,2,-1,-1,-1,-8,1,1,1,1,1,1,1,1,2,-10,5,2,5,-1,2,-1,-4,2,-1,-1,-1,2,2,-1,-1,-1,2,-1,-1,-1,2,2,5,-13,5,2,2,-1,-4,5,-1,-10,5,2 ; TV[106]=M; kill M; intmat M[6][9]=2,5,-13,5,2,2,-1,-1,-1,-8,1,1,1,1,1,1,1,1,2,-10,5,2,5,-1,2,-1,-4,2,-1,-1,-1,2,2,-1,-1,-1,2,-4,-1,2,-1,5,2,5,-10,2,2,-1,-4,5,-1,-10,5,2 ; TV[107]=M; kill M; intmat M[6][9]=2,5,-13,5,2,2,-1,-1,-1,-8,1,1,1,1,1,1,1,1,2,-10,5,2,5,-1,2,-1,-4,2,-1,-1,-1,2,2,-1,-1,-1,2,-4,-1,2,-1,5,2,5,-10,2,-1,-1,-1,2,2,5,-13,5 ; TV[108]=M; kill M; } if ((polygon=="2x2") and (art=="secondary")) { intmat M[6][9]=2,-1,-1,-1,2,2,-1,-1,-1,2,-3,-1,1,0,4,3,-1,-5,5,-4,2,-1,-1,2,2,-1,-4,2,-4,-1,2,-1,5,2,5,-10,8,-10,-1,8,-1,-1,8,-1,-10,14,-1,-4,-7,-1,11,-1,-4,-7 ; TV[1]=M; kill M; intmat M[6][9]=5,-4,2,-1,-1,2,2,-1,-4,2,-3,-1,1,0,4,3,-1,-5,2,5,2,-1,-13,-1,5,2,-1,2,-4,-1,2,-1,5,2,5,-10,8,-10,-1,8,-1,-1,8,-1,-10,14,-1,-4,-7,-1,11,-1,-4,-7 ; TV[2]=M; kill M; intmat M[9][9]=14,-1,-4,-7,-1,11,-1,-4,-7,14,-1,-1,-1,-4,-4,-7,11,-7,5,2,-1,-4,-1,2,-4,2,-1,5,-4,-1,2,2,-1,-1,2,-4,5,-4,2,-1,-1,2,2,-1,-4,2,-1,2,-1,-1,-1,-1,2,-1,2,-1,-1,-1,2,2,-1,-1,-1,8,-10,-1,8,-1,-1,8,-1,-10,2,-4,-1,2,-1,5,2,5,-10 ; TV[3]=M; kill M; intmat M[6][9]=2,-1,-1,-1,2,2,-1,-1,-1,2,-3,-1,1,0,4,3,-1,-5,2,5,-13,5,2,2,-1,-1,-1,2,-4,-1,2,-1,5,2,5,-10,8,-10,-1,8,-1,-1,8,-1,-10,14,-1,-4,-7,-1,11,-1,-4,-7 ; TV[4]=M; kill M; intmat M[6][9]=2,2,5,-10,-1,5,-4,-1,2,2,-3,-1,1,0,4,3,-1,-5,2,-1,-1,-1,2,2,-1,-1,-1,2,-4,-1,2,-1,5,2,5,-10,5,-4,2,-1,-1,2,2,-1,-4,14,-1,-4,-7,-1,11,-1,-4,-7 ; TV[5]=M; kill M; intmat M[6][9]=2,-1,-1,-1,2,2,-1,-1,-1,2,-3,-1,1,0,4,3,-1,-5,5,-4,2,-1,-1,2,2,-1,-4,2,-1,-1,-1,2,2,5,-13,5,8,-10,-1,8,-1,-1,8,-1,-10,14,-1,-4,-7,-1,11,-1,-4,-7 ; TV[6]=M; kill M; intmat M[6][9]=2,-10,5,2,5,-1,2,-1,-4,2,-3,-1,1,0,4,3,-1,-5,2,-1,-1,-1,2,2,-1,-1,-1,2,-4,-1,2,-1,5,2,5,-10,8,-10,-1,8,-1,-1,8,-1,-10,5,-4,2,-1,-1,2,2,-1,-4 ; TV[7]=M; kill M; intmat M[6][9]=5,-4,2,-1,-1,2,2,-1,-4,2,-3,-1,1,0,4,3,-1,-5,2,5,2,-1,-13,-1,5,2,-1,2,-1,-1,-1,2,2,5,-13,5,8,-10,-1,8,-1,-1,8,-1,-10,14,-1,-4,-7,-1,11,-1,-4,-7 ; TV[8]=M; kill M; intmat M[6][9]=2,2,5,-10,-1,5,-4,-1,2,2,-3,-1,1,0,4,3,-1,-5,2,-1,-1,-1,2,2,-1,-1,-1,2,-1,-1,-1,2,2,5,-13,5,5,-4,2,-1,-1,2,2,-1,-4,14,-1,-4,-7,-1,11,-1,-4,-7 ; TV[9]=M; kill M; intmat M[6][9]=2,-1,-1,-1,2,2,-1,-1,-1,2,-3,-1,1,0,4,3,-1,-5,2,5,-13,5,2,2,-1,-1,-1,2,-1,-1,-1,2,2,5,-13,5,8,-10,-1,8,-1,-1,8,-1,-10,14,-1,-4,-7,-1,11,-1,-4,-7 ; TV[10]=M; kill M; intmat M[6][9]=2,-10,5,2,5,-1,2,-1,-4,2,-3,-1,1,0,4,3,-1,-5,2,-1,-1,-1,2,2,-1,-1,-1,2,-1,-1,-1,2,2,5,-13,5,8,-10,-1,8,-1,-1,8,-1,-10,5,-4,2,-1,-1,2,2,-1,-4 ; TV[11]=M; kill M; intmat M[9][9]=8,8,-1,-10,-1,-1,-10,-1,8,14,-7,-4,-1,11,-1,-7,-4,-1,5,-1,2,-4,2,-1,-4,-1,2,14,-7,11,-7,-4,-4,-1,-1,-1,5,-4,2,-1,-1,2,2,-1,-4,14,-1,-4,-7,-1,11,-1,-4,-7,8,-10,-1,8,-1,-1,8,-1,-10,2,-1,-1,-1,2,2,-1,-1,-1,2,-1,-1,-1,2,2,5,-13,5 ; TV[12]=M; kill M; intmat M[6][9]=2,-5,4,1,-1,-1,3,0,-3,2,-3,-1,1,0,4,3,-1,-5,2,-10,5,2,5,-1,2,-1,-4,2,-4,-1,2,-1,5,2,5,-10,8,-10,-1,8,-1,-1,8,-1,-10,5,-4,2,-1,-1,2,2,-1,-4 ; TV[13]=M; kill M; intmat M[6][9]=2,-10,5,2,5,-1,2,-1,-4,2,-3,-1,1,0,4,3,-1,-5,2,2,5,-10,-1,5,-4,-1,2,2,-4,-1,2,-1,5,2,5,-10,2,-1,-1,-1,2,2,-1,-1,-1,5,-4,2,-1,-1,2,2,-1,-4 ; TV[14]=M; kill M; intmat M[7][9]=2,-1,2,-1,-1,-1,-1,2,-1,5,-4,2,-1,-1,2,2,-1,-4,5,-4,-1,2,2,-1,-1,2,-4,8,-10,-1,8,-1,-1,8,-1,-10,2,-1,-1,-1,2,2,-1,-1,-1,2,-10,5,2,5,-1,2,-1,-4,2,-4,-1,2,-1,5,2,5,-10 ; TV[15]=M; kill M; intmat M[6][9]=2,-5,-1,3,4,0,1,-1,-3,2,-3,-1,1,0,4,3,-1,-5,2,-10,5,2,5,-1,2,-1,-4,2,-4,-1,2,-1,5,2,5,-10,2,-1,-1,-1,2,2,-1,-1,-1,8,-10,-1,8,-1,-1,8,-1,-10 ; TV[16]=M; kill M; intmat M[6][9]=2,2,5,-10,-1,5,-4,-1,2,2,-3,-1,1,0,4,3,-1,-5,2,5,2,-1,-13,-1,5,2,-1,2,-4,-1,2,-1,5,2,5,-10,5,-4,2,-1,-1,2,2,-1,-4,14,-1,-4,-7,-1,11,-1,-4,-7 ; TV[17]=M; kill M; intmat M[6][9]=2,3,-1,-5,0,4,-3,-1,1,2,-3,-1,1,0,4,3,-1,-5,2,-1,-1,-1,2,2,-1,-1,-1,2,2,5,-10,-1,5,-4,-1,2,2,-4,-1,2,-1,5,2,5,-10,14,-1,-4,-7,-1,11,-1,-4,-7 ; TV[18]=M; kill M; intmat M[7][9]=5,2,-1,-4,-1,2,-4,2,-1,14,-1,-4,-7,-1,11,-1,-4,-7,5,-4,2,-1,-1,2,2,-1,-4,2,-1,2,-1,-1,-1,-1,2,-1,2,2,5,-10,-1,5,-4,-1,2,2,-4,-1,2,-1,5,2,5,-10,2,-1,-1,-1,2,2,-1,-1,-1 ; TV[19]=M; kill M; intmat M[12][9]=8,8,-1,-10,-1,-1,-10,-1,8,14,-1,-1,-1,-4,-4,-7,11,-7,5,2,-1,-4,-1,2,-4,2,-1,14,-1,-4,-7,-1,11,-1,-4,-7,5,-4,2,-1,-1,2,2,-1,-4,14,-7,11,-7,-4,-4,-1,-1,-1,5,-1,2,-4,2,-1,-4,-1,2,5,-4,-1,2,2,-1,-1,2,-4,14,-7,-4,-1,11,-1,-7,-4,-1,8,-10,-1,8,-1,-1,8,-1,-10,2,-1,-1,-1,2,2,-1,-1,-1,2,-1,2,-1,-1,-1,-1,2,-1 ; TV[20]=M; kill M; intmat M[6][9]=2,-3,0,3,-1,-1,1,4,-5,5,-4,-1,2,2,-1,-1,2,-4,2,-1,2,-1,-1,-1,-1,2,-1,2,-4,-1,2,-1,5,2,5,-10,8,-10,-1,8,-1,-1,8,-1,-10,14,-1,-1,-1,-4,-4,-7,11,-7 ; TV[21]=M; kill M; intmat M[8][9]=5,2,-1,-4,-1,2,-4,2,-1,14,-1,-1,-1,-4,-4,-7,11,-7,14,-1,-4,-7,-1,11,-1,-4,-7,5,-4,2,-1,-1,2,2,-1,-4,8,-10,-1,8,-1,-1,8,-1,-10,2,-1,2,-1,-1,-1,-1,2,-1,2,-4,-1,2,-1,5,2,5,-10,2,5,2,-1,-13,-1,5,2,-1 ; TV[22]=M; kill M; intmat M[8][9]=5,2,-1,-4,-1,2,-4,2,-1,14,-1,-4,-7,-1,11,-1,-4,-7,14,-1,-1,-1,-4,-4,-7,11,-7,5,-4,-1,2,2,-1,-1,2,-4,8,-10,-1,8,-1,-1,8,-1,-10,2,-1,-1,-1,2,2,-1,-1,-1,2,-4,-1,2,-1,5,2,5,-10,2,5,-13,5,2,2,-1,-1,-1 ; TV[23]=M; kill M; intmat M[7][9]=5,2,-1,-4,-1,2,-4,2,-1,14,-1,-1,-1,-4,-4,-7,11,-7,5,-4,-1,2,2,-1,-1,2,-4,2,-1,-1,-1,2,2,-1,-1,-1,2,-1,2,-1,-1,-1,-1,2,-1,2,-4,-1,2,-1,5,2,5,-10,2,2,-1,-4,5,-1,-10,5,2 ; TV[24]=M; kill M; intmat M[6][9]=2,-5,4,1,-1,-1,3,0,-3,2,-3,-1,1,0,4,3,-1,-5,2,5,2,-1,-13,-1,5,2,-1,2,-4,-1,2,-1,5,2,5,-10,8,-10,-1,8,-1,-1,8,-1,-10,5,-4,2,-1,-1,2,2,-1,-4 ; TV[25]=M; kill M; intmat M[6][9]=2,5,-13,5,2,2,-1,-1,-1,2,-3,-1,1,0,4,3,-1,-5,2,5,2,-1,-13,-1,5,2,-1,2,-4,-1,2,-1,5,2,5,-10,8,-10,-1,8,-1,-1,8,-1,-10,14,-1,-4,-7,-1,11,-1,-4,-7 ; TV[26]=M; kill M; intmat M[6][9]=2,-1,-1,-1,2,2,-1,-1,-1,2,3,-1,-5,0,4,-3,-1,1,2,-3,-1,1,0,4,3,-1,-5,2,-4,-1,2,-1,5,2,5,-10,2,5,-13,5,2,2,-1,-1,-1,14,-1,-4,-7,-1,11,-1,-4,-7 ; TV[27]=M; kill M; intmat M[6][9]=2,5,-13,5,2,2,-1,-1,-1,2,-5,-1,3,4,0,1,-1,-3,2,-3,-1,1,0,4,3,-1,-5,2,-4,-1,2,-1,5,2,5,-10,2,-1,-1,-1,2,2,-1,-1,-1,8,-10,-1,8,-1,-1,8,-1,-10 ; TV[28]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-10,5,2,5,-1,2,-1,-4,2,-5,-1,3,4,0,1,-1,-3,2,-3,-1,1,0,4,3,-1,-5,2,-4,-1,2,-1,5,2,5,-10,8,-10,-1,8,-1,-1,8,-1,-10 ; TV[29]=M; kill M; intmat M[6][9]=2,-5,-1,3,4,0,1,-1,-3,2,-4,-1,2,-1,5,2,5,-10,2,-10,5,2,5,-1,2,-1,-4,2,-1,-1,-1,2,2,-1,-1,-1,8,-10,-1,8,-1,-1,8,-1,-10,5,-4,-1,2,2,-1,-1,2,-4 ; TV[30]=M; kill M; intmat M[6][9]=2,-10,5,2,5,-1,2,-1,-4,-8,1,1,1,1,1,1,1,1,2,-5,-1,3,4,0,1,-1,-3,2,-1,-1,-1,2,2,-1,-1,-1,2,-3,-1,1,0,4,3,-1,-5,2,-4,-1,2,-1,5,2,5,-10 ; TV[31]=M; kill M; intmat M[6][9]=2,-5,-1,3,4,0,1,-1,-3,2,-3,-1,1,0,4,3,-1,-5,2,-10,5,2,5,-1,2,-1,-4,2,-1,-1,-1,2,2,5,-13,5,2,-1,-1,-1,2,2,-1,-1,-1,8,-10,-1,8,-1,-1,8,-1,-10 ; TV[32]=M; kill M; intmat M[6][9]=2,-5,4,1,-1,-1,3,0,-3,2,-3,-1,1,0,4,3,-1,-5,2,-10,5,2,5,-1,2,-1,-4,2,-1,-1,-1,2,2,5,-13,5,8,-10,-1,8,-1,-1,8,-1,-10,5,-4,2,-1,-1,2,2,-1,-4 ; TV[33]=M; kill M; intmat M[6][9]=2,-10,5,2,5,-1,2,-1,-4,2,-3,-1,1,0,4,3,-1,-5,2,2,5,-10,-1,5,-4,-1,2,2,-1,-1,-1,2,2,5,-13,5,2,-1,-1,-1,2,2,-1,-1,-1,5,-4,2,-1,-1,2,2,-1,-4 ; TV[34]=M; kill M; intmat M[8][9]=5,-1,2,-4,2,-1,-4,-1,2,14,-7,-4,-1,11,-1,-7,-4,-1,14,-7,11,-7,-4,-4,-1,-1,-1,5,-4,2,-1,-1,2,2,-1,-4,8,-10,-1,8,-1,-1,8,-1,-10,2,-1,-1,-1,2,2,-1,-1,-1,2,-10,5,2,5,-1,2,-1,-4,2,-1,-1,-1,2,2,5,-13,5 ; TV[35]=M; kill M; intmat M[6][9]=2,5,-13,5,2,2,-1,-1,-1,2,-3,-1,1,0,4,3,-1,-5,2,5,2,-1,-13,-1,5,2,-1,2,-1,-1,-1,2,2,5,-13,5,8,-10,-1,8,-1,-1,8,-1,-10,14,-1,-4,-7,-1,11,-1,-4,-7 ; TV[36]=M; kill M; intmat M[6][9]=2,-1,-1,-1,2,2,-1,-1,-1,2,-3,-1,1,0,4,3,-1,-5,2,3,-1,-5,0,4,-3,-1,1,2,-1,-1,-1,2,2,5,-13,5,2,5,-13,5,2,2,-1,-1,-1,14,-1,-4,-7,-1,11,-1,-4,-7 ; TV[37]=M; kill M; intmat M[6][9]=2,5,-13,5,2,2,-1,-1,-1,2,-5,-1,3,4,0,1,-1,-3,2,-3,-1,1,0,4,3,-1,-5,2,-1,-1,-1,2,2,5,-13,5,2,-1,-1,-1,2,2,-1,-1,-1,8,-10,-1,8,-1,-1,8,-1,-10 ; TV[38]=M; kill M; intmat M[7][9]=8,8,-1,-10,-1,-1,-10,-1,8,14,-1,-4,-7,-1,11,-1,-4,-7,14,-7,-4,-1,11,-1,-7,-4,-1,8,-10,-1,8,-1,-1,8,-1,-10,2,-1,-1,-1,2,2,-1,-1,-1,2,5,-13,5,2,2,-1,-1,-1,2,-1,-1,-1,2,2,5,-13,5 ; TV[39]=M; kill M; intmat M[6][9]=2,5,-13,5,2,2,-1,-1,-1,2,3,-1,-5,0,4,-3,-1,1,2,-3,-1,1,0,4,3,-1,-5,2,-4,-1,2,-1,5,2,5,-10,2,5,2,-1,-13,-1,5,2,-1,14,-1,-4,-7,-1,11,-1,-4,-7 ; TV[40]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,8,-10,-1,8,-1,-1,8,-1,-10,2,-3,-1,1,0,4,3,-1,-5,2,-4,-1,2,-1,5,2,5,-10,2,5,-13,5,2,2,-1,-1,-1,2,5,2,-1,-13,-1,5,2,-1 ; TV[41]=M; kill M; intmat M[7][9]=8,-10,-1,8,-1,-1,8,-1,-10,14,-1,-1,-1,-4,-4,-7,11,-7,5,2,-1,-4,-1,2,-4,2,-1,14,-1,-4,-7,-1,11,-1,-4,-7,2,5,-13,5,2,2,-1,-1,-1,2,-4,-1,2,-1,5,2,5,-10,2,5,2,-1,-13,-1,5,2,-1 ; TV[42]=M; kill M; intmat M[9][9]=8,8,-1,-10,-1,-1,-10,-1,8,5,2,-1,-4,-1,2,-4,2,-1,14,-1,-4,-7,-1,11,-1,-4,-7,5,-4,2,-1,-1,2,2,-1,-4,14,-7,11,-7,-4,-4,-1,-1,-1,5,-1,2,-4,2,-1,-4,-1,2,2,-1,-1,-1,2,2,-1,-1,-1,2,-1,2,-1,-1,-1,-1,2,-1,2,2,5,-10,-1,5,-4,-1,2 ; TV[43]=M; kill M; intmat M[6][9]=2,3,-1,-5,0,4,-3,-1,1,2,-4,-1,2,-1,5,2,5,-10,2,-1,-1,-1,2,2,-1,-1,-1,2,2,5,-10,-1,5,-4,-1,2,14,-1,-4,-7,-1,11,-1,-4,-7,5,2,-1,-4,-1,2,-4,2,-1 ; TV[44]=M; kill M; intmat M[7][9]=14,-1,-4,-7,-1,11,-1,-4,-7,5,2,-1,-4,-1,2,-4,2,-1,2,-1,2,-1,-1,-1,-1,2,-1,5,-4,2,-1,-1,2,2,-1,-4,2,2,5,-10,-1,5,-4,-1,2,2,-4,-1,2,-1,5,2,5,-10,2,5,2,-1,-13,-1,5,2,-1 ; TV[45]=M; kill M; intmat M[6][9]=2,2,5,-10,-1,5,-4,-1,2,2,-4,-1,2,-1,5,2,5,-10,2,2,-1,-4,5,-1,-10,5,2,2,-1,2,-1,-1,-1,-1,2,-1,2,-1,-1,-1,2,2,-1,-1,-1,5,2,-1,-4,-1,2,-4,2,-1 ; TV[46]=M; kill M; intmat M[6][9]=2,-10,5,2,5,-1,2,-1,-4,2,-4,-1,2,-1,5,2,5,-10,2,2,5,-10,-1,5,-4,-1,2,2,-1,-1,-1,2,2,-1,-1,-1,5,-4,2,-1,-1,2,2,-1,-4,2,-1,2,-1,-1,-1,-1,2,-1 ; TV[47]=M; kill M; intmat M[6][9]=2,-3,0,3,-1,-1,1,4,-5,2,-1,2,-1,-1,-1,-1,2,-1,2,-4,-1,2,-1,5,2,5,-10,2,5,2,-1,-13,-1,5,2,-1,8,-10,-1,8,-1,-1,8,-1,-10,14,-1,-1,-1,-4,-4,-7,11,-7 ; TV[48]=M; kill M; intmat M[6][9]=2,-3,0,3,-1,-1,1,4,-5,5,-4,-1,2,2,-1,-1,2,-4,2,-1,2,-1,-1,-1,-1,2,-1,2,-1,2,5,-1,-13,-1,2,5,8,-10,-1,8,-1,-1,8,-1,-10,14,-1,-1,-1,-4,-4,-7,11,-7 ; TV[49]=M; kill M; intmat M[6][9]=2,-3,0,3,-1,-1,1,4,-5,2,2,-1,-4,5,-1,-10,5,2,2,-1,2,-1,-1,-1,-1,2,-1,2,-4,-1,2,-1,5,2,5,-10,5,-4,-1,2,2,-1,-1,2,-4,14,-1,-1,-1,-4,-4,-7,11,-7 ; TV[50]=M; kill M; intmat M[6][9]=2,-3,0,3,-1,-1,1,4,-5,5,-4,-1,2,2,-1,-1,2,-4,2,-4,-1,2,-1,5,2,5,-10,2,5,-13,5,2,2,-1,-1,-1,8,-10,-1,8,-1,-1,8,-1,-10,14,-1,-1,-1,-4,-4,-7,11,-7 ; TV[51]=M; kill M; intmat M[6][9]=2,-10,5,2,5,-1,2,-1,-4,2,-3,0,3,-1,-1,1,4,-5,2,-4,-1,2,-1,5,2,5,-10,5,-4,-1,2,2,-1,-1,2,-4,8,-10,-1,8,-1,-1,8,-1,-10,2,-1,2,-1,-1,-1,-1,2,-1 ; TV[52]=M; kill M; intmat M[6][9]=2,3,0,-3,-1,-1,-5,4,1,2,-4,-1,2,-1,5,2,5,-10,2,2,-1,-4,5,-1,-10,5,2,2,-1,2,-1,-1,-1,-1,2,-1,14,-1,-1,-1,-4,-4,-7,11,-7,5,2,-1,-4,-1,2,-4,2,-1 ; TV[53]=M; kill M; intmat M[9][9]=8,8,-1,-10,-1,-1,-10,-1,8,5,2,-1,-4,-1,2,-4,2,-1,14,-1,-1,-1,-4,-4,-7,11,-7,5,-4,-1,2,2,-1,-1,2,-4,5,-1,2,-4,2,-1,-4,-1,2,14,-7,-4,-1,11,-1,-7,-4,-1,2,-1,2,-1,-1,-1,-1,2,-1,2,-1,-1,-1,2,2,-1,-1,-1,2,2,-1,-4,5,-1,-10,5,2 ; TV[54]=M; kill M; intmat M[7][9]=14,-1,-1,-1,-4,-4,-7,11,-7,5,2,-1,-4,-1,2,-4,2,-1,2,-1,-1,-1,2,2,-1,-1,-1,5,-4,-1,2,2,-1,-1,2,-4,2,5,-13,5,2,2,-1,-1,-1,2,-4,-1,2,-1,5,2,5,-10,2,2,-1,-4,5,-1,-10,5,2 ; TV[55]=M; kill M; intmat M[6][9]=2,-10,5,2,5,-1,2,-1,-4,2,-4,-1,2,-1,5,2,5,-10,2,2,-1,-4,5,-1,-10,5,2,5,-4,-1,2,2,-1,-1,2,-4,2,-1,-1,-1,2,2,-1,-1,-1,2,-1,2,-1,-1,-1,-1,2,-1 ; TV[56]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-10,5,2,5,-1,2,-1,-4,8,-10,-1,8,-1,-1,8,-1,-10,2,-3,-1,1,0,4,3,-1,-5,2,-4,-1,2,-1,5,2,5,-10,2,-5,4,1,-1,-1,3,0,-3 ; TV[57]=M; kill M; intmat M[6][9]=2,-5,4,1,-1,-1,3,0,-3,2,-4,-1,2,-1,5,2,5,-10,2,-10,5,2,5,-1,2,-1,-4,8,-10,-1,8,-1,-1,8,-1,-10,5,-4,2,-1,-1,2,2,-1,-4,2,-1,2,-1,-1,-1,-1,2,-1 ; TV[58]=M; kill M; intmat M[6][9]=2,2,5,-10,-1,5,-4,-1,2,2,-3,-1,1,0,4,3,-1,-5,2,-10,5,2,5,-1,2,-1,-4,2,-5,4,1,-1,-1,3,0,-3,2,-4,-1,2,-1,5,2,5,-10,5,-4,2,-1,-1,2,2,-1,-4 ; TV[59]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-5,-1,3,4,0,1,-1,-3,2,-3,-1,1,0,4,3,-1,-5,2,-4,-1,2,-1,5,2,5,-10,8,-10,-1,8,-1,-1,8,-1,-10,2,5,-13,5,2,2,-1,-1,-1 ; TV[60]=M; kill M; intmat M[6][9]=2,5,-13,5,2,2,-1,-1,-1,2,-5,-1,3,4,0,1,-1,-3,2,-4,-1,2,-1,5,2,5,-10,2,-1,-1,-1,2,2,-1,-1,-1,8,-10,-1,8,-1,-1,8,-1,-10,5,-4,-1,2,2,-1,-1,2,-4 ; TV[61]=M; kill M; intmat M[6][9]=2,-1,-1,-1,2,2,-1,-1,-1,-8,1,1,1,1,1,1,1,1,2,-5,-1,3,4,0,1,-1,-3,2,-3,-1,1,0,4,3,-1,-5,2,-4,-1,2,-1,5,2,5,-10,2,5,-13,5,2,2,-1,-1,-1 ; TV[62]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-5,4,1,-1,-1,3,0,-3,8,-10,-1,8,-1,-1,8,-1,-10,2,-3,-1,1,0,4,3,-1,-5,2,-4,-1,2,-1,5,2,5,-10,2,5,2,-1,-13,-1,5,2,-1 ; TV[63]=M; kill M; intmat M[6][9]=2,-5,4,1,-1,-1,3,0,-3,2,-4,-1,2,-1,5,2,5,-10,2,5,2,-1,-13,-1,5,2,-1,8,-10,-1,8,-1,-1,8,-1,-10,5,-4,2,-1,-1,2,2,-1,-4,2,-1,2,-1,-1,-1,-1,2,-1 ; TV[64]=M; kill M; intmat M[6][9]=2,-5,4,1,-1,-1,3,0,-3,2,-3,-1,1,0,4,3,-1,-5,2,2,5,-10,-1,5,-4,-1,2,2,-4,-1,2,-1,5,2,5,-10,2,5,2,-1,-13,-1,5,2,-1,5,-4,2,-1,-1,2,2,-1,-4 ; TV[65]=M; kill M; intmat M[6][9]=2,-5,4,1,-1,-1,3,0,-3,2,-3,-1,1,0,4,3,-1,-5,2,5,2,-1,-13,-1,5,2,-1,2,-1,-1,-1,2,2,5,-13,5,8,-10,-1,8,-1,-1,8,-1,-10,5,-4,2,-1,-1,2,2,-1,-4 ; TV[66]=M; kill M; intmat M[6][9]=2,3,-1,-5,0,4,-3,-1,1,2,-3,-1,1,0,4,3,-1,-5,2,2,5,-10,-1,5,-4,-1,2,2,-4,-1,2,-1,5,2,5,-10,2,5,2,-1,-13,-1,5,2,-1,14,-1,-4,-7,-1,11,-1,-4,-7 ; TV[67]=M; kill M; intmat M[6][9]=2,-1,-1,-1,2,2,-1,-1,-1,-8,1,1,1,1,1,1,1,1,2,2,5,-10,-1,5,-4,-1,2,2,-3,-1,1,0,4,3,-1,-5,2,-4,-1,2,-1,5,2,5,-10,2,3,-1,-5,0,4,-3,-1,1 ; TV[68]=M; kill M; intmat M[6][9]=2,3,-1,-5,0,4,-3,-1,1,2,-3,-1,1,0,4,3,-1,-5,2,-1,-1,-1,2,2,-1,-1,-1,2,2,5,-10,-1,5,-4,-1,2,2,-1,-1,-1,2,2,5,-13,5,14,-1,-4,-7,-1,11,-1,-4,-7 ; TV[69]=M; kill M; intmat M[6][9]=2,-10,5,2,5,-1,2,-1,-4,-8,1,1,1,1,1,1,1,1,2,-1,-1,-1,2,2,-1,-1,-1,2,-4,-1,2,-1,5,2,5,-10,2,-3,-1,1,0,4,3,-1,-5,2,2,5,-10,-1,5,-4,-1,2 ; TV[70]=M; kill M; intmat M[6][9]=5,-1,2,-4,2,-1,-4,-1,2,2,1,-1,-3,4,0,-5,-1,3,2,-1,-1,-1,2,2,-1,-1,-1,2,-1,-1,-1,2,2,5,-13,5,14,-7,-4,-1,11,-1,-7,-4,-1,8,8,-1,-10,-1,-1,-10,-1,8 ; TV[71]=M; kill M; intmat M[7][9]=8,-10,-1,8,-1,-1,8,-1,-10,14,-7,11,-7,-4,-4,-1,-1,-1,5,-1,2,-4,2,-1,-4,-1,2,14,-7,-4,-1,11,-1,-7,-4,-1,2,-1,2,5,-1,-13,-1,2,5,2,-1,-1,-1,2,2,5,-13,5,8,8,-1,-10,-1,-1,-10,-1,8 ; TV[72]=M; kill M; intmat M[8][9]=8,8,-1,-10,-1,-1,-10,-1,8,5,-1,2,-4,2,-1,-4,-1,2,14,-7,11,-7,-4,-4,-1,-1,-1,5,-4,2,-1,-1,2,2,-1,-4,14,-1,-4,-7,-1,11,-1,-4,-7,2,-1,-1,-1,2,2,-1,-1,-1,2,2,5,-10,-1,5,-4,-1,2,2,-1,-1,-1,2,2,5,-13,5 ; TV[73]=M; kill M; intmat M[7][9]=8,8,-1,-10,-1,-1,-10,-1,8,14,-1,-4,-7,-1,11,-1,-4,-7,5,-4,2,-1,-1,2,2,-1,-4,14,-7,11,-7,-4,-4,-1,-1,-1,2,5,2,-1,-13,-1,5,2,-1,2,-1,-1,-1,2,2,5,-13,5,8,-10,-1,8,-1,-1,8,-1,-10 ; TV[74]=M; kill M; intmat M[6][9]=2,3,0,-3,-1,-1,-5,4,1,2,-4,-1,2,-1,5,2,5,-10,2,-1,2,-1,-1,-1,-1,2,-1,2,5,2,-1,-13,-1,5,2,-1,14,-1,-1,-1,-4,-4,-7,11,-7,5,2,-1,-4,-1,2,-4,2,-1 ; TV[75]=M; kill M; intmat M[9][9]=8,8,-1,-10,-1,-1,-10,-1,8,14,-1,-1,-1,-4,-4,-7,11,-7,5,2,-1,-4,-1,2,-4,2,-1,14,-1,-4,-7,-1,11,-1,-4,-7,5,-4,2,-1,-1,2,2,-1,-4,14,-7,11,-7,-4,-4,-1,-1,-1,8,-10,-1,8,-1,-1,8,-1,-10,2,-1,2,-1,-1,-1,-1,2,-1,2,5,2,-1,-13,-1,5,2,-1 ; TV[76]=M; kill M; intmat M[6][9]=2,2,5,-10,-1,5,-4,-1,2,2,-3,-1,1,0,4,3,-1,-5,2,5,2,-1,-13,-1,5,2,-1,2,-1,-1,-1,2,2,5,-13,5,5,-4,2,-1,-1,2,2,-1,-4,14,-1,-4,-7,-1,11,-1,-4,-7 ; TV[77]=M; kill M; intmat M[9][9]=8,8,-1,-10,-1,-1,-10,-1,8,14,-7,11,-7,-4,-4,-1,-1,-1,5,-1,2,-4,2,-1,-4,-1,2,14,-7,-4,-1,11,-1,-7,-4,-1,5,-4,-1,2,2,-1,-1,2,-4,14,-1,-1,-1,-4,-4,-7,11,-7,8,-10,-1,8,-1,-1,8,-1,-10,2,-1,2,-1,-1,-1,-1,2,-1,2,-1,2,5,-1,-13,-1,2,5 ; TV[78]=M; kill M; intmat M[9][9]=8,8,-1,-10,-1,-1,-10,-1,8,14,-1,-4,-7,-1,11,-1,-4,-7,5,2,-1,-4,-1,2,-4,2,-1,14,-1,-1,-1,-4,-4,-7,11,-7,5,-4,-1,2,2,-1,-1,2,-4,14,-7,-4,-1,11,-1,-7,-4,-1,8,-10,-1,8,-1,-1,8,-1,-10,2,-1,-1,-1,2,2,-1,-1,-1,2,5,-13,5,2,2,-1,-1,-1 ; TV[79]=M; kill M; intmat M[9][9]=2,-1,2,-1,-1,-1,-1,2,-1,5,-4,2,-1,-1,2,2,-1,-4,5,-1,2,-4,2,-1,-4,-1,2,14,-7,11,-7,-4,-4,-1,-1,-1,14,-7,-4,-1,11,-1,-7,-4,-1,5,-4,-1,2,2,-1,-1,2,-4,2,-1,-1,-1,2,2,-1,-1,-1,8,-10,-1,8,-1,-1,8,-1,-10,2,-10,5,2,5,-1,2,-1,-4 ; TV[80]=M; kill M; intmat M[6][9]=2,-1,-1,-1,2,2,-1,-1,-1,2,3,-1,-5,0,4,-3,-1,1,2,-4,-1,2,-1,5,2,5,-10,2,5,-13,5,2,2,-1,-1,-1,14,-1,-4,-7,-1,11,-1,-4,-7,5,2,-1,-4,-1,2,-4,2,-1 ; TV[81]=M; kill M; intmat M[6][9]=2,-1,-1,-1,2,2,-1,-1,-1,-8,1,1,1,1,1,1,1,1,2,-3,-1,1,0,4,3,-1,-5,2,-4,-1,2,-1,5,2,5,-10,2,5,-13,5,2,2,-1,-1,-1,2,3,-1,-5,0,4,-3,-1,1 ; TV[82]=M; kill M; intmat M[6][9]=2,-1,-1,-1,2,2,-1,-1,-1,2,-5,-1,3,4,0,1,-1,-3,2,5,-13,5,2,2,-1,-1,-1,5,-4,-1,2,2,-1,-1,2,-4,8,-10,-1,8,-1,-1,8,-1,-10,14,-7,-4,-1,11,-1,-7,-4,-1 ; TV[83]=M; kill M; intmat M[6][9]=2,-3,0,3,-1,-1,1,4,-5,2,-5,-1,3,4,0,1,-1,-3,2,-4,-1,2,-1,5,2,5,-10,2,5,-13,5,2,2,-1,-1,-1,8,-10,-1,8,-1,-1,8,-1,-10,5,-4,-1,2,2,-1,-1,2,-4 ; TV[84]=M; kill M; intmat M[6][9]=2,5,-13,5,2,2,-1,-1,-1,2,-5,-1,3,4,0,1,-1,-3,2,-4,-1,2,-1,5,2,5,-10,2,2,-1,-4,5,-1,-10,5,2,2,-1,-1,-1,2,2,-1,-1,-1,5,-4,-1,2,2,-1,-1,2,-4 ; TV[85]=M; kill M; intmat M[6][9]=2,2,5,-10,-1,5,-4,-1,2,2,-4,-1,2,-1,5,2,5,-10,2,-10,5,2,5,-1,2,-1,-4,2,-5,4,1,-1,-1,3,0,-3,2,-1,2,-1,-1,-1,-1,2,-1,5,-4,2,-1,-1,2,2,-1,-4 ; TV[86]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-10,5,2,5,-1,2,-1,-4,2,-3,-1,1,0,4,3,-1,-5,2,-4,-1,2,-1,5,2,5,-10,2,2,5,-10,-1,5,-4,-1,2,2,-5,4,1,-1,-1,3,0,-3 ; TV[87]=M; kill M; intmat M[6][9]=2,2,5,-10,-1,5,-4,-1,2,2,-3,-1,1,0,4,3,-1,-5,2,-10,5,2,5,-1,2,-1,-4,2,-5,4,1,-1,-1,3,0,-3,2,-1,-1,-1,2,2,5,-13,5,5,-4,2,-1,-1,2,2,-1,-4 ; TV[88]=M; kill M; intmat M[6][9]=2,-10,5,2,5,-1,2,-1,-4,-8,1,1,1,1,1,1,1,1,2,-1,-1,-1,2,2,-1,-1,-1,2,-3,-1,1,0,4,3,-1,-5,2,-1,-1,-1,2,2,5,-13,5,2,2,5,-10,-1,5,-4,-1,2 ; TV[89]=M; kill M; intmat M[6][9]=2,-10,5,2,5,-1,2,-1,-4,-8,1,1,1,1,1,1,1,1,2,-1,-1,-1,2,2,-1,-1,-1,2,-4,-1,2,-1,5,2,5,-10,2,2,-1,-4,5,-1,-10,5,2,2,2,5,-10,-1,5,-4,-1,2 ; TV[90]=M; kill M; intmat M[7][9]=14,-7,11,-7,-4,-4,-1,-1,-1,5,-1,2,-4,2,-1,-4,-1,2,2,-1,-1,-1,2,2,-1,-1,-1,5,-4,2,-1,-1,2,2,-1,-4,2,-10,5,2,5,-1,2,-1,-4,2,2,5,-10,-1,5,-4,-1,2,2,-1,-1,-1,2,2,5,-13,5 ; TV[91]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-3,-1,1,0,4,3,-1,-5,2,2,5,-10,-1,5,-4,-1,2,2,-4,-1,2,-1,5,2,5,-10,2,5,2,-1,-13,-1,5,2,-1,2,3,-1,-5,0,4,-3,-1,1 ; TV[92]=M; kill M; intmat M[6][9]=2,-1,-1,-1,2,2,-1,-1,-1,-8,1,1,1,1,1,1,1,1,2,2,5,-10,-1,5,-4,-1,2,2,-4,-1,2,-1,5,2,5,-10,2,2,-1,-4,5,-1,-10,5,2,2,3,-1,-5,0,4,-3,-1,1 ; TV[93]=M; kill M; intmat M[6][9]=2,-1,-1,-1,2,2,-1,-1,-1,-8,1,1,1,1,1,1,1,1,2,2,5,-10,-1,5,-4,-1,2,2,-3,-1,1,0,4,3,-1,-5,2,-1,-1,-1,2,2,5,-13,5,2,3,-1,-5,0,4,-3,-1,1 ; TV[94]=M; kill M; intmat M[6][9]=2,-5,-1,3,4,0,1,-1,-3,2,-10,5,2,5,-1,2,-1,-4,2,-1,-1,-1,2,2,-1,-1,-1,5,-4,-1,2,2,-1,-1,2,-4,8,-10,-1,8,-1,-1,8,-1,-10,14,-7,-4,-1,11,-1,-7,-4,-1 ; TV[95]=M; kill M; intmat M[6][9]=2,-5,-1,3,4,0,1,-1,-3,2,-3,0,3,-1,-1,1,4,-5,2,-10,5,2,5,-1,2,-1,-4,2,-4,-1,2,-1,5,2,5,-10,8,-10,-1,8,-1,-1,8,-1,-10,5,-4,-1,2,2,-1,-1,2,-4 ; TV[96]=M; kill M; intmat M[6][9]=2,-5,-1,3,4,0,1,-1,-3,2,-4,-1,2,-1,5,2,5,-10,2,2,-1,-4,5,-1,-10,5,2,2,-10,5,2,5,-1,2,-1,-4,2,-1,-1,-1,2,2,-1,-1,-1,5,-4,-1,2,2,-1,-1,2,-4 ; TV[97]=M; kill M; intmat M[6][9]=2,3,-1,-5,0,4,-3,-1,1,2,-4,-1,2,-1,5,2,5,-10,2,2,5,-10,-1,5,-4,-1,2,2,5,2,-1,-13,-1,5,2,-1,5,2,-1,-4,-1,2,-4,2,-1,14,-1,-4,-7,-1,11,-1,-4,-7 ; TV[98]=M; kill M; intmat M[6][9]=2,3,-1,-5,0,4,-3,-1,1,2,-1,-1,-1,2,2,-1,-1,-1,2,2,5,-10,-1,5,-4,-1,2,5,2,-1,-4,-1,2,-4,2,-1,14,-1,-4,-7,-1,11,-1,-4,-7,8,8,-1,-10,-1,-1,-10,-1,8 ; TV[99]=M; kill M; intmat M[6][9]=2,3,-1,-5,0,4,-3,-1,1,2,-4,-1,2,-1,5,2,5,-10,2,2,-1,-4,5,-1,-10,5,2,2,2,5,-10,-1,5,-4,-1,2,2,-1,-1,-1,2,2,-1,-1,-1,5,2,-1,-4,-1,2,-4,2,-1 ; TV[100]=M; kill M; intmat M[6][9]=5,-1,2,-4,2,-1,-4,-1,2,2,1,-1,-3,4,0,-5,-1,3,2,-1,2,5,-1,-13,-1,2,5,2,-1,-1,-1,2,2,5,-13,5,8,8,-1,-10,-1,-1,-10,-1,8,14,-7,-4,-1,11,-1,-7,-4,-1 ; TV[101]=M; kill M; intmat M[6][9]=2,1,4,-5,-1,-1,-3,0,3,5,-1,2,-4,2,-1,-4,-1,2,2,-1,2,5,-1,-13,-1,2,5,2,-1,-1,-1,2,2,5,-13,5,8,8,-1,-10,-1,-1,-10,-1,8,14,-7,11,-7,-4,-4,-1,-1,-1 ; TV[102]=M; kill M; intmat M[6][9]=14,-7,11,-7,-4,-4,-1,-1,-1,2,-1,2,5,-1,-13,-1,2,5,2,5,2,-1,-13,-1,5,2,-1,2,-1,-1,-1,2,2,5,-13,5,8,-10,-1,8,-1,-1,8,-1,-10,8,8,-1,-10,-1,-1,-10,-1,8 ; TV[103]=M; kill M; intmat M[6][9]=14,-7,-4,-1,11,-1,-7,-4,-1,2,-1,2,5,-1,-13,-1,2,5,2,5,-13,5,2,2,-1,-1,-1,2,-1,-1,-1,2,2,5,-13,5,8,-10,-1,8,-1,-1,8,-1,-10,8,8,-1,-10,-1,-1,-10,-1,8 ; TV[104]=M; kill M; intmat M[7][9]=8,-10,-1,8,-1,-1,8,-1,-10,14,-7,11,-7,-4,-4,-1,-1,-1,5,-1,2,-4,2,-1,-4,-1,2,14,-7,-4,-1,11,-1,-7,-4,-1,2,-10,5,2,5,-1,2,-1,-4,2,-1,2,5,-1,-13,-1,2,5,2,-1,-1,-1,2,2,5,-13,5 ; TV[105]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-10,5,2,5,-1,2,-1,-4,8,-10,-1,8,-1,-1,8,-1,-10,2,-3,-1,1,0,4,3,-1,-5,2,-1,-1,-1,2,2,5,-13,5,2,-5,4,1,-1,-1,3,0,-3 ; TV[106]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-10,5,2,5,-1,2,-1,-4,8,-10,-1,8,-1,-1,8,-1,-10,2,-4,-1,2,-1,5,2,5,-10,2,-3,0,3,-1,-1,1,4,-5,2,-5,4,1,-1,-1,3,0,-3 ; TV[107]=M; kill M; intmat M[6][9]=2,-3,0,3,-1,-1,1,4,-5,2,-1,2,-1,-1,-1,-1,2,-1,2,-1,2,5,-1,-13,-1,2,5,2,5,2,-1,-13,-1,5,2,-1,8,-10,-1,8,-1,-1,8,-1,-10,14,-1,-1,-1,-4,-4,-7,11,-7 ; TV[108]=M; kill M; intmat M[6][9]=2,3,0,-3,-1,-1,-5,4,1,2,-1,2,-1,-1,-1,-1,2,-1,2,-3,0,3,-1,-1,1,4,-5,2,-4,-1,2,-1,5,2,5,-10,2,5,2,-1,-13,-1,5,2,-1,14,-1,-1,-1,-4,-4,-7,11,-7 ; TV[109]=M; kill M; intmat M[6][9]=2,-5,4,1,-1,-1,3,0,-3,2,-3,0,3,-1,-1,1,4,-5,2,-4,-1,2,-1,5,2,5,-10,2,5,2,-1,-13,-1,5,2,-1,8,-10,-1,8,-1,-1,8,-1,-10,2,-1,2,-1,-1,-1,-1,2,-1 ; TV[110]=M; kill M; intmat M[6][9]=2,-3,0,3,-1,-1,1,4,-5,2,-4,-1,2,-1,5,2,5,-10,2,5,-13,5,2,2,-1,-1,-1,2,5,2,-1,-13,-1,5,2,-1,8,-10,-1,8,-1,-1,8,-1,-10,14,-1,-1,-1,-4,-4,-7,11,-7 ; TV[111]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-5,-1,3,4,0,1,-1,-3,2,-3,-1,1,0,4,3,-1,-5,2,-1,-1,-1,2,2,5,-13,5,8,-10,-1,8,-1,-1,8,-1,-10,2,5,-13,5,2,2,-1,-1,-1 ; TV[112]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-5,-1,3,4,0,1,-1,-3,2,-4,-1,2,-1,5,2,5,-10,8,-10,-1,8,-1,-1,8,-1,-10,2,-3,0,3,-1,-1,1,4,-5,2,5,-13,5,2,2,-1,-1,-1 ; TV[113]=M; kill M; intmat M[6][9]=2,1,4,-5,-1,-1,-3,0,3,5,-1,2,-4,2,-1,-4,-1,2,2,2,5,-10,-1,5,-4,-1,2,2,-1,-1,-1,2,2,5,-13,5,8,8,-1,-10,-1,-1,-10,-1,8,14,-7,11,-7,-4,-4,-1,-1,-1 ; TV[114]=M; kill M; intmat M[6][9]=2,2,5,-10,-1,5,-4,-1,2,2,1,-1,-3,4,0,-5,-1,3,5,-1,2,-4,2,-1,-4,-1,2,2,-1,-1,-1,2,2,5,-13,5,2,-1,-1,-1,2,2,-1,-1,-1,8,8,-1,-10,-1,-1,-10,-1,8 ; TV[115]=M; kill M; intmat M[6][9]=2,3,-1,-5,0,4,-3,-1,1,2,-1,-1,-1,2,2,-1,-1,-1,2,2,5,-10,-1,5,-4,-1,2,2,-1,-1,-1,2,2,5,-13,5,14,-1,-4,-7,-1,11,-1,-4,-7,8,8,-1,-10,-1,-1,-10,-1,8 ; TV[116]=M; kill M; intmat M[7][9]=8,8,-1,-10,-1,-1,-10,-1,8,14,-1,-4,-7,-1,11,-1,-4,-7,5,-4,2,-1,-1,2,2,-1,-4,14,-7,11,-7,-4,-4,-1,-1,-1,2,2,5,-10,-1,5,-4,-1,2,2,5,2,-1,-13,-1,5,2,-1,2,-1,-1,-1,2,2,5,-13,5 ; TV[117]=M; kill M; intmat M[6][9]=2,1,4,-5,-1,-1,-3,0,3,5,-1,2,-4,2,-1,-4,-1,2,2,2,5,-10,-1,5,-4,-1,2,2,-1,2,-1,-1,-1,-1,2,-1,14,-7,11,-7,-4,-4,-1,-1,-1,8,8,-1,-10,-1,-1,-10,-1,8 ; TV[118]=M; kill M; intmat M[8][9]=8,8,-1,-10,-1,-1,-10,-1,8,5,2,-1,-4,-1,2,-4,2,-1,14,-1,-4,-7,-1,11,-1,-4,-7,5,-4,2,-1,-1,2,2,-1,-4,14,-7,11,-7,-4,-4,-1,-1,-1,2,-1,2,-1,-1,-1,-1,2,-1,2,2,5,-10,-1,5,-4,-1,2,2,5,2,-1,-13,-1,5,2,-1 ; TV[119]=M; kill M; intmat M[7][9]=8,8,-1,-10,-1,-1,-10,-1,8,5,2,-1,-4,-1,2,-4,2,-1,5,-1,2,-4,2,-1,-4,-1,2,2,-1,2,-1,-1,-1,-1,2,-1,2,-1,-1,-1,2,2,-1,-1,-1,2,2,5,-10,-1,5,-4,-1,2,2,2,-1,-4,5,-1,-10,5,2 ; TV[120]=M; kill M; intmat M[7][9]=14,-7,11,-7,-4,-4,-1,-1,-1,5,-1,2,-4,2,-1,-4,-1,2,2,-1,-1,-1,2,2,-1,-1,-1,5,-4,2,-1,-1,2,2,-1,-4,2,-10,5,2,5,-1,2,-1,-4,2,2,5,-10,-1,5,-4,-1,2,2,-1,2,-1,-1,-1,-1,2,-1 ; TV[121]=M; kill M; intmat M[6][9]=2,3,0,-3,-1,-1,-5,4,1,2,-1,2,-1,-1,-1,-1,2,-1,5,2,-1,-4,-1,2,-4,2,-1,2,5,2,-1,-13,-1,5,2,-1,14,-1,-1,-1,-4,-4,-7,11,-7,8,8,-1,-10,-1,-1,-10,-1,8 ; TV[122]=M; kill M; intmat M[6][9]=2,-5,4,1,-1,-1,3,0,-3,5,-4,2,-1,-1,2,2,-1,-4,2,5,2,-1,-13,-1,5,2,-1,2,-1,2,-1,-1,-1,-1,2,-1,8,-10,-1,8,-1,-1,8,-1,-10,14,-7,11,-7,-4,-4,-1,-1,-1 ; TV[123]=M; kill M; intmat M[7][9]=8,8,-1,-10,-1,-1,-10,-1,8,14,-1,-1,-1,-4,-4,-7,11,-7,14,-7,11,-7,-4,-4,-1,-1,-1,8,-10,-1,8,-1,-1,8,-1,-10,2,-1,2,-1,-1,-1,-1,2,-1,2,-1,2,5,-1,-13,-1,2,5,2,5,2,-1,-13,-1,5,2,-1 ; TV[124]=M; kill M; intmat M[7][9]=8,-10,-1,8,-1,-1,8,-1,-10,14,-1,-1,-1,-4,-4,-7,11,-7,5,2,-1,-4,-1,2,-4,2,-1,14,-1,-4,-7,-1,11,-1,-4,-7,2,5,-13,5,2,2,-1,-1,-1,2,5,2,-1,-13,-1,5,2,-1,8,8,-1,-10,-1,-1,-10,-1,8 ; TV[125]=M; kill M; intmat M[6][9]=2,-1,-1,-1,2,2,-1,-1,-1,2,3,-1,-5,0,4,-3,-1,1,2,5,-13,5,2,2,-1,-1,-1,5,2,-1,-4,-1,2,-4,2,-1,14,-1,-4,-7,-1,11,-1,-4,-7,8,8,-1,-10,-1,-1,-10,-1,8 ; TV[126]=M; kill M; intmat M[7][9]=8,8,-1,-10,-1,-1,-10,-1,8,14,-1,-1,-1,-4,-4,-7,11,-7,5,-4,-1,2,2,-1,-1,2,-4,14,-7,-4,-1,11,-1,-7,-4,-1,2,-1,2,5,-1,-13,-1,2,5,2,5,-13,5,2,2,-1,-1,-1,8,-10,-1,8,-1,-1,8,-1,-10 ; TV[127]=M; kill M; intmat M[8][9]=8,8,-1,-10,-1,-1,-10,-1,8,5,2,-1,-4,-1,2,-4,2,-1,14,-1,-1,-1,-4,-4,-7,11,-7,5,-4,-1,2,2,-1,-1,2,-4,14,-7,-4,-1,11,-1,-7,-4,-1,2,-1,-1,-1,2,2,-1,-1,-1,2,2,-1,-4,5,-1,-10,5,2,2,5,-13,5,2,2,-1,-1,-1 ; TV[128]=M; kill M; intmat M[6][9]=2,5,-13,5,2,2,-1,-1,-1,2,3,-1,-5,0,4,-3,-1,1,2,-4,-1,2,-1,5,2,5,-10,2,2,-1,-4,5,-1,-10,5,2,2,-1,-1,-1,2,2,-1,-1,-1,5,2,-1,-4,-1,2,-4,2,-1 ; TV[129]=M; kill M; intmat M[6][9]=2,3,0,-3,-1,-1,-5,4,1,2,-4,-1,2,-1,5,2,5,-10,2,2,-1,-4,5,-1,-10,5,2,2,5,-13,5,2,2,-1,-1,-1,5,2,-1,-4,-1,2,-4,2,-1,14,-1,-1,-1,-4,-4,-7,11,-7 ; TV[130]=M; kill M; intmat M[6][9]=2,-3,0,3,-1,-1,1,4,-5,2,2,-1,-4,5,-1,-10,5,2,2,-4,-1,2,-1,5,2,5,-10,2,5,-13,5,2,2,-1,-1,-1,5,-4,-1,2,2,-1,-1,2,-4,14,-1,-1,-1,-4,-4,-7,11,-7 ; TV[131]=M; kill M; intmat M[6][9]=2,5,-13,5,2,2,-1,-1,-1,2,-3,-1,1,0,4,3,-1,-5,2,3,-1,-5,0,4,-3,-1,1,2,-1,-1,-1,2,2,5,-13,5,2,5,2,-1,-13,-1,5,2,-1,14,-1,-4,-7,-1,11,-1,-4,-7 ; TV[132]=M; kill M; intmat M[6][9]=2,-1,-1,-1,2,2,-1,-1,-1,-8,1,1,1,1,1,1,1,1,2,-3,-1,1,0,4,3,-1,-5,2,-1,-1,-1,2,2,5,-13,5,2,5,-13,5,2,2,-1,-1,-1,2,3,-1,-5,0,4,-3,-1,1 ; TV[133]=M; kill M; intmat M[6][9]=2,-1,-1,-1,2,2,-1,-1,-1,2,3,-1,-5,0,4,-3,-1,1,2,5,-13,5,2,2,-1,-1,-1,2,-1,-1,-1,2,2,5,-13,5,14,-1,-4,-7,-1,11,-1,-4,-7,8,8,-1,-10,-1,-1,-10,-1,8 ; TV[134]=M; kill M; intmat M[6][9]=2,3,-1,-5,0,4,-3,-1,1,2,-3,-1,1,0,4,3,-1,-5,2,2,5,-10,-1,5,-4,-1,2,2,-1,-1,-1,2,2,5,-13,5,2,5,2,-1,-13,-1,5,2,-1,14,-1,-4,-7,-1,11,-1,-4,-7 ; TV[135]=M; kill M; intmat M[6][9]=2,-3,0,3,-1,-1,1,4,-5,2,-10,5,2,5,-1,2,-1,-4,2,-1,2,5,-1,-13,-1,2,5,5,-4,-1,2,2,-1,-1,2,-4,8,-10,-1,8,-1,-1,8,-1,-10,2,-1,2,-1,-1,-1,-1,2,-1 ; TV[136]=M; kill M; intmat M[6][9]=2,-3,0,3,-1,-1,1,4,-5,2,-5,4,1,-1,-1,3,0,-3,2,-10,5,2,5,-1,2,-1,-4,2,-4,-1,2,-1,5,2,5,-10,8,-10,-1,8,-1,-1,8,-1,-10,2,-1,2,-1,-1,-1,-1,2,-1 ; TV[137]=M; kill M; intmat M[6][9]=2,-10,5,2,5,-1,2,-1,-4,2,2,-1,-4,5,-1,-10,5,2,2,-3,0,3,-1,-1,1,4,-5,2,-4,-1,2,-1,5,2,5,-10,2,-1,2,-1,-1,-1,-1,2,-1,5,-4,-1,2,2,-1,-1,2,-4 ; TV[138]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,8,-10,-1,8,-1,-1,8,-1,-10,2,-3,-1,1,0,4,3,-1,-5,2,-1,-1,-1,2,2,5,-13,5,2,5,-13,5,2,2,-1,-1,-1,2,5,2,-1,-13,-1,5,2,-1 ; TV[139]=M; kill M; intmat M[6][9]=14,-1,-4,-7,-1,11,-1,-4,-7,2,5,-13,5,2,2,-1,-1,-1,2,5,2,-1,-13,-1,5,2,-1,2,-1,-1,-1,2,2,5,-13,5,8,-10,-1,8,-1,-1,8,-1,-10,8,8,-1,-10,-1,-1,-10,-1,8 ; TV[140]=M; kill M; intmat M[6][9]=2,-5,4,1,-1,-1,3,0,-3,2,-10,5,2,5,-1,2,-1,-4,5,-4,2,-1,-1,2,2,-1,-4,2,-1,-1,-1,2,2,5,-13,5,8,-10,-1,8,-1,-1,8,-1,-10,14,-7,11,-7,-4,-4,-1,-1,-1 ; TV[141]=M; kill M; intmat M[6][9]=2,-3,0,3,-1,-1,1,4,-5,2,2,-1,-4,5,-1,-10,5,2,2,-1,2,-1,-1,-1,-1,2,-1,2,-1,2,5,-1,-13,-1,2,5,5,-4,-1,2,2,-1,-1,2,-4,14,-1,-1,-1,-4,-4,-7,11,-7 ; TV[142]=M; kill M; intmat M[6][9]=2,-3,0,3,-1,-1,1,4,-5,5,-4,-1,2,2,-1,-1,2,-4,2,-1,2,5,-1,-13,-1,2,5,2,5,-13,5,2,2,-1,-1,-1,8,-10,-1,8,-1,-1,8,-1,-10,14,-1,-1,-1,-4,-4,-7,11,-7 ; TV[143]=M; kill M; intmat M[6][9]=2,5,-13,5,2,2,-1,-1,-1,2,3,-1,-5,0,4,-3,-1,1,2,-4,-1,2,-1,5,2,5,-10,2,5,2,-1,-13,-1,5,2,-1,5,2,-1,-4,-1,2,-4,2,-1,14,-1,-4,-7,-1,11,-1,-4,-7 ; TV[144]=M; kill M; intmat M[6][9]=2,3,0,-3,-1,-1,-5,4,1,2,-4,-1,2,-1,5,2,5,-10,2,5,-13,5,2,2,-1,-1,-1,2,5,2,-1,-13,-1,5,2,-1,5,2,-1,-4,-1,2,-4,2,-1,14,-1,-1,-1,-4,-4,-7,11,-7 ; TV[145]=M; kill M; intmat M[6][9]=2,-5,4,1,-1,-1,3,0,-3,2,-10,5,2,5,-1,2,-1,-4,5,-4,2,-1,-1,2,2,-1,-4,2,-1,2,-1,-1,-1,-1,2,-1,8,-10,-1,8,-1,-1,8,-1,-10,14,-7,11,-7,-4,-4,-1,-1,-1 ; TV[146]=M; kill M; intmat M[6][9]=2,3,0,-3,-1,-1,-5,4,1,2,-4,-1,2,-1,5,2,5,-10,2,5,2,-1,-13,-1,5,2,-1,2,-1,2,-1,-1,-1,-1,2,-1,2,2,5,-10,-1,5,-4,-1,2,5,2,-1,-4,-1,2,-4,2,-1 ; TV[147]=M; kill M; intmat M[6][9]=2,-1,-1,-1,2,2,-1,-1,-1,2,-5,-1,3,4,0,1,-1,-3,2,5,-13,5,2,2,-1,-1,-1,2,-1,-1,-1,2,2,5,-13,5,8,-10,-1,8,-1,-1,8,-1,-10,14,-7,-4,-1,11,-1,-7,-4,-1 ; TV[148]=M; kill M; intmat M[6][9]=2,-1,-1,-1,2,2,-1,-1,-1,2,1,-1,-3,4,0,-5,-1,3,2,5,-13,5,2,2,-1,-1,-1,2,-1,-1,-1,2,2,5,-13,5,14,-7,-4,-1,11,-1,-7,-4,-1,8,8,-1,-10,-1,-1,-10,-1,8 ; TV[149]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-5,4,1,-1,-1,3,0,-3,2,-3,-1,1,0,4,3,-1,-5,2,-4,-1,2,-1,5,2,5,-10,2,2,5,-10,-1,5,-4,-1,2,2,5,2,-1,-13,-1,5,2,-1 ; TV[150]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-5,4,1,-1,-1,3,0,-3,8,-10,-1,8,-1,-1,8,-1,-10,2,-3,-1,1,0,4,3,-1,-5,2,-1,-1,-1,2,2,5,-13,5,2,5,2,-1,-13,-1,5,2,-1 ; TV[151]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-5,4,1,-1,-1,3,0,-3,8,-10,-1,8,-1,-1,8,-1,-10,2,-4,-1,2,-1,5,2,5,-10,2,-3,0,3,-1,-1,1,4,-5,2,5,2,-1,-13,-1,5,2,-1 ; TV[152]=M; kill M; intmat M[8][9]=14,-7,11,-7,-4,-4,-1,-1,-1,5,-1,2,-4,2,-1,-4,-1,2,14,-7,-4,-1,11,-1,-7,-4,-1,5,-4,-1,2,2,-1,-1,2,-4,8,-10,-1,8,-1,-1,8,-1,-10,2,-1,2,-1,-1,-1,-1,2,-1,2,-10,5,2,5,-1,2,-1,-4,2,-1,2,5,-1,-13,-1,2,5 ; TV[153]=M; kill M; intmat M[7][9]=5,-1,2,-4,2,-1,-4,-1,2,2,-1,2,-1,-1,-1,-1,2,-1,5,-4,-1,2,2,-1,-1,2,-4,14,-7,-4,-1,11,-1,-7,-4,-1,2,-10,5,2,5,-1,2,-1,-4,2,2,-1,-4,5,-1,-10,5,2,2,-1,-1,-1,2,2,-1,-1,-1 ; TV[154]=M; kill M; intmat M[6][9]=5,-1,2,-4,2,-1,-4,-1,2,2,1,-1,-3,4,0,-5,-1,3,2,-1,-1,-1,2,2,-1,-1,-1,2,2,-1,-4,5,-1,-10,5,2,14,-7,-4,-1,11,-1,-7,-4,-1,8,8,-1,-10,-1,-1,-10,-1,8 ; TV[155]=M; kill M; intmat M[6][9]=2,-10,5,2,5,-1,2,-1,-4,2,1,-1,-3,4,0,-5,-1,3,2,-1,-1,-1,2,2,-1,-1,-1,2,-1,-1,-1,2,2,5,-13,5,14,-7,-4,-1,11,-1,-7,-4,-1,5,-1,2,-4,2,-1,-4,-1,2 ; TV[156]=M; kill M; intmat M[6][9]=2,-3,0,3,-1,-1,1,4,-5,2,3,0,-3,-1,-1,-5,4,1,2,2,-1,-4,5,-1,-10,5,2,2,-1,2,-1,-1,-1,-1,2,-1,2,-4,-1,2,-1,5,2,5,-10,14,-1,-1,-1,-4,-4,-7,11,-7 ; TV[157]=M; kill M; intmat M[6][9]=2,-5,-1,3,4,0,1,-1,-3,2,-10,5,2,5,-1,2,-1,-4,2,-1,-1,-1,2,2,-1,-1,-1,2,-1,-1,-1,2,2,5,-13,5,8,-10,-1,8,-1,-1,8,-1,-10,14,-7,-4,-1,11,-1,-7,-4,-1 ; TV[158]=M; kill M; intmat M[6][9]=2,3,0,-3,-1,-1,-5,4,1,2,2,-1,-4,5,-1,-10,5,2,2,-1,2,-1,-1,-1,-1,2,-1,5,2,-1,-4,-1,2,-4,2,-1,14,-1,-1,-1,-4,-4,-7,11,-7,8,8,-1,-10,-1,-1,-10,-1,8 ; TV[159]=M; kill M; intmat M[6][9]=2,2,5,-10,-1,5,-4,-1,2,2,-4,-1,2,-1,5,2,5,-10,2,3,0,-3,-1,-1,-5,4,1,2,-1,2,-1,-1,-1,-1,2,-1,2,2,-1,-4,5,-1,-10,5,2,5,2,-1,-4,-1,2,-4,2,-1 ; TV[160]=M; kill M; intmat M[6][9]=2,-5,4,1,-1,-1,3,0,-3,2,-3,-1,1,0,4,3,-1,-5,2,2,5,-10,-1,5,-4,-1,2,2,-1,-1,-1,2,2,5,-13,5,2,5,2,-1,-13,-1,5,2,-1,5,-4,2,-1,-1,2,2,-1,-4 ; TV[161]=M; kill M; intmat M[6][9]=2,-5,4,1,-1,-1,3,0,-3,5,-4,2,-1,-1,2,2,-1,-4,2,5,2,-1,-13,-1,5,2,-1,2,-1,-1,-1,2,2,5,-13,5,8,-10,-1,8,-1,-1,8,-1,-10,14,-7,11,-7,-4,-4,-1,-1,-1 ; TV[162]=M; kill M; intmat M[6][9]=2,-5,4,1,-1,-1,3,0,-3,2,-4,-1,2,-1,5,2,5,-10,2,2,5,-10,-1,5,-4,-1,2,2,5,2,-1,-13,-1,5,2,-1,2,-1,2,-1,-1,-1,-1,2,-1,5,-4,2,-1,-1,2,2,-1,-4 ; TV[163]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-10,5,2,5,-1,2,-1,-4,2,-5,-1,3,4,0,1,-1,-3,2,-3,-1,1,0,4,3,-1,-5,2,-1,-1,-1,2,2,5,-13,5,8,-10,-1,8,-1,-1,8,-1,-10 ; TV[164]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-10,5,2,5,-1,2,-1,-4,2,-5,-1,3,4,0,1,-1,-3,2,-4,-1,2,-1,5,2,5,-10,8,-10,-1,8,-1,-1,8,-1,-10,2,-3,0,3,-1,-1,1,4,-5 ; TV[165]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-3,-1,1,0,4,3,-1,-5,2,5,-13,5,2,2,-1,-1,-1,2,-4,-1,2,-1,5,2,5,-10,2,3,-1,-5,0,4,-3,-1,1,2,5,2,-1,-13,-1,5,2,-1 ; TV[166]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,8,-10,-1,8,-1,-1,8,-1,-10,2,-4,-1,2,-1,5,2,5,-10,2,-3,0,3,-1,-1,1,4,-5,2,5,-13,5,2,2,-1,-1,-1,2,5,2,-1,-13,-1,5,2,-1 ; TV[167]=M; kill M; intmat M[6][9]=2,-10,5,2,5,-1,2,-1,-4,-8,1,1,1,1,1,1,1,1,2,-5,-1,3,4,0,1,-1,-3,2,-1,-1,-1,2,2,-1,-1,-1,2,-4,-1,2,-1,5,2,5,-10,2,2,-1,-4,5,-1,-10,5,2 ; TV[168]=M; kill M; intmat M[6][9]=2,-10,5,2,5,-1,2,-1,-4,-8,1,1,1,1,1,1,1,1,2,-5,-1,3,4,0,1,-1,-3,2,-1,-1,-1,2,2,-1,-1,-1,2,-3,-1,1,0,4,3,-1,-5,2,-1,-1,-1,2,2,5,-13,5 ; TV[169]=M; kill M; intmat M[6][9]=2,-10,5,2,5,-1,2,-1,-4,2,-4,-1,2,-1,5,2,5,-10,2,2,-1,-4,5,-1,-10,5,2,2,2,5,-10,-1,5,-4,-1,2,2,-1,-1,-1,2,2,-1,-1,-1,2,-1,2,-1,-1,-1,-1,2,-1 ; TV[170]=M; kill M; intmat M[8][9]=8,8,-1,-10,-1,-1,-10,-1,8,5,-1,2,-4,2,-1,-4,-1,2,14,-7,-4,-1,11,-1,-7,-4,-1,5,-4,-1,2,2,-1,-1,2,-4,14,-1,-1,-1,-4,-4,-7,11,-7,2,-1,2,-1,-1,-1,-1,2,-1,2,2,-1,-4,5,-1,-10,5,2,2,-1,2,5,-1,-13,-1,2,5 ; TV[171]=M; kill M; intmat M[6][9]=2,-1,-1,-1,2,2,-1,-1,-1,-8,1,1,1,1,1,1,1,1,2,-5,-1,3,4,0,1,-1,-3,2,-3,-1,1,0,4,3,-1,-5,2,-1,-1,-1,2,2,5,-13,5,2,5,-13,5,2,2,-1,-1,-1 ; TV[172]=M; kill M; intmat M[6][9]=2,-1,-1,-1,2,2,-1,-1,-1,-8,1,1,1,1,1,1,1,1,2,-4,-1,2,-1,5,2,5,-10,2,2,-1,-4,5,-1,-10,5,2,2,5,-13,5,2,2,-1,-1,-1,2,3,-1,-5,0,4,-3,-1,1 ; TV[173]=M; kill M; intmat M[6][9]=2,-1,-1,-1,2,2,-1,-1,-1,-8,1,1,1,1,1,1,1,1,2,-5,-1,3,4,0,1,-1,-3,2,-4,-1,2,-1,5,2,5,-10,2,2,-1,-4,5,-1,-10,5,2,2,5,-13,5,2,2,-1,-1,-1 ; TV[174]=M; kill M; intmat M[6][9]=2,1,4,-5,-1,-1,-3,0,3,5,-1,2,-4,2,-1,-4,-1,2,2,-1,2,5,-1,-13,-1,2,5,2,-1,2,-1,-1,-1,-1,2,-1,14,-7,11,-7,-4,-4,-1,-1,-1,8,8,-1,-10,-1,-1,-10,-1,8 ; TV[175]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-3,-1,1,0,4,3,-1,-5,2,5,-13,5,2,2,-1,-1,-1,2,-1,-1,-1,2,2,5,-13,5,2,3,-1,-5,0,4,-3,-1,1,2,5,2,-1,-13,-1,5,2,-1 ; TV[176]=M; kill M; intmat M[6][9]=2,-1,-1,-1,2,2,-1,-1,-1,-8,1,1,1,1,1,1,1,1,2,1,-1,-3,4,0,-5,-1,3,2,-1,-1,-1,2,2,5,-13,5,2,5,-13,5,2,2,-1,-1,-1,2,3,-1,-5,0,4,-3,-1,1 ; TV[177]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-10,5,2,5,-1,2,-1,-4,2,-5,-1,3,4,0,1,-1,-3,2,-1,-1,-1,2,2,5,-13,5,8,-10,-1,8,-1,-1,8,-1,-10,2,-1,2,5,-1,-13,-1,2,5 ; TV[178]=M; kill M; intmat M[6][9]=2,5,-13,5,2,2,-1,-1,-1,2,3,-1,-5,0,4,-3,-1,1,2,5,2,-1,-13,-1,5,2,-1,2,-1,-1,-1,2,2,5,-13,5,8,8,-1,-10,-1,-1,-10,-1,8,14,-1,-4,-7,-1,11,-1,-4,-7 ; TV[179]=M; kill M; intmat M[6][9]=2,5,-13,5,2,2,-1,-1,-1,2,1,-1,-3,4,0,-5,-1,3,2,3,-1,-5,0,4,-3,-1,1,2,-1,-1,-1,2,2,5,-13,5,2,-1,-1,-1,2,2,-1,-1,-1,8,8,-1,-10,-1,-1,-10,-1,8 ; TV[180]=M; kill M; intmat M[6][9]=2,-3,0,3,-1,-1,1,4,-5,2,-5,4,1,-1,-1,3,0,-3,2,-10,5,2,5,-1,2,-1,-4,2,-1,2,5,-1,-13,-1,2,5,8,-10,-1,8,-1,-1,8,-1,-10,2,-1,2,-1,-1,-1,-1,2,-1 ; TV[181]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-10,5,2,5,-1,2,-1,-4,2,-3,0,3,-1,-1,1,4,-5,2,-4,-1,2,-1,5,2,5,-10,2,-5,4,1,-1,-1,3,0,-3,2,-1,2,-1,-1,-1,-1,2,-1 ; TV[182]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-3,-1,1,0,4,3,-1,-5,2,2,5,-10,-1,5,-4,-1,2,2,-1,-1,-1,2,2,5,-13,5,2,5,2,-1,-13,-1,5,2,-1,2,3,-1,-5,0,4,-3,-1,1 ; TV[183]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-4,-1,2,-1,5,2,5,-10,2,2,5,-10,-1,5,-4,-1,2,2,5,2,-1,-13,-1,5,2,-1,2,3,0,-3,-1,-1,-5,4,1,2,3,-1,-5,0,4,-3,-1,1 ; TV[184]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-10,5,2,5,-1,2,-1,-4,8,-10,-1,8,-1,-1,8,-1,-10,2,-1,-1,-1,2,2,5,-13,5,2,-1,2,5,-1,-13,-1,2,5,2,-5,4,1,-1,-1,3,0,-3 ; TV[185]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-10,5,2,5,-1,2,-1,-4,2,-3,-1,1,0,4,3,-1,-5,2,-1,-1,-1,2,2,5,-13,5,2,2,5,-10,-1,5,-4,-1,2,2,-5,4,1,-1,-1,3,0,-3 ; TV[186]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-4,-1,2,-1,5,2,5,-10,2,2,-1,-4,5,-1,-10,5,2,2,2,5,-10,-1,5,-4,-1,2,2,3,-1,-5,0,4,-3,-1,1,2,3,0,-3,-1,-1,-5,4,1 ; TV[187]=M; kill M; intmat M[6][9]=2,-1,-1,-1,2,2,-1,-1,-1,-8,1,1,1,1,1,1,1,1,2,2,5,-10,-1,5,-4,-1,2,2,2,-1,-4,5,-1,-10,5,2,2,1,-1,-3,4,0,-5,-1,3,2,3,-1,-5,0,4,-3,-1,1 ; TV[188]=M; kill M; intmat M[6][9]=2,-3,0,3,-1,-1,1,4,-5,2,2,-1,-4,5,-1,-10,5,2,2,-1,2,5,-1,-13,-1,2,5,2,5,-13,5,2,2,-1,-1,-1,5,-4,-1,2,2,-1,-1,2,-4,14,-1,-1,-1,-4,-4,-7,11,-7 ; TV[189]=M; kill M; intmat M[6][9]=2,-3,0,3,-1,-1,1,4,-5,2,3,0,-3,-1,-1,-5,4,1,2,2,-1,-4,5,-1,-10,5,2,2,-4,-1,2,-1,5,2,5,-10,2,5,-13,5,2,2,-1,-1,-1,14,-1,-1,-1,-4,-4,-7,11,-7 ; TV[190]=M; kill M; intmat M[6][9]=2,-3,0,3,-1,-1,1,4,-5,2,-5,-1,3,4,0,1,-1,-3,2,2,-1,-4,5,-1,-10,5,2,2,-4,-1,2,-1,5,2,5,-10,2,5,-13,5,2,2,-1,-1,-1,5,-4,-1,2,2,-1,-1,2,-4 ; TV[191]=M; kill M; intmat M[6][9]=2,-3,0,3,-1,-1,1,4,-5,2,-1,2,5,-1,-13,-1,2,5,2,5,-13,5,2,2,-1,-1,-1,2,5,2,-1,-13,-1,5,2,-1,8,-10,-1,8,-1,-1,8,-1,-10,14,-1,-1,-1,-4,-4,-7,11,-7 ; TV[192]=M; kill M; intmat M[6][9]=2,-3,0,3,-1,-1,1,4,-5,2,-5,-1,3,4,0,1,-1,-3,2,-1,2,5,-1,-13,-1,2,5,2,5,-13,5,2,2,-1,-1,-1,8,-10,-1,8,-1,-1,8,-1,-10,5,-4,-1,2,2,-1,-1,2,-4 ; TV[193]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-5,4,1,-1,-1,3,0,-3,2,-3,0,3,-1,-1,1,4,-5,2,-1,2,-1,-1,-1,-1,2,-1,2,-4,-1,2,-1,5,2,5,-10,2,5,2,-1,-13,-1,5,2,-1 ; TV[194]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-5,4,1,-1,-1,3,0,-3,8,-10,-1,8,-1,-1,8,-1,-10,2,-3,0,3,-1,-1,1,4,-5,2,-1,2,5,-1,-13,-1,2,5,2,5,2,-1,-13,-1,5,2,-1 ; TV[195]=M; kill M; intmat M[6][9]=2,5,-13,5,2,2,-1,-1,-1,2,3,-1,-5,0,4,-3,-1,1,2,2,-1,-4,5,-1,-10,5,2,2,-1,-1,-1,2,2,-1,-1,-1,5,2,-1,-4,-1,2,-4,2,-1,8,8,-1,-10,-1,-1,-10,-1,8 ; TV[196]=M; kill M; intmat M[6][9]=2,3,0,-3,-1,-1,-5,4,1,2,3,-1,-5,0,4,-3,-1,1,2,-4,-1,2,-1,5,2,5,-10,2,2,-1,-4,5,-1,-10,5,2,2,5,-13,5,2,2,-1,-1,-1,5,2,-1,-4,-1,2,-4,2,-1 ; TV[197]=M; kill M; intmat M[6][9]=2,-1,2,5,-1,-13,-1,2,5,2,-5,-1,3,4,0,1,-1,-3,2,5,-13,5,2,2,-1,-1,-1,5,-4,-1,2,2,-1,-1,2,-4,8,-10,-1,8,-1,-1,8,-1,-10,14,-7,-4,-1,11,-1,-7,-4,-1 ; TV[198]=M; kill M; intmat M[6][9]=2,-1,2,5,-1,-13,-1,2,5,2,5,-13,5,2,2,-1,-1,-1,2,5,2,-1,-13,-1,5,2,-1,14,-1,-1,-1,-4,-4,-7,11,-7,8,-10,-1,8,-1,-1,8,-1,-10,8,8,-1,-10,-1,-1,-10,-1,8 ; TV[199]=M; kill M; intmat M[7][9]=8,8,-1,-10,-1,-1,-10,-1,8,14,-1,-1,-1,-4,-4,-7,11,-7,5,-4,-1,2,2,-1,-1,2,-4,14,-7,-4,-1,11,-1,-7,-4,-1,2,-1,2,5,-1,-13,-1,2,5,2,2,-1,-4,5,-1,-10,5,2,2,5,-13,5,2,2,-1,-1,-1 ; TV[200]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-10,5,2,5,-1,2,-1,-4,2,-5,-1,3,4,0,1,-1,-3,2,-4,-1,2,-1,5,2,5,-10,2,2,-1,-4,5,-1,-10,5,2,2,-3,0,3,-1,-1,1,4,-5 ; TV[201]=M; kill M; intmat M[6][9]=2,-10,5,2,5,-1,2,-1,-4,-8,1,1,1,1,1,1,1,1,2,-5,-1,3,4,0,1,-1,-3,2,-1,-1,-1,2,2,-1,-1,-1,2,2,-1,-4,5,-1,-10,5,2,2,1,-1,-3,4,0,-5,-1,3 ; TV[202]=M; kill M; intmat M[6][9]=2,-5,4,1,-1,-1,3,0,-3,2,-10,5,2,5,-1,2,-1,-4,2,-1,2,5,-1,-13,-1,2,5,2,-1,-1,-1,2,2,5,-13,5,8,-10,-1,8,-1,-1,8,-1,-10,14,-7,11,-7,-4,-4,-1,-1,-1 ; TV[203]=M; kill M; intmat M[6][9]=2,2,5,-10,-1,5,-4,-1,2,2,-5,4,1,-1,-1,3,0,-3,2,-10,5,2,5,-1,2,-1,-4,2,-1,-1,-1,2,2,5,-13,5,5,-4,2,-1,-1,2,2,-1,-4,14,-7,11,-7,-4,-4,-1,-1,-1 ; TV[204]=M; kill M; intmat M[6][9]=5,-1,2,-4,2,-1,-4,-1,2,2,1,-1,-3,4,0,-5,-1,3,2,-1,2,5,-1,-13,-1,2,5,2,2,-1,-4,5,-1,-10,5,2,8,8,-1,-10,-1,-1,-10,-1,8,14,-7,-4,-1,11,-1,-7,-4,-1 ; TV[205]=M; kill M; intmat M[6][9]=2,2,5,-10,-1,5,-4,-1,2,2,1,-1,-3,4,0,-5,-1,3,5,-1,2,-4,2,-1,-4,-1,2,2,2,-1,-4,5,-1,-10,5,2,2,-1,-1,-1,2,2,-1,-1,-1,8,8,-1,-10,-1,-1,-10,-1,8 ; TV[206]=M; kill M; intmat M[6][9]=2,-1,-1,-1,2,2,-1,-1,-1,2,1,-1,-3,4,0,-5,-1,3,2,5,-13,5,2,2,-1,-1,-1,2,2,-1,-4,5,-1,-10,5,2,14,-7,-4,-1,11,-1,-7,-4,-1,8,8,-1,-10,-1,-1,-10,-1,8 ; TV[207]=M; kill M; intmat M[6][9]=2,-10,5,2,5,-1,2,-1,-4,2,1,-1,-3,4,0,-5,-1,3,2,-1,-1,-1,2,2,-1,-1,-1,2,2,-1,-4,5,-1,-10,5,2,14,-7,-4,-1,11,-1,-7,-4,-1,5,-1,2,-4,2,-1,-4,-1,2 ; TV[208]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-5,4,1,-1,-1,3,0,-3,2,-3,-1,1,0,4,3,-1,-5,2,-1,-1,-1,2,2,5,-13,5,2,2,5,-10,-1,5,-4,-1,2,2,5,2,-1,-13,-1,5,2,-1 ; TV[209]=M; kill M; intmat M[6][9]=2,-5,4,1,-1,-1,3,0,-3,2,2,5,-10,-1,5,-4,-1,2,2,5,2,-1,-13,-1,5,2,-1,2,-1,-1,-1,2,2,5,-13,5,5,-4,2,-1,-1,2,2,-1,-4,14,-7,11,-7,-4,-4,-1,-1,-1 ; TV[210]=M; kill M; intmat M[6][9]=2,-10,5,2,5,-1,2,-1,-4,-8,1,1,1,1,1,1,1,1,2,-5,-1,3,4,0,1,-1,-3,2,-1,-1,-1,2,2,-1,-1,-1,2,-1,-1,-1,2,2,5,-13,5,2,1,-1,-3,4,0,-5,-1,3 ; TV[211]=M; kill M; intmat M[6][9]=2,-10,5,2,5,-1,2,-1,-4,-8,1,1,1,1,1,1,1,1,2,-1,-1,-1,2,2,-1,-1,-1,2,-1,-1,-1,2,2,5,-13,5,2,1,-1,-3,4,0,-5,-1,3,2,2,5,-10,-1,5,-4,-1,2 ; TV[212]=M; kill M; intmat M[6][9]=2,-3,0,3,-1,-1,1,4,-5,2,-10,5,2,5,-1,2,-1,-4,2,-1,2,5,-1,-13,-1,2,5,2,2,-1,-4,5,-1,-10,5,2,2,-1,2,-1,-1,-1,-1,2,-1,5,-4,-1,2,2,-1,-1,2,-4 ; TV[213]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-10,5,2,5,-1,2,-1,-4,2,2,-1,-4,5,-1,-10,5,2,2,-3,0,3,-1,-1,1,4,-5,2,-4,-1,2,-1,5,2,5,-10,2,-1,2,-1,-1,-1,-1,2,-1 ; TV[214]=M; kill M; intmat M[6][9]=2,-5,-1,3,4,0,1,-1,-3,2,2,-1,-4,5,-1,-10,5,2,2,-3,0,3,-1,-1,1,4,-5,2,-4,-1,2,-1,5,2,5,-10,2,-10,5,2,5,-1,2,-1,-4,5,-4,-1,2,2,-1,-1,2,-4 ; TV[215]=M; kill M; intmat M[6][9]=2,5,-13,5,2,2,-1,-1,-1,2,3,-1,-5,0,4,-3,-1,1,2,5,2,-1,-13,-1,5,2,-1,5,2,-1,-4,-1,2,-4,2,-1,8,8,-1,-10,-1,-1,-10,-1,8,14,-1,-4,-7,-1,11,-1,-4,-7 ; TV[216]=M; kill M; intmat M[6][9]=2,-1,-1,-1,2,2,-1,-1,-1,-8,1,1,1,1,1,1,1,1,2,2,5,-10,-1,5,-4,-1,2,2,-1,-1,-1,2,2,5,-13,5,2,1,-1,-3,4,0,-5,-1,3,2,3,-1,-5,0,4,-3,-1,1 ; TV[217]=M; kill M; intmat M[6][9]=2,-10,5,2,5,-1,2,-1,-4,2,1,-1,-3,4,0,-5,-1,3,2,-1,2,5,-1,-13,-1,2,5,2,-1,-1,-1,2,2,5,-13,5,5,-1,2,-4,2,-1,-4,-1,2,14,-7,-4,-1,11,-1,-7,-4,-1 ; TV[218]=M; kill M; intmat M[6][9]=2,-10,5,2,5,-1,2,-1,-4,2,1,-1,-3,4,0,-5,-1,3,2,2,5,-10,-1,5,-4,-1,2,2,-1,-1,-1,2,2,5,-13,5,2,-1,-1,-1,2,2,-1,-1,-1,5,-1,2,-4,2,-1,-4,-1,2 ; TV[219]=M; kill M; intmat M[6][9]=2,-5,-1,3,4,0,1,-1,-3,2,1,-1,-3,4,0,-5,-1,3,2,-10,5,2,5,-1,2,-1,-4,2,-1,-1,-1,2,2,-1,-1,-1,2,-1,-1,-1,2,2,5,-13,5,14,-7,-4,-1,11,-1,-7,-4,-1 ; TV[220]=M; kill M; intmat M[6][9]=2,-5,-1,3,4,0,1,-1,-3,2,-10,5,2,5,-1,2,-1,-4,2,-1,2,5,-1,-13,-1,2,5,2,-1,-1,-1,2,2,5,-13,5,8,-10,-1,8,-1,-1,8,-1,-10,14,-7,-4,-1,11,-1,-7,-4,-1 ; TV[221]=M; kill M; intmat M[6][9]=2,-1,2,5,-1,-13,-1,2,5,2,5,-13,5,2,2,-1,-1,-1,2,5,2,-1,-13,-1,5,2,-1,2,-1,-1,-1,2,2,5,-13,5,8,-10,-1,8,-1,-1,8,-1,-10,8,8,-1,-10,-1,-1,-10,-1,8 ; TV[222]=M; kill M; intmat M[6][9]=2,3,-1,-5,0,4,-3,-1,1,2,2,5,-10,-1,5,-4,-1,2,2,5,2,-1,-13,-1,5,2,-1,2,-1,-1,-1,2,2,5,-13,5,8,8,-1,-10,-1,-1,-10,-1,8,14,-1,-4,-7,-1,11,-1,-4,-7 ; TV[223]=M; kill M; intmat M[6][9]=2,3,-1,-5,0,4,-3,-1,1,2,1,-1,-3,4,0,-5,-1,3,2,2,5,-10,-1,5,-4,-1,2,2,-1,-1,-1,2,2,5,-13,5,2,-1,-1,-1,2,2,-1,-1,-1,8,8,-1,-10,-1,-1,-10,-1,8 ; TV[224]=M; kill M; intmat M[6][9]=2,1,4,-5,-1,-1,-3,0,3,2,1,-1,-3,4,0,-5,-1,3,2,2,5,-10,-1,5,-4,-1,2,2,-1,-1,-1,2,2,5,-13,5,8,8,-1,-10,-1,-1,-10,-1,8,5,-1,2,-4,2,-1,-4,-1,2 ; TV[225]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-5,4,1,-1,-1,3,0,-3,8,-10,-1,8,-1,-1,8,-1,-10,2,-1,-1,-1,2,2,5,-13,5,2,-1,2,5,-1,-13,-1,2,5,2,5,2,-1,-13,-1,5,2,-1 ; TV[226]=M; kill M; intmat M[6][9]=2,-5,4,1,-1,-1,3,0,-3,2,-1,2,5,-1,-13,-1,2,5,2,5,2,-1,-13,-1,5,2,-1,2,-1,-1,-1,2,2,5,-13,5,8,-10,-1,8,-1,-1,8,-1,-10,14,-7,11,-7,-4,-4,-1,-1,-1 ; TV[227]=M; kill M; intmat M[6][9]=2,1,4,-5,-1,-1,-3,0,3,2,-1,2,5,-1,-13,-1,2,5,2,5,2,-1,-13,-1,5,2,-1,2,-1,-1,-1,2,2,5,-13,5,8,8,-1,-10,-1,-1,-10,-1,8,14,-7,11,-7,-4,-4,-1,-1,-1 ; TV[228]=M; kill M; intmat M[6][9]=2,3,0,-3,-1,-1,-5,4,1,5,2,-1,-4,-1,2,-4,2,-1,2,5,-13,5,2,2,-1,-1,-1,2,5,2,-1,-13,-1,5,2,-1,8,8,-1,-10,-1,-1,-10,-1,8,14,-1,-1,-1,-4,-4,-7,11,-7 ; TV[229]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-5,-1,3,4,0,1,-1,-3,8,-10,-1,8,-1,-1,8,-1,-10,2,-1,-1,-1,2,2,5,-13,5,2,-1,2,5,-1,-13,-1,2,5,2,5,-13,5,2,2,-1,-1,-1 ; TV[230]=M; kill M; intmat M[6][9]=2,3,0,-3,-1,-1,-5,4,1,2,-1,2,-1,-1,-1,-1,2,-1,2,-1,2,5,-1,-13,-1,2,5,2,5,2,-1,-13,-1,5,2,-1,14,-1,-1,-1,-4,-4,-7,11,-7,8,8,-1,-10,-1,-1,-10,-1,8 ; TV[231]=M; kill M; intmat M[6][9]=2,-5,4,1,-1,-1,3,0,-3,2,-1,2,5,-1,-13,-1,2,5,2,5,2,-1,-13,-1,5,2,-1,2,-1,2,-1,-1,-1,-1,2,-1,8,-10,-1,8,-1,-1,8,-1,-10,14,-7,11,-7,-4,-4,-1,-1,-1 ; TV[232]=M; kill M; intmat M[6][9]=2,1,4,-5,-1,-1,-3,0,3,2,-1,2,5,-1,-13,-1,2,5,2,5,2,-1,-13,-1,5,2,-1,2,-1,2,-1,-1,-1,-1,2,-1,14,-7,11,-7,-4,-4,-1,-1,-1,8,8,-1,-10,-1,-1,-10,-1,8 ; TV[233]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-4,-1,2,-1,5,2,5,-10,2,2,-1,-4,5,-1,-10,5,2,2,5,-13,5,2,2,-1,-1,-1,2,3,-1,-5,0,4,-3,-1,1,2,3,0,-3,-1,-1,-5,4,1 ; TV[234]=M; kill M; intmat M[6][9]=2,-1,-1,-1,2,2,-1,-1,-1,-8,1,1,1,1,1,1,1,1,2,1,-1,-3,4,0,-5,-1,3,2,2,-1,-4,5,-1,-10,5,2,2,5,-13,5,2,2,-1,-1,-1,2,3,-1,-5,0,4,-3,-1,1 ; TV[235]=M; kill M; intmat M[6][9]=2,-3,0,3,-1,-1,1,4,-5,2,-5,-1,3,4,0,1,-1,-3,2,-10,5,2,5,-1,2,-1,-4,2,-1,2,5,-1,-13,-1,2,5,8,-10,-1,8,-1,-1,8,-1,-10,5,-4,-1,2,2,-1,-1,2,-4 ; TV[236]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,8,-10,-1,8,-1,-1,8,-1,-10,2,-1,2,5,-1,-13,-1,2,5,2,-3,0,3,-1,-1,1,4,-5,2,5,-13,5,2,2,-1,-1,-1,2,5,2,-1,-13,-1,5,2,-1 ; TV[237]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-3,0,3,-1,-1,1,4,-5,2,-4,-1,2,-1,5,2,5,-10,2,5,2,-1,-13,-1,5,2,-1,2,5,-13,5,2,2,-1,-1,-1,2,3,0,-3,-1,-1,-5,4,1 ; TV[238]=M; kill M; intmat M[6][9]=2,-5,4,1,-1,-1,3,0,-3,2,2,5,-10,-1,5,-4,-1,2,2,5,2,-1,-13,-1,5,2,-1,2,-1,2,-1,-1,-1,-1,2,-1,5,-4,2,-1,-1,2,2,-1,-4,14,-7,11,-7,-4,-4,-1,-1,-1 ; TV[239]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-5,4,1,-1,-1,3,0,-3,2,-4,-1,2,-1,5,2,5,-10,2,-1,2,-1,-1,-1,-1,2,-1,2,2,5,-10,-1,5,-4,-1,2,2,5,2,-1,-13,-1,5,2,-1 ; TV[240]=M; kill M; intmat M[6][9]=2,-1,-1,-1,2,2,-1,-1,-1,2,-5,-1,3,4,0,1,-1,-3,2,2,-1,-4,5,-1,-10,5,2,2,5,-13,5,2,2,-1,-1,-1,5,-4,-1,2,2,-1,-1,2,-4,14,-7,-4,-1,11,-1,-7,-4,-1 ; TV[241]=M; kill M; intmat M[6][9]=2,3,0,-3,-1,-1,-5,4,1,2,2,-1,-4,5,-1,-10,5,2,5,2,-1,-4,-1,2,-4,2,-1,2,5,-13,5,2,2,-1,-1,-1,8,8,-1,-10,-1,-1,-10,-1,8,14,-1,-1,-1,-4,-4,-7,11,-7 ; TV[242]=M; kill M; intmat M[6][9]=2,3,0,-3,-1,-1,-5,4,1,2,-4,-1,2,-1,5,2,5,-10,2,-3,0,3,-1,-1,1,4,-5,2,5,-13,5,2,2,-1,-1,-1,2,5,2,-1,-13,-1,5,2,-1,14,-1,-1,-1,-4,-4,-7,11,-7 ; TV[243]=M; kill M; intmat M[6][9]=2,-5,-1,3,4,0,1,-1,-3,2,2,-1,-4,5,-1,-10,5,2,2,-10,5,2,5,-1,2,-1,-4,2,-1,-1,-1,2,2,-1,-1,-1,5,-4,-1,2,2,-1,-1,2,-4,14,-7,-4,-1,11,-1,-7,-4,-1 ; TV[244]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,8,-10,-1,8,-1,-1,8,-1,-10,2,-1,2,5,-1,-13,-1,2,5,2,-1,-1,-1,2,2,5,-13,5,2,5,-13,5,2,2,-1,-1,-1,2,5,2,-1,-13,-1,5,2,-1 ; TV[245]=M; kill M; intmat M[6][9]=2,3,-1,-5,0,4,-3,-1,1,2,2,-1,-4,5,-1,-10,5,2,2,2,5,-10,-1,5,-4,-1,2,2,-1,-1,-1,2,2,-1,-1,-1,5,2,-1,-4,-1,2,-4,2,-1,8,8,-1,-10,-1,-1,-10,-1,8 ; TV[246]=M; kill M; intmat M[6][9]=2,3,-1,-5,0,4,-3,-1,1,2,-4,-1,2,-1,5,2,5,-10,2,3,0,-3,-1,-1,-5,4,1,2,2,-1,-4,5,-1,-10,5,2,2,2,5,-10,-1,5,-4,-1,2,5,2,-1,-4,-1,2,-4,2,-1 ; TV[247]=M; kill M; intmat M[6][9]=2,3,0,-3,-1,-1,-5,4,1,2,2,-1,-4,5,-1,-10,5,2,2,-1,2,-1,-1,-1,-1,2,-1,2,-1,2,5,-1,-13,-1,2,5,14,-1,-1,-1,-4,-4,-7,11,-7,8,8,-1,-10,-1,-1,-10,-1,8 ; TV[248]=M; kill M; intmat M[6][9]=2,1,4,-5,-1,-1,-3,0,3,2,2,-1,-4,5,-1,-10,5,2,2,-1,2,5,-1,-13,-1,2,5,5,-1,2,-4,2,-1,-4,-1,2,2,-1,2,-1,-1,-1,-1,2,-1,8,8,-1,-10,-1,-1,-10,-1,8 ; TV[249]=M; kill M; intmat M[7][9]=14,-7,-4,-1,11,-1,-7,-4,-1,5,-1,2,-4,2,-1,-4,-1,2,2,-1,2,-1,-1,-1,-1,2,-1,5,-4,-1,2,2,-1,-1,2,-4,2,-10,5,2,5,-1,2,-1,-4,2,2,-1,-4,5,-1,-10,5,2,2,-1,2,5,-1,-13,-1,2,5 ; TV[250]=M; kill M; intmat M[6][9]=2,-10,5,2,5,-1,2,-1,-4,2,1,4,-5,-1,-1,-3,0,3,2,2,5,-10,-1,5,-4,-1,2,2,-1,-1,-1,2,2,5,-13,5,5,-1,2,-4,2,-1,-4,-1,2,14,-7,11,-7,-4,-4,-1,-1,-1 ; TV[251]=M; kill M; intmat M[6][9]=2,-5,4,1,-1,-1,3,0,-3,2,-3,0,3,-1,-1,1,4,-5,2,-1,2,5,-1,-13,-1,2,5,2,5,2,-1,-13,-1,5,2,-1,8,-10,-1,8,-1,-1,8,-1,-10,2,-1,2,-1,-1,-1,-1,2,-1 ; TV[252]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-10,5,2,5,-1,2,-1,-4,8,-10,-1,8,-1,-1,8,-1,-10,2,-3,0,3,-1,-1,1,4,-5,2,-1,2,5,-1,-13,-1,2,5,2,-5,4,1,-1,-1,3,0,-3 ; TV[253]=M; kill M; intmat M[6][9]=2,-1,2,5,-1,-13,-1,2,5,2,1,-1,-3,4,0,-5,-1,3,2,5,-13,5,2,2,-1,-1,-1,2,-1,-1,-1,2,2,5,-13,5,8,8,-1,-10,-1,-1,-10,-1,8,14,-7,-4,-1,11,-1,-7,-4,-1 ; TV[254]=M; kill M; intmat M[6][9]=2,-1,-1,-1,2,2,-1,-1,-1,2,-5,-1,3,4,0,1,-1,-3,2,1,-1,-3,4,0,-5,-1,3,2,-1,-1,-1,2,2,5,-13,5,2,5,-13,5,2,2,-1,-1,-1,14,-7,-4,-1,11,-1,-7,-4,-1 ; TV[255]=M; kill M; intmat M[6][9]=2,1,4,-5,-1,-1,-3,0,3,2,1,-1,-3,4,0,-5,-1,3,2,-1,2,5,-1,-13,-1,2,5,2,-1,-1,-1,2,2,5,-13,5,8,8,-1,-10,-1,-1,-10,-1,8,5,-1,2,-4,2,-1,-4,-1,2 ; TV[256]=M; kill M; intmat M[6][9]=2,1,4,-5,-1,-1,-3,0,3,2,-10,5,2,5,-1,2,-1,-4,2,-1,2,5,-1,-13,-1,2,5,2,-1,-1,-1,2,2,5,-13,5,5,-1,2,-4,2,-1,-4,-1,2,14,-7,11,-7,-4,-4,-1,-1,-1 ; TV[257]=M; kill M; intmat M[6][9]=2,-10,5,2,5,-1,2,-1,-4,2,1,4,-5,-1,-1,-3,0,3,2,2,5,-10,-1,5,-4,-1,2,2,-1,2,-1,-1,-1,-1,2,-1,5,-1,2,-4,2,-1,-4,-1,2,14,-7,11,-7,-4,-4,-1,-1,-1 ; TV[258]=M; kill M; intmat M[6][9]=2,2,5,-10,-1,5,-4,-1,2,2,-5,4,1,-1,-1,3,0,-3,2,-10,5,2,5,-1,2,-1,-4,2,-1,2,-1,-1,-1,-1,2,-1,5,-4,2,-1,-1,2,2,-1,-4,14,-7,11,-7,-4,-4,-1,-1,-1 ; TV[259]=M; kill M; intmat M[6][9]=2,-10,5,2,5,-1,2,-1,-4,2,2,-1,-4,5,-1,-10,5,2,2,2,5,-10,-1,5,-4,-1,2,2,-1,-1,-1,2,2,-1,-1,-1,2,-1,2,-1,-1,-1,-1,2,-1,5,-1,2,-4,2,-1,-4,-1,2 ; TV[260]=M; kill M; intmat M[6][9]=2,1,4,-5,-1,-1,-3,0,3,2,-10,5,2,5,-1,2,-1,-4,2,-1,2,5,-1,-13,-1,2,5,2,-1,2,-1,-1,-1,-1,2,-1,5,-1,2,-4,2,-1,-4,-1,2,14,-7,11,-7,-4,-4,-1,-1,-1 ; TV[261]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-10,5,2,5,-1,2,-1,-4,2,-5,-1,3,4,0,1,-1,-3,2,-3,0,3,-1,-1,1,4,-5,8,-10,-1,8,-1,-1,8,-1,-10,2,-1,2,5,-1,-13,-1,2,5 ; TV[262]=M; kill M; intmat M[6][9]=2,3,-1,-5,0,4,-3,-1,1,2,2,5,-10,-1,5,-4,-1,2,2,5,2,-1,-13,-1,5,2,-1,5,2,-1,-4,-1,2,-4,2,-1,8,8,-1,-10,-1,-1,-10,-1,8,14,-1,-4,-7,-1,11,-1,-4,-7 ; TV[263]=M; kill M; intmat M[6][9]=2,3,0,-3,-1,-1,-5,4,1,2,-4,-1,2,-1,5,2,5,-10,2,3,-1,-5,0,4,-3,-1,1,2,5,2,-1,-13,-1,5,2,-1,2,2,5,-10,-1,5,-4,-1,2,5,2,-1,-4,-1,2,-4,2,-1 ; TV[264]=M; kill M; intmat M[6][9]=2,-5,-1,3,4,0,1,-1,-3,2,-10,5,2,5,-1,2,-1,-4,2,-1,2,5,-1,-13,-1,2,5,5,-4,-1,2,2,-1,-1,2,-4,8,-10,-1,8,-1,-1,8,-1,-10,14,-7,-4,-1,11,-1,-7,-4,-1 ; TV[265]=M; kill M; intmat M[6][9]=2,-5,4,1,-1,-1,3,0,-3,2,-10,5,2,5,-1,2,-1,-4,2,-1,2,5,-1,-13,-1,2,5,2,-1,2,-1,-1,-1,-1,2,-1,8,-10,-1,8,-1,-1,8,-1,-10,14,-7,11,-7,-4,-4,-1,-1,-1 ; TV[266]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-5,-1,3,4,0,1,-1,-3,8,-10,-1,8,-1,-1,8,-1,-10,2,-3,0,3,-1,-1,1,4,-5,2,-1,2,5,-1,-13,-1,2,5,2,5,-13,5,2,2,-1,-1,-1 ; TV[267]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-5,-1,3,4,0,1,-1,-3,2,-4,-1,2,-1,5,2,5,-10,2,2,-1,-4,5,-1,-10,5,2,2,-3,0,3,-1,-1,1,4,-5,2,5,-13,5,2,2,-1,-1,-1 ; TV[268]=M; kill M; intmat M[6][9]=2,1,4,-5,-1,-1,-3,0,3,2,2,-1,-4,5,-1,-10,5,2,2,2,5,-10,-1,5,-4,-1,2,5,-1,2,-4,2,-1,-4,-1,2,2,-1,2,-1,-1,-1,-1,2,-1,8,8,-1,-10,-1,-1,-10,-1,8 ; TV[269]=M; kill M; intmat M[6][9]=2,2,5,-10,-1,5,-4,-1,2,2,3,0,-3,-1,-1,-5,4,1,2,2,-1,-4,5,-1,-10,5,2,2,-1,2,-1,-1,-1,-1,2,-1,5,2,-1,-4,-1,2,-4,2,-1,8,8,-1,-10,-1,-1,-10,-1,8 ; TV[270]=M; kill M; intmat M[6][9]=2,1,4,-5,-1,-1,-3,0,3,2,2,5,-10,-1,5,-4,-1,2,2,5,2,-1,-13,-1,5,2,-1,2,-1,2,-1,-1,-1,-1,2,-1,14,-7,11,-7,-4,-4,-1,-1,-1,8,8,-1,-10,-1,-1,-10,-1,8 ; TV[271]=M; kill M; intmat M[6][9]=2,3,0,-3,-1,-1,-5,4,1,2,2,5,-10,-1,5,-4,-1,2,2,5,2,-1,-13,-1,5,2,-1,2,-1,2,-1,-1,-1,-1,2,-1,5,2,-1,-4,-1,2,-4,2,-1,8,8,-1,-10,-1,-1,-10,-1,8 ; TV[272]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-10,5,2,5,-1,2,-1,-4,2,-4,-1,2,-1,5,2,5,-10,2,2,-1,-4,5,-1,-10,5,2,2,2,5,-10,-1,5,-4,-1,2,2,-1,2,-1,-1,-1,-1,2,-1 ; TV[273]=M; kill M; intmat M[6][9]=2,-10,5,2,5,-1,2,-1,-4,-8,1,1,1,1,1,1,1,1,2,-1,-1,-1,2,2,-1,-1,-1,2,2,-1,-4,5,-1,-10,5,2,2,1,-1,-3,4,0,-5,-1,3,2,2,5,-10,-1,5,-4,-1,2 ; TV[274]=M; kill M; intmat M[6][9]=2,-1,2,5,-1,-13,-1,2,5,2,-5,-1,3,4,0,1,-1,-3,2,5,-13,5,2,2,-1,-1,-1,2,-1,-1,-1,2,2,5,-13,5,8,-10,-1,8,-1,-1,8,-1,-10,14,-7,-4,-1,11,-1,-7,-4,-1 ; TV[275]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-1,2,-1,-1,-1,-1,2,-1,2,2,-1,-4,5,-1,-10,5,2,2,-4,-1,2,-1,5,2,5,-10,2,2,5,-10,-1,5,-4,-1,2,2,3,0,-3,-1,-1,-5,4,1 ; TV[276]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-1,2,-1,-1,-1,-1,2,-1,2,-4,-1,2,-1,5,2,5,-10,2,2,5,-10,-1,5,-4,-1,2,2,5,2,-1,-13,-1,5,2,-1,2,3,0,-3,-1,-1,-5,4,1 ; TV[277]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-10,5,2,5,-1,2,-1,-4,2,-4,-1,2,-1,5,2,5,-10,2,2,5,-10,-1,5,-4,-1,2,2,-5,4,1,-1,-1,3,0,-3,2,-1,2,-1,-1,-1,-1,2,-1 ; TV[278]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-4,-1,2,-1,5,2,5,-10,2,5,-13,5,2,2,-1,-1,-1,2,3,-1,-5,0,4,-3,-1,1,2,5,2,-1,-13,-1,5,2,-1,2,3,0,-3,-1,-1,-5,4,1 ; TV[279]=M; kill M; intmat M[6][9]=2,3,0,-3,-1,-1,-5,4,1,2,3,-1,-5,0,4,-3,-1,1,2,-4,-1,2,-1,5,2,5,-10,2,5,2,-1,-13,-1,5,2,-1,2,5,-13,5,2,2,-1,-1,-1,5,2,-1,-4,-1,2,-4,2,-1 ; TV[280]=M; kill M; intmat M[6][9]=2,-3,0,3,-1,-1,1,4,-5,2,3,0,-3,-1,-1,-5,4,1,2,-1,2,-1,-1,-1,-1,2,-1,2,-1,2,5,-1,-13,-1,2,5,2,5,2,-1,-13,-1,5,2,-1,14,-1,-1,-1,-4,-4,-7,11,-7 ; TV[281]=M; kill M; intmat M[6][9]=2,1,4,-5,-1,-1,-3,0,3,2,2,5,-10,-1,5,-4,-1,2,2,5,2,-1,-13,-1,5,2,-1,2,-1,-1,-1,2,2,5,-13,5,8,8,-1,-10,-1,-1,-10,-1,8,14,-7,11,-7,-4,-4,-1,-1,-1 ; TV[282]=M; kill M; intmat M[6][9]=2,-1,-1,-1,2,2,-1,-1,-1,-8,1,1,1,1,1,1,1,1,2,-5,-1,3,4,0,1,-1,-3,2,2,-1,-4,5,-1,-10,5,2,2,1,-1,-3,4,0,-5,-1,3,2,5,-13,5,2,2,-1,-1,-1 ; TV[283]=M; kill M; intmat M[6][9]=2,-3,0,3,-1,-1,1,4,-5,2,3,0,-3,-1,-1,-5,4,1,2,2,-1,-4,5,-1,-10,5,2,2,-1,2,-1,-1,-1,-1,2,-1,2,-1,2,5,-1,-13,-1,2,5,14,-1,-1,-1,-4,-4,-7,11,-7 ; TV[284]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-1,2,-1,-1,-1,-1,2,-1,2,2,-1,-4,5,-1,-10,5,2,2,-3,0,3,-1,-1,1,4,-5,2,-4,-1,2,-1,5,2,5,-10,2,3,0,-3,-1,-1,-5,4,1 ; TV[285]=M; kill M; intmat M[6][9]=2,-1,-1,-1,2,2,-1,-1,-1,-8,1,1,1,1,1,1,1,1,2,-5,-1,3,4,0,1,-1,-3,2,-1,-1,-1,2,2,5,-13,5,2,1,-1,-3,4,0,-5,-1,3,2,5,-13,5,2,2,-1,-1,-1 ; TV[286]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-1,2,-1,-1,-1,-1,2,-1,2,-3,0,3,-1,-1,1,4,-5,2,-4,-1,2,-1,5,2,5,-10,2,5,2,-1,-13,-1,5,2,-1,2,3,0,-3,-1,-1,-5,4,1 ; TV[287]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,2,-1,-4,5,-1,-10,5,2,2,-3,0,3,-1,-1,1,4,-5,2,-4,-1,2,-1,5,2,5,-10,2,5,-13,5,2,2,-1,-1,-1,2,3,0,-3,-1,-1,-5,4,1 ; TV[288]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,2,-1,-4,5,-1,-10,5,2,2,3,-1,-5,0,4,-3,-1,1,2,5,-13,5,2,2,-1,-1,-1,2,3,0,-3,-1,-1,-5,4,1,8,8,-1,-10,-1,-1,-10,-1,8 ; TV[289]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,3,-1,-5,0,4,-3,-1,1,2,5,-13,5,2,2,-1,-1,-1,2,-1,-1,-1,2,2,5,-13,5,2,5,2,-1,-13,-1,5,2,-1,8,8,-1,-10,-1,-1,-10,-1,8 ; TV[290]=M; kill M; intmat M[6][9]=2,-3,0,3,-1,-1,1,4,-5,2,3,0,-3,-1,-1,-5,4,1,2,-1,2,5,-1,-13,-1,2,5,2,5,-13,5,2,2,-1,-1,-1,2,5,2,-1,-13,-1,5,2,-1,14,-1,-1,-1,-4,-4,-7,11,-7 ; TV[291]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-1,2,-1,-1,-1,-1,2,-1,2,-3,0,3,-1,-1,1,4,-5,2,-1,2,5,-1,-13,-1,2,5,2,5,2,-1,-13,-1,5,2,-1,2,3,0,-3,-1,-1,-5,4,1 ; TV[292]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,1,-1,-3,4,0,-5,-1,3,2,2,5,-10,-1,5,-4,-1,2,2,2,-1,-4,5,-1,-10,5,2,2,3,-1,-5,0,4,-3,-1,1,8,8,-1,-10,-1,-1,-10,-1,8 ; TV[293]=M; kill M; intmat M[6][9]=2,3,-1,-5,0,4,-3,-1,1,2,1,-1,-3,4,0,-5,-1,3,2,2,5,-10,-1,5,-4,-1,2,2,2,-1,-4,5,-1,-10,5,2,2,-1,-1,-1,2,2,-1,-1,-1,8,8,-1,-10,-1,-1,-10,-1,8 ; TV[294]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-10,5,2,5,-1,2,-1,-4,2,-5,-1,3,4,0,1,-1,-3,2,2,-1,-4,5,-1,-10,5,2,2,-3,0,3,-1,-1,1,4,-5,2,-1,2,5,-1,-13,-1,2,5 ; TV[295]=M; kill M; intmat M[6][9]=2,-5,-1,3,4,0,1,-1,-3,2,2,-1,-4,5,-1,-10,5,2,2,-10,5,2,5,-1,2,-1,-4,2,-1,2,5,-1,-13,-1,2,5,5,-4,-1,2,2,-1,-1,2,-4,14,-7,-4,-1,11,-1,-7,-4,-1 ; TV[296]=M; kill M; intmat M[6][9]=2,-5,-1,3,4,0,1,-1,-3,2,1,-1,-3,4,0,-5,-1,3,2,-10,5,2,5,-1,2,-1,-4,2,-1,-1,-1,2,2,-1,-1,-1,2,2,-1,-4,5,-1,-10,5,2,14,-7,-4,-1,11,-1,-7,-4,-1 ; TV[297]=M; kill M; intmat M[6][9]=2,-1,2,5,-1,-13,-1,2,5,2,-5,-1,3,4,0,1,-1,-3,2,2,-1,-4,5,-1,-10,5,2,2,5,-13,5,2,2,-1,-1,-1,5,-4,-1,2,2,-1,-1,2,-4,14,-7,-4,-1,11,-1,-7,-4,-1 ; TV[298]=M; kill M; intmat M[6][9]=2,-5,4,1,-1,-1,3,0,-3,2,1,4,-5,-1,-1,-3,0,3,2,-10,5,2,5,-1,2,-1,-4,2,2,5,-10,-1,5,-4,-1,2,2,-1,-1,-1,2,2,5,-13,5,14,-7,11,-7,-4,-4,-1,-1,-1 ; TV[299]=M; kill M; intmat M[6][9]=2,3,0,-3,-1,-1,-5,4,1,2,2,-1,-4,5,-1,-10,5,2,2,-1,2,5,-1,-13,-1,2,5,2,5,-13,5,2,2,-1,-1,-1,8,8,-1,-10,-1,-1,-10,-1,8,14,-1,-1,-1,-4,-4,-7,11,-7 ; TV[300]=M; kill M; intmat M[6][9]=2,1,4,-5,-1,-1,-3,0,3,2,3,0,-3,-1,-1,-5,4,1,2,2,-1,-4,5,-1,-10,5,2,2,-1,2,5,-1,-13,-1,2,5,2,-1,2,-1,-1,-1,-1,2,-1,8,8,-1,-10,-1,-1,-10,-1,8 ; TV[301]=M; kill M; intmat M[6][9]=2,-10,5,2,5,-1,2,-1,-4,2,1,-1,-3,4,0,-5,-1,3,2,2,5,-10,-1,5,-4,-1,2,2,2,-1,-4,5,-1,-10,5,2,2,-1,-1,-1,2,2,-1,-1,-1,5,-1,2,-4,2,-1,-4,-1,2 ; TV[302]=M; kill M; intmat M[6][9]=2,-10,5,2,5,-1,2,-1,-4,2,1,-1,-3,4,0,-5,-1,3,2,2,5,-10,-1,5,-4,-1,2,2,1,4,-5,-1,-1,-3,0,3,2,-1,-1,-1,2,2,5,-13,5,5,-1,2,-4,2,-1,-4,-1,2 ; TV[303]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,2,5,-10,-1,5,-4,-1,2,2,3,-1,-5,0,4,-3,-1,1,2,-1,-1,-1,2,2,5,-13,5,2,5,2,-1,-13,-1,5,2,-1,8,8,-1,-10,-1,-1,-10,-1,8 ; TV[304]=M; kill M; intmat M[6][9]=2,5,-13,5,2,2,-1,-1,-1,2,3,-1,-5,0,4,-3,-1,1,2,1,-1,-3,4,0,-5,-1,3,2,2,-1,-4,5,-1,-10,5,2,2,-1,-1,-1,2,2,-1,-1,-1,8,8,-1,-10,-1,-1,-10,-1,8 ; TV[305]=M; kill M; intmat M[6][9]=2,-1,2,5,-1,-13,-1,2,5,2,1,-1,-3,4,0,-5,-1,3,2,5,-13,5,2,2,-1,-1,-1,2,2,-1,-4,5,-1,-10,5,2,8,8,-1,-10,-1,-1,-10,-1,8,14,-7,-4,-1,11,-1,-7,-4,-1 ; TV[306]=M; kill M; intmat M[6][9]=2,-1,-1,-1,2,2,-1,-1,-1,2,-5,-1,3,4,0,1,-1,-3,2,1,-1,-3,4,0,-5,-1,3,2,2,-1,-4,5,-1,-10,5,2,2,5,-13,5,2,2,-1,-1,-1,14,-7,-4,-1,11,-1,-7,-4,-1 ; TV[307]=M; kill M; intmat M[6][9]=2,-10,5,2,5,-1,2,-1,-4,2,1,-1,-3,4,0,-5,-1,3,2,-1,2,5,-1,-13,-1,2,5,2,2,-1,-4,5,-1,-10,5,2,5,-1,2,-4,2,-1,-4,-1,2,14,-7,-4,-1,11,-1,-7,-4,-1 ; TV[308]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-10,5,2,5,-1,2,-1,-4,2,-5,4,1,-1,-1,3,0,-3,2,2,5,-10,-1,5,-4,-1,2,2,-1,2,-1,-1,-1,-1,2,-1,2,1,4,-5,-1,-1,-3,0,3 ; TV[309]=M; kill M; intmat M[6][9]=2,1,4,-5,-1,-1,-3,0,3,2,-5,4,1,-1,-1,3,0,-3,2,-10,5,2,5,-1,2,-1,-4,2,-1,2,-1,-1,-1,-1,2,-1,2,-1,2,5,-1,-13,-1,2,5,14,-7,11,-7,-4,-4,-1,-1,-1 ; TV[310]=M; kill M; intmat M[6][9]=2,1,4,-5,-1,-1,-3,0,3,2,-10,5,2,5,-1,2,-1,-4,2,2,-1,-4,5,-1,-10,5,2,2,-1,2,5,-1,-13,-1,2,5,2,-1,2,-1,-1,-1,-1,2,-1,5,-1,2,-4,2,-1,-4,-1,2 ; TV[311]=M; kill M; intmat M[6][9]=2,-5,4,1,-1,-1,3,0,-3,2,2,5,-10,-1,5,-4,-1,2,2,1,4,-5,-1,-1,-3,0,3,2,-1,2,-1,-1,-1,-1,2,-1,2,5,2,-1,-13,-1,5,2,-1,14,-7,11,-7,-4,-4,-1,-1,-1 ; TV[312]=M; kill M; intmat M[6][9]=2,-1,2,5,-1,-13,-1,2,5,2,-5,-1,3,4,0,1,-1,-3,2,1,-1,-3,4,0,-5,-1,3,2,-1,-1,-1,2,2,5,-13,5,2,5,-13,5,2,2,-1,-1,-1,14,-7,-4,-1,11,-1,-7,-4,-1 ; TV[313]=M; kill M; intmat M[6][9]=2,-3,0,3,-1,-1,1,4,-5,2,-5,-1,3,4,0,1,-1,-3,2,2,-1,-4,5,-1,-10,5,2,2,-1,2,5,-1,-13,-1,2,5,2,5,-13,5,2,2,-1,-1,-1,5,-4,-1,2,2,-1,-1,2,-4 ; TV[314]=M; kill M; intmat M[6][9]=2,-3,0,3,-1,-1,1,4,-5,2,3,0,-3,-1,-1,-5,4,1,2,2,-1,-4,5,-1,-10,5,2,2,-1,2,5,-1,-13,-1,2,5,2,5,-13,5,2,2,-1,-1,-1,14,-1,-1,-1,-4,-4,-7,11,-7 ; TV[315]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-10,5,2,5,-1,2,-1,-4,2,-3,0,3,-1,-1,1,4,-5,2,-1,2,5,-1,-13,-1,2,5,2,-5,4,1,-1,-1,3,0,-3,2,-1,2,-1,-1,-1,-1,2,-1 ; TV[316]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-10,5,2,5,-1,2,-1,-4,2,-3,0,3,-1,-1,1,4,-5,2,2,-1,-4,5,-1,-10,5,2,2,-1,2,5,-1,-13,-1,2,5,2,-1,2,-1,-1,-1,-1,2,-1 ; TV[317]=M; kill M; intmat M[6][9]=2,-3,0,3,-1,-1,1,4,-5,2,-5,-1,3,4,0,1,-1,-3,2,2,-1,-4,5,-1,-10,5,2,2,-10,5,2,5,-1,2,-1,-4,2,-1,2,5,-1,-13,-1,2,5,5,-4,-1,2,2,-1,-1,2,-4 ; TV[318]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-10,5,2,5,-1,2,-1,-4,2,-5,-1,3,4,0,1,-1,-3,2,1,-1,-3,4,0,-5,-1,3,2,-1,-1,-1,2,2,5,-13,5,2,-1,2,5,-1,-13,-1,2,5 ; TV[319]=M; kill M; intmat M[6][9]=2,1,4,-5,-1,-1,-3,0,3,2,1,-1,-3,4,0,-5,-1,3,2,2,5,-10,-1,5,-4,-1,2,2,2,-1,-4,5,-1,-10,5,2,8,8,-1,-10,-1,-1,-10,-1,8,5,-1,2,-4,2,-1,-4,-1,2 ; TV[320]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,1,-1,-3,4,0,-5,-1,3,2,3,-1,-5,0,4,-3,-1,1,2,-1,-1,-1,2,2,5,-13,5,2,5,-13,5,2,2,-1,-1,-1,8,8,-1,-10,-1,-1,-10,-1,8 ; TV[321]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-1,2,5,-1,-13,-1,2,5,2,5,-13,5,2,2,-1,-1,-1,2,-1,-1,-1,2,2,5,-13,5,2,5,2,-1,-13,-1,5,2,-1,8,8,-1,-10,-1,-1,-10,-1,8 ; TV[322]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-1,2,-1,-1,-1,-1,2,-1,2,2,-1,-4,5,-1,-10,5,2,2,-3,0,3,-1,-1,1,4,-5,2,-1,2,5,-1,-13,-1,2,5,2,3,0,-3,-1,-1,-5,4,1 ; TV[323]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,2,5,-10,-1,5,-4,-1,2,2,3,-1,-5,0,4,-3,-1,1,2,3,0,-3,-1,-1,-5,4,1,2,5,2,-1,-13,-1,5,2,-1,8,8,-1,-10,-1,-1,-10,-1,8 ; TV[324]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-3,0,3,-1,-1,1,4,-5,2,-1,2,5,-1,-13,-1,2,5,2,5,2,-1,-13,-1,5,2,-1,2,5,-13,5,2,2,-1,-1,-1,2,3,0,-3,-1,-1,-5,4,1 ; TV[325]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,1,-1,-3,4,0,-5,-1,3,2,2,5,-10,-1,5,-4,-1,2,2,-1,-1,-1,2,2,5,-13,5,2,3,-1,-5,0,4,-3,-1,1,8,8,-1,-10,-1,-1,-10,-1,8 ; TV[326]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-10,5,2,5,-1,2,-1,-4,2,2,-1,-4,5,-1,-10,5,2,2,2,5,-10,-1,5,-4,-1,2,2,-1,2,-1,-1,-1,-1,2,-1,2,1,4,-5,-1,-1,-3,0,3 ; TV[327]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,1,-1,-3,4,0,-5,-1,3,2,-1,2,5,-1,-13,-1,2,5,2,-1,-1,-1,2,2,5,-13,5,2,5,-13,5,2,2,-1,-1,-1,8,8,-1,-10,-1,-1,-10,-1,8 ; TV[328]=M; kill M; intmat M[6][9]=2,3,0,-3,-1,-1,-5,4,1,2,1,4,-5,-1,-1,-3,0,3,2,2,5,-10,-1,5,-4,-1,2,2,5,2,-1,-13,-1,5,2,-1,2,-1,2,-1,-1,-1,-1,2,-1,8,8,-1,-10,-1,-1,-10,-1,8 ; TV[329]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-5,-1,3,4,0,1,-1,-3,2,1,-1,-3,4,0,-5,-1,3,2,-1,-1,-1,2,2,5,-13,5,2,-1,2,5,-1,-13,-1,2,5,2,5,-13,5,2,2,-1,-1,-1 ; TV[330]=M; kill M; intmat M[6][9]=2,3,0,-3,-1,-1,-5,4,1,2,-1,2,5,-1,-13,-1,2,5,2,5,-13,5,2,2,-1,-1,-1,2,5,2,-1,-13,-1,5,2,-1,8,8,-1,-10,-1,-1,-10,-1,8,14,-1,-1,-1,-4,-4,-7,11,-7 ; TV[331]=M; kill M; intmat M[6][9]=2,1,4,-5,-1,-1,-3,0,3,2,3,0,-3,-1,-1,-5,4,1,2,-1,2,5,-1,-13,-1,2,5,2,5,2,-1,-13,-1,5,2,-1,2,-1,2,-1,-1,-1,-1,2,-1,8,8,-1,-10,-1,-1,-10,-1,8 ; TV[332]=M; kill M; intmat M[6][9]=2,3,0,-3,-1,-1,-5,4,1,2,3,-1,-5,0,4,-3,-1,1,2,2,5,-10,-1,5,-4,-1,2,2,5,2,-1,-13,-1,5,2,-1,8,8,-1,-10,-1,-1,-10,-1,8,5,2,-1,-4,-1,2,-4,2,-1 ; TV[333]=M; kill M; intmat M[6][9]=2,-5,-1,3,4,0,1,-1,-3,2,1,-1,-3,4,0,-5,-1,3,2,-10,5,2,5,-1,2,-1,-4,2,-1,-1,-1,2,2,5,-13,5,2,-1,2,5,-1,-13,-1,2,5,14,-7,-4,-1,11,-1,-7,-4,-1 ; TV[334]=M; kill M; intmat M[6][9]=2,3,-1,-5,0,4,-3,-1,1,2,3,0,-3,-1,-1,-5,4,1,2,2,-1,-4,5,-1,-10,5,2,2,2,5,-10,-1,5,-4,-1,2,8,8,-1,-10,-1,-1,-10,-1,8,5,2,-1,-4,-1,2,-4,2,-1 ; TV[335]=M; kill M; intmat M[6][9]=2,1,4,-5,-1,-1,-3,0,3,2,2,-1,-4,5,-1,-10,5,2,2,3,0,-3,-1,-1,-5,4,1,2,2,5,-10,-1,5,-4,-1,2,2,-1,2,-1,-1,-1,-1,2,-1,8,8,-1,-10,-1,-1,-10,-1,8 ; TV[336]=M; kill M; intmat M[6][9]=2,-5,4,1,-1,-1,3,0,-3,2,1,4,-5,-1,-1,-3,0,3,2,-10,5,2,5,-1,2,-1,-4,2,2,5,-10,-1,5,-4,-1,2,2,-1,2,-1,-1,-1,-1,2,-1,14,-7,11,-7,-4,-4,-1,-1,-1 ; TV[337]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-5,-1,3,4,0,1,-1,-3,2,2,-1,-4,5,-1,-10,5,2,2,-3,0,3,-1,-1,1,4,-5,2,-1,2,5,-1,-13,-1,2,5,2,5,-13,5,2,2,-1,-1,-1 ; TV[338]=M; kill M; intmat M[6][9]=2,-5,4,1,-1,-1,3,0,-3,2,2,5,-10,-1,5,-4,-1,2,2,1,4,-5,-1,-1,-3,0,3,2,-1,-1,-1,2,2,5,-13,5,2,5,2,-1,-13,-1,5,2,-1,14,-7,11,-7,-4,-4,-1,-1,-1 ; TV[339]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,1,4,-5,-1,-1,-3,0,3,2,2,5,-10,-1,5,-4,-1,2,2,-1,-1,-1,2,2,5,-13,5,2,5,2,-1,-13,-1,5,2,-1,8,8,-1,-10,-1,-1,-10,-1,8 ; TV[340]=M; kill M; intmat M[6][9]=2,-10,5,2,5,-1,2,-1,-4,2,2,-1,-4,5,-1,-10,5,2,2,2,5,-10,-1,5,-4,-1,2,2,1,4,-5,-1,-1,-3,0,3,2,-1,2,-1,-1,-1,-1,2,-1,5,-1,2,-4,2,-1,-4,-1,2 ; TV[341]=M; kill M; intmat M[6][9]=2,3,0,-3,-1,-1,-5,4,1,2,3,-1,-5,0,4,-3,-1,1,2,5,-13,5,2,2,-1,-1,-1,2,5,2,-1,-13,-1,5,2,-1,8,8,-1,-10,-1,-1,-10,-1,8,5,2,-1,-4,-1,2,-4,2,-1 ; TV[342]=M; kill M; intmat M[6][9]=2,1,4,-5,-1,-1,-3,0,3,2,1,-1,-3,4,0,-5,-1,3,2,-1,2,5,-1,-13,-1,2,5,2,2,-1,-4,5,-1,-10,5,2,8,8,-1,-10,-1,-1,-10,-1,8,5,-1,2,-4,2,-1,-4,-1,2 ; TV[343]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-5,4,1,-1,-1,3,0,-3,2,2,5,-10,-1,5,-4,-1,2,2,-1,2,-1,-1,-1,-1,2,-1,2,1,4,-5,-1,-1,-3,0,3,2,5,2,-1,-13,-1,5,2,-1 ; TV[344]=M; kill M; intmat M[6][9]=2,-5,4,1,-1,-1,3,0,-3,2,1,4,-5,-1,-1,-3,0,3,2,-1,2,5,-1,-13,-1,2,5,2,-1,2,-1,-1,-1,-1,2,-1,2,5,2,-1,-13,-1,5,2,-1,14,-7,11,-7,-4,-4,-1,-1,-1 ; TV[345]=M; kill M; intmat M[6][9]=2,3,0,-3,-1,-1,-5,4,1,2,3,-1,-5,0,4,-3,-1,1,2,2,-1,-4,5,-1,-10,5,2,2,5,-13,5,2,2,-1,-1,-1,8,8,-1,-10,-1,-1,-10,-1,8,5,2,-1,-4,-1,2,-4,2,-1 ; TV[346]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-1,2,-1,-1,-1,-1,2,-1,2,2,5,-10,-1,5,-4,-1,2,2,1,4,-5,-1,-1,-3,0,3,2,5,2,-1,-13,-1,5,2,-1,2,3,0,-3,-1,-1,-5,4,1 ; TV[347]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-10,5,2,5,-1,2,-1,-4,2,-5,4,1,-1,-1,3,0,-3,2,2,5,-10,-1,5,-4,-1,2,2,-1,-1,-1,2,2,5,-13,5,2,1,4,-5,-1,-1,-3,0,3 ; TV[348]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-5,4,1,-1,-1,3,0,-3,2,-3,0,3,-1,-1,1,4,-5,2,-1,2,-1,-1,-1,-1,2,-1,2,-1,2,5,-1,-13,-1,2,5,2,5,2,-1,-13,-1,5,2,-1 ; TV[349]=M; kill M; intmat M[6][9]=2,1,4,-5,-1,-1,-3,0,3,2,-5,4,1,-1,-1,3,0,-3,2,-10,5,2,5,-1,2,-1,-4,2,-1,-1,-1,2,2,5,-13,5,2,-1,2,5,-1,-13,-1,2,5,14,-7,11,-7,-4,-4,-1,-1,-1 ; TV[350]=M; kill M; intmat M[6][9]=2,1,4,-5,-1,-1,-3,0,3,2,1,-1,-3,4,0,-5,-1,3,2,-10,5,2,5,-1,2,-1,-4,2,-1,-1,-1,2,2,5,-13,5,2,-1,2,5,-1,-13,-1,2,5,5,-1,2,-4,2,-1,-4,-1,2 ; TV[351]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,2,-1,-4,5,-1,-10,5,2,2,2,5,-10,-1,5,-4,-1,2,2,3,-1,-5,0,4,-3,-1,1,2,3,0,-3,-1,-1,-5,4,1,8,8,-1,-10,-1,-1,-10,-1,8 ; TV[352]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-1,2,-1,-1,-1,-1,2,-1,2,2,-1,-4,5,-1,-10,5,2,2,2,5,-10,-1,5,-4,-1,2,2,1,4,-5,-1,-1,-3,0,3,2,3,0,-3,-1,-1,-5,4,1 ; TV[353]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-5,-1,3,4,0,1,-1,-3,2,1,-1,-3,4,0,-5,-1,3,2,2,-1,-4,5,-1,-10,5,2,2,-1,2,5,-1,-13,-1,2,5,2,5,-13,5,2,2,-1,-1,-1 ; TV[354]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-5,4,1,-1,-1,3,0,-3,2,2,5,-10,-1,5,-4,-1,2,2,-1,-1,-1,2,2,5,-13,5,2,1,4,-5,-1,-1,-3,0,3,2,5,2,-1,-13,-1,5,2,-1 ; TV[355]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-10,5,2,5,-1,2,-1,-4,2,1,-1,-3,4,0,-5,-1,3,2,2,5,-10,-1,5,-4,-1,2,2,2,-1,-4,5,-1,-10,5,2,2,1,4,-5,-1,-1,-3,0,3 ; TV[356]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,1,-1,-3,4,0,-5,-1,3,2,1,4,-5,-1,-1,-3,0,3,2,-1,-1,-1,2,2,5,-13,5,2,-1,2,5,-1,-13,-1,2,5,8,8,-1,-10,-1,-1,-10,-1,8 ; TV[357]=M; kill M; intmat M[6][9]=2,-5,4,1,-1,-1,3,0,-3,2,1,4,-5,-1,-1,-3,0,3,2,-1,2,5,-1,-13,-1,2,5,2,-1,-1,-1,2,2,5,-13,5,2,5,2,-1,-13,-1,5,2,-1,14,-7,11,-7,-4,-4,-1,-1,-1 ; TV[358]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,1,4,-5,-1,-1,-3,0,3,2,-1,2,5,-1,-13,-1,2,5,2,-1,-1,-1,2,2,5,-13,5,2,5,2,-1,-13,-1,5,2,-1,8,8,-1,-10,-1,-1,-10,-1,8 ; TV[359]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-10,5,2,5,-1,2,-1,-4,2,-5,-1,3,4,0,1,-1,-3,2,1,-1,-3,4,0,-5,-1,3,2,2,-1,-4,5,-1,-10,5,2,2,-1,2,5,-1,-13,-1,2,5 ; TV[360]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,3,-1,-5,0,4,-3,-1,1,2,5,-13,5,2,2,-1,-1,-1,2,3,0,-3,-1,-1,-5,4,1,2,5,2,-1,-13,-1,5,2,-1,8,8,-1,-10,-1,-1,-10,-1,8 ; TV[361]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,1,-1,-3,4,0,-5,-1,3,2,3,-1,-5,0,4,-3,-1,1,2,2,-1,-4,5,-1,-10,5,2,2,5,-13,5,2,2,-1,-1,-1,8,8,-1,-10,-1,-1,-10,-1,8 ; TV[362]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-10,5,2,5,-1,2,-1,-4,2,1,-1,-3,4,0,-5,-1,3,2,2,5,-10,-1,5,-4,-1,2,2,-1,-1,-1,2,2,5,-13,5,2,1,4,-5,-1,-1,-3,0,3 ; TV[363]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,1,-1,-3,4,0,-5,-1,3,2,1,4,-5,-1,-1,-3,0,3,2,2,5,-10,-1,5,-4,-1,2,2,-1,-1,-1,2,2,5,-13,5,8,8,-1,-10,-1,-1,-10,-1,8 ; TV[364]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-5,4,1,-1,-1,3,0,-3,2,-1,2,5,-1,-13,-1,2,5,2,-1,-1,-1,2,2,5,-13,5,2,1,4,-5,-1,-1,-3,0,3,2,5,2,-1,-13,-1,5,2,-1 ; TV[365]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-10,5,2,5,-1,2,-1,-4,2,-5,4,1,-1,-1,3,0,-3,2,-1,-1,-1,2,2,5,-13,5,2,-1,2,5,-1,-13,-1,2,5,2,1,4,-5,-1,-1,-3,0,3 ; TV[366]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-1,2,-1,-1,-1,-1,2,-1,2,-1,2,5,-1,-13,-1,2,5,2,1,4,-5,-1,-1,-3,0,3,2,5,2,-1,-13,-1,5,2,-1,2,3,0,-3,-1,-1,-5,4,1 ; TV[367]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,1,4,-5,-1,-1,-3,0,3,2,-1,2,5,-1,-13,-1,2,5,2,3,0,-3,-1,-1,-5,4,1,2,5,2,-1,-13,-1,5,2,-1,8,8,-1,-10,-1,-1,-10,-1,8 ; TV[368]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,1,4,-5,-1,-1,-3,0,3,2,2,5,-10,-1,5,-4,-1,2,2,3,0,-3,-1,-1,-5,4,1,2,5,2,-1,-13,-1,5,2,-1,8,8,-1,-10,-1,-1,-10,-1,8 ; TV[369]=M; kill M; intmat M[6][9]=2,-5,-1,3,4,0,1,-1,-3,2,1,-1,-3,4,0,-5,-1,3,2,-10,5,2,5,-1,2,-1,-4,2,2,-1,-4,5,-1,-10,5,2,2,-1,2,5,-1,-13,-1,2,5,14,-7,-4,-1,11,-1,-7,-4,-1 ; TV[370]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,1,-1,-3,4,0,-5,-1,3,2,-1,2,5,-1,-13,-1,2,5,2,2,-1,-4,5,-1,-10,5,2,2,5,-13,5,2,2,-1,-1,-1,8,8,-1,-10,-1,-1,-10,-1,8 ; TV[371]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,2,-1,-4,5,-1,-10,5,2,2,1,4,-5,-1,-1,-3,0,3,2,2,5,-10,-1,5,-4,-1,2,2,3,0,-3,-1,-1,-5,4,1,8,8,-1,-10,-1,-1,-10,-1,8 ; TV[372]=M; kill M; intmat M[6][9]=2,-10,5,2,5,-1,2,-1,-4,2,1,-1,-3,4,0,-5,-1,3,2,2,5,-10,-1,5,-4,-1,2,2,1,4,-5,-1,-1,-3,0,3,2,2,-1,-4,5,-1,-10,5,2,5,-1,2,-4,2,-1,-4,-1,2 ; TV[373]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-3,0,3,-1,-1,1,4,-5,2,2,-1,-4,5,-1,-10,5,2,2,-1,2,5,-1,-13,-1,2,5,2,5,-13,5,2,2,-1,-1,-1,2,3,0,-3,-1,-1,-5,4,1 ; TV[374]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,1,-1,-3,4,0,-5,-1,3,2,1,4,-5,-1,-1,-3,0,3,2,2,5,-10,-1,5,-4,-1,2,2,2,-1,-4,5,-1,-10,5,2,8,8,-1,-10,-1,-1,-10,-1,8 ; TV[375]=M; kill M; intmat M[6][9]=2,-1,2,5,-1,-13,-1,2,5,2,-5,-1,3,4,0,1,-1,-3,2,1,-1,-3,4,0,-5,-1,3,2,2,-1,-4,5,-1,-10,5,2,2,5,-13,5,2,2,-1,-1,-1,14,-7,-4,-1,11,-1,-7,-4,-1 ; TV[376]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-10,5,2,5,-1,2,-1,-4,2,1,-1,-3,4,0,-5,-1,3,2,-1,-1,-1,2,2,5,-13,5,2,-1,2,5,-1,-13,-1,2,5,2,1,4,-5,-1,-1,-3,0,3 ; TV[377]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-10,5,2,5,-1,2,-1,-4,2,-5,4,1,-1,-1,3,0,-3,2,-1,2,-1,-1,-1,-1,2,-1,2,-1,2,5,-1,-13,-1,2,5,2,1,4,-5,-1,-1,-3,0,3 ; TV[378]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-5,4,1,-1,-1,3,0,-3,2,-1,2,5,-1,-13,-1,2,5,2,-1,2,-1,-1,-1,-1,2,-1,2,1,4,-5,-1,-1,-3,0,3,2,5,2,-1,-13,-1,5,2,-1 ; TV[379]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,1,4,-5,-1,-1,-3,0,3,2,1,-1,-3,4,0,-5,-1,3,2,2,-1,-4,5,-1,-10,5,2,2,-1,2,5,-1,-13,-1,2,5,8,8,-1,-10,-1,-1,-10,-1,8 ; TV[380]=M; kill M; intmat M[6][9]=2,1,4,-5,-1,-1,-3,0,3,2,-10,5,2,5,-1,2,-1,-4,2,1,-1,-3,4,0,-5,-1,3,2,2,-1,-4,5,-1,-10,5,2,2,-1,2,5,-1,-13,-1,2,5,5,-1,2,-4,2,-1,-4,-1,2 ; TV[381]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-1,2,5,-1,-13,-1,2,5,2,5,2,-1,-13,-1,5,2,-1,2,3,0,-3,-1,-1,-5,4,1,2,5,-13,5,2,2,-1,-1,-1,8,8,-1,-10,-1,-1,-10,-1,8 ; TV[382]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-10,5,2,5,-1,2,-1,-4,2,1,-1,-3,4,0,-5,-1,3,2,2,-1,-4,5,-1,-10,5,2,2,-1,2,5,-1,-13,-1,2,5,2,1,4,-5,-1,-1,-3,0,3 ; TV[383]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-1,2,-1,-1,-1,-1,2,-1,2,2,-1,-4,5,-1,-10,5,2,2,-1,2,5,-1,-13,-1,2,5,2,1,4,-5,-1,-1,-3,0,3,2,3,0,-3,-1,-1,-5,4,1 ; TV[384]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,-10,5,2,5,-1,2,-1,-4,2,2,-1,-4,5,-1,-10,5,2,2,-1,2,5,-1,-13,-1,2,5,2,-1,2,-1,-1,-1,-1,2,-1,2,1,4,-5,-1,-1,-3,0,3 ; TV[385]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,1,4,-5,-1,-1,-3,0,3,2,2,-1,-4,5,-1,-10,5,2,2,-1,2,5,-1,-13,-1,2,5,2,3,0,-3,-1,-1,-5,4,1,8,8,-1,-10,-1,-1,-10,-1,8 ; TV[386]=M; kill M; intmat M[6][9]=-8,1,1,1,1,1,1,1,1,2,2,-1,-4,5,-1,-10,5,2,2,-1,2,5,-1,-13,-1,2,5,2,3,0,-3,-1,-1,-5,4,1,2,5,-13,5,2,2,-1,-1,-1,8,8,-1,-10,-1,-1,-10,-1,8 ; TV[387]=M; kill M; } if ((polygon=="4x2") and (art=="discriminant")) { intmat M[9][9]=2,7,7,-31,7,7,2,2,-3,36,-26,31,12,-7,-26,-21,17,-16,36,-26,-7,12,31,-26,17,-21,-16,10,-3,-3,-3,-3,-3,10,10,-15,12,-15,4,23,4,-15,-7,-7,1,36,50,31,12,-7,-26,-173,17,60,36,-26,-7,12,31,50,17,-173,60,12,4,23,42,-167,80,-7,31,-18,12,80,-167,42,23,4,31,-7,-18 ; TV[1]=M; kill M; intmat M[8][9]=36,50,31,12,-7,-26,-173,17,60,36,-26,31,12,-7,-26,-21,17,-16,12,-15,4,23,4,-15,-7,-7,1,36,-26,-7,12,31,-26,17,-21,-16,12,80,-167,42,23,4,31,-7,-18,2,7,7,-31,7,7,2,2,-3,10,-3,-3,-3,-3,-3,10,10,-15,6,-17,2,21,40,-55,-13,25,-9 ; TV[2]=M; kill M; intmat M[8][9]=36,-26,31,12,-7,-26,-21,17,-16,36,-26,-7,12,31,-26,17,-21,-16,12,-15,4,23,4,-15,-7,-7,1,36,-26,-7,12,31,50,17,-173,60,12,4,23,42,-167,80,-7,31,-18,10,-3,-3,-3,-3,-3,10,10,-15,2,7,7,-31,7,7,2,2,-3,6,-55,40,21,2,-17,25,-13,-9 ; TV[3]=M; kill M; intmat M[7][9]=10,-3,-3,-3,-3,-3,10,10,-15,36,-26,31,12,-7,-26,-21,17,-16,12,80,-167,42,23,4,31,-7,-18,36,50,31,12,-7,-26,-173,17,60,12,-15,4,23,4,-15,-7,-7,1,6,-17,2,21,40,-55,-13,25,-9,12,4,23,42,-167,80,-7,31,-18 ; TV[4]=M; kill M; intmat M[7][9]=2,7,7,-31,7,7,2,2,-3,36,-26,-7,12,31,-26,17,-21,-16,36,50,31,12,-7,-26,-173,17,60,12,-15,4,23,4,-15,-7,-7,1,12,80,-167,42,23,4,31,-7,-18,6,-17,2,21,40,-55,-13,25,-9,36,-26,-7,12,31,50,17,-173,60 ; TV[5]=M; kill M; intmat M[7][9]=2,7,7,-31,7,7,2,2,-3,36,-26,31,12,-7,-26,-21,17,-16,36,-26,-7,12,31,50,17,-173,60,12,-15,4,23,4,-15,-7,-7,1,12,4,23,42,-167,80,-7,31,-18,6,-55,40,21,2,-17,25,-13,-9,36,50,31,12,-7,-26,-173,17,60 ; TV[6]=M; kill M; intmat M[7][9]=12,-15,4,23,4,-15,-7,-7,1,36,-26,31,12,-7,-26,-21,17,-16,36,-26,-7,12,31,-26,17,-21,-16,2,7,7,-31,7,7,2,2,-3,10,-3,-3,-3,-3,-3,10,10,-15,6,-55,40,21,2,-17,25,-13,-9,6,-17,2,21,40,-55,-13,25,-9 ; TV[7]=M; kill M; intmat M[7][9]=10,-3,-3,-3,-3,-3,10,10,-15,36,-26,-7,12,31,-26,17,-21,-16,12,4,23,42,-167,80,-7,31,-18,12,-15,4,23,4,-15,-7,-7,1,36,-26,-7,12,31,50,17,-173,60,12,80,-167,42,23,4,31,-7,-18,6,-55,40,21,2,-17,25,-13,-9 ; TV[8]=M; kill M; intmat M[6][9]=6,-17,2,21,40,-55,-13,25,-9,12,4,23,42,-167,80,-7,31,-18,2,7,7,-31,7,7,2,2,-3,36,-26,31,12,-7,-26,-21,17,-16,36,50,31,12,-7,-26,-173,17,60,10,-3,-3,-3,-3,-3,10,10,-15 ; TV[9]=M; kill M; intmat M[6][9]=6,-55,40,21,2,-17,25,-13,-9,6,-17,2,21,40,-55,-13,25,-9,36,50,31,12,-7,-26,-173,17,60,2,7,7,-31,7,7,2,2,-3,36,-26,31,12,-7,-26,-21,17,-16,12,-15,4,23,4,-15,-7,-7,1 ; TV[10]=M; kill M; intmat M[6][9]=6,-17,2,21,40,-55,-13,25,-9,6,-55,40,21,2,-17,25,-13,-9,12,4,23,42,-167,80,-7,31,-18,10,-3,-3,-3,-3,-3,10,10,-15,12,-15,4,23,4,-15,-7,-7,1,36,-26,31,12,-7,-26,-21,17,-16 ; TV[11]=M; kill M; intmat M[6][9]=6,-55,40,21,2,-17,25,-13,-9,6,-17,2,21,40,-55,-13,25,-9,36,-26,-7,12,31,50,17,-173,60,36,-26,-7,12,31,-26,17,-21,-16,2,7,7,-31,7,7,2,2,-3,12,-15,4,23,4,-15,-7,-7,1 ; TV[12]=M; kill M; intmat M[6][9]=12,80,-167,42,23,4,31,-7,-18,6,-55,40,21,2,-17,25,-13,-9,6,-17,2,21,40,-55,-13,25,-9,36,-26,-7,12,31,-26,17,-21,-16,10,-3,-3,-3,-3,-3,10,10,-15,12,-15,4,23,4,-15,-7,-7,1 ; TV[13]=M; kill M; intmat M[6][9]=6,-55,40,21,2,-17,25,-13,-9,12,80,-167,42,23,4,31,-7,-18,2,7,7,-31,7,7,2,2,-3,36,-26,-7,12,31,50,17,-173,60,36,-26,-7,12,31,-26,17,-21,-16,10,-3,-3,-3,-3,-3,10,10,-15 ; TV[14]=M; kill M; intmat M[6][9]=6,-17,2,21,40,-55,-13,25,-9,12,4,23,42,-167,80,-7,31,-18,2,7,7,-31,7,7,2,2,-3,12,80,-167,42,23,4,31,-7,-18,10,-3,-3,-3,-3,-3,10,10,-15,36,50,31,12,-7,-26,-173,17,60 ; TV[15]=M; kill M; intmat M[6][9]=6,-55,40,21,2,-17,25,-13,-9,6,-17,2,21,40,-55,-13,25,-9,12,4,23,42,-167,80,-7,31,-18,36,50,31,12,-7,-26,-173,17,60,12,-15,4,23,4,-15,-7,-7,1,36,-26,31,12,-7,-26,-21,17,-16 ; TV[16]=M; kill M; intmat M[6][9]=6,-55,40,21,2,-17,25,-13,-9,6,-17,2,21,40,-55,-13,25,-9,36,-26,-7,12,31,50,17,-173,60,36,50,31,12,-7,-26,-173,17,60,12,-15,4,23,4,-15,-7,-7,1,2,7,7,-31,7,7,2,2,-3 ; TV[17]=M; kill M; intmat M[6][9]=6,-17,2,21,40,-55,-13,25,-9,12,4,23,42,-167,80,-7,31,-18,2,7,7,-31,7,7,2,2,-3,6,-55,40,21,2,-17,25,-13,-9,10,-3,-3,-3,-3,-3,10,10,-15,36,-26,31,12,-7,-26,-21,17,-16 ; TV[18]=M; kill M; intmat M[6][9]=6,-17,2,21,40,-55,-13,25,-9,6,-55,40,21,2,-17,25,-13,-9,12,80,-167,42,23,4,31,-7,-18,12,4,23,42,-167,80,-7,31,-18,10,-3,-3,-3,-3,-3,10,10,-15,12,-15,4,23,4,-15,-7,-7,1 ; TV[19]=M; kill M; intmat M[6][9]=12,80,-167,42,23,4,31,-7,-18,6,-55,40,21,2,-17,25,-13,-9,6,-17,2,21,40,-55,-13,25,-9,36,-26,-7,12,31,50,17,-173,60,12,-15,4,23,4,-15,-7,-7,1,36,-26,-7,12,31,-26,17,-21,-16 ; TV[20]=M; kill M; intmat M[6][9]=6,-55,40,21,2,-17,25,-13,-9,12,80,-167,42,23,4,31,-7,-18,2,7,7,-31,7,7,2,2,-3,6,-17,2,21,40,-55,-13,25,-9,10,-3,-3,-3,-3,-3,10,10,-15,36,-26,-7,12,31,-26,17,-21,-16 ; TV[21]=M; kill M; intmat M[6][9]=6,-55,40,21,2,-17,25,-13,-9,12,80,-167,42,23,4,31,-7,-18,2,7,7,-31,7,7,2,2,-3,12,4,23,42,-167,80,-7,31,-18,10,-3,-3,-3,-3,-3,10,10,-15,36,-26,-7,12,31,50,17,-173,60 ; TV[22]=M; kill M; intmat M[6][9]=6,-17,2,21,40,-55,-13,25,-9,6,-55,40,21,2,-17,25,-13,-9,12,4,23,42,-167,80,-7,31,-18,2,7,7,-31,7,7,2,2,-3,36,50,31,12,-7,-26,-173,17,60,36,-26,31,12,-7,-26,-21,17,-16 ; TV[23]=M; kill M; intmat M[6][9]=6,-55,40,21,2,-17,25,-13,-9,12,80,-167,42,23,4,31,-7,-18,6,-17,2,21,40,-55,-13,25,-9,2,7,7,-31,7,7,2,2,-3,36,-26,-7,12,31,50,17,-173,60,36,-26,-7,12,31,-26,17,-21,-16 ; TV[24]=M; kill M; intmat M[6][9]=-16,1,1,1,1,1,3,3,5,12,4,23,42,-167,80,-7,31,-18,36,-26,-7,12,31,50,17,-173,60,2,7,7,-31,7,7,2,2,-3,12,80,-167,42,23,4,31,-7,-18,36,50,31,12,-7,-26,-173,17,60 ; TV[25]=M; kill M; intmat M[6][9]=-16,1,1,1,1,1,3,3,5,12,4,23,42,-167,80,-7,31,-18,6,-17,2,21,40,-55,-13,25,-9,36,50,31,12,-7,-26,-173,17,60,2,7,7,-31,7,7,2,2,-3,12,80,-167,42,23,4,31,-7,-18 ; TV[26]=M; kill M; intmat M[6][9]=-16,1,1,1,1,1,3,3,5,6,-17,2,21,40,-55,-13,25,-9,36,-26,-7,12,31,50,17,-173,60,2,7,7,-31,7,7,2,2,-3,12,80,-167,42,23,4,31,-7,-18,36,50,31,12,-7,-26,-173,17,60 ; TV[27]=M; kill M; intmat M[6][9]=10,-3,-3,-3,-3,-3,10,10,-15,12,80,-167,42,23,4,31,-7,-18,2,7,7,-31,7,7,2,2,-3,-16,1,1,1,1,1,3,3,5,12,4,23,42,-167,80,-7,31,-18,6,-17,2,21,40,-55,-13,25,-9 ; TV[28]=M; kill M; intmat M[6][9]=-16,1,1,1,1,1,3,3,5,12,-15,4,23,4,-15,-7,-7,1,36,-26,-7,12,31,50,17,-173,60,12,4,23,42,-167,80,-7,31,-18,12,80,-167,42,23,4,31,-7,-18,36,50,31,12,-7,-26,-173,17,60 ; TV[29]=M; kill M; intmat M[6][9]=-16,1,1,1,1,1,3,3,5,12,-15,4,23,4,-15,-7,-7,1,6,-17,2,21,40,-55,-13,25,-9,12,4,23,42,-167,80,-7,31,-18,12,80,-167,42,23,4,31,-7,-18,36,50,31,12,-7,-26,-173,17,60 ; TV[30]=M; kill M; intmat M[6][9]=-16,1,1,1,1,1,3,3,5,12,-15,4,23,4,-15,-7,-7,1,6,-17,2,21,40,-55,-13,25,-9,36,-26,-7,12,31,50,17,-173,60,12,80,-167,42,23,4,31,-7,-18,36,50,31,12,-7,-26,-173,17,60 ; TV[31]=M; kill M; intmat M[6][9]=-16,1,1,1,1,1,3,3,5,6,-55,40,21,2,-17,25,-13,-9,36,-26,-7,12,31,50,17,-173,60,12,4,23,42,-167,80,-7,31,-18,2,7,7,-31,7,7,2,2,-3,36,50,31,12,-7,-26,-173,17,60 ; TV[32]=M; kill M; intmat M[6][9]=-16,1,1,1,1,1,3,3,5,6,-55,40,21,2,-17,25,-13,-9,6,-17,2,21,40,-55,-13,25,-9,12,4,23,42,-167,80,-7,31,-18,2,7,7,-31,7,7,2,2,-3,36,50,31,12,-7,-26,-173,17,60 ; TV[33]=M; kill M; intmat M[6][9]=-16,1,1,1,1,1,3,3,5,6,-55,40,21,2,-17,25,-13,-9,6,-17,2,21,40,-55,-13,25,-9,36,-26,-7,12,31,50,17,-173,60,2,7,7,-31,7,7,2,2,-3,36,50,31,12,-7,-26,-173,17,60 ; TV[34]=M; kill M; intmat M[6][9]=-16,1,1,1,1,1,3,3,5,6,-55,40,21,2,-17,25,-13,-9,12,-15,4,23,4,-15,-7,-7,1,36,-26,-7,12,31,50,17,-173,60,12,4,23,42,-167,80,-7,31,-18,36,50,31,12,-7,-26,-173,17,60 ; TV[35]=M; kill M; intmat M[6][9]=-16,1,1,1,1,1,3,3,5,6,-55,40,21,2,-17,25,-13,-9,12,-15,4,23,4,-15,-7,-7,1,6,-17,2,21,40,-55,-13,25,-9,12,4,23,42,-167,80,-7,31,-18,36,50,31,12,-7,-26,-173,17,60 ; TV[36]=M; kill M; intmat M[6][9]=-16,1,1,1,1,1,3,3,5,6,-55,40,21,2,-17,25,-13,-9,12,-15,4,23,4,-15,-7,-7,1,6,-17,2,21,40,-55,-13,25,-9,36,-26,-7,12,31,50,17,-173,60,36,50,31,12,-7,-26,-173,17,60 ; TV[37]=M; kill M; intmat M[6][9]=6,-55,40,21,2,-17,25,-13,-9,10,-3,-3,-3,-3,-3,10,10,-15,2,7,7,-31,7,7,2,2,-3,-16,1,1,1,1,1,3,3,5,12,4,23,42,-167,80,-7,31,-18,6,-17,2,21,40,-55,-13,25,-9 ; TV[38]=M; kill M; intmat M[6][9]=-16,1,1,1,1,1,3,3,5,6,-55,40,21,2,-17,25,-13,-9,12,80,-167,42,23,4,31,-7,-18,36,-26,-7,12,31,50,17,-173,60,12,4,23,42,-167,80,-7,31,-18,12,-15,4,23,4,-15,-7,-7,1 ; TV[39]=M; kill M; intmat M[6][9]=-16,1,1,1,1,1,3,3,5,6,-55,40,21,2,-17,25,-13,-9,12,80,-167,42,23,4,31,-7,-18,6,-17,2,21,40,-55,-13,25,-9,12,4,23,42,-167,80,-7,31,-18,12,-15,4,23,4,-15,-7,-7,1 ; TV[40]=M; kill M; intmat M[6][9]=-16,1,1,1,1,1,3,3,5,6,-55,40,21,2,-17,25,-13,-9,12,80,-167,42,23,4,31,-7,-18,6,-17,2,21,40,-55,-13,25,-9,36,-26,-7,12,31,50,17,-173,60,12,-15,4,23,4,-15,-7,-7,1 ; TV[41]=M; kill M; intmat M[6][9]=12,80,-167,42,23,4,31,-7,-18,6,-55,40,21,2,-17,25,-13,-9,10,-3,-3,-3,-3,-3,10,10,-15,-16,1,1,1,1,1,3,3,5,12,4,23,42,-167,80,-7,31,-18,6,-17,2,21,40,-55,-13,25,-9 ; TV[42]=M; kill M; intmat M[6][9]=6,-55,40,21,2,-17,25,-13,-9,-16,1,1,1,1,1,3,3,5,12,80,-167,42,23,4,31,-7,-18,2,7,7,-31,7,7,2,2,-3,36,-26,-7,12,31,50,17,-173,60,6,-17,2,21,40,-55,-13,25,-9 ; TV[43]=M; kill M; intmat M[6][9]=6,-55,40,21,2,-17,25,-13,-9,12,80,-167,42,23,4,31,-7,-18,2,7,7,-31,7,7,2,2,-3,-16,1,1,1,1,1,3,3,5,10,-3,-3,-3,-3,-3,10,10,-15,6,-17,2,21,40,-55,-13,25,-9 ; TV[44]=M; kill M; intmat M[6][9]=6,-55,40,21,2,-17,25,-13,-9,12,80,-167,42,23,4,31,-7,-18,-16,1,1,1,1,1,3,3,5,2,7,7,-31,7,7,2,2,-3,12,4,23,42,-167,80,-7,31,-18,36,-26,-7,12,31,50,17,-173,60 ; TV[45]=M; kill M; intmat M[6][9]=6,-55,40,21,2,-17,25,-13,-9,12,80,-167,42,23,4,31,-7,-18,2,7,7,-31,7,7,2,2,-3,-16,1,1,1,1,1,3,3,5,12,4,23,42,-167,80,-7,31,-18,10,-3,-3,-3,-3,-3,10,10,-15 ; TV[46]=M; kill M; } if ((polygon=="4x2") and (art=="secondary")) { intmat M[10][9]=16,-1,-1,-1,-1,-1,-3,-3,-5,156,14,-5,-24,-43,-62,-53,137,-120,252,-106,-11,84,179,-182,-71,-109,-36,36,-26,-7,12,31,-26,17,-21,-16,10,-3,-3,-3,-3,-3,10,10,-15,156,-62,-43,-24,-5,14,137,-53,-120,26,-23,15,15,15,-23,-12,-12,-1,36,-26,31,12,-7,-26,-21,17,-16,252,-182,179,84,-11,-106,-109,-71,-36,12,-15,4,23,4,-15,-7,-7,1 ; TV[1]=M; kill M; intmat M[8][9]=16,-1,-1,-1,-1,-1,-3,-3,-5,156,14,-5,-24,-43,-62,-53,137,-120,252,-106,-11,84,179,-182,-71,-109,-36,26,-23,15,15,15,-23,-12,-12,-1,36,-26,31,12,-7,-26,-21,17,-16,252,-182,179,84,-11,-106,-109,-71,-36,12,-15,4,23,4,-15,-7,-7,1,36,50,31,12,-7,-26,-173,17,60 ; TV[2]=M; kill M; intmat M[8][9]=252,-182,179,84,-11,-106,-109,-71,-36,36,-26,31,12,-7,-26,-21,17,-16,26,-23,15,15,15,-23,-12,-12,-1,36,-26,-7,12,31,-26,17,-21,-16,10,-3,-3,-3,-3,-3,10,10,-15,156,-62,-43,-24,-5,14,137,-53,-120,6,-55,40,21,2,-17,25,-13,-9,12,-15,4,23,4,-15,-7,-7,1 ; TV[3]=M; kill M; intmat M[8][9]=16,-1,-1,-1,-1,-1,-3,-3,-5,252,-182,179,84,-11,-106,-109,-71,-36,156,-62,-43,-24,-5,14,137,-53,-120,36,-26,-7,12,31,-26,17,-21,-16,26,-23,15,15,15,-23,-12,-12,-1,252,-106,-11,84,179,-182,-71,-109,-36,12,-15,4,23,4,-15,-7,-7,1,36,-26,-7,12,31,50,17,-173,60 ; TV[4]=M; kill M; intmat M[8][9]=156,14,-5,-24,-43,-62,-53,137,-120,252,-106,-11,84,179,-182,-71,-109,-36,36,-26,-7,12,31,-26,17,-21,-16,10,-3,-3,-3,-3,-3,10,10,-15,26,-23,15,15,15,-23,-12,-12,-1,36,-26,31,12,-7,-26,-21,17,-16,6,-17,2,21,40,-55,-13,25,-9,12,-15,4,23,4,-15,-7,-7,1 ; TV[5]=M; kill M; intmat M[8][9]=16,-1,-1,-1,-1,-1,-3,-3,-5,252,-182,179,84,-11,-106,-109,-71,-36,156,-62,-43,-24,-5,14,137,-53,-120,10,-3,-3,-3,-3,-3,10,10,-15,36,-26,31,12,-7,-26,-21,17,-16,156,14,-5,-24,-43,-62,-53,137,-120,12,-15,4,23,4,-15,-7,-7,1,12,4,23,42,-167,80,-7,31,-18 ; TV[6]=M; kill M; intmat M[8][9]=16,-1,-1,-1,-1,-1,-3,-3,-5,156,14,-5,-24,-43,-62,-53,137,-120,252,-106,-11,84,179,-182,-71,-109,-36,36,-26,-7,12,31,-26,17,-21,-16,10,-3,-3,-3,-3,-3,10,10,-15,156,-62,-43,-24,-5,14,137,-53,-120,12,-15,4,23,4,-15,-7,-7,1,12,80,-167,42,23,4,31,-7,-18 ; TV[7]=M; kill M; intmat M[10][9]=16,-1,-1,-1,-1,-1,-3,-3,-5,156,14,-5,-24,-43,-62,-53,137,-120,252,-106,-11,84,179,-182,-71,-109,-36,26,-23,15,15,15,-23,-12,-12,-1,36,-26,31,12,-7,-26,-21,17,-16,252,-182,179,84,-11,-106,-109,-71,-36,36,-26,-7,12,31,-26,17,-21,-16,10,-3,-3,-3,-3,-3,10,10,-15,156,-62,-43,-24,-5,14,137,-53,-120,2,7,7,-31,7,7,2,2,-3 ; TV[8]=M; kill M; intmat M[7][9]=16,-1,-1,-1,-1,-1,-3,-3,-5,252,-106,-11,84,179,-182,-71,-109,-36,26,-23,15,15,15,-23,-12,-12,-1,252,-182,179,84,-11,-106,-109,-71,-36,12,-15,4,23,4,-15,-7,-7,1,36,-26,-7,12,31,50,17,-173,60,36,50,31,12,-7,-26,-173,17,60 ; TV[9]=M; kill M; intmat M[7][9]=156,14,-5,-24,-43,-62,-53,137,-120,252,-106,-11,84,179,-182,-71,-109,-36,26,-23,15,15,15,-23,-12,-12,-1,36,-26,31,12,-7,-26,-21,17,-16,6,-17,2,21,40,-55,-13,25,-9,12,-15,4,23,4,-15,-7,-7,1,36,50,31,12,-7,-26,-173,17,60 ; TV[10]=M; kill M; intmat M[7][9]=16,-1,-1,-1,-1,-1,-3,-3,-5,156,14,-5,-24,-43,-62,-53,137,-120,36,-26,31,12,-7,-26,-21,17,-16,252,-182,179,84,-11,-106,-109,-71,-36,12,-15,4,23,4,-15,-7,-7,1,12,4,23,42,-167,80,-7,31,-18,36,50,31,12,-7,-26,-173,17,60 ; TV[11]=M; kill M; intmat M[6][9]=60,-170,191,96,1,-94,-73,-35,24,12,-15,4,23,4,-15,-7,-7,1,26,-23,15,15,15,-23,-12,-12,-1,36,-26,31,12,-7,-26,-21,17,-16,36,50,31,12,-7,-26,-173,17,60,252,-182,179,84,-11,-106,-109,-71,-36 ; TV[12]=M; kill M; intmat M[6][9]=12,-15,4,23,4,-15,-7,-7,1,12,80,-167,42,23,4,31,-7,-18,252,-106,-11,84,179,-182,-71,-109,-36,156,14,-5,-24,-43,-62,-53,137,-120,36,50,31,12,-7,-26,-173,17,60,16,-1,-1,-1,-1,-1,-3,-3,-5 ; TV[13]=M; kill M; intmat M[8][9]=16,-1,-1,-1,-1,-1,-3,-3,-5,156,14,-5,-24,-43,-62,-53,137,-120,252,-106,-11,84,179,-182,-71,-109,-36,26,-23,15,15,15,-23,-12,-12,-1,36,-26,31,12,-7,-26,-21,17,-16,252,-182,179,84,-11,-106,-109,-71,-36,2,7,7,-31,7,7,2,2,-3,36,50,31,12,-7,-26,-173,17,60 ; TV[14]=M; kill M; intmat M[7][9]=16,-1,-1,-1,-1,-1,-3,-3,-5,252,-106,-11,84,179,-182,-71,-109,-36,36,-26,-7,12,31,-26,17,-21,-16,156,-62,-43,-24,-5,14,137,-53,-120,12,-15,4,23,4,-15,-7,-7,1,36,-26,-7,12,31,50,17,-173,60,12,80,-167,42,23,4,31,-7,-18 ; TV[15]=M; kill M; intmat M[7][9]=156,14,-5,-24,-43,-62,-53,137,-120,252,-106,-11,84,179,-182,-71,-109,-36,36,-26,-7,12,31,-26,17,-21,-16,10,-3,-3,-3,-3,-3,10,10,-15,6,-17,2,21,40,-55,-13,25,-9,12,-15,4,23,4,-15,-7,-7,1,12,80,-167,42,23,4,31,-7,-18 ; TV[16]=M; kill M; intmat M[6][9]=36,-26,-7,12,31,-26,17,-21,-16,36,-140,-7,126,31,-64,131,-59,-54,10,-3,-3,-3,-3,-3,10,10,-15,12,80,-167,42,23,4,31,-7,-18,156,-62,-43,-24,-5,14,137,-53,-120,12,-15,4,23,4,-15,-7,-7,1 ; TV[17]=M; kill M; intmat M[7][9]=16,-1,-1,-1,-1,-1,-3,-3,-5,156,14,-5,-24,-43,-62,-53,137,-120,10,-3,-3,-3,-3,-3,10,10,-15,156,-62,-43,-24,-5,14,137,-53,-120,12,-15,4,23,4,-15,-7,-7,1,12,4,23,42,-167,80,-7,31,-18,12,80,-167,42,23,4,31,-7,-18 ; TV[18]=M; kill M; intmat M[8][9]=16,-1,-1,-1,-1,-1,-3,-3,-5,156,14,-5,-24,-43,-62,-53,137,-120,252,-106,-11,84,179,-182,-71,-109,-36,36,-26,-7,12,31,-26,17,-21,-16,10,-3,-3,-3,-3,-3,10,10,-15,156,-62,-43,-24,-5,14,137,-53,-120,2,7,7,-31,7,7,2,2,-3,12,80,-167,42,23,4,31,-7,-18 ; TV[19]=M; kill M; intmat M[7][9]=252,-182,179,84,-11,-106,-109,-71,-36,156,-62,-43,-24,-5,14,137,-53,-120,10,-3,-3,-3,-3,-3,10,10,-15,36,-26,31,12,-7,-26,-21,17,-16,6,-55,40,21,2,-17,25,-13,-9,12,-15,4,23,4,-15,-7,-7,1,12,4,23,42,-167,80,-7,31,-18 ; TV[20]=M; kill M; intmat M[8][9]=16,-1,-1,-1,-1,-1,-3,-3,-5,156,-62,-43,-24,-5,14,137,-53,-120,252,-182,179,84,-11,-106,-109,-71,-36,36,-26,31,12,-7,-26,-21,17,-16,10,-3,-3,-3,-3,-3,10,10,-15,156,14,-5,-24,-43,-62,-53,137,-120,12,4,23,42,-167,80,-7,31,-18,2,7,7,-31,7,7,2,2,-3 ; TV[21]=M; kill M; intmat M[6][9]=156,-62,-43,-24,-5,14,137,-53,-120,252,-182,179,84,-11,-106,-109,-71,-36,36,-26,-7,12,31,50,17,-173,60,12,-15,4,23,4,-15,-7,-7,1,12,4,23,42,-167,80,-7,31,-18,16,-1,-1,-1,-1,-1,-3,-3,-5 ; TV[22]=M; kill M; intmat M[6][9]=36,-64,31,126,-7,-140,-59,131,-54,10,-3,-3,-3,-3,-3,10,10,-15,36,-26,31,12,-7,-26,-21,17,-16,12,4,23,42,-167,80,-7,31,-18,12,-15,4,23,4,-15,-7,-7,1,156,14,-5,-24,-43,-62,-53,137,-120 ; TV[23]=M; kill M; intmat M[7][9]=252,-182,179,84,-11,-106,-109,-71,-36,156,-62,-43,-24,-5,14,137,-53,-120,36,-26,-7,12,31,-26,17,-21,-16,26,-23,15,15,15,-23,-12,-12,-1,6,-55,40,21,2,-17,25,-13,-9,12,-15,4,23,4,-15,-7,-7,1,36,-26,-7,12,31,50,17,-173,60 ; TV[24]=M; kill M; intmat M[6][9]=36,-26,-7,12,31,-26,17,-21,-16,60,-94,1,96,191,-170,-35,-73,24,26,-23,15,15,15,-23,-12,-12,-1,12,-15,4,23,4,-15,-7,-7,1,36,-26,-7,12,31,50,17,-173,60,252,-106,-11,84,179,-182,-71,-109,-36 ; TV[25]=M; kill M; intmat M[8][9]=16,-1,-1,-1,-1,-1,-3,-3,-5,156,-62,-43,-24,-5,14,137,-53,-120,252,-182,179,84,-11,-106,-109,-71,-36,26,-23,15,15,15,-23,-12,-12,-1,36,-26,-7,12,31,-26,17,-21,-16,252,-106,-11,84,179,-182,-71,-109,-36,36,-26,-7,12,31,50,17,-173,60,2,7,7,-31,7,7,2,2,-3 ; TV[26]=M; kill M; intmat M[8][9]=252,-182,179,84,-11,-106,-109,-71,-36,36,-26,31,12,-7,-26,-21,17,-16,26,-23,15,15,15,-23,-12,-12,-1,36,-26,-7,12,31,-26,17,-21,-16,10,-3,-3,-3,-3,-3,10,10,-15,156,-62,-43,-24,-5,14,137,-53,-120,6,-55,40,21,2,-17,25,-13,-9,2,7,7,-31,7,7,2,2,-3 ; TV[27]=M; kill M; intmat M[8][9]=252,-106,-11,84,179,-182,-71,-109,-36,36,-26,-7,12,31,-26,17,-21,-16,26,-23,15,15,15,-23,-12,-12,-1,36,-26,31,12,-7,-26,-21,17,-16,10,-3,-3,-3,-3,-3,10,10,-15,156,14,-5,-24,-43,-62,-53,137,-120,6,-17,2,21,40,-55,-13,25,-9,2,7,7,-31,7,7,2,2,-3 ; TV[28]=M; kill M; intmat M[6][9]=36,-64,31,126,-7,-140,-59,131,-54,10,-3,-3,-3,-3,-3,10,10,-15,36,-26,31,12,-7,-26,-21,17,-16,6,-17,2,21,40,-55,-13,25,-9,12,-15,4,23,4,-15,-7,-7,1,156,14,-5,-24,-43,-62,-53,137,-120 ; TV[29]=M; kill M; intmat M[7][9]=36,-26,31,12,-7,-26,-21,17,-16,26,-23,15,15,15,-23,-12,-12,-1,36,-26,-7,12,31,-26,17,-21,-16,10,-3,-3,-3,-3,-3,10,10,-15,6,-55,40,21,2,-17,25,-13,-9,6,-17,2,21,40,-55,-13,25,-9,12,-15,4,23,4,-15,-7,-7,1 ; TV[30]=M; kill M; intmat M[6][9]=36,-26,-7,12,31,-26,17,-21,-16,60,-94,1,96,191,-170,-35,-73,24,26,-23,15,15,15,-23,-12,-12,-1,12,-15,4,23,4,-15,-7,-7,1,6,-17,2,21,40,-55,-13,25,-9,252,-106,-11,84,179,-182,-71,-109,-36 ; TV[31]=M; kill M; intmat M[6][9]=60,-170,191,96,1,-94,-73,-35,24,6,-55,40,21,2,-17,25,-13,-9,12,-15,4,23,4,-15,-7,-7,1,26,-23,15,15,15,-23,-12,-12,-1,36,-26,31,12,-7,-26,-21,17,-16,252,-182,179,84,-11,-106,-109,-71,-36 ; TV[32]=M; kill M; intmat M[6][9]=36,-140,-7,126,31,-64,131,-59,-54,6,-55,40,21,2,-17,25,-13,-9,36,-26,-7,12,31,-26,17,-21,-16,10,-3,-3,-3,-3,-3,10,10,-15,156,-62,-43,-24,-5,14,137,-53,-120,12,-15,4,23,4,-15,-7,-7,1 ; TV[33]=M; kill M; intmat M[6][9]=60,-170,191,96,1,-94,-73,-35,24,6,-17,2,21,40,-55,-13,25,-9,6,-55,40,21,2,-17,25,-13,-9,12,-15,4,23,4,-15,-7,-7,1,26,-23,15,15,15,-23,-12,-12,-1,36,-26,31,12,-7,-26,-21,17,-16 ; TV[34]=M; kill M; intmat M[6][9]=60,-170,191,96,1,-94,-73,-35,24,6,-55,40,21,2,-17,25,-13,-9,26,-23,15,15,15,-23,-12,-12,-1,36,-26,31,12,-7,-26,-21,17,-16,2,7,7,-31,7,7,2,2,-3,252,-182,179,84,-11,-106,-109,-71,-36 ; TV[35]=M; kill M; intmat M[6][9]=60,-170,191,96,1,-94,-73,-35,24,6,-55,40,21,2,-17,25,-13,-9,12,-15,4,23,4,-15,-7,-7,1,26,-23,15,15,15,-23,-12,-12,-1,36,-26,-7,12,31,50,17,-173,60,252,-182,179,84,-11,-106,-109,-71,-36 ; TV[36]=M; kill M; intmat M[6][9]=60,-170,191,96,1,-94,-73,-35,24,6,-55,40,21,2,-17,25,-13,-9,12,-15,4,23,4,-15,-7,-7,1,36,-26,31,12,-7,-26,-21,17,-16,12,4,23,42,-167,80,-7,31,-18,252,-182,179,84,-11,-106,-109,-71,-36 ; TV[37]=M; kill M; intmat M[6][9]=26,-23,15,15,15,-23,-12,-12,-1,60,-94,1,96,191,-170,-35,-73,24,36,-26,-7,12,31,-26,17,-21,-16,6,-17,2,21,40,-55,-13,25,-9,2,7,7,-31,7,7,2,2,-3,252,-106,-11,84,179,-182,-71,-109,-36 ; TV[38]=M; kill M; intmat M[6][9]=36,-26,-7,12,31,-26,17,-21,-16,60,-94,1,96,191,-170,-35,-73,24,12,-15,4,23,4,-15,-7,-7,1,6,-17,2,21,40,-55,-13,25,-9,12,80,-167,42,23,4,31,-7,-18,252,-106,-11,84,179,-182,-71,-109,-36 ; TV[39]=M; kill M; intmat M[6][9]=6,-55,40,21,2,-17,25,-13,-9,60,-94,1,96,191,-170,-35,-73,24,12,-15,4,23,4,-15,-7,-7,1,6,-17,2,21,40,-55,-13,25,-9,36,-26,-7,12,31,-26,17,-21,-16,26,-23,15,15,15,-23,-12,-12,-1 ; TV[40]=M; kill M; intmat M[6][9]=26,-23,15,15,15,-23,-12,-12,-1,60,-94,1,96,191,-170,-35,-73,24,12,-15,4,23,4,-15,-7,-7,1,6,-17,2,21,40,-55,-13,25,-9,36,50,31,12,-7,-26,-173,17,60,252,-106,-11,84,179,-182,-71,-109,-36 ; TV[41]=M; kill M; intmat M[7][9]=16,-1,-1,-1,-1,-1,-3,-3,-5,252,-182,179,84,-11,-106,-109,-71,-36,36,-26,31,12,-7,-26,-21,17,-16,156,14,-5,-24,-43,-62,-53,137,-120,12,4,23,42,-167,80,-7,31,-18,2,7,7,-31,7,7,2,2,-3,36,50,31,12,-7,-26,-173,17,60 ; TV[42]=M; kill M; intmat M[6][9]=252,-182,179,84,-11,-106,-109,-71,-36,12,-15,4,23,4,-15,-7,-7,1,36,-26,-7,12,31,50,17,-173,60,12,4,23,42,-167,80,-7,31,-18,36,50,31,12,-7,-26,-173,17,60,16,-1,-1,-1,-1,-1,-3,-3,-5 ; TV[43]=M; kill M; intmat M[6][9]=36,-64,31,126,-7,-140,-59,131,-54,36,-26,31,12,-7,-26,-21,17,-16,12,4,23,42,-167,80,-7,31,-18,36,50,31,12,-7,-26,-173,17,60,12,-15,4,23,4,-15,-7,-7,1,156,14,-5,-24,-43,-62,-53,137,-120 ; TV[44]=M; kill M; intmat M[6][9]=60,-170,191,96,1,-94,-73,-35,24,12,-15,4,23,4,-15,-7,-7,1,36,-26,31,12,-7,-26,-21,17,-16,12,4,23,42,-167,80,-7,31,-18,36,50,31,12,-7,-26,-173,17,60,252,-182,179,84,-11,-106,-109,-71,-36 ; TV[45]=M; kill M; intmat M[6][9]=12,-15,4,23,4,-15,-7,-7,1,12,80,-167,42,23,4,31,-7,-18,156,14,-5,-24,-43,-62,-53,137,-120,12,4,23,42,-167,80,-7,31,-18,36,50,31,12,-7,-26,-173,17,60,16,-1,-1,-1,-1,-1,-3,-3,-5 ; TV[46]=M; kill M; intmat M[6][9]=26,-23,15,15,15,-23,-12,-12,-1,60,-94,1,96,191,-170,-35,-73,24,12,-15,4,23,4,-15,-7,-7,1,36,-26,-7,12,31,50,17,-173,60,36,50,31,12,-7,-26,-173,17,60,252,-106,-11,84,179,-182,-71,-109,-36 ; TV[47]=M; kill M; intmat M[6][9]=60,-170,191,96,1,-94,-73,-35,24,12,-15,4,23,4,-15,-7,-7,1,26,-23,15,15,15,-23,-12,-12,-1,36,-26,-7,12,31,50,17,-173,60,36,50,31,12,-7,-26,-173,17,60,252,-182,179,84,-11,-106,-109,-71,-36 ; TV[48]=M; kill M; intmat M[6][9]=12,-15,4,23,4,-15,-7,-7,1,12,80,-167,42,23,4,31,-7,-18,252,-106,-11,84,179,-182,-71,-109,-36,36,-26,-7,12,31,50,17,-173,60,36,50,31,12,-7,-26,-173,17,60,16,-1,-1,-1,-1,-1,-3,-3,-5 ; TV[49]=M; kill M; intmat M[7][9]=16,-1,-1,-1,-1,-1,-3,-3,-5,252,-106,-11,84,179,-182,-71,-109,-36,26,-23,15,15,15,-23,-12,-12,-1,252,-182,179,84,-11,-106,-109,-71,-36,36,-26,-7,12,31,50,17,-173,60,2,7,7,-31,7,7,2,2,-3,36,50,31,12,-7,-26,-173,17,60 ; TV[50]=M; kill M; intmat M[6][9]=6,-55,40,21,2,-17,25,-13,-9,36,-64,31,126,-7,-140,-59,131,-54,6,-17,2,21,40,-55,-13,25,-9,10,-3,-3,-3,-3,-3,10,10,-15,12,-15,4,23,4,-15,-7,-7,1,36,-26,31,12,-7,-26,-21,17,-16 ; TV[51]=M; kill M; intmat M[6][9]=36,-140,-7,126,31,-64,131,-59,-54,6,-17,2,21,40,-55,-13,25,-9,6,-55,40,21,2,-17,25,-13,-9,36,-26,-7,12,31,-26,17,-21,-16,10,-3,-3,-3,-3,-3,10,10,-15,12,-15,4,23,4,-15,-7,-7,1 ; TV[52]=M; kill M; intmat M[7][9]=26,-23,15,15,15,-23,-12,-12,-1,36,-26,31,12,-7,-26,-21,17,-16,10,-3,-3,-3,-3,-3,10,10,-15,36,-26,-7,12,31,-26,17,-21,-16,6,-55,40,21,2,-17,25,-13,-9,6,-17,2,21,40,-55,-13,25,-9,2,7,7,-31,7,7,2,2,-3 ; TV[53]=M; kill M; intmat M[6][9]=26,-23,15,15,15,-23,-12,-12,-1,60,-94,1,96,191,-170,-35,-73,24,36,-26,-7,12,31,-26,17,-21,-16,36,-26,-7,12,31,50,17,-173,60,2,7,7,-31,7,7,2,2,-3,252,-106,-11,84,179,-182,-71,-109,-36 ; TV[54]=M; kill M; intmat M[6][9]=36,-26,-7,12,31,-26,17,-21,-16,60,-94,1,96,191,-170,-35,-73,24,12,-15,4,23,4,-15,-7,-7,1,36,-26,-7,12,31,50,17,-173,60,12,80,-167,42,23,4,31,-7,-18,252,-106,-11,84,179,-182,-71,-109,-36 ; TV[55]=M; kill M; intmat M[6][9]=6,-55,40,21,2,-17,25,-13,-9,60,-94,1,96,191,-170,-35,-73,24,12,-15,4,23,4,-15,-7,-7,1,36,-26,-7,12,31,50,17,-173,60,36,-26,-7,12,31,-26,17,-21,-16,26,-23,15,15,15,-23,-12,-12,-1 ; TV[56]=M; kill M; intmat M[7][9]=16,-1,-1,-1,-1,-1,-3,-3,-5,156,14,-5,-24,-43,-62,-53,137,-120,10,-3,-3,-3,-3,-3,10,10,-15,156,-62,-43,-24,-5,14,137,-53,-120,12,4,23,42,-167,80,-7,31,-18,2,7,7,-31,7,7,2,2,-3,12,80,-167,42,23,4,31,-7,-18 ; TV[57]=M; kill M; intmat M[6][9]=12,-15,4,23,4,-15,-7,-7,1,156,-62,-43,-24,-5,14,137,-53,-120,36,-26,-7,12,31,50,17,-173,60,12,4,23,42,-167,80,-7,31,-18,12,80,-167,42,23,4,31,-7,-18,16,-1,-1,-1,-1,-1,-3,-3,-5 ; TV[58]=M; kill M; intmat M[6][9]=12,4,23,42,-167,80,-7,31,-18,36,-140,-7,126,31,-64,131,-59,-54,10,-3,-3,-3,-3,-3,10,10,-15,12,80,-167,42,23,4,31,-7,-18,156,-62,-43,-24,-5,14,137,-53,-120,12,-15,4,23,4,-15,-7,-7,1 ; TV[59]=M; kill M; intmat M[6][9]=36,-64,31,126,-7,-140,-59,131,-54,10,-3,-3,-3,-3,-3,10,10,-15,12,4,23,42,-167,80,-7,31,-18,12,80,-167,42,23,4,31,-7,-18,12,-15,4,23,4,-15,-7,-7,1,156,14,-5,-24,-43,-62,-53,137,-120 ; TV[60]=M; kill M; intmat M[6][9]=36,-140,-7,126,31,-64,131,-59,-54,6,-55,40,21,2,-17,25,-13,-9,36,-26,-7,12,31,-26,17,-21,-16,36,-26,-7,12,31,50,17,-173,60,12,-15,4,23,4,-15,-7,-7,1,156,-62,-43,-24,-5,14,137,-53,-120 ; TV[61]=M; kill M; intmat M[6][9]=6,-55,40,21,2,-17,25,-13,-9,12,-15,4,23,4,-15,-7,-7,1,36,-26,-7,12,31,50,17,-173,60,12,4,23,42,-167,80,-7,31,-18,156,-62,-43,-24,-5,14,137,-53,-120,252,-182,179,84,-11,-106,-109,-71,-36 ; TV[62]=M; kill M; intmat M[7][9]=252,-182,179,84,-11,-106,-109,-71,-36,26,-23,15,15,15,-23,-12,-12,-1,36,-26,-7,12,31,-26,17,-21,-16,156,-62,-43,-24,-5,14,137,-53,-120,6,-55,40,21,2,-17,25,-13,-9,36,-26,-7,12,31,50,17,-173,60,2,7,7,-31,7,7,2,2,-3 ; TV[63]=M; kill M; intmat M[6][9]=252,-106,-11,84,179,-182,-71,-109,-36,36,50,31,12,-7,-26,-173,17,60,156,14,-5,-24,-43,-62,-53,137,-120,2,7,7,-31,7,7,2,2,-3,12,80,-167,42,23,4,31,-7,-18,16,-1,-1,-1,-1,-1,-3,-3,-5 ; TV[64]=M; kill M; intmat M[6][9]=18,-32,-13,6,25,-13,56,-20,-27,2,7,7,-31,7,7,2,2,-3,10,-3,-3,-3,-3,-3,10,10,-15,12,80,-167,42,23,4,31,-7,-18,156,-62,-43,-24,-5,14,137,-53,-120,36,-26,-7,12,31,-26,17,-21,-16 ; TV[65]=M; kill M; intmat M[7][9]=16,-1,-1,-1,-1,-1,-3,-3,-5,252,-106,-11,84,179,-182,-71,-109,-36,36,-26,-7,12,31,-26,17,-21,-16,156,-62,-43,-24,-5,14,137,-53,-120,36,-26,-7,12,31,50,17,-173,60,2,7,7,-31,7,7,2,2,-3,12,80,-167,42,23,4,31,-7,-18 ; TV[66]=M; kill M; intmat M[7][9]=252,-106,-11,84,179,-182,-71,-109,-36,156,14,-5,-24,-43,-62,-53,137,-120,10,-3,-3,-3,-3,-3,10,10,-15,36,-26,-7,12,31,-26,17,-21,-16,6,-17,2,21,40,-55,-13,25,-9,2,7,7,-31,7,7,2,2,-3,12,80,-167,42,23,4,31,-7,-18 ; TV[67]=M; kill M; intmat M[6][9]=12,-15,4,23,4,-15,-7,-7,1,6,-17,2,21,40,-55,-13,25,-9,12,80,-167,42,23,4,31,-7,-18,36,50,31,12,-7,-26,-173,17,60,252,-106,-11,84,179,-182,-71,-109,-36,156,14,-5,-24,-43,-62,-53,137,-120 ; TV[68]=M; kill M; intmat M[6][9]=36,-64,31,126,-7,-140,-59,131,-54,10,-3,-3,-3,-3,-3,10,10,-15,6,-17,2,21,40,-55,-13,25,-9,12,80,-167,42,23,4,31,-7,-18,12,-15,4,23,4,-15,-7,-7,1,156,14,-5,-24,-43,-62,-53,137,-120 ; TV[69]=M; kill M; intmat M[6][9]=12,80,-167,42,23,4,31,-7,-18,36,-140,-7,126,31,-64,131,-59,-54,6,-17,2,21,40,-55,-13,25,-9,36,-26,-7,12,31,-26,17,-21,-16,10,-3,-3,-3,-3,-3,10,10,-15,12,-15,4,23,4,-15,-7,-7,1 ; TV[70]=M; kill M; intmat M[7][9]=252,-106,-11,84,179,-182,-71,-109,-36,156,14,-5,-24,-43,-62,-53,137,-120,36,-26,31,12,-7,-26,-21,17,-16,26,-23,15,15,15,-23,-12,-12,-1,6,-17,2,21,40,-55,-13,25,-9,2,7,7,-31,7,7,2,2,-3,36,50,31,12,-7,-26,-173,17,60 ; TV[71]=M; kill M; intmat M[6][9]=18,-13,25,6,-13,-32,-20,56,-27,6,-17,2,21,40,-55,-13,25,-9,10,-3,-3,-3,-3,-3,10,10,-15,2,7,7,-31,7,7,2,2,-3,36,-26,31,12,-7,-26,-21,17,-16,156,14,-5,-24,-43,-62,-53,137,-120 ; TV[72]=M; kill M; intmat M[6][9]=36,-26,-7,12,31,-26,17,-21,-16,36,-140,-7,126,31,-64,131,-59,-54,36,-26,-7,12,31,50,17,-173,60,12,80,-167,42,23,4,31,-7,-18,12,-15,4,23,4,-15,-7,-7,1,156,-62,-43,-24,-5,14,137,-53,-120 ; TV[73]=M; kill M; intmat M[6][9]=60,-170,191,96,1,-94,-73,-35,24,6,-17,2,21,40,-55,-13,25,-9,12,-15,4,23,4,-15,-7,-7,1,36,50,31,12,-7,-26,-173,17,60,26,-23,15,15,15,-23,-12,-12,-1,36,-26,31,12,-7,-26,-21,17,-16 ; TV[74]=M; kill M; intmat M[6][9]=60,-170,191,96,1,-94,-73,-35,24,26,-23,15,15,15,-23,-12,-12,-1,36,-26,31,12,-7,-26,-21,17,-16,2,7,7,-31,7,7,2,2,-3,36,50,31,12,-7,-26,-173,17,60,252,-182,179,84,-11,-106,-109,-71,-36 ; TV[75]=M; kill M; intmat M[6][9]=18,-13,25,6,-13,-32,-20,56,-27,10,-3,-3,-3,-3,-3,10,10,-15,12,4,23,42,-167,80,-7,31,-18,2,7,7,-31,7,7,2,2,-3,36,-26,31,12,-7,-26,-21,17,-16,156,14,-5,-24,-43,-62,-53,137,-120 ; TV[76]=M; kill M; intmat M[7][9]=252,-182,179,84,-11,-106,-109,-71,-36,36,-26,31,12,-7,-26,-21,17,-16,10,-3,-3,-3,-3,-3,10,10,-15,156,-62,-43,-24,-5,14,137,-53,-120,6,-55,40,21,2,-17,25,-13,-9,12,4,23,42,-167,80,-7,31,-18,2,7,7,-31,7,7,2,2,-3 ; TV[77]=M; kill M; intmat M[6][9]=252,-182,179,84,-11,-106,-109,-71,-36,156,-62,-43,-24,-5,14,137,-53,-120,36,-26,-7,12,31,50,17,-173,60,12,4,23,42,-167,80,-7,31,-18,2,7,7,-31,7,7,2,2,-3,16,-1,-1,-1,-1,-1,-3,-3,-5 ; TV[78]=M; kill M; intmat M[6][9]=18,-32,-13,6,25,-13,56,-20,-27,6,-55,40,21,2,-17,25,-13,-9,10,-3,-3,-3,-3,-3,10,10,-15,2,7,7,-31,7,7,2,2,-3,156,-62,-43,-24,-5,14,137,-53,-120,36,-26,-7,12,31,-26,17,-21,-16 ; TV[79]=M; kill M; intmat M[6][9]=18,-32,-13,6,25,-13,56,-20,-27,36,-140,-7,126,31,-64,131,-59,-54,10,-3,-3,-3,-3,-3,10,10,-15,12,80,-167,42,23,4,31,-7,-18,156,-62,-43,-24,-5,14,137,-53,-120,36,-26,-7,12,31,-26,17,-21,-16 ; TV[80]=M; kill M; intmat M[6][9]=18,-13,25,6,-13,-32,-20,56,-27,10,-3,-3,-3,-3,-3,10,10,-15,36,-64,31,126,-7,-140,-59,131,-54,6,-17,2,21,40,-55,-13,25,-9,36,-26,31,12,-7,-26,-21,17,-16,156,14,-5,-24,-43,-62,-53,137,-120 ; TV[81]=M; kill M; intmat M[6][9]=36,-64,31,126,-7,-140,-59,131,-54,36,-26,31,12,-7,-26,-21,17,-16,6,-17,2,21,40,-55,-13,25,-9,36,50,31,12,-7,-26,-173,17,60,12,-15,4,23,4,-15,-7,-7,1,156,14,-5,-24,-43,-62,-53,137,-120 ; TV[82]=M; kill M; intmat M[6][9]=18,-32,-13,6,25,-13,56,-20,-27,6,-55,40,21,2,-17,25,-13,-9,36,-140,-7,126,31,-64,131,-59,-54,10,-3,-3,-3,-3,-3,10,10,-15,156,-62,-43,-24,-5,14,137,-53,-120,36,-26,-7,12,31,-26,17,-21,-16 ; TV[83]=M; kill M; intmat M[6][9]=36,-140,-7,126,31,-64,131,-59,-54,6,-55,40,21,2,-17,25,-13,-9,10,-3,-3,-3,-3,-3,10,10,-15,12,4,23,42,-167,80,-7,31,-18,156,-62,-43,-24,-5,14,137,-53,-120,12,-15,4,23,4,-15,-7,-7,1 ; TV[84]=M; kill M; intmat M[6][9]=36,-64,31,126,-7,-140,-59,131,-54,6,-55,40,21,2,-17,25,-13,-9,12,4,23,42,-167,80,-7,31,-18,10,-3,-3,-3,-3,-3,10,10,-15,12,-15,4,23,4,-15,-7,-7,1,36,-26,31,12,-7,-26,-21,17,-16 ; TV[85]=M; kill M; intmat M[6][9]=18,-13,25,6,-13,-32,-20,56,-27,10,-3,-3,-3,-3,-3,10,10,-15,36,-64,31,126,-7,-140,-59,131,-54,12,4,23,42,-167,80,-7,31,-18,36,-26,31,12,-7,-26,-21,17,-16,156,14,-5,-24,-43,-62,-53,137,-120 ; TV[86]=M; kill M; intmat M[6][9]=18,-32,-13,6,25,-13,56,-20,-27,6,-17,2,21,40,-55,-13,25,-9,2,7,7,-31,7,7,2,2,-3,12,80,-167,42,23,4,31,-7,-18,10,-3,-3,-3,-3,-3,10,10,-15,36,-26,-7,12,31,-26,17,-21,-16 ; TV[87]=M; kill M; intmat M[6][9]=18,-32,-13,6,25,-13,56,-20,-27,2,7,7,-31,7,7,2,2,-3,36,-26,-7,12,31,50,17,-173,60,12,80,-167,42,23,4,31,-7,-18,36,-26,-7,12,31,-26,17,-21,-16,156,-62,-43,-24,-5,14,137,-53,-120 ; TV[88]=M; kill M; intmat M[6][9]=18,-32,-13,6,25,-13,56,-20,-27,60,-56,-37,-18,1,20,155,-35,-90,10,-3,-3,-3,-3,-3,10,10,-15,2,7,7,-31,7,7,2,2,-3,12,80,-167,42,23,4,31,-7,-18,156,-62,-43,-24,-5,14,137,-53,-120 ; TV[89]=M; kill M; intmat M[6][9]=36,-64,31,126,-7,-140,-59,131,-54,60,-170,191,96,1,-94,-73,-35,24,12,4,23,42,-167,80,-7,31,-18,6,-55,40,21,2,-17,25,-13,-9,12,-15,4,23,4,-15,-7,-7,1,36,-26,31,12,-7,-26,-21,17,-16 ; TV[90]=M; kill M; intmat M[6][9]=60,-170,191,96,1,-94,-73,-35,24,6,-55,40,21,2,-17,25,-13,-9,12,-15,4,23,4,-15,-7,-7,1,36,-26,-7,12,31,50,17,-173,60,12,4,23,42,-167,80,-7,31,-18,252,-182,179,84,-11,-106,-109,-71,-36 ; TV[91]=M; kill M; intmat M[6][9]=60,-170,191,96,1,-94,-73,-35,24,6,-55,40,21,2,-17,25,-13,-9,36,-26,31,12,-7,-26,-21,17,-16,12,4,23,42,-167,80,-7,31,-18,2,7,7,-31,7,7,2,2,-3,252,-182,179,84,-11,-106,-109,-71,-36 ; TV[92]=M; kill M; intmat M[6][9]=252,-106,-11,84,179,-182,-71,-109,-36,36,50,31,12,-7,-26,-173,17,60,36,-26,-7,12,31,50,17,-173,60,2,7,7,-31,7,7,2,2,-3,12,80,-167,42,23,4,31,-7,-18,16,-1,-1,-1,-1,-1,-3,-3,-5 ; TV[93]=M; kill M; intmat M[6][9]=36,-26,-7,12,31,-26,17,-21,-16,60,-94,1,96,191,-170,-35,-73,24,36,-26,-7,12,31,50,17,-173,60,2,7,7,-31,7,7,2,2,-3,12,80,-167,42,23,4,31,-7,-18,252,-106,-11,84,179,-182,-71,-109,-36 ; TV[94]=M; kill M; intmat M[6][9]=156,-62,-43,-24,-5,14,137,-53,-120,12,4,23,42,-167,80,-7,31,-18,36,-26,-7,12,31,50,17,-173,60,2,7,7,-31,7,7,2,2,-3,12,80,-167,42,23,4,31,-7,-18,16,-1,-1,-1,-1,-1,-3,-3,-5 ; TV[95]=M; kill M; intmat M[6][9]=18,-32,-13,6,25,-13,56,-20,-27,6,-17,2,21,40,-55,-13,25,-9,6,-55,40,21,2,-17,25,-13,-9,36,-140,-7,126,31,-64,131,-59,-54,10,-3,-3,-3,-3,-3,10,10,-15,36,-26,-7,12,31,-26,17,-21,-16 ; TV[96]=M; kill M; intmat M[6][9]=36,-140,-7,126,31,-64,131,-59,-54,60,-94,1,96,191,-170,-35,-73,24,6,-55,40,21,2,-17,25,-13,-9,6,-17,2,21,40,-55,-13,25,-9,12,-15,4,23,4,-15,-7,-7,1,36,-26,-7,12,31,-26,17,-21,-16 ; TV[97]=M; kill M; intmat M[6][9]=36,-140,-7,126,31,-64,131,-59,-54,36,-64,31,126,-7,-140,-59,131,-54,6,-55,40,21,2,-17,25,-13,-9,6,-17,2,21,40,-55,-13,25,-9,10,-3,-3,-3,-3,-3,10,10,-15,12,-15,4,23,4,-15,-7,-7,1 ; TV[98]=M; kill M; intmat M[6][9]=26,-23,15,15,15,-23,-12,-12,-1,60,-94,1,96,191,-170,-35,-73,24,36,-26,-7,12,31,50,17,-173,60,2,7,7,-31,7,7,2,2,-3,36,50,31,12,-7,-26,-173,17,60,252,-106,-11,84,179,-182,-71,-109,-36 ; TV[99]=M; kill M; intmat M[6][9]=12,-15,4,23,4,-15,-7,-7,1,60,-94,1,96,191,-170,-35,-73,24,36,-26,-7,12,31,50,17,-173,60,12,80,-167,42,23,4,31,-7,-18,36,50,31,12,-7,-26,-173,17,60,252,-106,-11,84,179,-182,-71,-109,-36 ; TV[100]=M; kill M; intmat M[6][9]=60,-170,191,96,1,-94,-73,-35,24,60,-94,1,96,191,-170,-35,-73,24,12,-15,4,23,4,-15,-7,-7,1,36,-26,-7,12,31,50,17,-173,60,36,50,31,12,-7,-26,-173,17,60,26,-23,15,15,15,-23,-12,-12,-1 ; TV[101]=M; kill M; intmat M[6][9]=36,-64,31,126,-7,-140,-59,131,-54,6,-17,2,21,40,-55,-13,25,-9,12,80,-167,42,23,4,31,-7,-18,36,50,31,12,-7,-26,-173,17,60,12,-15,4,23,4,-15,-7,-7,1,156,14,-5,-24,-43,-62,-53,137,-120 ; TV[102]=M; kill M; intmat M[6][9]=18,-13,25,6,-13,-32,-20,56,-27,36,-64,31,126,-7,-140,-59,131,-54,6,-17,2,21,40,-55,-13,25,-9,36,50,31,12,-7,-26,-173,17,60,36,-26,31,12,-7,-26,-21,17,-16,156,14,-5,-24,-43,-62,-53,137,-120 ; TV[103]=M; kill M; intmat M[6][9]=60,-170,191,96,1,-94,-73,-35,24,36,-64,31,126,-7,-140,-59,131,-54,6,-17,2,21,40,-55,-13,25,-9,36,50,31,12,-7,-26,-173,17,60,12,-15,4,23,4,-15,-7,-7,1,36,-26,31,12,-7,-26,-21,17,-16 ; TV[104]=M; kill M; intmat M[6][9]=18,-13,25,6,-13,-32,-20,56,-27,12,4,23,42,-167,80,-7,31,-18,2,7,7,-31,7,7,2,2,-3,36,50,31,12,-7,-26,-173,17,60,36,-26,31,12,-7,-26,-21,17,-16,156,14,-5,-24,-43,-62,-53,137,-120 ; TV[105]=M; kill M; intmat M[6][9]=252,-182,179,84,-11,-106,-109,-71,-36,12,4,23,42,-167,80,-7,31,-18,36,-26,-7,12,31,50,17,-173,60,2,7,7,-31,7,7,2,2,-3,36,50,31,12,-7,-26,-173,17,60,16,-1,-1,-1,-1,-1,-3,-3,-5 ; TV[106]=M; kill M; intmat M[6][9]=12,4,23,42,-167,80,-7,31,-18,36,50,31,12,-7,-26,-173,17,60,156,14,-5,-24,-43,-62,-53,137,-120,2,7,7,-31,7,7,2,2,-3,12,80,-167,42,23,4,31,-7,-18,16,-1,-1,-1,-1,-1,-3,-3,-5 ; TV[107]=M; kill M; intmat M[6][9]=60,-170,191,96,1,-94,-73,-35,24,12,4,23,42,-167,80,-7,31,-18,36,-26,31,12,-7,-26,-21,17,-16,2,7,7,-31,7,7,2,2,-3,36,50,31,12,-7,-26,-173,17,60,252,-182,179,84,-11,-106,-109,-71,-36 ; TV[108]=M; kill M; intmat M[6][9]=60,20,1,-18,-37,-56,-35,155,-90,18,-13,25,6,-13,-32,-20,56,-27,10,-3,-3,-3,-3,-3,10,10,-15,12,4,23,42,-167,80,-7,31,-18,2,7,7,-31,7,7,2,2,-3,156,14,-5,-24,-43,-62,-53,137,-120 ; TV[109]=M; kill M; intmat M[6][9]=18,-13,25,6,-13,-32,-20,56,-27,6,-55,40,21,2,-17,25,-13,-9,2,7,7,-31,7,7,2,2,-3,12,4,23,42,-167,80,-7,31,-18,10,-3,-3,-3,-3,-3,10,10,-15,36,-26,31,12,-7,-26,-21,17,-16 ; TV[110]=M; kill M; intmat M[6][9]=26,-23,15,15,15,-23,-12,-12,-1,60,-94,1,96,191,-170,-35,-73,24,6,-17,2,21,40,-55,-13,25,-9,2,7,7,-31,7,7,2,2,-3,36,50,31,12,-7,-26,-173,17,60,252,-106,-11,84,179,-182,-71,-109,-36 ; TV[111]=M; kill M; intmat M[6][9]=12,-15,4,23,4,-15,-7,-7,1,60,-94,1,96,191,-170,-35,-73,24,6,-17,2,21,40,-55,-13,25,-9,12,80,-167,42,23,4,31,-7,-18,36,50,31,12,-7,-26,-173,17,60,252,-106,-11,84,179,-182,-71,-109,-36 ; TV[112]=M; kill M; intmat M[6][9]=60,-170,191,96,1,-94,-73,-35,24,60,-94,1,96,191,-170,-35,-73,24,12,-15,4,23,4,-15,-7,-7,1,6,-17,2,21,40,-55,-13,25,-9,36,50,31,12,-7,-26,-173,17,60,26,-23,15,15,15,-23,-12,-12,-1 ; TV[113]=M; kill M; intmat M[6][9]=12,-15,4,23,4,-15,-7,-7,1,12,80,-167,42,23,4,31,-7,-18,36,-26,-7,12,31,50,17,-173,60,12,4,23,42,-167,80,-7,31,-18,36,50,31,12,-7,-26,-173,17,60,16,-1,-1,-1,-1,-1,-3,-3,-5 ; TV[114]=M; kill M; intmat M[6][9]=60,-170,191,96,1,-94,-73,-35,24,12,-15,4,23,4,-15,-7,-7,1,36,-26,-7,12,31,50,17,-173,60,12,4,23,42,-167,80,-7,31,-18,36,50,31,12,-7,-26,-173,17,60,252,-182,179,84,-11,-106,-109,-71,-36 ; TV[115]=M; kill M; intmat M[6][9]=60,-170,191,96,1,-94,-73,-35,24,6,-17,2,21,40,-55,-13,25,-9,6,-55,40,21,2,-17,25,-13,-9,2,7,7,-31,7,7,2,2,-3,36,-26,31,12,-7,-26,-21,17,-16,26,-23,15,15,15,-23,-12,-12,-1 ; TV[116]=M; kill M; intmat M[6][9]=18,-32,-13,6,25,-13,56,-20,-27,6,-17,2,21,40,-55,-13,25,-9,2,7,7,-31,7,7,2,2,-3,6,-55,40,21,2,-17,25,-13,-9,10,-3,-3,-3,-3,-3,10,10,-15,36,-26,-7,12,31,-26,17,-21,-16 ; TV[117]=M; kill M; intmat M[6][9]=18,-13,25,6,-13,-32,-20,56,-27,6,-55,40,21,2,-17,25,-13,-9,2,7,7,-31,7,7,2,2,-3,6,-17,2,21,40,-55,-13,25,-9,10,-3,-3,-3,-3,-3,10,10,-15,36,-26,31,12,-7,-26,-21,17,-16 ; TV[118]=M; kill M; intmat M[6][9]=6,-55,40,21,2,-17,25,-13,-9,60,-94,1,96,191,-170,-35,-73,24,6,-17,2,21,40,-55,-13,25,-9,2,7,7,-31,7,7,2,2,-3,36,-26,-7,12,31,-26,17,-21,-16,26,-23,15,15,15,-23,-12,-12,-1 ; TV[119]=M; kill M; intmat M[6][9]=18,-32,-13,6,25,-13,56,-20,-27,6,-17,2,21,40,-55,-13,25,-9,36,-140,-7,126,31,-64,131,-59,-54,12,80,-167,42,23,4,31,-7,-18,10,-3,-3,-3,-3,-3,10,10,-15,36,-26,-7,12,31,-26,17,-21,-16 ; TV[120]=M; kill M; intmat M[6][9]=18,-32,-13,6,25,-13,56,-20,-27,36,-140,-7,126,31,-64,131,-59,-54,36,-26,-7,12,31,50,17,-173,60,12,80,-167,42,23,4,31,-7,-18,36,-26,-7,12,31,-26,17,-21,-16,156,-62,-43,-24,-5,14,137,-53,-120 ; TV[121]=M; kill M; intmat M[6][9]=36,-140,-7,126,31,-64,131,-59,-54,60,-56,-37,-18,1,20,155,-35,-90,18,-32,-13,6,25,-13,56,-20,-27,10,-3,-3,-3,-3,-3,10,10,-15,12,80,-167,42,23,4,31,-7,-18,156,-62,-43,-24,-5,14,137,-53,-120 ; TV[122]=M; kill M; intmat M[6][9]=2,7,7,-31,7,7,2,2,-3,6,-17,2,21,40,-55,-13,25,-9,36,50,31,12,-7,-26,-173,17,60,12,80,-167,42,23,4,31,-7,-18,156,14,-5,-24,-43,-62,-53,137,-120,252,-106,-11,84,179,-182,-71,-109,-36 ; TV[123]=M; kill M; intmat M[6][9]=36,-140,-7,126,31,-64,131,-59,-54,60,-94,1,96,191,-170,-35,-73,24,6,-55,40,21,2,-17,25,-13,-9,36,-26,-7,12,31,50,17,-173,60,12,-15,4,23,4,-15,-7,-7,1,36,-26,-7,12,31,-26,17,-21,-16 ; TV[124]=M; kill M; intmat M[6][9]=6,-55,40,21,2,-17,25,-13,-9,60,-94,1,96,191,-170,-35,-73,24,36,-26,-7,12,31,50,17,-173,60,2,7,7,-31,7,7,2,2,-3,36,-26,-7,12,31,-26,17,-21,-16,26,-23,15,15,15,-23,-12,-12,-1 ; TV[125]=M; kill M; intmat M[6][9]=60,-170,191,96,1,-94,-73,-35,24,60,-94,1,96,191,-170,-35,-73,24,6,-55,40,21,2,-17,25,-13,-9,12,-15,4,23,4,-15,-7,-7,1,36,-26,-7,12,31,50,17,-173,60,26,-23,15,15,15,-23,-12,-12,-1 ; TV[126]=M; kill M; intmat M[6][9]=60,-56,-37,-18,1,20,155,-35,-90,6,-55,40,21,2,-17,25,-13,-9,10,-3,-3,-3,-3,-3,10,10,-15,12,4,23,42,-167,80,-7,31,-18,2,7,7,-31,7,7,2,2,-3,156,-62,-43,-24,-5,14,137,-53,-120 ; TV[127]=M; kill M; intmat M[6][9]=6,-55,40,21,2,-17,25,-13,-9,12,4,23,42,-167,80,-7,31,-18,36,-26,-7,12,31,50,17,-173,60,2,7,7,-31,7,7,2,2,-3,156,-62,-43,-24,-5,14,137,-53,-120,252,-182,179,84,-11,-106,-109,-71,-36 ; TV[128]=M; kill M; intmat M[6][9]=60,20,1,-18,-37,-56,-35,155,-90,12,4,23,42,-167,80,-7,31,-18,10,-3,-3,-3,-3,-3,10,10,-15,2,7,7,-31,7,7,2,2,-3,12,80,-167,42,23,4,31,-7,-18,156,14,-5,-24,-43,-62,-53,137,-120 ; TV[129]=M; kill M; intmat M[6][9]=60,-56,-37,-18,1,20,155,-35,-90,12,4,23,42,-167,80,-7,31,-18,10,-3,-3,-3,-3,-3,10,10,-15,2,7,7,-31,7,7,2,2,-3,12,80,-167,42,23,4,31,-7,-18,156,-62,-43,-24,-5,14,137,-53,-120 ; TV[130]=M; kill M; intmat M[6][9]=60,-170,191,96,1,-94,-73,-35,24,6,-55,40,21,2,-17,25,-13,-9,26,-23,15,15,15,-23,-12,-12,-1,36,-26,-7,12,31,50,17,-173,60,2,7,7,-31,7,7,2,2,-3,252,-182,179,84,-11,-106,-109,-71,-36 ; TV[131]=M; kill M; intmat M[6][9]=18,-32,-13,6,25,-13,56,-20,-27,6,-55,40,21,2,-17,25,-13,-9,36,-26,-7,12,31,50,17,-173,60,2,7,7,-31,7,7,2,2,-3,36,-26,-7,12,31,-26,17,-21,-16,156,-62,-43,-24,-5,14,137,-53,-120 ; TV[132]=M; kill M; intmat M[6][9]=36,-64,31,126,-7,-140,-59,131,-54,12,4,23,42,-167,80,-7,31,-18,12,80,-167,42,23,4,31,-7,-18,36,50,31,12,-7,-26,-173,17,60,12,-15,4,23,4,-15,-7,-7,1,156,14,-5,-24,-43,-62,-53,137,-120 ; TV[133]=M; kill M; intmat M[6][9]=18,-32,-13,6,25,-13,56,-20,-27,6,-55,40,21,2,-17,25,-13,-9,36,-140,-7,126,31,-64,131,-59,-54,36,-26,-7,12,31,50,17,-173,60,36,-26,-7,12,31,-26,17,-21,-16,156,-62,-43,-24,-5,14,137,-53,-120 ; TV[134]=M; kill M; intmat M[6][9]=36,-140,-7,126,31,-64,131,-59,-54,6,-55,40,21,2,-17,25,-13,-9,36,-26,-7,12,31,50,17,-173,60,12,4,23,42,-167,80,-7,31,-18,12,-15,4,23,4,-15,-7,-7,1,156,-62,-43,-24,-5,14,137,-53,-120 ; TV[135]=M; kill M; intmat M[6][9]=60,-170,191,96,1,-94,-73,-35,24,26,-23,15,15,15,-23,-12,-12,-1,36,-26,-7,12,31,50,17,-173,60,2,7,7,-31,7,7,2,2,-3,36,50,31,12,-7,-26,-173,17,60,252,-182,179,84,-11,-106,-109,-71,-36 ; TV[136]=M; kill M; intmat M[6][9]=12,80,-167,42,23,4,31,-7,-18,36,-140,-7,126,31,-64,131,-59,-54,60,-94,1,96,191,-170,-35,-73,24,36,-26,-7,12,31,50,17,-173,60,12,-15,4,23,4,-15,-7,-7,1,36,-26,-7,12,31,-26,17,-21,-16 ; TV[137]=M; kill M; intmat M[6][9]=12,4,23,42,-167,80,-7,31,-18,36,-140,-7,126,31,-64,131,-59,-54,36,-26,-7,12,31,50,17,-173,60,12,80,-167,42,23,4,31,-7,-18,12,-15,4,23,4,-15,-7,-7,1,156,-62,-43,-24,-5,14,137,-53,-120 ; TV[138]=M; kill M; intmat M[6][9]=36,-26,-7,12,31,-26,17,-21,-16,60,-94,1,96,191,-170,-35,-73,24,6,-17,2,21,40,-55,-13,25,-9,2,7,7,-31,7,7,2,2,-3,12,80,-167,42,23,4,31,-7,-18,252,-106,-11,84,179,-182,-71,-109,-36 ; TV[139]=M; kill M; intmat M[6][9]=60,-170,191,96,1,-94,-73,-35,24,6,-17,2,21,40,-55,-13,25,-9,2,7,7,-31,7,7,2,2,-3,36,50,31,12,-7,-26,-173,17,60,36,-26,31,12,-7,-26,-21,17,-16,26,-23,15,15,15,-23,-12,-12,-1 ; TV[140]=M; kill M; intmat M[6][9]=12,80,-167,42,23,4,31,-7,-18,36,-140,-7,126,31,-64,131,-59,-54,60,-94,1,96,191,-170,-35,-73,24,6,-17,2,21,40,-55,-13,25,-9,12,-15,4,23,4,-15,-7,-7,1,36,-26,-7,12,31,-26,17,-21,-16 ; TV[141]=M; kill M; intmat M[6][9]=36,-64,31,126,-7,-140,-59,131,-54,36,-140,-7,126,31,-64,131,-59,-54,6,-17,2,21,40,-55,-13,25,-9,12,80,-167,42,23,4,31,-7,-18,10,-3,-3,-3,-3,-3,10,10,-15,12,-15,4,23,4,-15,-7,-7,1 ; TV[142]=M; kill M; intmat M[6][9]=60,-170,191,96,1,-94,-73,-35,24,60,-94,1,96,191,-170,-35,-73,24,6,-55,40,21,2,-17,25,-13,-9,12,-15,4,23,4,-15,-7,-7,1,6,-17,2,21,40,-55,-13,25,-9,26,-23,15,15,15,-23,-12,-12,-1 ; TV[143]=M; kill M; intmat M[6][9]=36,-64,31,126,-7,-140,-59,131,-54,60,-170,191,96,1,-94,-73,-35,24,6,-55,40,21,2,-17,25,-13,-9,6,-17,2,21,40,-55,-13,25,-9,12,-15,4,23,4,-15,-7,-7,1,36,-26,31,12,-7,-26,-21,17,-16 ; TV[144]=M; kill M; intmat M[6][9]=6,-55,40,21,2,-17,25,-13,-9,18,-13,25,6,-13,-32,-20,56,-27,36,-64,31,126,-7,-140,-59,131,-54,6,-17,2,21,40,-55,-13,25,-9,10,-3,-3,-3,-3,-3,10,10,-15,36,-26,31,12,-7,-26,-21,17,-16 ; TV[145]=M; kill M; intmat M[6][9]=60,20,1,-18,-37,-56,-35,155,-90,10,-3,-3,-3,-3,-3,10,10,-15,6,-17,2,21,40,-55,-13,25,-9,2,7,7,-31,7,7,2,2,-3,12,80,-167,42,23,4,31,-7,-18,156,14,-5,-24,-43,-62,-53,137,-120 ; TV[146]=M; kill M; intmat M[6][9]=36,-64,31,126,-7,-140,-59,131,-54,36,-140,-7,126,31,-64,131,-59,-54,12,4,23,42,-167,80,-7,31,-18,12,80,-167,42,23,4,31,-7,-18,10,-3,-3,-3,-3,-3,10,10,-15,12,-15,4,23,4,-15,-7,-7,1 ; TV[147]=M; kill M; intmat M[6][9]=60,-56,-37,-18,1,20,155,-35,-90,36,-140,-7,126,31,-64,131,-59,-54,10,-3,-3,-3,-3,-3,10,10,-15,12,4,23,42,-167,80,-7,31,-18,12,80,-167,42,23,4,31,-7,-18,156,-62,-43,-24,-5,14,137,-53,-120 ; TV[148]=M; kill M; intmat M[6][9]=60,-170,191,96,1,-94,-73,-35,24,36,-64,31,126,-7,-140,-59,131,-54,12,4,23,42,-167,80,-7,31,-18,36,50,31,12,-7,-26,-173,17,60,12,-15,4,23,4,-15,-7,-7,1,36,-26,31,12,-7,-26,-21,17,-16 ; TV[149]=M; kill M; intmat M[6][9]=36,-64,31,126,-7,-140,-59,131,-54,60,20,1,-18,-37,-56,-35,155,-90,10,-3,-3,-3,-3,-3,10,10,-15,12,4,23,42,-167,80,-7,31,-18,12,80,-167,42,23,4,31,-7,-18,156,14,-5,-24,-43,-62,-53,137,-120 ; TV[150]=M; kill M; intmat M[6][9]=60,20,1,-18,-37,-56,-35,155,-90,10,-3,-3,-3,-3,-3,10,10,-15,18,-13,25,6,-13,-32,-20,56,-27,36,-64,31,126,-7,-140,-59,131,-54,6,-17,2,21,40,-55,-13,25,-9,156,14,-5,-24,-43,-62,-53,137,-120 ; TV[151]=M; kill M; intmat M[6][9]=36,-64,31,126,-7,-140,-59,131,-54,36,-140,-7,126,31,-64,131,-59,-54,6,-55,40,21,2,-17,25,-13,-9,12,4,23,42,-167,80,-7,31,-18,10,-3,-3,-3,-3,-3,10,10,-15,12,-15,4,23,4,-15,-7,-7,1 ; TV[152]=M; kill M; intmat M[6][9]=60,-56,-37,-18,1,20,155,-35,-90,6,-55,40,21,2,-17,25,-13,-9,36,-140,-7,126,31,-64,131,-59,-54,10,-3,-3,-3,-3,-3,10,10,-15,12,4,23,42,-167,80,-7,31,-18,156,-62,-43,-24,-5,14,137,-53,-120 ; TV[153]=M; kill M; intmat M[6][9]=6,-55,40,21,2,-17,25,-13,-9,60,-56,-37,-18,1,20,155,-35,-90,36,-140,-7,126,31,-64,131,-59,-54,18,-32,-13,6,25,-13,56,-20,-27,10,-3,-3,-3,-3,-3,10,10,-15,156,-62,-43,-24,-5,14,137,-53,-120 ; TV[154]=M; kill M; intmat M[6][9]=6,-55,40,21,2,-17,25,-13,-9,18,-13,25,6,-13,-32,-20,56,-27,36,-64,31,126,-7,-140,-59,131,-54,12,4,23,42,-167,80,-7,31,-18,10,-3,-3,-3,-3,-3,10,10,-15,36,-26,31,12,-7,-26,-21,17,-16 ; TV[155]=M; kill M; intmat M[6][9]=60,20,1,-18,-37,-56,-35,155,-90,10,-3,-3,-3,-3,-3,10,10,-15,18,-13,25,6,-13,-32,-20,56,-27,36,-64,31,126,-7,-140,-59,131,-54,12,4,23,42,-167,80,-7,31,-18,156,14,-5,-24,-43,-62,-53,137,-120 ; TV[156]=M; kill M; intmat M[6][9]=18,-13,25,6,-13,-32,-20,56,-27,36,-64,31,126,-7,-140,-59,131,-54,12,4,23,42,-167,80,-7,31,-18,36,50,31,12,-7,-26,-173,17,60,36,-26,31,12,-7,-26,-21,17,-16,156,14,-5,-24,-43,-62,-53,137,-120 ; TV[157]=M; kill M; intmat M[6][9]=6,-55,40,21,2,-17,25,-13,-9,60,-56,-37,-18,1,20,155,-35,-90,10,-3,-3,-3,-3,-3,10,10,-15,18,-32,-13,6,25,-13,56,-20,-27,2,7,7,-31,7,7,2,2,-3,156,-62,-43,-24,-5,14,137,-53,-120 ; TV[158]=M; kill M; intmat M[6][9]=60,20,1,-18,-37,-56,-35,155,-90,18,-13,25,6,-13,-32,-20,56,-27,10,-3,-3,-3,-3,-3,10,10,-15,6,-17,2,21,40,-55,-13,25,-9,2,7,7,-31,7,7,2,2,-3,156,14,-5,-24,-43,-62,-53,137,-120 ; TV[159]=M; kill M; intmat M[6][9]=18,-13,25,6,-13,-32,-20,56,-27,6,-17,2,21,40,-55,-13,25,-9,2,7,7,-31,7,7,2,2,-3,36,50,31,12,-7,-26,-173,17,60,36,-26,31,12,-7,-26,-21,17,-16,156,14,-5,-24,-43,-62,-53,137,-120 ; TV[160]=M; kill M; intmat M[6][9]=10,-3,-3,-3,-3,-3,10,10,-15,60,20,1,-18,-37,-56,-35,155,-90,36,-64,31,126,-7,-140,-59,131,-54,6,-17,2,21,40,-55,-13,25,-9,12,80,-167,42,23,4,31,-7,-18,156,14,-5,-24,-43,-62,-53,137,-120 ; TV[161]=M; kill M; intmat M[6][9]=-16,1,1,1,1,1,3,3,5,6,-55,40,21,2,-17,25,-13,-9,36,-140,-7,126,31,-64,131,-59,-54,36,-64,31,126,-7,-140,-59,131,-54,12,4,23,42,-167,80,-7,31,-18,12,-15,4,23,4,-15,-7,-7,1 ; TV[162]=M; kill M; intmat M[6][9]=6,-55,40,21,2,-17,25,-13,-9,36,-140,-7,126,31,-64,131,-59,-54,10,-3,-3,-3,-3,-3,10,10,-15,-16,1,1,1,1,1,3,3,5,12,4,23,42,-167,80,-7,31,-18,36,-64,31,126,-7,-140,-59,131,-54 ; TV[163]=M; kill M; intmat M[6][9]=60,-170,191,96,1,-94,-73,-35,24,60,-94,1,96,191,-170,-35,-73,24,36,-26,-7,12,31,50,17,-173,60,2,7,7,-31,7,7,2,2,-3,36,50,31,12,-7,-26,-173,17,60,26,-23,15,15,15,-23,-12,-12,-1 ; TV[164]=M; kill M; intmat M[6][9]=60,-170,191,96,1,-94,-73,-35,24,12,4,23,42,-167,80,-7,31,-18,36,-26,-7,12,31,50,17,-173,60,2,7,7,-31,7,7,2,2,-3,36,50,31,12,-7,-26,-173,17,60,252,-182,179,84,-11,-106,-109,-71,-36 ; TV[165]=M; kill M; intmat M[6][9]=2,7,7,-31,7,7,2,2,-3,60,-94,1,96,191,-170,-35,-73,24,6,-17,2,21,40,-55,-13,25,-9,36,50,31,12,-7,-26,-173,17,60,12,80,-167,42,23,4,31,-7,-18,252,-106,-11,84,179,-182,-71,-109,-36 ; TV[166]=M; kill M; intmat M[6][9]=60,-170,191,96,1,-94,-73,-35,24,60,-94,1,96,191,-170,-35,-73,24,6,-17,2,21,40,-55,-13,25,-9,2,7,7,-31,7,7,2,2,-3,36,50,31,12,-7,-26,-173,17,60,26,-23,15,15,15,-23,-12,-12,-1 ; TV[167]=M; kill M; intmat M[6][9]=-16,1,1,1,1,1,3,3,5,36,-140,-7,126,31,-64,131,-59,-54,36,-64,31,126,-7,-140,-59,131,-54,12,4,23,42,-167,80,-7,31,-18,12,-15,4,23,4,-15,-7,-7,1,12,80,-167,42,23,4,31,-7,-18 ; TV[168]=M; kill M; intmat M[6][9]=10,-3,-3,-3,-3,-3,10,10,-15,36,-140,-7,126,31,-64,131,-59,-54,12,4,23,42,-167,80,-7,31,-18,-16,1,1,1,1,1,3,3,5,36,-64,31,126,-7,-140,-59,131,-54,12,80,-167,42,23,4,31,-7,-18 ; TV[169]=M; kill M; intmat M[6][9]=60,-56,-37,-18,1,20,155,-35,-90,36,-140,-7,126,31,-64,131,-59,-54,36,-26,-7,12,31,50,17,-173,60,12,4,23,42,-167,80,-7,31,-18,12,80,-167,42,23,4,31,-7,-18,156,-62,-43,-24,-5,14,137,-53,-120 ; TV[170]=M; kill M; intmat M[6][9]=36,-140,-7,126,31,-64,131,-59,-54,60,-56,-37,-18,1,20,155,-35,-90,10,-3,-3,-3,-3,-3,10,10,-15,-16,1,1,1,1,1,3,3,5,12,4,23,42,-167,80,-7,31,-18,12,80,-167,42,23,4,31,-7,-18 ; TV[171]=M; kill M; intmat M[6][9]=18,-32,-13,6,25,-13,56,-20,-27,60,-94,1,96,191,-170,-35,-73,24,6,-55,40,21,2,-17,25,-13,-9,36,-140,-7,126,31,-64,131,-59,-54,36,-26,-7,12,31,50,17,-173,60,36,-26,-7,12,31,-26,17,-21,-16 ; TV[172]=M; kill M; intmat M[6][9]=6,-55,40,21,2,-17,25,-13,-9,60,-56,-37,-18,1,20,155,-35,-90,36,-140,-7,126,31,-64,131,-59,-54,18,-32,-13,6,25,-13,56,-20,-27,36,-26,-7,12,31,50,17,-173,60,156,-62,-43,-24,-5,14,137,-53,-120 ; TV[173]=M; kill M; intmat M[6][9]=18,-32,-13,6,25,-13,56,-20,-27,60,-94,1,96,191,-170,-35,-73,24,6,-17,2,21,40,-55,-13,25,-9,2,7,7,-31,7,7,2,2,-3,12,80,-167,42,23,4,31,-7,-18,36,-26,-7,12,31,-26,17,-21,-16 ; TV[174]=M; kill M; intmat M[6][9]=18,-32,-13,6,25,-13,56,-20,-27,10,-3,-3,-3,-3,-3,10,10,-15,6,-17,2,21,40,-55,-13,25,-9,-16,1,1,1,1,1,3,3,5,2,7,7,-31,7,7,2,2,-3,12,80,-167,42,23,4,31,-7,-18 ; TV[175]=M; kill M; intmat M[6][9]=18,-13,25,6,-13,-32,-20,56,-27,60,-170,191,96,1,-94,-73,-35,24,6,-55,40,21,2,-17,25,-13,-9,6,-17,2,21,40,-55,-13,25,-9,2,7,7,-31,7,7,2,2,-3,36,-26,31,12,-7,-26,-21,17,-16 ; TV[176]=M; kill M; intmat M[6][9]=60,-170,191,96,1,-94,-73,-35,24,60,-94,1,96,191,-170,-35,-73,24,6,-55,40,21,2,-17,25,-13,-9,6,-17,2,21,40,-55,-13,25,-9,2,7,7,-31,7,7,2,2,-3,26,-23,15,15,15,-23,-12,-12,-1 ; TV[177]=M; kill M; intmat M[6][9]=60,20,1,-18,-37,-56,-35,155,-90,6,-17,2,21,40,-55,-13,25,-9,2,7,7,-31,7,7,2,2,-3,36,50,31,12,-7,-26,-173,17,60,12,80,-167,42,23,4,31,-7,-18,156,14,-5,-24,-43,-62,-53,137,-120 ; TV[178]=M; kill M; intmat M[6][9]=60,20,1,-18,-37,-56,-35,155,-90,18,-13,25,6,-13,-32,-20,56,-27,36,-64,31,126,-7,-140,-59,131,-54,12,4,23,42,-167,80,-7,31,-18,36,50,31,12,-7,-26,-173,17,60,156,14,-5,-24,-43,-62,-53,137,-120 ; TV[179]=M; kill M; intmat M[6][9]=10,-3,-3,-3,-3,-3,10,10,-15,18,-13,25,6,-13,-32,-20,56,-27,12,4,23,42,-167,80,-7,31,-18,-16,1,1,1,1,1,3,3,5,36,-64,31,126,-7,-140,-59,131,-54,60,20,1,-18,-37,-56,-35,155,-90 ; TV[180]=M; kill M; intmat M[6][9]=12,4,23,42,-167,80,-7,31,-18,36,50,31,12,-7,-26,-173,17,60,36,-26,-7,12,31,50,17,-173,60,2,7,7,-31,7,7,2,2,-3,12,80,-167,42,23,4,31,-7,-18,16,-1,-1,-1,-1,-1,-3,-3,-5 ; TV[181]=M; kill M; intmat M[6][9]=60,20,1,-18,-37,-56,-35,155,-90,12,4,23,42,-167,80,-7,31,-18,36,50,31,12,-7,-26,-173,17,60,2,7,7,-31,7,7,2,2,-3,12,80,-167,42,23,4,31,-7,-18,156,14,-5,-24,-43,-62,-53,137,-120 ; TV[182]=M; kill M; intmat M[6][9]=60,-170,191,96,1,-94,-73,-35,24,6,-55,40,21,2,-17,25,-13,-9,36,-26,-7,12,31,50,17,-173,60,12,4,23,42,-167,80,-7,31,-18,2,7,7,-31,7,7,2,2,-3,252,-182,179,84,-11,-106,-109,-71,-36 ; TV[183]=M; kill M; intmat M[6][9]=-16,1,1,1,1,1,3,3,5,6,-55,40,21,2,-17,25,-13,-9,12,-15,4,23,4,-15,-7,-7,1,36,-26,-7,12,31,50,17,-173,60,12,4,23,42,-167,80,-7,31,-18,60,-170,191,96,1,-94,-73,-35,24 ; TV[184]=M; kill M; intmat M[6][9]=60,-170,191,96,1,-94,-73,-35,24,18,-13,25,6,-13,-32,-20,56,-27,6,-17,2,21,40,-55,-13,25,-9,2,7,7,-31,7,7,2,2,-3,36,50,31,12,-7,-26,-173,17,60,36,-26,31,12,-7,-26,-21,17,-16 ; TV[185]=M; kill M; intmat M[6][9]=-16,1,1,1,1,1,3,3,5,60,-170,191,96,1,-94,-73,-35,24,12,-15,4,23,4,-15,-7,-7,1,36,-26,-7,12,31,50,17,-173,60,12,4,23,42,-167,80,-7,31,-18,36,50,31,12,-7,-26,-173,17,60 ; TV[186]=M; kill M; intmat M[6][9]=60,-170,191,96,1,-94,-73,-35,24,60,-94,1,96,191,-170,-35,-73,24,6,-55,40,21,2,-17,25,-13,-9,36,-26,-7,12,31,50,17,-173,60,2,7,7,-31,7,7,2,2,-3,26,-23,15,15,15,-23,-12,-12,-1 ; TV[187]=M; kill M; intmat M[6][9]=-16,1,1,1,1,1,3,3,5,6,-55,40,21,2,-17,25,-13,-9,12,-15,4,23,4,-15,-7,-7,1,60,-94,1,96,191,-170,-35,-73,24,36,-26,-7,12,31,50,17,-173,60,60,-170,191,96,1,-94,-73,-35,24 ; TV[188]=M; kill M; intmat M[6][9]=18,-13,25,6,-13,-32,-20,56,-27,60,-170,191,96,1,-94,-73,-35,24,6,-55,40,21,2,-17,25,-13,-9,36,-64,31,126,-7,-140,-59,131,-54,6,-17,2,21,40,-55,-13,25,-9,36,-26,31,12,-7,-26,-21,17,-16 ; TV[189]=M; kill M; intmat M[6][9]=6,-55,40,21,2,-17,25,-13,-9,10,-3,-3,-3,-3,-3,10,10,-15,36,-64,31,126,-7,-140,-59,131,-54,-16,1,1,1,1,1,3,3,5,6,-17,2,21,40,-55,-13,25,-9,18,-13,25,6,-13,-32,-20,56,-27 ; TV[190]=M; kill M; intmat M[6][9]=36,-64,31,126,-7,-140,-59,131,-54,60,20,1,-18,-37,-56,-35,155,-90,6,-17,2,21,40,-55,-13,25,-9,12,80,-167,42,23,4,31,-7,-18,36,50,31,12,-7,-26,-173,17,60,156,14,-5,-24,-43,-62,-53,137,-120 ; TV[191]=M; kill M; intmat M[6][9]=-16,1,1,1,1,1,3,3,5,12,-15,4,23,4,-15,-7,-7,1,6,-17,2,21,40,-55,-13,25,-9,36,-64,31,126,-7,-140,-59,131,-54,12,80,-167,42,23,4,31,-7,-18,36,50,31,12,-7,-26,-173,17,60 ; TV[192]=M; kill M; intmat M[6][9]=-16,1,1,1,1,1,3,3,5,60,-170,191,96,1,-94,-73,-35,24,12,-15,4,23,4,-15,-7,-7,1,60,-94,1,96,191,-170,-35,-73,24,36,-26,-7,12,31,50,17,-173,60,36,50,31,12,-7,-26,-173,17,60 ; TV[193]=M; kill M; intmat M[6][9]=2,7,7,-31,7,7,2,2,-3,60,-94,1,96,191,-170,-35,-73,24,36,-26,-7,12,31,50,17,-173,60,36,50,31,12,-7,-26,-173,17,60,12,80,-167,42,23,4,31,-7,-18,252,-106,-11,84,179,-182,-71,-109,-36 ; TV[194]=M; kill M; intmat M[6][9]=-16,1,1,1,1,1,3,3,5,12,-15,4,23,4,-15,-7,-7,1,60,-94,1,96,191,-170,-35,-73,24,36,-26,-7,12,31,50,17,-173,60,12,80,-167,42,23,4,31,-7,-18,36,50,31,12,-7,-26,-173,17,60 ; TV[195]=M; kill M; intmat M[6][9]=10,-3,-3,-3,-3,-3,10,10,-15,36,-64,31,126,-7,-140,-59,131,-54,6,-17,2,21,40,-55,-13,25,-9,-16,1,1,1,1,1,3,3,5,12,80,-167,42,23,4,31,-7,-18,60,20,1,-18,-37,-56,-35,155,-90 ; TV[196]=M; kill M; intmat M[6][9]=18,-32,-13,6,25,-13,56,-20,-27,60,-94,1,96,191,-170,-35,-73,24,6,-55,40,21,2,-17,25,-13,-9,36,-26,-7,12,31,50,17,-173,60,2,7,7,-31,7,7,2,2,-3,36,-26,-7,12,31,-26,17,-21,-16 ; TV[197]=M; kill M; intmat M[6][9]=18,-13,25,6,-13,-32,-20,56,-27,6,-55,40,21,2,-17,25,-13,-9,60,-170,191,96,1,-94,-73,-35,24,12,4,23,42,-167,80,-7,31,-18,2,7,7,-31,7,7,2,2,-3,36,-26,31,12,-7,-26,-21,17,-16 ; TV[198]=M; kill M; intmat M[6][9]=60,-170,191,96,1,-94,-73,-35,24,18,-13,25,6,-13,-32,-20,56,-27,36,-64,31,126,-7,-140,-59,131,-54,12,4,23,42,-167,80,-7,31,-18,36,50,31,12,-7,-26,-173,17,60,36,-26,31,12,-7,-26,-21,17,-16 ; TV[199]=M; kill M; intmat M[6][9]=6,-55,40,21,2,-17,25,-13,-9,36,-140,-7,126,31,-64,131,-59,-54,18,-32,-13,6,25,-13,56,-20,-27,-16,1,1,1,1,1,3,3,5,60,-56,-37,-18,1,20,155,-35,-90,10,-3,-3,-3,-3,-3,10,10,-15 ; TV[200]=M; kill M; intmat M[6][9]=18,-13,25,6,-13,-32,-20,56,-27,60,-170,191,96,1,-94,-73,-35,24,12,4,23,42,-167,80,-7,31,-18,2,7,7,-31,7,7,2,2,-3,36,50,31,12,-7,-26,-173,17,60,36,-26,31,12,-7,-26,-21,17,-16 ; TV[201]=M; kill M; intmat M[6][9]=36,-140,-7,126,31,-64,131,-59,-54,60,-56,-37,-18,1,20,155,-35,-90,18,-32,-13,6,25,-13,56,-20,-27,36,-26,-7,12,31,50,17,-173,60,12,80,-167,42,23,4,31,-7,-18,156,-62,-43,-24,-5,14,137,-53,-120 ; TV[202]=M; kill M; intmat M[6][9]=36,-140,-7,126,31,-64,131,-59,-54,60,-56,-37,-18,1,20,155,-35,-90,18,-32,-13,6,25,-13,56,-20,-27,-16,1,1,1,1,1,3,3,5,10,-3,-3,-3,-3,-3,10,10,-15,12,80,-167,42,23,4,31,-7,-18 ; TV[203]=M; kill M; intmat M[6][9]=18,-32,-13,6,25,-13,56,-20,-27,60,-94,1,96,191,-170,-35,-73,24,36,-140,-7,126,31,-64,131,-59,-54,36,-26,-7,12,31,50,17,-173,60,12,80,-167,42,23,4,31,-7,-18,36,-26,-7,12,31,-26,17,-21,-16 ; TV[204]=M; kill M; intmat M[6][9]=-16,1,1,1,1,1,3,3,5,6,-55,40,21,2,-17,25,-13,-9,12,-15,4,23,4,-15,-7,-7,1,6,-17,2,21,40,-55,-13,25,-9,36,-64,31,126,-7,-140,-59,131,-54,60,-170,191,96,1,-94,-73,-35,24 ; TV[205]=M; kill M; intmat M[6][9]=60,-56,-37,-18,1,20,155,-35,-90,6,-55,40,21,2,-17,25,-13,-9,36,-140,-7,126,31,-64,131,-59,-54,36,-26,-7,12,31,50,17,-173,60,12,4,23,42,-167,80,-7,31,-18,156,-62,-43,-24,-5,14,137,-53,-120 ; TV[206]=M; kill M; intmat M[6][9]=-16,1,1,1,1,1,3,3,5,6,-55,40,21,2,-17,25,-13,-9,36,-140,-7,126,31,-64,131,-59,-54,36,-26,-7,12,31,50,17,-173,60,12,4,23,42,-167,80,-7,31,-18,12,-15,4,23,4,-15,-7,-7,1 ; TV[207]=M; kill M; intmat M[6][9]=6,-55,40,21,2,-17,25,-13,-9,60,-56,-37,-18,1,20,155,-35,-90,36,-26,-7,12,31,50,17,-173,60,18,-32,-13,6,25,-13,56,-20,-27,2,7,7,-31,7,7,2,2,-3,156,-62,-43,-24,-5,14,137,-53,-120 ; TV[208]=M; kill M; intmat M[6][9]=60,20,1,-18,-37,-56,-35,155,-90,18,-13,25,6,-13,-32,-20,56,-27,2,7,7,-31,7,7,2,2,-3,12,4,23,42,-167,80,-7,31,-18,36,50,31,12,-7,-26,-173,17,60,156,14,-5,-24,-43,-62,-53,137,-120 ; TV[209]=M; kill M; intmat M[6][9]=-16,1,1,1,1,1,3,3,5,36,-140,-7,126,31,-64,131,-59,-54,36,-26,-7,12,31,50,17,-173,60,12,4,23,42,-167,80,-7,31,-18,12,-15,4,23,4,-15,-7,-7,1,12,80,-167,42,23,4,31,-7,-18 ; TV[210]=M; kill M; intmat M[6][9]=18,-13,25,6,-13,-32,-20,56,-27,10,-3,-3,-3,-3,-3,10,10,-15,12,4,23,42,-167,80,-7,31,-18,-16,1,1,1,1,1,3,3,5,2,7,7,-31,7,7,2,2,-3,60,20,1,-18,-37,-56,-35,155,-90 ; TV[211]=M; kill M; intmat M[6][9]=18,-32,-13,6,25,-13,56,-20,-27,60,-94,1,96,191,-170,-35,-73,24,6,-55,40,21,2,-17,25,-13,-9,36,-140,-7,126,31,-64,131,-59,-54,6,-17,2,21,40,-55,-13,25,-9,36,-26,-7,12,31,-26,17,-21,-16 ; TV[212]=M; kill M; intmat M[6][9]=6,-55,40,21,2,-17,25,-13,-9,36,-140,-7,126,31,-64,131,-59,-54,18,-32,-13,6,25,-13,56,-20,-27,-16,1,1,1,1,1,3,3,5,10,-3,-3,-3,-3,-3,10,10,-15,6,-17,2,21,40,-55,-13,25,-9 ; TV[213]=M; kill M; intmat M[6][9]=-16,1,1,1,1,1,3,3,5,6,-55,40,21,2,-17,25,-13,-9,36,-140,-7,126,31,-64,131,-59,-54,6,-17,2,21,40,-55,-13,25,-9,36,-64,31,126,-7,-140,-59,131,-54,12,-15,4,23,4,-15,-7,-7,1 ; TV[214]=M; kill M; intmat M[6][9]=6,-55,40,21,2,-17,25,-13,-9,36,-140,-7,126,31,-64,131,-59,-54,10,-3,-3,-3,-3,-3,10,10,-15,-16,1,1,1,1,1,3,3,5,6,-17,2,21,40,-55,-13,25,-9,36,-64,31,126,-7,-140,-59,131,-54 ; TV[215]=M; kill M; intmat M[6][9]=18,-32,-13,6,25,-13,56,-20,-27,60,-94,1,96,191,-170,-35,-73,24,36,-26,-7,12,31,50,17,-173,60,2,7,7,-31,7,7,2,2,-3,12,80,-167,42,23,4,31,-7,-18,36,-26,-7,12,31,-26,17,-21,-16 ; TV[216]=M; kill M; intmat M[6][9]=18,-32,-13,6,25,-13,56,-20,-27,60,-56,-37,-18,1,20,155,-35,-90,36,-26,-7,12,31,50,17,-173,60,2,7,7,-31,7,7,2,2,-3,12,80,-167,42,23,4,31,-7,-18,156,-62,-43,-24,-5,14,137,-53,-120 ; TV[217]=M; kill M; intmat M[6][9]=18,-13,25,6,-13,-32,-20,56,-27,60,-170,191,96,1,-94,-73,-35,24,6,-55,40,21,2,-17,25,-13,-9,36,-64,31,126,-7,-140,-59,131,-54,12,4,23,42,-167,80,-7,31,-18,36,-26,31,12,-7,-26,-21,17,-16 ; TV[218]=M; kill M; intmat M[6][9]=6,-55,40,21,2,-17,25,-13,-9,10,-3,-3,-3,-3,-3,10,10,-15,36,-64,31,126,-7,-140,-59,131,-54,-16,1,1,1,1,1,3,3,5,12,4,23,42,-167,80,-7,31,-18,18,-13,25,6,-13,-32,-20,56,-27 ; TV[219]=M; kill M; intmat M[6][9]=10,-3,-3,-3,-3,-3,10,10,-15,12,4,23,42,-167,80,-7,31,-18,2,7,7,-31,7,7,2,2,-3,-16,1,1,1,1,1,3,3,5,60,20,1,-18,-37,-56,-35,155,-90,12,80,-167,42,23,4,31,-7,-18 ; TV[220]=M; kill M; intmat M[6][9]=-16,1,1,1,1,1,3,3,5,36,-140,-7,126,31,-64,131,-59,-54,60,-94,1,96,191,-170,-35,-73,24,36,-26,-7,12,31,50,17,-173,60,12,-15,4,23,4,-15,-7,-7,1,12,80,-167,42,23,4,31,-7,-18 ; TV[221]=M; kill M; intmat M[6][9]=60,20,1,-18,-37,-56,-35,155,-90,18,-13,25,6,-13,-32,-20,56,-27,36,-64,31,126,-7,-140,-59,131,-54,6,-17,2,21,40,-55,-13,25,-9,36,50,31,12,-7,-26,-173,17,60,156,14,-5,-24,-43,-62,-53,137,-120 ; TV[222]=M; kill M; intmat M[6][9]=10,-3,-3,-3,-3,-3,10,10,-15,18,-13,25,6,-13,-32,-20,56,-27,36,-64,31,126,-7,-140,-59,131,-54,-16,1,1,1,1,1,3,3,5,6,-17,2,21,40,-55,-13,25,-9,60,20,1,-18,-37,-56,-35,155,-90 ; TV[223]=M; kill M; intmat M[6][9]=-16,1,1,1,1,1,3,3,5,12,-15,4,23,4,-15,-7,-7,1,36,-26,-7,12,31,50,17,-173,60,12,4,23,42,-167,80,-7,31,-18,12,80,-167,42,23,4,31,-7,-18,36,50,31,12,-7,-26,-173,17,60 ; TV[224]=M; kill M; intmat M[6][9]=-16,1,1,1,1,1,3,3,5,12,-15,4,23,4,-15,-7,-7,1,60,-94,1,96,191,-170,-35,-73,24,6,-17,2,21,40,-55,-13,25,-9,12,80,-167,42,23,4,31,-7,-18,36,50,31,12,-7,-26,-173,17,60 ; TV[225]=M; kill M; intmat M[6][9]=60,20,1,-18,-37,-56,-35,155,-90,18,-13,25,6,-13,-32,-20,56,-27,2,7,7,-31,7,7,2,2,-3,6,-17,2,21,40,-55,-13,25,-9,36,50,31,12,-7,-26,-173,17,60,156,14,-5,-24,-43,-62,-53,137,-120 ; TV[226]=M; kill M; intmat M[6][9]=18,-32,-13,6,25,-13,56,-20,-27,60,-94,1,96,191,-170,-35,-73,24,6,-55,40,21,2,-17,25,-13,-9,6,-17,2,21,40,-55,-13,25,-9,2,7,7,-31,7,7,2,2,-3,36,-26,-7,12,31,-26,17,-21,-16 ; TV[227]=M; kill M; intmat M[6][9]=6,-55,40,21,2,-17,25,-13,-9,36,-140,-7,126,31,-64,131,-59,-54,60,-56,-37,-18,1,20,155,-35,-90,-16,1,1,1,1,1,3,3,5,10,-3,-3,-3,-3,-3,10,10,-15,12,4,23,42,-167,80,-7,31,-18 ; TV[228]=M; kill M; intmat M[6][9]=36,-64,31,126,-7,-140,-59,131,-54,60,20,1,-18,-37,-56,-35,155,-90,12,4,23,42,-167,80,-7,31,-18,12,80,-167,42,23,4,31,-7,-18,36,50,31,12,-7,-26,-173,17,60,156,14,-5,-24,-43,-62,-53,137,-120 ; TV[229]=M; kill M; intmat M[6][9]=-16,1,1,1,1,1,3,3,5,12,-15,4,23,4,-15,-7,-7,1,36,-64,31,126,-7,-140,-59,131,-54,12,4,23,42,-167,80,-7,31,-18,12,80,-167,42,23,4,31,-7,-18,36,50,31,12,-7,-26,-173,17,60 ; TV[230]=M; kill M; intmat M[6][9]=18,-32,-13,6,25,-13,56,-20,-27,60,-94,1,96,191,-170,-35,-73,24,36,-140,-7,126,31,-64,131,-59,-54,6,-17,2,21,40,-55,-13,25,-9,12,80,-167,42,23,4,31,-7,-18,36,-26,-7,12,31,-26,17,-21,-16 ; TV[231]=M; kill M; intmat M[6][9]=-16,1,1,1,1,1,3,3,5,36,-140,-7,126,31,-64,131,-59,-54,60,-94,1,96,191,-170,-35,-73,24,6,-17,2,21,40,-55,-13,25,-9,12,-15,4,23,4,-15,-7,-7,1,12,80,-167,42,23,4,31,-7,-18 ; TV[232]=M; kill M; intmat M[6][9]=18,-32,-13,6,25,-13,56,-20,-27,60,-56,-37,-18,1,20,155,-35,-90,10,-3,-3,-3,-3,-3,10,10,-15,-16,1,1,1,1,1,3,3,5,2,7,7,-31,7,7,2,2,-3,12,80,-167,42,23,4,31,-7,-18 ; TV[233]=M; kill M; intmat M[6][9]=-16,1,1,1,1,1,3,3,5,36,-140,-7,126,31,-64,131,-59,-54,6,-17,2,21,40,-55,-13,25,-9,36,-64,31,126,-7,-140,-59,131,-54,12,-15,4,23,4,-15,-7,-7,1,12,80,-167,42,23,4,31,-7,-18 ; TV[234]=M; kill M; intmat M[6][9]=10,-3,-3,-3,-3,-3,10,10,-15,36,-140,-7,126,31,-64,131,-59,-54,6,-17,2,21,40,-55,-13,25,-9,-16,1,1,1,1,1,3,3,5,36,-64,31,126,-7,-140,-59,131,-54,12,80,-167,42,23,4,31,-7,-18 ; TV[235]=M; kill M; intmat M[6][9]=-16,1,1,1,1,1,3,3,5,60,-170,191,96,1,-94,-73,-35,24,12,-15,4,23,4,-15,-7,-7,1,60,-94,1,96,191,-170,-35,-73,24,6,-17,2,21,40,-55,-13,25,-9,36,50,31,12,-7,-26,-173,17,60 ; TV[236]=M; kill M; intmat M[6][9]=10,-3,-3,-3,-3,-3,10,10,-15,36,-64,31,126,-7,-140,-59,131,-54,12,4,23,42,-167,80,-7,31,-18,-16,1,1,1,1,1,3,3,5,12,80,-167,42,23,4,31,-7,-18,60,20,1,-18,-37,-56,-35,155,-90 ; TV[237]=M; kill M; intmat M[6][9]=-16,1,1,1,1,1,3,3,5,6,-55,40,21,2,-17,25,-13,-9,12,-15,4,23,4,-15,-7,-7,1,36,-64,31,126,-7,-140,-59,131,-54,12,4,23,42,-167,80,-7,31,-18,60,-170,191,96,1,-94,-73,-35,24 ; TV[238]=M; kill M; intmat M[6][9]=-16,1,1,1,1,1,3,3,5,6,-55,40,21,2,-17,25,-13,-9,36,-140,-7,126,31,-64,131,-59,-54,60,-94,1,96,191,-170,-35,-73,24,6,-17,2,21,40,-55,-13,25,-9,12,-15,4,23,4,-15,-7,-7,1 ; TV[239]=M; kill M; intmat M[6][9]=-16,1,1,1,1,1,3,3,5,60,-170,191,96,1,-94,-73,-35,24,12,-15,4,23,4,-15,-7,-7,1,36,-64,31,126,-7,-140,-59,131,-54,12,4,23,42,-167,80,-7,31,-18,36,50,31,12,-7,-26,-173,17,60 ; TV[240]=M; kill M; intmat M[6][9]=6,-55,40,21,2,-17,25,-13,-9,18,-32,-13,6,25,-13,56,-20,-27,10,-3,-3,-3,-3,-3,10,10,-15,-16,1,1,1,1,1,3,3,5,6,-17,2,21,40,-55,-13,25,-9,2,7,7,-31,7,7,2,2,-3 ; TV[241]=M; kill M; intmat M[6][9]=60,-56,-37,-18,1,20,155,-35,-90,12,4,23,42,-167,80,-7,31,-18,36,-26,-7,12,31,50,17,-173,60,2,7,7,-31,7,7,2,2,-3,12,80,-167,42,23,4,31,-7,-18,156,-62,-43,-24,-5,14,137,-53,-120 ; TV[242]=M; kill M; intmat M[6][9]=10,-3,-3,-3,-3,-3,10,10,-15,6,-17,2,21,40,-55,-13,25,-9,2,7,7,-31,7,7,2,2,-3,-16,1,1,1,1,1,3,3,5,12,80,-167,42,23,4,31,-7,-18,60,20,1,-18,-37,-56,-35,155,-90 ; TV[243]=M; kill M; intmat M[6][9]=10,-3,-3,-3,-3,-3,10,10,-15,18,-13,25,6,-13,-32,-20,56,-27,6,-17,2,21,40,-55,-13,25,-9,-16,1,1,1,1,1,3,3,5,2,7,7,-31,7,7,2,2,-3,60,20,1,-18,-37,-56,-35,155,-90 ; TV[244]=M; kill M; intmat M[6][9]=6,-55,40,21,2,-17,25,-13,-9,10,-3,-3,-3,-3,-3,10,10,-15,6,-17,2,21,40,-55,-13,25,-9,-16,1,1,1,1,1,3,3,5,2,7,7,-31,7,7,2,2,-3,18,-13,25,6,-13,-32,-20,56,-27 ; TV[245]=M; kill M; intmat M[6][9]=60,-170,191,96,1,-94,-73,-35,24,18,-13,25,6,-13,-32,-20,56,-27,36,-64,31,126,-7,-140,-59,131,-54,6,-17,2,21,40,-55,-13,25,-9,36,50,31,12,-7,-26,-173,17,60,36,-26,31,12,-7,-26,-21,17,-16 ; TV[246]=M; kill M; intmat M[6][9]=-16,1,1,1,1,1,3,3,5,60,-170,191,96,1,-94,-73,-35,24,12,-15,4,23,4,-15,-7,-7,1,6,-17,2,21,40,-55,-13,25,-9,36,-64,31,126,-7,-140,-59,131,-54,36,50,31,12,-7,-26,-173,17,60 ; TV[247]=M; kill M; intmat M[6][9]=-16,1,1,1,1,1,3,3,5,6,-55,40,21,2,-17,25,-13,-9,12,-15,4,23,4,-15,-7,-7,1,60,-94,1,96,191,-170,-35,-73,24,6,-17,2,21,40,-55,-13,25,-9,60,-170,191,96,1,-94,-73,-35,24 ; TV[248]=M; kill M; intmat M[6][9]=60,-56,-37,-18,1,20,155,-35,-90,6,-55,40,21,2,-17,25,-13,-9,36,-26,-7,12,31,50,17,-173,60,12,4,23,42,-167,80,-7,31,-18,2,7,7,-31,7,7,2,2,-3,156,-62,-43,-24,-5,14,137,-53,-120 ; TV[249]=M; kill M; intmat M[6][9]=6,-55,40,21,2,-17,25,-13,-9,60,-56,-37,-18,1,20,155,-35,-90,10,-3,-3,-3,-3,-3,10,10,-15,-16,1,1,1,1,1,3,3,5,12,4,23,42,-167,80,-7,31,-18,2,7,7,-31,7,7,2,2,-3 ; TV[250]=M; kill M; intmat M[6][9]=-16,1,1,1,1,1,3,3,5,6,-55,40,21,2,-17,25,-13,-9,36,-140,-7,126,31,-64,131,-59,-54,60,-94,1,96,191,-170,-35,-73,24,36,-26,-7,12,31,50,17,-173,60,12,-15,4,23,4,-15,-7,-7,1 ; TV[251]=M; kill M; intmat M[6][9]=60,-56,-37,-18,1,20,155,-35,-90,12,4,23,42,-167,80,-7,31,-18,10,-3,-3,-3,-3,-3,10,10,-15,-16,1,1,1,1,1,3,3,5,2,7,7,-31,7,7,2,2,-3,12,80,-167,42,23,4,31,-7,-18 ; TV[252]=M; kill M; intmat M[6][9]=6,-55,40,21,2,-17,25,-13,-9,18,-32,-13,6,25,-13,56,-20,-27,10,-3,-3,-3,-3,-3,10,10,-15,-16,1,1,1,1,1,3,3,5,60,-56,-37,-18,1,20,155,-35,-90,2,7,7,-31,7,7,2,2,-3 ; TV[253]=M; kill M; intmat M[6][9]=6,-55,40,21,2,-17,25,-13,-9,10,-3,-3,-3,-3,-3,10,10,-15,12,4,23,42,-167,80,-7,31,-18,-16,1,1,1,1,1,3,3,5,2,7,7,-31,7,7,2,2,-3,18,-13,25,6,-13,-32,-20,56,-27 ; TV[254]=M; kill M; intmat M[6][9]=36,-140,-7,126,31,-64,131,-59,-54,18,-32,-13,6,25,-13,56,-20,-27,10,-3,-3,-3,-3,-3,10,10,-15,-16,1,1,1,1,1,3,3,5,6,-17,2,21,40,-55,-13,25,-9,12,80,-167,42,23,4,31,-7,-18 ; TV[255]=M; kill M; intmat M[6][9]=-16,1,1,1,1,1,3,3,5,6,-17,2,21,40,-55,-13,25,-9,2,7,7,-31,7,7,2,2,-3,60,20,1,-18,-37,-56,-35,155,-90,12,80,-167,42,23,4,31,-7,-18,36,50,31,12,-7,-26,-173,17,60 ; TV[256]=M; kill M; intmat M[6][9]=6,-55,40,21,2,-17,25,-13,-9,18,-32,-13,6,25,-13,56,-20,-27,-16,1,1,1,1,1,3,3,5,60,-56,-37,-18,1,20,155,-35,-90,36,-26,-7,12,31,50,17,-173,60,2,7,7,-31,7,7,2,2,-3 ; TV[257]=M; kill M; intmat M[6][9]=6,-55,40,21,2,-17,25,-13,-9,-16,1,1,1,1,1,3,3,5,36,-140,-7,126,31,-64,131,-59,-54,18,-32,-13,6,25,-13,56,-20,-27,36,-26,-7,12,31,50,17,-173,60,60,-94,1,96,191,-170,-35,-73,24 ; TV[258]=M; kill M; intmat M[6][9]=6,-55,40,21,2,-17,25,-13,-9,36,-140,-7,126,31,-64,131,-59,-54,-16,1,1,1,1,1,3,3,5,60,-56,-37,-18,1,20,155,-35,-90,36,-26,-7,12,31,50,17,-173,60,12,4,23,42,-167,80,-7,31,-18 ; TV[259]=M; kill M; intmat M[6][9]=-16,1,1,1,1,1,3,3,5,36,-64,31,126,-7,-140,-59,131,-54,6,-17,2,21,40,-55,-13,25,-9,12,80,-167,42,23,4,31,-7,-18,60,20,1,-18,-37,-56,-35,155,-90,36,50,31,12,-7,-26,-173,17,60 ; TV[260]=M; kill M; intmat M[6][9]=-16,1,1,1,1,1,3,3,5,6,-55,40,21,2,-17,25,-13,-9,60,-94,1,96,191,-170,-35,-73,24,36,-26,-7,12,31,50,17,-173,60,2,7,7,-31,7,7,2,2,-3,60,-170,191,96,1,-94,-73,-35,24 ; TV[261]=M; kill M; intmat M[6][9]=-16,1,1,1,1,1,3,3,5,6,-55,40,21,2,-17,25,-13,-9,18,-13,25,6,-13,-32,-20,56,-27,12,4,23,42,-167,80,-7,31,-18,2,7,7,-31,7,7,2,2,-3,60,-170,191,96,1,-94,-73,-35,24 ; TV[262]=M; kill M; intmat M[6][9]=-16,1,1,1,1,1,3,3,5,60,-170,191,96,1,-94,-73,-35,24,36,-64,31,126,-7,-140,-59,131,-54,6,-17,2,21,40,-55,-13,25,-9,18,-13,25,6,-13,-32,-20,56,-27,36,50,31,12,-7,-26,-173,17,60 ; TV[263]=M; kill M; intmat M[6][9]=-16,1,1,1,1,1,3,3,5,60,-170,191,96,1,-94,-73,-35,24,60,-94,1,96,191,-170,-35,-73,24,6,-17,2,21,40,-55,-13,25,-9,2,7,7,-31,7,7,2,2,-3,36,50,31,12,-7,-26,-173,17,60 ; TV[264]=M; kill M; intmat M[6][9]=36,-140,-7,126,31,-64,131,-59,-54,-16,1,1,1,1,1,3,3,5,18,-32,-13,6,25,-13,56,-20,-27,6,-17,2,21,40,-55,-13,25,-9,60,-94,1,96,191,-170,-35,-73,24,12,80,-167,42,23,4,31,-7,-18 ; TV[265]=M; kill M; intmat M[6][9]=18,-32,-13,6,25,-13,56,-20,-27,-16,1,1,1,1,1,3,3,5,6,-17,2,21,40,-55,-13,25,-9,60,-94,1,96,191,-170,-35,-73,24,2,7,7,-31,7,7,2,2,-3,12,80,-167,42,23,4,31,-7,-18 ; TV[266]=M; kill M; intmat M[6][9]=-16,1,1,1,1,1,3,3,5,60,-170,191,96,1,-94,-73,-35,24,36,-64,31,126,-7,-140,-59,131,-54,12,4,23,42,-167,80,-7,31,-18,18,-13,25,6,-13,-32,-20,56,-27,36,50,31,12,-7,-26,-173,17,60 ; TV[267]=M; kill M; intmat M[6][9]=6,-55,40,21,2,-17,25,-13,-9,36,-140,-7,126,31,-64,131,-59,-54,-16,1,1,1,1,1,3,3,5,18,-32,-13,6,25,-13,56,-20,-27,60,-56,-37,-18,1,20,155,-35,-90,36,-26,-7,12,31,50,17,-173,60 ; TV[268]=M; kill M; intmat M[6][9]=-16,1,1,1,1,1,3,3,5,12,4,23,42,-167,80,-7,31,-18,36,-26,-7,12,31,50,17,-173,60,2,7,7,-31,7,7,2,2,-3,36,50,31,12,-7,-26,-173,17,60,12,80,-167,42,23,4,31,-7,-18 ; TV[269]=M; kill M; intmat M[6][9]=6,-55,40,21,2,-17,25,-13,-9,-16,1,1,1,1,1,3,3,5,18,-32,-13,6,25,-13,56,-20,-27,6,-17,2,21,40,-55,-13,25,-9,60,-94,1,96,191,-170,-35,-73,24,2,7,7,-31,7,7,2,2,-3 ; TV[270]=M; kill M; intmat M[6][9]=36,-140,-7,126,31,-64,131,-59,-54,60,-56,-37,-18,1,20,155,-35,-90,-16,1,1,1,1,1,3,3,5,18,-32,-13,6,25,-13,56,-20,-27,36,-26,-7,12,31,50,17,-173,60,12,80,-167,42,23,4,31,-7,-18 ; TV[271]=M; kill M; intmat M[6][9]=6,-55,40,21,2,-17,25,-13,-9,60,-56,-37,-18,1,20,155,-35,-90,-16,1,1,1,1,1,3,3,5,36,-26,-7,12,31,50,17,-173,60,12,4,23,42,-167,80,-7,31,-18,2,7,7,-31,7,7,2,2,-3 ; TV[272]=M; kill M; intmat M[6][9]=-16,1,1,1,1,1,3,3,5,60,-170,191,96,1,-94,-73,-35,24,18,-13,25,6,-13,-32,-20,56,-27,12,4,23,42,-167,80,-7,31,-18,2,7,7,-31,7,7,2,2,-3,36,50,31,12,-7,-26,-173,17,60 ; TV[273]=M; kill M; intmat M[6][9]=-16,1,1,1,1,1,3,3,5,60,-170,191,96,1,-94,-73,-35,24,60,-94,1,96,191,-170,-35,-73,24,36,-26,-7,12,31,50,17,-173,60,2,7,7,-31,7,7,2,2,-3,36,50,31,12,-7,-26,-173,17,60 ; TV[274]=M; kill M; intmat M[6][9]=-16,1,1,1,1,1,3,3,5,60,-94,1,96,191,-170,-35,-73,24,6,-17,2,21,40,-55,-13,25,-9,2,7,7,-31,7,7,2,2,-3,36,50,31,12,-7,-26,-173,17,60,12,80,-167,42,23,4,31,-7,-18 ; TV[275]=M; kill M; intmat M[6][9]=-16,1,1,1,1,1,3,3,5,60,-170,191,96,1,-94,-73,-35,24,36,-26,-7,12,31,50,17,-173,60,12,4,23,42,-167,80,-7,31,-18,2,7,7,-31,7,7,2,2,-3,36,50,31,12,-7,-26,-173,17,60 ; TV[276]=M; kill M; intmat M[6][9]=-16,1,1,1,1,1,3,3,5,18,-13,25,6,-13,-32,-20,56,-27,12,4,23,42,-167,80,-7,31,-18,36,-64,31,126,-7,-140,-59,131,-54,36,50,31,12,-7,-26,-173,17,60,60,20,1,-18,-37,-56,-35,155,-90 ; TV[277]=M; kill M; intmat M[6][9]=60,-56,-37,-18,1,20,155,-35,-90,12,4,23,42,-167,80,-7,31,-18,-16,1,1,1,1,1,3,3,5,36,-26,-7,12,31,50,17,-173,60,2,7,7,-31,7,7,2,2,-3,12,80,-167,42,23,4,31,-7,-18 ; TV[278]=M; kill M; intmat M[6][9]=-16,1,1,1,1,1,3,3,5,6,-55,40,21,2,-17,25,-13,-9,6,-17,2,21,40,-55,-13,25,-9,2,7,7,-31,7,7,2,2,-3,18,-13,25,6,-13,-32,-20,56,-27,60,-170,191,96,1,-94,-73,-35,24 ; TV[279]=M; kill M; intmat M[6][9]=-16,1,1,1,1,1,3,3,5,18,-13,25,6,-13,-32,-20,56,-27,36,-64,31,126,-7,-140,-59,131,-54,6,-17,2,21,40,-55,-13,25,-9,36,50,31,12,-7,-26,-173,17,60,60,20,1,-18,-37,-56,-35,155,-90 ; TV[280]=M; kill M; intmat M[6][9]=-16,1,1,1,1,1,3,3,5,60,-170,191,96,1,-94,-73,-35,24,6,-17,2,21,40,-55,-13,25,-9,2,7,7,-31,7,7,2,2,-3,18,-13,25,6,-13,-32,-20,56,-27,36,50,31,12,-7,-26,-173,17,60 ; TV[281]=M; kill M; intmat M[6][9]=-16,1,1,1,1,1,3,3,5,6,-55,40,21,2,-17,25,-13,-9,36,-64,31,126,-7,-140,-59,131,-54,6,-17,2,21,40,-55,-13,25,-9,18,-13,25,6,-13,-32,-20,56,-27,60,-170,191,96,1,-94,-73,-35,24 ; TV[282]=M; kill M; intmat M[6][9]=-16,1,1,1,1,1,3,3,5,12,4,23,42,-167,80,-7,31,-18,60,20,1,-18,-37,-56,-35,155,-90,2,7,7,-31,7,7,2,2,-3,36,50,31,12,-7,-26,-173,17,60,12,80,-167,42,23,4,31,-7,-18 ; TV[283]=M; kill M; intmat M[6][9]=-16,1,1,1,1,1,3,3,5,6,-55,40,21,2,-17,25,-13,-9,60,-94,1,96,191,-170,-35,-73,24,6,-17,2,21,40,-55,-13,25,-9,2,7,7,-31,7,7,2,2,-3,60,-170,191,96,1,-94,-73,-35,24 ; TV[284]=M; kill M; intmat M[6][9]=-16,1,1,1,1,1,3,3,5,60,-94,1,96,191,-170,-35,-73,24,36,-26,-7,12,31,50,17,-173,60,2,7,7,-31,7,7,2,2,-3,36,50,31,12,-7,-26,-173,17,60,12,80,-167,42,23,4,31,-7,-18 ; TV[285]=M; kill M; intmat M[6][9]=-16,1,1,1,1,1,3,3,5,6,-55,40,21,2,-17,25,-13,-9,36,-64,31,126,-7,-140,-59,131,-54,12,4,23,42,-167,80,-7,31,-18,18,-13,25,6,-13,-32,-20,56,-27,60,-170,191,96,1,-94,-73,-35,24 ; TV[286]=M; kill M; intmat M[6][9]=18,-32,-13,6,25,-13,56,-20,-27,60,-56,-37,-18,1,20,155,-35,-90,-16,1,1,1,1,1,3,3,5,36,-26,-7,12,31,50,17,-173,60,2,7,7,-31,7,7,2,2,-3,12,80,-167,42,23,4,31,-7,-18 ; TV[287]=M; kill M; intmat M[6][9]=-16,1,1,1,1,1,3,3,5,6,-55,40,21,2,-17,25,-13,-9,36,-26,-7,12,31,50,17,-173,60,12,4,23,42,-167,80,-7,31,-18,2,7,7,-31,7,7,2,2,-3,60,-170,191,96,1,-94,-73,-35,24 ; TV[288]=M; kill M; intmat M[6][9]=-16,1,1,1,1,1,3,3,5,18,-13,25,6,-13,-32,-20,56,-27,12,4,23,42,-167,80,-7,31,-18,2,7,7,-31,7,7,2,2,-3,36,50,31,12,-7,-26,-173,17,60,60,20,1,-18,-37,-56,-35,155,-90 ; TV[289]=M; kill M; intmat M[6][9]=6,-55,40,21,2,-17,25,-13,-9,-16,1,1,1,1,1,3,3,5,18,-32,-13,6,25,-13,56,-20,-27,36,-26,-7,12,31,50,17,-173,60,60,-94,1,96,191,-170,-35,-73,24,2,7,7,-31,7,7,2,2,-3 ; TV[290]=M; kill M; intmat M[6][9]=6,-55,40,21,2,-17,25,-13,-9,-16,1,1,1,1,1,3,3,5,36,-140,-7,126,31,-64,131,-59,-54,18,-32,-13,6,25,-13,56,-20,-27,6,-17,2,21,40,-55,-13,25,-9,60,-94,1,96,191,-170,-35,-73,24 ; TV[291]=M; kill M; intmat M[6][9]=36,-140,-7,126,31,-64,131,-59,-54,-16,1,1,1,1,1,3,3,5,18,-32,-13,6,25,-13,56,-20,-27,36,-26,-7,12,31,50,17,-173,60,60,-94,1,96,191,-170,-35,-73,24,12,80,-167,42,23,4,31,-7,-18 ; TV[292]=M; kill M; intmat M[6][9]=-16,1,1,1,1,1,3,3,5,18,-13,25,6,-13,-32,-20,56,-27,6,-17,2,21,40,-55,-13,25,-9,2,7,7,-31,7,7,2,2,-3,36,50,31,12,-7,-26,-173,17,60,60,20,1,-18,-37,-56,-35,155,-90 ; TV[293]=M; kill M; intmat M[6][9]=-16,1,1,1,1,1,3,3,5,36,-64,31,126,-7,-140,-59,131,-54,12,4,23,42,-167,80,-7,31,-18,12,80,-167,42,23,4,31,-7,-18,60,20,1,-18,-37,-56,-35,155,-90,36,50,31,12,-7,-26,-173,17,60 ; TV[294]=M; kill M; intmat M[6][9]=36,-140,-7,126,31,-64,131,-59,-54,60,-56,-37,-18,1,20,155,-35,-90,-16,1,1,1,1,1,3,3,5,36,-26,-7,12,31,50,17,-173,60,12,4,23,42,-167,80,-7,31,-18,12,80,-167,42,23,4,31,-7,-18 ; TV[295]=M; kill M; intmat M[6][9]=18,-32,-13,6,25,-13,56,-20,-27,-16,1,1,1,1,1,3,3,5,36,-26,-7,12,31,50,17,-173,60,60,-94,1,96,191,-170,-35,-73,24,2,7,7,-31,7,7,2,2,-3,12,80,-167,42,23,4,31,-7,-18 ; TV[296]=M; kill M; } return(TV[n]); } static proc interiorInequalitiesDatabase (string polygon) "USAGE: interiorInequalitiesDatabase(polygon); polygon string ASSUME: polygon is one of the following strings discribing the type of curve to be considered: - 'cubic' : describing a cubic - '2x2' : describing a curve of type (2,2) - '4x2' : describing a curve of type (4,2) RETURN: intmat, the inequalities describing the cone such that the interior point of the polygon is a vertex of some polygon in the corresponding marked subdivision of the polygon" { execute("ring ineqring=0,("+polygonToCoordinates(polygonDB(polygon))[1]+"),lp;"); // interprete poly2intvec(u01^3*u30^2*u03,6) as: // 6*u11-3*u01-2*u30-u03 >= 0 is necessary for the cone of interest if (polygon=="cubic") { // these are the inequalities which ensure that the point (1,1) // is visible in the Newton subdivison; intmat ineq[24][10]= poly2intvec(u01^3*u30^2*u03,6), poly2intvec(u10^3*u03^2*u30,6), poly2intvec(u12^3*u30*u00^2,6), poly2intvec(u21^3*u03*u00^2,6), poly2intvec(u30^2*u02^3*u00,6), poly2intvec(u03^2*u20^3*u00,6), poly2intvec(u12*u30*u00*u02,4), poly2intvec(u21*u03*u00*u20,4), poly2intvec(u01*u10*u03*u30,4), poly2intvec(u01^2*u12*u30,4), poly2intvec(u10^2*u21*u03,4), poly2intvec(u12^2*u20*u00,4), poly2intvec(u21^2*u02*u00,4), poly2intvec(u02^2*u10*u30,4), poly2intvec(u20^2*u01*u03,4), poly2intvec(u20*u01*u12,3), poly2intvec(u02*u10*u21,3), poly2intvec(u30*u02*u01,3), poly2intvec(u03*u10*u20,3), poly2intvec(u00*u12*u21,3), poly2intvec(u00*u30*u03,3), poly2intvec(u21*u01,2), poly2intvec(u10*u12,2), poly2intvec(u20*u02,2); } if (polygon=="2x2") { // these are the inequalities which ensure that the point (1,1) // is visible in the Newton subdivison; intmat ineq[12][9]= poly2intvec(u20*u00*u12^2,4), poly2intvec(u00*u02*u21^2,4), poly2intvec(u02*u22*u10^2,4), poly2intvec(u22*u20*u01^2,4), poly2intvec(u20*u01*u12,3), poly2intvec(u00*u12*u21,3), poly2intvec(u02*u21*u10,3), poly2intvec(u22*u10*u01,3), poly2intvec(u00*u22,2), poly2intvec(u20*u02,2), poly2intvec(u10*u12,2), poly2intvec(u01*u21,2); } if (polygon=="4x2") { // these are the inequalities which ensure that the point (1,1) // is visible in the Newton subdivison; intmat ineq[10][9]= poly2intvec(u00*u30^2*u02^3,6), poly2intvec(u40*u10^2*u02^3,6), poly2intvec(u40*u02*u01^2,4), poly2intvec(u00*u02*u21^2,4), poly2intvec(u00*u40*u02^2,4), poly2intvec(u10*u30*u02^2,4), poly2intvec(u02*u01*u30,3), poly2intvec(u02*u10*u21,3), poly2intvec(u21*u01,2), poly2intvec(u20*u02,2); } return(ineq); } proc edgeInequalitiesDatabase (string polygon) "USAGE: edgeInequalitiesDatabase(polygon); polygon string ASSUME: polygon is one of the following strings discribing the type of curve to be considered: - 'cubic' : describing a cubic - '2x2' : describing a curve of type (2,2) - '4x2' : describing a curve of type (4,2) RETURN: list, say L of lists L[1] : of integer matrices such that the ith matrix describes the inequalities which are necessary for the presence of the ith inner edge in a subdivision of the polygon L[2] : endpoints of the corresponding edges NOTE: - the procedure is called by displayFan" { int i,j; // create the ring in which all possible edges live execute("ring kglring=0,("+polygonToCoordinates(polygonDB(polygon))[1]+"),lp;"); // store the inner edges as sums of variables if (polygon=="cubic") { list kanten=u30+u01,u30+u11,u30+u02,u20+u21,u20+u11,u20+u01,u20+u12,u20+u03,u10+u21, u10+u11,u10+u01,u10+u02,u10+u03,u00+u21,u00+u11,u00+u12,u21+u11,u21+u02,u11+u01, u11+u12,u11+u02,u11+u03,u01+u12,u12+u02,u12+u10,u21+u01,u20+u02; } if (polygon=="2x2") { list kanten=u20+u11,u20+u01,u20+u12,u10+u21, u10+u11,u10+u01,u10+u02,u00+u21,u00+u11,u00+u12,u21+u11,u21+u02,u11+u01, u11+u12,u11+u02,u01+u12,u12+u10,u21+u01,u20+u02,u11+u22,u01+u22,u10+u22,u00+u22; } if (polygon=="4x2") { list kanten=u30+u01,u30+u11,u30+u02,u20+u21,u20+u11,u20+u01,u10+u21, u10+u11,u10+u01,u10+u02,u00+u21,u00+u11,u21+u11,u11+u01, u21+u01,u20+u02,u21+u30,u11+u40,u01+u40, u11+u02; } // find the endpoints of the edges list kantenvektoren; for (i=1;i<=size(kanten);i++) { execute("kantenvektoren[i]=list(intvec("+string(kanten[i][1])[2]+","+string(kanten[i][1])[3]+"),intvec("+string(kanten[i][2])[2]+","+string(kanten[i][2])[3]+"));"); } // first we store the information on which edges have to be compared, i.e. when considering an // edge a+b which edge c+d does cross it - this is indicated by the polynomial a+b-c-d list kg; if (polygon=="cubic") { kg[1]=ideal(u30+u01-u00-u21,u30+u01-u00-u11,u30+u01-u00-u12,u30+u01-u10-u21,u30+u01-u10-u11,u30+u01-u10-u03,u30+u01-u10-u02,u30+u01-u20-u21,u30+u01-u20-u12,u30+u01-u20-u03,u30+u01-u20-u11,u30+u01-u10-u12,u30+u01-u20-u02); kg[2]=ideal(u11+u30-u20-u21,u11+u30-u20-u12,u11+u30-u20-u03,u11+u30-u10-u21,u11+u30-u00-u21); kg[3]=ideal(u30+u02-u00-u12,u30+u02-u00-u21,u30+u02-u10-u03,u30+u02-u10-u21,u30+u02-u20-u03,u30+u02-u20-u12,u30+u02-u20-u21,u30+u02-u01-u12,u30+u02-u11-u03,u30+u02-u11-u12,u30+u02-u11-u21,u30+u02-u10-u12,u30+u02-u01-u21); kg[4]=ideal(u20+u21-u30-u01,u20+u21-u30-u11,u20+u21-u30-u02); kg[5]=ideal(u20+u11-u30-u01,u20+u11-u10-u21,u20+u11-u00-u21); kg[6]=ideal(u20+u01-u00-u12,u20+u01-u00-u11,u20+u01-u00-u21,u20+u01-u10-u02,u20+u01-u10-u03,u20+u01-u10-u11,u20+u01-u10-u21,u20+u01-u10-u12); kg[7]=ideal(u20+u12-u00-u21,u20+u12-u10-u21,u20+u12-u30-u01,u20+u12-u30-u11,u20+u12-u30-u02,u20+u12-u11-u21,u20+u12-u21-u02,u20+u12-u01-u21); kg[8]=ideal(u20+u03-u00-u12,u20+u03-u00-u21,u20+u03-u10-u21,u20+u03-u30-u01,u20+u03-u30-u11,u20+u03-u30-u02,u20+u03-u01-u12,u20+u03-u11-u12,u20+u03-u11-u21,u20+u03-u21-u02,u20+u03-u02-u12,u20+u03-u01-u21,u20+u03-u10-u12); kg[9]=ideal(u10+u21-u20-u01,u10+u21-u20-u11,u10+u21-u20-u03,u10+u21-u20-u12,u10+u21-u30-u01,u10+u21-u30-u11,u10+u21-u30-u02,u10+u21-u20-u02); kg[10]=ideal(u10+u11-u00-u21,u10+u11-u20-u01,u10+u11-u30-u01); kg[11]=ideal(u10+u01-u00-u12,u10+u01-u00-u11,u10+u01-u00-u21); kg[12]=ideal(u10+u02-u00-u12,u10+u02-u00-u11,u10+u02-u00-u21,u10+u02-u01-u12,u10+u02-u01-u11,u10+u02-u01-u30,u10+u02-u01-u20,u10+u02-u01-u21); kg[13]=ideal(u10+u03-u00-u12,u10+u03-u00-u11,u10+u03-u00-u21,u10+u03-u01-u12,u10+u03-u01-u11,u10+u03-u01-u30,u10+u03-u01-u20,u10+u03-u02-u12,u10+u03-u02-u21,u10+u03-u02-u30,u10+u03-u02-u11,u10+u03-u01-u21,u10+u03-u20-u02); kg[14]=ideal(u00+u21-u10-u01,u00+u21-u10-u02,u00+u21-u10-u03,u00+u21-u10-u11,u00+u21-u20-u01,u00+u21-u20-u11,u00+u21-u20-u03,u00+u21-u20-u12,u00+u21-u30-u01,u00+u21-u30-u11,u00+u21-u30-u02,u00+u21-u20-u02,u00+u21-u10-u12); kg[15]=ideal(u11+u00-u10-u01,u11+u00-u10-u02,u11+u00-u10-u03,u11+u00-u20-u01,u11+u00-u30-u01); kg[16]=ideal(u00+u12-u01-u10,u00+u12-u01-u20,u00+u12-u01-u30,u00+u12-u01-u11,u00+u12-u02-u10,u00+u12-u02-u11,u00+u12-u02-u30,u00+u12-u02-u21,u00+u12-u03-u10,u00+u12-u03-u11,u00+u12-u03-u20,u00+u12-u01-u21,u00+u12-u20-u02); kg[17]=ideal(u21+u11-u20-u03,u21+u11-u20-u12,u21+u11-u30-u02); kg[18]=ideal(u21+u02-u03-u10,u21+u02-u03-u11,u21+u02-u03-u20,u21+u02-u12-u01,u21+u02-u12-u00,u21+u02-u12-u11,u21+u02-u12-u20,u21+u02-u10-u12); kg[19]=ideal(u11+u01-u00-u12,u11+u01-u10-u02,u11+u01-u10-u03); kg[20]=ideal(u11+u12-u02-u21,u11+u12-u02-u30,u11+u12-u03-u20); kg[21]=ideal(u11+u02-u01-u12,u11+u02-u00-u12,u11+u02-u10-u03); kg[22]=ideal(u11+u03-u12-u02,u11+u03-u01-u12,u11+u03-u00-u12,u11+u03-u21-u02,u11+u03-u30-u02); kg[23]=ideal(u01+u12-u02-u10,u01+u12-u02-u11,u01+u12-u02-u30,u01+u12-u02-u21,u01+u12-u03-u10,u01+u12-u03-u11,u01+u12-u03-u20,u01+u12-u20-u02); kg[24]=ideal(u02+u12-u03-u10,u02+u12-u03-u11,u02+u12-u03-u20); kg[25]=ideal(u12+u10-2*u11,u12+u10-u30-u01,u12+u10-u30-u02,u12+u10-u20-u01,u12+u10-u20-u02,u12+u10-u20-u03,u12+u10-u21-u00,u12+u10-u21-u01,u12+u10-u21-u02); kg[26]=ideal(u21+u01-2*u11,u21+u01-u30-u02,u21+u01-u20-u02,u21+u01-u20-u03,u21+u01-u20-u12,u21+u01-u10-u02,u21+u01-u10-u03,u21+u01-u10-u12,u21+u01-u00-u12); kg[27]=ideal(u20+u02-2*u11,u20+u02-u01-u12,u20+u02-u01-u21,u20+u02-u01-u30,u20+u02-u00-u12,u20+u02-u00-u21,u20+u02-u10-u03,u20+u02-u10-u12,u20+u02-u10-u21); } if (polygon=="2x2") { kg[1]=ideal(u20+u11-u10-u21,u20+u11-u00-u21,u20+u11-u10-u22); kg[2]=ideal(u20+u01-u00-u12,u20+u01-u00-u11,u20+u01-u00-u21,u20+u01-u10-u02,u20+u01-u10-u11,u20+u01-u10-u21,u20+u01-u10-u22,u20+u01-u00-u22); kg[3]=ideal(u20+u12-u00-u21,u20+u12-u10-u21,u20+u12-u11-u21,u20+u12-u21-u02,u20+u12-u10-u22,u20+u12-u01-u22,u20+u12-u11-u22,u20+u12-u00-u22); kg[4]=ideal(u10+u21-u20-u01,u10+u21-u20-u11,u10+u21-u20-u12); kg[5]=ideal(u10+u11-u00-u21,u10+u11-u20-u01); kg[6]=ideal(u10+u01-u00-u12,u10+u01-u00-u11,u10+u01-u00-u21,u10+u01-u00-u22); kg[7]=ideal(u10+u02-u00-u12,u10+u02-u00-u11,u10+u02-u00-u21,u10+u02-u01-u12,u10+u02-u01-u11,u10+u02-u01-u20,u10+u02-u01-u22,u10+u02-u00-u22); kg[8]=ideal(u00+u21-u10-u01,u00+u21-u10-u02,u00+u21-u10-u11,u00+u21-u20-u01,u00+u21-u20-u11,u00+u21-u20-u12,u00+u21-u10-u22); kg[9]=ideal(u11+u00-u10-u01,u11+u00-u10-u02,u11+u00-u20-u01); kg[10]=ideal(u00+u12-u01-u10,u00+u12-u01-u20,u00+u12-u01-u11,u00+u12-u02-u10,u00+u12-u02-u11,u00+u12-u02-u21,u00+u12-u01-u22); kg[11]=ideal(u21+u11-u20-u12,u21+u11-u10-u22); kg[12]=ideal(u21+u02-u12-u01,u21+u02-u12-u00,u21+u02-u12-u11,u21+u02-u12-u20,u21+u02-u01-u22,u21+u02-u10-u22,u21+u02-u11-u22,u21+u02-u00-u22); kg[13]=ideal(u11+u01-u00-u12,u11+u01-u10-u02); kg[14]=ideal(u11+u12-u02-u21,u11+u12-u01-u22); kg[15]=ideal(u11+u02-u01-u12,u11+u02-u00-u12,u11+u02-u01-u22); kg[16]=ideal(u01+u12-u02-u10,u01+u12-u02-u11,u01+u12-u02-u00,u01+u12-u02-u21); kg[17]=ideal(u12+u10-2*u11,u12+u10-u20-u01,u12+u10-u20-u02,u12+u10-u21-u00,u12+u10-u21-u01,u12+u10-u21-u02,u12+u10-u01-u22,u12+u10-u00-u22); kg[18]=ideal(u21+u01-2*u11,u21+u01-u20-u02,u21+u01-u20-u12,u21+u01-u10-u02,u21+u01-u10-u12,u21+u01-u00-u12,u21+u01-u10-u22,u21+u01-u00-u22); kg[19]=ideal(u20+u02-2*u11,u20+u02-u01-u12,u20+u02-u01-u21,u20+u02-u00-u12,u20+u02-u00-u21,u20+u02-u10-u12,u20+u02-u10-u21,u20+u02-u01-u22,u20+u02-u10-u22,u20+u02-u00-u22); kg[20]=ideal(u11+u22-u20-u12,u11+u22-u02-u21,u11+u22-u12-u21); kg[21]=ideal(u01+u22-u02-u10,u01+u22-u02-u11,u01+u22-u02-u21,u01+u22-u12-u00,u01+u22-u12-u11,u01+u22-u12-u21,u01+u22-u12-u20,u01+u22-u02-u20,u01+u22-u12-u10); kg[22]=ideal(u10+u22-u20-u01,u10+u22-u20-u11,u10+u22-u20-u12,u10+u22-u21-u00,u10+u22-u21-u11,u10+u22-u21-u12,u10+u22-u21-u02,u10+u22-u20-u02,u10+u22-u21-u01); kg[23]=ideal(u00+u22-2*u11,u00+u22-u10-u01,u00+u22-u10-u02,u00+u22-u10-u12,u00+u22-u20-u01,u00+u22-u20-u02,u00+u22-u20-u12,u00+u22-u21-u01,u00+u22-u21-u02,u00+u22-u21-u12); } if (polygon=="4x2") { // note that in this case the last edge is not described by inequalities; its presence will // have to be tested by the presence of the interior point seperately kg[1]=ideal(u30+u01-u00-u11,u30+u01-u00-u21,u30+u01-u10-u11,u30+u01-u10-u21,u30+u01-u20-u11,u30+u01-u20-u21); kg[2]=ideal(u11+u30-u20-u21,u11+u30-u10-u21,u11+u30-u00-u21,u11+u30-u01-u40); kg[3]=ideal(u30+u02-u00-u21,u30+u02-u10-u21,u30+u02-u20-u21,u30+u02-u11-u21,u30+u02-u01-u40,u30+u02-u11-u40); kg[4]=ideal(u20+u21-u30-u01,u20+u21-u30-u11,u20+u21-u30-u02,u20+u21-u01-u40,u20+u21-u11-u40); kg[5]=ideal(u20+u11-u30-u01,u20+u11-u10-u21,u20+u11-u00-u21,u20+u11-u01-u40); kg[6]=ideal(u20+u01-u00-u11,u20+u01-u00-u21,u20+u01-u10-u02,u20+u01-u10-u11,u20+u01-u10-u21); kg[7]=ideal(u10+u21-u20-u01,u10+u21-u20-u11,u10+u21-u30-u01,u10+u21-u30-u11,u10+u21-u30-u02,u10+u21-u01-u40,u10+u21-u11-u40); kg[8]=ideal(u10+u11-u00-u21,u10+u11-u20-u01,u10+u11-u30-u01,u10+u11-u01-u40); kg[9]=ideal(u10+u01-u00-u11,u10+u01-u00-u21); kg[10]=ideal(u10+u02-u00-u11,u10+u02-u00-u21,u10+u02-u01-u11,u10+u02-u01-u30,u10+u02-u01-u20,u10+u02-u01-u40); kg[11]=ideal(u00+u21-u10-u01,u00+u21-u10-u02,u00+u21-u10-u11,u00+u21-u20-u01,u00+u21-u20-u11,u00+u21-u30-u01,u00+u21-u30-u11,u00+u21-u30-u02,u00+u21-u01-u40,u00+u21-u11-u40); kg[12]=ideal(u11+u00-u10-u01,u11+u00-u10-u02,u11+u00-u20-u01,u11+u00-u30-u01,u11+u00-u01-u40); kg[13]=ideal(u21+u11-u30-u02,u21+u11-u01-u40); kg[14]=ideal(u11+u01-u10-u02); kg[15]=ideal(u21+u01-2*u11,u21+u01-u30-u02,u21+u01-u20-u02,u21+u01-u10-u02); kg[16]=ideal(u20+u02-2*u11,u20+u02-u01-u21,u20+u02-u01-u30,u20+u02-u00-u21,u20+u02-u10-u21,u20+u02-u01-u40); kg[17]=ideal(u30+u21-u01-u40,u30+u21-u11-u40); kg[18]=ideal(u11+u40-u02-u30,u11+u40-u21-u00,u11+u40-u21-u10,u11+u40-u21-u20,u11+u40-u21-u30); kg[19]=ideal(u01+u40-u02-u10,u01+u40-u02-u20,u01+u40-u02-u30,u01+u40-u11-u00,u01+u40-u11-u10,u01+u40-u11-u20,u01+u40-u11-u30,u01+u40-u21-u00,u01+u40-u21-u10,u01+u40-u21-u20,u01+u40-u21-u30); } // next we compute for each edge pair the inequality which must // be satisfied and replace the pair // by this inequality, where A+B-C-D means A+B>C+D for (i=1;i<=size(kg);i++) { for(j=1;j<=size(kg[i]);j++) { // if kg[i][j] has not size 4 then it is one of u12+u10-2*u11,u21+u01-2*u11, or u20+u02-2*u11, and // these are already in the desired form if (size(kg[i][j])==4) { kg[i][j]=equation(kg[i][j]); } } } // then we transform the inequalities into matrix form list kgl; for (i=1;i<=size(kg);i++) { matrix M=coeffs(kg[i][1],maxideal(1)); for (j=2;j<=size(kg[i]);j++) { M=concat(M,coeffs(kg[i][j],maxideal(1))); } execute("intmat N["+string(nrows(M))+"]["+string(ncols(M))+"]="+string(M)+";"); kgl[i]=N; kill N; kill M; } return(list(kgl,kantenvektoren)); }