diff --git a/Geo/Chain.h b/Geo/Chain.h index 3c9b47547446244485564e10ca24a747420fec0d..bc3d91073a0b9b3013b4618b6ac6d2f12cfa228a 100644 --- a/Geo/Chain.h +++ b/Geo/Chain.h @@ -480,13 +480,13 @@ int Chain<C>::addToModel(GModel* m, bool post, MElement* e = it->first.createMeshElement(); C coeff = it->second; elements.push_back(e); - if(dim > 0 && coeff < 0) e->revert(); + if(dim > 0 && coeff < 0) e->reverse(); // if elementary chain coefficient is other than -1 or 1, // add multiple identical MElements to the physical group for(int i = 1; i < abs(coeff); i++) { MElement* ecopy = it->first.createMeshElement(); - if(dim > 0 && coeff < 0) ecopy->revert(); + if(dim > 0 && coeff < 0) ecopy->reverse(); elements.push_back(ecopy); } if(dim > 0) coeff = abs(coeff); diff --git a/Geo/GEdge.cpp b/Geo/GEdge.cpp index 8be3ec5be8d18ab6c0f33813068a6758ec663e44..26245d295e48abcdece7de1fb4d3287de8cd32fe 100644 --- a/Geo/GEdge.cpp +++ b/Geo/GEdge.cpp @@ -49,7 +49,7 @@ void GEdge::reverse() v0 = v1; v1 = tmp; for(std::vector<MLine*>::iterator line = lines.begin(); line != lines.end(); line++) - (*line)->revert(); + (*line)->reverse(); } unsigned int GEdge::getNumMeshElements() @@ -86,7 +86,7 @@ MElement *GEdge::getMeshElement(unsigned int index) void GEdge::resetMeshAttributes() { - meshAttributes.Method = MESH_UNSTRUCTURED; + meshAttributes.method = MESH_UNSTRUCTURED; meshAttributes.coeffTransfinite = 0.; meshAttributes.nbPointsTransfinite = 0; meshAttributes.typeTransfinite = 0; @@ -174,7 +174,7 @@ std::string GEdge::getAdditionalInfoString() std::ostringstream sstream; if(v0 && v1) sstream << "{" << v0->tag() << " " << v1->tag() << "}"; - if(meshAttributes.Method == MESH_TRANSFINITE) + if(meshAttributes.method == MESH_TRANSFINITE) sstream << " transfinite"; if(meshAttributes.extrude) sstream << " extruded"; @@ -209,7 +209,7 @@ void GEdge::writeGEO(FILE *fp) fprintf(fp, ", %d};\n", getEndVertex()->tag()); } - if(meshAttributes.Method == MESH_TRANSFINITE){ + if(meshAttributes.method == MESH_TRANSFINITE){ fprintf(fp, "Transfinite Line {%d} = %d", tag() * (meshAttributes.typeTransfinite > 0 ? 1 : -1), meshAttributes.nbPointsTransfinite); @@ -222,6 +222,9 @@ void GEdge::writeGEO(FILE *fp) } fprintf(fp, ";\n"); } + + if(meshAttributes.reverseMesh) + fprintf(fp, "Reverse Line {%d};\n", tag()); } bool GEdge::containsParam(double pt) const diff --git a/Geo/GEdge.h b/Geo/GEdge.h index e99d5cdbdfd569a84d19b2d94eb27289d8fbdb16..b43736925b494a61ce03b649a7243207ddcf88ed 100644 --- a/Geo/GEdge.h +++ b/Geo/GEdge.h @@ -34,7 +34,7 @@ class GEdge : public GEntity { // FIXME: normals need to be mutable at the moment, because thay can // be created in const member functions mutable std::map<MVertex*, SVector3, std::less<MVertex*> > _normals; - GEdgeCompound *compound; // this model edge belongs to a compound + GEdgeCompound *compound; // this model edge belongs to a compound std::list<GFace *> l_faces; // for specific solid modelers that need to re-do the internal curve // if a topological change ending points is done (gluing) @@ -94,7 +94,7 @@ class GEdge : public GEntity { // get second derivative of edge at the given parameter (default // implentation using central differences) virtual SVector3 secondDer(double par) const; - + // get the curvature virtual double curvature(double par) const; @@ -126,12 +126,12 @@ class GEdge : public GEntity { // true if start == end and no more than 2 segments void setTooSmall(bool b) { _tooSmall = b; } - bool isMeshDegenerated() const - { + bool isMeshDegenerated() const + { if (_tooSmall) Msg::Debug("degenerated mesh on edge %d: too small", tag()); if (v0 == v1 && mesh_vertices.size() < 2) - Msg::Debug("degenerated mesh on edge %d: %d mesh vertices", tag(), + Msg::Debug("degenerated mesh on edge %d: %d mesh vertices", tag(), (int)mesh_vertices.size()); return _tooSmall || (v0 == v1 && mesh_vertices.size() < 2); } @@ -158,18 +158,18 @@ class GEdge : public GEntity { std::map<MVertex*, SVector3, std::less<MVertex*> > &getNormals() { return _normals; } - // get bounds of parametric coordinate + // get bounds of parametric coordinate virtual Range<double> parBounds(int i) const = 0; inline double getLowerBound() const{ return parBounds(0).low();}; inline double getUpperBound() const{ return parBounds(0).high();}; - + // return the point on the face closest to the given point virtual GPoint closestPoint(const SPoint3 &queryPoint, double ¶m) const; // return the parmater location on the edge given a point in space // that is on the edge virtual double parFromPoint(const SPoint3 &P) const; - + // compute the parameter U from a point XYZ virtual bool XYZToU(const double X, const double Y, const double Z, double &U, const double relax=0.5) const; @@ -182,7 +182,7 @@ class GEdge : public GEntity { void replaceEndingPoints(GVertex *, GVertex *); struct { - char Method; + char method; double coeffTransfinite; double meshSize; int nbPointsTransfinite; @@ -190,16 +190,18 @@ class GEdge : public GEntity { int minimumMeshSegments; // the extrusion parameters (if any) ExtrudeParams *extrude; + // reverse mesh orientation + bool reverseMesh; } meshAttributes ; struct { mutable GEntity::MeshGenerationStatus status; } meshStatistics; - + std::vector<MLine*> lines; void addLine(MLine *line){ lines.push_back(line); } - + bool computeDistanceFromMeshToGeometry (double &d2, double &dmax); }; diff --git a/Geo/GFace.cpp b/Geo/GFace.cpp index e4603f866c7a4a6c3c34dbfef6e182f59d482f0b..428b94c0e9e0e07a135883fd19c08c7a1a53d477 100644 --- a/Geo/GFace.cpp +++ b/Geo/GFace.cpp @@ -173,10 +173,11 @@ void GFace::resetMeshAttributes() { meshAttributes.recombine = 0; meshAttributes.recombineAngle = 45.; - meshAttributes.Method = MESH_UNSTRUCTURED; + meshAttributes.method = MESH_UNSTRUCTURED; meshAttributes.transfiniteArrangement = 0; meshAttributes.transfiniteSmoothing = -1; meshAttributes.extrude = 0; + meshAttributes.reverseMesh = false; } SBoundingBox3d GFace::bounds() const @@ -299,10 +300,12 @@ std::string GFace::getAdditionalInfoString() if(meshAttributes.recombine) sstream << " recombined"; - if(meshAttributes.Method == MESH_TRANSFINITE) + if(meshAttributes.method == MESH_TRANSFINITE) sstream << " transfinite"; if(meshAttributes.extrude) sstream << " extruded"; + if(meshAttributes.reverseMesh) + sstream << " reverse"; return sstream.str(); } @@ -346,7 +349,7 @@ void GFace::writeGEO(FILE *fp) it != embedded_vertices.end(); it++) fprintf(fp, "Point {%d} In Surface {%d};\n", (*it)->tag(), tag()); - if(meshAttributes.Method == MESH_TRANSFINITE){ + if(meshAttributes.method == MESH_TRANSFINITE){ fprintf(fp, "Transfinite Surface {%d}", tag()); if(meshAttributes.corners.size()){ fprintf(fp, " = {"); @@ -361,6 +364,9 @@ void GFace::writeGEO(FILE *fp) if(meshAttributes.recombine) fprintf(fp, "Recombine Surface {%d};\n", tag()); + + if(meshAttributes.reverseMesh) + fprintf(fp, "Reverse Surface {%d};\n", tag()); } void GFace::computeMeanPlane() diff --git a/Geo/GFace.h b/Geo/GFace.h index 0951b096c27665209031a0221de5afdc17ecc834..bd9ab1ad7cb88faba396107b04309c0828bfb671 100644 --- a/Geo/GFace.h +++ b/Geo/GFace.h @@ -44,7 +44,7 @@ class GFace : public GEntity mean_plane meanPlane; std::list<GEdge *> embedded_edges; std::list<GVertex *> embedded_vertices; - GFaceCompound *compound; // this model edge belongs to a compound + GFaceCompound *compound; // this model edge belongs to a compound // replace edges (for gluing) for specific modelers, we have to // re-create internal data @@ -66,8 +66,8 @@ class GFace : public GEntity GFace(GModel *model, int tag); virtual ~GFace(); - std::vector<MVertex*> additionalVertices; - + std::vector<MVertex*> additionalVertices; + // delete mesh data virtual void deleteMesh(); @@ -82,7 +82,7 @@ class GFace : public GEntity // add embedded vertices/edges void addEmbeddedVertex(GVertex *v){ embedded_vertices.push_back(v); } void addEmbeddedEdge(GEdge *e){ embedded_edges.push_back(e); } - + // delete the edge from the face (the edge is supposed to be a free // edge in the face, not part of any edge loops--use with caution!) void delFreeEdge(GEdge *e); @@ -123,7 +123,7 @@ class GFace : public GEntity // get the oriented bounding box virtual SOrientedBoundingBox getOBB(); - + // retrieve surface params virtual surface_params getSurfaceParams() const; @@ -159,10 +159,10 @@ class GFace : public GEntity // stereographic mappings of the sphere that is used in 2D mesh // generation ! virtual double getMetricEigenvalue(const SPoint2 &); - + // eigen values are absolute values and sorted from min to max of absolute values // eigen vectors are the COLUMNS of eigVec - virtual void getMetricEigenVectors(const SPoint2 ¶m, + virtual void getMetricEigenVectors(const SPoint2 ¶m, double eigVal[2], double eigVec[4]) const; // return the parmater location on the face given a point in space @@ -173,7 +173,7 @@ class GFace : public GEntity virtual bool containsParam(const SPoint2 &pt) const; // return the point on the face closest to the given point - virtual GPoint closestPoint(const SPoint3 & queryPoint, + virtual GPoint closestPoint(const SPoint3 & queryPoint, const double initialGuess[2]) const; // return the normal to the face at the given parameter location @@ -184,7 +184,7 @@ class GFace : public GEntity // compute the second derivates of the face at the parameter location // the derivates have to be allocated before calling this function - virtual void secondDer(const SPoint2 ¶m, + virtual void secondDer(const SPoint2 ¶m, SVector3 *dudu, SVector3 *dvdv, SVector3 *dudv) const = 0; // return the curvature computed as the divergence of the normal @@ -259,30 +259,30 @@ class GFace : public GEntity // add points (and optionally normals) in vectors so that two // points are at most maxDist apart - bool fillPointCloud(double maxDist, + bool fillPointCloud(double maxDist, std::vector<SPoint3> *points, std::vector<SPoint2> *uvpoints, std::vector<SVector3> *normals=0); // apply Lloyd's algorithm to the mesh - void lloyd (int nIter, int infNorm = 0); + void lloyd (int nIter, int infNorm = 0); // replace edges (gor gluing) void replaceEdges(std::list<GEdge*> &); - + // tells if it's a sphere, and if it is, returns parameters virtual bool isSphere (double &radius, SPoint3 ¢er) const {return false;} // add layers of quads void addLayersOfQuads (int nLayers, GVertex *start, double hmin, double factor); - + struct { // do we recombine the triangles of the mesh? int recombine; // what is the treshold angle for recombination double recombineAngle; // is this surface meshed using a transfinite interpolation - char Method; + char method; // corners of the transfinite interpolation std::vector<GVertex*> corners; // all diagonals of the triangulation are left (-1), right (1) or @@ -292,7 +292,8 @@ class GFace : public GEntity int transfiniteSmoothing; // the extrusion parameters (if any) ExtrudeParams *extrude; - // edge loops + // reverse mesh orientation + bool reverseMesh; } meshAttributes ; int getMeshingAlgo () const; diff --git a/Geo/GFaceCompound.cpp b/Geo/GFaceCompound.cpp index 8d725c49c28f39e05b48d3d4cc1f2da1f2240b28..d1cf5ac67eed27e8bcf54bcb387b0dc8bdb12500 100644 --- a/Geo/GFaceCompound.cpp +++ b/Geo/GFaceCompound.cpp @@ -442,7 +442,7 @@ void GFaceCompound::orientFillTris(std::list<MTriangle*> loopfillTris) const if (invertTris){ for (std::list<MTriangle*>::iterator it = loopfillTris.begin(); it != loopfillTris.end(); it++ ) - (*it)->revert(); + (*it)->reverse(); } fillTris.insert(fillTris.begin(),loopfillTris.begin(),loopfillTris.end()); @@ -2637,7 +2637,7 @@ void GFaceCompound::coherencePatches() const itt != mySet.end(); itt++){ if (*itt != t){ (*itt)->getEdgeInfo(me,iE2,si2); - if(si == si2) { (*itt)->revert();} + if(si == si2) { (*itt)->reverse();} touched.insert(*itt); } } @@ -2689,7 +2689,7 @@ void GFaceCompound::coherenceNormals() itt != mySet.end(); itt++){ if (*itt != t){ (*itt)->getEdgeInfo(me,iE2,si2); - if(si == si2) (*itt)->revert(); + if(si == si2) (*itt)->reverse(); touched.insert(*itt); } } diff --git a/Geo/GModel.cpp b/Geo/GModel.cpp index 15f0c3ab68cd17822c84f7a106338dfc72124d4e..a32f15eff8f011dca4c68263b2da1a02bd4ab2ef 100644 --- a/Geo/GModel.cpp +++ b/Geo/GModel.cpp @@ -688,18 +688,18 @@ int GModel::getMeshStatus(bool countDiscrete) { for(riter it = firstRegion(); it != lastRegion(); ++it) if((countDiscrete || ((*it)->geomType() != GEntity::DiscreteVolume && - (*it)->meshAttributes.Method != MESH_NONE)) && + (*it)->meshAttributes.method != MESH_NONE)) && ((*it)->tetrahedra.size() ||(*it)->hexahedra.size() || (*it)->prisms.size() || (*it)->pyramids.size() || (*it)->polyhedra.size())) return 3; for(fiter it = firstFace(); it != lastFace(); ++it) if((countDiscrete || ((*it)->geomType() != GEntity::DiscreteSurface && - (*it)->meshAttributes.Method != MESH_NONE)) && + (*it)->meshAttributes.method != MESH_NONE)) && ((*it)->triangles.size() || (*it)->quadrangles.size() || (*it)->polygons.size())) return 2; for(eiter it = firstEdge(); it != lastEdge(); ++it) if((countDiscrete || ((*it)->geomType() != GEntity::DiscreteCurve && - (*it)->meshAttributes.Method != MESH_NONE)) && + (*it)->meshAttributes.method != MESH_NONE)) && (*it)->lines.size()) return 1; for(viter it = firstVertex(); it != lastVertex(); ++it) if((*it)->mesh_vertices.size()) return 0; @@ -3063,7 +3063,7 @@ void GModel::classifyFaces(std::set<GFace*> &_faces) MVertex *v2 = (*it)->getVertex(1); if (v1 == vE || v2 == vE){ segmentsForThisDiscreteEdge.push_back(*it); - if (v2 == vE)(*it)->revert(); + if (v2 == vE) (*it)->reverse(); vE = (v1 == vE) ? v2 : v1; found = true; allSegments.erase(it); @@ -3071,7 +3071,7 @@ void GModel::classifyFaces(std::set<GFace*> &_faces) } if (v1 == vB || v2 == vB){ segmentsForThisDiscreteEdge.push_front(*it); - if (v1 == vB)(*it)->revert(); + if (v1 == vB) (*it)->reverse(); vB = (v1 == vB) ? v2 : v1; found = true; allSegments.erase(it); diff --git a/Geo/GModelIO_GEO.cpp b/Geo/GModelIO_GEO.cpp index 86b079158d4d00e2fdc4fb51ef3882577d2b9737..cb16f2cf6e897eb411423dc76337ae8dc5bb96ec 100644 --- a/Geo/GModelIO_GEO.cpp +++ b/Geo/GModelIO_GEO.cpp @@ -203,7 +203,7 @@ int GModel::importGEOInternals() f->meshAttributes.recombine = s->Recombine; f->meshAttributes.recombineAngle = s->RecombineAngle; - f->meshAttributes.Method = s->Method; + f->meshAttributes.method = s->Method; f->meshAttributes.extrude = s->Extrude; add(f); if(s->EmbeddedCurves){ diff --git a/Geo/GRegion.cpp b/Geo/GRegion.cpp index b76724a7caaa18eaf4bac82174ea56666b396b50..3eef0054cff3f7cee05d02424cc53536c13b0743 100644 --- a/Geo/GRegion.cpp +++ b/Geo/GRegion.cpp @@ -117,7 +117,7 @@ MElement *GRegion::getMeshElement(unsigned int index) void GRegion::resetMeshAttributes() { meshAttributes.recombine3D=0; - meshAttributes.Method = MESH_UNSTRUCTURED; + meshAttributes.method = MESH_UNSTRUCTURED; meshAttributes.extrude = 0; meshAttributes.QuadTri = NO_QUADTRI; } @@ -218,7 +218,7 @@ std::string GRegion::getAdditionalInfoString() sstream << "}"; } - if(meshAttributes.Method == MESH_TRANSFINITE) + if(meshAttributes.method == MESH_TRANSFINITE) sstream << " transfinite"; if(meshAttributes.extrude) sstream << " extruded"; @@ -242,7 +242,7 @@ void GRegion::writeGEO(FILE *fp) fprintf(fp, "Volume(%d) = {%d};\n", tag(), tag()); } - if(meshAttributes.Method == MESH_TRANSFINITE){ + if(meshAttributes.method == MESH_TRANSFINITE){ fprintf(fp, "Transfinite Volume {%d}", tag()); if(meshAttributes.corners.size()){ fprintf(fp, " = {"); diff --git a/Geo/GRegion.h b/Geo/GRegion.h index 06eebb3f5edbcaa3ec197db279986f3768ca9ee0..9efce926698e913d30c9fb8fe505f0a33d081738 100644 --- a/Geo/GRegion.h +++ b/Geo/GRegion.h @@ -100,7 +100,7 @@ class GRegion : public GEntity { // do we recombine the tetrahedra of the mesh into hex? int recombine3D; // is this surface meshed using a transfinite interpolation - char Method; + char method; // the extrusion parameters (if any) ExtrudeParams *extrude; // corners of the transfinite interpolation diff --git a/Geo/Geo.cpp b/Geo/Geo.cpp index 936603deb8fd73c6dbf7b1535acf27f5e727a2c7..0529281a0ce9675453147f8e6a52d45518a6ab2b 100644 --- a/Geo/Geo.cpp +++ b/Geo/Geo.cpp @@ -480,6 +480,7 @@ Curve *Create_Curve(int Num, int Typ, int Order, List_T *Liste, pC->nbPointsTransfinite = 0; pC->typeTransfinite = 0; pC->coeffTransfinite = 0.; + pC->ReverseMesh = 0; if(Typ == MSH_SEGM_SPLN) { for(int i = 0; i < 4; i++) @@ -599,6 +600,7 @@ Surface *Create_Surface(int Num, int Typ) pS->EmbeddedCurves = NULL; pS->Extrude = NULL; pS->geometry = NULL; + pS->ReverseMesh = 0; return (pS); } @@ -2489,7 +2491,7 @@ int Extrude_ProtudeSurface(int type, int is, *pv = NULL; // 'is' can be negative, to signify that the surface orientation - // should be reverted. This orientation information is only used at + // should be reversed. This orientation information is only used at // the moment when creating boundary layers if(!(ps = FindSurface(std::abs(is)))) return 0; @@ -2647,7 +2649,7 @@ int Extrude_ProtudeSurface(int type, int is, Tree_Suppress(GModel::current()->getGEOInternals()->Surfaces, &chapeau); chapeau->Num = NEWSURFACE(); - // GModel::current()->getGEOInternals()->periodicFaces[chapeau->Num] = chapeau->meshMaster; + GModel::current()->getGEOInternals()->MaxSurfaceNum = chapeau->Num; Tree_Add(GModel::current()->getGEOInternals()->Surfaces, &chapeau); diff --git a/Geo/Geo.h b/Geo/Geo.h index 77dff77e62d1a56dbe2e297cf9feeb17f329f066..d1d474d97fefbe068375f4a8cbaa79f931d30524 100644 --- a/Geo/Geo.h +++ b/Geo/Geo.h @@ -131,8 +131,8 @@ class Curve{ CircParam Circle; DrawingColor Color; gmshSurface *geometry; - int meshMaster; std::vector<int> compound; + int ReverseMesh; }; class EdgeLoop{ @@ -168,6 +168,7 @@ class Surface{ // the mesh master surface std::map<int,int> edgeCounterparts; std::vector<int> compound, compoundBoundary[4]; + int ReverseMesh; }; class SurfaceLoop{ diff --git a/Geo/MElement.cpp b/Geo/MElement.cpp index da6213b2fc07272e4e8609de8109c6732f96ffbe..6dc4adb8accd679991140a64a9f80940700d038e 100644 --- a/Geo/MElement.cpp +++ b/Geo/MElement.cpp @@ -248,7 +248,7 @@ bool MElement::setVolumePositive() { if(getDim() < 3) return true; int s = getVolumeSign(); - if(s < 0) revert(); + if(s < 0) reverse(); if(!s) return false; return true; } @@ -509,7 +509,7 @@ void MElement::xyzTouvw(fullMatrix<double> *xu) const (*xu)(1,2) = _uvw[2]; } -void MElement::movePointFromParentSpaceToElementSpace(double &u, double &v, double &w) +void MElement::movePointFromParentSpaceToElementSpace(double &u, double &v, double &w) const { if(!getParent()) return; SPoint3 p; @@ -520,7 +520,7 @@ void MElement::movePointFromParentSpaceToElementSpace(double &u, double &v, doub u = uvwE[0]; v = uvwE[1]; w = uvwE[2]; } -void MElement::movePointFromElementSpaceToParentSpace(double &u, double &v, double &w) +void MElement::movePointFromElementSpaceToParentSpace(double &u, double &v, double &w) const { if(!getParent()) return; SPoint3 p; @@ -866,7 +866,7 @@ void MElement::writeMSH2(FILE *fp, double version, bool binary, int num, fwrite(blob, sizeof(int), 4 + numTags, fp); } - if(physical < 0) revert(); + if(physical < 0) reverse(); std::vector<int> verts; getVerticesIdForMSH(verts); @@ -880,7 +880,7 @@ void MElement::writeMSH2(FILE *fp, double version, bool binary, int num, fwrite(&verts[0], sizeof(int), n, fp); } - if(physical < 0) revert(); + if(physical < 0) reverse(); } void MElement::writePOS(FILE *fp, bool printElementary, bool printElementNumber, @@ -1050,7 +1050,7 @@ void MElement::writeUNV(FILE *fp, int num, int elementary, int physical) if(type == 21 || type == 24) // linear beam or parabolic beam fprintf(fp, "%10d%10d%10d\n", 0, 0, 0); - if(physical < 0) revert(); + if(physical < 0) reverse(); for(int k = 0; k < n; k++) { fprintf(fp, "%10d", getVertexUNV(k)->getIndex()); @@ -1060,7 +1060,7 @@ void MElement::writeUNV(FILE *fp, int num, int elementary, int physical) if(n - 1 % 8 != 7) fprintf(fp, "\n"); - if(physical < 0) revert(); + if(physical < 0) reverse(); } void MElement::writeMESH(FILE *fp, int elementTagType, int elementary, diff --git a/Geo/MElement.h b/Geo/MElement.h index c5123c5caae07beb922097646f8c89c253e4c901..00a48751e029cd49e3e4846904bc105c68f16e78 100644 --- a/Geo/MElement.h +++ b/Geo/MElement.h @@ -181,7 +181,12 @@ class MElement virtual double rhoShapeMeasure(); virtual double gammaShapeMeasure(){ return 0.; } virtual double etaShapeMeasure(){ return 0.; } - virtual double distoShapeMeasure(){ double jmin,jmax; scaledJacRange(jmin,jmax); return jmin; } + virtual double distoShapeMeasure() + { + double jmin, jmax; + scaledJacRange(jmin, jmax); + return jmin; + } virtual double angleShapeMeasure() { return 1.0; } virtual void scaledJacRange(double &jmin, double &jmax); @@ -201,8 +206,8 @@ class MElement // compute the barycenter in infinity norm virtual SPoint3 barycenter_infty() const; - // revert the orientation of the element - virtual void revert(){} + // reverse the orientation of the element + virtual void reverse(){} // get volume of element virtual double getVolume(); @@ -240,12 +245,13 @@ class MElement int order=-1) const; virtual void getHessShapeFunctions(double u, double v, double w, double s[][3][3], int order=-1) const; - virtual void getThirdDerivativeShapeFunctions(double u, double v, double w, double s[][3][3][3], - int order=-1) const; + virtual void getThirdDerivativeShapeFunctions(double u, double v, double w, + double s[][3][3][3], int order=-1) const; // return the Jacobian of the element evaluated at point (u,v,w) in // parametric coordinates virtual double getJacobian(const fullMatrix<double> &gsf, double jac[3][3]) const; - // To be compatible with _vgrads of functionSpace without having to put under fullMatrix form + // To be compatible with _vgrads of functionSpace without having to put under + // fullMatrix form virtual double getJacobian(const std::vector<SVector3> &gsf, double jac[3][3])const ; virtual double getJacobian(double u, double v, double w, double jac[3][3]) const; inline double getJacobian(double u, double v, double w, fullMatrix<double> &j) const{ @@ -273,7 +279,8 @@ class MElement // get the point in cartesian coordinates corresponding to the point // (u,v,w) in parametric coordinates virtual void pnt(double u, double v, double w, SPoint3 &p) const; - virtual void pnt(const std::vector<double> &sf,SPoint3 &p) const; // To be compatible with functionSpace without changing form + // To be compatible with functionSpace without changing form + virtual void pnt(const std::vector<double> &sf,SPoint3 &p) const; virtual void primaryPnt(double u, double v, double w, SPoint3 &p); // invert the parametrisation @@ -281,8 +288,10 @@ class MElement void xyzTouvw(fullMatrix<double> *xu) const; // move point between parent and element parametric spaces - virtual void movePointFromParentSpaceToElementSpace(double &u, double &v, double &w); - virtual void movePointFromElementSpaceToParentSpace(double &u, double &v, double &w); + virtual void movePointFromParentSpaceToElementSpace(double &u, double &v, + double &w) const; + virtual void movePointFromElementSpaceToParentSpace(double &u, double &v, + double &w) const; // test if a point, given in parametric coordinates, belongs to the // element diff --git a/Geo/MElementCut.cpp b/Geo/MElementCut.cpp index 34a24a2673a87a5450d90f7140cd1c9ea22fd094..86c554ab0849139e3bc1b27c97a23f43c2346abd 100644 --- a/Geo/MElementCut.cpp +++ b/Geo/MElementCut.cpp @@ -27,7 +27,7 @@ void MPolyhedron::_init() for(unsigned int i = 0; i < _parts.size(); i++) { if(_parts[i]->getVolume() * _parts[0]->getVolume() < 0.) - _parts[i]->revert(); + _parts[i]->reverse(); for(int j = 0; j < 4; j++) { int k; for(k = _faces.size() - 1; k >= 0; k--) @@ -167,7 +167,7 @@ void MPolygon::_initVertices() else n = _parts[0]->getFace(0).normal(); for(unsigned int i = 0; i < _parts.size(); i++) { SVector3 ni = _parts[i]->getFace(0).normal(); - if(dot(n, ni) < 0.) _parts[i]->revert(); + if(dot(n, ni) < 0.) _parts[i]->reverse(); } // select only outer edges in vector edg std::vector<MEdge> edg; diff --git a/Geo/MElementCut.h b/Geo/MElementCut.h index b8be8f6138b3c2a77bf1ef11d2e4361c2277807a..ba3206ebfc66be5256bb870ae0a7d756e4853d6d 100644 --- a/Geo/MElementCut.h +++ b/Geo/MElementCut.h @@ -104,10 +104,10 @@ class MPolyhedron : public MElement { } virtual int getType() const { return TYPE_POLYH; } virtual int getTypeForMSH() const { return MSH_POLYH_; } - virtual void revert() + virtual void reverse() { for(unsigned int i = 0; i < _parts.size(); i++) - _parts[i]->revert(); + _parts[i]->reverse(); _vertices.clear(); _innerVertices.clear(); _edges.clear(); @@ -257,10 +257,10 @@ class MPolygon : public MElement { } virtual int getType() const { return TYPE_POLYG; } virtual int getTypeForMSH() const { return MSH_POLYG_; } - virtual void revert() + virtual void reverse() { for(unsigned int i = 0; i < _parts.size(); i++) - _parts[i]->revert(); + _parts[i]->reverse(); _vertices.clear(); _innerVertices.clear(); _edges.clear(); diff --git a/Geo/MHexahedron.h b/Geo/MHexahedron.h index ef433ca04e2467b159ba63c872416d14086063fa..b4eaa7afe194e1a2e93f01177de5fdc7f959be7f 100644 --- a/Geo/MHexahedron.h +++ b/Geo/MHexahedron.h @@ -57,7 +57,7 @@ class MHexahedron : public MElement { virtual int getDim() const { return 3; } virtual int getNumVertices() const { return 8; } virtual MVertex *getVertex(int num){ return _v[num]; } - virtual const MVertex *getVertex(int num) const { return _v[num]; } + virtual const MVertex *getVertex(int num) const { return _v[num]; } virtual void setVertex(int num, MVertex *v){ _v[num] = v; } virtual const nodalBasis* getFunctionSpace(int o=-1) const; virtual const JacobianBasis* getJacobianFuncSpace(int o=-1) const; @@ -121,7 +121,7 @@ class MHexahedron : public MElement { virtual const char *getStringForBDF() const { return "CHEXA"; } virtual const char *getStringForDIFF() const { return "ElmB8n3D"; } virtual const char *getStringForINP() const { return "C3D8"; } - virtual void revert() + virtual void reverse() { MVertex *tmp; tmp = _v[0]; _v[0] = _v[2]; _v[2] = tmp; @@ -229,7 +229,7 @@ class MHexahedron20 : public MHexahedron { virtual int getPolynomialOrder() const { return 2; } virtual int getNumVertices() const { return 20; } virtual MVertex *getVertex(int num){ return num < 8 ? _v[num] : _vs[num - 8]; } - virtual const MVertex *getVertex(int num) const { return num < 8 ? _v[num] : _vs[num - 8]; } + virtual const MVertex *getVertex(int num) const { return num < 8 ? _v[num] : _vs[num - 8]; } virtual MVertex *getVertexUNV(int num) { static const int map[20] = {0, 8, 1, 11, 2, 13, 3, 9, 10, 12, @@ -313,7 +313,7 @@ class MHexahedron20 : public MHexahedron { virtual const char *getStringForBDF() const { return "CHEXA"; } virtual const char *getStringForINP() const { return "C3D20"; } virtual const char *getStringForDIFF() const { return "ElmB20n3D"; } - virtual void revert() + virtual void reverse() { MVertex *tmp; tmp = _v[0]; _v[0] = _v[2]; _v[2] = tmp; @@ -454,7 +454,7 @@ class MHexahedron27 : public MHexahedron { virtual int getTypeForMSH() const { return MSH_HEX_27; } virtual const char *getStringForPOS() const { return "SH2"; } virtual const char *getStringForDIFF() const { return "ElmB27n3D"; } - virtual void revert() + virtual void reverse() { MVertex *tmp; tmp = _v[0]; _v[0] = _v[2]; _v[2] = tmp; @@ -602,9 +602,9 @@ class MHexahedronN : public MHexahedron { } virtual int getNumFacesRep(); virtual void getFaceRep(int num, double *x, double *y, double *z, SVector3 *n); - virtual void revert() + virtual void reverse() { - Msg::Error("Revert not implemented yet for MHexahedronN"); + Msg::Error("Reverse not implemented yet for MHexahedronN"); } virtual void getNode(int num, double &u, double &v, double &w) const { diff --git a/Geo/MLine.h b/Geo/MLine.h index 225c5271b9799f25465836a20c50aa5c500b6291..d4ebc09a9b6ced78d4a3ef642aa0f97144cc2b73 100644 --- a/Geo/MLine.h +++ b/Geo/MLine.h @@ -70,7 +70,7 @@ class MLine : public MElement { virtual const char *getStringForPOS() const { return "SL"; } virtual const char *getStringForBDF() const { return "CBAR"; } virtual const char *getStringForINP() const { return "T3D2"/*"C1D2"*/; } - virtual void revert() + virtual void reverse() { MVertex *tmp = _v[0]; _v[0] = _v[1]; _v[1] = tmp; } diff --git a/Geo/MPrism.h b/Geo/MPrism.h index fbdfcf78cc8be7ab4f04192766e0ef9d68df1716..618e10fb30cbd704196dd90e0dbdc9e6a9b654b7 100644 --- a/Geo/MPrism.h +++ b/Geo/MPrism.h @@ -64,7 +64,7 @@ class MPrism : public MElement { virtual int getNumVertices() const { return 6; } virtual double getInnerRadius(); virtual MVertex *getVertex(int num){ return _v[num]; } - virtual const MVertex *getVertex(int num)const{ return _v[num]; } + virtual const MVertex *getVertex(int num)const{ return _v[num]; } virtual void setVertex(int num, MVertex *v){ _v[num] = v; } virtual int getNumEdges(){ return 9; } virtual MEdge getEdge(int num) const @@ -122,7 +122,7 @@ class MPrism : public MElement { virtual const char *getStringForPOS() const { return "SI"; } virtual const char *getStringForBDF() const { return "CPENTA"; } virtual const char *getStringForINP() const { return "C3D6"; } - virtual void revert() + virtual void reverse() { MVertex *tmp; tmp = _v[0]; _v[0] = _v[1]; _v[1] = tmp; @@ -228,7 +228,7 @@ class MPrism15 : public MPrism { virtual int getPolynomialOrder() const { return 2; } virtual int getNumVertices() const { return 15; } virtual MVertex *getVertex(int num){ return num < 6 ? _v[num] : _vs[num - 6]; } - virtual const MVertex *getVertex(int num) const { return num < 6 ? _v[num] : _vs[num - 6]; } + virtual const MVertex *getVertex(int num) const { return num < 6 ? _v[num] : _vs[num - 6]; } virtual MVertex *getVertexUNV(int num) { static const int map[15] = {0, 6, 1, 9, 2, 7, 8, 10, 11, 3, 12, 4, 14, 5, 13}; @@ -298,7 +298,7 @@ class MPrism15 : public MPrism { virtual int getTypeForUNV() const { return 113; } // solid parabolic wedge virtual const char *getStringForBDF() const { return "CPENTA"; } virtual const char *getStringForINP() const { return "C3D15"; } - virtual void revert() + virtual void reverse() { MVertex *tmp; tmp = _v[0]; _v[0] = _v[1]; _v[1] = tmp; @@ -358,7 +358,7 @@ class MPrism18 : public MPrism { virtual int getPolynomialOrder() const { return 2; } virtual int getNumVertices() const { return 18; } virtual MVertex *getVertex(int num){ return num < 6 ? _v[num] : _vs[num - 6]; } - virtual const MVertex *getVertex(int num) const{ return num < 6 ? _v[num] : _vs[num - 6]; } + virtual const MVertex *getVertex(int num) const{ return num < 6 ? _v[num] : _vs[num - 6]; } virtual int getNumEdgeVertices() const { return 9; } virtual int getNumFaceVertices() const { return 3; } virtual int getNumEdgesRep(){ return 18; } @@ -422,7 +422,7 @@ class MPrism18 : public MPrism { } virtual int getTypeForMSH() const { return MSH_PRI_18; } virtual const char *getStringForPOS() const { return "SI2"; } - virtual void revert() + virtual void reverse() { MVertex *tmp; tmp = _v[0]; _v[0] = _v[1]; _v[1] = tmp; diff --git a/Geo/MPyramid.h b/Geo/MPyramid.h index 540f73fb2d65f69d5a147922e574276b2d69ddc4..465240b9088a225192ce1cbfd312cdc69c8ebc33 100644 --- a/Geo/MPyramid.h +++ b/Geo/MPyramid.h @@ -67,7 +67,7 @@ class MPyramid : public MElement { virtual int getDim() const { return 3; } virtual int getNumVertices() const { return 5; } virtual MVertex *getVertex(int num){ return _v[num]; } - virtual const MVertex *getVertex(int num) const{ return _v[num]; } + virtual const MVertex *getVertex(int num) const{ return _v[num]; } virtual void setVertex(int num, MVertex *v){ _v[num] = v; } virtual const nodalBasis* getFunctionSpace(int o=-1) const; virtual const JacobianBasis* getJacobianFuncSpace(int o=-1) const; @@ -121,7 +121,7 @@ class MPyramid : public MElement { virtual int getTypeForVTK() const { return 14; } virtual const char *getStringForPOS() const { return "SY"; } virtual const char *getStringForBDF() const { return "CPYRAM"; } - virtual void revert() + virtual void reverse() { MVertex *tmp = _v[0]; _v[0] = _v[2]; _v[2] = tmp; } @@ -308,7 +308,7 @@ class MPyramidN : public MPyramid { if(_order == 9 && _vs.size() + 5 == 385) return MSH_PYR_385; return 0; } - virtual void revert() + virtual void reverse() { /* MVertex *tmp; tmp = _v[1]; _v[1] = _v[2]; _v[2] = tmp; @@ -318,7 +318,7 @@ class MPyramidN : public MPyramid { inv[i] = _vs[reverseIndices[i + 4] - 4]; _vs = inv;*/ - Msg::Error("Revert not implemented yet for MPyramidN"); + Msg::Error("Reverse not implemented yet for MPyramidN"); } virtual void getEdgeRep(int num, double *x, double *y, double *z, SVector3 *n); diff --git a/Geo/MQuadrangle.h b/Geo/MQuadrangle.h index 8dcc7fca8f79f527be65ec19fc5e50b48b8a09e4..e6f021a23723b18ff7387baf81d1cd74697ece55 100644 --- a/Geo/MQuadrangle.h +++ b/Geo/MQuadrangle.h @@ -135,7 +135,7 @@ class MQuadrangle : public MElement { return SPoint3(0., 0., 0.); } virtual double getVolume(); - virtual void revert() + virtual void reverse() { MVertex *tmp = _v[1]; _v[1] = _v[3]; _v[3] = tmp; } @@ -237,7 +237,7 @@ class MQuadrangle8 : public MQuadrangle { virtual const char *getStringForBDF() const { return "CQUAD8"; } virtual const char *getStringForDIFF() const { return "ElmB8n2D"; } virtual const char *getStringForINP() const { return "CPS8"/*"C2D8"*/; } - virtual void revert() + virtual void reverse() { MVertex *tmp; tmp = _v[1]; _v[1] = _v[3]; _v[3] = tmp; @@ -318,7 +318,7 @@ class MQuadrangle9 : public MQuadrangle { virtual int getTypeForMSH() const { return MSH_QUA_9; } virtual const char *getStringForPOS() const { return "SQ2"; } virtual const char *getStringForDIFF() const { return "ElmB9n2D"; } - virtual void revert() + virtual void reverse() { MVertex *tmp; tmp = _v[1]; _v[1] = _v[3]; _v[3] = tmp; @@ -418,7 +418,7 @@ class MQuadrangleN : public MQuadrangle { if(_order==10 && _vs.size() + 4 == 121) return MSH_QUA_121; return 0; } - virtual void revert() + virtual void reverse() { MVertex *tmp; tmp = _v[1]; _v[1] = _v[3]; _v[3] = tmp; diff --git a/Geo/MTetrahedron.h b/Geo/MTetrahedron.h index 264a6b0bd5ca8c41a25bc1630e42daad6c59c027..367e454328c99d238507df2c0485d85e7b60e117 100644 --- a/Geo/MTetrahedron.h +++ b/Geo/MTetrahedron.h @@ -60,7 +60,7 @@ class MTetrahedron : public MElement { virtual int getDim() const { return 3; } virtual int getNumVertices() const { return 4; } virtual MVertex *getVertex(int num){ return _v[num]; } - virtual const MVertex *getVertex(int num) const { return _v[num]; } + virtual const MVertex *getVertex(int num) const { return _v[num]; } virtual void setVertex(int num, MVertex *v){ _v[num] = v; } virtual int getNumEdges(){ return 6; } virtual MEdge getEdge(int num) const @@ -106,7 +106,7 @@ class MTetrahedron : public MElement { virtual const char *getStringForBDF() const { return "CTETRA"; } virtual const char *getStringForDIFF() const { return "ElmT4n3D"; } virtual const char *getStringForINP() const { return "C3D4"; } - virtual void revert() + virtual void reverse() { MVertex *tmp = _v[0]; _v[0] = _v[1]; _v[1] = tmp; } @@ -217,7 +217,7 @@ class MTetrahedron10 : public MTetrahedron { virtual int getPolynomialOrder() const { return 2; } virtual int getNumVertices() const { return 10; } virtual MVertex *getVertex(int num){ return num < 4 ? _v[num] : _vs[num - 4]; } - virtual const MVertex *getVertex(int num) const { return num < 4 ? _v[num] : _vs[num - 4]; } + virtual const MVertex *getVertex(int num) const { return num < 4 ? _v[num] : _vs[num - 4]; } virtual MVertex *getVertexUNV(int num) { static const int map[10] = {0, 4, 1, 5, 2, 6, 7, 9, 8, 3}; @@ -262,7 +262,7 @@ class MTetrahedron10 : public MTetrahedron { virtual const char *getStringForBDF() const { return "CTETRA"; } virtual const char *getStringForDIFF() const { return "ElmT10n3D"; } virtual const char *getStringForINP() const { return "C3D10"; } - virtual void revert() + virtual void reverse() { MVertex *tmp; tmp = _v[0] ; _v[0] = _v[1]; _v[1] = tmp; @@ -332,7 +332,7 @@ class MTetrahedronN : public MTetrahedron { virtual int getPolynomialOrder() const { return _order; } virtual int getNumVertices() const { return 4 + _vs.size(); } virtual MVertex *getVertex(int num){ return num < 4 ? _v[num] : _vs[num - 4]; } - virtual const MVertex *getVertex(int num) const{ return num < 4 ? _v[num] : _vs[num - 4]; } + virtual const MVertex *getVertex(int num) const{ return num < 4 ? _v[num] : _vs[num - 4]; } virtual int getNumEdgeVertices() const { return 6 * (_order - 1); } virtual int getNumFaceVertices() const { @@ -385,7 +385,7 @@ class MTetrahedronN : public MTetrahedron { if(_order == 10 && _vs.size() + 4 == 286) return MSH_TET_286; return 0; } - virtual void revert() + virtual void reverse() { MVertex *tmp; tmp = _v[1]; _v[1] = _v[2]; _v[2] = tmp; diff --git a/Geo/MTriangle.h b/Geo/MTriangle.h index 98ab2435fef07b218a00df45172a8ca3e95b9606..eaab6370c4cd3b555b3e12b267759711c6cf3c35 100644 --- a/Geo/MTriangle.h +++ b/Geo/MTriangle.h @@ -120,7 +120,7 @@ class MTriangle : public MElement { virtual const char *getStringForBDF() const { return "CTRIA3"; } virtual const char *getStringForDIFF() const { return "ElmT3n2D"; } virtual const char *getStringForINP() const { return "CPS3"/*"STRI3"*//*"C2D3"*/; } - virtual void revert() + virtual void reverse() { MVertex *tmp = _v[1]; _v[1] = _v[2]; _v[2] = tmp; } @@ -227,7 +227,7 @@ class MTriangle6 : public MTriangle { virtual const char *getStringForBDF() const { return "CTRIA6"; } virtual const char *getStringForDIFF() const { return "ElmT6n2D"; } virtual const char *getStringForINP() const { return "CPS6"/*"STRI65"*//*"C2D6"*/; } - virtual void revert() + virtual void reverse() { MVertex *tmp; tmp = _v[1]; _v[1] = _v[2]; _v[2] = tmp; @@ -334,7 +334,7 @@ class MTriangleN : public MTriangle { if(_order ==10 && _vs.size() == 63) return MSH_TRI_66; return 0; } - virtual void revert() + virtual void reverse() { MVertex *tmp; tmp = _v[1]; _v[1] = _v[2]; _v[2] = tmp; diff --git a/Geo/OCCFace.cpp b/Geo/OCCFace.cpp index 1023a145196f9809f058ab8a48bdf2b36623c749..ebe176dd468c66e5ae1445d6349a2350f4ca8a49 100644 --- a/Geo/OCCFace.cpp +++ b/Geo/OCCFace.cpp @@ -373,7 +373,7 @@ bool OCCFace::buildSTLTriangulation(bool force) stl_vertices.push_back(SPoint2(p.X(), p.Y())); } - bool revert = false; + bool reverse = false; for(int i = 1; i <= triangulation->NbTriangles(); i++){ Poly_Triangle triangle = (triangulation->Triangles())(i); int p1, p2, p3; @@ -397,12 +397,12 @@ bool OCCFace::buildSTLTriangulation(bool force) sp3.x(), sp3.y(), sp3.z(), n); SVector3 ne(n[0], n[1], n[2]); if(dot(ne, nf) < 0){ - Msg::Debug("Reverting orientation of STL mesh in face %d", tag()); - revert = true; + Msg::Debug("Reversing orientation of STL mesh in face %d", tag()); + reverse = true; } } - if(!revert){ + if(!reverse){ stl_triangles.push_back(p1 - 1); stl_triangles.push_back(p2 - 1); stl_triangles.push_back(p3 - 1); diff --git a/Geo/gmshEdge.cpp b/Geo/gmshEdge.cpp index 4dc345cafb044b842fd070e448398f976ba0f51b..806bc2341f83f7d1697b2f4dea96cfe63aa6feef 100644 --- a/Geo/gmshEdge.cpp +++ b/Geo/gmshEdge.cpp @@ -21,11 +21,12 @@ gmshEdge::gmshEdge(GModel *m, Curve *edge, GVertex *v1, GVertex *v2) void gmshEdge::resetMeshAttributes() { - meshAttributes.Method = c->Method; + meshAttributes.method = c->Method; meshAttributes.nbPointsTransfinite = c->nbPointsTransfinite; meshAttributes.typeTransfinite = c->typeTransfinite; meshAttributes.coeffTransfinite = c->coeffTransfinite; meshAttributes.extrude = c->Extrude; + meshAttributes.reverseMesh = c->ReverseMesh; } Range<double> gmshEdge::parBounds(int i) const @@ -388,7 +389,7 @@ void gmshEdge::writeGEO(FILE *fp) } fprintf(fp, "};\n"); - if(meshAttributes.Method == MESH_TRANSFINITE){ + if(meshAttributes.method == MESH_TRANSFINITE){ fprintf(fp, "Transfinite Line {%d} = %d", tag() * (meshAttributes.typeTransfinite > 0 ? 1 : -1), meshAttributes.nbPointsTransfinite); @@ -401,4 +402,7 @@ void gmshEdge::writeGEO(FILE *fp) } fprintf(fp, ";\n"); } + + if(meshAttributes.reverseMesh) + fprintf(fp, "Reverse Line {%d};\n", tag()); } diff --git a/Geo/gmshFace.cpp b/Geo/gmshFace.cpp index c4a0e2982df549160a276fa1d10886bdfd00dcb0..3020ca87d9129a469872247b7223e35dcdfb4dcd 100644 --- a/Geo/gmshFace.cpp +++ b/Geo/gmshFace.cpp @@ -120,9 +120,9 @@ void gmshFace::resetMeshAttributes() { meshAttributes.recombine = s->Recombine; meshAttributes.recombineAngle = s->RecombineAngle; - meshAttributes.Method = s->Method; + meshAttributes.method = s->Method; meshAttributes.extrude = s->Extrude; - if(meshAttributes.Method == MESH_TRANSFINITE){ + if(meshAttributes.method == MESH_TRANSFINITE){ meshAttributes.transfiniteArrangement = s->Recombine_Dir; meshAttributes.transfiniteSmoothing = s->TransfiniteSmoothing; meshAttributes.corners.clear(); @@ -136,6 +136,7 @@ void gmshFace::resetMeshAttributes() Msg::Error("Unknown vertex %d in transfinite attributes", corn->Num); } } + meshAttributes.reverseMesh = s->ReverseMesh; } Range<double> gmshFace::parBounds(int i) const diff --git a/Geo/gmshRegion.cpp b/Geo/gmshRegion.cpp index fcec42f11be6a8aebe08b96dd90959cfbcdc8ed7..7834a369baed69621ccb2aefdeabfa21d67f84a5 100644 --- a/Geo/gmshRegion.cpp +++ b/Geo/gmshRegion.cpp @@ -44,10 +44,10 @@ gmshRegion::gmshRegion(GModel *m, ::Volume *volume) void gmshRegion::resetMeshAttributes() { meshAttributes.recombine3D = v->Recombine3D; - meshAttributes.Method = v->Method; + meshAttributes.method = v->Method; meshAttributes.QuadTri = v->QuadTri; meshAttributes.extrude = v->Extrude; - if(meshAttributes.Method == MESH_TRANSFINITE){ + if(meshAttributes.method == MESH_TRANSFINITE){ meshAttributes.corners.clear(); for(int i = 0; i < List_Nbr(v->TrsfPoints); i++){ Vertex *corn; diff --git a/Mesh/CenterlineField.cpp b/Mesh/CenterlineField.cpp index c0c3cb5c2c2f095ff4c1b687bea48221659f8d1c..aa8ec31257bfa0fb2f5b020c5c2b89c762d95bd4 100644 --- a/Mesh/CenterlineField.cpp +++ b/Mesh/CenterlineField.cpp @@ -638,7 +638,7 @@ void Centerline::createSplitCompounds() Msg::Info("Create Compound Line (%d) = %d discrete edge", num_gec, pe->tag()); /* GEdge *gec = */ current->addCompoundEdge(e_compound,num_gec); - //gec->meshAttributes.Method = MESH_TRANSFINITE; + //gec->meshAttributes.method = MESH_TRANSFINITE; //gec->meshAttributes.nbPointsTransfinite = nbPoints; } @@ -801,7 +801,7 @@ void Centerline::extrudeBoundaryLayerWall(GEdge* gin, std::vector<GEdge*> boundE eRegionSec->addPhysicalEntity(10); //tag 10 current->setPhysicalName("wallVolume", 3, 10);//dim 3 tag 10 } - //end double extrusion + //end double extrusion for (unsigned int j = 2; j < extrudedE.size(); j++){ GFace *elFace = (GFace*) extrudedE[j]; @@ -1259,7 +1259,7 @@ void Centerline::computeCrossField(double x,double y,double z, // m2 = Frame_field::findCross(x,y,z); // else // m2 = Frame_field::search(x,y,z); - + } void Centerline::printSplit() const diff --git a/Mesh/Generator.cpp b/Mesh/Generator.cpp index 0284ad13657e2b6a223f939c2c0e78af5443ce6b..93087bd9cd21654fc7e75a25a9f67770bab3125b 100644 --- a/Mesh/Generator.cpp +++ b/Mesh/Generator.cpp @@ -704,7 +704,10 @@ void GenerateMesh(GModel *m, int ask) Mesh3D(m); } - // Orient the surface mesh so that it matches the geometry + // Orient the line and surface meshes so that they match the orientation of + // the geometrical entities and/or the user orientation constraints + if(m->getMeshStatus() >= 1) + std::for_each(m->firstEdge(), m->lastEdge(), orientMeshGEdge()); if(m->getMeshStatus() >= 2) std::for_each(m->firstFace(), m->lastFace(), orientMeshGFace()); diff --git a/Mesh/QuadTriExtruded2D.cpp b/Mesh/QuadTriExtruded2D.cpp index ae76ee3eddf637f545a5d4ad3fff85248cbc3008..49516fe90c6e28b082b67c6d98d4c56ba12345a1 100644 --- a/Mesh/QuadTriExtruded2D.cpp +++ b/Mesh/QuadTriExtruded2D.cpp @@ -150,7 +150,7 @@ int IsValidQuadToTriLateral(GFace *face, int *tri_quad_flag, bool *detectQuadToT adj_ep = adj_region->meshAttributes.extrude; // if Neighbor is Transfinite, go with the default, non-QuadTri recombine for this surface - if( adj_region && adj_region->meshAttributes.Method == MESH_TRANSFINITE ) + if( adj_region && adj_region->meshAttributes.method == MESH_TRANSFINITE ) (*tri_quad_flag) = 0; // if a neighbor // has no extrusion structure, @@ -556,7 +556,7 @@ int MeshQuadToTriTopSurface( GFace *from, GFace *to, std::set<MVertex*, bool struct_root = false; if( root_source && ( (ep_src && ep_src->mesh.ExtrudeMesh && ep_src->geo.Mode == EXTRUDED_ENTITY) || - root_source->meshAttributes.Method == MESH_TRANSFINITE ) ) + root_source->meshAttributes.method == MESH_TRANSFINITE ) ) struct_root = true; if( !struct_root && MeshQuadToTriTopUnstructured(from, to, pos) ) diff --git a/Mesh/QuadTriExtruded3D.cpp b/Mesh/QuadTriExtruded3D.cpp index fe4c48ec2143ab9a8f27738b438db477da12c5e0..079b83291ed40a73418a30349681c8ae20c9bfc7 100644 --- a/Mesh/QuadTriExtruded3D.cpp +++ b/Mesh/QuadTriExtruded3D.cpp @@ -2467,7 +2467,7 @@ static bool QuadToTriGetRegionDiags(GRegion *gr, face_ep_tmp->geo.Mode == EXTRUDED_ENTITY ) || (other_region && oth_ep && oth_ep->mesh.ExtrudeMesh && (*it) == model->getFaceByTag( std::abs( oth_ep->geo.Source ) ) ) || - (other_region && other_region->meshAttributes.Method == MESH_TRANSFINITE) ){ + (other_region && other_region->meshAttributes.method == MESH_TRANSFINITE) ){ is_fixed = true; } @@ -5654,16 +5654,16 @@ bool QuadToTriCreateElements(GRegion *to, CategorizedSourceElements &cat_src_el // *** KEEP THIS COMMENTED OUT UNLESS IT IS NEEDED *** /*for( int i = 0; i < to->tetrahedra.size(); i++ ){ if( to->tetrahedra[i]->getVolumeSign() > 0 ) - to->tetrahedra[i]->revert(); + to->tetrahedra[i]->reverse(); } for( int i = 0; i < to->prisms.size(); i++ ){ if( to->prisms[i]->getVolumeSign() > 0 ) - to->prisms[i]->revert(); + to->prisms[i]->reverse(); } for( int i = 0; i < to->pyramids.size(); i++ ){ if( to->pyramids[i]->getVolumeSign() > 0 ) - to->pyramids[i]->revert(); + to->pyramids[i]->reverse(); } */ diff --git a/Mesh/QuadTriTransfinite3D.cpp b/Mesh/QuadTriTransfinite3D.cpp index b27a2216225c32e6e87bf97b6416bddcb6ae6592..856f90347116ce5cd6da43c959b6045f03f5d6cc 100644 --- a/Mesh/QuadTriTransfinite3D.cpp +++ b/Mesh/QuadTriTransfinite3D.cpp @@ -93,7 +93,7 @@ int getTransfiniteBoundaryDiags( GRegion *gr, std::set< std::pair<MVertex*, // Perform some tests of the Transfinite volume // Is the region Transfinite? - if( gr->meshAttributes.Method != MESH_TRANSFINITE ){ + if( gr->meshAttributes.method != MESH_TRANSFINITE ){ Msg::Error( "In getTransfiniteBoundaryDiags(), region %d was not detected " "to be a transfinite volume", gr->tag() ); return 0; @@ -109,7 +109,7 @@ int getTransfiniteBoundaryDiags( GRegion *gr, std::set< std::pair<MVertex*, // Are all the faces Transfinite? std::list<GFace*>::iterator itf; for( itf = faces.begin(); itf != faces.end(); itf++ ){ - if( (*itf)->meshAttributes.Method != MESH_TRANSFINITE ){ + if( (*itf)->meshAttributes.method != MESH_TRANSFINITE ){ Msg::Error( "In getTransfiniteBoundaryDiags(), surface %d was not detected " "to be transfinite", (*itf)->tag() ); return 0; diff --git a/Mesh/meshGEdge.cpp b/Mesh/meshGEdge.cpp index 21e4d1241029e7a964013318ff847932d570cb6a..00a719728d8953339bb6a3c2ea8865a6ded422c8 100644 --- a/Mesh/meshGEdge.cpp +++ b/Mesh/meshGEdge.cpp @@ -311,7 +311,7 @@ void meshGEdge::operator() (GEdge *ge) if(ge->geomType() == GEntity::DiscreteCurve) return; if(ge->geomType() == GEntity::BoundaryLayerCurve) return; - if(ge->meshAttributes.Method == MESH_NONE) return; + if(ge->meshAttributes.method == MESH_NONE) return; if(CTX::instance()->mesh.meshOnlyVisible && !ge->getVisibility()) return; // look if we are doing the STL triangulation @@ -366,7 +366,7 @@ void meshGEdge::operator() (GEdge *ge) a = 0.; N = 1; } - else if(ge->meshAttributes.Method == MESH_TRANSFINITE){ + else if(ge->meshAttributes.method == MESH_TRANSFINITE){ a = Integration(ge, t_begin, t_end, F_Transfinite, Points, CTX::instance()->mesh.lcIntegrationPrecision); N = ge->meshAttributes.nbPointsTransfinite; @@ -394,7 +394,7 @@ void meshGEdge::operator() (GEdge *ge) } // force odd number of points if blossom is used for recombination - if(ge->meshAttributes.Method != MESH_TRANSFINITE && + if(ge->meshAttributes.method != MESH_TRANSFINITE && CTX::instance()->mesh.algoRecombine == 1 && N % 2 == 0){ if(/* 1 ||*/ CTX::instance()->mesh.recombineAll){ N++; @@ -478,3 +478,11 @@ void meshGEdge::operator() (GEdge *ge) ge->meshStatistics.status = GEdge::DONE; } + +void orientMeshGEdge::operator()(GEdge *ge) +{ + // apply user-specified mesh orientation constraints + if(ge->meshAttributes.reverseMesh) + for(unsigned int k = 0; k < ge->getNumMeshElements(); k++) + ge->getMeshElement(k)->reverse(); +} diff --git a/Mesh/meshGEdge.h b/Mesh/meshGEdge.h index f079d11d4aff46db171ff6f4c68676fb13793088..d482a500f01b1c89cd81d05dab943a4fd91d26e5 100644 --- a/Mesh/meshGEdge.h +++ b/Mesh/meshGEdge.h @@ -22,6 +22,13 @@ class deMeshGEdge { void operator () (GEdge *); }; +// Orient the mesh of an edge. This is necessary to comply with the orientation +// constraints +class orientMeshGEdge { + public : + void operator()(GEdge *); +}; + int MeshExtrudedCurve(GEdge *ge); #endif diff --git a/Mesh/meshGFace.cpp b/Mesh/meshGFace.cpp index d78d6013aabd66ccfd0059de2352de8a5a16f28d..91ed501fe14235093c4c9bc4843a194f90c8c034 100644 --- a/Mesh/meshGFace.cpp +++ b/Mesh/meshGFace.cpp @@ -2070,7 +2070,7 @@ void meshGFace::operator() (GFace *gf, bool print) if(gf->geomType() == GEntity::DiscreteSurface) return; if(gf->geomType() == GEntity::ProjectionFace) return; - if(gf->meshAttributes.Method == MESH_NONE) return; + if(gf->meshAttributes.method == MESH_NONE) return; if(CTX::instance()->mesh.meshOnlyVisible && !gf->getVisibility()) return; // destroy the mesh if it exists @@ -2401,19 +2401,17 @@ void partitionAndRemesh(GFaceCompound *gf) void orientMeshGFace::operator()(GFace *gf) { - gf->model()->setCurrentMeshEntity(gf); - - if(gf->geomType() == GEntity::DiscreteSurface) return; + if(!gf->getNumMeshElements()) return; if(gf->geomType() == GEntity::ProjectionFace) return; - if(gf->geomType() == GEntity::BoundaryLayerSurface) return; - if(!gf->getNumMeshElements()) return; + gf->model()->setCurrentMeshEntity(gf); - //if(gf->geomType() == GEntity::CompoundSurface ) return; - //do sthg for compound face - if(gf->geomType() == GEntity::CompoundSurface ) { + if(gf->geomType() == GEntity::DiscreteSurface || + gf->geomType() == GEntity::BoundaryLayerSurface){ + // don't do anything + } + else if(gf->geomType() == GEntity::CompoundSurface){ GFaceCompound *gfc = (GFaceCompound*) gf; - std::list<GFace*> comp = gfc->getCompounds(); MTriangle *lt = (*comp.begin())->triangles[0]; SPoint2 c0 = gfc->getCoordinates(lt->getVertex(0)); @@ -2423,9 +2421,8 @@ void orientMeshGFace::operator()(GFace *gf) double p1[2] = {c1[0],c1[1]}; double p2[2] = {c2[0],c2[1]}; double normal = robustPredicates::orient2d(p0, p1, p2); - MElement *e = gfc->getMeshElement(0); - SPoint2 v1,v2,v3; + SPoint2 v1, v2, v3; reparamMeshVertexOnFace(e->getVertex(0), gf, v1, false); reparamMeshVertexOnFace(e->getVertex(1), gf, v2, false); reparamMeshVertexOnFace(e->getVertex(2), gf, v3, false); @@ -2433,79 +2430,82 @@ void orientMeshGFace::operator()(GFace *gf) SVector3 C2(v2.x(), v2.y(), 0.0); SVector3 C3(v3.x(), v3.y(), 0.0); SVector3 n1 = crossprod(C2-C1,C3-C1); - if(normal*n1.z() < 0){ - Msg::Debug("Reverting orientation of mesh in compound face %d", gf->tag()); + Msg::Debug("Reversing orientation of mesh in compound face %d", gf->tag()); for(unsigned int k = 0; k < gf->getNumMeshElements(); k++) - gfc->getMeshElement(k)->revert(); - } - return; - + gfc->getMeshElement(k)->reverse(); + } } - - - // In old versions we did not reorient transfinite surface meshes; - // we could add the following to provide backward compatibility: - // if(gf->meshAttributes.Method == MESH_TRANSFINITE) return; - - // In old versions we checked the orientation by comparing the - // orientation of a line element on the boundary w.r.t. its - // connected surface element. This is probably better than what - // follows, but - // * it failed when the 3D Delaunay changes the 1D mesh (since we - // don't recover it yet) - // * it failed with OpenCASCADE geometries, where surface orientions - // do not seem to be consistent with the orientation of the - // bounding edges - - // first, try to find an element with one vertex categorized on the - // surface and for which we have valid surface parametric - // coordinates - for(unsigned int i = 0; i < gf->getNumMeshElements(); i++){ - MElement *e = gf->getMeshElement(i); - for(int j = 0; j < e->getNumVertices(); j++){ - MVertex *v = e->getVertex(j); - SPoint2 param; - if(v->onWhat() == gf && v->getParameter(0, param[0]) && - v->getParameter(1, param[1])){ - SVector3 nf = gf->normal(param); - SVector3 ne = e->getFace(0).normal(); - if(dot(ne, nf) < 0){ - Msg::Debug("Reverting orientation of mesh in face %d", gf->tag()); - for(unsigned int k = 0; k < gf->getNumMeshElements(); k++) - gf->getMeshElement(k)->revert(); + else{ + // in old versions we checked the orientation by comparing the orientation + // of a line element on the boundary w.r.t. its connected surface + // element. This is probably better than what follows, but + // * it failed when the 3D Delaunay changes the 1D mesh (since we don't + // recover it yet) + // * it failed with OpenCASCADE geometries, where surface orientions do not + // seem to be consistent with the orientation of the bounding edges + + bool done = false; + // first, try to find an element with one vertex categorized on the + // surface and for which we have valid surface parametric + // coordinates + for(unsigned int i = 0; i < gf->getNumMeshElements(); i++){ + MElement *e = gf->getMeshElement(i); + for(int j = 0; j < e->getNumVertices(); j++){ + MVertex *v = e->getVertex(j); + SPoint2 param; + if(v->onWhat() == gf && v->getParameter(0, param[0]) && + v->getParameter(1, param[1])){ + SVector3 nf = gf->normal(param); + SVector3 ne = e->getFace(0).normal(); + if(dot(ne, nf) < 0){ + Msg::Debug("Reversing orientation of mesh in face %d", gf->tag()); + for(unsigned int k = 0; k < gf->getNumMeshElements(); k++) + gf->getMeshElement(k)->reverse(); + } + done = true; + break; } - return; } - } - } - - // if we could not find such an element, just try to evaluate the - // normal at the barycenter of an element on the surface - for(unsigned int i = 0; i < gf->getNumMeshElements(); i++){ - MElement *e = gf->getMeshElement(i); - SPoint2 param(0., 0.); - bool ok = true; - for(int j = 0; j < e->getNumVertices(); j++){ - SPoint2 p; - // FIXME: use inexact reparam because some vertices might not be - // exactly on the surface after the 3D Delaunay - bool ok = reparamMeshVertexOnFace(e->getVertex(j), gf, p, false); - if(!ok) break; - param += p; - } - if(ok){ - param *= 1. / e->getNumVertices(); - SVector3 nf = gf->normal(param); - SVector3 ne = e->getFace(0).normal(); - if(dot(ne, nf) < 0){ - Msg::Debug("Reverting 2 orientation of mesh in face %d", gf->tag()); - for(unsigned int k = 0; k < gf->getNumMeshElements(); k++) - gf->getMeshElement(k)->revert(); + if(done) break; + } + + if(!done){ + // if we could not find such an element, just try to evaluate the + // normal at the barycenter of an element on the surface + for(unsigned int i = 0; i < gf->getNumMeshElements(); i++){ + MElement *e = gf->getMeshElement(i); + SPoint2 param(0., 0.); + bool ok = true; + for(int j = 0; j < e->getNumVertices(); j++){ + SPoint2 p; + // FIXME: use inexact reparam because some vertices might not be + // exactly on the surface after the 3D Delaunay + bool ok = reparamMeshVertexOnFace(e->getVertex(j), gf, p, false); + if(!ok) break; + param += p; + } + if(ok){ + param *= 1. / e->getNumVertices(); + SVector3 nf = gf->normal(param); + SVector3 ne = e->getFace(0).normal(); + if(dot(ne, nf) < 0){ + Msg::Debug("Reversing 2 orientation of mesh in face %d", gf->tag()); + for(unsigned int k = 0; k < gf->getNumMeshElements(); k++) + gf->getMeshElement(k)->reverse(); + } + done = true; + break; + } } - return; } + + if(!done) + Msg::Warning("Could not orient mesh in face %d", gf->tag()); } - Msg::Warning("Could not orient mesh in face %d", gf->tag()); + // apply user-specified mesh orientation constraints + if(gf->meshAttributes.reverseMesh) + for(unsigned int k = 0; k < gf->getNumMeshElements(); k++) + gf->getMeshElement(k)->reverse(); } diff --git a/Mesh/meshGFace.h b/Mesh/meshGFace.h index e33a94fb5dc2aab8b180ed8eb5b44215638537f0..3eb7be382d3de41cd5a17e7787353162450cad8e 100644 --- a/Mesh/meshGFace.h +++ b/Mesh/meshGFace.h @@ -36,12 +36,12 @@ class deMeshGFace { void operator()(GFace *); }; -// Orient the mesh of a face to match the orientation of the -// underlying geometry. This is doubly useful: -// 1) some surface mesh algorithms do not respect the original -// geometrical orientation and -// 2) some volume algorithms need to change the surface mesh +// Orient the mesh of a face to match the orientation of the underlying +// geometry. This is necessary for 3 different reasons: +// 1) some surface mesh algorithms do not respect the original geometrical // orientation +// 2) some volume algorithms need to change the surface mesh orientation +// 3) users can choose to reverse the natural orientation class orientMeshGFace { public : void operator()(GFace *); @@ -50,11 +50,11 @@ class orientMeshGFace { void fourthPoint(double *p1, double *p2, double *p3, double *p4); void findTransfiniteCorners(GFace *gf, std::vector<MVertex*> &corners); int MeshTransfiniteSurface(GFace *gf); -int MeshExtrudedSurface(GFace *gf, std::set<std::pair<MVertex*, MVertex*> > +int MeshExtrudedSurface(GFace *gf, std::set<std::pair<MVertex*, MVertex*> > *constrainedEdges=0); void partitionAndRemesh(GFaceCompound *gf); bool checkMeshCompound(GFaceCompound *gf, std::list<GEdge*> &edges); -bool meshGenerator(GFace *gf, int RECUR_ITER, +bool meshGenerator(GFace *gf, int RECUR_ITER, bool repairSelfIntersecting1dMesh, bool onlyInitialMesh, bool debug = true, diff --git a/Mesh/meshGFaceOptimize.cpp b/Mesh/meshGFaceOptimize.cpp index 15a0bf4188305188a83566897836cd5b6750d4cb..b20d9e2797f22852ec282a308f5a169156db7901 100644 --- a/Mesh/meshGFaceOptimize.cpp +++ b/Mesh/meshGFaceOptimize.cpp @@ -231,7 +231,7 @@ void transferDataStructure(GFace *gf, std::set<MTri3*, compareTri3Ptr> &AllTris, data.Us[index1], data.Vs[index1], 0., data.Us[index2], data.Vs[index2], 0., n2); double pp; prosca(n1, n2, &pp); - if(pp < 0) t->revert(); + if(pp < 0) t->reverse(); } } @@ -242,16 +242,16 @@ void transferDataStructure(GFace *gf, std::set<MTri3*, compareTri3Ptr> &AllTris, MVertex *v[3]; for (int j=0;j<3;j++){ v[j] = t->getVertex(j); - std::map<MVertex* , MVertex*>::iterator it = data.equivalence->find(v[j]); + std::map<MVertex* , MVertex*>::iterator it = data.equivalence->find(v[j]); if (it != data.equivalence->end()){ v[j] = it->second; } } newT.push_back(new MTriangle (v[0],v[1],v[2])); delete t; - } + } gf->triangles = newT; - } + } } @@ -661,7 +661,7 @@ static bool _isItAGoodIdeaToMoveThatVertex (GFace *gf, surface_old += surfaceFaceUV(e1[j],gf,false); minq = std::min(e1[j]->etaShapeMeasure(),minq); } - + v1->setParameter(0,after.x()); v1->setParameter(1,after.y()); v1->setXYZ(pafter.x(),pafter.y(),pafter.z()); @@ -1603,8 +1603,8 @@ static int _splitFlatQuads(GFace *gf, double minQual, std::set<MEdge,Less_Edge> MVertex *v3 = e->getVertex((k+1)%4); MVertex *v2 = e->getVertex((k+2)%4); MVertex *v4 = e->getVertex((k+3)%4); - prioritory.insert(MEdge(v2,v3)); - prioritory.insert(MEdge(v3,v4)); + prioritory.insert(MEdge(v2,v3)); + prioritory.insert(MEdge(v3,v4)); SPoint2 pv1,pv2,pv3,pv4,pb1,pb2,pb3,pb4; reparamMeshEdgeOnFace (v1,v3,gf,pv1,pv3); reparamMeshEdgeOnFace (v1,v4,gf,pv1,pv4); @@ -1901,7 +1901,7 @@ struct opti_data_vertex_relocation { double f() const { - + double val = 1.0; for (unsigned int i=0;i<e.size();++i){ MElement *el = e[i]; @@ -2032,14 +2032,14 @@ static int _untangleQuad (GFace *gf, MQuadrangle *q,v2t_cont & adj) std::vector<SPoint2> before;for(int i=0;i<4;i++)before.push_back(SPoint2(U[i],V[i])); std::vector<SPoint2> after; - for(int i=0;i<4;i++) + for(int i=0;i<4;i++) if (q->getVertex(i)->onWhat()->dim() == 2) after.push_back(SPoint2(x[2*i],x[2*i+1])); else after.push_back(SPoint2(U[i],V[i])); std::vector<MVertex*> vs;for(int i=0;i<4;i++)vs.push_back(q->getVertex(i)); bool success = _isItAGoodIdeaToMoveThoseVertices (gf,lt,vs,before,after); - + if (success){ for (int i=0;i<4;i++)data.set_(x[2*i],x[2*i+1],i); // sprintf(NNN,"UNTANGLE_cavity_%d_after.pos",OPTI_NUMBER++); @@ -2264,7 +2264,7 @@ static int orientationOK (GFace *gf, MVertex *v1, MVertex *v2, MVertex *v3){ reparamMeshVertexOnFace(v2,gf, p2); reparamMeshVertexOnFace(v3,gf, p3); if (robustPredicates::orient2d (p1,p2,p3) < 0)return true; - return false; + return false; } static int allowSwap (GFace *gf, MVertex *v1, MVertex *v2, MVertex *v3, MVertex *v4){ @@ -2277,7 +2277,7 @@ static int allowSwap (GFace *gf, MVertex *v1, MVertex *v2, MVertex *v3, MVertex robustPredicates::orient2d (p1,p2,p4) < 0 && robustPredicates::orient2d (p3,p4,p1) * robustPredicates::orient2d (p3,p4,p2) > 0)return true; - return false; + return false; } static double myShapeMeasure(MElement *e){ @@ -2356,7 +2356,7 @@ int _edgeSwapQuadsForBetterQuality(GFace *gf, double eps, std::set<MEdge,Less_Ed bool PA = prioritory.find(MEdge(v11,v22)) == prioritory.end(); bool PB = prioritory.find(MEdge(v12,v21)) == prioritory.end(); - double old_surface = surfaceFaceUV(e1,gf) + surfaceFaceUV(e2,gf) ; + double old_surface = surfaceFaceUV(e1,gf) + surfaceFaceUV(e2,gf) ; double new_surface_A = surfaceFaceUV(q1A,gf) + surfaceFaceUV(q2A,gf) ; double new_surface_B = surfaceFaceUV(q1B,gf) + surfaceFaceUV(q2B,gf) ; @@ -2372,9 +2372,9 @@ int _edgeSwapQuadsForBetterQuality(GFace *gf, double eps, std::set<MEdge,Less_Ed if(!allowSwap(gf,v1,v2,v11,v22)) doA = false; if(!allowSwap(gf,v1,v2,v21,v12)) doB = false; - - if (!PA)doA = false; - if (!PB)doB = false; + + if (!PA)doA = false; + if (!PB)doB = false; if (doA && SANITY_(gf,q1A,q2A)){ @@ -2497,7 +2497,7 @@ static std::vector<MVertex*> computeBoundingPoints (const std::vector<MElement*> static MQuadrangle* buildNewQuad(MVertex *first, MVertex *newV, - MElement *e, + MElement *e, const std::vector<MElement*> & E){ int found[3] = {0,0,0}; for (unsigned int i=0;i<E.size();i++){ @@ -2527,7 +2527,7 @@ static MQuadrangle* buildNewQuad(MVertex *first, newV, e->getVertex((start+1)%3), e->getVertex((start+2)%3)); - } + } } int postProcessExtraEdges (GFace *gf, std::vector<std::pair<MElement*,MElement*> > &toProcess) @@ -3494,7 +3494,7 @@ void recombineIntoQuads(GFace *gf, optistatus[5] = (ITERB == 1) ?untangleInvalidQuads(gf,CTX::instance()->mesh.nbSmoothing) : 0; double bad = printStats (gf, "IN OPTIMIZATION"); - if (bad > .1)break; + if (bad > .1)break; if (ITER == 10){ ITERB = 1; } diff --git a/Mesh/meshGFaceTransfinite.cpp b/Mesh/meshGFaceTransfinite.cpp index 9777737090c3c64ddff9783af2acee31b2a04c98..0ed77febe7bcc68126bc404944bef17912711e0a 100644 --- a/Mesh/meshGFaceTransfinite.cpp +++ b/Mesh/meshGFaceTransfinite.cpp @@ -49,7 +49,7 @@ void findTransfiniteCorners(GFace *gf, std::vector<MVertex*> &corners) GEdgeLoop el(fedges); for(GEdgeLoop::iter it = el.begin(); it != el.end(); it++) corners.push_back(it->getBeginVertex()->mesh_vertices[0]); - + // try reaaally hard for 3-sided faces if(corners.size() == 3){ GEdge *first = 0, *last = 0; @@ -98,7 +98,7 @@ static void computeEdgeLoops(const GFace *gf, std::vector<MVertex*> &all_mvertic else for(int i = (*it)->mesh_vertices.size() - 1; i >= 0; i--) all_mvertices.push_back((*it)->mesh_vertices[i]); - + GVertex *v_start = start; while(1){ ++it; @@ -134,7 +134,7 @@ static void computeEdgeLoops(const GFace *gf, std::vector<MVertex*> &all_mvertic int MeshTransfiniteSurface(GFace *gf) { - if(gf->meshAttributes.Method != MESH_TRANSFINITE) return 0; + if(gf->meshAttributes.method != MESH_TRANSFINITE) return 0; Msg::Info("Meshing surface %d (transfinite)", gf->tag()); @@ -167,17 +167,17 @@ int MeshTransfiniteSurface(GFace *gf) // make the ordering of the list consistent with the ordering of the // first two corners (if the second found corner is not the second - // corner, just revert the list) - bool revert = false; + // corner, just reverse the list) + bool reverse = false; for(unsigned int i = 1; i < m_vertices.size(); i++){ MVertex *v = m_vertices[i]; - if(v == corners[1] || v == corners[2] || + if(v == corners[1] || v == corners[2] || (corners.size() == 4 && v == corners[3])){ - if(v != corners[1]) revert = true; + if(v != corners[1]) reverse = true; break; } } - if(revert){ + if(reverse){ std::vector <MVertex *> tmp; tmp.push_back(m_vertices[0]); for(int i = m_vertices.size() - 1; i > 0; i--) @@ -191,9 +191,9 @@ int MeshTransfiniteSurface(GFace *gf) std::vector<double> U, V; for(unsigned int i = 0; i < m_vertices.size(); i++){ MVertex *v = m_vertices[i]; - if(v == corners[0] || v == corners[1] || v == corners[2] || + if(v == corners[0] || v == corners[1] || v == corners[2] || (corners.size() == 4 && v == corners[3])){ - N[iCorner++] = i; + N[iCorner++] = i; if(iCorner > 4){ Msg::Error("Surface %d transfinite parameters are incoherent", gf->tag()); return 0; @@ -210,20 +210,20 @@ int MeshTransfiniteSurface(GFace *gf) if(corners.size () == 4){ int Lb = N4 - N3, Hb = m_vertices.size() - N4; if(Lb != L || Hb != H){ - Msg::Error("Surface %d cannot be meshed using the transfinite algo", + Msg::Error("Surface %d cannot be meshed using the transfinite algo", gf->tag()); return 0; } } else{ - int Lb = m_vertices.size() - N3; + int Lb = m_vertices.size() - N3; if(Lb != L){ - Msg::Error("Surface %d cannot be meshed using the transfinite algo %d != %d", + Msg::Error("Surface %d cannot be meshed using the transfinite algo %d != %d", gf->tag(), L, Lb); return 0; - } + } } - + std::vector<double> lengths_i, lengths_j; double L_i = 0, L_j = 0; lengths_i.push_back(0.); @@ -274,7 +274,7 @@ int MeshTransfiniteSurface(GFace *gf) tab[L][0] = m_vertices[L]; tab[L][H] = m_vertices[L+H]; // degenerated, only necessary for transfinite volume algo - tab[0][H] = m_vertices[0]; + tab[0][H] = m_vertices[0]; for (int i = 1; i < L; i++){ tab[i][0] = m_vertices[i]; tab[i][H] = m_vertices[2*L+H-i]; @@ -295,14 +295,14 @@ int MeshTransfiniteSurface(GFace *gf) double VC4 = V[N4]; for(int i = 1; i < L; i++){ double u = lengths_i[i] / L_i; - for(int j = 1; j < H; j++){ + for(int j = 1; j < H; j++){ double v = lengths_j[j] / L_j; int iP1 = N1 + i; int iP2 = N2 + j; int iP3 = N4 - i; int iP4 = (N4 + (N3 - N2) - j) % m_vertices.size(); - double Up = TRAN_QUA(U[iP1], U[iP2], U[iP3], U[iP4], UC1, UC2, UC3, UC4, u, v); - double Vp = TRAN_QUA(V[iP1], V[iP2], V[iP3], V[iP4], VC1, VC2, VC3, VC4, u, v); + double Up = TRAN_QUA(U[iP1], U[iP2], U[iP3], U[iP4], UC1, UC2, UC3, UC4, u, v); + double Vp = TRAN_QUA(V[iP1], V[iP2], V[iP3], V[iP4], VC1, VC2, VC3, VC4, u, v); GPoint gp = gf->point(SPoint2(Up, Vp)); MFaceVertex *newv = new MFaceVertex(gp.x(), gp.y(), gp.z(), gf, Up, Vp); gf->mesh_vertices.push_back(newv); @@ -313,7 +313,7 @@ int MeshTransfiniteSurface(GFace *gf) else{ for(int i = 1; i < L; i++){ double u = lengths_i[i] / L_i; - for(int j = 1; j < H; j++){ + for(int j = 1; j < H; j++){ double v = lengths_j[j] / L_j; int iP1 = N1 + i; int iP2 = N2 + j; @@ -328,17 +328,17 @@ int MeshTransfiniteSurface(GFace *gf) // coords match with the (degenerate) coordinates of the // underlying ruled surface; so instead we just interpolate // in real space - double xp = TRAN_TRI(m_vertices[iP1]->x(), m_vertices[iP2]->x(), - m_vertices[iP3]->x(), m_vertices[N1]->x(), - m_vertices[N2]->x(), m_vertices[N3]->x(), u, v); - double yp = TRAN_TRI(m_vertices[iP1]->y(), m_vertices[iP2]->y(), - m_vertices[iP3]->y(), m_vertices[N1]->y(), - m_vertices[N2]->y(), m_vertices[N3]->y(), u, v); - double zp = TRAN_TRI(m_vertices[iP1]->z(), m_vertices[iP2]->z(), - m_vertices[iP3]->z(), m_vertices[N1]->z(), - m_vertices[N2]->z(), m_vertices[N3]->z(), u, v); + double xp = TRAN_TRI(m_vertices[iP1]->x(), m_vertices[iP2]->x(), + m_vertices[iP3]->x(), m_vertices[N1]->x(), + m_vertices[N2]->x(), m_vertices[N3]->x(), u, v); + double yp = TRAN_TRI(m_vertices[iP1]->y(), m_vertices[iP2]->y(), + m_vertices[iP3]->y(), m_vertices[N1]->y(), + m_vertices[N2]->y(), m_vertices[N3]->y(), u, v); + double zp = TRAN_TRI(m_vertices[iP1]->z(), m_vertices[iP2]->z(), + m_vertices[iP3]->z(), m_vertices[N1]->z(), + m_vertices[N2]->z(), m_vertices[N3]->z(), u, v); // xp,yp,zp can be off the surface so we cannot use parFromPoint - gf->XYZtoUV(xp, yp, zp, Up, Vp, 1.0, false); + gf->XYZtoUV(xp, yp, zp, Up, Vp, 1.0, false); } GPoint gp = gf->point(SPoint2(Up, Vp)); MFaceVertex *newv = new MFaceVertex(gp.x(), gp.y(), gp.z(), gf, Up, Vp); @@ -346,7 +346,7 @@ int MeshTransfiniteSurface(GFace *gf) tab[i][j] = newv; } } - } + } // should we apply the elliptic smoother? int numSmooth = 0; @@ -362,7 +362,7 @@ int MeshTransfiniteSurface(GFace *gf) v[i].resize(H + 1); } for(int i = 0; i <= L; i++){ - for(int j = 0; j <= H; j++){ + for(int j = 0; j <= H; j++){ int iP1 = N1 + i; int iP2 = N2 + j; int iP3 = N4 - i; @@ -384,18 +384,18 @@ int MeshTransfiniteSurface(GFace *gf) SQU(v[i][j + 1] - v[i][j - 1])) ; double gamma = 0.25 * (SQU(u[i + 1][j] - u[i - 1][j]) + SQU(v[i + 1][j] - v[i - 1][j])); - double beta = 0.0625 * + double beta = 0.0625 * ((u[i + 1][j] - u[i - 1][j]) * (u[i][j + 1] - u[i][j - 1]) + (v[i + 1][j] - v[i - 1][j]) * (v[i][j + 1] - v[i][j - 1])); - u[i][j] = 0.5 * - (alpha * (u[i + 1][j] + u[i - 1][j]) + + u[i][j] = 0.5 * + (alpha * (u[i + 1][j] + u[i - 1][j]) + gamma * (u[i][j + 1] + u[i][j - 1]) - - 2. * beta * (u[i + 1][j + 1] - u[i - 1][j + 1] - + 2. * beta * (u[i + 1][j + 1] - u[i - 1][j + 1] - u[i + 1][j - 1] + u[i - 1][j - 1])) / (alpha + gamma); - v[i][j] = 0.5 * - (alpha * (v[i + 1][j] + v[i - 1][j]) + + v[i][j] = 0.5 * + (alpha * (v[i + 1][j] + v[i - 1][j]) + gamma * (v[i][j + 1] + v[i][j - 1]) - - 2. * beta * (v[i + 1][j + 1] - v[i - 1][j + 1] - + 2. * beta * (v[i + 1][j + 1] - v[i - 1][j + 1] - v[i + 1][j - 1] + v[i - 1][j - 1])) / (alpha + gamma); } } @@ -413,7 +413,7 @@ int MeshTransfiniteSurface(GFace *gf) } // create elements - if(corners.size() == 4){ + if(corners.size() == 4){ for(int i = 0; i < L ; i++){ for(int j = 0; j < H; j++){ MVertex *v1 = tab[i][j]; @@ -423,20 +423,20 @@ int MeshTransfiniteSurface(GFace *gf) if(CTX::instance()->mesh.recombineAll || gf->meshAttributes.recombine) gf->quadrangles.push_back(new MQuadrangle(v1, v2, v3, v4)); else if(gf->meshAttributes.transfiniteArrangement == 1 || - (gf->meshAttributes.transfiniteArrangement == 0 && + (gf->meshAttributes.transfiniteArrangement == 0 && ((i % 2 == 0 && j % 2 == 1) || (i % 2 == 1 && j % 2 == 0)))){ gf->triangles.push_back(new MTriangle(v1, v2, v3)); gf->triangles.push_back(new MTriangle(v3, v4, v1)); - } + } else{ gf->triangles.push_back(new MTriangle(v1, v2, v4)); gf->triangles.push_back(new MTriangle(v4, v2, v3)); - } + } } } } - else{ + else{ for(int j = 0; j < H; j++){ MVertex *v1 = tab[0][0]; MVertex *v2 = tab[1][j]; @@ -452,16 +452,16 @@ int MeshTransfiniteSurface(GFace *gf) if(CTX::instance()->mesh.recombineAll || gf->meshAttributes.recombine) gf->quadrangles.push_back(new MQuadrangle(v1, v2, v3, v4)); else if(gf->meshAttributes.transfiniteArrangement == 1 || - (gf->meshAttributes.transfiniteArrangement == 0 && + (gf->meshAttributes.transfiniteArrangement == 0 && ((i % 2 == 0 && j % 2 == 1) || (i % 2 == 1 && j % 2 == 0)))){ gf->triangles.push_back(new MTriangle(v1, v2, v3)); gf->triangles.push_back(new MTriangle(v3, v4, v1)); - } + } else{ gf->triangles.push_back(new MTriangle(v1, v2, v4)); gf->triangles.push_back(new MTriangle(v4, v2, v3)); - } + } } } } diff --git a/Mesh/meshGRegion.cpp b/Mesh/meshGRegion.cpp index 6e254cf5f4ef7732835888aa1a021e0e20b677e0..8faa8f434fe2a8727152c348bdb0923639c9df53 100644 --- a/Mesh/meshGRegion.cpp +++ b/Mesh/meshGRegion.cpp @@ -741,7 +741,7 @@ Ng_Mesh *buildNetgenStructure(GRegion *gr, bool importVolumeMesh, for(unsigned int i = 0; i< gr->tetrahedra.size(); i++){ MTetrahedron *t = gr->tetrahedra[i]; // netgen expects tet with negative volume - if(t->getVolumeSign() > 0) t->revert(); + if(t->getVolumeSign() > 0) t->reverse(); int tmp[4]; tmp[0] = t->getVertex(0)->getIndex(); tmp[1] = t->getVertex(1)->getIndex(); @@ -907,7 +907,7 @@ void meshNormalsPointOutOfTheRegion(GRegion *gr) if(nb_intersect % 2 == 1){ // odd nb of intersections: the normal points inside the region for(unsigned int i = 0; i < gf->triangles.size(); i++){ - gf->triangles[i]->revert(); + gf->triangles[i]->reverse(); } } ++it; @@ -929,7 +929,7 @@ void meshGRegion::operator() (GRegion *gr) gr->model()->setCurrentMeshEntity(gr); if(gr->geomType() == GEntity::DiscreteVolume) return; - if(gr->meshAttributes.Method == MESH_NONE) return; + if(gr->meshAttributes.method == MESH_NONE) return; if(CTX::instance()->mesh.meshOnlyVisible && !gr->getVisibility()) return; ExtrudeParams *ep = gr->meshAttributes.extrude; @@ -991,7 +991,7 @@ void meshGRegion::operator() (GRegion *gr) Ng_Exit(); #endif } - + } void optimizeMeshGRegionNetgen::operator() (GRegion *gr) @@ -1001,7 +1001,7 @@ void optimizeMeshGRegionNetgen::operator() (GRegion *gr) if(gr->geomType() == GEntity::DiscreteVolume) return; // don't optimize transfinite or extruded meshes - if(gr->meshAttributes.Method == MESH_TRANSFINITE) return; + if(gr->meshAttributes.method == MESH_TRANSFINITE) return; ExtrudeParams *ep = gr->meshAttributes.extrude; if(ep && ep->mesh.ExtrudeMesh && ep->geo.Mode == EXTRUDED_ENTITY) return; @@ -1030,7 +1030,7 @@ void optimizeMeshGRegionGmsh::operator() (GRegion *gr) if(gr->geomType() == GEntity::DiscreteVolume) return; // don't optimize extruded meshes - if(gr->meshAttributes.Method == MESH_TRANSFINITE) return; + if(gr->meshAttributes.method == MESH_TRANSFINITE) return; ExtrudeParams *ep = gr->meshAttributes.extrude; if(ep && ep->mesh.ExtrudeMesh && ep->geo.Mode == EXTRUDED_ENTITY) return; diff --git a/Mesh/meshGRegionTransfinite.cpp b/Mesh/meshGRegionTransfinite.cpp index 88fa8e03fcfcdf11f20f2e9b6a65eff9ef592cc4..ae11499238089cdf7869ac1ef5c82f71b350d50d 100644 --- a/Mesh/meshGRegionTransfinite.cpp +++ b/Mesh/meshGRegionTransfinite.cpp @@ -308,7 +308,7 @@ void findTransfiniteCorners(GRegion *gr, std::vector<MVertex*> &corners) int MeshTransfiniteVolume(GRegion *gr) { - if(gr->meshAttributes.Method != MESH_TRANSFINITE) return 0; + if(gr->meshAttributes.method != MESH_TRANSFINITE) return 0; Msg::Info("Meshing volume %d (transfinite)", gr->tag()); diff --git a/Parser/Gmsh.l b/Parser/Gmsh.l index e26efaade953481474124c003062758644a330c9..cdeaed5e2b641e2f932a4cc1ceb2232dac5d21df 100644 --- a/Parser/Gmsh.l +++ b/Parser/Gmsh.l @@ -194,6 +194,7 @@ Ruled return tRuled; Rand return tRand; RefineMesh return tRefineMesh; Return return tReturn; +Reverse return tReverse; Smoother return tSmoother; SetOrder return tSetOrder; diff --git a/Parser/Gmsh.tab.cpp b/Parser/Gmsh.tab.cpp index 40fac306b1554db0793756622e9ab75b81efcb73..675efa5383fce42aeea38c66337c30182c8734b9 100644 --- a/Parser/Gmsh.tab.cpp +++ b/Parser/Gmsh.tab.cpp @@ -282,62 +282,63 @@ struct doubleXstring{ tCoherence = 341, tIntersect = 342, tMeshAlgorithm = 343, - tLayers = 344, - tHole = 345, - tAlias = 346, - tAliasWithOptions = 347, - tQuadTriDbl = 348, - tQuadTriSngl = 349, - tRecombLaterals = 350, - tTransfQuadTri = 351, - tText2D = 352, - tText3D = 353, - tInterpolationScheme = 354, - tTime = 355, - tCombine = 356, - tBSpline = 357, - tBezier = 358, - tNurbs = 359, - tNurbsOrder = 360, - tNurbsKnots = 361, - tColor = 362, - tColorTable = 363, - tFor = 364, - tIn = 365, - tEndFor = 366, - tIf = 367, - tEndIf = 368, - tExit = 369, - tAbort = 370, - tField = 371, - tReturn = 372, - tCall = 373, - tFunction = 374, - tShow = 375, - tHide = 376, - tGetValue = 377, - tGetEnv = 378, - tGetString = 379, - tHomology = 380, - tCohomology = 381, - tBetti = 382, - tSetOrder = 383, - tGMSH_MAJOR_VERSION = 384, - tGMSH_MINOR_VERSION = 385, - tGMSH_PATCH_VERSION = 386, - tAFFECTDIVIDE = 387, - tAFFECTTIMES = 388, - tAFFECTMINUS = 389, - tAFFECTPLUS = 390, - tOR = 391, - tAND = 392, - tNOTEQUAL = 393, - tEQUAL = 394, - tGREATEROREQUAL = 395, - tLESSOREQUAL = 396, - UNARYPREC = 397, - tMINUSMINUS = 398, - tPLUSPLUS = 399 + tReverse = 344, + tLayers = 345, + tHole = 346, + tAlias = 347, + tAliasWithOptions = 348, + tQuadTriDbl = 349, + tQuadTriSngl = 350, + tRecombLaterals = 351, + tTransfQuadTri = 352, + tText2D = 353, + tText3D = 354, + tInterpolationScheme = 355, + tTime = 356, + tCombine = 357, + tBSpline = 358, + tBezier = 359, + tNurbs = 360, + tNurbsOrder = 361, + tNurbsKnots = 362, + tColor = 363, + tColorTable = 364, + tFor = 365, + tIn = 366, + tEndFor = 367, + tIf = 368, + tEndIf = 369, + tExit = 370, + tAbort = 371, + tField = 372, + tReturn = 373, + tCall = 374, + tFunction = 375, + tShow = 376, + tHide = 377, + tGetValue = 378, + tGetEnv = 379, + tGetString = 380, + tHomology = 381, + tCohomology = 382, + tBetti = 383, + tSetOrder = 384, + tGMSH_MAJOR_VERSION = 385, + tGMSH_MINOR_VERSION = 386, + tGMSH_PATCH_VERSION = 387, + tAFFECTDIVIDE = 388, + tAFFECTTIMES = 389, + tAFFECTMINUS = 390, + tAFFECTPLUS = 391, + tOR = 392, + tAND = 393, + tNOTEQUAL = 394, + tEQUAL = 395, + tGREATEROREQUAL = 396, + tLESSOREQUAL = 397, + UNARYPREC = 398, + tMINUSMINUS = 399, + tPLUSPLUS = 400 }; #endif @@ -361,7 +362,7 @@ typedef union YYSTYPE /* Line 214 of yacc.c */ -#line 365 "Gmsh.tab.cpp" +#line 366 "Gmsh.tab.cpp" } YYSTYPE; # define YYSTYPE_IS_TRIVIAL 1 # define yystype YYSTYPE /* obsolescent; will be withdrawn */ @@ -373,7 +374,7 @@ typedef union YYSTYPE /* Line 264 of yacc.c */ -#line 377 "Gmsh.tab.cpp" +#line 378 "Gmsh.tab.cpp" #ifdef short # undef short @@ -588,20 +589,20 @@ union yyalloc /* YYFINAL -- State number of the termination state. */ #define YYFINAL 5 /* YYLAST -- Last index in YYTABLE. */ -#define YYLAST 8044 +#define YYLAST 8168 /* YYNTOKENS -- Number of terminals. */ -#define YYNTOKENS 165 +#define YYNTOKENS 166 /* YYNNTS -- Number of nonterminals. */ -#define YYNNTS 92 +#define YYNNTS 90 /* YYNRULES -- Number of rules. */ #define YYNRULES 446 /* YYNRULES -- Number of states. */ -#define YYNSTATES 1532 +#define YYNSTATES 1537 /* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX. */ #define YYUNDEFTOK 2 -#define YYMAXUTOK 399 +#define YYMAXUTOK 400 #define YYTRANSLATE(YYX) \ ((unsigned int) (YYX) <= YYMAXUTOK ? yytranslate[YYX] : YYUNDEFTOK) @@ -612,16 +613,16 @@ static const yytype_uint8 yytranslate[] = 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 150, 2, 160, 2, 149, 2, 2, - 155, 156, 147, 145, 161, 146, 159, 148, 2, 2, + 2, 2, 2, 151, 2, 161, 2, 150, 2, 2, + 156, 157, 148, 146, 162, 147, 160, 149, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 141, 2, 142, 136, 2, 2, 2, 2, 2, 2, + 142, 2, 143, 137, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 157, 2, 158, 154, 2, 2, 2, 2, 2, + 2, 158, 2, 159, 155, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 162, 2, 163, 164, 2, 2, 2, + 2, 2, 2, 163, 2, 164, 165, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, @@ -648,7 +649,8 @@ static const yytype_uint8 yytranslate[] = 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, - 135, 137, 138, 139, 140, 143, 144, 151, 152, 153 + 135, 136, 138, 139, 140, 141, 144, 145, 152, 153, + 154 }; #if YYDEBUG @@ -658,356 +660,357 @@ static const yytype_uint16 yyprhs[] = { 0, 0, 3, 5, 8, 9, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, - 40, 42, 44, 46, 48, 51, 57, 63, 71, 79, - 87, 97, 104, 111, 118, 119, 122, 125, 128, 131, - 134, 136, 140, 142, 146, 147, 148, 159, 161, 165, - 166, 180, 182, 186, 187, 203, 212, 227, 228, 235, - 237, 239, 241, 243, 245, 247, 249, 255, 260, 267, - 275, 283, 293, 303, 307, 314, 319, 326, 336, 343, - 353, 359, 368, 377, 389, 396, 406, 412, 420, 430, - 440, 452, 460, 470, 480, 481, 483, 484, 488, 494, - 495, 505, 511, 512, 522, 526, 532, 533, 536, 540, - 546, 550, 551, 554, 558, 562, 568, 570, 572, 573, - 579, 580, 583, 591, 592, 602, 609, 617, 622, 630, - 639, 648, 656, 664, 676, 685, 694, 695, 705, 714, - 724, 728, 733, 744, 752, 760, 769, 778, 791, 792, - 802, 811, 819, 828, 829, 839, 845, 857, 863, 873, - 883, 888, 898, 908, 910, 912, 913, 916, 923, 930, - 937, 944, 953, 964, 979, 996, 1009, 1018, 1027, 1034, - 1049, 1054, 1061, 1068, 1072, 1077, 1083, 1087, 1091, 1096, - 1101, 1105, 1113, 1121, 1125, 1133, 1137, 1140, 1143, 1146, - 1149, 1165, 1168, 1171, 1174, 1177, 1181, 1188, 1197, 1206, - 1217, 1219, 1222, 1224, 1228, 1233, 1235, 1241, 1253, 1267, - 1268, 1276, 1277, 1291, 1292, 1308, 1309, 1316, 1325, 1334, - 1343, 1356, 1369, 1382, 1397, 1412, 1427, 1428, 1441, 1442, - 1455, 1456, 1469, 1470, 1487, 1488, 1505, 1506, 1523, 1524, - 1543, 1544, 1563, 1564, 1583, 1585, 1588, 1594, 1602, 1612, - 1615, 1618, 1622, 1625, 1629, 1639, 1646, 1647, 1651, 1652, - 1654, 1655, 1658, 1659, 1662, 1670, 1677, 1686, 1692, 1696, - 1704, 1710, 1715, 1722, 1729, 1742, 1753, 1764, 1775, 1786, - 1789, 1793, 1800, 1802, 1804, 1806, 1809, 1815, 1823, 1834, - 1836, 1840, 1843, 1846, 1849, 1853, 1857, 1861, 1865, 1869, - 1873, 1877, 1881, 1885, 1889, 1893, 1897, 1901, 1905, 1911, - 1916, 1921, 1926, 1931, 1936, 1941, 1946, 1951, 1956, 1961, - 1968, 1973, 1978, 1983, 1988, 1993, 1998, 2005, 2012, 2019, - 2024, 2029, 2034, 2039, 2044, 2049, 2054, 2059, 2064, 2069, - 2074, 2081, 2086, 2091, 2096, 2101, 2106, 2111, 2118, 2125, - 2132, 2137, 2139, 2141, 2143, 2145, 2147, 2149, 2151, 2153, - 2159, 2164, 2169, 2172, 2178, 2182, 2189, 2194, 2202, 2209, - 2216, 2221, 2223, 2226, 2229, 2233, 2237, 2249, 2259, 2267, - 2275, 2277, 2281, 2283, 2285, 2288, 2292, 2297, 2303, 2305, - 2307, 2310, 2314, 2318, 2324, 2329, 2332, 2335, 2338, 2341, - 2347, 2353, 2359, 2365, 2367, 2369, 2373, 2377, 2382, 2389, - 2396, 2398, 2400, 2404, 2408, 2418, 2426, 2428, 2434, 2438, - 2445, 2447, 2451, 2453, 2455, 2459, 2466, 2468, 2470, 2475, - 2482, 2489, 2494, 2499, 2504, 2511, 2513 + 40, 42, 44, 47, 53, 59, 67, 75, 83, 93, + 100, 107, 114, 115, 118, 121, 124, 127, 130, 132, + 136, 138, 142, 143, 144, 155, 157, 161, 162, 176, + 178, 182, 183, 199, 208, 223, 224, 231, 233, 235, + 237, 239, 241, 243, 245, 251, 256, 263, 271, 279, + 289, 299, 303, 310, 315, 322, 332, 339, 349, 355, + 364, 373, 385, 392, 402, 408, 416, 426, 436, 448, + 456, 466, 476, 477, 479, 480, 484, 490, 491, 501, + 507, 508, 518, 522, 528, 529, 532, 536, 542, 546, + 547, 550, 554, 558, 564, 566, 568, 569, 575, 576, + 579, 587, 588, 598, 605, 613, 618, 626, 635, 644, + 652, 660, 672, 681, 690, 691, 701, 710, 720, 724, + 729, 740, 748, 756, 765, 774, 787, 788, 798, 807, + 815, 824, 825, 835, 841, 853, 859, 869, 879, 884, + 894, 904, 906, 908, 909, 912, 919, 926, 933, 940, + 949, 960, 975, 992, 1005, 1014, 1023, 1030, 1045, 1050, + 1057, 1064, 1068, 1073, 1079, 1083, 1087, 1092, 1097, 1101, + 1109, 1117, 1121, 1129, 1133, 1136, 1139, 1142, 1145, 1161, + 1164, 1167, 1170, 1173, 1177, 1184, 1193, 1202, 1213, 1215, + 1218, 1220, 1224, 1229, 1231, 1237, 1249, 1263, 1264, 1272, + 1273, 1287, 1288, 1304, 1305, 1312, 1321, 1330, 1339, 1352, + 1365, 1378, 1393, 1408, 1423, 1424, 1437, 1438, 1451, 1452, + 1465, 1466, 1483, 1484, 1501, 1502, 1519, 1520, 1539, 1540, + 1559, 1560, 1579, 1581, 1584, 1590, 1598, 1608, 1611, 1614, + 1618, 1621, 1625, 1635, 1642, 1643, 1647, 1648, 1650, 1651, + 1654, 1655, 1658, 1666, 1673, 1682, 1688, 1692, 1700, 1706, + 1711, 1718, 1725, 1738, 1749, 1760, 1771, 1782, 1787, 1792, + 1795, 1799, 1806, 1808, 1810, 1812, 1815, 1821, 1829, 1840, + 1842, 1846, 1849, 1852, 1855, 1859, 1863, 1867, 1871, 1875, + 1879, 1883, 1887, 1891, 1895, 1899, 1903, 1907, 1911, 1917, + 1922, 1927, 1932, 1937, 1942, 1947, 1952, 1957, 1962, 1967, + 1974, 1979, 1984, 1989, 1994, 1999, 2004, 2011, 2018, 2025, + 2030, 2035, 2040, 2045, 2050, 2055, 2060, 2065, 2070, 2075, + 2080, 2087, 2092, 2097, 2102, 2107, 2112, 2117, 2124, 2131, + 2138, 2143, 2145, 2147, 2149, 2151, 2153, 2155, 2157, 2159, + 2165, 2170, 2175, 2178, 2184, 2188, 2195, 2200, 2208, 2215, + 2222, 2227, 2229, 2232, 2235, 2239, 2243, 2255, 2265, 2273, + 2281, 2283, 2287, 2289, 2291, 2294, 2298, 2303, 2309, 2311, + 2313, 2316, 2320, 2324, 2330, 2335, 2338, 2341, 2344, 2347, + 2353, 2359, 2365, 2371, 2373, 2375, 2379, 2383, 2388, 2395, + 2402, 2404, 2406, 2410, 2414, 2424, 2432, 2434, 2440, 2444, + 2451, 2453, 2457, 2459, 2461, 2465, 2472, 2474, 2476, 2481, + 2488, 2495, 2500, 2505, 2510, 2517, 2519 }; /* YYRHS -- A `-1'-separated list of the rules' RHS. */ static const yytype_int16 yyrhs[] = { - 166, 0, -1, 167, -1, 1, 6, -1, -1, 167, - 168, -1, 171, -1, 170, -1, 189, -1, 202, -1, - 207, -1, 211, -1, 212, -1, 213, -1, 216, -1, - 236, -1, 237, -1, 238, -1, 239, -1, 215, -1, - 214, -1, 210, -1, 241, -1, 142, -1, 142, 142, - -1, 36, 155, 5, 156, 6, -1, 37, 155, 5, - 156, 6, -1, 36, 155, 5, 156, 169, 254, 6, - -1, 36, 155, 5, 161, 250, 156, 6, -1, 37, - 155, 5, 161, 250, 156, 6, -1, 36, 155, 5, - 161, 250, 156, 169, 254, 6, -1, 4, 5, 162, - 172, 163, 6, -1, 91, 4, 157, 242, 158, 6, - -1, 92, 4, 157, 242, 158, 6, -1, -1, 172, - 175, -1, 172, 179, -1, 172, 182, -1, 172, 184, - -1, 172, 185, -1, 242, -1, 173, 161, 242, -1, - 242, -1, 174, 161, 242, -1, -1, -1, 4, 176, - 155, 173, 156, 177, 162, 174, 163, 6, -1, 254, - -1, 178, 161, 254, -1, -1, 97, 155, 242, 161, - 242, 161, 242, 156, 180, 162, 178, 163, 6, -1, - 254, -1, 181, 161, 254, -1, -1, 98, 155, 242, - 161, 242, 161, 242, 161, 242, 156, 183, 162, 181, - 163, 6, -1, 99, 162, 246, 163, 162, 246, 163, - 6, -1, 99, 162, 246, 163, 162, 246, 163, 162, - 246, 163, 162, 246, 163, 6, -1, -1, 100, 186, - 162, 174, 163, 6, -1, 7, -1, 135, -1, 134, - -1, 133, -1, 132, -1, 153, -1, 152, -1, 51, - 157, 191, 158, 6, -1, 4, 187, 247, 6, -1, - 4, 157, 158, 187, 247, 6, -1, 4, 157, 242, - 158, 187, 242, 6, -1, 4, 155, 242, 156, 187, - 242, 6, -1, 4, 157, 162, 250, 163, 158, 187, - 247, 6, -1, 4, 155, 162, 250, 163, 156, 187, - 247, 6, -1, 4, 188, 6, -1, 4, 157, 242, - 158, 188, 6, -1, 4, 7, 255, 6, -1, 4, - 159, 4, 7, 255, 6, -1, 4, 157, 242, 158, - 159, 4, 7, 255, 6, -1, 4, 159, 4, 187, - 242, 6, -1, 4, 157, 242, 158, 159, 4, 187, - 242, 6, -1, 4, 159, 4, 188, 6, -1, 4, - 157, 242, 158, 159, 4, 188, 6, -1, 4, 159, - 107, 159, 4, 7, 251, 6, -1, 4, 157, 242, - 158, 159, 107, 159, 4, 7, 251, 6, -1, 4, - 159, 108, 7, 252, 6, -1, 4, 157, 242, 158, - 159, 108, 7, 252, 6, -1, 4, 116, 7, 242, - 6, -1, 116, 157, 242, 158, 7, 4, 6, -1, - 116, 157, 242, 158, 159, 4, 7, 242, 6, -1, - 116, 157, 242, 158, 159, 4, 7, 255, 6, -1, - 116, 157, 242, 158, 159, 4, 7, 162, 250, 163, - 6, -1, 116, 157, 242, 158, 159, 4, 6, -1, - 74, 155, 4, 156, 159, 4, 7, 242, 6, -1, - 74, 155, 4, 156, 159, 4, 7, 255, 6, -1, - -1, 161, -1, -1, 191, 190, 4, -1, 191, 190, - 4, 7, 242, -1, -1, 191, 190, 4, 7, 162, - 242, 192, 195, 163, -1, 191, 190, 4, 7, 255, - -1, -1, 191, 190, 4, 7, 162, 255, 193, 197, - 163, -1, 242, 7, 255, -1, 194, 161, 242, 7, - 255, -1, -1, 195, 196, -1, 161, 4, 247, -1, - 161, 4, 162, 194, 163, -1, 161, 4, 5, -1, - -1, 197, 198, -1, 161, 4, 242, -1, 161, 4, - 5, -1, 161, 4, 162, 256, 163, -1, 242, -1, - 255, -1, -1, 110, 56, 162, 242, 163, -1, -1, - 66, 244, -1, 52, 155, 242, 156, 7, 244, 6, - -1, -1, 70, 52, 203, 155, 199, 156, 7, 247, - 6, -1, 61, 62, 247, 7, 242, 6, -1, 55, - 155, 242, 156, 7, 247, 6, -1, 75, 55, 247, - 6, -1, 59, 155, 242, 156, 7, 247, 6, -1, - 53, 155, 242, 156, 7, 247, 201, 6, -1, 54, - 155, 242, 156, 7, 247, 201, 6, -1, 102, 155, - 242, 156, 7, 247, 6, -1, 103, 155, 242, 156, - 7, 247, 6, -1, 104, 155, 242, 156, 7, 247, - 106, 247, 105, 242, 6, -1, 55, 4, 155, 242, - 156, 7, 247, 6, -1, 71, 55, 155, 242, 156, - 7, 247, 6, -1, -1, 70, 55, 204, 155, 199, - 156, 7, 247, 6, -1, 66, 58, 155, 242, 156, - 7, 247, 6, -1, 67, 58, 155, 242, 156, 7, - 247, 200, 6, -1, 12, 13, 6, -1, 13, 58, - 242, 6, -1, 63, 58, 155, 242, 156, 7, 5, - 5, 5, 6, -1, 56, 155, 242, 156, 7, 247, - 6, -1, 57, 155, 242, 156, 7, 247, 6, -1, - 58, 4, 155, 242, 156, 7, 247, 6, -1, 71, - 58, 155, 242, 156, 7, 247, 6, -1, 71, 58, - 155, 242, 156, 7, 247, 4, 162, 246, 163, 6, - -1, -1, 70, 58, 205, 155, 199, 156, 7, 247, - 6, -1, 69, 60, 155, 242, 156, 7, 247, 6, - -1, 60, 155, 242, 156, 7, 247, 6, -1, 71, - 60, 155, 242, 156, 7, 247, 6, -1, -1, 70, - 60, 206, 155, 199, 156, 7, 247, 6, -1, 77, - 244, 162, 208, 163, -1, 76, 162, 244, 161, 244, - 161, 242, 163, 162, 208, 163, -1, 78, 244, 162, - 208, 163, -1, 79, 162, 244, 161, 242, 163, 162, - 208, 163, -1, 79, 162, 244, 161, 244, 163, 162, - 208, 163, -1, 4, 162, 208, 163, -1, 87, 55, - 162, 250, 163, 58, 162, 242, 163, -1, 84, 55, - 155, 242, 156, 162, 250, 163, 6, -1, 209, -1, - 207, -1, -1, 209, 202, -1, 209, 52, 162, 250, - 163, 6, -1, 209, 55, 162, 250, 163, 6, -1, - 209, 58, 162, 250, 163, 6, -1, 209, 60, 162, - 250, 163, 6, -1, 81, 66, 155, 242, 156, 7, - 247, 6, -1, 81, 52, 155, 242, 156, 7, 162, - 246, 163, 6, -1, 81, 66, 155, 242, 156, 7, - 162, 244, 161, 244, 161, 250, 163, 6, -1, 81, - 66, 155, 242, 156, 7, 162, 244, 161, 244, 161, - 244, 161, 250, 163, 6, -1, 81, 56, 155, 242, - 156, 7, 162, 244, 161, 250, 163, 6, -1, 81, - 4, 155, 242, 156, 7, 247, 6, -1, 81, 4, - 155, 242, 156, 7, 5, 6, -1, 81, 4, 162, - 242, 163, 6, -1, 81, 4, 155, 242, 156, 7, - 162, 244, 161, 244, 161, 250, 163, 6, -1, 85, - 162, 209, 163, -1, 85, 116, 157, 242, 158, 6, - -1, 85, 4, 157, 242, 158, 6, -1, 85, 4, - 6, -1, 85, 4, 4, 6, -1, 107, 251, 162, - 209, 163, -1, 120, 5, 6, -1, 121, 5, 6, - -1, 120, 162, 209, 163, -1, 121, 162, 209, 163, - -1, 4, 255, 6, -1, 4, 4, 157, 242, 158, - 254, 6, -1, 4, 4, 4, 157, 242, 158, 6, - -1, 4, 242, 6, -1, 74, 155, 4, 156, 159, - 4, 6, -1, 101, 4, 6, -1, 114, 6, -1, - 115, 6, -1, 47, 6, -1, 44, 6, -1, 44, - 162, 242, 161, 242, 161, 242, 161, 242, 161, 242, - 161, 242, 163, 6, -1, 45, 6, -1, 48, 6, - -1, 49, 6, -1, 65, 6, -1, 128, 242, 6, - -1, 109, 155, 242, 8, 242, 156, -1, 109, 155, - 242, 8, 242, 8, 242, 156, -1, 109, 4, 110, - 162, 242, 8, 242, 163, -1, 109, 4, 110, 162, - 242, 8, 242, 8, 242, 163, -1, 111, -1, 119, - 4, -1, 117, -1, 118, 4, 6, -1, 112, 155, - 242, 156, -1, 113, -1, 80, 244, 162, 209, 163, - -1, 80, 162, 244, 161, 244, 161, 242, 163, 162, - 209, 163, -1, 80, 162, 244, 161, 244, 161, 244, - 161, 242, 163, 162, 209, 163, -1, -1, 80, 244, - 162, 209, 217, 230, 163, -1, -1, 80, 162, 244, - 161, 244, 161, 242, 163, 162, 209, 218, 230, 163, - -1, -1, 80, 162, 244, 161, 244, 161, 244, 161, - 242, 163, 162, 209, 219, 230, 163, -1, -1, 80, - 162, 209, 220, 230, 163, -1, 80, 52, 162, 242, - 161, 244, 163, 6, -1, 80, 55, 162, 242, 161, - 244, 163, 6, -1, 80, 58, 162, 242, 161, 244, - 163, 6, -1, 80, 52, 162, 242, 161, 244, 161, - 244, 161, 242, 163, 6, -1, 80, 55, 162, 242, - 161, 244, 161, 244, 161, 242, 163, 6, -1, 80, - 58, 162, 242, 161, 244, 161, 244, 161, 242, 163, - 6, -1, 80, 52, 162, 242, 161, 244, 161, 244, - 161, 244, 161, 242, 163, 6, -1, 80, 55, 162, - 242, 161, 244, 161, 244, 161, 244, 161, 242, 163, - 6, -1, 80, 58, 162, 242, 161, 244, 161, 244, - 161, 244, 161, 242, 163, 6, -1, -1, 80, 52, - 162, 242, 161, 244, 163, 221, 162, 230, 163, 6, - -1, -1, 80, 55, 162, 242, 161, 244, 163, 222, - 162, 230, 163, 6, -1, -1, 80, 58, 162, 242, - 161, 244, 163, 223, 162, 230, 163, 6, -1, -1, - 80, 52, 162, 242, 161, 244, 161, 244, 161, 242, - 163, 224, 162, 230, 163, 6, -1, -1, 80, 55, - 162, 242, 161, 244, 161, 244, 161, 242, 163, 225, - 162, 230, 163, 6, -1, -1, 80, 58, 162, 242, - 161, 244, 161, 244, 161, 242, 163, 226, 162, 230, - 163, 6, -1, -1, 80, 52, 162, 242, 161, 244, - 161, 244, 161, 244, 161, 242, 163, 227, 162, 230, - 163, 6, -1, -1, 80, 55, 162, 242, 161, 244, - 161, 244, 161, 244, 161, 242, 163, 228, 162, 230, - 163, 6, -1, -1, 80, 58, 162, 242, 161, 244, - 161, 244, 161, 244, 161, 242, 163, 229, 162, 230, - 163, 6, -1, 231, -1, 230, 231, -1, 89, 162, - 242, 163, 6, -1, 89, 162, 247, 161, 247, 163, - 6, -1, 89, 162, 247, 161, 247, 161, 247, 163, - 6, -1, 82, 6, -1, 93, 6, -1, 93, 95, - 6, -1, 94, 6, -1, 94, 95, 6, -1, 90, - 155, 242, 156, 7, 247, 73, 242, 6, -1, 73, - 4, 157, 242, 158, 6, -1, -1, 73, 4, 242, - -1, -1, 4, -1, -1, 7, 247, -1, -1, 7, - 242, -1, 68, 55, 248, 7, 242, 232, 6, -1, - 68, 58, 248, 234, 233, 6, -1, 64, 58, 162, - 242, 163, 7, 247, 6, -1, 68, 60, 248, 234, - 6, -1, 96, 248, 6, -1, 88, 58, 162, 250, - 163, 242, 6, -1, 82, 58, 248, 235, 6, -1, - 82, 60, 248, 6, -1, 83, 58, 247, 7, 242, - 6, -1, 72, 55, 247, 7, 247, 6, -1, 72, - 58, 242, 162, 250, 163, 7, 242, 162, 250, 163, - 6, -1, 52, 162, 250, 163, 110, 58, 162, 242, - 163, 6, -1, 55, 162, 250, 163, 110, 58, 162, - 242, 163, 6, -1, 55, 162, 250, 163, 110, 60, - 162, 242, 163, 6, -1, 58, 162, 250, 163, 110, - 60, 162, 242, 163, 6, -1, 86, 6, -1, 86, - 4, 6, -1, 86, 52, 162, 250, 163, 6, -1, - 125, -1, 126, -1, 127, -1, 240, 6, -1, 240, - 162, 247, 163, 6, -1, 240, 162, 247, 161, 247, - 163, 6, -1, 240, 155, 247, 156, 162, 247, 161, - 247, 163, 6, -1, 243, -1, 155, 242, 156, -1, - 146, 242, -1, 145, 242, -1, 150, 242, -1, 242, - 146, 242, -1, 242, 145, 242, -1, 242, 147, 242, - -1, 242, 148, 242, -1, 242, 149, 242, -1, 242, - 154, 242, -1, 242, 141, 242, -1, 242, 142, 242, - -1, 242, 144, 242, -1, 242, 143, 242, -1, 242, - 140, 242, -1, 242, 139, 242, -1, 242, 138, 242, - -1, 242, 137, 242, -1, 242, 136, 242, 8, 242, - -1, 14, 155, 242, 156, -1, 15, 155, 242, 156, - -1, 16, 155, 242, 156, -1, 17, 155, 242, 156, - -1, 18, 155, 242, 156, -1, 19, 155, 242, 156, - -1, 20, 155, 242, 156, -1, 21, 155, 242, 156, - -1, 22, 155, 242, 156, -1, 24, 155, 242, 156, - -1, 25, 155, 242, 161, 242, 156, -1, 26, 155, - 242, 156, -1, 27, 155, 242, 156, -1, 28, 155, - 242, 156, -1, 29, 155, 242, 156, -1, 30, 155, - 242, 156, -1, 31, 155, 242, 156, -1, 32, 155, - 242, 161, 242, 156, -1, 33, 155, 242, 161, 242, - 156, -1, 34, 155, 242, 161, 242, 156, -1, 23, - 155, 242, 156, -1, 14, 157, 242, 158, -1, 15, - 157, 242, 158, -1, 16, 157, 242, 158, -1, 17, - 157, 242, 158, -1, 18, 157, 242, 158, -1, 19, - 157, 242, 158, -1, 20, 157, 242, 158, -1, 21, - 157, 242, 158, -1, 22, 157, 242, 158, -1, 24, - 157, 242, 158, -1, 25, 157, 242, 161, 242, 158, - -1, 26, 157, 242, 158, -1, 27, 157, 242, 158, - -1, 28, 157, 242, 158, -1, 29, 157, 242, 158, - -1, 30, 157, 242, 158, -1, 31, 157, 242, 158, - -1, 32, 157, 242, 161, 242, 158, -1, 33, 157, - 242, 161, 242, 158, -1, 34, 157, 242, 161, 242, - 158, -1, 23, 157, 242, 158, -1, 3, -1, 9, - -1, 10, -1, 11, -1, 129, -1, 130, -1, 131, - -1, 4, -1, 4, 164, 162, 242, 163, -1, 4, - 157, 242, 158, -1, 160, 4, 157, 158, -1, 4, - 188, -1, 4, 157, 242, 158, 188, -1, 4, 159, - 4, -1, 4, 157, 242, 158, 159, 4, -1, 4, - 159, 4, 188, -1, 4, 157, 242, 158, 159, 4, - 188, -1, 122, 155, 254, 161, 242, 156, -1, 42, - 155, 254, 161, 254, 156, -1, 43, 155, 256, 156, - -1, 245, -1, 146, 244, -1, 145, 244, -1, 244, - 146, 244, -1, 244, 145, 244, -1, 162, 242, 161, - 242, 161, 242, 161, 242, 161, 242, 163, -1, 162, - 242, 161, 242, 161, 242, 161, 242, 163, -1, 162, - 242, 161, 242, 161, 242, 163, -1, 155, 242, 161, - 242, 161, 242, 156, -1, 247, -1, 246, 161, 247, - -1, 242, -1, 249, -1, 162, 163, -1, 162, 250, - 163, -1, 146, 162, 250, 163, -1, 242, 147, 162, - 250, 163, -1, 247, -1, 5, -1, 146, 249, -1, - 242, 147, 249, -1, 242, 8, 242, -1, 242, 8, - 242, 8, 242, -1, 52, 162, 242, 163, -1, 52, - 5, -1, 55, 5, -1, 58, 5, -1, 60, 5, - -1, 70, 52, 162, 250, 163, -1, 70, 55, 162, - 250, 163, -1, 70, 58, 162, 250, 163, -1, 70, - 60, 162, 250, 163, -1, 207, -1, 216, -1, 4, - 157, 158, -1, 4, 155, 156, -1, 35, 157, 4, - 158, -1, 4, 157, 162, 250, 163, 158, -1, 4, - 155, 162, 250, 163, 156, -1, 242, -1, 249, -1, - 250, 161, 242, -1, 250, 161, 249, -1, 162, 242, - 161, 242, 161, 242, 161, 242, 163, -1, 162, 242, - 161, 242, 161, 242, 163, -1, 4, -1, 4, 159, - 107, 159, 4, -1, 162, 253, 163, -1, 4, 157, - 242, 158, 159, 108, -1, 251, -1, 253, 161, 251, - -1, 255, -1, 4, -1, 4, 159, 4, -1, 4, - 157, 242, 158, 159, 4, -1, 5, -1, 46, -1, - 123, 155, 254, 156, -1, 124, 155, 254, 161, 254, - 156, -1, 39, 155, 254, 161, 254, 156, -1, 40, - 155, 254, 156, -1, 41, 155, 254, 156, -1, 38, - 155, 254, 156, -1, 38, 155, 254, 161, 250, 156, - -1, 254, -1, 256, 161, 254, -1 + 167, 0, -1, 168, -1, 1, 6, -1, -1, 168, + 169, -1, 172, -1, 171, -1, 190, -1, 203, -1, + 208, -1, 212, -1, 213, -1, 214, -1, 217, -1, + 237, -1, 238, -1, 216, -1, 215, -1, 211, -1, + 240, -1, 143, -1, 143, 143, -1, 36, 156, 5, + 157, 6, -1, 37, 156, 5, 157, 6, -1, 36, + 156, 5, 157, 170, 253, 6, -1, 36, 156, 5, + 162, 249, 157, 6, -1, 37, 156, 5, 162, 249, + 157, 6, -1, 36, 156, 5, 162, 249, 157, 170, + 253, 6, -1, 4, 5, 163, 173, 164, 6, -1, + 92, 4, 158, 241, 159, 6, -1, 93, 4, 158, + 241, 159, 6, -1, -1, 173, 176, -1, 173, 180, + -1, 173, 183, -1, 173, 185, -1, 173, 186, -1, + 241, -1, 174, 162, 241, -1, 241, -1, 175, 162, + 241, -1, -1, -1, 4, 177, 156, 174, 157, 178, + 163, 175, 164, 6, -1, 253, -1, 179, 162, 253, + -1, -1, 98, 156, 241, 162, 241, 162, 241, 157, + 181, 163, 179, 164, 6, -1, 253, -1, 182, 162, + 253, -1, -1, 99, 156, 241, 162, 241, 162, 241, + 162, 241, 157, 184, 163, 182, 164, 6, -1, 100, + 163, 245, 164, 163, 245, 164, 6, -1, 100, 163, + 245, 164, 163, 245, 164, 163, 245, 164, 163, 245, + 164, 6, -1, -1, 101, 187, 163, 175, 164, 6, + -1, 7, -1, 136, -1, 135, -1, 134, -1, 133, + -1, 154, -1, 153, -1, 51, 158, 192, 159, 6, + -1, 4, 188, 246, 6, -1, 4, 158, 159, 188, + 246, 6, -1, 4, 158, 241, 159, 188, 241, 6, + -1, 4, 156, 241, 157, 188, 241, 6, -1, 4, + 158, 163, 249, 164, 159, 188, 246, 6, -1, 4, + 156, 163, 249, 164, 157, 188, 246, 6, -1, 4, + 189, 6, -1, 4, 158, 241, 159, 189, 6, -1, + 4, 7, 254, 6, -1, 4, 160, 4, 7, 254, + 6, -1, 4, 158, 241, 159, 160, 4, 7, 254, + 6, -1, 4, 160, 4, 188, 241, 6, -1, 4, + 158, 241, 159, 160, 4, 188, 241, 6, -1, 4, + 160, 4, 189, 6, -1, 4, 158, 241, 159, 160, + 4, 189, 6, -1, 4, 160, 108, 160, 4, 7, + 250, 6, -1, 4, 158, 241, 159, 160, 108, 160, + 4, 7, 250, 6, -1, 4, 160, 109, 7, 251, + 6, -1, 4, 158, 241, 159, 160, 109, 7, 251, + 6, -1, 4, 117, 7, 241, 6, -1, 117, 158, + 241, 159, 7, 4, 6, -1, 117, 158, 241, 159, + 160, 4, 7, 241, 6, -1, 117, 158, 241, 159, + 160, 4, 7, 254, 6, -1, 117, 158, 241, 159, + 160, 4, 7, 163, 249, 164, 6, -1, 117, 158, + 241, 159, 160, 4, 6, -1, 74, 156, 4, 157, + 160, 4, 7, 241, 6, -1, 74, 156, 4, 157, + 160, 4, 7, 254, 6, -1, -1, 162, -1, -1, + 192, 191, 4, -1, 192, 191, 4, 7, 241, -1, + -1, 192, 191, 4, 7, 163, 241, 193, 196, 164, + -1, 192, 191, 4, 7, 254, -1, -1, 192, 191, + 4, 7, 163, 254, 194, 198, 164, -1, 241, 7, + 254, -1, 195, 162, 241, 7, 254, -1, -1, 196, + 197, -1, 162, 4, 246, -1, 162, 4, 163, 195, + 164, -1, 162, 4, 5, -1, -1, 198, 199, -1, + 162, 4, 241, -1, 162, 4, 5, -1, 162, 4, + 163, 255, 164, -1, 241, -1, 254, -1, -1, 111, + 56, 163, 241, 164, -1, -1, 66, 243, -1, 52, + 156, 241, 157, 7, 243, 6, -1, -1, 70, 52, + 204, 156, 200, 157, 7, 246, 6, -1, 61, 62, + 246, 7, 241, 6, -1, 55, 156, 241, 157, 7, + 246, 6, -1, 75, 55, 246, 6, -1, 59, 156, + 241, 157, 7, 246, 6, -1, 53, 156, 241, 157, + 7, 246, 202, 6, -1, 54, 156, 241, 157, 7, + 246, 202, 6, -1, 103, 156, 241, 157, 7, 246, + 6, -1, 104, 156, 241, 157, 7, 246, 6, -1, + 105, 156, 241, 157, 7, 246, 107, 246, 106, 241, + 6, -1, 55, 4, 156, 241, 157, 7, 246, 6, + -1, 71, 55, 156, 241, 157, 7, 246, 6, -1, + -1, 70, 55, 205, 156, 200, 157, 7, 246, 6, + -1, 66, 58, 156, 241, 157, 7, 246, 6, -1, + 67, 58, 156, 241, 157, 7, 246, 201, 6, -1, + 12, 13, 6, -1, 13, 58, 241, 6, -1, 63, + 58, 156, 241, 157, 7, 5, 5, 5, 6, -1, + 56, 156, 241, 157, 7, 246, 6, -1, 57, 156, + 241, 157, 7, 246, 6, -1, 58, 4, 156, 241, + 157, 7, 246, 6, -1, 71, 58, 156, 241, 157, + 7, 246, 6, -1, 71, 58, 156, 241, 157, 7, + 246, 4, 163, 245, 164, 6, -1, -1, 70, 58, + 206, 156, 200, 157, 7, 246, 6, -1, 69, 60, + 156, 241, 157, 7, 246, 6, -1, 60, 156, 241, + 157, 7, 246, 6, -1, 71, 60, 156, 241, 157, + 7, 246, 6, -1, -1, 70, 60, 207, 156, 200, + 157, 7, 246, 6, -1, 77, 243, 163, 209, 164, + -1, 76, 163, 243, 162, 243, 162, 241, 164, 163, + 209, 164, -1, 78, 243, 163, 209, 164, -1, 79, + 163, 243, 162, 241, 164, 163, 209, 164, -1, 79, + 163, 243, 162, 243, 164, 163, 209, 164, -1, 4, + 163, 209, 164, -1, 87, 55, 163, 249, 164, 58, + 163, 241, 164, -1, 84, 55, 156, 241, 157, 163, + 249, 164, 6, -1, 210, -1, 208, -1, -1, 210, + 203, -1, 210, 52, 163, 249, 164, 6, -1, 210, + 55, 163, 249, 164, 6, -1, 210, 58, 163, 249, + 164, 6, -1, 210, 60, 163, 249, 164, 6, -1, + 81, 66, 156, 241, 157, 7, 246, 6, -1, 81, + 52, 156, 241, 157, 7, 163, 245, 164, 6, -1, + 81, 66, 156, 241, 157, 7, 163, 243, 162, 243, + 162, 249, 164, 6, -1, 81, 66, 156, 241, 157, + 7, 163, 243, 162, 243, 162, 243, 162, 249, 164, + 6, -1, 81, 56, 156, 241, 157, 7, 163, 243, + 162, 249, 164, 6, -1, 81, 4, 156, 241, 157, + 7, 246, 6, -1, 81, 4, 156, 241, 157, 7, + 5, 6, -1, 81, 4, 163, 241, 164, 6, -1, + 81, 4, 156, 241, 157, 7, 163, 243, 162, 243, + 162, 249, 164, 6, -1, 85, 163, 210, 164, -1, + 85, 117, 158, 241, 159, 6, -1, 85, 4, 158, + 241, 159, 6, -1, 85, 4, 6, -1, 85, 4, + 4, 6, -1, 108, 250, 163, 210, 164, -1, 121, + 5, 6, -1, 122, 5, 6, -1, 121, 163, 210, + 164, -1, 122, 163, 210, 164, -1, 4, 254, 6, + -1, 4, 4, 158, 241, 159, 253, 6, -1, 4, + 4, 4, 158, 241, 159, 6, -1, 4, 241, 6, + -1, 74, 156, 4, 157, 160, 4, 6, -1, 102, + 4, 6, -1, 115, 6, -1, 116, 6, -1, 47, + 6, -1, 44, 6, -1, 44, 163, 241, 162, 241, + 162, 241, 162, 241, 162, 241, 162, 241, 164, 6, + -1, 45, 6, -1, 48, 6, -1, 49, 6, -1, + 65, 6, -1, 129, 241, 6, -1, 110, 156, 241, + 8, 241, 157, -1, 110, 156, 241, 8, 241, 8, + 241, 157, -1, 110, 4, 111, 163, 241, 8, 241, + 164, -1, 110, 4, 111, 163, 241, 8, 241, 8, + 241, 164, -1, 112, -1, 120, 4, -1, 118, -1, + 119, 4, 6, -1, 113, 156, 241, 157, -1, 114, + -1, 80, 243, 163, 210, 164, -1, 80, 163, 243, + 162, 243, 162, 241, 164, 163, 210, 164, -1, 80, + 163, 243, 162, 243, 162, 243, 162, 241, 164, 163, + 210, 164, -1, -1, 80, 243, 163, 210, 218, 231, + 164, -1, -1, 80, 163, 243, 162, 243, 162, 241, + 164, 163, 210, 219, 231, 164, -1, -1, 80, 163, + 243, 162, 243, 162, 243, 162, 241, 164, 163, 210, + 220, 231, 164, -1, -1, 80, 163, 210, 221, 231, + 164, -1, 80, 52, 163, 241, 162, 243, 164, 6, + -1, 80, 55, 163, 241, 162, 243, 164, 6, -1, + 80, 58, 163, 241, 162, 243, 164, 6, -1, 80, + 52, 163, 241, 162, 243, 162, 243, 162, 241, 164, + 6, -1, 80, 55, 163, 241, 162, 243, 162, 243, + 162, 241, 164, 6, -1, 80, 58, 163, 241, 162, + 243, 162, 243, 162, 241, 164, 6, -1, 80, 52, + 163, 241, 162, 243, 162, 243, 162, 243, 162, 241, + 164, 6, -1, 80, 55, 163, 241, 162, 243, 162, + 243, 162, 243, 162, 241, 164, 6, -1, 80, 58, + 163, 241, 162, 243, 162, 243, 162, 243, 162, 241, + 164, 6, -1, -1, 80, 52, 163, 241, 162, 243, + 164, 222, 163, 231, 164, 6, -1, -1, 80, 55, + 163, 241, 162, 243, 164, 223, 163, 231, 164, 6, + -1, -1, 80, 58, 163, 241, 162, 243, 164, 224, + 163, 231, 164, 6, -1, -1, 80, 52, 163, 241, + 162, 243, 162, 243, 162, 241, 164, 225, 163, 231, + 164, 6, -1, -1, 80, 55, 163, 241, 162, 243, + 162, 243, 162, 241, 164, 226, 163, 231, 164, 6, + -1, -1, 80, 58, 163, 241, 162, 243, 162, 243, + 162, 241, 164, 227, 163, 231, 164, 6, -1, -1, + 80, 52, 163, 241, 162, 243, 162, 243, 162, 243, + 162, 241, 164, 228, 163, 231, 164, 6, -1, -1, + 80, 55, 163, 241, 162, 243, 162, 243, 162, 243, + 162, 241, 164, 229, 163, 231, 164, 6, -1, -1, + 80, 58, 163, 241, 162, 243, 162, 243, 162, 243, + 162, 241, 164, 230, 163, 231, 164, 6, -1, 232, + -1, 231, 232, -1, 90, 163, 241, 164, 6, -1, + 90, 163, 246, 162, 246, 164, 6, -1, 90, 163, + 246, 162, 246, 162, 246, 164, 6, -1, 82, 6, + -1, 94, 6, -1, 94, 96, 6, -1, 95, 6, + -1, 95, 96, 6, -1, 91, 156, 241, 157, 7, + 246, 73, 241, 6, -1, 73, 4, 158, 241, 159, + 6, -1, -1, 73, 4, 241, -1, -1, 4, -1, + -1, 7, 246, -1, -1, 7, 241, -1, 68, 55, + 247, 7, 241, 233, 6, -1, 68, 58, 247, 235, + 234, 6, -1, 64, 58, 163, 241, 164, 7, 246, + 6, -1, 68, 60, 247, 235, 6, -1, 97, 247, + 6, -1, 88, 58, 163, 249, 164, 241, 6, -1, + 82, 58, 247, 236, 6, -1, 82, 60, 247, 6, + -1, 83, 58, 246, 7, 241, 6, -1, 72, 55, + 246, 7, 246, 6, -1, 72, 58, 241, 163, 249, + 164, 7, 241, 163, 249, 164, 6, -1, 52, 163, + 249, 164, 111, 58, 163, 241, 164, 6, -1, 55, + 163, 249, 164, 111, 58, 163, 241, 164, 6, -1, + 55, 163, 249, 164, 111, 60, 163, 241, 164, 6, + -1, 58, 163, 249, 164, 111, 60, 163, 241, 164, + 6, -1, 89, 58, 247, 6, -1, 89, 55, 247, + 6, -1, 86, 6, -1, 86, 4, 6, -1, 86, + 52, 163, 249, 164, 6, -1, 126, -1, 127, -1, + 128, -1, 239, 6, -1, 239, 163, 246, 164, 6, + -1, 239, 163, 246, 162, 246, 164, 6, -1, 239, + 156, 246, 157, 163, 246, 162, 246, 164, 6, -1, + 242, -1, 156, 241, 157, -1, 147, 241, -1, 146, + 241, -1, 151, 241, -1, 241, 147, 241, -1, 241, + 146, 241, -1, 241, 148, 241, -1, 241, 149, 241, + -1, 241, 150, 241, -1, 241, 155, 241, -1, 241, + 142, 241, -1, 241, 143, 241, -1, 241, 145, 241, + -1, 241, 144, 241, -1, 241, 141, 241, -1, 241, + 140, 241, -1, 241, 139, 241, -1, 241, 138, 241, + -1, 241, 137, 241, 8, 241, -1, 14, 156, 241, + 157, -1, 15, 156, 241, 157, -1, 16, 156, 241, + 157, -1, 17, 156, 241, 157, -1, 18, 156, 241, + 157, -1, 19, 156, 241, 157, -1, 20, 156, 241, + 157, -1, 21, 156, 241, 157, -1, 22, 156, 241, + 157, -1, 24, 156, 241, 157, -1, 25, 156, 241, + 162, 241, 157, -1, 26, 156, 241, 157, -1, 27, + 156, 241, 157, -1, 28, 156, 241, 157, -1, 29, + 156, 241, 157, -1, 30, 156, 241, 157, -1, 31, + 156, 241, 157, -1, 32, 156, 241, 162, 241, 157, + -1, 33, 156, 241, 162, 241, 157, -1, 34, 156, + 241, 162, 241, 157, -1, 23, 156, 241, 157, -1, + 14, 158, 241, 159, -1, 15, 158, 241, 159, -1, + 16, 158, 241, 159, -1, 17, 158, 241, 159, -1, + 18, 158, 241, 159, -1, 19, 158, 241, 159, -1, + 20, 158, 241, 159, -1, 21, 158, 241, 159, -1, + 22, 158, 241, 159, -1, 24, 158, 241, 159, -1, + 25, 158, 241, 162, 241, 159, -1, 26, 158, 241, + 159, -1, 27, 158, 241, 159, -1, 28, 158, 241, + 159, -1, 29, 158, 241, 159, -1, 30, 158, 241, + 159, -1, 31, 158, 241, 159, -1, 32, 158, 241, + 162, 241, 159, -1, 33, 158, 241, 162, 241, 159, + -1, 34, 158, 241, 162, 241, 159, -1, 23, 158, + 241, 159, -1, 3, -1, 9, -1, 10, -1, 11, + -1, 130, -1, 131, -1, 132, -1, 4, -1, 4, + 165, 163, 241, 164, -1, 4, 158, 241, 159, -1, + 161, 4, 158, 159, -1, 4, 189, -1, 4, 158, + 241, 159, 189, -1, 4, 160, 4, -1, 4, 158, + 241, 159, 160, 4, -1, 4, 160, 4, 189, -1, + 4, 158, 241, 159, 160, 4, 189, -1, 123, 156, + 253, 162, 241, 157, -1, 42, 156, 253, 162, 253, + 157, -1, 43, 156, 255, 157, -1, 244, -1, 147, + 243, -1, 146, 243, -1, 243, 147, 243, -1, 243, + 146, 243, -1, 163, 241, 162, 241, 162, 241, 162, + 241, 162, 241, 164, -1, 163, 241, 162, 241, 162, + 241, 162, 241, 164, -1, 163, 241, 162, 241, 162, + 241, 164, -1, 156, 241, 162, 241, 162, 241, 157, + -1, 246, -1, 245, 162, 246, -1, 241, -1, 248, + -1, 163, 164, -1, 163, 249, 164, -1, 147, 163, + 249, 164, -1, 241, 148, 163, 249, 164, -1, 246, + -1, 5, -1, 147, 248, -1, 241, 148, 248, -1, + 241, 8, 241, -1, 241, 8, 241, 8, 241, -1, + 52, 163, 241, 164, -1, 52, 5, -1, 55, 5, + -1, 58, 5, -1, 60, 5, -1, 70, 52, 163, + 249, 164, -1, 70, 55, 163, 249, 164, -1, 70, + 58, 163, 249, 164, -1, 70, 60, 163, 249, 164, + -1, 208, -1, 217, -1, 4, 158, 159, -1, 4, + 156, 157, -1, 35, 158, 4, 159, -1, 4, 158, + 163, 249, 164, 159, -1, 4, 156, 163, 249, 164, + 157, -1, 241, -1, 248, -1, 249, 162, 241, -1, + 249, 162, 248, -1, 163, 241, 162, 241, 162, 241, + 162, 241, 164, -1, 163, 241, 162, 241, 162, 241, + 164, -1, 4, -1, 4, 160, 108, 160, 4, -1, + 163, 252, 164, -1, 4, 158, 241, 159, 160, 109, + -1, 250, -1, 252, 162, 250, -1, 254, -1, 4, + -1, 4, 160, 4, -1, 4, 158, 241, 159, 160, + 4, -1, 5, -1, 46, -1, 124, 156, 253, 157, + -1, 125, 156, 253, 162, 253, 157, -1, 39, 156, + 253, 162, 253, 157, -1, 40, 156, 253, 157, -1, + 41, 156, 253, 157, -1, 38, 156, 253, 157, -1, + 38, 156, 253, 162, 249, 157, -1, 253, -1, 255, + 162, 253, -1 }; /* YYRLINE[YYN] -- source line where rule number YYN was defined. */ static const yytype_uint16 yyrline[] = { - 0, 166, 166, 167, 172, 174, 178, 179, 180, 181, - 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, - 192, 193, 194, 198, 202, 209, 214, 219, 233, 246, - 259, 287, 301, 312, 327, 332, 333, 334, 335, 336, - 340, 342, 347, 349, 355, 459, 354, 477, 484, 495, - 494, 512, 519, 530, 529, 546, 563, 586, 585, 599, - 600, 601, 602, 603, 607, 608, 614, 616, 678, 708, - 743, 777, 825, 872, 887, 903, 912, 918, 927, 945, - 963, 972, 984, 989, 997, 1017, 1040, 1051, 1059, 1081, - 1104, 1130, 1151, 1163, 1177, 1177, 1179, 1181, 1192, 1204, - 1203, 1215, 1227, 1226, 1241, 1247, 1254, 1255, 1259, 1270, - 1285, 1295, 1296, 1301, 1309, 1318, 1337, 1341, 1352, 1355, - 1368, 1371, 1381, 1405, 1404, 1424, 1446, 1464, 1485, 1503, - 1533, 1563, 1581, 1599, 1625, 1643, 1662, 1661, 1684, 1702, - 1741, 1747, 1753, 1760, 1785, 1810, 1827, 1844, 1876, 1875, - 1899, 1917, 1934, 1951, 1950, 1976, 1981, 1986, 1991, 1996, - 2001, 2024, 2030, 2041, 2042, 2047, 2050, 2054, 2077, 2100, - 2123, 2151, 2172, 2195, 2216, 2238, 2258, 2370, 2389, 2427, - 2536, 2545, 2551, 2566, 2594, 2611, 2625, 2631, 2637, 2646, - 2660, 2705, 2722, 2737, 2756, 2768, 2792, 2796, 2801, 2808, - 2814, 2819, 2825, 2829, 2833, 2838, 2848, 2865, 2882, 2903, - 2924, 2959, 2967, 2973, 2980, 2984, 2993, 3001, 3009, 3018, - 3017, 3031, 3030, 3044, 3043, 3057, 3056, 3069, 3076, 3083, - 3090, 3097, 3104, 3111, 3118, 3125, 3133, 3132, 3145, 3144, - 3157, 3156, 3169, 3168, 3181, 3180, 3193, 3192, 3205, 3204, - 3217, 3216, 3229, 3228, 3244, 3247, 3253, 3262, 3282, 3305, - 3309, 3313, 3317, 3321, 3325, 3344, 3357, 3360, 3376, 3379, - 3392, 3395, 3401, 3404, 3411, 3467, 3537, 3542, 3609, 3645, - 3654, 3697, 3736, 3761, 3788, 3835, 3858, 3881, 3884, 3893, - 3897, 3907, 3942, 3943, 3944, 3948, 3954, 3966, 3984, 4012, - 4013, 4014, 4015, 4016, 4017, 4018, 4019, 4020, 4027, 4028, - 4029, 4030, 4031, 4032, 4033, 4034, 4035, 4036, 4037, 4038, - 4039, 4040, 4041, 4042, 4043, 4044, 4045, 4046, 4047, 4048, - 4049, 4050, 4051, 4052, 4053, 4054, 4055, 4056, 4057, 4058, - 4061, 4062, 4063, 4064, 4065, 4066, 4067, 4068, 4069, 4070, - 4071, 4072, 4073, 4074, 4075, 4076, 4077, 4078, 4079, 4080, - 4081, 4090, 4091, 4092, 4093, 4094, 4095, 4096, 4100, 4121, - 4140, 4158, 4170, 4187, 4208, 4213, 4218, 4228, 4238, 4243, - 4252, 4279, 4283, 4287, 4291, 4295, 4302, 4306, 4310, 4314, - 4321, 4326, 4333, 4338, 4342, 4347, 4351, 4359, 4370, 4374, - 4386, 4394, 4402, 4409, 4419, 4439, 4443, 4447, 4451, 4455, - 4484, 4513, 4542, 4571, 4581, 4591, 4604, 4616, 4628, 4647, - 4668, 4673, 4677, 4681, 4693, 4697, 4709, 4716, 4726, 4730, - 4745, 4750, 4757, 4761, 4774, 4782, 4793, 4797, 4805, 4813, - 4821, 4829, 4843, 4857, 4861, 4883, 4888 + 0, 167, 167, 168, 173, 175, 179, 180, 181, 182, + 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, + 193, 197, 201, 208, 213, 218, 232, 245, 258, 286, + 300, 311, 326, 331, 332, 333, 334, 335, 339, 341, + 346, 348, 354, 458, 353, 476, 483, 494, 493, 511, + 518, 529, 528, 545, 562, 585, 584, 598, 599, 600, + 601, 602, 606, 607, 613, 615, 677, 707, 742, 776, + 824, 871, 886, 902, 911, 917, 926, 944, 962, 971, + 983, 988, 996, 1016, 1039, 1050, 1058, 1080, 1103, 1129, + 1150, 1162, 1176, 1176, 1178, 1180, 1191, 1203, 1202, 1214, + 1226, 1225, 1240, 1246, 1253, 1254, 1258, 1269, 1284, 1294, + 1295, 1300, 1308, 1317, 1336, 1340, 1351, 1354, 1367, 1370, + 1380, 1404, 1403, 1423, 1445, 1463, 1484, 1502, 1532, 1562, + 1580, 1598, 1624, 1642, 1661, 1660, 1683, 1701, 1740, 1746, + 1752, 1759, 1784, 1809, 1826, 1843, 1875, 1874, 1898, 1916, + 1933, 1950, 1949, 1975, 1980, 1985, 1990, 1995, 2000, 2023, + 2029, 2040, 2041, 2046, 2049, 2053, 2076, 2099, 2122, 2150, + 2171, 2194, 2215, 2237, 2257, 2369, 2388, 2426, 2535, 2544, + 2550, 2565, 2593, 2610, 2624, 2630, 2636, 2645, 2659, 2704, + 2721, 2736, 2755, 2767, 2791, 2795, 2800, 2807, 2813, 2818, + 2824, 2828, 2832, 2837, 2847, 2864, 2881, 2902, 2923, 2958, + 2966, 2972, 2979, 2983, 2992, 3000, 3008, 3017, 3016, 3030, + 3029, 3043, 3042, 3056, 3055, 3068, 3075, 3082, 3089, 3096, + 3103, 3110, 3117, 3124, 3132, 3131, 3144, 3143, 3156, 3155, + 3168, 3167, 3180, 3179, 3192, 3191, 3204, 3203, 3216, 3215, + 3228, 3227, 3243, 3246, 3252, 3261, 3281, 3304, 3308, 3312, + 3316, 3320, 3324, 3343, 3356, 3359, 3375, 3378, 3391, 3394, + 3400, 3403, 3410, 3466, 3536, 3541, 3608, 3644, 3652, 3695, + 3734, 3754, 3781, 3821, 3844, 3867, 3871, 3875, 3914, 3959, + 3963, 3973, 4008, 4009, 4010, 4014, 4020, 4032, 4050, 4078, + 4079, 4080, 4081, 4082, 4083, 4084, 4085, 4086, 4093, 4094, + 4095, 4096, 4097, 4098, 4099, 4100, 4101, 4102, 4103, 4104, + 4105, 4106, 4107, 4108, 4109, 4110, 4111, 4112, 4113, 4114, + 4115, 4116, 4117, 4118, 4119, 4120, 4121, 4122, 4123, 4124, + 4127, 4128, 4129, 4130, 4131, 4132, 4133, 4134, 4135, 4136, + 4137, 4138, 4139, 4140, 4141, 4142, 4143, 4144, 4145, 4146, + 4147, 4156, 4157, 4158, 4159, 4160, 4161, 4162, 4166, 4187, + 4206, 4224, 4236, 4253, 4274, 4279, 4284, 4294, 4304, 4309, + 4318, 4345, 4349, 4353, 4357, 4361, 4368, 4372, 4376, 4380, + 4387, 4392, 4399, 4404, 4408, 4413, 4417, 4425, 4436, 4440, + 4452, 4460, 4468, 4475, 4485, 4505, 4509, 4513, 4517, 4521, + 4550, 4579, 4608, 4637, 4647, 4657, 4670, 4682, 4694, 4713, + 4734, 4739, 4743, 4747, 4759, 4763, 4775, 4782, 4792, 4796, + 4811, 4816, 4823, 4827, 4840, 4848, 4859, 4863, 4871, 4879, + 4887, 4895, 4909, 4923, 4927, 4949, 4954 }; #endif @@ -1031,7 +1034,7 @@ static const char *const yytname[] = "tPeriodic", "tUsing", "tPlugin", "tDegenerated", "tRotate", "tTranslate", "tSymmetry", "tDilate", "tExtrude", "tLevelset", "tRecombine", "tSmoother", "tSplit", "tDelete", "tCoherence", - "tIntersect", "tMeshAlgorithm", "tLayers", "tHole", "tAlias", + "tIntersect", "tMeshAlgorithm", "tReverse", "tLayers", "tHole", "tAlias", "tAliasWithOptions", "tQuadTriDbl", "tQuadTriSngl", "tRecombLaterals", "tTransfQuadTri", "tText2D", "tText3D", "tInterpolationScheme", "tTime", "tCombine", "tBSpline", "tBezier", "tNurbs", "tNurbsOrder", @@ -1057,11 +1060,11 @@ static const char *const yytname[] = "$@13", "$@14", "$@15", "$@16", "$@17", "$@18", "$@19", "$@20", "$@21", "$@22", "$@23", "$@24", "ExtrudeParameters", "ExtrudeParameter", "TransfiniteType", "TransfiniteArrangement", "TransfiniteCorners", - "RecombineAngle", "Transfinite", "Periodic", "Embedding", "Coherence", - "HomologyCommand", "Homology", "FExpr", "FExpr_Single", "VExpr", - "VExpr_Single", "RecursiveListOfListOfDouble", "ListOfDouble", - "ListOfDoubleOrAll", "FExpr_Multi", "RecursiveListOfDouble", "ColorExpr", - "ListOfColor", "RecursiveListOfColor", "StringExprVar", "StringExpr", + "RecombineAngle", "Constraints", "Coherence", "HomologyCommand", + "Homology", "FExpr", "FExpr_Single", "VExpr", "VExpr_Single", + "RecursiveListOfListOfDouble", "ListOfDouble", "ListOfDoubleOrAll", + "FExpr_Multi", "RecursiveListOfDouble", "ColorExpr", "ListOfColor", + "RecursiveListOfColor", "StringExprVar", "StringExpr", "RecursiveListOfStringExprVar", 0 }; #endif @@ -1084,61 +1087,61 @@ static const yytype_uint16 yytoknum[] = 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, - 385, 386, 387, 388, 389, 390, 63, 391, 392, 393, - 394, 60, 62, 395, 396, 43, 45, 42, 47, 37, - 33, 397, 398, 399, 94, 40, 41, 91, 93, 46, - 35, 44, 123, 125, 126 + 385, 386, 387, 388, 389, 390, 391, 63, 392, 393, + 394, 395, 60, 62, 396, 397, 43, 45, 42, 47, + 37, 33, 398, 399, 400, 94, 40, 41, 91, 93, + 46, 35, 44, 123, 125, 126 }; # endif /* YYR1[YYN] -- Symbol number of symbol that rule YYN derives. */ -static const yytype_uint16 yyr1[] = +static const yytype_uint8 yyr1[] = { - 0, 165, 166, 166, 167, 167, 168, 168, 168, 168, - 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, - 168, 168, 168, 169, 169, 170, 170, 170, 170, 170, - 170, 171, 171, 171, 172, 172, 172, 172, 172, 172, - 173, 173, 174, 174, 176, 177, 175, 178, 178, 180, - 179, 181, 181, 183, 182, 184, 184, 186, 185, 187, - 187, 187, 187, 187, 188, 188, 189, 189, 189, 189, - 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, - 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, - 189, 189, 189, 189, 190, 190, 191, 191, 191, 192, - 191, 191, 193, 191, 194, 194, 195, 195, 196, 196, - 196, 197, 197, 198, 198, 198, 199, 199, 200, 200, - 201, 201, 202, 203, 202, 202, 202, 202, 202, 202, - 202, 202, 202, 202, 202, 202, 204, 202, 202, 202, - 202, 202, 202, 202, 202, 202, 202, 202, 205, 202, - 202, 202, 202, 206, 202, 207, 207, 207, 207, 207, - 207, 207, 207, 208, 208, 209, 209, 209, 209, 209, - 209, 210, 210, 210, 210, 210, 210, 210, 210, 210, - 211, 211, 211, 211, 211, 212, 213, 213, 213, 213, - 214, 214, 214, 214, 214, 214, 214, 214, 214, 214, - 214, 214, 214, 214, 214, 214, 215, 215, 215, 215, - 215, 215, 215, 215, 215, 215, 216, 216, 216, 217, - 216, 218, 216, 219, 216, 220, 216, 216, 216, 216, - 216, 216, 216, 216, 216, 216, 221, 216, 222, 216, - 223, 216, 224, 216, 225, 216, 226, 216, 227, 216, - 228, 216, 229, 216, 230, 230, 231, 231, 231, 231, - 231, 231, 231, 231, 231, 231, 232, 232, 233, 233, - 234, 234, 235, 235, 236, 236, 236, 236, 236, 236, - 236, 236, 236, 237, 237, 238, 238, 238, 238, 239, - 239, 239, 240, 240, 240, 241, 241, 241, 241, 242, + 0, 166, 167, 167, 168, 168, 169, 169, 169, 169, + 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, + 169, 170, 170, 171, 171, 171, 171, 171, 171, 172, + 172, 172, 173, 173, 173, 173, 173, 173, 174, 174, + 175, 175, 177, 178, 176, 179, 179, 181, 180, 182, + 182, 184, 183, 185, 185, 187, 186, 188, 188, 188, + 188, 188, 189, 189, 190, 190, 190, 190, 190, 190, + 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, + 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, + 190, 190, 191, 191, 192, 192, 192, 193, 192, 192, + 194, 192, 195, 195, 196, 196, 197, 197, 197, 198, + 198, 199, 199, 199, 200, 200, 201, 201, 202, 202, + 203, 204, 203, 203, 203, 203, 203, 203, 203, 203, + 203, 203, 203, 203, 205, 203, 203, 203, 203, 203, + 203, 203, 203, 203, 203, 203, 206, 203, 203, 203, + 203, 207, 203, 208, 208, 208, 208, 208, 208, 208, + 208, 209, 209, 210, 210, 210, 210, 210, 210, 211, + 211, 211, 211, 211, 211, 211, 211, 211, 212, 212, + 212, 212, 212, 213, 214, 214, 214, 214, 215, 215, + 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, + 215, 215, 215, 215, 216, 216, 216, 216, 216, 216, + 216, 216, 216, 216, 217, 217, 217, 218, 217, 219, + 217, 220, 217, 221, 217, 217, 217, 217, 217, 217, + 217, 217, 217, 217, 222, 217, 223, 217, 224, 217, + 225, 217, 226, 217, 227, 217, 228, 217, 229, 217, + 230, 217, 231, 231, 232, 232, 232, 232, 232, 232, + 232, 232, 232, 232, 233, 233, 234, 234, 235, 235, + 236, 236, 237, 237, 237, 237, 237, 237, 237, 237, + 237, 237, 237, 237, 237, 237, 237, 237, 237, 238, + 238, 238, 239, 239, 239, 240, 240, 240, 240, 241, + 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, + 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, + 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, + 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, + 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, + 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, + 241, 242, 242, 242, 242, 242, 242, 242, 242, 242, 242, 242, 242, 242, 242, 242, 242, 242, 242, 242, - 242, 242, 242, 242, 242, 242, 242, 242, 242, 242, - 242, 242, 242, 242, 242, 242, 242, 242, 242, 242, - 242, 242, 242, 242, 242, 242, 242, 242, 242, 242, - 242, 242, 242, 242, 242, 242, 242, 242, 242, 242, - 242, 242, 242, 242, 242, 242, 242, 242, 242, 242, - 242, 243, 243, 243, 243, 243, 243, 243, 243, 243, - 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, - 243, 244, 244, 244, 244, 244, 245, 245, 245, 245, - 246, 246, 247, 247, 247, 247, 247, 247, 248, 248, - 249, 249, 249, 249, 249, 249, 249, 249, 249, 249, - 249, 249, 249, 249, 249, 249, 249, 249, 249, 249, - 250, 250, 250, 250, 251, 251, 251, 251, 252, 252, - 253, 253, 254, 254, 254, 254, 255, 255, 255, 255, - 255, 255, 255, 255, 255, 256, 256 + 242, 243, 243, 243, 243, 243, 244, 244, 244, 244, + 245, 245, 246, 246, 246, 246, 246, 246, 247, 247, + 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, + 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, + 249, 249, 249, 249, 250, 250, 250, 250, 251, 251, + 252, 252, 253, 253, 253, 253, 254, 254, 254, 254, + 254, 254, 254, 254, 254, 255, 255 }; /* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN. */ @@ -1146,33 +1149,33 @@ static const yytype_uint8 yyr2[] = { 0, 2, 1, 2, 0, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, - 1, 1, 1, 1, 2, 5, 5, 7, 7, 7, - 9, 6, 6, 6, 0, 2, 2, 2, 2, 2, - 1, 3, 1, 3, 0, 0, 10, 1, 3, 0, - 13, 1, 3, 0, 15, 8, 14, 0, 6, 1, - 1, 1, 1, 1, 1, 1, 5, 4, 6, 7, - 7, 9, 9, 3, 6, 4, 6, 9, 6, 9, - 5, 8, 8, 11, 6, 9, 5, 7, 9, 9, - 11, 7, 9, 9, 0, 1, 0, 3, 5, 0, - 9, 5, 0, 9, 3, 5, 0, 2, 3, 5, - 3, 0, 2, 3, 3, 5, 1, 1, 0, 5, - 0, 2, 7, 0, 9, 6, 7, 4, 7, 8, - 8, 7, 7, 11, 8, 8, 0, 9, 8, 9, - 3, 4, 10, 7, 7, 8, 8, 12, 0, 9, - 8, 7, 8, 0, 9, 5, 11, 5, 9, 9, - 4, 9, 9, 1, 1, 0, 2, 6, 6, 6, - 6, 8, 10, 14, 16, 12, 8, 8, 6, 14, - 4, 6, 6, 3, 4, 5, 3, 3, 4, 4, - 3, 7, 7, 3, 7, 3, 2, 2, 2, 2, - 15, 2, 2, 2, 2, 3, 6, 8, 8, 10, - 1, 2, 1, 3, 4, 1, 5, 11, 13, 0, - 7, 0, 13, 0, 15, 0, 6, 8, 8, 8, - 12, 12, 12, 14, 14, 14, 0, 12, 0, 12, - 0, 12, 0, 16, 0, 16, 0, 16, 0, 18, - 0, 18, 0, 18, 1, 2, 5, 7, 9, 2, - 2, 3, 2, 3, 9, 6, 0, 3, 0, 1, - 0, 2, 0, 2, 7, 6, 8, 5, 3, 7, - 5, 4, 6, 6, 12, 10, 10, 10, 10, 2, + 1, 1, 2, 5, 5, 7, 7, 7, 9, 6, + 6, 6, 0, 2, 2, 2, 2, 2, 1, 3, + 1, 3, 0, 0, 10, 1, 3, 0, 13, 1, + 3, 0, 15, 8, 14, 0, 6, 1, 1, 1, + 1, 1, 1, 1, 5, 4, 6, 7, 7, 9, + 9, 3, 6, 4, 6, 9, 6, 9, 5, 8, + 8, 11, 6, 9, 5, 7, 9, 9, 11, 7, + 9, 9, 0, 1, 0, 3, 5, 0, 9, 5, + 0, 9, 3, 5, 0, 2, 3, 5, 3, 0, + 2, 3, 3, 5, 1, 1, 0, 5, 0, 2, + 7, 0, 9, 6, 7, 4, 7, 8, 8, 7, + 7, 11, 8, 8, 0, 9, 8, 9, 3, 4, + 10, 7, 7, 8, 8, 12, 0, 9, 8, 7, + 8, 0, 9, 5, 11, 5, 9, 9, 4, 9, + 9, 1, 1, 0, 2, 6, 6, 6, 6, 8, + 10, 14, 16, 12, 8, 8, 6, 14, 4, 6, + 6, 3, 4, 5, 3, 3, 4, 4, 3, 7, + 7, 3, 7, 3, 2, 2, 2, 2, 15, 2, + 2, 2, 2, 3, 6, 8, 8, 10, 1, 2, + 1, 3, 4, 1, 5, 11, 13, 0, 7, 0, + 13, 0, 15, 0, 6, 8, 8, 8, 12, 12, + 12, 14, 14, 14, 0, 12, 0, 12, 0, 12, + 0, 16, 0, 16, 0, 16, 0, 18, 0, 18, + 0, 18, 1, 2, 5, 7, 9, 2, 2, 3, + 2, 3, 9, 6, 0, 3, 0, 1, 0, 2, + 0, 2, 7, 6, 8, 5, 3, 7, 5, 4, + 6, 6, 12, 10, 10, 10, 10, 4, 4, 2, 3, 6, 1, 1, 1, 2, 5, 7, 10, 1, 3, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 5, 4, @@ -1202,345 +1205,343 @@ static const yytype_uint16 yydefact[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 210, 0, 215, 0, 0, 0, 212, 0, 0, - 0, 0, 292, 293, 294, 0, 5, 7, 6, 8, - 9, 10, 21, 11, 12, 13, 20, 19, 14, 15, - 16, 17, 18, 0, 22, 361, 368, 436, 59, 362, - 363, 364, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 208, 0, 213, 0, 0, 0, 210, 0, + 0, 0, 0, 292, 293, 294, 0, 5, 7, 6, + 8, 9, 10, 19, 11, 12, 13, 18, 17, 14, + 15, 16, 0, 20, 361, 368, 436, 57, 362, 363, + 364, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 437, 0, + 0, 0, 0, 365, 366, 367, 61, 60, 59, 58, + 0, 0, 0, 63, 62, 0, 0, 0, 0, 163, + 0, 0, 0, 299, 0, 0, 0, 0, 0, 197, + 0, 199, 196, 200, 201, 94, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 437, - 0, 0, 0, 0, 365, 366, 367, 63, 62, 61, - 60, 0, 0, 0, 65, 64, 0, 0, 0, 0, - 165, 0, 0, 0, 299, 0, 0, 0, 0, 0, - 199, 0, 201, 198, 202, 203, 96, 0, 0, 0, + 0, 0, 202, 0, 0, 0, 0, 0, 0, 121, + 134, 146, 151, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 381, 0, 0, 0, + 0, 0, 163, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 163, 0, 289, 0, 0, 0, + 0, 0, 0, 0, 368, 399, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 413, 414, 392, 398, 0, + 393, 0, 0, 0, 0, 426, 0, 0, 0, 0, + 0, 194, 195, 0, 0, 209, 0, 163, 0, 163, + 368, 0, 295, 0, 0, 0, 0, 0, 0, 372, + 32, 436, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 204, 0, 0, 0, 0, 0, 0, - 123, 136, 148, 153, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 381, 0, 0, - 0, 0, 0, 165, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 165, 0, 289, 0, 0, - 0, 0, 0, 368, 399, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 413, 414, 392, 398, 0, 393, - 0, 0, 0, 0, 426, 0, 0, 0, 0, 0, - 196, 197, 0, 0, 211, 0, 165, 0, 165, 368, - 0, 295, 0, 0, 0, 0, 0, 0, 372, 34, - 436, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 302, 301, 303, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 162, 0, + 161, 0, 71, 191, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 188, + 138, 0, 0, 0, 0, 92, 0, 0, 420, 421, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 302, 301, 303, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 164, 0, 163, - 0, 73, 193, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 190, 140, - 0, 0, 0, 0, 94, 0, 0, 420, 421, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 268, 268, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 270, 270, 0, + 0, 0, 0, 383, 382, 0, 0, 0, 0, 163, + 163, 0, 0, 0, 0, 0, 0, 0, 223, 0, + 163, 0, 0, 0, 0, 0, 270, 0, 0, 0, + 0, 181, 0, 0, 0, 290, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 405, 0, 406, 407, + 408, 0, 0, 0, 0, 0, 301, 400, 0, 394, + 0, 0, 0, 276, 193, 0, 0, 0, 0, 0, + 163, 0, 0, 0, 0, 211, 184, 0, 185, 0, + 0, 203, 0, 0, 0, 0, 374, 0, 0, 73, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 383, 382, 0, 0, 0, 0, 165, 165, - 0, 0, 0, 0, 0, 0, 0, 225, 0, 165, - 0, 0, 0, 0, 0, 272, 0, 0, 0, 0, - 183, 0, 0, 0, 290, 0, 0, 0, 0, 0, - 0, 0, 0, 405, 0, 406, 407, 408, 0, 0, - 0, 0, 0, 301, 400, 0, 394, 0, 0, 0, - 278, 195, 0, 0, 0, 0, 0, 165, 0, 0, - 0, 0, 213, 186, 0, 187, 0, 0, 205, 0, - 0, 0, 0, 374, 0, 0, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 433, - 0, 432, 0, 0, 0, 0, 445, 0, 0, 0, - 0, 0, 0, 300, 59, 0, 0, 0, 59, 0, - 0, 0, 0, 0, 160, 0, 0, 0, 0, 166, - 67, 0, 317, 316, 315, 314, 310, 311, 313, 312, - 305, 304, 306, 307, 308, 309, 141, 0, 0, 0, - 0, 0, 0, 95, 0, 0, 0, 0, 0, 0, + 0, 0, 433, 0, 432, 0, 0, 0, 0, 445, + 0, 0, 0, 0, 0, 0, 300, 57, 0, 0, + 0, 57, 0, 0, 0, 0, 0, 158, 0, 0, + 0, 0, 164, 65, 0, 317, 316, 315, 314, 310, + 311, 313, 312, 305, 304, 306, 307, 308, 309, 139, + 0, 0, 0, 0, 0, 0, 93, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 268, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 127, 0, 0, 0, 385, 384, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 219, 0, 0, 0, 0, - 0, 0, 0, 281, 0, 0, 184, 0, 0, 180, - 0, 0, 0, 0, 0, 416, 0, 415, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 300, 395, 402, - 0, 306, 401, 0, 0, 0, 0, 0, 0, 0, - 0, 214, 0, 188, 189, 0, 0, 0, 0, 370, - 376, 0, 44, 0, 0, 0, 57, 0, 35, 36, - 37, 38, 39, 319, 340, 320, 341, 321, 342, 322, - 343, 323, 344, 324, 345, 325, 346, 326, 347, 327, - 348, 339, 360, 328, 349, 0, 0, 330, 351, 331, - 352, 332, 353, 333, 354, 334, 355, 335, 356, 0, - 0, 0, 0, 0, 0, 0, 0, 443, 0, 0, - 441, 442, 0, 380, 0, 86, 0, 438, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 80, 0, - 0, 0, 0, 371, 0, 0, 0, 0, 0, 25, - 23, 0, 0, 26, 0, 0, 66, 97, 0, 422, - 423, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 266, 271, - 269, 0, 277, 0, 0, 116, 117, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 155, - 157, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 254, 0, 216, 0, 0, 0, 0, - 0, 0, 273, 280, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 370, 417, 404, 0, 0, - 0, 0, 396, 0, 0, 0, 0, 0, 0, 0, - 185, 0, 0, 0, 0, 0, 0, 296, 0, 0, - 373, 0, 369, 0, 0, 0, 0, 0, 31, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 434, 0, - 0, 0, 446, 0, 0, 0, 0, 68, 0, 0, - 0, 0, 0, 74, 76, 78, 0, 0, 430, 0, - 84, 0, 0, 0, 0, 318, 24, 0, 0, 0, - 0, 0, 0, 0, 120, 120, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 125, 0, 0, 0, - 0, 0, 0, 275, 0, 0, 0, 0, 0, 0, - 0, 0, 283, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 259, 0, 0, 260, 0, 262, - 0, 226, 255, 0, 0, 0, 178, 0, 0, 0, - 282, 0, 182, 181, 291, 0, 0, 32, 33, 0, - 0, 409, 410, 411, 412, 403, 397, 0, 0, 0, - 427, 0, 0, 0, 206, 0, 0, 0, 0, 192, - 375, 191, 0, 0, 0, 0, 390, 0, 329, 350, - 336, 357, 337, 358, 338, 359, 0, 444, 440, 379, - 378, 439, 0, 70, 0, 59, 0, 0, 0, 0, - 69, 0, 0, 0, 428, 0, 0, 0, 0, 27, - 28, 0, 29, 0, 0, 98, 101, 122, 0, 0, - 0, 0, 0, 126, 0, 0, 143, 144, 0, 0, - 128, 151, 0, 0, 0, 118, 0, 274, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 194, 0, 0, - 0, 0, 165, 165, 0, 236, 0, 238, 0, 240, - 0, 392, 0, 0, 261, 263, 0, 0, 220, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 279, 419, - 418, 131, 132, 0, 0, 0, 0, 87, 91, 0, - 0, 297, 377, 0, 40, 0, 0, 0, 0, 0, - 42, 0, 0, 0, 0, 0, 81, 0, 0, 82, - 0, 431, 167, 168, 169, 170, 0, 0, 99, 102, - 0, 121, 129, 130, 134, 0, 0, 145, 0, 0, - 276, 138, 0, 0, 267, 150, 0, 0, 0, 0, - 135, 0, 146, 152, 0, 0, 0, 0, 389, 0, - 388, 0, 0, 0, 227, 0, 0, 228, 0, 0, - 229, 0, 0, 0, 0, 0, 0, 0, 177, 0, - 0, 176, 0, 0, 0, 171, 0, 0, 0, 0, - 425, 0, 208, 207, 0, 0, 0, 0, 45, 0, - 0, 0, 391, 0, 0, 0, 435, 72, 71, 77, - 79, 0, 85, 0, 30, 0, 106, 111, 0, 0, - 0, 0, 0, 0, 139, 124, 137, 149, 154, 0, - 0, 92, 93, 165, 0, 158, 159, 0, 0, 0, - 0, 0, 0, 0, 256, 0, 0, 165, 0, 0, - 0, 0, 0, 162, 161, 0, 0, 0, 0, 88, - 89, 0, 0, 41, 0, 0, 0, 43, 58, 0, - 429, 0, 0, 0, 285, 286, 287, 288, 142, 0, - 0, 0, 0, 0, 387, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 265, 0, 0, 0, 221, 0, - 0, 172, 0, 0, 0, 424, 209, 0, 298, 0, - 0, 0, 0, 83, 0, 0, 100, 107, 0, 103, - 112, 0, 0, 0, 156, 0, 242, 0, 0, 244, - 0, 0, 246, 0, 0, 0, 257, 0, 217, 0, - 165, 0, 0, 0, 133, 90, 0, 49, 0, 55, - 0, 0, 0, 0, 119, 147, 284, 386, 230, 0, - 0, 237, 231, 0, 0, 239, 232, 0, 0, 241, - 0, 0, 0, 223, 0, 175, 0, 0, 0, 0, - 0, 0, 0, 110, 0, 108, 114, 0, 113, 0, - 248, 0, 250, 0, 252, 258, 264, 222, 218, 0, - 0, 0, 0, 46, 0, 53, 0, 0, 0, 420, - 0, 0, 233, 0, 0, 234, 0, 0, 235, 0, - 0, 179, 0, 173, 0, 47, 0, 0, 200, 0, - 109, 0, 115, 0, 0, 0, 0, 0, 0, 224, - 0, 0, 0, 0, 0, 0, 104, 243, 0, 245, - 0, 247, 0, 174, 48, 50, 0, 51, 0, 0, - 0, 0, 0, 0, 0, 56, 105, 249, 251, 253, - 52, 54 + 266, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 125, 0, 0, 0, 385, 384, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 217, 0, + 0, 0, 0, 0, 0, 0, 279, 0, 0, 182, + 0, 0, 178, 0, 0, 0, 288, 287, 0, 0, + 416, 0, 415, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 300, 395, 402, 0, 306, 401, 0, 0, + 0, 0, 0, 0, 0, 0, 212, 0, 186, 187, + 0, 0, 0, 0, 370, 376, 0, 42, 0, 0, + 0, 55, 0, 33, 34, 35, 36, 37, 319, 340, + 320, 341, 321, 342, 322, 343, 323, 344, 324, 345, + 325, 346, 326, 347, 327, 348, 339, 360, 328, 349, + 0, 0, 330, 351, 331, 352, 332, 353, 333, 354, + 334, 355, 335, 356, 0, 0, 0, 0, 0, 0, + 0, 0, 443, 0, 0, 441, 442, 0, 380, 0, + 84, 0, 438, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 78, 0, 0, 0, 0, 371, 0, + 0, 0, 0, 0, 23, 21, 0, 0, 24, 0, + 0, 64, 95, 0, 422, 423, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 264, 269, 267, 0, 275, 0, 0, + 114, 115, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 153, 155, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 252, 0, + 214, 0, 0, 0, 0, 0, 0, 271, 278, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 370, 417, 404, 0, 0, 0, 0, 396, 0, 0, + 0, 0, 0, 0, 0, 183, 0, 0, 0, 0, + 0, 0, 296, 0, 0, 373, 0, 369, 0, 0, + 0, 0, 0, 29, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 434, 0, 0, 0, 446, 0, 0, + 0, 0, 66, 0, 0, 0, 0, 0, 72, 74, + 76, 0, 0, 430, 0, 82, 0, 0, 0, 0, + 318, 22, 0, 0, 0, 0, 0, 0, 0, 118, + 118, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 123, 0, 0, 0, 0, 0, 0, 273, 0, + 0, 0, 0, 0, 0, 0, 0, 281, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 257, + 0, 0, 258, 0, 260, 0, 224, 253, 0, 0, + 0, 176, 0, 0, 0, 280, 0, 180, 179, 291, + 0, 0, 30, 31, 0, 0, 409, 410, 411, 412, + 403, 397, 0, 0, 0, 427, 0, 0, 0, 204, + 0, 0, 0, 0, 190, 375, 189, 0, 0, 0, + 0, 390, 0, 329, 350, 336, 357, 337, 358, 338, + 359, 0, 444, 440, 379, 378, 439, 0, 68, 0, + 57, 0, 0, 0, 0, 67, 0, 0, 0, 428, + 0, 0, 0, 0, 25, 26, 0, 27, 0, 0, + 96, 99, 120, 0, 0, 0, 0, 0, 124, 0, + 0, 141, 142, 0, 0, 126, 149, 0, 0, 0, + 116, 0, 272, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 192, 0, 0, 0, 0, 163, 163, 0, + 234, 0, 236, 0, 238, 0, 392, 0, 0, 259, + 261, 0, 0, 218, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 277, 419, 418, 129, 130, 0, 0, + 0, 0, 85, 89, 0, 0, 297, 377, 0, 38, + 0, 0, 0, 0, 0, 40, 0, 0, 0, 0, + 0, 79, 0, 0, 80, 0, 431, 165, 166, 167, + 168, 0, 0, 97, 100, 0, 119, 127, 128, 132, + 0, 0, 143, 0, 0, 274, 136, 0, 0, 265, + 148, 0, 0, 0, 0, 133, 0, 144, 150, 0, + 0, 0, 0, 389, 0, 388, 0, 0, 0, 225, + 0, 0, 226, 0, 0, 227, 0, 0, 0, 0, + 0, 0, 0, 175, 0, 0, 174, 0, 0, 0, + 169, 0, 0, 0, 0, 425, 0, 206, 205, 0, + 0, 0, 0, 43, 0, 0, 0, 391, 0, 0, + 0, 435, 70, 69, 75, 77, 0, 83, 0, 28, + 0, 104, 109, 0, 0, 0, 0, 0, 0, 137, + 122, 135, 147, 152, 0, 0, 90, 91, 163, 0, + 156, 157, 0, 0, 0, 0, 0, 0, 0, 254, + 0, 0, 163, 0, 0, 0, 0, 0, 160, 159, + 0, 0, 0, 0, 86, 87, 0, 0, 39, 0, + 0, 0, 41, 56, 0, 429, 0, 0, 0, 283, + 284, 285, 286, 140, 0, 0, 0, 0, 0, 387, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 263, + 0, 0, 0, 219, 0, 0, 170, 0, 0, 0, + 424, 207, 0, 298, 0, 0, 0, 0, 81, 0, + 0, 98, 105, 0, 101, 110, 0, 0, 0, 154, + 0, 240, 0, 0, 242, 0, 0, 244, 0, 0, + 0, 255, 0, 215, 0, 163, 0, 0, 0, 131, + 88, 0, 47, 0, 53, 0, 0, 0, 0, 117, + 145, 282, 386, 228, 0, 0, 235, 229, 0, 0, + 237, 230, 0, 0, 239, 0, 0, 0, 221, 0, + 173, 0, 0, 0, 0, 0, 0, 0, 108, 0, + 106, 112, 0, 111, 0, 246, 0, 248, 0, 250, + 256, 262, 220, 216, 0, 0, 0, 0, 44, 0, + 51, 0, 0, 0, 420, 0, 0, 231, 0, 0, + 232, 0, 0, 233, 0, 0, 177, 0, 171, 0, + 45, 0, 0, 198, 0, 107, 0, 113, 0, 0, + 0, 0, 0, 0, 222, 0, 0, 0, 0, 0, + 0, 102, 241, 0, 243, 0, 245, 0, 172, 46, + 48, 0, 49, 0, 0, 0, 0, 0, 0, 0, + 54, 103, 247, 249, 251, 50, 52 }; /* YYDEFGOTO[NTERM-NUM]. */ static const yytype_int16 yydefgoto[] = { - -1, 2, 3, 76, 791, 77, 78, 495, 1163, 1169, - 708, 903, 1322, 1484, 709, 1439, 1516, 710, 1486, 711, - 712, 907, 151, 278, 79, 594, 374, 1276, 1277, 1468, - 1332, 1377, 1333, 1380, 824, 1203, 1090, 569, 400, 401, - 402, 403, 244, 348, 349, 82, 83, 84, 85, 86, - 87, 245, 856, 1399, 1459, 643, 1225, 1228, 1231, 1419, - 1423, 1427, 1473, 1476, 1479, 852, 853, 972, 821, 617, - 652, 89, 90, 91, 92, 93, 94, 246, 154, 413, - 207, 1045, 247, 248, 249, 467, 256, 782, 939, 546, - 541, 547 + -1, 2, 3, 77, 796, 78, 79, 498, 1168, 1174, + 713, 908, 1327, 1489, 714, 1444, 1521, 715, 1491, 716, + 717, 912, 150, 279, 80, 597, 375, 1281, 1282, 1473, + 1337, 1382, 1338, 1385, 829, 1208, 1095, 572, 401, 402, + 403, 404, 245, 349, 350, 83, 84, 85, 86, 87, + 88, 246, 861, 1404, 1464, 646, 1230, 1233, 1236, 1424, + 1428, 1432, 1478, 1481, 1484, 857, 858, 977, 826, 620, + 655, 90, 91, 92, 93, 247, 153, 414, 206, 1050, + 248, 249, 250, 470, 257, 787, 944, 549, 544, 550 }; /* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing STATE-NUM. */ -#define YYPACT_NINF -1142 +#define YYPACT_NINF -1091 static const yytype_int16 yypact[] = { - 4330, 2, 41, 4416, -1142, -1142, 2109, 45, -23, -101, - -89, 36, 44, 70, 84, 119, -11, -29, 24, 53, - 1, 57, 65, 22, 69, 99, 92, 129, 147, 331, - 200, 264, 163, 276, 216, 217, 80, 188, 295, 207, - -77, -77, 213, 749, 47, 54, 320, 340, 16, 13, - 346, 358, 403, 429, 2303, 450, 303, 309, 322, 23, - 52, -1142, 348, -1142, 472, 489, 354, -1142, 516, 533, - 31, 32, -1142, -1142, -1142, 831, -1142, -1142, -1142, -1142, - -1142, -1142, -1142, -1142, -1142, -1142, -1142, -1142, -1142, -1142, - -1142, -1142, -1142, 42, -1142, -1142, 5, 376, 504, -1142, - -1142, -1142, 87, 109, 300, 344, 412, 447, 452, 455, - 477, 491, 510, 536, 542, 546, 567, 575, 618, 633, - 642, 671, 672, 392, 408, 415, 416, 432, 441, -1142, - 599, 446, 456, 482, -1142, -1142, -1142, -1142, -1142, -1142, - -1142, 831, 831, 831, -1142, -1142, 3815, 1522, 12, 646, - 629, 2765, 645, 436, -1142, 648, 652, 831, 656, 657, - -1142, 831, -1142, -1142, -1142, -1142, -1142, 831, 4004, 831, - 831, 514, 831, 4004, 831, 831, 519, 4004, 831, 831, - 2765, 526, 532, -1142, 549, 566, 2303, 2303, 2303, 571, - -1142, -1142, -1142, -1142, 576, 580, 581, 2765, 831, 739, - 2765, -77, -77, -77, 831, 831, -71, -1142, -41, -77, - 592, 598, 601, 3850, -15, 26, 612, 619, 625, 2303, - 2303, 2765, 632, 49, 639, -1142, 796, -1142, 641, 681, - 704, 713, 714, 224, -1142, 718, 33, 871, 882, 887, - 506, 2919, 831, 1928, -1142, -1142, 3975, -1142, 891, -1142, - 894, 831, 831, 831, 734, 831, 743, 791, 831, 831, - -1142, -1142, 831, 903, -1142, 911, -1142, 912, -1142, 355, - 676, -1142, 2765, 2765, 753, 831, 910, 765, -1142, -1142, - -1142, 928, 831, 831, 831, 831, 831, 831, 831, 831, - 831, 831, 831, 831, 831, 831, 831, 831, 831, 831, - 831, 831, 831, 831, 831, 831, 831, 831, 831, 831, - 831, 831, 831, 831, 831, 831, 831, 831, 831, 831, - 831, 831, 831, 831, 77, 77, 77, 77, 77, 77, - 831, 77, 77, 77, 770, 770, 770, 4004, 6735, 81, - 4004, 5976, 490, 771, 930, 784, 778, -1142, 788, 4493, - 941, -1142, -1142, 831, 831, 831, 831, 831, 831, 831, - 831, 831, 831, 831, 831, 831, 831, 831, -1142, -1142, - 1290, 169, 173, 5274, 290, 6756, 4004, 4063, -1142, 616, - 6777, 6798, 831, 6819, 670, 6840, 6861, 831, 675, 6882, - 6903, 965, 831, 831, 831, 831, 975, 991, 991, 831, - 814, 818, 832, 852, 831, 831, 831, 997, 5194, 860, - 1005, 100, -1142, -1142, 5300, 5326, -77, -77, 629, 629, - 181, 831, 831, 831, 3850, 3850, 831, 4493, 254, -1142, - 831, 831, 831, 831, 831, 1008, 1036, 1040, 831, 1046, - -1142, 831, 831, 1212, -1142, 4004, 4004, 4004, 831, 831, - -149, 3620, 1049, -1142, 831, -1142, -1142, -1142, 921, 929, - 932, 933, 4004, 770, -1142, 6924, -1142, 706, 831, 3073, - -1142, -1142, 6945, 6966, 6987, 959, 5352, -1142, 940, 4082, - 7008, 5999, -1142, -1142, 1677, -1142, 2146, 831, -1142, 901, - 719, 831, 6022, -52, 831, 11, -1142, 7029, 6045, 7050, - 6068, 7071, 6091, 7092, 6114, 7113, 6137, 7134, 6160, 7155, - 6183, 7176, 6206, 7197, 6229, 7218, 6252, 7239, 6275, 5378, - 5404, 7260, 6298, 7281, 6321, 7302, 6344, 7323, 6367, 7344, - 6390, 7365, 6413, 5430, 5456, 5482, 5508, 5534, 5560, 680, - 212, -1142, 914, 915, 934, 919, -1142, 252, 1324, 949, - 963, 979, 725, 81, -1142, 2765, 735, 341, 504, 831, - 1120, 1147, 29, 994, -1142, 27, 28, 30, 55, -1142, - -1142, 4101, 1455, 1515, 1235, 1235, 810, 810, 810, 810, - 622, 622, 770, 770, 770, 770, -1142, 8, 4004, 1148, - 4004, 831, 1149, -1142, 1152, 1153, 4004, 4004, 1052, 1158, - 1160, 7386, 1161, 1059, 1164, 1166, 7407, 1066, 1168, 1170, - 831, 7428, 4522, 7449, 7470, 831, 2765, 1155, 1172, 7491, - 4152, 4152, 4152, 4152, 7512, 7533, 7554, 2765, 4004, 1021, - -1142, -77, 831, 831, -1142, -1142, 1018, 1019, 3850, 5586, - 5612, 5638, 5248, 586, -77, 2339, 7575, 4550, 7596, 7617, - 7638, 831, 1177, -1142, 831, 7659, -1142, 6436, 6459, -1142, - 762, 783, 789, 6482, 6505, -1142, 4004, -1142, 4004, 6528, - 1026, 4578, 4004, 4004, 4004, 4004, 804, -1142, -1142, 4123, - 4004, 770, -1142, 1180, 1181, 1184, 1035, 831, 2493, 831, - 831, -1142, 50, -1142, -1142, 1034, 2765, 1191, 6551, 754, - -1142, 4606, -1142, 1044, 1061, 1056, -1142, 1216, -1142, -1142, - -1142, -1142, -1142, -1142, -1142, -1142, -1142, -1142, -1142, -1142, - -1142, -1142, -1142, -1142, -1142, -1142, -1142, -1142, -1142, -1142, - -1142, -1142, -1142, -1142, -1142, 831, 831, -1142, -1142, -1142, - -1142, -1142, -1142, -1142, -1142, -1142, -1142, -1142, -1142, 831, - 831, 831, 831, 831, 831, 831, 1219, -1142, 4004, 77, - -1142, -1142, 77, -1142, 77, -1142, 831, -1142, 77, 1070, - 831, 1222, 1071, 35, 831, 1224, 1226, 1489, -1142, 1227, - 1076, 23, 1233, -1142, 4004, 4004, 4004, 4004, 831, -1142, - 1098, 77, 330, -1142, 349, 5664, -1142, 1234, -77, 4063, - -1142, 1185, 2765, 2765, 1237, 2765, 908, 2765, 2765, 1238, - 1182, 2765, 2765, 1555, 1239, 1241, 1243, 1244, 4211, -1142, - -1142, 1247, -1142, 1248, 1100, 7890, -1142, 1102, 1103, 1104, - 1254, 1256, 1267, 1270, 817, 1250, 266, 5690, 5716, -1142, - -1142, 4634, -39, -77, -77, -77, 1273, 1274, 1122, 1130, - 34, 39, -10, -1142, 280, -1142, 586, 1279, 1283, 1284, - 1286, 1287, 7890, -1142, 1739, 1128, 1292, 1297, 1298, 1252, - 831, 1299, 1300, 829, 842, -82, -1142, -1142, 847, 858, - 859, 863, -1142, 831, 864, 2765, 2765, 2765, 1304, 5742, - -1142, 4179, 1065, 1307, 1308, 2765, 1156, -1142, 1312, 1316, - -1142, 1315, -1142, 1176, 831, 831, 2765, 1163, -1142, 7680, - 6574, 7701, 6597, 7722, 6620, 7743, 6643, 6666, -1142, 380, - 1171, 1178, -1142, 7764, 1179, 81, 1888, -1142, 81, 585, - 1173, 1326, 2032, -1142, -1142, -1142, 23, 831, -1142, 872, - -1142, 875, 878, 885, 895, 7890, -1142, 1330, 38, 1332, - 831, 3535, 6, 1186, 1276, 1276, 2765, 1333, 1187, 1188, - 1334, 1338, 2765, 1189, 1340, 1346, -1142, 1348, 2765, 2765, - 2765, 1350, 1351, -1142, 2765, 1349, 1352, 1353, 1354, 2765, - 2765, 2765, -1142, 1355, 130, 831, 831, 831, 1201, 1202, - -99, 186, 221, 1208, -1142, 2765, 831, -1142, 1360, -1142, - 1362, -1142, -1142, 3850, 251, 2457, -1142, 1207, 1209, 3227, - -1142, 4004, -1142, -1142, -1142, 1210, 2138, -1142, -1142, 1214, - 1215, -1142, -1142, -1142, -1142, 7890, -1142, 1368, 1381, 1288, - -1142, 831, 831, 831, -1142, 1384, 154, 1231, 1387, -1142, - -52, -1142, 831, 5768, 5794, 899, -1142, 831, -1142, -1142, - -1142, -1142, -1142, -1142, -1142, -1142, 1245, -1142, -1142, -1142, - -1142, -1142, 2765, -1142, 2765, 504, 831, 1390, 1393, 29, - -1142, 1392, 6689, 23, -1142, 1394, 1396, 1397, 1399, -1142, - -1142, 77, -1142, 5820, 4152, 7890, -1142, -1142, 831, -77, - 1401, 1402, 1404, -1142, 831, 831, -1142, -1142, 1406, 831, - -1142, -1142, 1410, 1411, 1414, 1311, 831, -1142, 1418, 2765, - 2765, 2765, 2765, 1419, 1057, 1434, 831, -1142, 4152, 4662, - 7785, 4437, 629, 629, -77, 1435, -77, 1440, -77, 1441, - 831, 89, 1289, 7806, -1142, -1142, 4690, 289, -1142, 1442, - 1773, 1447, 2765, -77, 1773, 1448, 904, 831, -1142, -1142, - -1142, -1142, -1142, 2765, 4465, 386, 7827, -1142, -1142, 3579, - 2765, -1142, -1142, 390, 7890, 831, 831, 2765, 1293, 909, - 7890, 1452, 1451, 1468, 1469, 2871, -1142, 1470, 1473, -1142, - 1317, -1142, -1142, -1142, -1142, -1142, 1474, 831, 7890, -1142, - 4718, 133, -1142, -1142, -1142, 4746, 4774, -1142, 4802, 1453, - -1142, -1142, 1425, 1476, 7890, -1142, 1478, 1480, 1482, 1483, - -1142, 1328, -1142, -1142, 5221, 2891, 1485, 1331, -1142, 831, - -1142, 1329, 1336, 292, -1142, 1339, 323, -1142, 1341, 326, - -1142, 1342, 6712, 1488, 2765, 1493, 1343, 831, -1142, 3381, - 335, -1142, 913, 337, 495, -1142, 1496, 4830, 1403, 831, - -1142, 831, -1142, -1142, 4004, 3036, 1501, 1347, -1142, 831, - 5846, 5872, -1142, 2765, 831, 1503, -1142, -1142, -1142, -1142, - -1142, 23, -1142, 1407, -1142, 5898, -1142, -1142, 1505, 1506, - 1508, 1510, 1512, 1357, -1142, -1142, -1142, -1142, -1142, 2765, - 4004, -1142, -1142, 629, 4494, -1142, -1142, 3850, 586, 3850, - 586, 3850, 586, 1514, -1142, 918, 2765, -1142, 4858, -77, - 1516, 4004, -77, -1142, -1142, 831, 4886, 4914, 938, -1142, - -1142, 1518, 1372, 7890, 831, 831, 942, 7890, -1142, 1551, - -1142, 831, 945, 946, -1142, -1142, -1142, -1142, -1142, 831, - 950, 954, 1395, 831, -1142, 4942, 499, 316, 4970, 583, - 466, 4998, 594, 716, -1142, 2765, 1553, 1487, 2647, 1400, - 596, -1142, 957, 600, 3180, -1142, -1142, 1557, -1142, 831, - 7848, 5924, 37, -1142, 5950, 1562, -1142, -1142, 1564, -1142, - -1142, 5026, 1563, 1565, -1142, 5054, 1566, 831, 1568, 1569, - 831, 1570, 1571, 831, 1572, 1420, -1142, 831, -1142, 586, - -1142, 4004, 1576, 3381, -1142, -1142, 962, -1142, 831, -1142, - 2765, 831, 2611, 3780, -1142, -1142, -1142, -1142, -1142, 1408, - 5082, -1142, -1142, 1422, 5110, -1142, -1142, 1424, 5138, -1142, - 1581, 3199, 826, 2801, 966, -1142, 620, 969, 1582, 1427, - 7869, 970, 5166, -1142, 1928, -1142, -1142, 77, 7890, 586, - 1599, 586, 1601, 586, 1602, -1142, -1142, -1142, -1142, 586, - 1604, 4004, 1605, -1142, 77, -1142, 1450, 1608, 973, 3343, - 976, 839, -1142, 1456, 849, -1142, 1457, 881, -1142, 1459, - 906, -1142, 980, -1142, 983, -1142, 1460, 2765, -1142, 831, - -1142, 504, -1142, 1609, 586, 1611, 586, 1617, 586, -1142, - 1618, 77, 1639, 77, 986, 3956, -1142, -1142, 924, -1142, - 961, -1142, 995, -1142, -1142, -1142, 987, -1142, 1640, 504, - 1641, 1642, 1643, 77, 1644, -1142, -1142, -1142, -1142, -1142, - -1142, -1142 + 4451, 59, 75, 4538, -1091, -1091, 2134, 14, 67, -70, + -62, 24, 101, 126, 140, 143, 41, -90, 68, 93, + 17, 100, 104, 19, 115, 168, 266, 147, 283, 404, + 318, 325, 393, 339, 426, 546, -7, 272, 401, 304, + 280, 280, 327, 221, 50, 220, 465, 450, 16, 43, + 477, 480, 6, 561, 565, 2295, 568, 397, 444, 458, + 20, 37, -1091, 476, -1091, 599, 636, 489, -1091, 649, + 655, 27, 28, -1091, -1091, -1091, 4038, -1091, -1091, -1091, + -1091, -1091, -1091, -1091, -1091, -1091, -1091, -1091, -1091, -1091, + -1091, -1091, 40, -1091, -1091, 3, 509, 333, -1091, -1091, + -1091, 72, 224, 329, 338, 392, 398, 432, 454, 507, + 512, 541, 549, 590, 604, 616, 620, 626, 639, 653, + 662, 663, 511, 535, 540, 554, 555, 559, -1091, 723, + 577, 581, 585, -1091, -1091, -1091, -1091, -1091, -1091, -1091, + 4038, 4038, 4038, -1091, -1091, 3769, 1645, 11, 755, 865, + 2760, 745, 1060, -1091, 757, 764, 4038, 774, 781, -1091, + 4038, -1091, -1091, -1091, -1091, -1091, 4038, 3959, 4038, 4038, + 619, 4038, 3959, 4038, 4038, 642, 3959, 4038, 4038, 2760, + 643, 645, -1091, 656, 668, 2295, 2295, 2295, 672, -1091, + -1091, -1091, -1091, 692, 695, 698, 2760, 4038, 857, 2760, + 280, 280, 280, 4038, 4038, -84, -1091, -48, 280, 699, + 702, 708, 3804, 76, -80, 719, 726, 737, 2295, 2295, + 2760, 749, 4, 714, -1091, 873, -1091, 765, 775, 788, + 2295, 2295, 756, 834, 112, -1091, 838, 29, 934, 965, + 978, 526, 2915, 4038, 1972, -1091, -1091, 4194, -1091, 985, + -1091, 994, 4038, 4038, 4038, 844, 4038, 849, 916, 4038, + 4038, -1091, -1091, 4038, 1026, -1091, 1027, -1091, 1042, -1091, + 308, 1329, -1091, 2760, 2760, 894, 4038, 1050, 893, -1091, + -1091, -1091, 1051, 4038, 4038, 4038, 4038, 4038, 4038, 4038, + 4038, 4038, 4038, 4038, 4038, 4038, 4038, 4038, 4038, 4038, + 4038, 4038, 4038, 4038, 4038, 4038, 4038, 4038, 4038, 4038, + 4038, 4038, 4038, 4038, 4038, 4038, 4038, 4038, 4038, 4038, + 4038, 4038, 4038, 4038, 4038, 96, 96, 96, 96, 96, + 96, 4038, 96, 96, 96, 903, 903, 903, 3959, 6858, + 82, 3959, 6099, 78, 899, 1053, 904, 898, -1091, 906, + 4616, 1057, -1091, -1091, 4038, 4038, 4038, 4038, 4038, 4038, + 4038, 4038, 4038, 4038, 4038, 4038, 4038, 4038, 4038, -1091, + -1091, 1419, 32, 105, 5397, -12, 6879, 3959, 4213, -1091, + 245, 6900, 6921, 4038, 6942, 473, 6963, 6984, 4038, 492, + 7005, 7026, 1061, 4038, 4038, 4038, 4038, 1068, 1069, 1069, + 4038, 921, 922, 924, 925, 4038, 4038, 4038, 1075, 5317, + 927, 1079, 91, -1091, -1091, 5423, 5449, 280, 280, 865, + 865, 184, 4038, 4038, 4038, 3804, 3804, 4038, 4616, 250, + -1091, 4038, 4038, 4038, 4038, 4038, 1081, 1080, 1082, 4038, + 1084, -1091, 4038, 4038, 1216, -1091, 3959, 3959, 3959, 1086, + 1087, 4038, 4038, -135, 2058, 1090, -1091, 4038, -1091, -1091, + -1091, 932, 933, 936, 937, 3959, 903, -1091, 7047, -1091, + 520, 4038, 3070, -1091, -1091, 7068, 7089, 7110, 995, 5475, + -1091, 941, 4233, 7131, 6122, -1091, -1091, 1382, -1091, 1680, + 4038, -1091, 948, 661, 4038, 6145, 81, 4038, 13, -1091, + 7152, 6168, 7173, 6191, 7194, 6214, 7215, 6237, 7236, 6260, + 7257, 6283, 7278, 6306, 7299, 6329, 7320, 6352, 7341, 6375, + 7362, 6398, 5501, 5527, 7383, 6421, 7404, 6444, 7425, 6467, + 7446, 6490, 7467, 6513, 7488, 6536, 5553, 5579, 5605, 5631, + 5657, 5683, 669, 170, -1091, 944, 950, 951, 949, -1091, + 180, 2556, 952, 953, 954, 674, 82, -1091, 2760, 675, + 73, 333, 4038, 1106, 1109, 21, 956, -1091, -35, 25, + 22, -34, -1091, -1091, 4252, 1462, 1554, 1487, 1487, 380, + 380, 380, 380, 240, 240, 903, 903, 903, 903, -1091, + 10, 3959, 1112, 3959, 4038, 1114, -1091, 1118, 1116, 3959, + 3959, 1013, 1121, 1122, 7509, 1123, 1014, 1124, 1125, 7530, + 1023, 1128, 1129, 4038, 7551, 4645, 7572, 7593, 4038, 2760, + 1133, 1132, 7614, 4108, 4108, 4108, 4108, 7635, 7656, 7677, + 2760, 3959, 979, -1091, 280, 4038, 4038, -1091, -1091, 976, + 980, 3804, 5709, 5735, 5761, 5371, -13, 280, 1844, 7698, + 4673, 7719, 7740, 7761, 4038, 1136, -1091, 4038, 7782, -1091, + 6559, 6582, -1091, 681, 685, 696, -1091, -1091, 6605, 6628, + -1091, 3959, -1091, 3959, 6651, 986, 4701, 3959, 3959, 3959, + 3959, 716, -1091, -1091, 4280, 3959, 903, -1091, 1139, 1141, + 1142, 991, 4038, 2170, 4038, 4038, -1091, 38, -1091, -1091, + 989, 2760, 1147, 6674, 776, -1091, 4729, -1091, 998, 999, + 993, -1091, 1153, -1091, -1091, -1091, -1091, -1091, -1091, -1091, + -1091, -1091, -1091, -1091, -1091, -1091, -1091, -1091, -1091, -1091, + -1091, -1091, -1091, -1091, -1091, -1091, -1091, -1091, -1091, -1091, + 4038, 4038, -1091, -1091, -1091, -1091, -1091, -1091, -1091, -1091, + -1091, -1091, -1091, -1091, 4038, 4038, 4038, 4038, 4038, 4038, + 4038, 1156, -1091, 3959, 96, -1091, -1091, 96, -1091, 96, + -1091, 4038, -1091, 96, 1004, 4038, 1157, 1005, 15, 4038, + 1159, 1160, 2577, -1091, 1163, 1009, 20, 1165, -1091, 3959, + 3959, 3959, 3959, 4038, -1091, 1030, 96, 188, -1091, 251, + 5787, -1091, 1167, 280, 4213, -1091, 1117, 2760, 2760, 1170, + 2760, 825, 2760, 2760, 1174, 1127, 2760, 2760, 2723, 1175, + 1181, 1182, 1184, 4330, -1091, -1091, 1187, -1091, 1204, 1055, + 8013, -1091, 1056, 1062, 1063, 1207, 1210, 1214, 1217, 727, + 1220, 254, 5813, 5839, -1091, -1091, 4757, -94, 280, 280, + 280, 1221, 1224, 1064, 1070, 8, 49, -23, -1091, 292, + -1091, -13, 1225, 1228, 1229, 1230, 1232, 8013, -1091, 2868, + 1072, 1235, 1237, 1239, 1173, 4038, 1240, 1241, 730, 742, + -57, -1091, -1091, 747, 751, 758, 759, -1091, 4038, 763, + 2760, 2760, 2760, 1244, 5865, -1091, 4299, 579, 1245, 1246, + 2760, 1089, -1091, 1250, 1247, -1091, 1252, -1091, 1103, 4038, + 4038, 2760, 1097, -1091, 7803, 6697, 7824, 6720, 7845, 6743, + 7866, 6766, 6789, -1091, 285, 1104, 1107, -1091, 7887, 1108, + 82, 2887, -1091, 82, 110, 1120, 1256, 3033, -1091, -1091, + -1091, 20, 4038, -1091, 770, -1091, 771, 783, 784, 807, + 8013, -1091, 1260, 12, 1272, 4038, 3535, 5, 1126, 1215, + 1215, 2760, 1278, 1131, 1135, 1282, 1284, 2760, 1138, 1286, + 1289, -1091, 1291, 2760, 2760, 2760, 1295, 1297, -1091, 2760, + 1298, 1299, 1300, 1301, 2760, 2760, 2760, -1091, 1302, 153, + 4038, 4038, 4038, 1148, 1149, -54, 187, 223, 1152, -1091, + 2760, 4038, -1091, 1307, -1091, 1310, -1091, -1091, 3804, 36, + 2450, -1091, 1154, 1161, 3225, -1091, 3959, -1091, -1091, -1091, + 1162, 3178, -1091, -1091, 1166, 1171, -1091, -1091, -1091, -1091, + 8013, -1091, 1316, 1320, 1222, -1091, 4038, 4038, 4038, -1091, + 1325, 428, 1176, 1326, -1091, 81, -1091, 4038, 5891, 5917, + 812, -1091, 4038, -1091, -1091, -1091, -1091, -1091, -1091, -1091, + -1091, 1177, -1091, -1091, -1091, -1091, -1091, 2760, -1091, 2760, + 333, 4038, 1327, 1332, 21, -1091, 1333, 6812, 20, -1091, + 1334, 1335, 1337, 1338, -1091, -1091, 96, -1091, 5943, 4108, + 8013, -1091, -1091, 4038, 280, 1339, 1341, 1342, -1091, 4038, + 4038, -1091, -1091, 1344, 4038, -1091, -1091, 1347, 1348, 1349, + 1248, 4038, -1091, 1350, 2760, 2760, 2760, 2760, 1351, 827, + 1352, 4038, -1091, 4108, 4785, 7908, 4560, 865, 865, 280, + 1354, 280, 1356, 280, 1357, 4038, 370, 1203, 7929, -1091, + -1091, 4813, 313, -1091, 1360, 1807, 1361, 2760, 280, 1807, + 1362, 813, 4038, -1091, -1091, -1091, -1091, -1091, 2760, 4588, + 818, 7950, -1091, -1091, 3579, 2760, -1091, -1091, 314, 8013, + 4038, 4038, 2760, 1206, 816, 8013, 1366, 1365, 1367, 1368, + 3197, -1091, 1369, 1371, -1091, 1218, -1091, -1091, -1091, -1091, + -1091, 1373, 4038, 8013, -1091, 4841, 429, -1091, -1091, -1091, + 4869, 4897, -1091, 4925, 1370, -1091, -1091, 1328, 1375, 8013, + -1091, 1376, 1377, 1379, 1380, -1091, 1226, -1091, -1091, 5344, + 3343, 1381, 1234, -1091, 4038, -1091, 1227, 1238, 390, -1091, + 1236, 412, -1091, 1242, 421, -1091, 1249, 6835, 1386, 2760, + 1391, 1254, 4038, -1091, 3380, 447, -1091, 817, 479, 481, + -1091, 1395, 4953, 1303, 4038, -1091, 4038, -1091, -1091, 3959, + 3489, 1397, 1243, -1091, 4038, 5969, 5995, -1091, 2760, 4038, + 1402, -1091, -1091, -1091, -1091, -1091, 20, -1091, 1279, -1091, + 6021, -1091, -1091, 1407, 1409, 1412, 1413, 1414, 1265, -1091, + -1091, -1091, -1091, -1091, 2760, 3959, -1091, -1091, 865, 4617, + -1091, -1091, 3804, -13, 3804, -13, 3804, -13, 1417, -1091, + 822, 2760, -1091, 4981, 280, 1423, 3959, 280, -1091, -1091, + 4038, 5009, 5037, 833, -1091, -1091, 1426, 1270, 8013, 4038, + 4038, 839, 8013, -1091, 1438, -1091, 4038, 843, 846, -1091, + -1091, -1091, -1091, -1091, 4038, 847, 851, 1290, 4038, -1091, + 5065, 484, 253, 5093, 498, 407, 5121, 504, 409, -1091, + 2760, 1440, 1383, 2331, 1287, 527, -1091, 854, 533, 4067, + -1091, -1091, 1452, -1091, 4038, 7971, 6047, 34, -1091, 6073, + 1455, -1091, -1091, 1456, -1091, -1091, 5149, 1457, 1459, -1091, + 5177, 1474, 4038, 1475, 1476, 4038, 1477, 1482, 4038, 1483, + 1330, -1091, 4038, -1091, -13, -1091, 3959, 1485, 3380, -1091, + -1091, 855, -1091, 4038, -1091, 2760, 4038, 2605, 3734, -1091, + -1091, -1091, -1091, -1091, 1336, 5205, -1091, -1091, 1340, 5233, + -1091, -1091, 1345, 5261, -1091, 1489, 4137, 449, 2486, 858, + -1091, 603, 859, 1490, 1346, 7992, 862, 5289, -1091, 1972, + -1091, -1091, 96, 8013, -13, 1491, -13, 1494, -13, 1495, + -1091, -1091, -1091, -1091, -13, 1496, 3959, 1501, -1091, 96, + -1091, 1353, 1504, 875, 4156, 876, 451, -1091, 1358, 567, + -1091, 1359, 710, -1091, 1363, 712, -1091, 879, -1091, 882, + -1091, 1364, 2760, -1091, 4038, -1091, 333, -1091, 1505, -13, + 1506, -13, 1507, -13, -1091, 1509, 96, 1511, 96, 885, + 4175, -1091, -1091, 762, -1091, 773, -1091, 808, -1091, -1091, + -1091, 889, -1091, 1513, 333, 1514, 1517, 1518, 96, 1522, + -1091, -1091, -1091, -1091, -1091, -1091, -1091 }; /* YYPGOTO[NTERM-NUM]. */ static const yytype_int16 yypgoto[] = { - -1142, -1142, -1142, -1142, 717, -1142, -1142, -1142, -1142, 297, - -1142, -1142, -1142, -1142, -1142, -1142, -1142, -1142, -1142, -1142, - -1142, -1142, -290, -3, -1142, -1142, -1142, -1142, -1142, -1142, - -1142, -1142, -1142, -1142, -105, -1142, 715, 1668, -1142, -1142, - -1142, -1142, -1, -408, -207, -1142, -1142, -1142, -1142, -1142, - -1142, 1671, -1142, -1142, -1142, -1142, -1142, -1142, -1142, -1142, - -1142, -1142, -1142, -1142, -1142, -796, -785, -1142, -1142, 1278, - -1142, -1142, -1142, -1142, -1142, -1142, -1142, -2, -1142, 46, - -1142, -1141, 611, -92, 855, -75, -750, 609, -1142, -303, - -6, 232 + -1091, -1091, -1091, -1091, 508, -1091, -1091, -1091, -1091, 88, + -1091, -1091, -1091, -1091, -1091, -1091, -1091, -1091, -1091, -1091, + -1091, -1091, -331, -3, -1091, -1091, -1091, -1091, -1091, -1091, + -1091, -1091, -1091, -1091, 142, -1091, 569, 1527, -1091, -1091, + -1091, -1091, -1, -414, -211, -1091, -1091, -1091, -1091, -1091, + -1091, 1528, -1091, -1091, -1091, -1091, -1091, -1091, -1091, -1091, + -1091, -1091, -1091, -1091, -1091, -756, -773, -1091, -1091, 1094, + -1091, -1091, -1091, -1091, -1091, -2, -1091, 47, -1091, -1090, + 614, 377, 394, 239, -755, 459, -1091, -290, -6, 80 }; /* YYTABLE[YYPACT[STATE-NUM]]. What to do in state STATE-NUM. If @@ -1550,1780 +1551,1804 @@ static const yytype_int16 yypgoto[] = #define YYTABLE_NINF -5 static const yytype_int16 yytable[] = { - 155, 1242, 81, 152, 153, 171, 427, 665, 4, 274, - 636, 637, 1087, 666, 789, 702, 342, 226, 443, 227, - 223, 540, 542, 543, 544, 545, 176, 254, 549, 550, - 551, 938, 171, 780, 176, 157, 265, 267, 453, 929, - 997, 5, 160, 1409, 1080, 999, 416, 417, 271, 555, - 162, 215, 559, 439, 158, 440, 257, 893, 156, 484, - 1004, 486, 1124, 846, 1125, 228, 159, 1002, 202, 203, - 144, 145, 847, 270, 416, 417, 163, 899, 204, 848, - 849, 539, 280, 850, 851, 205, 206, 208, 554, 214, - 164, 418, 281, 379, 396, 397, 398, 468, 384, 216, - 144, 145, 388, 217, 416, 417, 416, 417, 703, 704, - 705, 706, 219, 218, 220, 123, 124, 125, 126, 343, - 344, 419, 1326, 129, 989, 165, 167, 435, 436, 998, - 416, 417, 224, 168, 1000, 197, 1117, 1118, 198, 334, - 335, 336, 930, 931, 338, 341, 166, 429, 1340, 347, - 790, 416, 417, 1001, 180, 370, 172, 144, 145, 373, - 1158, 1159, 275, 173, 276, 375, 377, 380, 381, 277, - 383, 377, 385, 386, 707, 377, 389, 390, 225, 169, - 790, 430, 167, 172, 177, 255, 1071, 181, 431, 784, - 785, 781, 786, 266, 268, 454, 408, 272, 161, 1410, - 132, 133, 414, 415, 273, 182, 441, 258, 170, 894, - 179, 415, 174, 137, 138, 139, 140, 787, 186, 1002, - 175, 187, 645, 188, 178, 353, 354, 355, 356, 357, - 358, 359, 360, 361, 362, 363, 469, 365, 366, 463, - 465, 377, 282, 367, 283, 416, 417, 411, 412, 472, - 473, 474, 1233, 476, 179, 420, 479, 480, 184, 428, - 481, 631, 552, 770, 284, 556, 285, 774, 190, 1441, - 688, 191, 194, 492, 192, 195, 193, 196, 416, 417, - 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, - 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, - 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, - 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, - 537, 538, 185, 1181, 846, 587, 416, 417, 548, 589, - 588, 416, 417, 847, 590, 377, 189, 183, 377, 560, - 848, 849, 638, 199, 850, 851, 1504, 1126, 554, 1127, - 200, 571, 572, 573, 574, 575, 576, 577, 578, 579, - 580, 581, 582, 583, 584, 585, 416, 417, 757, 201, - 660, 661, 662, 758, 463, 209, 144, 145, 221, 450, - 601, 451, 1128, 276, 1129, 606, 150, 676, 277, 846, - 611, 612, 613, 614, 1251, 222, 901, 619, 847, 416, - 417, 229, 624, 625, 626, 848, 849, 231, 763, 850, - 851, 416, 417, 764, 1138, 644, 230, 347, 347, 639, - 640, 641, 334, 335, 642, 416, 417, 985, 646, 647, - 648, 649, 650, 232, 416, 417, 655, 416, 417, 657, - 658, 1003, 352, 377, 377, 377, 663, 664, 592, 669, - 1237, 593, 671, 1297, 250, 286, 920, 287, 251, 921, - 377, 922, 634, 635, 252, 924, 679, 681, 416, 417, - 412, 416, 417, 137, 138, 139, 140, 253, 260, 1388, - 416, 417, 416, 417, 1299, 669, 948, 1301, 947, 698, - 700, 597, 701, 144, 145, 261, 1309, 558, 1311, 288, - 773, 289, 1347, 259, 1350, 949, 1353, 144, 145, 280, - 597, 262, 487, 792, 276, 794, 827, 828, 829, 277, - 263, 1329, 353, 354, 355, 356, 357, 358, 359, 360, - 361, 362, 363, 364, 365, 366, 1057, 264, 279, 846, - 367, 597, 123, 124, 125, 126, 1258, 324, 847, 1252, - 129, 1259, 776, 834, 775, 848, 849, 777, 458, 850, - 851, 459, 1002, 325, 460, 1002, 461, 290, 1002, 291, - 326, 327, 353, 354, 355, 356, 357, 358, 359, 360, - 361, 362, 363, 364, 365, 366, 377, 328, 377, 795, - 367, 873, 1065, 874, 681, 799, 329, 878, 879, 880, - 881, 331, 292, 1432, 293, 884, 330, 294, 813, 295, - 296, 332, 297, 818, 826, 826, 826, 826, 825, 825, - 825, 825, 137, 138, 139, 140, 377, 132, 133, 1391, - 837, 838, 298, 346, 299, 1062, 841, 333, 1064, 1066, - 416, 417, 144, 145, 416, 417, 300, 1002, 301, 862, - 345, 351, 864, 1471, 368, 1474, 1312, 1477, 369, 846, - 1387, 371, 372, 1480, 377, 302, 377, 303, 847, 382, - 377, 377, 377, 377, 387, 848, 849, 836, 377, 850, - 851, 392, 488, 919, 842, 889, 1002, 891, 892, 1002, - 854, 304, 1002, 305, 393, 1002, 900, 306, 1508, 307, - 1510, 308, 1512, 309, 394, 39, 40, 41, 42, 941, - 942, 943, 944, 47, 1221, 1222, 50, 137, 138, 139, - 140, 395, 310, 1002, 311, 1002, 399, 1002, 416, 417, - 312, 404, 313, 909, 910, 405, 406, 144, 145, 416, - 417, 416, 417, 409, 1390, 416, 417, 911, 912, 913, - 914, 915, 916, 917, 421, 1393, 377, 1401, 539, 280, - 422, 1403, 350, 423, 923, 416, 417, 432, 926, 364, - 365, 366, 932, 314, 433, 315, 367, 597, 1186, 598, - 434, 1461, 377, 377, 377, 377, 945, 438, 316, 846, - 317, 391, 123, 124, 125, 126, 442, 318, 847, 319, - 129, 210, 444, 445, 211, 848, 849, 212, 407, 850, - 851, 410, 353, 354, 355, 356, 357, 358, 359, 360, - 361, 362, 363, 364, 365, 366, 320, 322, 321, 323, - 367, 597, 437, 603, 95, 269, 597, 755, 607, 756, - 99, 100, 101, 446, 952, 102, 103, 104, 105, 106, - 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, - 117, 118, 119, 120, 121, 122, 447, 597, 1016, 678, - 448, 449, 900, 127, 128, 452, 455, 132, 133, 1394, - 696, 1025, 697, 489, 490, 1342, 597, 456, 769, 990, - 991, 992, 457, 475, 202, 203, 597, 470, 772, 846, - 471, 478, 1043, 1044, 204, 477, 144, 145, 847, 482, - 491, 213, 846, 899, 493, 848, 849, 483, 485, 850, - 851, 847, 846, 597, 367, 868, 1067, 494, 848, 849, - 561, 847, 850, 851, 496, 1072, 1146, 562, 848, 849, - 150, 563, 850, 851, 597, 1086, 869, 570, 1083, 1085, - 597, 564, 870, 131, 846, 362, 363, 364, 365, 366, - 134, 135, 136, 847, 367, 597, 958, 882, 959, 620, - 848, 849, 610, 621, 850, 851, 141, 142, 597, 846, - 983, 143, 615, 1119, 1120, 1121, 242, 622, 847, 1457, - 597, 149, 1019, 1131, 1133, 848, 849, 846, 616, 850, - 851, 1136, 1493, 597, 627, 1020, 847, 623, 597, 377, - 1021, 630, 1495, 848, 849, 651, 629, 850, 851, 597, - 597, 1022, 1023, 378, 597, 597, 1024, 1026, 378, 1154, - 1155, 1156, 378, 1073, 846, 1074, 597, 1162, 1075, 597, - 1164, 1076, 653, 847, 1497, 1170, 597, 654, 1077, 1137, - 848, 849, 656, 670, 850, 851, 597, 695, 1078, 1174, - 1167, 1211, 1168, 1212, 1175, 597, 686, 1246, 846, 1499, - 1264, 760, 1265, 1033, 1167, 759, 1310, 847, 1189, 1355, - 762, 1356, 1188, 672, 848, 849, 1190, 1520, 850, 851, - 761, 673, 1195, 1196, 674, 675, 464, 1198, 378, 597, - 1358, 1367, 689, 1167, 1204, 1372, 1375, 1378, 1376, 1379, - 766, 1167, 1216, 1382, 1214, 597, 1215, 1383, 597, 767, - 1402, 347, 347, 1264, 1521, 1438, 778, 597, 1232, 1460, - 597, 1167, 1462, 1466, 1489, 1191, 1490, 764, 377, 1492, - 768, 597, 377, 1500, 1501, 1247, 1502, 1167, 1523, 1518, - 1524, 779, 783, 1256, 793, 796, 797, 1255, 1522, 820, - 798, 1485, 801, 1260, 1261, 802, 771, 803, 805, 806, - 1223, 807, 1226, 808, 1229, 811, 810, 812, 822, 1318, - 835, 839, 840, 863, 876, 1275, 1240, 885, 886, 1243, - 1244, 887, 378, 1433, 888, 378, 895, 897, 1514, 904, - 1517, 353, 354, 355, 356, 357, 358, 359, 360, 361, - 362, 363, 364, 365, 366, 1341, 905, 1294, 906, 367, - 1530, 1034, 908, 918, 7, 8, 925, 819, 927, 928, - 933, 464, 934, 937, 936, 1308, 1362, 463, 833, 940, - 946, 951, 963, 953, 956, 962, 967, 1316, 968, 1317, - 969, 970, 377, 973, 984, 974, 975, 1323, 976, 977, - 978, 979, 1327, 980, 565, 18, 19, 566, 21, 22, - 567, 24, 568, 26, 981, 27, 982, 993, 30, 31, - 994, 33, 34, 35, 995, 996, 1005, 38, 377, 1006, - 1011, 1007, 347, 1008, 1009, 1345, 586, 1348, 1012, 1351, - 378, 378, 378, 1013, 1014, 1017, 1018, 896, 1030, 377, - 1015, 1035, 1036, 1364, 56, 57, 58, 378, 1039, 1038, - 1040, 1041, 1370, 1371, 682, 1047, 1434, 1058, 1437, 1374, - 765, 1042, 1068, 1069, 1059, 1061, 1079, 1381, 1082, 1093, - 1096, 1385, 1089, 1346, 1097, 1349, 1100, 1352, 1088, 1094, - 1095, 1099, 1101, 1102, 1106, 1360, 1109, 1107, 1363, 1110, - 1111, 1112, 1116, 1122, 1123, 1130, 1134, 1170, 1135, 1142, - 1149, 1143, 1147, 1150, 1151, 659, 358, 359, 360, 361, - 362, 363, 364, 365, 366, 1420, 1482, 1152, 1424, 367, - 1157, 1428, 1160, 1161, 1153, 1431, 1176, 1177, 1179, 377, - 1182, 377, 1183, 1184, 1171, 1185, 1440, 1192, 1193, 1442, - 1194, 1448, 1197, 954, 955, 1199, 957, 1200, 960, 961, - 1201, 1202, 964, 965, 1205, 1210, 353, 354, 355, 356, + 154, 428, 82, 151, 152, 639, 640, 275, 440, 558, + 441, 1092, 562, 444, 1002, 343, 794, 707, 1085, 934, + 222, 170, 670, 175, 255, 785, 175, 155, 671, 170, + 159, 943, 266, 268, 456, 543, 545, 546, 547, 548, + 1414, 258, 552, 553, 554, 898, 272, 225, 196, 226, + 851, 197, 417, 418, 214, 1004, 487, 1247, 489, 852, + 851, 230, 417, 418, 231, 4, 166, 853, 854, 852, + 994, 855, 856, 167, 271, 5, 431, 853, 854, 419, + 557, 855, 856, 432, 1007, 561, 157, 205, 207, 557, + 213, 282, 417, 418, 158, 227, 143, 144, 417, 418, + 542, 281, 215, 904, 1003, 1009, 216, 161, 1129, 851, + 1130, 708, 709, 710, 711, 420, 217, 1070, 852, 344, + 345, 166, 178, 935, 936, 156, 853, 854, 789, 792, + 855, 856, 162, 223, 122, 123, 124, 125, 335, 336, + 337, 1006, 128, 339, 342, 1005, 163, 595, 348, 164, + 596, 417, 418, 795, 371, 795, 143, 144, 374, 1122, + 1123, 276, 442, 277, 376, 378, 381, 382, 278, 384, + 378, 386, 387, 171, 378, 390, 391, 712, 1331, 224, + 172, 171, 176, 256, 786, 791, 1076, 160, 790, 590, + 267, 269, 457, 259, 591, 409, 273, 1415, 899, 165, + 1143, 415, 416, 274, 1345, 180, 136, 137, 138, 139, + 416, 136, 137, 138, 139, 136, 137, 138, 139, 648, + 131, 132, 417, 418, 168, 775, 143, 144, 283, 779, + 284, 143, 144, 778, 143, 144, 1007, 417, 418, 430, + 466, 468, 378, 136, 137, 138, 139, 412, 413, 169, + 475, 476, 477, 634, 479, 421, 173, 482, 483, 429, + 174, 484, 592, 143, 144, 143, 144, 593, 453, 693, + 454, 177, 277, 209, 495, 149, 210, 278, 218, 211, + 219, 500, 501, 502, 503, 504, 505, 506, 507, 508, + 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, + 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, + 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, + 539, 540, 541, 1186, 178, 1446, 851, 762, 179, 551, + 417, 418, 763, 417, 418, 852, 378, 768, 281, 378, + 563, 181, 769, 853, 854, 953, 641, 855, 856, 1131, + 600, 1132, 574, 575, 576, 577, 578, 579, 580, 581, + 582, 583, 584, 585, 586, 587, 588, 201, 202, 417, + 418, 122, 123, 124, 125, 466, 183, 203, 471, 128, + 285, 604, 286, 184, 212, 1133, 609, 1134, 365, 366, + 367, 614, 615, 616, 617, 368, 417, 418, 622, 188, + 417, 418, 1509, 627, 628, 629, 380, 600, 954, 601, + 182, 385, 647, 600, 906, 389, 990, 1393, 348, 348, + 642, 643, 644, 335, 336, 645, 201, 202, 198, 649, + 650, 651, 652, 653, 1163, 1164, 203, 658, 417, 418, + 660, 661, 1062, 204, 378, 378, 378, 600, 185, 668, + 669, 186, 674, 187, 1008, 676, 199, 131, 132, 417, + 418, 143, 144, 378, 637, 638, 490, 200, 277, 684, + 686, 1263, 413, 278, 925, 1242, 1264, 926, 189, 927, + 851, 190, 851, 929, 191, 287, 192, 288, 674, 852, + 208, 852, 703, 705, 289, 706, 290, 853, 854, 853, + 854, 855, 856, 855, 856, 221, 952, 354, 355, 356, + 357, 358, 359, 360, 361, 362, 363, 364, 472, 366, + 367, 1334, 851, 220, 851, 368, 363, 364, 365, 366, + 367, 852, 228, 852, 1238, 368, 417, 418, 229, 853, + 854, 853, 854, 855, 856, 855, 856, 1352, 291, 1355, + 292, 1358, 1302, 252, 293, 781, 294, 780, 417, 418, + 782, 379, 397, 398, 399, 232, 379, 417, 418, 233, + 379, 1396, 251, 1399, 1304, 417, 418, 555, 461, 1007, + 559, 462, 1007, 1306, 463, 1007, 464, 1038, 295, 378, + 296, 378, 800, 417, 418, 436, 437, 686, 804, 1067, + 253, 193, 1069, 1071, 194, 261, 195, 449, 450, 1314, + 297, 818, 298, 1462, 254, 1498, 823, 831, 831, 831, + 831, 830, 830, 830, 830, 417, 418, 417, 418, 378, + 417, 418, 260, 842, 843, 600, 467, 606, 379, 846, + 851, 1316, 262, 1317, 417, 418, 1392, 263, 1437, 852, + 417, 418, 867, 264, 600, 869, 610, 853, 854, 265, + 1395, 855, 856, 299, 1007, 300, 1398, 325, 301, 378, + 302, 378, 280, 417, 418, 378, 378, 378, 378, 417, + 418, 841, 600, 378, 683, 663, 664, 665, 847, 1406, + 894, 326, 896, 897, 859, 1408, 327, 303, 1476, 304, + 1479, 905, 1482, 1007, 681, 305, 1007, 306, 1485, 1007, + 328, 329, 1007, 1226, 1227, 330, 354, 355, 356, 357, + 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, + 331, 1500, 379, 332, 368, 379, 1039, 333, 914, 915, + 1007, 334, 1007, 1513, 1007, 1515, 307, 1517, 308, 417, + 418, 352, 916, 917, 918, 919, 920, 921, 922, 346, + 309, 378, 310, 369, 351, 1466, 832, 833, 834, 928, + 370, 467, 311, 931, 312, 383, 313, 937, 314, 372, + 542, 281, 315, 851, 316, 851, 373, 378, 378, 378, + 378, 950, 852, 392, 852, 317, 1191, 318, 388, 393, + 853, 854, 853, 854, 855, 856, 855, 856, 394, 319, + 408, 320, 395, 411, 122, 123, 124, 125, 321, 323, + 322, 324, 128, 701, 396, 702, 1256, 760, 400, 761, + 797, 1216, 799, 1217, 438, 851, 600, 600, 774, 777, + 379, 379, 379, 600, 852, 873, 851, 600, 405, 874, + 957, 406, 853, 854, 407, 852, 855, 856, 600, 379, + 875, 410, 422, 853, 854, 423, 687, 855, 856, 347, + 839, 424, 443, 1021, 1502, 433, 1504, 905, 600, 445, + 887, 851, 434, 963, 1347, 964, 1030, 492, 493, 600, + 852, 988, 600, 435, 1024, 995, 996, 997, 853, 854, + 131, 132, 855, 856, 600, 439, 1025, 1048, 1049, 600, + 878, 1026, 879, 600, 451, 1027, 883, 884, 885, 886, + 600, 600, 1028, 1029, 889, 600, 1525, 1031, 446, 143, + 144, 1072, 1078, 600, 1079, 1080, 904, 1526, 447, 458, + 1077, 39, 40, 41, 42, 600, 600, 1081, 1082, 47, + 1091, 448, 50, 1088, 1090, 354, 355, 356, 357, 358, + 359, 360, 361, 362, 363, 364, 365, 366, 367, 600, + 459, 1083, 1527, 368, 1172, 600, 1173, 1251, 1269, 1172, + 1270, 1315, 1257, 460, 1360, 379, 1361, 379, 1124, 1125, + 1126, 473, 452, 687, 805, 600, 455, 1372, 1136, 1138, + 474, 1172, 924, 1377, 478, 1380, 1141, 1381, 1383, 1172, + 1384, 1387, 480, 600, 378, 1388, 600, 1269, 1407, 1443, + 600, 600, 1465, 1467, 1172, 379, 1471, 481, 946, 947, + 948, 949, 485, 486, 1159, 1160, 1161, 1494, 769, 1495, + 1497, 600, 1167, 1505, 1506, 1169, 1507, 1172, 488, 1523, + 1175, 1528, 494, 1529, 496, 1142, 497, 499, 368, 564, + 565, 149, 566, 573, 1179, 379, 353, 379, 613, 1180, + 567, 379, 379, 379, 379, 618, 619, 623, 624, 379, + 625, 626, 630, 1194, 632, 633, 656, 1193, 654, 657, + 659, 1195, 666, 667, 675, 677, 678, 1200, 1201, 679, + 680, 1363, 1203, 691, 694, 700, 764, 765, 766, 1209, + 772, 767, 783, 784, 771, 788, 773, 1221, 798, 1219, + 801, 1220, 802, 803, 806, 811, 348, 348, 807, 808, + 810, 812, 813, 1237, 815, 816, 817, 825, 827, 840, + 844, 1196, 868, 378, 845, 881, 890, 378, 891, 892, + 1252, 893, 900, 902, 909, 910, 911, 379, 1261, 913, + 923, 930, 1260, 932, 933, 938, 939, 942, 1265, 1266, + 941, 945, 776, 951, 956, 958, 1228, 961, 1231, 1490, + 1234, 967, 972, 379, 379, 379, 379, 968, 973, 974, + 1280, 975, 1245, 978, 1438, 1248, 1249, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, - 1213, 1224, 1469, 378, 367, 378, 1227, 1230, 1238, 1436, - 1234, 682, 800, 1241, 1245, 1263, 1266, 1267, 1282, 377, - 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, - 363, 364, 365, 366, 1268, 1269, 1273, 1271, 367, 1272, - 1274, 1283, 1284, 378, 1285, 1506, 1286, 1505, 1287, 1288, - 1289, 1292, 1295, 1293, 1304, 935, 1027, 1028, 1029, 1296, - 1306, 1298, 1313, 1300, 1302, 1307, 1037, 1320, 1315, 1328, - 1321, 1334, 1335, 1526, 1336, 1330, 1337, 1046, 1338, 1339, - 1354, 378, 1361, 378, 1368, 95, 269, 378, 378, 378, - 378, 99, 100, 101, 1369, 378, 102, 103, 104, 105, - 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, - 116, 117, 118, 119, 120, 121, 122, 1373, 1384, 1396, - 1397, 966, 1400, 1405, 127, 128, 1412, 1092, 1413, 1415, - 1449, 1416, 1418, 1098, 1421, 1422, 1425, 1426, 1429, 1103, - 1104, 1105, 1435, 1430, 1451, 1108, 1453, 1455, 1463, 1464, - 1113, 1114, 1115, 355, 356, 357, 358, 359, 360, 361, - 362, 363, 364, 365, 366, 1472, 1132, 1475, 1478, 367, - 1481, 1483, 1487, 378, 1488, 1507, 1141, 1509, 1494, 1496, - 1145, 1498, 1503, 1511, 1513, 353, 354, 355, 356, 357, - 358, 359, 360, 361, 362, 363, 364, 365, 366, 378, - 378, 378, 378, 367, 131, 1515, 1525, 1527, 1528, 1529, - 1531, 134, 135, 136, 356, 357, 358, 359, 360, 361, - 362, 363, 364, 365, 366, 1081, 1406, 141, 142, 367, - 1091, 80, 143, 1172, 88, 1173, 618, 242, 1178, 1470, - 339, 0, 149, 0, 340, 0, 0, 0, 0, 7, - 8, 353, 354, 355, 356, 357, 358, 359, 360, 361, - 362, 363, 364, 365, 366, 0, 0, 0, 0, 367, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 1206, 1207, 1208, 1209, 0, 0, 0, 0, 0, 565, - 18, 19, 566, 21, 22, 567, 24, 568, 26, 0, - 27, 0, 0, 30, 31, 1010, 33, 34, 35, 0, - 0, 0, 38, 1046, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 1248, 0, 0, 0, 0, 0, - 0, 1257, 0, 0, 0, 0, 95, 233, 1262, 56, - 57, 58, 99, 100, 101, 0, 0, 102, 103, 104, - 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, - 115, 116, 117, 118, 119, 120, 121, 122, 235, 0, - 0, 0, 0, 0, 0, 127, 128, 0, 0, 0, - 0, 0, 0, 0, 0, 236, 0, 0, 237, 0, - 0, 238, 0, 239, 0, 0, 0, 0, 0, 0, - 693, 0, 0, 240, 0, 1305, 0, 0, 0, 39, - 40, 41, 42, 43, 0, 0, 0, 47, 0, 0, - 50, 0, 0, 0, 0, 0, 378, 0, 0, 0, - 0, 0, 0, 0, 1046, 353, 354, 355, 356, 357, - 358, 359, 360, 361, 362, 363, 364, 365, 366, 0, - 0, 0, 0, 367, 1063, 131, 0, 0, 0, 0, - 1046, 0, 134, 135, 136, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 1357, 424, 1239, - 0, 0, 0, 143, 0, 0, 0, 0, 426, 0, - 0, 95, 233, 149, 0, 205, 466, 99, 100, 101, - 0, 0, 102, 103, 104, 105, 106, 107, 108, 109, + 367, 979, 980, 981, 984, 368, 1519, 985, 1522, 982, + 983, 986, 1299, 987, 989, 998, 1001, 1000, 7, 8, + 999, 1020, 1010, 824, 1011, 1016, 1012, 1013, 1535, 1014, + 1313, 1017, 466, 1018, 838, 1019, 1022, 1023, 1035, 1040, + 1041, 1045, 1321, 1043, 1322, 1151, 1044, 378, 1046, 1047, + 1052, 1063, 1328, 1074, 1064, 1066, 1084, 1332, 568, 18, + 19, 569, 21, 22, 570, 24, 571, 26, 1087, 27, + 1073, 1094, 30, 31, 1098, 33, 34, 35, 1101, 1093, + 1102, 38, 1105, 378, 1099, 1106, 1107, 348, 1100, 1111, + 1350, 1104, 1353, 1112, 1356, 1114, 1115, 1116, 1117, 1121, + 1135, 1127, 1128, 1139, 378, 901, 1140, 1147, 1369, 57, + 58, 59, 1156, 1154, 1148, 1152, 1157, 1375, 1376, 1158, + 1155, 1162, 1166, 1181, 1379, 491, 1182, 1176, 1165, 1184, + 1187, 1188, 1386, 1189, 1190, 1197, 1390, 1198, 1199, 1351, + 1202, 1354, 1204, 1357, 1205, 1206, 1210, 1215, 1218, 1207, + 1229, 1365, 1232, 1235, 1368, 1239, 1243, 1246, 1250, 1268, + 1271, 1272, 1175, 1273, 1274, 1287, 1276, 1277, 1278, 1279, + 662, 1289, 1290, 1291, 1288, 1292, 1293, 1297, 1335, 1294, + 1425, 1300, 1309, 1429, 7, 8, 1433, 1298, 1311, 1303, + 1436, 1318, 1301, 1325, 378, 1305, 378, 1326, 1333, 1320, + 379, 1445, 1307, 1339, 1447, 1340, 1453, 1312, 1341, 1342, + 1343, 959, 960, 1359, 962, 589, 965, 966, 1344, 1366, + 969, 970, 1373, 1374, 568, 18, 19, 569, 21, 22, + 570, 24, 571, 26, 1378, 27, 1401, 1474, 30, 31, + 1405, 33, 34, 35, 1389, 1441, 1402, 38, 1410, 1417, + 1418, 1086, 1411, 1420, 378, 1421, 354, 355, 356, 357, + 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, + 1423, 1426, 1427, 1430, 368, 57, 58, 59, 1431, 1434, + 1511, 1440, 1510, 621, 1435, 1460, 1468, 1477, 1323, 1454, + 1480, 1483, 1486, 1456, 1032, 1033, 1034, 1488, 1458, 1469, + 1493, 1512, 1514, 1516, 1042, 1518, 1492, 1520, 1531, 1530, + 1532, 1499, 1501, 1533, 1534, 1051, 1503, 1508, 1536, 1096, + 81, 89, 1475, 1183, 1346, 0, 0, 0, 0, 379, + 0, 0, 0, 379, 0, 0, 698, 0, 0, 0, + 0, 0, 0, 0, 0, 1367, 354, 355, 356, 357, + 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, + 0, 0, 0, 0, 368, 1097, 0, 0, 0, 0, + 0, 1103, 0, 0, 0, 0, 0, 1108, 1109, 1110, + 0, 0, 0, 1113, 0, 0, 0, 0, 1118, 1119, + 1120, 356, 357, 358, 359, 360, 361, 362, 363, 364, + 365, 366, 367, 0, 1137, 0, 0, 368, 0, 0, + 0, 0, 0, 0, 1146, 0, 0, 0, 1150, 359, + 360, 361, 362, 363, 364, 365, 366, 367, 467, 0, + 0, 0, 368, 0, 0, 1439, 0, 1442, 94, 270, + 0, 0, 0, 379, 98, 99, 100, 0, 0, 101, + 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, + 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, + 0, 1177, 0, 1178, 0, 0, 0, 126, 127, 379, + 0, 0, 7, 8, 357, 358, 359, 360, 361, 362, + 363, 364, 365, 366, 367, 1487, 0, 0, 0, 368, + 379, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1211, 1212, + 1213, 1214, 568, 18, 19, 569, 21, 22, 570, 24, + 571, 26, 0, 27, 0, 0, 30, 31, 0, 33, + 34, 35, 0, 0, 0, 38, 0, 0, 0, 0, + 0, 1051, 0, 0, 0, 0, 0, 0, 130, 0, + 0, 0, 1253, 0, 0, 133, 134, 135, 0, 1262, + 0, 0, 0, 57, 58, 59, 1267, 0, 0, 0, + 0, 140, 141, 0, 0, 0, 142, 0, 0, 0, + 379, 243, 379, 0, 340, 0, 148, 0, 341, 0, + 94, 234, 0, 0, 0, 0, 98, 99, 100, 0, + 0, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, - 120, 121, 122, 235, 0, 0, 1395, 0, 0, 0, - 127, 128, 0, 0, 0, 0, 0, 0, 0, 0, - 236, 0, 0, 237, 0, 0, 238, 0, 239, 0, - 0, 0, 0, 0, 0, 378, 0, 0, 240, 378, - 0, 0, 0, 0, 39, 40, 41, 42, 43, 0, - 0, 0, 47, 0, 0, 50, 0, 0, 0, 0, - 0, 1046, 0, 1445, 353, 354, 355, 356, 357, 358, - 359, 360, 361, 362, 363, 364, 365, 366, 1070, 0, - 0, 0, 367, 0, 0, 0, 0, 0, 0, 0, - 131, 0, 0, 0, 0, 0, 0, 134, 135, 136, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 141, 376, 0, 0, 0, 143, 0, - 0, 0, 0, 242, 0, 0, 0, 0, 149, 0, - 0, 466, 0, 0, 464, 0, 0, 0, 1046, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 378, - 0, 0, 95, 96, 97, 0, 98, 0, 99, 100, - 101, 0, 0, 102, 103, 104, 105, 106, 107, 108, + 120, 121, 236, 379, 699, 0, 0, 0, 0, 126, + 127, 0, 0, 1310, 0, 0, 7, 8, 0, 237, + 379, 0, 238, 0, 0, 239, 0, 240, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 241, 0, 0, + 0, 0, 1051, 39, 40, 41, 42, 43, 0, 0, + 0, 47, 0, 0, 50, 0, 568, 18, 19, 569, + 21, 22, 570, 24, 571, 26, 0, 27, 1051, 0, + 30, 31, 0, 33, 34, 35, 0, 0, 0, 38, + 0, 0, 0, 0, 0, 1362, 0, 0, 0, 0, + 130, 0, 0, 0, 0, 0, 0, 133, 134, 135, + 0, 0, 0, 0, 0, 0, 0, 57, 58, 59, + 0, 0, 0, 425, 1244, 0, 0, 0, 142, 0, + 0, 0, 0, 427, 0, 0, 0, 0, 148, 0, + 204, 469, 0, 0, 1400, 94, 234, 0, 0, 0, + 0, 98, 99, 100, 0, 0, 101, 102, 103, 104, + 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, + 115, 116, 117, 118, 119, 120, 121, 236, 860, 0, + 0, 0, 0, 0, 126, 127, 0, 0, 0, 0, + 0, 0, 0, 0, 237, 0, 0, 238, 0, 1051, + 239, 1450, 240, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 241, 0, 0, 0, 0, 0, 39, 40, + 41, 42, 43, 0, 0, 0, 47, 0, 0, 50, + 0, 94, 270, 0, 0, 0, 0, 98, 99, 100, + 0, 0, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, - 119, 120, 121, 122, 1148, 378, 0, 123, 124, 125, - 126, 127, 128, 0, 0, 129, 0, 0, 7, 8, - 0, 0, 0, 0, 0, 0, 378, 0, 353, 354, - 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, - 365, 366, 0, 0, 0, 0, 367, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 565, 18, - 19, 566, 21, 22, 567, 24, 568, 26, 0, 27, + 119, 120, 121, 0, 0, 130, 0, 0, 0, 0, + 126, 127, 133, 134, 135, 0, 1051, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 140, 377, + 0, 0, 0, 142, 0, 0, 0, 0, 243, 0, + 0, 0, 0, 148, 0, 0, 469, 94, 95, 96, + 0, 97, 0, 98, 99, 100, 0, 0, 101, 102, + 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, + 113, 114, 115, 116, 117, 118, 119, 120, 121, 0, + 0, 0, 122, 123, 124, 125, 126, 127, 0, 0, + 128, 130, 7, 8, 0, 0, 0, 0, 133, 134, + 135, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 140, 141, 0, 0, 0, 142, + 0, 0, 0, 0, 243, 0, 0, 672, 0, 148, + 0, 673, 568, 18, 19, 569, 21, 22, 570, 24, + 571, 26, 0, 27, 0, 0, 30, 31, 0, 33, + 34, 35, 0, 0, 0, 38, 0, 0, 0, 0, + 0, 129, 0, 0, 0, 0, 0, 130, 131, 132, + 0, 0, 0, 0, 133, 134, 135, 136, 137, 138, + 139, 0, 0, 57, 58, 59, 0, 0, 0, 0, + 140, 141, 0, 0, 0, 142, 0, 143, 144, 0, + 145, 0, 146, 0, 147, 148, 0, 149, 94, 234, + 235, 0, 0, 0, 98, 99, 100, 0, 0, 101, + 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, + 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, + 236, 0, 0, 0, 895, 0, 0, 126, 127, 0, + 0, 0, 0, 7, 8, 0, 0, 237, 0, 0, + 238, 0, 0, 239, 0, 240, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 241, 0, 0, 0, 0, + 0, 39, 40, 41, 42, 43, 0, 0, 0, 47, + 0, 0, 50, 568, 18, 19, 569, 21, 22, 570, + 24, 571, 26, 0, 27, 0, 0, 30, 31, 0, + 33, 34, 35, 0, 0, 0, 38, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 130, 0, + 0, 0, 0, 0, 0, 133, 134, 135, 0, 0, + 0, 0, 0, 0, 57, 58, 59, 0, 0, 0, + 0, 140, 242, 0, 0, 0, 142, 0, 0, 0, + 0, 243, 0, 94, 234, 1144, 148, 0, 244, 98, + 99, 100, 0, 0, 101, 102, 103, 104, 105, 106, + 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, + 117, 118, 119, 120, 121, 236, 0, 0, 0, 0, + 0, 0, 126, 127, 0, 1403, 0, 0, 7, 8, + 0, 0, 237, 0, 0, 238, 0, 0, 239, 0, + 240, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 241, 0, 0, 0, 0, 0, 39, 40, 41, 42, + 43, 0, 0, 0, 47, 0, 0, 50, 568, 18, + 19, 569, 21, 22, 570, 24, 571, 26, 0, 27, 0, 0, 30, 31, 0, 33, 34, 35, 0, 0, - 0, 38, 0, 0, 0, 130, 0, 0, 0, 0, - 0, 131, 132, 133, 0, 0, 0, 0, 134, 135, - 136, 137, 138, 139, 140, 0, 0, 0, 56, 57, - 58, 0, 0, 0, 141, 142, 378, 0, 378, 143, - 0, 144, 145, 0, 146, 0, 147, 0, 148, 149, - 0, 150, 0, 0, 353, 354, 355, 356, 357, 358, - 359, 360, 361, 362, 363, 364, 365, 366, 0, 0, - 0, 0, 367, 0, 0, 0, 0, 0, 0, 378, - 0, 0, 0, 0, 0, 0, 95, 233, 234, 694, - 0, 0, 99, 100, 101, 0, 378, 102, 103, 104, - 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, - 115, 116, 117, 118, 119, 120, 121, 122, 235, 0, - 0, 0, 0, 0, 0, 127, 128, 0, 0, 0, - 0, 7, 8, 0, 0, 236, 0, 0, 237, 0, - 0, 238, 0, 239, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 240, 0, 0, 0, 0, 0, 39, - 40, 41, 42, 43, 0, 0, 0, 47, 0, 0, - 50, 565, 18, 19, 566, 21, 22, 567, 24, 568, - 26, 0, 27, 0, 0, 30, 31, 0, 33, 34, - 35, 0, 0, 0, 38, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 131, 0, 0, 0, 0, - 0, 0, 134, 135, 136, 0, 0, 0, 0, 0, - 0, 56, 57, 58, 0, 0, 0, 0, 141, 241, - 0, 0, 0, 143, 0, 0, 0, 0, 242, 0, - 95, 233, 1139, 149, 0, 243, 99, 100, 101, 0, - 0, 102, 103, 104, 105, 106, 107, 108, 109, 110, - 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, - 121, 122, 235, 0, 0, 0, 0, 0, 0, 127, - 128, 0, 855, 0, 0, 7, 8, 0, 0, 236, - 0, 0, 237, 0, 0, 238, 0, 239, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 240, 0, 0, - 0, 0, 0, 39, 40, 41, 42, 43, 0, 0, - 0, 47, 0, 0, 50, 565, 18, 19, 566, 21, - 22, 567, 24, 568, 26, 0, 27, 0, 0, 30, - 31, 0, 33, 34, 35, 0, 0, 0, 38, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 131, - 0, 0, 0, 0, 0, 0, 134, 135, 136, 0, - 0, 0, 0, 0, 0, 56, 57, 58, 0, 0, - 0, 0, 141, 241, 0, 0, 0, 143, 0, 0, - 0, 0, 242, 0, 95, 233, 1443, 149, 0, 1140, - 99, 100, 101, 0, 0, 102, 103, 104, 105, 106, + 0, 38, 770, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 130, 0, 0, 0, 0, 0, 0, + 133, 134, 135, 940, 0, 0, 0, 0, 0, 57, + 58, 59, 0, 0, 0, 0, 140, 242, 0, 0, + 0, 142, 0, 0, 0, 0, 243, 0, 94, 234, + 1448, 148, 0, 1145, 98, 99, 100, 0, 0, 101, + 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, + 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, + 236, 0, 0, 0, 0, 0, 0, 126, 127, 0, + 1463, 0, 0, 0, 0, 0, 0, 237, 0, 0, + 238, 0, 0, 239, 0, 240, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 241, 0, 0, 0, 0, + 0, 39, 40, 41, 42, 43, 0, 0, 0, 47, + 0, 0, 50, 354, 355, 356, 357, 358, 359, 360, + 361, 362, 363, 364, 365, 366, 367, 0, 0, 0, + 0, 368, 0, 0, 354, 355, 356, 357, 358, 359, + 360, 361, 362, 363, 364, 365, 366, 367, 130, 971, + 0, 0, 368, 0, 0, 133, 134, 135, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 140, 242, 0, 0, 0, 142, 0, 0, 0, + 0, 243, 0, 94, 234, 0, 148, 0, 1449, 98, + 99, 100, 0, 0, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, - 117, 118, 119, 120, 121, 122, 235, 0, 0, 0, - 0, 0, 0, 127, 128, 0, 890, 0, 0, 7, - 8, 0, 0, 236, 0, 0, 237, 0, 0, 238, - 0, 239, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 240, 0, 0, 0, 0, 0, 39, 40, 41, - 42, 43, 0, 0, 0, 47, 0, 0, 50, 565, - 18, 19, 566, 21, 22, 567, 24, 568, 26, 0, - 27, 0, 0, 30, 31, 0, 33, 34, 35, 0, - 0, 0, 38, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 131, 0, 0, 0, 0, 0, 0, - 134, 135, 136, 0, 0, 0, 0, 0, 0, 56, - 57, 58, 0, 0, 0, 0, 141, 241, 0, 0, - 0, 143, 0, 0, 0, 0, 242, 0, 95, 233, - 0, 149, 0, 1444, 99, 100, 101, 0, 0, 102, - 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, - 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, - 235, 0, 0, 0, 0, 0, 0, 127, 128, 0, - 1398, 0, 0, 7, 8, 0, 0, 236, 0, 0, - 237, 0, 0, 238, 0, 239, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 240, 0, 0, 0, 0, + 117, 118, 119, 120, 121, 236, 0, 0, 0, 0, + 0, 0, 126, 127, 0, 0, 0, 0, 0, 0, + 0, 0, 237, 0, 0, 238, 0, 0, 239, 0, + 240, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 241, 0, 0, 0, 0, 0, 39, 40, 41, 42, + 43, 0, 0, 0, 47, 0, 0, 50, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, + 364, 365, 366, 367, 1015, 0, 0, 0, 368, 0, + 0, 0, 0, 130, 0, 0, 0, 0, 0, 0, + 133, 134, 135, 1068, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 140, 242, 0, 0, + 0, 142, 0, 0, 0, 0, 243, 0, 94, 234, + 0, 148, 0, 244, 98, 99, 100, 0, 0, 101, + 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, + 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, + 236, 0, 0, 0, 0, 0, 0, 126, 127, 0, + 0, 0, 0, 0, 0, 0, 0, 237, 0, 0, + 238, 0, 0, 239, 0, 240, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 241, 0, 0, 0, 0, 0, 39, 40, 41, 42, 43, 0, 0, 0, 47, - 0, 0, 50, 565, 18, 19, 566, 21, 22, 567, - 24, 568, 26, 0, 27, 0, 0, 30, 31, 0, - 33, 34, 35, 0, 0, 0, 38, 1270, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 131, 0, 0, - 0, 0, 0, 0, 134, 135, 136, 1291, 0, 0, - 0, 0, 0, 56, 57, 58, 0, 0, 0, 0, - 141, 241, 0, 0, 0, 143, 0, 0, 0, 0, - 242, 0, 95, 233, 0, 149, 0, 243, 99, 100, - 101, 0, 0, 102, 103, 104, 105, 106, 107, 108, - 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, - 119, 120, 121, 122, 235, 0, 0, 0, 0, 0, - 0, 127, 128, 0, 1458, 0, 0, 0, 0, 0, - 0, 236, 0, 0, 237, 0, 0, 238, 0, 239, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 240, - 0, 0, 0, 0, 0, 39, 40, 41, 42, 43, - 0, 0, 0, 47, 0, 0, 50, 353, 354, 355, - 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, - 366, 0, 0, 0, 0, 367, 0, 353, 354, 355, - 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, - 366, 131, 1319, 0, 0, 367, 0, 0, 134, 135, - 136, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 141, 376, 0, 0, 0, 143, - 0, 0, 0, 0, 242, 0, 95, 233, 0, 149, - 0, 462, 99, 100, 101, 0, 0, 102, 103, 104, - 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, - 115, 116, 117, 118, 119, 120, 121, 122, 235, 0, - 0, 0, 0, 0, 0, 127, 128, 0, 0, 0, - 0, 0, 0, 0, 0, 236, 0, 0, 237, 0, - 0, 238, 0, 239, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 240, 0, 0, 0, 0, 0, 39, - 40, 41, 42, 43, 0, 0, 0, 47, 0, 0, - 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 353, 354, 355, 356, 357, 358, 359, 360, - 361, 362, 363, 364, 365, 366, 1404, 0, 0, 0, - 367, 0, 0, 0, 0, 131, 0, 0, 0, 0, - 0, 0, 134, 135, 136, 1456, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 141, 376, - 0, 0, 0, 143, 0, 0, 0, 0, 242, 0, - 95, 233, 0, 149, 0, 680, 99, 100, 101, 0, - 0, 102, 103, 104, 105, 106, 107, 108, 109, 110, - 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, - 121, 122, 235, 0, 0, 0, 0, 0, 0, 127, - 128, 0, 0, 0, 0, 0, 0, 0, 0, 236, - 0, 0, 237, 0, 0, 238, 0, 239, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 240, 0, 0, - 0, 0, 0, 39, 40, 41, 42, 43, 0, 0, - 0, 47, 0, 0, 50, 0, 353, 354, 355, 356, - 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, - 0, 0, 0, 0, 367, 353, 354, 355, 356, 357, - 358, 359, 360, 361, 362, 363, 364, 365, 366, 131, - 1491, 468, 0, 367, 0, 0, 134, 135, 136, 0, + 0, 0, 50, 0, 0, 354, 355, 356, 357, 358, + 359, 360, 361, 362, 363, 364, 365, 366, 367, 0, + 0, 0, 0, 368, 354, 355, 356, 357, 358, 359, + 360, 361, 362, 363, 364, 365, 366, 367, 130, 1075, + 0, 0, 368, 0, 0, 133, 134, 135, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 141, 241, 0, 0, 0, 143, 0, 0, - 0, 0, 242, 0, 95, 233, 0, 149, 0, 1144, - 99, 100, 101, 0, 0, 102, 103, 104, 105, 106, + 0, 140, 377, 0, 0, 0, 142, 0, 0, 0, + 0, 243, 0, 94, 234, 0, 148, 0, 465, 98, + 99, 100, 0, 0, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, - 117, 118, 119, 120, 121, 122, 235, 0, 0, 0, - 0, 0, 0, 127, 128, 0, 0, 0, 0, 0, - 0, 0, 0, 236, 0, 0, 237, 0, 0, 238, - 0, 239, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 240, 0, 0, 0, 0, 0, 39, 40, 41, - 42, 43, 0, 0, 0, 47, 0, 0, 50, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 353, + 117, 118, 119, 120, 121, 236, 0, 0, 0, 0, + 0, 0, 126, 127, 0, 0, 0, 0, 0, 0, + 0, 0, 237, 0, 0, 238, 0, 0, 239, 0, + 240, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 241, 0, 0, 0, 0, 0, 39, 40, 41, 42, + 43, 0, 0, 0, 47, 0, 0, 50, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, - 596, 365, 366, 0, 0, 0, 0, 367, 0, 0, - 0, 0, 0, 131, 0, 0, 0, 0, 0, 0, - 134, 135, 136, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 424, 1239, 0, 0, - 0, 143, 0, 0, 0, 0, 426, 0, 95, 269, - 280, 149, 0, 205, 99, 100, 101, 0, 0, 102, - 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, - 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, - 0, 0, 0, 123, 124, 125, 126, 127, 128, 0, - 0, 129, 95, 269, 280, 0, 0, 0, 99, 100, - 101, 0, 0, 102, 103, 104, 105, 106, 107, 108, - 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, - 119, 120, 121, 122, 0, 0, 0, 123, 124, 125, - 126, 127, 128, 95, 269, 129, 0, 0, 0, 99, - 100, 101, 0, 0, 102, 103, 104, 105, 106, 107, - 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, - 118, 119, 120, 121, 122, 0, 0, 131, 132, 133, - 0, 0, 127, 128, 134, 135, 136, 0, 0, 0, + 364, 365, 366, 367, 1153, 0, 0, 0, 368, 0, + 0, 0, 0, 130, 0, 0, 0, 0, 0, 0, + 133, 134, 135, 1275, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 140, 377, 0, 0, + 0, 142, 0, 0, 0, 0, 243, 0, 94, 234, + 0, 148, 0, 685, 98, 99, 100, 0, 0, 101, + 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, + 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, + 236, 0, 0, 0, 0, 0, 0, 126, 127, 0, + 0, 0, 0, 0, 0, 0, 0, 237, 0, 0, + 238, 0, 0, 239, 0, 240, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 241, 0, 0, 0, 0, + 0, 39, 40, 41, 42, 43, 0, 0, 0, 47, + 0, 0, 50, 0, 0, 354, 355, 356, 357, 358, + 359, 360, 361, 362, 363, 364, 365, 366, 367, 0, + 0, 0, 0, 368, 354, 355, 356, 357, 358, 359, + 360, 361, 362, 363, 364, 365, 366, 367, 130, 1296, + 0, 0, 368, 0, 0, 133, 134, 135, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 140, 242, 0, 0, 0, 142, 0, 0, 0, + 0, 243, 0, 94, 234, 0, 148, 0, 1149, 98, + 99, 100, 0, 0, 101, 102, 103, 104, 105, 106, + 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, + 117, 118, 119, 120, 121, 236, 0, 0, 0, 0, + 0, 0, 126, 127, 0, 0, 0, 0, 0, 0, + 0, 0, 237, 0, 0, 238, 0, 0, 239, 0, + 240, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 241, 0, 0, 0, 0, 0, 39, 40, 41, 42, + 43, 0, 0, 0, 47, 0, 0, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 141, 142, 0, 0, 0, 143, 0, 0, 0, 0, - 242, 0, 0, 0, 0, 149, 0, 1084, 0, 0, - 0, 131, 132, 133, 0, 0, 0, 0, 134, 135, - 136, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 141, 142, 0, 0, 0, 143, - 0, 0, 0, 0, 242, 0, 0, 0, 0, 149, - 0, 1254, 131, 0, 0, 0, 0, 0, 0, 134, - 135, 136, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 141, 142, 0, 0, 0, - 143, 0, 0, 0, 0, 242, 0, 0, 667, 0, - 149, 0, 668, 95, 269, 1446, 0, 0, 0, 99, - 100, 101, 0, 0, 102, 103, 104, 105, 106, 107, + 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, + 364, 365, 366, 367, 0, 1324, 0, 0, 368, 0, + 0, 0, 0, 130, 0, 0, 0, 0, 0, 0, + 133, 134, 135, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 425, 1244, 0, 0, + 0, 142, 0, 0, 0, 0, 427, 0, 94, 270, + 281, 148, 0, 204, 98, 99, 100, 0, 0, 101, + 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, + 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, + 0, 0, 0, 122, 123, 124, 125, 126, 127, 0, + 0, 128, 94, 270, 281, 0, 0, 0, 98, 99, + 100, 0, 0, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, - 118, 119, 120, 121, 122, 0, 0, 0, 95, 269, - 0, 0, 127, 128, 99, 100, 101, 0, 0, 102, + 118, 119, 120, 121, 0, 0, 0, 122, 123, 124, + 125, 126, 127, 0, 0, 128, 354, 355, 356, 357, + 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, + 0, 0, 0, 0, 368, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 130, 131, + 132, 0, 0, 0, 0, 133, 134, 135, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 140, 141, 0, 0, 0, 142, 0, 0, 0, + 0, 243, 0, 0, 0, 0, 148, 0, 1089, 0, + 0, 0, 130, 131, 132, 0, 0, 0, 0, 133, + 134, 135, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 140, 141, 0, 0, 0, + 142, 0, 0, 0, 0, 243, 0, 94, 270, 1451, + 148, 0, 1259, 98, 99, 100, 0, 0, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, - 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, - 0, 0, 0, 95, 269, 0, 0, 127, 128, 99, - 100, 101, 0, 0, 102, 103, 104, 105, 106, 107, + 113, 114, 115, 116, 117, 118, 119, 120, 121, 0, + 0, 0, 94, 270, 0, 0, 126, 127, 98, 99, + 100, 0, 0, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, - 118, 119, 120, 121, 122, 0, 0, 0, 0, 0, - 0, 0, 127, 128, 0, 0, 0, 0, 0, 0, - 0, 0, 131, 0, 0, 0, 0, 0, 0, 134, - 135, 136, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 141, 142, 0, 0, 0, - 143, 0, 0, 0, 0, 242, 0, 131, 0, 0, - 149, 0, 1447, 0, 134, 135, 136, 0, 0, 0, + 118, 119, 120, 121, 0, 0, 0, 94, 270, 0, + 0, 126, 127, 98, 99, 100, 0, 0, 101, 102, + 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, + 113, 114, 115, 116, 117, 118, 119, 120, 121, 0, + 0, 0, 0, 0, 0, 0, 126, 127, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 130, 0, 0, + 0, 0, 0, 0, 133, 134, 135, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 141, 142, 0, 1519, 0, 143, 0, 0, 0, 0, - 242, 0, 131, 0, 0, 149, 0, 337, 0, 134, - 135, 136, 0, 468, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 424, 425, 0, 0, 0, - 143, 0, 0, 0, 0, 426, 0, 95, 233, 0, - 149, 0, 205, 99, 100, 101, 0, 0, 102, 103, - 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, - 114, 115, 116, 117, 118, 119, 120, 121, 122, 235, - 0, 0, 0, 0, 0, 0, 127, 128, 0, 0, - 0, 0, 0, 0, 0, 0, 236, 0, 0, 237, - 0, 0, 238, 0, 239, 0, 0, 0, 0, 0, - 0, 468, 0, 0, 240, 0, 0, 0, 0, 0, - 39, 40, 41, 42, 43, 0, 0, 0, 47, 0, - 690, 50, 353, 354, 355, 356, 357, 358, 359, 360, - 361, 362, 363, 364, 365, 366, 0, 0, 0, 788, - 367, 353, 354, 355, 356, 357, 358, 359, 360, 361, - 362, 363, 469, 365, 366, 0, 131, 0, 0, 367, - 0, 883, 0, 134, 135, 136, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 141, - 376, 0, 0, 0, 143, 95, 269, 280, 0, 242, - 0, 99, 100, 101, 149, 0, 102, 103, 104, 105, - 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, - 116, 117, 118, 119, 120, 121, 122, 1032, 0, 0, - 123, 124, 125, 126, 127, 128, 0, 0, 129, 353, + 140, 141, 0, 0, 0, 142, 0, 0, 0, 0, + 243, 0, 130, 0, 0, 148, 0, 1452, 0, 133, + 134, 135, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 140, 141, 0, 0, 0, + 142, 0, 0, 0, 0, 243, 0, 130, 0, 0, + 148, 0, 338, 0, 133, 134, 135, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 425, 426, 0, 0, 0, 142, 0, 0, 0, 0, + 427, 0, 94, 234, 0, 148, 0, 204, 98, 99, + 100, 0, 0, 101, 102, 103, 104, 105, 106, 107, + 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, + 118, 119, 120, 121, 236, 0, 0, 0, 0, 0, + 0, 126, 127, 0, 0, 0, 0, 0, 0, 0, + 0, 237, 0, 0, 238, 0, 0, 239, 0, 240, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 241, + 0, 0, 0, 0, 0, 39, 40, 41, 42, 43, + 0, 94, 270, 47, 0, 0, 50, 98, 99, 100, + 0, 0, 101, 102, 103, 104, 105, 106, 107, 108, + 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, + 119, 120, 121, 1409, 0, 0, 0, 0, 0, 0, + 126, 127, 130, 0, 0, 0, 0, 0, 0, 133, + 134, 135, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 140, 377, 0, 0, 0, + 142, 94, 270, 281, 0, 243, 0, 98, 99, 100, + 148, 0, 101, 102, 103, 104, 105, 106, 107, 108, + 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, + 119, 120, 121, 1461, 0, 0, 122, 123, 124, 125, + 126, 127, 0, 0, 128, 0, 0, 0, 0, 0, + 0, 130, 0, 1496, 471, 0, 0, 0, 133, 134, + 135, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 1524, 0, 140, 141, 0, 0, 0, 142, + 0, 0, 0, 0, 243, 0, 0, 0, 0, 148, + 0, 0, 471, 0, 354, 355, 356, 357, 358, 359, + 360, 361, 362, 363, 364, 365, 366, 367, 0, 0, + 0, 471, 368, 0, 0, 0, 0, 0, 0, 0, + 0, 130, 131, 132, 0, 0, 0, 0, 133, 134, + 135, 695, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 140, 141, 0, 0, 0, 142, + 793, 0, 0, 0, 243, 0, 0, 0, 0, 148, + 0, 0, 0, 0, 354, 355, 356, 357, 358, 359, + 360, 361, 362, 363, 364, 365, 366, 367, 888, 0, + 0, 0, 368, 354, 355, 356, 357, 358, 359, 360, + 361, 362, 363, 364, 599, 366, 367, 1037, 0, 0, + 0, 368, 354, 355, 356, 357, 358, 359, 360, 361, + 362, 363, 364, 365, 366, 367, 0, 0, 0, 0, + 368, 354, 355, 356, 357, 358, 359, 360, 361, 362, + 363, 364, 472, 366, 367, 0, 0, 0, 0, 368, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, - 596, 365, 366, 0, 0, 0, 0, 367, 353, 354, - 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, - 365, 366, 0, 0, 0, 0, 367, 353, 354, 355, - 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, - 366, 0, 0, 0, 0, 367, 0, 0, 0, 353, + 364, 599, 366, 367, 0, 0, 0, 0, 368, 0, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, - 364, 365, 366, 0, 131, 132, 133, 367, 0, 0, - 0, 134, 135, 136, 971, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 141, 142, 0, - 0, 0, 143, 0, 0, 0, 0, 242, 0, 0, - 0, 0, 149, 0, 0, 353, 354, 355, 356, 357, - 358, 359, 360, 361, 362, 363, 364, 365, 366, 0, - -4, 1, 0, 367, -4, 0, 0, 0, 0, 0, - 0, 0, -4, -4, 0, 0, 0, 353, 354, 355, - 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, - 366, 0, 0, 0, 0, 367, -4, -4, 0, 0, - 0, 0, 0, 0, -4, -4, 0, -4, -4, -4, - 0, -4, -4, -4, -4, -4, -4, -4, -4, -4, - -4, -4, 0, -4, -4, -4, -4, -4, -4, -4, - -4, -4, -4, 0, -4, -4, -4, -4, -4, -4, - -4, -4, -4, -4, -4, -4, -4, -4, -4, 0, - 6, -4, -4, 0, 0, 0, -4, 0, 7, 8, - 0, -4, -4, -4, -4, 0, 0, -4, 0, -4, - 0, -4, -4, -4, -4, -4, -4, -4, -4, -4, - -4, -4, 9, 10, 0, -4, -4, -4, -4, 0, - 11, 12, 0, 13, 14, 15, 0, 16, 17, 18, - 19, 20, 21, 22, 23, 24, 25, 26, 0, 27, - 28, 29, 30, 31, 32, 33, 34, 35, 36, 0, - 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, - 47, 48, 49, 50, 51, 7, 8, 52, 53, 0, - 0, 0, 54, 0, 0, 0, 0, 55, 56, 57, - 58, 0, 0, 59, 0, 60, 0, 61, 62, 63, - 64, 65, 66, 67, 68, 69, 70, 71, 0, 0, - 0, 72, 73, 74, 75, 565, 18, 19, 566, 21, - 22, 567, 24, 568, 26, 0, 27, 0, 0, 30, - 31, 0, 33, 34, 35, 0, 0, 0, 38, 0, - 0, 0, 0, 353, 354, 355, 356, 357, 358, 359, - 360, 361, 362, 363, 364, 365, 366, 0, 0, 0, - 0, 367, 0, 0, 0, 56, 57, 58, 1219, 0, - 1220, 353, 354, 355, 356, 357, 358, 359, 360, 361, - 362, 363, 364, 365, 366, 0, 0, 0, 0, 367, - 0, 0, 0, 0, 0, 0, 1249, 0, 1250, 0, - 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, - 363, 364, 365, 366, 0, 0, 0, 0, 367, 0, - 0, 0, 0, 0, 0, 1343, 0, 1344, 353, 354, - 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, - 365, 366, 0, 0, 0, 0, 367, 0, 0, 0, - 0, 0, 0, 0, 0, 815, 353, 354, 355, 356, - 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, - 0, 0, 0, 0, 367, 0, 0, 0, 0, 0, - 0, 0, 0, 858, 353, 354, 355, 356, 357, 358, - 359, 360, 361, 362, 363, 364, 365, 366, 0, 0, - 0, 0, 367, 0, 0, 0, 0, 0, 0, 0, - 0, 877, 353, 354, 355, 356, 357, 358, 359, 360, - 361, 362, 363, 364, 365, 366, 0, 0, 0, 0, - 367, 0, 0, 0, 0, 0, 0, 0, 0, 902, - 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, - 363, 364, 365, 366, 0, 0, 0, 0, 367, 0, - 0, 0, 0, 0, 0, 0, 0, 988, 353, 354, + 364, 365, 366, 367, 0, 0, 0, 0, 368, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, - 365, 366, 0, 0, 0, 0, 367, 0, 0, 0, - 0, 0, 0, 0, 0, 1217, 353, 354, 355, 356, + 365, 366, 367, 976, 0, 0, 0, 368, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, - 0, 0, 0, 0, 367, 0, 0, 0, 0, 0, - 0, 0, 0, 1236, 353, 354, 355, 356, 357, 358, - 359, 360, 361, 362, 363, 364, 365, 366, 0, 0, - 0, 0, 367, 0, 0, 0, 0, 0, 0, 0, - 0, 1278, 353, 354, 355, 356, 357, 358, 359, 360, - 361, 362, 363, 364, 365, 366, 0, 0, 0, 0, - 367, 0, 0, 0, 0, 0, 0, 0, 0, 1279, - 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, - 363, 364, 365, 366, 0, 0, 0, 0, 367, 0, - 0, 0, 0, 0, 0, 0, 0, 1280, 353, 354, - 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, - 365, 366, 0, 0, 0, 0, 367, 0, 0, 0, - 0, 0, 0, 0, 0, 1281, 353, 354, 355, 356, - 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, - 0, 0, 0, 0, 367, 0, 0, 0, 0, 0, - 0, 0, 0, 1314, 353, 354, 355, 356, 357, 358, - 359, 360, 361, 362, 363, 364, 365, 366, 0, 0, - 0, 0, 367, 0, 0, 0, 0, 0, 0, 0, - 0, 1359, 353, 354, 355, 356, 357, 358, 359, 360, - 361, 362, 363, 364, 365, 366, 0, 0, 0, 0, - 367, 0, 0, 0, 0, 0, 0, 0, 0, 1365, - 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, - 363, 364, 365, 366, 0, 0, 0, 0, 367, 0, - 0, 0, 0, 0, 0, 0, 0, 1366, 353, 354, - 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, - 365, 366, 0, 0, 0, 0, 367, 0, 0, 0, - 0, 0, 0, 0, 0, 1386, 353, 354, 355, 356, + 367, 0, 0, 0, 0, 368, 354, 355, 356, 357, + 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, + 0, -4, 1, 0, 368, -4, 0, 0, 0, 0, + 0, 0, 0, -4, -4, 0, 0, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, - 0, 0, 0, 0, 367, 0, 0, 0, 0, 0, - 0, 0, 0, 1389, 353, 354, 355, 356, 357, 358, - 359, 360, 361, 362, 363, 364, 365, 366, 0, 0, - 0, 0, 367, 0, 0, 0, 0, 0, 0, 0, - 0, 1392, 353, 354, 355, 356, 357, 358, 359, 360, - 361, 362, 363, 364, 365, 366, 0, 0, 0, 0, - 367, 0, 0, 0, 0, 0, 0, 0, 0, 1414, - 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, - 363, 364, 365, 366, 0, 0, 0, 0, 367, 0, - 0, 0, 0, 0, 0, 0, 0, 1417, 353, 354, - 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, - 365, 366, 0, 0, 0, 0, 367, 0, 0, 0, - 0, 0, 0, 0, 0, 1450, 353, 354, 355, 356, + 367, 0, 0, 0, 0, 368, 0, -4, -4, 0, + 0, 0, 0, 0, 0, -4, -4, 0, -4, -4, + -4, 0, -4, -4, -4, -4, -4, -4, -4, -4, + -4, -4, -4, 0, -4, -4, -4, -4, -4, -4, + -4, -4, -4, -4, 0, -4, -4, -4, -4, -4, + -4, -4, -4, -4, -4, -4, -4, -4, -4, -4, + -4, 0, 6, -4, -4, 0, 0, 0, -4, 0, + 7, 8, 0, -4, -4, -4, -4, 0, 0, -4, + 0, -4, 0, -4, -4, -4, -4, -4, -4, -4, + -4, -4, -4, -4, 9, 10, 0, -4, -4, -4, + -4, 0, 11, 12, 0, 13, 14, 15, 0, 16, + 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, + 0, 27, 28, 29, 30, 31, 32, 33, 34, 35, + 36, 0, 37, 38, 39, 40, 41, 42, 43, 44, + 45, 46, 47, 48, 49, 50, 51, 52, 7, 8, + 53, 54, 0, 0, 0, 55, 0, 0, 0, 0, + 56, 57, 58, 59, 0, 0, 60, 0, 61, 0, + 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, + 72, 0, 0, 0, 73, 74, 75, 76, 568, 18, + 19, 569, 21, 22, 570, 24, 571, 26, 0, 27, + 0, 0, 30, 31, 0, 33, 34, 35, 0, 0, + 0, 38, 0, 0, 0, 0, 0, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, - 0, 0, 0, 0, 367, 0, 0, 0, 0, 0, - 0, 0, 0, 1452, 353, 354, 355, 356, 357, 358, - 359, 360, 361, 362, 363, 364, 365, 366, 0, 0, - 0, 0, 367, 0, 0, 0, 0, 0, 0, 0, - 0, 1454, 353, 354, 355, 356, 357, 358, 359, 360, - 361, 362, 363, 364, 365, 366, 0, 0, 0, 0, - 367, 0, 0, 0, 0, 0, 0, 0, 0, 1467, - 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, - 363, 364, 365, 366, 0, 0, 0, 0, 367, 0, - 0, 0, 0, 0, 0, 0, 628, 353, 354, 355, + 367, 0, 0, 0, 0, 368, 0, 0, 0, 57, + 58, 59, 1224, 0, 1225, 354, 355, 356, 357, 358, + 359, 360, 361, 362, 363, 364, 365, 366, 367, 0, + 0, 0, 0, 368, 0, 0, 0, 0, 0, 0, + 1254, 0, 1255, 0, 354, 355, 356, 357, 358, 359, + 360, 361, 362, 363, 364, 365, 366, 367, 0, 0, + 0, 0, 368, 0, 0, 0, 0, 0, 0, 1348, + 0, 1349, 354, 355, 356, 357, 358, 359, 360, 361, + 362, 363, 364, 365, 366, 367, 0, 0, 0, 0, + 368, 0, 0, 0, 0, 0, 0, 0, 0, 820, + 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, + 364, 365, 366, 367, 0, 0, 0, 0, 368, 0, + 0, 0, 0, 0, 0, 0, 0, 863, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, - 366, 0, 0, 0, 0, 367, 0, 0, 0, 0, - 0, 0, 0, 1290, 353, 354, 355, 356, 357, 358, - 359, 360, 361, 362, 363, 364, 365, 366, 0, 0, - 0, 0, 367, 0, 677, 0, 0, 0, 0, 632, - 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, - 363, 364, 365, 366, 0, 0, 0, 0, 367, 0, - 0, 0, 0, 0, 0, 591, 353, 354, 355, 356, - 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, - 0, 0, 0, 0, 367, 0, 0, 0, 0, 0, - 0, 632, 353, 354, 355, 356, 357, 358, 359, 360, - 361, 362, 363, 364, 365, 366, 0, 0, 0, 0, - 367, 0, 0, 0, 0, 0, 0, 633, 353, 354, - 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, - 365, 366, 0, 0, 0, 0, 367, 0, 0, 0, - 0, 0, 0, 687, 353, 354, 355, 356, 357, 358, - 359, 360, 361, 362, 363, 364, 365, 366, 0, 0, - 0, 0, 367, 0, 0, 0, 0, 0, 0, 735, - 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, - 363, 364, 365, 366, 0, 0, 0, 0, 367, 0, - 0, 0, 0, 0, 0, 736, 353, 354, 355, 356, - 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, - 0, 0, 0, 0, 367, 0, 0, 0, 0, 0, - 0, 749, 353, 354, 355, 356, 357, 358, 359, 360, - 361, 362, 363, 364, 365, 366, 0, 0, 0, 0, - 367, 0, 0, 0, 0, 0, 0, 750, 353, 354, - 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, - 365, 366, 0, 0, 0, 0, 367, 0, 0, 0, - 0, 0, 0, 751, 353, 354, 355, 356, 357, 358, - 359, 360, 361, 362, 363, 364, 365, 366, 0, 0, - 0, 0, 367, 0, 0, 0, 0, 0, 0, 752, - 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, - 363, 364, 365, 366, 0, 0, 0, 0, 367, 0, - 0, 0, 0, 0, 0, 753, 353, 354, 355, 356, - 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, - 0, 0, 0, 0, 367, 0, 0, 0, 0, 0, - 0, 754, 353, 354, 355, 356, 357, 358, 359, 360, - 361, 362, 363, 364, 365, 366, 0, 0, 0, 0, - 367, 0, 0, 0, 0, 0, 0, 843, 353, 354, - 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, - 365, 366, 0, 0, 0, 0, 367, 0, 0, 0, - 0, 0, 0, 844, 353, 354, 355, 356, 357, 358, - 359, 360, 361, 362, 363, 364, 365, 366, 0, 0, - 0, 0, 367, 0, 0, 0, 0, 0, 0, 845, - 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, - 363, 364, 365, 366, 0, 0, 0, 0, 367, 0, - 0, 0, 0, 0, 0, 950, 353, 354, 355, 356, - 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, - 0, 0, 0, 0, 367, 0, 0, 0, 0, 0, - 0, 986, 353, 354, 355, 356, 357, 358, 359, 360, - 361, 362, 363, 364, 365, 366, 0, 0, 0, 0, - 367, 0, 0, 0, 0, 0, 0, 987, 353, 354, - 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, - 365, 366, 0, 0, 0, 0, 367, 0, 0, 0, - 0, 0, 0, 1031, 353, 354, 355, 356, 357, 358, - 359, 360, 361, 362, 363, 364, 365, 366, 0, 0, - 0, 0, 367, 0, 0, 0, 0, 0, 0, 1165, - 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, - 363, 364, 365, 366, 0, 0, 0, 0, 367, 0, - 0, 0, 0, 0, 0, 1166, 353, 354, 355, 356, - 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, - 0, 0, 0, 0, 367, 0, 0, 0, 0, 0, - 0, 1187, 353, 354, 355, 356, 357, 358, 359, 360, - 361, 362, 363, 364, 365, 366, 0, 0, 0, 0, - 367, 0, 0, 0, 0, 0, 0, 1324, 353, 354, - 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, - 365, 366, 0, 0, 0, 0, 367, 0, 0, 0, - 0, 0, 0, 1325, 353, 354, 355, 356, 357, 358, - 359, 360, 361, 362, 363, 364, 365, 366, 0, 0, - 0, 0, 367, 0, 0, 0, 0, 0, 0, 1331, - 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, - 363, 364, 365, 366, 0, 0, 0, 0, 367, 0, - 0, 0, 0, 0, 0, 1408, 353, 354, 355, 356, - 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, - 0, 0, 0, 0, 367, 0, 0, 0, 0, 0, - 0, 1411, 353, 354, 355, 356, 357, 358, 359, 360, - 361, 362, 363, 364, 365, 366, 0, 0, 0, 0, - 367, 0, 0, 0, 557, 353, 354, 355, 356, 357, - 358, 359, 360, 361, 362, 363, 364, 365, 366, 0, - 0, 0, 0, 367, 0, 0, 0, 692, 353, 354, + 366, 367, 0, 0, 0, 0, 368, 0, 0, 0, + 0, 0, 0, 0, 0, 882, 354, 355, 356, 357, + 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, + 0, 0, 0, 0, 368, 0, 0, 0, 0, 0, + 0, 0, 0, 907, 354, 355, 356, 357, 358, 359, + 360, 361, 362, 363, 364, 365, 366, 367, 0, 0, + 0, 0, 368, 0, 0, 0, 0, 0, 0, 0, + 0, 993, 354, 355, 356, 357, 358, 359, 360, 361, + 362, 363, 364, 365, 366, 367, 0, 0, 0, 0, + 368, 0, 0, 0, 0, 0, 0, 0, 0, 1222, + 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, + 364, 365, 366, 367, 0, 0, 0, 0, 368, 0, + 0, 0, 0, 0, 0, 0, 0, 1241, 354, 355, + 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, + 366, 367, 0, 0, 0, 0, 368, 0, 0, 0, + 0, 0, 0, 0, 0, 1283, 354, 355, 356, 357, + 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, + 0, 0, 0, 0, 368, 0, 0, 0, 0, 0, + 0, 0, 0, 1284, 354, 355, 356, 357, 358, 359, + 360, 361, 362, 363, 364, 365, 366, 367, 0, 0, + 0, 0, 368, 0, 0, 0, 0, 0, 0, 0, + 0, 1285, 354, 355, 356, 357, 358, 359, 360, 361, + 362, 363, 364, 365, 366, 367, 0, 0, 0, 0, + 368, 0, 0, 0, 0, 0, 0, 0, 0, 1286, + 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, + 364, 365, 366, 367, 0, 0, 0, 0, 368, 0, + 0, 0, 0, 0, 0, 0, 0, 1319, 354, 355, + 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, + 366, 367, 0, 0, 0, 0, 368, 0, 0, 0, + 0, 0, 0, 0, 0, 1364, 354, 355, 356, 357, + 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, + 0, 0, 0, 0, 368, 0, 0, 0, 0, 0, + 0, 0, 0, 1370, 354, 355, 356, 357, 358, 359, + 360, 361, 362, 363, 364, 365, 366, 367, 0, 0, + 0, 0, 368, 0, 0, 0, 0, 0, 0, 0, + 0, 1371, 354, 355, 356, 357, 358, 359, 360, 361, + 362, 363, 364, 365, 366, 367, 0, 0, 0, 0, + 368, 0, 0, 0, 0, 0, 0, 0, 0, 1391, + 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, + 364, 365, 366, 367, 0, 0, 0, 0, 368, 0, + 0, 0, 0, 0, 0, 0, 0, 1394, 354, 355, + 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, + 366, 367, 0, 0, 0, 0, 368, 0, 0, 0, + 0, 0, 0, 0, 0, 1397, 354, 355, 356, 357, + 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, + 0, 0, 0, 0, 368, 0, 0, 0, 0, 0, + 0, 0, 0, 1419, 354, 355, 356, 357, 358, 359, + 360, 361, 362, 363, 364, 365, 366, 367, 0, 0, + 0, 0, 368, 0, 0, 0, 0, 0, 0, 0, + 0, 1422, 354, 355, 356, 357, 358, 359, 360, 361, + 362, 363, 364, 365, 366, 367, 0, 0, 0, 0, + 368, 0, 0, 0, 0, 0, 0, 0, 0, 1455, + 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, + 364, 365, 366, 367, 0, 0, 0, 0, 368, 0, + 0, 0, 0, 0, 0, 0, 0, 1457, 354, 355, + 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, + 366, 367, 0, 0, 0, 0, 368, 0, 0, 0, + 0, 0, 0, 0, 0, 1459, 354, 355, 356, 357, + 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, + 0, 0, 0, 0, 368, 0, 0, 0, 0, 0, + 0, 0, 0, 1472, 354, 355, 356, 357, 358, 359, + 360, 361, 362, 363, 364, 365, 366, 367, 0, 0, + 0, 0, 368, 0, 0, 0, 0, 0, 0, 0, + 631, 354, 355, 356, 357, 358, 359, 360, 361, 362, + 363, 364, 365, 366, 367, 0, 0, 0, 0, 368, + 0, 0, 0, 0, 0, 0, 0, 1295, 354, 355, + 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, + 366, 367, 0, 0, 0, 0, 368, 0, 682, 0, + 0, 0, 0, 635, 354, 355, 356, 357, 358, 359, + 360, 361, 362, 363, 364, 365, 366, 367, 0, 0, + 0, 0, 368, 0, 0, 0, 0, 0, 0, 594, + 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, + 364, 365, 366, 367, 0, 0, 0, 0, 368, 0, + 0, 0, 0, 0, 0, 635, 354, 355, 356, 357, + 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, + 0, 0, 0, 0, 368, 0, 0, 0, 0, 0, + 0, 636, 354, 355, 356, 357, 358, 359, 360, 361, + 362, 363, 364, 365, 366, 367, 0, 0, 0, 0, + 368, 0, 0, 0, 0, 0, 0, 692, 354, 355, + 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, + 366, 367, 0, 0, 0, 0, 368, 0, 0, 0, + 0, 0, 0, 740, 354, 355, 356, 357, 358, 359, + 360, 361, 362, 363, 364, 365, 366, 367, 0, 0, + 0, 0, 368, 0, 0, 0, 0, 0, 0, 741, + 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, + 364, 365, 366, 367, 0, 0, 0, 0, 368, 0, + 0, 0, 0, 0, 0, 754, 354, 355, 356, 357, + 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, + 0, 0, 0, 0, 368, 0, 0, 0, 0, 0, + 0, 755, 354, 355, 356, 357, 358, 359, 360, 361, + 362, 363, 364, 365, 366, 367, 0, 0, 0, 0, + 368, 0, 0, 0, 0, 0, 0, 756, 354, 355, + 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, + 366, 367, 0, 0, 0, 0, 368, 0, 0, 0, + 0, 0, 0, 757, 354, 355, 356, 357, 358, 359, + 360, 361, 362, 363, 364, 365, 366, 367, 0, 0, + 0, 0, 368, 0, 0, 0, 0, 0, 0, 758, + 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, + 364, 365, 366, 367, 0, 0, 0, 0, 368, 0, + 0, 0, 0, 0, 0, 759, 354, 355, 356, 357, + 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, + 0, 0, 0, 0, 368, 0, 0, 0, 0, 0, + 0, 848, 354, 355, 356, 357, 358, 359, 360, 361, + 362, 363, 364, 365, 366, 367, 0, 0, 0, 0, + 368, 0, 0, 0, 0, 0, 0, 849, 354, 355, + 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, + 366, 367, 0, 0, 0, 0, 368, 0, 0, 0, + 0, 0, 0, 850, 354, 355, 356, 357, 358, 359, + 360, 361, 362, 363, 364, 365, 366, 367, 0, 0, + 0, 0, 368, 0, 0, 0, 0, 0, 0, 955, + 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, + 364, 365, 366, 367, 0, 0, 0, 0, 368, 0, + 0, 0, 0, 0, 0, 991, 354, 355, 356, 357, + 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, + 0, 0, 0, 0, 368, 0, 0, 0, 0, 0, + 0, 992, 354, 355, 356, 357, 358, 359, 360, 361, + 362, 363, 364, 365, 366, 367, 0, 0, 0, 0, + 368, 0, 0, 0, 0, 0, 0, 1036, 354, 355, + 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, + 366, 367, 0, 0, 0, 0, 368, 0, 0, 0, + 0, 0, 0, 1170, 354, 355, 356, 357, 358, 359, + 360, 361, 362, 363, 364, 365, 366, 367, 0, 0, + 0, 0, 368, 0, 0, 0, 0, 0, 0, 1171, + 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, + 364, 365, 366, 367, 0, 0, 0, 0, 368, 0, + 0, 0, 0, 0, 0, 1192, 354, 355, 356, 357, + 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, + 0, 0, 0, 0, 368, 0, 0, 0, 0, 0, + 0, 1329, 354, 355, 356, 357, 358, 359, 360, 361, + 362, 363, 364, 365, 366, 367, 0, 0, 0, 0, + 368, 0, 0, 0, 0, 0, 0, 1330, 354, 355, + 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, + 366, 367, 0, 0, 0, 0, 368, 0, 0, 0, + 0, 0, 0, 1336, 354, 355, 356, 357, 358, 359, + 360, 361, 362, 363, 364, 365, 366, 367, 0, 0, + 0, 0, 368, 0, 0, 0, 0, 0, 0, 1413, + 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, + 364, 365, 366, 367, 0, 0, 0, 0, 368, 0, + 0, 0, 0, 0, 0, 1416, 354, 355, 356, 357, + 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, + 0, 0, 0, 0, 368, 0, 0, 0, 560, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, - 365, 366, 0, 0, 0, 0, 367, 0, 0, 0, - 699, 353, 354, 355, 356, 357, 358, 359, 360, 361, - 362, 363, 364, 365, 366, 0, 0, 0, 0, 367, - 0, 0, 0, 714, 353, 354, 355, 356, 357, 358, - 359, 360, 361, 362, 363, 364, 365, 366, 0, 0, - 0, 0, 367, 0, 0, 0, 716, 353, 354, 355, + 365, 366, 367, 0, 0, 0, 0, 368, 0, 0, + 0, 697, 354, 355, 356, 357, 358, 359, 360, 361, + 362, 363, 364, 365, 366, 367, 0, 0, 0, 0, + 368, 0, 0, 0, 704, 354, 355, 356, 357, 358, + 359, 360, 361, 362, 363, 364, 365, 366, 367, 0, + 0, 0, 0, 368, 0, 0, 0, 719, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, - 366, 0, 0, 0, 0, 367, 0, 0, 0, 718, - 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, - 363, 364, 365, 366, 0, 0, 0, 0, 367, 0, - 0, 0, 720, 353, 354, 355, 356, 357, 358, 359, - 360, 361, 362, 363, 364, 365, 366, 0, 0, 0, - 0, 367, 0, 0, 0, 722, 353, 354, 355, 356, + 366, 367, 0, 0, 0, 0, 368, 0, 0, 0, + 721, 354, 355, 356, 357, 358, 359, 360, 361, 362, + 363, 364, 365, 366, 367, 0, 0, 0, 0, 368, + 0, 0, 0, 723, 354, 355, 356, 357, 358, 359, + 360, 361, 362, 363, 364, 365, 366, 367, 0, 0, + 0, 0, 368, 0, 0, 0, 725, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, - 0, 0, 0, 0, 367, 0, 0, 0, 724, 353, + 367, 0, 0, 0, 0, 368, 0, 0, 0, 727, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, - 364, 365, 366, 0, 0, 0, 0, 367, 0, 0, - 0, 726, 353, 354, 355, 356, 357, 358, 359, 360, - 361, 362, 363, 364, 365, 366, 0, 0, 0, 0, - 367, 0, 0, 0, 728, 353, 354, 355, 356, 357, - 358, 359, 360, 361, 362, 363, 364, 365, 366, 0, - 0, 0, 0, 367, 0, 0, 0, 730, 353, 354, + 364, 365, 366, 367, 0, 0, 0, 0, 368, 0, + 0, 0, 729, 354, 355, 356, 357, 358, 359, 360, + 361, 362, 363, 364, 365, 366, 367, 0, 0, 0, + 0, 368, 0, 0, 0, 731, 354, 355, 356, 357, + 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, + 0, 0, 0, 0, 368, 0, 0, 0, 733, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, - 365, 366, 0, 0, 0, 0, 367, 0, 0, 0, - 732, 353, 354, 355, 356, 357, 358, 359, 360, 361, - 362, 363, 364, 365, 366, 0, 0, 0, 0, 367, - 0, 0, 0, 734, 353, 354, 355, 356, 357, 358, - 359, 360, 361, 362, 363, 364, 365, 366, 0, 0, - 0, 0, 367, 0, 0, 0, 738, 353, 354, 355, + 365, 366, 367, 0, 0, 0, 0, 368, 0, 0, + 0, 735, 354, 355, 356, 357, 358, 359, 360, 361, + 362, 363, 364, 365, 366, 367, 0, 0, 0, 0, + 368, 0, 0, 0, 737, 354, 355, 356, 357, 358, + 359, 360, 361, 362, 363, 364, 365, 366, 367, 0, + 0, 0, 0, 368, 0, 0, 0, 739, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, - 366, 0, 0, 0, 0, 367, 0, 0, 0, 740, - 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, - 363, 364, 365, 366, 0, 0, 0, 0, 367, 0, - 0, 0, 742, 353, 354, 355, 356, 357, 358, 359, - 360, 361, 362, 363, 364, 365, 366, 0, 0, 0, - 0, 367, 0, 0, 0, 744, 353, 354, 355, 356, + 366, 367, 0, 0, 0, 0, 368, 0, 0, 0, + 743, 354, 355, 356, 357, 358, 359, 360, 361, 362, + 363, 364, 365, 366, 367, 0, 0, 0, 0, 368, + 0, 0, 0, 745, 354, 355, 356, 357, 358, 359, + 360, 361, 362, 363, 364, 365, 366, 367, 0, 0, + 0, 0, 368, 0, 0, 0, 747, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, - 0, 0, 0, 0, 367, 0, 0, 0, 746, 353, + 367, 0, 0, 0, 0, 368, 0, 0, 0, 749, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, - 364, 365, 366, 0, 0, 0, 0, 367, 0, 0, - 0, 748, 353, 354, 355, 356, 357, 358, 359, 360, - 361, 362, 363, 364, 365, 366, 0, 0, 0, 0, - 367, 0, 0, 0, 866, 353, 354, 355, 356, 357, - 358, 359, 360, 361, 362, 363, 364, 365, 366, 0, - 0, 0, 0, 367, 0, 0, 0, 867, 353, 354, + 364, 365, 366, 367, 0, 0, 0, 0, 368, 0, + 0, 0, 751, 354, 355, 356, 357, 358, 359, 360, + 361, 362, 363, 364, 365, 366, 367, 0, 0, 0, + 0, 368, 0, 0, 0, 753, 354, 355, 356, 357, + 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, + 0, 0, 0, 0, 368, 0, 0, 0, 871, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, - 365, 366, 0, 0, 0, 0, 367, 0, 0, 0, - 871, 353, 354, 355, 356, 357, 358, 359, 360, 361, - 362, 363, 364, 365, 366, 0, 0, 0, 0, 367, - 0, 0, 0, 872, 353, 354, 355, 356, 357, 358, - 359, 360, 361, 362, 363, 364, 365, 366, 0, 0, - 0, 0, 367, 0, 0, 0, 875, 353, 354, 355, + 365, 366, 367, 0, 0, 0, 0, 368, 0, 0, + 0, 872, 354, 355, 356, 357, 358, 359, 360, 361, + 362, 363, 364, 365, 366, 367, 0, 0, 0, 0, + 368, 0, 0, 0, 876, 354, 355, 356, 357, 358, + 359, 360, 361, 362, 363, 364, 365, 366, 367, 0, + 0, 0, 0, 368, 0, 0, 0, 877, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, - 366, 0, 0, 0, 0, 367, 0, 0, 0, 898, - 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, - 363, 364, 365, 366, 0, 0, 0, 0, 367, 0, - 0, 0, 1049, 353, 354, 355, 356, 357, 358, 359, - 360, 361, 362, 363, 364, 365, 366, 0, 0, 0, - 0, 367, 0, 0, 0, 1051, 353, 354, 355, 356, + 366, 367, 0, 0, 0, 0, 368, 0, 0, 0, + 880, 354, 355, 356, 357, 358, 359, 360, 361, 362, + 363, 364, 365, 366, 367, 0, 0, 0, 0, 368, + 0, 0, 0, 903, 354, 355, 356, 357, 358, 359, + 360, 361, 362, 363, 364, 365, 366, 367, 0, 0, + 0, 0, 368, 0, 0, 0, 1054, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, - 0, 0, 0, 0, 367, 0, 0, 0, 1053, 353, + 367, 0, 0, 0, 0, 368, 0, 0, 0, 1056, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, - 364, 365, 366, 0, 0, 0, 0, 367, 0, 0, - 0, 1055, 353, 354, 355, 356, 357, 358, 359, 360, - 361, 362, 363, 364, 365, 366, 0, 0, 0, 0, - 367, 0, 0, 0, 1056, 353, 354, 355, 356, 357, - 358, 359, 360, 361, 362, 363, 364, 365, 366, 0, - 0, 0, 0, 367, 0, 0, 0, 1180, 353, 354, + 364, 365, 366, 367, 0, 0, 0, 0, 368, 0, + 0, 0, 1058, 354, 355, 356, 357, 358, 359, 360, + 361, 362, 363, 364, 365, 366, 367, 0, 0, 0, + 0, 368, 0, 0, 0, 1060, 354, 355, 356, 357, + 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, + 0, 0, 0, 0, 368, 0, 0, 0, 1061, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, - 365, 366, 0, 0, 0, 0, 367, 0, 0, 0, - 1303, 353, 354, 355, 356, 357, 358, 359, 360, 361, - 362, 363, 364, 365, 366, 0, 0, 0, 0, 367, - 0, 553, 353, 354, 355, 356, 357, 358, 359, 360, - 361, 362, 363, 364, 365, 366, 0, 0, 0, 0, - 367, 0, 595, 353, 354, 355, 356, 357, 358, 359, - 360, 361, 362, 363, 364, 365, 366, 0, 0, 0, - 0, 367, 0, 599, 353, 354, 355, 356, 357, 358, - 359, 360, 361, 362, 363, 364, 365, 366, 0, 0, - 0, 0, 367, 0, 600, 353, 354, 355, 356, 357, - 358, 359, 360, 361, 362, 363, 364, 365, 366, 0, - 0, 0, 0, 367, 0, 602, 353, 354, 355, 356, + 365, 366, 367, 0, 0, 0, 0, 368, 0, 0, + 0, 1185, 354, 355, 356, 357, 358, 359, 360, 361, + 362, 363, 364, 365, 366, 367, 0, 0, 0, 0, + 368, 0, 0, 0, 1308, 354, 355, 356, 357, 358, + 359, 360, 361, 362, 363, 364, 365, 366, 367, 0, + 0, 0, 0, 368, 0, 556, 354, 355, 356, 357, + 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, + 0, 0, 0, 0, 368, 0, 598, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, - 0, 0, 0, 0, 367, 0, 604, 353, 354, 355, + 367, 0, 0, 0, 0, 368, 0, 602, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, - 366, 0, 0, 0, 0, 367, 0, 605, 353, 354, + 366, 367, 0, 0, 0, 0, 368, 0, 603, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, - 365, 366, 0, 0, 0, 0, 367, 0, 608, 353, + 365, 366, 367, 0, 0, 0, 0, 368, 0, 605, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, - 364, 365, 366, 0, 0, 0, 0, 367, 0, 609, - 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, - 363, 364, 365, 366, 0, 0, 0, 0, 367, 0, - 677, 353, 354, 355, 356, 357, 358, 359, 360, 361, - 362, 363, 364, 365, 366, 0, 0, 0, 0, 367, - 0, 683, 353, 354, 355, 356, 357, 358, 359, 360, - 361, 362, 363, 364, 365, 366, 0, 0, 0, 0, - 367, 0, 684, 353, 354, 355, 356, 357, 358, 359, - 360, 361, 362, 363, 364, 365, 366, 0, 0, 0, - 0, 367, 0, 685, 353, 354, 355, 356, 357, 358, - 359, 360, 361, 362, 363, 364, 365, 366, 0, 0, - 0, 0, 367, 0, 691, 353, 354, 355, 356, 357, - 358, 359, 360, 361, 362, 363, 364, 365, 366, 0, - 0, 0, 0, 367, 0, 713, 353, 354, 355, 356, + 364, 365, 366, 367, 0, 0, 0, 0, 368, 0, + 607, 354, 355, 356, 357, 358, 359, 360, 361, 362, + 363, 364, 365, 366, 367, 0, 0, 0, 0, 368, + 0, 608, 354, 355, 356, 357, 358, 359, 360, 361, + 362, 363, 364, 365, 366, 367, 0, 0, 0, 0, + 368, 0, 611, 354, 355, 356, 357, 358, 359, 360, + 361, 362, 363, 364, 365, 366, 367, 0, 0, 0, + 0, 368, 0, 612, 354, 355, 356, 357, 358, 359, + 360, 361, 362, 363, 364, 365, 366, 367, 0, 0, + 0, 0, 368, 0, 682, 354, 355, 356, 357, 358, + 359, 360, 361, 362, 363, 364, 365, 366, 367, 0, + 0, 0, 0, 368, 0, 688, 354, 355, 356, 357, + 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, + 0, 0, 0, 0, 368, 0, 689, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, - 0, 0, 0, 0, 367, 0, 715, 353, 354, 355, + 367, 0, 0, 0, 0, 368, 0, 690, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, - 366, 0, 0, 0, 0, 367, 0, 717, 353, 354, + 366, 367, 0, 0, 0, 0, 368, 0, 696, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, - 365, 366, 0, 0, 0, 0, 367, 0, 719, 353, + 365, 366, 367, 0, 0, 0, 0, 368, 0, 718, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, - 364, 365, 366, 0, 0, 0, 0, 367, 0, 721, - 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, - 363, 364, 365, 366, 0, 0, 0, 0, 367, 0, - 723, 353, 354, 355, 356, 357, 358, 359, 360, 361, - 362, 363, 364, 365, 366, 0, 0, 0, 0, 367, - 0, 725, 353, 354, 355, 356, 357, 358, 359, 360, - 361, 362, 363, 364, 365, 366, 0, 0, 0, 0, - 367, 0, 727, 353, 354, 355, 356, 357, 358, 359, - 360, 361, 362, 363, 364, 365, 366, 0, 0, 0, - 0, 367, 0, 729, 353, 354, 355, 356, 357, 358, - 359, 360, 361, 362, 363, 364, 365, 366, 0, 0, - 0, 0, 367, 0, 731, 353, 354, 355, 356, 357, - 358, 359, 360, 361, 362, 363, 364, 365, 366, 0, - 0, 0, 0, 367, 0, 733, 353, 354, 355, 356, + 364, 365, 366, 367, 0, 0, 0, 0, 368, 0, + 720, 354, 355, 356, 357, 358, 359, 360, 361, 362, + 363, 364, 365, 366, 367, 0, 0, 0, 0, 368, + 0, 722, 354, 355, 356, 357, 358, 359, 360, 361, + 362, 363, 364, 365, 366, 367, 0, 0, 0, 0, + 368, 0, 724, 354, 355, 356, 357, 358, 359, 360, + 361, 362, 363, 364, 365, 366, 367, 0, 0, 0, + 0, 368, 0, 726, 354, 355, 356, 357, 358, 359, + 360, 361, 362, 363, 364, 365, 366, 367, 0, 0, + 0, 0, 368, 0, 728, 354, 355, 356, 357, 358, + 359, 360, 361, 362, 363, 364, 365, 366, 367, 0, + 0, 0, 0, 368, 0, 730, 354, 355, 356, 357, + 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, + 0, 0, 0, 0, 368, 0, 732, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, - 0, 0, 0, 0, 367, 0, 737, 353, 354, 355, + 367, 0, 0, 0, 0, 368, 0, 734, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, - 366, 0, 0, 0, 0, 367, 0, 739, 353, 354, + 366, 367, 0, 0, 0, 0, 368, 0, 736, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, - 365, 366, 0, 0, 0, 0, 367, 0, 741, 353, + 365, 366, 367, 0, 0, 0, 0, 368, 0, 738, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, - 364, 365, 366, 0, 0, 0, 0, 367, 0, 743, - 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, - 363, 364, 365, 366, 0, 0, 0, 0, 367, 0, - 745, 353, 354, 355, 356, 357, 358, 359, 360, 361, - 362, 363, 364, 365, 366, 0, 0, 0, 0, 367, - 0, 747, 353, 354, 355, 356, 357, 358, 359, 360, - 361, 362, 363, 364, 365, 366, 0, 0, 0, 0, - 367, 0, 804, 353, 354, 355, 356, 357, 358, 359, - 360, 361, 362, 363, 364, 365, 366, 0, 0, 0, - 0, 367, 0, 809, 353, 354, 355, 356, 357, 358, - 359, 360, 361, 362, 363, 364, 365, 366, 0, 0, - 0, 0, 367, 0, 814, 353, 354, 355, 356, 357, - 358, 359, 360, 361, 362, 363, 364, 365, 366, 0, - 0, 0, 0, 367, 0, 816, 353, 354, 355, 356, + 364, 365, 366, 367, 0, 0, 0, 0, 368, 0, + 742, 354, 355, 356, 357, 358, 359, 360, 361, 362, + 363, 364, 365, 366, 367, 0, 0, 0, 0, 368, + 0, 744, 354, 355, 356, 357, 358, 359, 360, 361, + 362, 363, 364, 365, 366, 367, 0, 0, 0, 0, + 368, 0, 746, 354, 355, 356, 357, 358, 359, 360, + 361, 362, 363, 364, 365, 366, 367, 0, 0, 0, + 0, 368, 0, 748, 354, 355, 356, 357, 358, 359, + 360, 361, 362, 363, 364, 365, 366, 367, 0, 0, + 0, 0, 368, 0, 750, 354, 355, 356, 357, 358, + 359, 360, 361, 362, 363, 364, 365, 366, 367, 0, + 0, 0, 0, 368, 0, 752, 354, 355, 356, 357, + 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, + 0, 0, 0, 0, 368, 0, 809, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, - 0, 0, 0, 0, 367, 0, 817, 353, 354, 355, + 367, 0, 0, 0, 0, 368, 0, 814, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, - 366, 0, 0, 0, 0, 367, 0, 823, 353, 354, + 366, 367, 0, 0, 0, 0, 368, 0, 819, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, - 365, 366, 0, 0, 0, 0, 367, 0, 830, 353, + 365, 366, 367, 0, 0, 0, 0, 368, 0, 821, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, - 364, 365, 366, 0, 0, 0, 0, 367, 0, 831, - 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, - 363, 364, 365, 366, 0, 0, 0, 0, 367, 0, - 832, 353, 354, 355, 356, 357, 358, 359, 360, 361, - 362, 363, 364, 365, 366, 0, 0, 0, 0, 367, - 0, 857, 353, 354, 355, 356, 357, 358, 359, 360, - 361, 362, 363, 364, 365, 366, 0, 0, 0, 0, - 367, 0, 859, 353, 354, 355, 356, 357, 358, 359, - 360, 361, 362, 363, 364, 365, 366, 0, 0, 0, - 0, 367, 0, 860, 353, 354, 355, 356, 357, 358, - 359, 360, 361, 362, 363, 364, 365, 366, 0, 0, - 0, 0, 367, 0, 861, 353, 354, 355, 356, 357, - 358, 359, 360, 361, 362, 363, 364, 365, 366, 0, - 0, 0, 0, 367, 0, 865, 353, 354, 355, 356, + 364, 365, 366, 367, 0, 0, 0, 0, 368, 0, + 822, 354, 355, 356, 357, 358, 359, 360, 361, 362, + 363, 364, 365, 366, 367, 0, 0, 0, 0, 368, + 0, 828, 354, 355, 356, 357, 358, 359, 360, 361, + 362, 363, 364, 365, 366, 367, 0, 0, 0, 0, + 368, 0, 835, 354, 355, 356, 357, 358, 359, 360, + 361, 362, 363, 364, 365, 366, 367, 0, 0, 0, + 0, 368, 0, 836, 354, 355, 356, 357, 358, 359, + 360, 361, 362, 363, 364, 365, 366, 367, 0, 0, + 0, 0, 368, 0, 837, 354, 355, 356, 357, 358, + 359, 360, 361, 362, 363, 364, 365, 366, 367, 0, + 0, 0, 0, 368, 0, 862, 354, 355, 356, 357, + 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, + 0, 0, 0, 0, 368, 0, 864, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, - 0, 0, 0, 0, 367, 0, 1048, 353, 354, 355, + 367, 0, 0, 0, 0, 368, 0, 865, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, - 366, 0, 0, 0, 0, 367, 0, 1050, 353, 354, + 366, 367, 0, 0, 0, 0, 368, 0, 866, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, - 365, 366, 0, 0, 0, 0, 367, 0, 1052, 353, + 365, 366, 367, 0, 0, 0, 0, 368, 0, 870, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, - 364, 365, 366, 0, 0, 0, 0, 367, 0, 1054, - 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, - 363, 364, 365, 366, 0, 0, 0, 0, 367, 0, - 1060, 353, 354, 355, 356, 357, 358, 359, 360, 361, - 362, 363, 364, 365, 366, 0, 0, 0, 0, 367, - 0, 1218, 353, 354, 355, 356, 357, 358, 359, 360, - 361, 362, 363, 364, 365, 366, 0, 0, 0, 0, - 367, 0, 1235, 353, 354, 355, 356, 357, 358, 359, - 360, 361, 362, 363, 364, 365, 366, 0, 0, 0, - 0, 367, 0, 1253, 353, 354, 355, 356, 357, 358, - 359, 360, 361, 362, 363, 364, 365, 366, 0, 0, - 0, 0, 367, 0, 1407, 353, 354, 355, 356, 357, - 358, 359, 360, 361, 362, 363, 364, 365, 366, 0, - 0, 0, 0, 367, 0, 1465, 353, 354, 355, 356, + 364, 365, 366, 367, 0, 0, 0, 0, 368, 0, + 1053, 354, 355, 356, 357, 358, 359, 360, 361, 362, + 363, 364, 365, 366, 367, 0, 0, 0, 0, 368, + 0, 1055, 354, 355, 356, 357, 358, 359, 360, 361, + 362, 363, 364, 365, 366, 367, 0, 0, 0, 0, + 368, 0, 1057, 354, 355, 356, 357, 358, 359, 360, + 361, 362, 363, 364, 365, 366, 367, 0, 0, 0, + 0, 368, 0, 1059, 354, 355, 356, 357, 358, 359, + 360, 361, 362, 363, 364, 365, 366, 367, 0, 0, + 0, 0, 368, 0, 1065, 354, 355, 356, 357, 358, + 359, 360, 361, 362, 363, 364, 365, 366, 367, 0, + 0, 0, 0, 368, 0, 1223, 354, 355, 356, 357, + 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, + 0, 0, 0, 0, 368, 0, 1240, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, - 0, 0, 0, 0, 367 + 367, 0, 0, 0, 0, 368, 0, 1258, 354, 355, + 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, + 366, 367, 0, 0, 0, 0, 368, 0, 1412, 354, + 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, + 365, 366, 367, 0, 0, 0, 0, 368, 0, 1470, + 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, + 364, 365, 366, 367, 0, 0, 0, 0, 368 }; static const yytype_int16 yycheck[] = { - 6, 1142, 3, 6, 6, 4, 213, 156, 6, 4, - 418, 419, 6, 162, 6, 4, 4, 4, 225, 6, - 4, 324, 325, 326, 327, 328, 4, 4, 331, 332, - 333, 781, 4, 4, 4, 58, 5, 5, 5, 4, - 6, 0, 6, 6, 6, 6, 145, 146, 6, 339, - 6, 4, 342, 4, 155, 6, 4, 7, 13, 266, - 856, 268, 161, 73, 163, 52, 155, 852, 145, 146, - 152, 153, 82, 75, 145, 146, 6, 159, 155, 89, - 90, 4, 5, 93, 94, 162, 40, 41, 7, 43, - 6, 162, 98, 168, 186, 187, 188, 8, 173, 52, - 152, 153, 177, 56, 145, 146, 145, 146, 97, 98, - 99, 100, 58, 66, 60, 38, 39, 40, 41, 107, - 108, 162, 1263, 46, 163, 6, 155, 219, 220, 95, - 145, 146, 116, 162, 95, 55, 6, 7, 58, 141, - 142, 143, 107, 108, 146, 147, 157, 162, 1289, 150, - 142, 145, 146, 163, 62, 157, 155, 152, 153, 161, - 6, 7, 157, 162, 159, 167, 168, 169, 170, 164, - 172, 173, 174, 175, 163, 177, 178, 179, 162, 155, - 142, 155, 155, 155, 162, 162, 936, 58, 162, 162, - 162, 162, 162, 162, 162, 162, 198, 155, 162, 162, - 123, 124, 204, 205, 162, 58, 157, 155, 155, 159, - 155, 213, 155, 132, 133, 134, 135, 162, 55, 1004, - 155, 58, 429, 60, 155, 136, 137, 138, 139, 140, - 141, 142, 143, 144, 145, 146, 147, 148, 149, 241, - 242, 243, 155, 154, 157, 145, 146, 201, 202, 251, - 252, 253, 163, 255, 155, 209, 258, 259, 58, 213, - 262, 161, 337, 553, 155, 340, 157, 557, 52, 1410, - 477, 55, 55, 275, 58, 58, 60, 60, 145, 146, - 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, + 6, 212, 3, 6, 6, 419, 420, 4, 4, 340, + 6, 6, 343, 224, 6, 4, 6, 4, 6, 4, + 4, 4, 157, 4, 4, 4, 4, 13, 163, 4, + 6, 786, 5, 5, 5, 325, 326, 327, 328, 329, + 6, 4, 332, 333, 334, 7, 6, 4, 55, 6, + 73, 58, 146, 147, 4, 6, 267, 1147, 269, 82, + 73, 55, 146, 147, 58, 6, 156, 90, 91, 82, + 164, 94, 95, 163, 76, 0, 156, 90, 91, 163, + 7, 94, 95, 163, 857, 7, 156, 40, 41, 7, + 43, 97, 146, 147, 156, 52, 153, 154, 146, 147, + 4, 5, 52, 160, 96, 861, 56, 6, 162, 73, + 164, 98, 99, 100, 101, 163, 66, 7, 82, 108, + 109, 156, 156, 108, 109, 58, 90, 91, 163, 163, + 94, 95, 6, 117, 38, 39, 40, 41, 140, 141, + 142, 164, 46, 145, 146, 96, 6, 159, 149, 6, + 162, 146, 147, 143, 156, 143, 153, 154, 160, 6, + 7, 158, 158, 160, 166, 167, 168, 169, 165, 171, + 172, 173, 174, 156, 176, 177, 178, 164, 1268, 163, + 163, 156, 163, 163, 163, 163, 941, 163, 163, 157, + 163, 163, 163, 156, 162, 197, 156, 163, 160, 158, + 164, 203, 204, 163, 1294, 58, 133, 134, 135, 136, + 212, 133, 134, 135, 136, 133, 134, 135, 136, 430, + 124, 125, 146, 147, 156, 556, 153, 154, 156, 560, + 158, 153, 154, 160, 153, 154, 1009, 146, 147, 163, + 242, 243, 244, 133, 134, 135, 136, 200, 201, 156, + 252, 253, 254, 162, 256, 208, 156, 259, 260, 212, + 156, 263, 157, 153, 154, 153, 154, 162, 156, 480, + 158, 156, 160, 52, 276, 163, 55, 165, 58, 58, + 60, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, - 322, 323, 58, 1073, 73, 156, 145, 146, 330, 156, - 161, 145, 146, 82, 161, 337, 60, 6, 340, 342, - 89, 90, 161, 155, 93, 94, 1487, 161, 7, 163, - 55, 353, 354, 355, 356, 357, 358, 359, 360, 361, - 362, 363, 364, 365, 366, 367, 145, 146, 156, 162, - 445, 446, 447, 161, 376, 162, 152, 153, 58, 155, - 382, 157, 161, 159, 163, 387, 162, 462, 164, 73, - 392, 393, 394, 395, 8, 55, 699, 399, 82, 145, - 146, 55, 404, 405, 406, 89, 90, 4, 156, 93, - 94, 145, 146, 161, 163, 161, 58, 418, 419, 421, - 422, 423, 424, 425, 426, 145, 146, 161, 430, 431, - 432, 433, 434, 4, 145, 146, 438, 145, 146, 441, - 442, 161, 6, 445, 446, 447, 448, 449, 158, 451, - 161, 161, 454, 161, 4, 155, 759, 157, 155, 762, - 462, 764, 416, 417, 155, 768, 468, 469, 145, 146, - 424, 145, 146, 132, 133, 134, 135, 155, 6, 163, - 145, 146, 145, 146, 161, 487, 156, 161, 791, 491, - 493, 161, 494, 152, 153, 6, 161, 7, 161, 155, - 159, 157, 1298, 155, 1300, 156, 1302, 152, 153, 5, - 161, 157, 157, 588, 159, 590, 621, 622, 623, 164, - 4, 1271, 136, 137, 138, 139, 140, 141, 142, 143, - 144, 145, 146, 147, 148, 149, 156, 4, 162, 73, - 154, 161, 38, 39, 40, 41, 156, 155, 82, 163, - 46, 161, 558, 628, 557, 89, 90, 559, 52, 93, - 94, 55, 1347, 155, 58, 1350, 60, 155, 1353, 157, - 155, 155, 136, 137, 138, 139, 140, 141, 142, 143, - 144, 145, 146, 147, 148, 149, 588, 155, 590, 591, - 154, 666, 7, 668, 596, 597, 155, 672, 673, 674, - 675, 155, 155, 1399, 157, 680, 7, 155, 610, 157, - 155, 155, 157, 615, 620, 621, 622, 623, 620, 621, - 622, 623, 132, 133, 134, 135, 628, 123, 124, 163, - 632, 633, 155, 4, 157, 925, 638, 155, 928, 929, - 145, 146, 152, 153, 145, 146, 155, 1432, 157, 651, - 4, 6, 654, 1449, 6, 1451, 161, 1453, 6, 73, - 161, 5, 5, 1459, 666, 155, 668, 157, 82, 155, - 672, 673, 674, 675, 155, 89, 90, 631, 680, 93, - 94, 155, 6, 758, 638, 687, 1471, 689, 690, 1474, - 644, 155, 1477, 157, 162, 1480, 699, 155, 1494, 157, - 1496, 155, 1498, 157, 155, 76, 77, 78, 79, 784, - 785, 786, 787, 84, 1122, 1123, 87, 132, 133, 134, - 135, 155, 155, 1508, 157, 1510, 155, 1512, 145, 146, - 155, 155, 157, 735, 736, 155, 155, 152, 153, 145, - 146, 145, 146, 4, 161, 145, 146, 749, 750, 751, - 752, 753, 754, 755, 162, 161, 758, 161, 4, 5, - 162, 161, 151, 162, 766, 145, 146, 155, 770, 147, - 148, 149, 774, 155, 155, 157, 154, 161, 1081, 163, - 155, 161, 784, 785, 786, 787, 788, 155, 155, 73, - 157, 180, 38, 39, 40, 41, 157, 155, 82, 157, - 46, 52, 6, 162, 55, 89, 90, 58, 197, 93, - 94, 200, 136, 137, 138, 139, 140, 141, 142, 143, - 144, 145, 146, 147, 148, 149, 155, 155, 157, 157, - 154, 161, 221, 163, 3, 4, 161, 157, 163, 159, - 9, 10, 11, 162, 798, 14, 15, 16, 17, 18, - 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, - 29, 30, 31, 32, 33, 34, 162, 161, 870, 163, - 157, 157, 875, 42, 43, 157, 5, 123, 124, 163, - 161, 883, 163, 272, 273, 1293, 161, 5, 163, 843, - 844, 845, 5, 159, 145, 146, 161, 6, 163, 73, - 6, 110, 904, 905, 155, 162, 152, 153, 82, 6, - 157, 162, 73, 159, 4, 89, 90, 6, 6, 93, - 94, 82, 73, 161, 154, 163, 929, 162, 89, 90, - 159, 82, 93, 94, 6, 937, 1011, 7, 89, 90, - 162, 157, 93, 94, 161, 951, 163, 6, 950, 951, - 161, 163, 163, 122, 73, 145, 146, 147, 148, 149, - 129, 130, 131, 82, 154, 161, 58, 163, 60, 155, - 89, 90, 7, 155, 93, 94, 145, 146, 161, 73, - 163, 150, 7, 985, 986, 987, 155, 155, 82, 163, - 161, 160, 163, 995, 996, 89, 90, 73, 7, 93, - 94, 1003, 163, 161, 7, 163, 82, 155, 161, 1011, - 163, 6, 163, 89, 90, 7, 156, 93, 94, 161, - 161, 163, 163, 168, 161, 161, 163, 163, 173, 1031, - 1032, 1033, 177, 161, 73, 163, 161, 1040, 163, 161, - 1042, 163, 6, 82, 163, 1047, 161, 7, 163, 1003, - 89, 90, 6, 4, 93, 94, 161, 156, 163, 1065, - 161, 4, 163, 6, 1066, 161, 107, 163, 73, 163, - 161, 156, 163, 8, 161, 161, 163, 82, 1084, 161, - 161, 163, 1084, 162, 89, 90, 1088, 163, 93, 94, - 156, 162, 1094, 1095, 162, 162, 241, 1099, 243, 161, - 1307, 163, 162, 161, 1106, 163, 161, 161, 163, 163, - 161, 161, 1118, 163, 1116, 161, 1118, 163, 161, 156, - 163, 1122, 1123, 161, 163, 163, 6, 161, 1130, 163, - 161, 161, 163, 163, 161, 1089, 163, 161, 1140, 163, - 161, 161, 1144, 163, 161, 1147, 163, 161, 161, 163, - 163, 4, 158, 1159, 6, 6, 4, 1159, 163, 4, - 7, 1464, 110, 1165, 1166, 7, 555, 7, 7, 110, - 1124, 7, 1126, 7, 1128, 7, 110, 7, 6, 1254, - 159, 163, 163, 6, 158, 1187, 1140, 7, 7, 1143, - 1144, 7, 337, 1400, 159, 340, 162, 6, 1501, 155, - 1503, 136, 137, 138, 139, 140, 141, 142, 143, 144, - 145, 146, 147, 148, 149, 1290, 155, 1219, 162, 154, - 1523, 156, 6, 4, 12, 13, 156, 616, 6, 158, - 6, 376, 6, 157, 7, 1237, 1311, 1239, 627, 6, - 142, 7, 60, 58, 7, 7, 7, 1249, 7, 1251, - 7, 7, 1254, 6, 4, 7, 156, 1259, 156, 156, - 156, 7, 1264, 7, 52, 53, 54, 55, 56, 57, - 58, 59, 60, 61, 7, 63, 6, 4, 66, 67, - 6, 69, 70, 71, 162, 155, 7, 75, 1290, 6, - 162, 7, 1293, 7, 7, 1297, 6, 1299, 6, 1301, - 445, 446, 447, 6, 6, 6, 6, 696, 4, 1311, - 58, 4, 4, 1315, 102, 103, 104, 462, 6, 163, - 4, 6, 1324, 1325, 469, 162, 1401, 156, 1403, 1331, - 6, 155, 159, 7, 156, 156, 6, 1339, 6, 6, - 6, 1343, 66, 1297, 6, 1299, 6, 1301, 162, 162, - 162, 162, 6, 5, 4, 1309, 7, 6, 1312, 7, - 7, 7, 7, 162, 162, 157, 6, 1369, 6, 162, - 156, 162, 162, 158, 6, 163, 141, 142, 143, 144, - 145, 146, 147, 148, 149, 1387, 1461, 6, 1390, 154, - 6, 1393, 161, 6, 106, 1397, 6, 4, 6, 1401, - 6, 1403, 6, 6, 159, 6, 1408, 6, 6, 1411, - 6, 1413, 6, 802, 803, 5, 805, 6, 807, 808, - 6, 110, 811, 812, 6, 6, 136, 137, 138, 139, + 322, 323, 324, 1078, 156, 1415, 73, 157, 62, 331, + 146, 147, 162, 146, 147, 82, 338, 157, 5, 341, + 343, 58, 162, 90, 91, 157, 162, 94, 95, 162, + 162, 164, 354, 355, 356, 357, 358, 359, 360, 361, + 362, 363, 364, 365, 366, 367, 368, 146, 147, 146, + 147, 38, 39, 40, 41, 377, 58, 156, 8, 46, + 156, 383, 158, 58, 163, 162, 388, 164, 148, 149, + 150, 393, 394, 395, 396, 155, 146, 147, 400, 60, + 146, 147, 1492, 405, 406, 407, 167, 162, 157, 164, + 6, 172, 162, 162, 704, 176, 162, 164, 419, 420, + 422, 423, 424, 425, 426, 427, 146, 147, 156, 431, + 432, 433, 434, 435, 6, 7, 156, 439, 146, 147, + 442, 443, 157, 163, 446, 447, 448, 162, 55, 451, + 452, 58, 454, 60, 162, 457, 55, 124, 125, 146, + 147, 153, 154, 465, 417, 418, 158, 163, 160, 471, + 472, 157, 425, 165, 764, 162, 162, 767, 52, 769, + 73, 55, 73, 773, 58, 156, 60, 158, 490, 82, + 163, 82, 494, 496, 156, 497, 158, 90, 91, 90, + 91, 94, 95, 94, 95, 55, 796, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, - 6, 6, 1444, 588, 154, 590, 6, 6, 6, 1403, - 161, 596, 597, 6, 6, 162, 4, 6, 5, 1461, - 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, - 146, 147, 148, 149, 6, 6, 159, 7, 154, 6, - 6, 56, 6, 628, 6, 1491, 6, 1489, 6, 6, - 162, 6, 163, 162, 6, 6, 885, 886, 887, 163, - 7, 162, 6, 162, 162, 162, 895, 6, 105, 6, - 163, 6, 6, 1519, 6, 108, 6, 906, 6, 162, - 6, 666, 6, 668, 6, 3, 4, 672, 673, 674, - 675, 9, 10, 11, 162, 680, 14, 15, 16, 17, + 150, 1276, 73, 58, 73, 155, 146, 147, 148, 149, + 150, 82, 55, 82, 164, 155, 146, 147, 58, 90, + 91, 90, 91, 94, 95, 94, 95, 1303, 156, 1305, + 158, 1307, 162, 156, 156, 561, 158, 560, 146, 147, + 562, 167, 185, 186, 187, 4, 172, 146, 147, 4, + 176, 164, 4, 164, 162, 146, 147, 338, 52, 1352, + 341, 55, 1355, 162, 58, 1358, 60, 8, 156, 591, + 158, 593, 594, 146, 147, 218, 219, 599, 600, 930, + 156, 55, 933, 934, 58, 6, 60, 230, 231, 162, + 156, 613, 158, 164, 156, 164, 618, 623, 624, 625, + 626, 623, 624, 625, 626, 146, 147, 146, 147, 631, + 146, 147, 156, 635, 636, 162, 242, 164, 244, 641, + 73, 162, 6, 162, 146, 147, 162, 158, 1404, 82, + 146, 147, 654, 4, 162, 657, 164, 90, 91, 4, + 162, 94, 95, 156, 1437, 158, 162, 156, 156, 671, + 158, 673, 163, 146, 147, 677, 678, 679, 680, 146, + 147, 634, 162, 685, 164, 446, 447, 448, 641, 162, + 692, 156, 694, 695, 647, 162, 156, 156, 1454, 158, + 1456, 704, 1458, 1476, 465, 156, 1479, 158, 1464, 1482, + 156, 156, 1485, 1127, 1128, 156, 137, 138, 139, 140, + 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, + 7, 164, 338, 156, 155, 341, 157, 156, 740, 741, + 1513, 156, 1515, 1499, 1517, 1501, 156, 1503, 158, 146, + 147, 6, 754, 755, 756, 757, 758, 759, 760, 4, + 156, 763, 158, 6, 150, 162, 624, 625, 626, 771, + 6, 377, 156, 775, 158, 156, 156, 779, 158, 5, + 4, 5, 156, 73, 158, 73, 5, 789, 790, 791, + 792, 793, 82, 179, 82, 156, 1086, 158, 156, 156, + 90, 91, 90, 91, 94, 95, 94, 95, 163, 156, + 196, 158, 156, 199, 38, 39, 40, 41, 156, 156, + 158, 158, 46, 162, 156, 164, 8, 158, 156, 160, + 591, 4, 593, 6, 220, 73, 162, 162, 164, 164, + 446, 447, 448, 162, 82, 164, 73, 162, 156, 164, + 803, 156, 90, 91, 156, 82, 94, 95, 162, 465, + 164, 4, 163, 90, 91, 163, 472, 94, 95, 4, + 631, 163, 158, 875, 164, 156, 164, 880, 162, 6, + 164, 73, 156, 58, 1298, 60, 888, 273, 274, 162, + 82, 164, 162, 156, 164, 848, 849, 850, 90, 91, + 124, 125, 94, 95, 162, 156, 164, 909, 910, 162, + 671, 164, 673, 162, 158, 164, 677, 678, 679, 680, + 162, 162, 164, 164, 685, 162, 164, 164, 163, 153, + 154, 934, 162, 162, 164, 164, 160, 164, 163, 5, + 942, 76, 77, 78, 79, 162, 162, 164, 164, 84, + 956, 163, 87, 955, 956, 137, 138, 139, 140, 141, + 142, 143, 144, 145, 146, 147, 148, 149, 150, 162, + 5, 164, 164, 155, 162, 162, 164, 164, 162, 162, + 164, 164, 164, 5, 162, 591, 164, 593, 990, 991, + 992, 6, 158, 599, 600, 162, 158, 164, 1000, 1001, + 6, 162, 763, 164, 160, 162, 1008, 164, 162, 162, + 164, 164, 163, 162, 1016, 164, 162, 162, 164, 164, + 162, 162, 164, 164, 162, 631, 164, 111, 789, 790, + 791, 792, 6, 6, 1036, 1037, 1038, 162, 162, 164, + 164, 162, 1045, 164, 162, 1047, 164, 162, 6, 164, + 1052, 162, 158, 164, 4, 1008, 163, 6, 155, 160, + 7, 163, 158, 6, 1070, 671, 6, 673, 7, 1071, + 164, 677, 678, 679, 680, 7, 7, 156, 156, 685, + 156, 156, 7, 1089, 157, 6, 6, 1089, 7, 7, + 6, 1093, 6, 6, 4, 163, 163, 1099, 1100, 163, + 163, 1312, 1104, 108, 163, 157, 162, 157, 157, 1111, + 157, 162, 6, 4, 162, 159, 162, 1123, 6, 1121, + 6, 1123, 4, 7, 111, 111, 1127, 1128, 7, 7, + 7, 7, 7, 1135, 111, 7, 7, 4, 6, 160, + 164, 1094, 6, 1145, 164, 159, 7, 1149, 7, 7, + 1152, 160, 163, 6, 156, 156, 163, 763, 1164, 6, + 4, 157, 1164, 6, 159, 6, 6, 158, 1170, 1171, + 7, 6, 558, 143, 7, 58, 1129, 7, 1131, 1469, + 1133, 7, 7, 789, 790, 791, 792, 60, 7, 7, + 1192, 7, 1145, 6, 1405, 1148, 1149, 137, 138, 139, + 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, + 150, 7, 157, 157, 7, 155, 1506, 7, 1508, 157, + 157, 7, 1224, 6, 4, 4, 156, 163, 12, 13, + 6, 58, 7, 619, 6, 163, 7, 7, 1528, 7, + 1242, 6, 1244, 6, 630, 6, 6, 6, 4, 4, + 4, 4, 1254, 164, 1256, 1016, 6, 1259, 6, 156, + 163, 157, 1264, 7, 157, 157, 6, 1269, 52, 53, + 54, 55, 56, 57, 58, 59, 60, 61, 6, 63, + 160, 66, 66, 67, 6, 69, 70, 71, 6, 163, + 6, 75, 6, 1295, 163, 6, 5, 1298, 163, 4, + 1302, 163, 1304, 6, 1306, 7, 7, 7, 7, 7, + 158, 163, 163, 6, 1316, 701, 6, 163, 1320, 103, + 104, 105, 6, 157, 163, 163, 6, 1329, 1330, 107, + 159, 6, 6, 6, 1336, 6, 4, 160, 162, 6, + 6, 6, 1344, 6, 6, 6, 1348, 6, 6, 1302, + 6, 1304, 5, 1306, 6, 6, 6, 6, 6, 111, + 6, 1314, 6, 6, 1317, 162, 6, 6, 6, 163, + 4, 6, 1374, 6, 6, 5, 7, 6, 160, 6, + 164, 6, 6, 6, 56, 6, 6, 6, 109, 163, + 1392, 164, 6, 1395, 12, 13, 1398, 163, 7, 163, + 1402, 6, 164, 6, 1406, 163, 1408, 164, 6, 106, + 1016, 1413, 163, 6, 1416, 6, 1418, 163, 6, 6, + 6, 807, 808, 6, 810, 6, 812, 813, 163, 6, + 816, 817, 6, 163, 52, 53, 54, 55, 56, 57, + 58, 59, 60, 61, 6, 63, 6, 1449, 66, 67, + 163, 69, 70, 71, 164, 1408, 73, 75, 6, 4, + 4, 953, 1374, 6, 1466, 6, 137, 138, 139, 140, + 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, + 6, 6, 6, 6, 155, 103, 104, 105, 6, 6, + 1496, 6, 1494, 399, 164, 6, 6, 6, 1259, 163, + 6, 6, 6, 163, 890, 891, 892, 6, 163, 163, + 6, 6, 6, 6, 900, 6, 163, 6, 1524, 6, + 6, 163, 163, 6, 6, 911, 163, 163, 6, 960, + 3, 3, 1452, 1074, 1295, -1, -1, -1, -1, 1145, + -1, -1, -1, 1149, -1, -1, 164, -1, -1, -1, + -1, -1, -1, -1, -1, 1316, 137, 138, 139, 140, + 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, + -1, -1, -1, -1, 155, 961, -1, -1, -1, -1, + -1, 967, -1, -1, -1, -1, -1, 973, 974, 975, + -1, -1, -1, 979, -1, -1, -1, -1, 984, 985, + 986, 139, 140, 141, 142, 143, 144, 145, 146, 147, + 148, 149, 150, -1, 1000, -1, -1, 155, -1, -1, + -1, -1, -1, -1, 1010, -1, -1, -1, 1014, 142, + 143, 144, 145, 146, 147, 148, 149, 150, 1244, -1, + -1, -1, 155, -1, -1, 1406, -1, 1408, 3, 4, + -1, -1, -1, 1259, 9, 10, 11, -1, -1, 14, + 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, + 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, + -1, 1067, -1, 1069, -1, -1, -1, 42, 43, 1295, + -1, -1, 12, 13, 140, 141, 142, 143, 144, 145, + 146, 147, 148, 149, 150, 1466, -1, -1, -1, 155, + 1316, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 1114, 1115, + 1116, 1117, 52, 53, 54, 55, 56, 57, 58, 59, + 60, 61, -1, 63, -1, -1, 66, 67, -1, 69, + 70, 71, -1, -1, -1, 75, -1, -1, -1, -1, + -1, 1147, -1, -1, -1, -1, -1, -1, 123, -1, + -1, -1, 1158, -1, -1, 130, 131, 132, -1, 1165, + -1, -1, -1, 103, 104, 105, 1172, -1, -1, -1, + -1, 146, 147, -1, -1, -1, 151, -1, -1, -1, + 1406, 156, 1408, -1, 159, -1, 161, -1, 163, -1, + 3, 4, -1, -1, -1, -1, 9, 10, 11, -1, + -1, 14, 15, 16, 17, 18, 19, 20, 21, 22, + 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, + 33, 34, 35, 1449, 164, -1, -1, -1, -1, 42, + 43, -1, -1, 1239, -1, -1, 12, 13, -1, 52, + 1466, -1, 55, -1, -1, 58, -1, 60, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 70, -1, -1, + -1, -1, 1268, 76, 77, 78, 79, 80, -1, -1, + -1, 84, -1, -1, 87, -1, 52, 53, 54, 55, + 56, 57, 58, 59, 60, 61, -1, 63, 1294, -1, + 66, 67, -1, 69, 70, 71, -1, -1, -1, 75, + -1, -1, -1, -1, -1, 1311, -1, -1, -1, -1, + 123, -1, -1, -1, -1, -1, -1, 130, 131, 132, + -1, -1, -1, -1, -1, -1, -1, 103, 104, 105, + -1, -1, -1, 146, 147, -1, -1, -1, 151, -1, + -1, -1, -1, 156, -1, -1, -1, -1, 161, -1, + 163, 164, -1, -1, 1360, 3, 4, -1, -1, -1, + -1, 9, 10, 11, -1, -1, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, - 28, 29, 30, 31, 32, 33, 34, 6, 163, 6, - 73, 6, 162, 6, 42, 43, 4, 956, 4, 6, - 162, 6, 6, 962, 6, 6, 6, 6, 6, 968, - 969, 970, 6, 163, 162, 974, 162, 6, 6, 162, - 979, 980, 981, 138, 139, 140, 141, 142, 143, 144, - 145, 146, 147, 148, 149, 6, 995, 6, 6, 154, - 6, 6, 162, 758, 6, 6, 1005, 6, 162, 162, - 1009, 162, 162, 6, 6, 136, 137, 138, 139, 140, - 141, 142, 143, 144, 145, 146, 147, 148, 149, 784, - 785, 786, 787, 154, 122, 6, 6, 6, 6, 6, - 6, 129, 130, 131, 139, 140, 141, 142, 143, 144, - 145, 146, 147, 148, 149, 948, 1369, 145, 146, 154, - 955, 3, 150, 1062, 3, 1064, 398, 155, 1069, 1447, - 158, -1, 160, -1, 162, -1, -1, -1, -1, 12, - 13, 136, 137, 138, 139, 140, 141, 142, 143, 144, - 145, 146, 147, 148, 149, -1, -1, -1, -1, 154, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 1109, 1110, 1111, 1112, -1, -1, -1, -1, -1, 52, - 53, 54, 55, 56, 57, 58, 59, 60, 61, -1, - 63, -1, -1, 66, 67, 6, 69, 70, 71, -1, - -1, -1, 75, 1142, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 1153, -1, -1, -1, -1, -1, - -1, 1160, -1, -1, -1, -1, 3, 4, 1167, 102, - 103, 104, 9, 10, 11, -1, -1, 14, 15, 16, - 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, - 27, 28, 29, 30, 31, 32, 33, 34, 35, -1, - -1, -1, -1, -1, -1, 42, 43, -1, -1, -1, - -1, -1, -1, -1, -1, 52, -1, -1, 55, -1, - -1, 58, -1, 60, -1, -1, -1, -1, -1, -1, - 163, -1, -1, 70, -1, 1234, -1, -1, -1, 76, - 77, 78, 79, 80, -1, -1, -1, 84, -1, -1, - 87, -1, -1, -1, -1, -1, 1011, -1, -1, -1, - -1, -1, -1, -1, 1263, 136, 137, 138, 139, 140, - 141, 142, 143, 144, 145, 146, 147, 148, 149, -1, - -1, -1, -1, 154, 6, 122, -1, -1, -1, -1, - 1289, -1, 129, 130, 131, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 1306, 145, 146, - -1, -1, -1, 150, -1, -1, -1, -1, 155, -1, - -1, 3, 4, 160, -1, 162, 163, 9, 10, 11, + 28, 29, 30, 31, 32, 33, 34, 35, 164, -1, + -1, -1, -1, -1, 42, 43, -1, -1, -1, -1, + -1, -1, -1, -1, 52, -1, -1, 55, -1, 1415, + 58, 1417, 60, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 70, -1, -1, -1, -1, -1, 76, 77, + 78, 79, 80, -1, -1, -1, 84, -1, -1, 87, + -1, 3, 4, -1, -1, -1, -1, 9, 10, 11, -1, -1, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, - 32, 33, 34, 35, -1, -1, 1355, -1, -1, -1, - 42, 43, -1, -1, -1, -1, -1, -1, -1, -1, - 52, -1, -1, 55, -1, -1, 58, -1, 60, -1, - -1, -1, -1, -1, -1, 1140, -1, -1, 70, 1144, - -1, -1, -1, -1, 76, 77, 78, 79, 80, -1, - -1, -1, 84, -1, -1, 87, -1, -1, -1, -1, - -1, 1410, -1, 1412, 136, 137, 138, 139, 140, 141, - 142, 143, 144, 145, 146, 147, 148, 149, 6, -1, - -1, -1, 154, -1, -1, -1, -1, -1, -1, -1, - 122, -1, -1, -1, -1, -1, -1, 129, 130, 131, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, 145, 146, -1, -1, -1, 150, -1, - -1, -1, -1, 155, -1, -1, -1, -1, 160, -1, - -1, 163, -1, -1, 1239, -1, -1, -1, 1487, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 1254, - -1, -1, 3, 4, 5, -1, 7, -1, 9, 10, - 11, -1, -1, 14, 15, 16, 17, 18, 19, 20, - 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, - 31, 32, 33, 34, 6, 1290, -1, 38, 39, 40, - 41, 42, 43, -1, -1, 46, -1, -1, 12, 13, - -1, -1, -1, -1, -1, -1, 1311, -1, 136, 137, - 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, - 148, 149, -1, -1, -1, -1, 154, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, 52, 53, + 32, 33, 34, -1, -1, 123, -1, -1, -1, -1, + 42, 43, 130, 131, 132, -1, 1492, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 146, 147, + -1, -1, -1, 151, -1, -1, -1, -1, 156, -1, + -1, -1, -1, 161, -1, -1, 164, 3, 4, 5, + -1, 7, -1, 9, 10, 11, -1, -1, 14, 15, + 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, + 26, 27, 28, 29, 30, 31, 32, 33, 34, -1, + -1, -1, 38, 39, 40, 41, 42, 43, -1, -1, + 46, 123, 12, 13, -1, -1, -1, -1, 130, 131, + 132, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, 146, 147, -1, -1, -1, 151, + -1, -1, -1, -1, 156, -1, -1, 159, -1, 161, + -1, 163, 52, 53, 54, 55, 56, 57, 58, 59, + 60, 61, -1, 63, -1, -1, 66, 67, -1, 69, + 70, 71, -1, -1, -1, 75, -1, -1, -1, -1, + -1, 117, -1, -1, -1, -1, -1, 123, 124, 125, + -1, -1, -1, -1, 130, 131, 132, 133, 134, 135, + 136, -1, -1, 103, 104, 105, -1, -1, -1, -1, + 146, 147, -1, -1, -1, 151, -1, 153, 154, -1, + 156, -1, 158, -1, 160, 161, -1, 163, 3, 4, + 5, -1, -1, -1, 9, 10, 11, -1, -1, 14, + 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, + 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, + 35, -1, -1, -1, 164, -1, -1, 42, 43, -1, + -1, -1, -1, 12, 13, -1, -1, 52, -1, -1, + 55, -1, -1, 58, -1, 60, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 70, -1, -1, -1, -1, + -1, 76, 77, 78, 79, 80, -1, -1, -1, 84, + -1, -1, 87, 52, 53, 54, 55, 56, 57, 58, + 59, 60, 61, -1, 63, -1, -1, 66, 67, -1, + 69, 70, 71, -1, -1, -1, 75, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 123, -1, + -1, -1, -1, -1, -1, 130, 131, 132, -1, -1, + -1, -1, -1, -1, 103, 104, 105, -1, -1, -1, + -1, 146, 147, -1, -1, -1, 151, -1, -1, -1, + -1, 156, -1, 3, 4, 5, 161, -1, 163, 9, + 10, 11, -1, -1, 14, 15, 16, 17, 18, 19, + 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, + 30, 31, 32, 33, 34, 35, -1, -1, -1, -1, + -1, -1, 42, 43, -1, 164, -1, -1, 12, 13, + -1, -1, 52, -1, -1, 55, -1, -1, 58, -1, + 60, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 70, -1, -1, -1, -1, -1, 76, 77, 78, 79, + 80, -1, -1, -1, 84, -1, -1, 87, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, -1, 63, -1, -1, 66, 67, -1, 69, 70, 71, -1, -1, - -1, 75, -1, -1, -1, 116, -1, -1, -1, -1, - -1, 122, 123, 124, -1, -1, -1, -1, 129, 130, - 131, 132, 133, 134, 135, -1, -1, -1, 102, 103, - 104, -1, -1, -1, 145, 146, 1401, -1, 1403, 150, - -1, 152, 153, -1, 155, -1, 157, -1, 159, 160, - -1, 162, -1, -1, 136, 137, 138, 139, 140, 141, - 142, 143, 144, 145, 146, 147, 148, 149, -1, -1, - -1, -1, 154, -1, -1, -1, -1, -1, -1, 1444, - -1, -1, -1, -1, -1, -1, 3, 4, 5, 163, - -1, -1, 9, 10, 11, -1, 1461, 14, 15, 16, - 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, - 27, 28, 29, 30, 31, 32, 33, 34, 35, -1, - -1, -1, -1, -1, -1, 42, 43, -1, -1, -1, - -1, 12, 13, -1, -1, 52, -1, -1, 55, -1, - -1, 58, -1, 60, -1, -1, -1, -1, -1, -1, - -1, -1, -1, 70, -1, -1, -1, -1, -1, 76, - 77, 78, 79, 80, -1, -1, -1, 84, -1, -1, - 87, 52, 53, 54, 55, 56, 57, 58, 59, 60, - 61, -1, 63, -1, -1, 66, 67, -1, 69, 70, - 71, -1, -1, -1, 75, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 122, -1, -1, -1, -1, - -1, -1, 129, 130, 131, -1, -1, -1, -1, -1, - -1, 102, 103, 104, -1, -1, -1, -1, 145, 146, - -1, -1, -1, 150, -1, -1, -1, -1, 155, -1, - 3, 4, 5, 160, -1, 162, 9, 10, 11, -1, - -1, 14, 15, 16, 17, 18, 19, 20, 21, 22, - 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, - 33, 34, 35, -1, -1, -1, -1, -1, -1, 42, - 43, -1, 163, -1, -1, 12, 13, -1, -1, 52, - -1, -1, 55, -1, -1, 58, -1, 60, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 70, -1, -1, - -1, -1, -1, 76, 77, 78, 79, 80, -1, -1, - -1, 84, -1, -1, 87, 52, 53, 54, 55, 56, - 57, 58, 59, 60, 61, -1, 63, -1, -1, 66, - 67, -1, 69, 70, 71, -1, -1, -1, 75, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 122, - -1, -1, -1, -1, -1, -1, 129, 130, 131, -1, - -1, -1, -1, -1, -1, 102, 103, 104, -1, -1, - -1, -1, 145, 146, -1, -1, -1, 150, -1, -1, - -1, -1, 155, -1, 3, 4, 5, 160, -1, 162, - 9, 10, 11, -1, -1, 14, 15, 16, 17, 18, - 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, - 29, 30, 31, 32, 33, 34, 35, -1, -1, -1, - -1, -1, -1, 42, 43, -1, 163, -1, -1, 12, - 13, -1, -1, 52, -1, -1, 55, -1, -1, 58, - -1, 60, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 70, -1, -1, -1, -1, -1, 76, 77, 78, - 79, 80, -1, -1, -1, 84, -1, -1, 87, 52, - 53, 54, 55, 56, 57, 58, 59, 60, 61, -1, - 63, -1, -1, 66, 67, -1, 69, 70, 71, -1, - -1, -1, 75, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, 122, -1, -1, -1, -1, -1, -1, - 129, 130, 131, -1, -1, -1, -1, -1, -1, 102, - 103, 104, -1, -1, -1, -1, 145, 146, -1, -1, - -1, 150, -1, -1, -1, -1, 155, -1, 3, 4, - -1, 160, -1, 162, 9, 10, 11, -1, -1, 14, + -1, 75, 6, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 123, -1, -1, -1, -1, -1, -1, + 130, 131, 132, 6, -1, -1, -1, -1, -1, 103, + 104, 105, -1, -1, -1, -1, 146, 147, -1, -1, + -1, 151, -1, -1, -1, -1, 156, -1, 3, 4, + 5, 161, -1, 163, 9, 10, 11, -1, -1, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, -1, -1, -1, -1, -1, -1, 42, 43, -1, - 163, -1, -1, 12, 13, -1, -1, 52, -1, -1, + 164, -1, -1, -1, -1, -1, -1, 52, -1, -1, 55, -1, -1, 58, -1, 60, -1, -1, -1, -1, -1, -1, -1, -1, -1, 70, -1, -1, -1, -1, -1, 76, 77, 78, 79, 80, -1, -1, -1, 84, - -1, -1, 87, 52, 53, 54, 55, 56, 57, 58, - 59, 60, 61, -1, 63, -1, -1, 66, 67, -1, - 69, 70, 71, -1, -1, -1, 75, 6, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 122, -1, -1, - -1, -1, -1, -1, 129, 130, 131, 6, -1, -1, - -1, -1, -1, 102, 103, 104, -1, -1, -1, -1, - 145, 146, -1, -1, -1, 150, -1, -1, -1, -1, - 155, -1, 3, 4, -1, 160, -1, 162, 9, 10, - 11, -1, -1, 14, 15, 16, 17, 18, 19, 20, - 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, - 31, 32, 33, 34, 35, -1, -1, -1, -1, -1, - -1, 42, 43, -1, 163, -1, -1, -1, -1, -1, - -1, 52, -1, -1, 55, -1, -1, 58, -1, 60, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 70, - -1, -1, -1, -1, -1, 76, 77, 78, 79, 80, - -1, -1, -1, 84, -1, -1, 87, 136, 137, 138, - 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, - 149, -1, -1, -1, -1, 154, -1, 136, 137, 138, - 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, - 149, 122, 6, -1, -1, 154, -1, -1, 129, 130, - 131, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 145, 146, -1, -1, -1, 150, - -1, -1, -1, -1, 155, -1, 3, 4, -1, 160, - -1, 162, 9, 10, 11, -1, -1, 14, 15, 16, - 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, - 27, 28, 29, 30, 31, 32, 33, 34, 35, -1, - -1, -1, -1, -1, -1, 42, 43, -1, -1, -1, - -1, -1, -1, -1, -1, 52, -1, -1, 55, -1, - -1, 58, -1, 60, -1, -1, -1, -1, -1, -1, - -1, -1, -1, 70, -1, -1, -1, -1, -1, 76, - 77, 78, 79, 80, -1, -1, -1, 84, -1, -1, - 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 136, 137, 138, 139, 140, 141, 142, 143, - 144, 145, 146, 147, 148, 149, 6, -1, -1, -1, - 154, -1, -1, -1, -1, 122, -1, -1, -1, -1, - -1, -1, 129, 130, 131, 6, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, 145, 146, - -1, -1, -1, 150, -1, -1, -1, -1, 155, -1, - 3, 4, -1, 160, -1, 162, 9, 10, 11, -1, - -1, 14, 15, 16, 17, 18, 19, 20, 21, 22, - 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, - 33, 34, 35, -1, -1, -1, -1, -1, -1, 42, - 43, -1, -1, -1, -1, -1, -1, -1, -1, 52, - -1, -1, 55, -1, -1, 58, -1, 60, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 70, -1, -1, - -1, -1, -1, 76, 77, 78, 79, 80, -1, -1, - -1, 84, -1, -1, 87, -1, 136, 137, 138, 139, - 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, - -1, -1, -1, -1, 154, 136, 137, 138, 139, 140, - 141, 142, 143, 144, 145, 146, 147, 148, 149, 122, - 7, 8, -1, 154, -1, -1, 129, 130, 131, -1, + -1, -1, 87, 137, 138, 139, 140, 141, 142, 143, + 144, 145, 146, 147, 148, 149, 150, -1, -1, -1, + -1, 155, -1, -1, 137, 138, 139, 140, 141, 142, + 143, 144, 145, 146, 147, 148, 149, 150, 123, 6, + -1, -1, 155, -1, -1, 130, 131, 132, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 146, 147, -1, -1, -1, 151, -1, -1, -1, + -1, 156, -1, 3, 4, -1, 161, -1, 163, 9, + 10, 11, -1, -1, 14, 15, 16, 17, 18, 19, + 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, + 30, 31, 32, 33, 34, 35, -1, -1, -1, -1, + -1, -1, 42, 43, -1, -1, -1, -1, -1, -1, + -1, -1, 52, -1, -1, 55, -1, -1, 58, -1, + 60, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 70, -1, -1, -1, -1, -1, 76, 77, 78, 79, + 80, -1, -1, -1, 84, -1, -1, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 145, 146, -1, -1, -1, 150, -1, -1, - -1, -1, 155, -1, 3, 4, -1, 160, -1, 162, - 9, 10, 11, -1, -1, 14, 15, 16, 17, 18, - 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, - 29, 30, 31, 32, 33, 34, 35, -1, -1, -1, - -1, -1, -1, 42, 43, -1, -1, -1, -1, -1, - -1, -1, -1, 52, -1, -1, 55, -1, -1, 58, - -1, 60, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 70, -1, -1, -1, -1, -1, 76, 77, 78, - 79, 80, -1, -1, -1, 84, -1, -1, 87, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, - 147, 148, 149, -1, -1, -1, -1, 154, -1, -1, - -1, -1, -1, 122, -1, -1, -1, -1, -1, -1, - 129, 130, 131, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 145, 146, -1, -1, - -1, 150, -1, -1, -1, -1, 155, -1, 3, 4, - 5, 160, -1, 162, 9, 10, 11, -1, -1, 14, + 147, 148, 149, 150, 6, -1, -1, -1, 155, -1, + -1, -1, -1, 123, -1, -1, -1, -1, -1, -1, + 130, 131, 132, 6, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 146, 147, -1, -1, + -1, 151, -1, -1, -1, -1, 156, -1, 3, 4, + -1, 161, -1, 163, 9, 10, 11, -1, -1, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, - -1, -1, -1, 38, 39, 40, 41, 42, 43, -1, - -1, 46, 3, 4, 5, -1, -1, -1, 9, 10, - 11, -1, -1, 14, 15, 16, 17, 18, 19, 20, - 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, - 31, 32, 33, 34, -1, -1, -1, 38, 39, 40, - 41, 42, 43, 3, 4, 46, -1, -1, -1, 9, - 10, 11, -1, -1, 14, 15, 16, 17, 18, 19, - 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, - 30, 31, 32, 33, 34, -1, -1, 122, 123, 124, - -1, -1, 42, 43, 129, 130, 131, -1, -1, -1, + 35, -1, -1, -1, -1, -1, -1, 42, 43, -1, + -1, -1, -1, -1, -1, -1, -1, 52, -1, -1, + 55, -1, -1, 58, -1, 60, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 70, -1, -1, -1, -1, + -1, 76, 77, 78, 79, 80, -1, -1, -1, 84, + -1, -1, 87, -1, -1, 137, 138, 139, 140, 141, + 142, 143, 144, 145, 146, 147, 148, 149, 150, -1, + -1, -1, -1, 155, 137, 138, 139, 140, 141, 142, + 143, 144, 145, 146, 147, 148, 149, 150, 123, 6, + -1, -1, 155, -1, -1, 130, 131, 132, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 145, 146, -1, -1, -1, 150, -1, -1, -1, -1, - 155, -1, -1, -1, -1, 160, -1, 162, -1, -1, - -1, 122, 123, 124, -1, -1, -1, -1, 129, 130, - 131, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 145, 146, -1, -1, -1, 150, - -1, -1, -1, -1, 155, -1, -1, -1, -1, 160, - -1, 162, 122, -1, -1, -1, -1, -1, -1, 129, - 130, 131, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 145, 146, -1, -1, -1, - 150, -1, -1, -1, -1, 155, -1, -1, 158, -1, - 160, -1, 162, 3, 4, 5, -1, -1, -1, 9, + -1, 146, 147, -1, -1, -1, 151, -1, -1, -1, + -1, 156, -1, 3, 4, -1, 161, -1, 163, 9, 10, 11, -1, -1, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, - 30, 31, 32, 33, 34, -1, -1, -1, 3, 4, - -1, -1, 42, 43, 9, 10, 11, -1, -1, 14, + 30, 31, 32, 33, 34, 35, -1, -1, -1, -1, + -1, -1, 42, 43, -1, -1, -1, -1, -1, -1, + -1, -1, 52, -1, -1, 55, -1, -1, 58, -1, + 60, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 70, -1, -1, -1, -1, -1, 76, 77, 78, 79, + 80, -1, -1, -1, 84, -1, -1, 87, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, + 147, 148, 149, 150, 6, -1, -1, -1, 155, -1, + -1, -1, -1, 123, -1, -1, -1, -1, -1, -1, + 130, 131, 132, 6, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 146, 147, -1, -1, + -1, 151, -1, -1, -1, -1, 156, -1, 3, 4, + -1, 161, -1, 163, 9, 10, 11, -1, -1, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, - -1, -1, -1, 3, 4, -1, -1, 42, 43, 9, + 35, -1, -1, -1, -1, -1, -1, 42, 43, -1, + -1, -1, -1, -1, -1, -1, -1, 52, -1, -1, + 55, -1, -1, 58, -1, 60, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 70, -1, -1, -1, -1, + -1, 76, 77, 78, 79, 80, -1, -1, -1, 84, + -1, -1, 87, -1, -1, 137, 138, 139, 140, 141, + 142, 143, 144, 145, 146, 147, 148, 149, 150, -1, + -1, -1, -1, 155, 137, 138, 139, 140, 141, 142, + 143, 144, 145, 146, 147, 148, 149, 150, 123, 6, + -1, -1, 155, -1, -1, 130, 131, 132, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 146, 147, -1, -1, -1, 151, -1, -1, -1, + -1, 156, -1, 3, 4, -1, 161, -1, 163, 9, 10, 11, -1, -1, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, - 30, 31, 32, 33, 34, -1, -1, -1, -1, -1, + 30, 31, 32, 33, 34, 35, -1, -1, -1, -1, -1, -1, 42, 43, -1, -1, -1, -1, -1, -1, - -1, -1, 122, -1, -1, -1, -1, -1, -1, 129, - 130, 131, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 145, 146, -1, -1, -1, - 150, -1, -1, -1, -1, 155, -1, 122, -1, -1, - 160, -1, 162, -1, 129, 130, 131, -1, -1, -1, + -1, -1, 52, -1, -1, 55, -1, -1, 58, -1, + 60, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 70, -1, -1, -1, -1, -1, 76, 77, 78, 79, + 80, -1, -1, -1, 84, -1, -1, 87, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, + 147, 148, 149, 150, -1, 6, -1, -1, 155, -1, + -1, -1, -1, 123, -1, -1, -1, -1, -1, -1, + 130, 131, 132, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 146, 147, -1, -1, + -1, 151, -1, -1, -1, -1, 156, -1, 3, 4, + 5, 161, -1, 163, 9, 10, 11, -1, -1, 14, + 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, + 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, + -1, -1, -1, 38, 39, 40, 41, 42, 43, -1, + -1, 46, 3, 4, 5, -1, -1, -1, 9, 10, + 11, -1, -1, 14, 15, 16, 17, 18, 19, 20, + 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, + 31, 32, 33, 34, -1, -1, -1, 38, 39, 40, + 41, 42, 43, -1, -1, 46, 137, 138, 139, 140, + 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, + -1, -1, -1, -1, 155, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 123, 124, + 125, -1, -1, -1, -1, 130, 131, 132, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 145, 146, -1, 7, -1, 150, -1, -1, -1, -1, - 155, -1, 122, -1, -1, 160, -1, 162, -1, 129, - 130, 131, -1, 8, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 145, 146, -1, -1, -1, - 150, -1, -1, -1, -1, 155, -1, 3, 4, -1, - 160, -1, 162, 9, 10, 11, -1, -1, 14, 15, + -1, 146, 147, -1, -1, -1, 151, -1, -1, -1, + -1, 156, -1, -1, -1, -1, 161, -1, 163, -1, + -1, -1, 123, 124, 125, -1, -1, -1, -1, 130, + 131, 132, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 146, 147, -1, -1, -1, + 151, -1, -1, -1, -1, 156, -1, 3, 4, 5, + 161, -1, 163, 9, 10, 11, -1, -1, 14, 15, + 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, + 26, 27, 28, 29, 30, 31, 32, 33, 34, -1, + -1, -1, 3, 4, -1, -1, 42, 43, 9, 10, + 11, -1, -1, 14, 15, 16, 17, 18, 19, 20, + 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, + 31, 32, 33, 34, -1, -1, -1, 3, 4, -1, + -1, 42, 43, 9, 10, 11, -1, -1, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, - 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, + 26, 27, 28, 29, 30, 31, 32, 33, 34, -1, -1, -1, -1, -1, -1, -1, 42, 43, -1, -1, - -1, -1, -1, -1, -1, -1, 52, -1, -1, 55, - -1, -1, 58, -1, 60, -1, -1, -1, -1, -1, - -1, 8, -1, -1, 70, -1, -1, -1, -1, -1, - 76, 77, 78, 79, 80, -1, -1, -1, 84, -1, - 8, 87, 136, 137, 138, 139, 140, 141, 142, 143, - 144, 145, 146, 147, 148, 149, -1, -1, -1, 8, - 154, 136, 137, 138, 139, 140, 141, 142, 143, 144, - 145, 146, 147, 148, 149, -1, 122, -1, -1, 154, - -1, 8, -1, 129, 130, 131, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 145, - 146, -1, -1, -1, 150, 3, 4, 5, -1, 155, - -1, 9, 10, 11, 160, -1, 14, 15, 16, 17, - 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, - 28, 29, 30, 31, 32, 33, 34, 8, -1, -1, - 38, 39, 40, 41, 42, 43, -1, -1, 46, 136, + -1, -1, -1, -1, -1, -1, -1, 123, -1, -1, + -1, -1, -1, -1, 130, 131, 132, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 146, 147, -1, -1, -1, 151, -1, -1, -1, -1, + 156, -1, 123, -1, -1, 161, -1, 163, -1, 130, + 131, 132, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 146, 147, -1, -1, -1, + 151, -1, -1, -1, -1, 156, -1, 123, -1, -1, + 161, -1, 163, -1, 130, 131, 132, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 146, 147, -1, -1, -1, 151, -1, -1, -1, -1, + 156, -1, 3, 4, -1, 161, -1, 163, 9, 10, + 11, -1, -1, 14, 15, 16, 17, 18, 19, 20, + 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, + 31, 32, 33, 34, 35, -1, -1, -1, -1, -1, + -1, 42, 43, -1, -1, -1, -1, -1, -1, -1, + -1, 52, -1, -1, 55, -1, -1, 58, -1, 60, + -1, -1, -1, -1, -1, -1, -1, -1, -1, 70, + -1, -1, -1, -1, -1, 76, 77, 78, 79, 80, + -1, 3, 4, 84, -1, -1, 87, 9, 10, 11, + -1, -1, 14, 15, 16, 17, 18, 19, 20, 21, + 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, + 32, 33, 34, 6, -1, -1, -1, -1, -1, -1, + 42, 43, 123, -1, -1, -1, -1, -1, -1, 130, + 131, 132, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 146, 147, -1, -1, -1, + 151, 3, 4, 5, -1, 156, -1, 9, 10, 11, + 161, -1, 14, 15, 16, 17, 18, 19, 20, 21, + 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, + 32, 33, 34, 6, -1, -1, 38, 39, 40, 41, + 42, 43, -1, -1, 46, -1, -1, -1, -1, -1, + -1, 123, -1, 7, 8, -1, -1, -1, 130, 131, + 132, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 7, -1, 146, 147, -1, -1, -1, 151, + -1, -1, -1, -1, 156, -1, -1, -1, -1, 161, + -1, -1, 8, -1, 137, 138, 139, 140, 141, 142, + 143, 144, 145, 146, 147, 148, 149, 150, -1, -1, + -1, 8, 155, -1, -1, -1, -1, -1, -1, -1, + -1, 123, 124, 125, -1, -1, -1, -1, 130, 131, + 132, 8, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, 146, 147, -1, -1, -1, 151, + 8, -1, -1, -1, 156, -1, -1, -1, -1, 161, + -1, -1, -1, -1, 137, 138, 139, 140, 141, 142, + 143, 144, 145, 146, 147, 148, 149, 150, 8, -1, + -1, -1, 155, 137, 138, 139, 140, 141, 142, 143, + 144, 145, 146, 147, 148, 149, 150, 8, -1, -1, + -1, 155, 137, 138, 139, 140, 141, 142, 143, 144, + 145, 146, 147, 148, 149, 150, -1, -1, -1, -1, + 155, 137, 138, 139, 140, 141, 142, 143, 144, 145, + 146, 147, 148, 149, 150, -1, -1, -1, -1, 155, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, - 147, 148, 149, -1, -1, -1, -1, 154, 136, 137, - 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, - 148, 149, -1, -1, -1, -1, 154, 136, 137, 138, - 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, - 149, -1, -1, -1, -1, 154, -1, -1, -1, 136, + 147, 148, 149, 150, -1, -1, -1, -1, 155, -1, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, - 147, 148, 149, -1, 122, 123, 124, 154, -1, -1, - -1, 129, 130, 131, 73, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 145, 146, -1, - -1, -1, 150, -1, -1, -1, -1, 155, -1, -1, - -1, -1, 160, -1, -1, 136, 137, 138, 139, 140, - 141, 142, 143, 144, 145, 146, 147, 148, 149, -1, - 0, 1, -1, 154, 4, -1, -1, -1, -1, -1, - -1, -1, 12, 13, -1, -1, -1, 136, 137, 138, - 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, - 149, -1, -1, -1, -1, 154, 36, 37, -1, -1, - -1, -1, -1, -1, 44, 45, -1, 47, 48, 49, - -1, 51, 52, 53, 54, 55, 56, 57, 58, 59, - 60, 61, -1, 63, 64, 65, 66, 67, 68, 69, - 70, 71, 72, -1, 74, 75, 76, 77, 78, 79, - 80, 81, 82, 83, 84, 85, 86, 87, 88, -1, - 4, 91, 92, -1, -1, -1, 96, -1, 12, 13, - -1, 101, 102, 103, 104, -1, -1, 107, -1, 109, - -1, 111, 112, 113, 114, 115, 116, 117, 118, 119, - 120, 121, 36, 37, -1, 125, 126, 127, 128, -1, - 44, 45, -1, 47, 48, 49, -1, 51, 52, 53, - 54, 55, 56, 57, 58, 59, 60, 61, -1, 63, - 64, 65, 66, 67, 68, 69, 70, 71, 72, -1, - 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, - 84, 85, 86, 87, 88, 12, 13, 91, 92, -1, - -1, -1, 96, -1, -1, -1, -1, 101, 102, 103, - 104, -1, -1, 107, -1, 109, -1, 111, 112, 113, - 114, 115, 116, 117, 118, 119, 120, 121, -1, -1, - -1, 125, 126, 127, 128, 52, 53, 54, 55, 56, - 57, 58, 59, 60, 61, -1, 63, -1, -1, 66, - 67, -1, 69, 70, 71, -1, -1, -1, 75, -1, - -1, -1, -1, 136, 137, 138, 139, 140, 141, 142, - 143, 144, 145, 146, 147, 148, 149, -1, -1, -1, - -1, 154, -1, -1, -1, 102, 103, 104, 161, -1, - 163, 136, 137, 138, 139, 140, 141, 142, 143, 144, - 145, 146, 147, 148, 149, -1, -1, -1, -1, 154, - -1, -1, -1, -1, -1, -1, 161, -1, 163, -1, - 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, - 146, 147, 148, 149, -1, -1, -1, -1, 154, -1, - -1, -1, -1, -1, -1, 161, -1, 163, 136, 137, + 147, 148, 149, 150, -1, -1, -1, -1, 155, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, - 148, 149, -1, -1, -1, -1, 154, -1, -1, -1, - -1, -1, -1, -1, -1, 163, 136, 137, 138, 139, + 148, 149, 150, 73, -1, -1, -1, 155, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, - -1, -1, -1, -1, 154, -1, -1, -1, -1, -1, - -1, -1, -1, 163, 136, 137, 138, 139, 140, 141, - 142, 143, 144, 145, 146, 147, 148, 149, -1, -1, - -1, -1, 154, -1, -1, -1, -1, -1, -1, -1, - -1, 163, 136, 137, 138, 139, 140, 141, 142, 143, - 144, 145, 146, 147, 148, 149, -1, -1, -1, -1, - 154, -1, -1, -1, -1, -1, -1, -1, -1, 163, - 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, - 146, 147, 148, 149, -1, -1, -1, -1, 154, -1, - -1, -1, -1, -1, -1, -1, -1, 163, 136, 137, - 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, - 148, 149, -1, -1, -1, -1, 154, -1, -1, -1, - -1, -1, -1, -1, -1, 163, 136, 137, 138, 139, - 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, - -1, -1, -1, -1, 154, -1, -1, -1, -1, -1, - -1, -1, -1, 163, 136, 137, 138, 139, 140, 141, - 142, 143, 144, 145, 146, 147, 148, 149, -1, -1, - -1, -1, 154, -1, -1, -1, -1, -1, -1, -1, - -1, 163, 136, 137, 138, 139, 140, 141, 142, 143, - 144, 145, 146, 147, 148, 149, -1, -1, -1, -1, - 154, -1, -1, -1, -1, -1, -1, -1, -1, 163, - 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, - 146, 147, 148, 149, -1, -1, -1, -1, 154, -1, - -1, -1, -1, -1, -1, -1, -1, 163, 136, 137, - 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, - 148, 149, -1, -1, -1, -1, 154, -1, -1, -1, - -1, -1, -1, -1, -1, 163, 136, 137, 138, 139, + 150, -1, -1, -1, -1, 155, 137, 138, 139, 140, + 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, + -1, 0, 1, -1, 155, 4, -1, -1, -1, -1, + -1, -1, -1, 12, 13, -1, -1, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, - -1, -1, -1, -1, 154, -1, -1, -1, -1, -1, - -1, -1, -1, 163, 136, 137, 138, 139, 140, 141, - 142, 143, 144, 145, 146, 147, 148, 149, -1, -1, - -1, -1, 154, -1, -1, -1, -1, -1, -1, -1, - -1, 163, 136, 137, 138, 139, 140, 141, 142, 143, - 144, 145, 146, 147, 148, 149, -1, -1, -1, -1, - 154, -1, -1, -1, -1, -1, -1, -1, -1, 163, - 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, - 146, 147, 148, 149, -1, -1, -1, -1, 154, -1, - -1, -1, -1, -1, -1, -1, -1, 163, 136, 137, - 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, - 148, 149, -1, -1, -1, -1, 154, -1, -1, -1, - -1, -1, -1, -1, -1, 163, 136, 137, 138, 139, - 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, - -1, -1, -1, -1, 154, -1, -1, -1, -1, -1, - -1, -1, -1, 163, 136, 137, 138, 139, 140, 141, - 142, 143, 144, 145, 146, 147, 148, 149, -1, -1, - -1, -1, 154, -1, -1, -1, -1, -1, -1, -1, - -1, 163, 136, 137, 138, 139, 140, 141, 142, 143, - 144, 145, 146, 147, 148, 149, -1, -1, -1, -1, - 154, -1, -1, -1, -1, -1, -1, -1, -1, 163, - 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, - 146, 147, 148, 149, -1, -1, -1, -1, 154, -1, - -1, -1, -1, -1, -1, -1, -1, 163, 136, 137, - 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, - 148, 149, -1, -1, -1, -1, 154, -1, -1, -1, - -1, -1, -1, -1, -1, 163, 136, 137, 138, 139, + 150, -1, -1, -1, -1, 155, -1, 36, 37, -1, + -1, -1, -1, -1, -1, 44, 45, -1, 47, 48, + 49, -1, 51, 52, 53, 54, 55, 56, 57, 58, + 59, 60, 61, -1, 63, 64, 65, 66, 67, 68, + 69, 70, 71, 72, -1, 74, 75, 76, 77, 78, + 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, + 89, -1, 4, 92, 93, -1, -1, -1, 97, -1, + 12, 13, -1, 102, 103, 104, 105, -1, -1, 108, + -1, 110, -1, 112, 113, 114, 115, 116, 117, 118, + 119, 120, 121, 122, 36, 37, -1, 126, 127, 128, + 129, -1, 44, 45, -1, 47, 48, 49, -1, 51, + 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, + -1, 63, 64, 65, 66, 67, 68, 69, 70, 71, + 72, -1, 74, 75, 76, 77, 78, 79, 80, 81, + 82, 83, 84, 85, 86, 87, 88, 89, 12, 13, + 92, 93, -1, -1, -1, 97, -1, -1, -1, -1, + 102, 103, 104, 105, -1, -1, 108, -1, 110, -1, + 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, + 122, -1, -1, -1, 126, 127, 128, 129, 52, 53, + 54, 55, 56, 57, 58, 59, 60, 61, -1, 63, + -1, -1, 66, 67, -1, 69, 70, 71, -1, -1, + -1, 75, -1, -1, -1, -1, -1, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, - -1, -1, -1, -1, 154, -1, -1, -1, -1, -1, - -1, -1, -1, 163, 136, 137, 138, 139, 140, 141, - 142, 143, 144, 145, 146, 147, 148, 149, -1, -1, - -1, -1, 154, -1, -1, -1, -1, -1, -1, -1, - -1, 163, 136, 137, 138, 139, 140, 141, 142, 143, - 144, 145, 146, 147, 148, 149, -1, -1, -1, -1, - 154, -1, -1, -1, -1, -1, -1, -1, -1, 163, - 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, - 146, 147, 148, 149, -1, -1, -1, -1, 154, -1, - -1, -1, -1, -1, -1, -1, 162, 136, 137, 138, + 150, -1, -1, -1, -1, 155, -1, -1, -1, 103, + 104, 105, 162, -1, 164, 137, 138, 139, 140, 141, + 142, 143, 144, 145, 146, 147, 148, 149, 150, -1, + -1, -1, -1, 155, -1, -1, -1, -1, -1, -1, + 162, -1, 164, -1, 137, 138, 139, 140, 141, 142, + 143, 144, 145, 146, 147, 148, 149, 150, -1, -1, + -1, -1, 155, -1, -1, -1, -1, -1, -1, 162, + -1, 164, 137, 138, 139, 140, 141, 142, 143, 144, + 145, 146, 147, 148, 149, 150, -1, -1, -1, -1, + 155, -1, -1, -1, -1, -1, -1, -1, -1, 164, + 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, + 147, 148, 149, 150, -1, -1, -1, -1, 155, -1, + -1, -1, -1, -1, -1, -1, -1, 164, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, - 149, -1, -1, -1, -1, 154, -1, -1, -1, -1, - -1, -1, -1, 162, 136, 137, 138, 139, 140, 141, - 142, 143, 144, 145, 146, 147, 148, 149, -1, -1, - -1, -1, 154, -1, 156, -1, -1, -1, -1, 161, - 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, - 146, 147, 148, 149, -1, -1, -1, -1, 154, -1, - -1, -1, -1, -1, -1, 161, 136, 137, 138, 139, - 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, - -1, -1, -1, -1, 154, -1, -1, -1, -1, -1, - -1, 161, 136, 137, 138, 139, 140, 141, 142, 143, - 144, 145, 146, 147, 148, 149, -1, -1, -1, -1, - 154, -1, -1, -1, -1, -1, -1, 161, 136, 137, - 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, - 148, 149, -1, -1, -1, -1, 154, -1, -1, -1, - -1, -1, -1, 161, 136, 137, 138, 139, 140, 141, - 142, 143, 144, 145, 146, 147, 148, 149, -1, -1, - -1, -1, 154, -1, -1, -1, -1, -1, -1, 161, - 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, - 146, 147, 148, 149, -1, -1, -1, -1, 154, -1, - -1, -1, -1, -1, -1, 161, 136, 137, 138, 139, - 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, - -1, -1, -1, -1, 154, -1, -1, -1, -1, -1, - -1, 161, 136, 137, 138, 139, 140, 141, 142, 143, - 144, 145, 146, 147, 148, 149, -1, -1, -1, -1, - 154, -1, -1, -1, -1, -1, -1, 161, 136, 137, - 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, - 148, 149, -1, -1, -1, -1, 154, -1, -1, -1, - -1, -1, -1, 161, 136, 137, 138, 139, 140, 141, - 142, 143, 144, 145, 146, 147, 148, 149, -1, -1, - -1, -1, 154, -1, -1, -1, -1, -1, -1, 161, - 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, - 146, 147, 148, 149, -1, -1, -1, -1, 154, -1, - -1, -1, -1, -1, -1, 161, 136, 137, 138, 139, - 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, - -1, -1, -1, -1, 154, -1, -1, -1, -1, -1, - -1, 161, 136, 137, 138, 139, 140, 141, 142, 143, - 144, 145, 146, 147, 148, 149, -1, -1, -1, -1, - 154, -1, -1, -1, -1, -1, -1, 161, 136, 137, - 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, - 148, 149, -1, -1, -1, -1, 154, -1, -1, -1, - -1, -1, -1, 161, 136, 137, 138, 139, 140, 141, - 142, 143, 144, 145, 146, 147, 148, 149, -1, -1, - -1, -1, 154, -1, -1, -1, -1, -1, -1, 161, - 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, - 146, 147, 148, 149, -1, -1, -1, -1, 154, -1, - -1, -1, -1, -1, -1, 161, 136, 137, 138, 139, - 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, - -1, -1, -1, -1, 154, -1, -1, -1, -1, -1, - -1, 161, 136, 137, 138, 139, 140, 141, 142, 143, - 144, 145, 146, 147, 148, 149, -1, -1, -1, -1, - 154, -1, -1, -1, -1, -1, -1, 161, 136, 137, - 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, - 148, 149, -1, -1, -1, -1, 154, -1, -1, -1, - -1, -1, -1, 161, 136, 137, 138, 139, 140, 141, - 142, 143, 144, 145, 146, 147, 148, 149, -1, -1, - -1, -1, 154, -1, -1, -1, -1, -1, -1, 161, - 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, - 146, 147, 148, 149, -1, -1, -1, -1, 154, -1, - -1, -1, -1, -1, -1, 161, 136, 137, 138, 139, - 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, - -1, -1, -1, -1, 154, -1, -1, -1, -1, -1, - -1, 161, 136, 137, 138, 139, 140, 141, 142, 143, - 144, 145, 146, 147, 148, 149, -1, -1, -1, -1, - 154, -1, -1, -1, -1, -1, -1, 161, 136, 137, - 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, - 148, 149, -1, -1, -1, -1, 154, -1, -1, -1, - -1, -1, -1, 161, 136, 137, 138, 139, 140, 141, - 142, 143, 144, 145, 146, 147, 148, 149, -1, -1, - -1, -1, 154, -1, -1, -1, -1, -1, -1, 161, - 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, - 146, 147, 148, 149, -1, -1, -1, -1, 154, -1, - -1, -1, -1, -1, -1, 161, 136, 137, 138, 139, - 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, - -1, -1, -1, -1, 154, -1, -1, -1, -1, -1, - -1, 161, 136, 137, 138, 139, 140, 141, 142, 143, - 144, 145, 146, 147, 148, 149, -1, -1, -1, -1, - 154, -1, -1, -1, 158, 136, 137, 138, 139, 140, - 141, 142, 143, 144, 145, 146, 147, 148, 149, -1, - -1, -1, -1, 154, -1, -1, -1, 158, 136, 137, + 149, 150, -1, -1, -1, -1, 155, -1, -1, -1, + -1, -1, -1, -1, -1, 164, 137, 138, 139, 140, + 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, + -1, -1, -1, -1, 155, -1, -1, -1, -1, -1, + -1, -1, -1, 164, 137, 138, 139, 140, 141, 142, + 143, 144, 145, 146, 147, 148, 149, 150, -1, -1, + -1, -1, 155, -1, -1, -1, -1, -1, -1, -1, + -1, 164, 137, 138, 139, 140, 141, 142, 143, 144, + 145, 146, 147, 148, 149, 150, -1, -1, -1, -1, + 155, -1, -1, -1, -1, -1, -1, -1, -1, 164, + 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, + 147, 148, 149, 150, -1, -1, -1, -1, 155, -1, + -1, -1, -1, -1, -1, -1, -1, 164, 137, 138, + 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, + 149, 150, -1, -1, -1, -1, 155, -1, -1, -1, + -1, -1, -1, -1, -1, 164, 137, 138, 139, 140, + 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, + -1, -1, -1, -1, 155, -1, -1, -1, -1, -1, + -1, -1, -1, 164, 137, 138, 139, 140, 141, 142, + 143, 144, 145, 146, 147, 148, 149, 150, -1, -1, + -1, -1, 155, -1, -1, -1, -1, -1, -1, -1, + -1, 164, 137, 138, 139, 140, 141, 142, 143, 144, + 145, 146, 147, 148, 149, 150, -1, -1, -1, -1, + 155, -1, -1, -1, -1, -1, -1, -1, -1, 164, + 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, + 147, 148, 149, 150, -1, -1, -1, -1, 155, -1, + -1, -1, -1, -1, -1, -1, -1, 164, 137, 138, + 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, + 149, 150, -1, -1, -1, -1, 155, -1, -1, -1, + -1, -1, -1, -1, -1, 164, 137, 138, 139, 140, + 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, + -1, -1, -1, -1, 155, -1, -1, -1, -1, -1, + -1, -1, -1, 164, 137, 138, 139, 140, 141, 142, + 143, 144, 145, 146, 147, 148, 149, 150, -1, -1, + -1, -1, 155, -1, -1, -1, -1, -1, -1, -1, + -1, 164, 137, 138, 139, 140, 141, 142, 143, 144, + 145, 146, 147, 148, 149, 150, -1, -1, -1, -1, + 155, -1, -1, -1, -1, -1, -1, -1, -1, 164, + 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, + 147, 148, 149, 150, -1, -1, -1, -1, 155, -1, + -1, -1, -1, -1, -1, -1, -1, 164, 137, 138, + 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, + 149, 150, -1, -1, -1, -1, 155, -1, -1, -1, + -1, -1, -1, -1, -1, 164, 137, 138, 139, 140, + 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, + -1, -1, -1, -1, 155, -1, -1, -1, -1, -1, + -1, -1, -1, 164, 137, 138, 139, 140, 141, 142, + 143, 144, 145, 146, 147, 148, 149, 150, -1, -1, + -1, -1, 155, -1, -1, -1, -1, -1, -1, -1, + -1, 164, 137, 138, 139, 140, 141, 142, 143, 144, + 145, 146, 147, 148, 149, 150, -1, -1, -1, -1, + 155, -1, -1, -1, -1, -1, -1, -1, -1, 164, + 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, + 147, 148, 149, 150, -1, -1, -1, -1, 155, -1, + -1, -1, -1, -1, -1, -1, -1, 164, 137, 138, + 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, + 149, 150, -1, -1, -1, -1, 155, -1, -1, -1, + -1, -1, -1, -1, -1, 164, 137, 138, 139, 140, + 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, + -1, -1, -1, -1, 155, -1, -1, -1, -1, -1, + -1, -1, -1, 164, 137, 138, 139, 140, 141, 142, + 143, 144, 145, 146, 147, 148, 149, 150, -1, -1, + -1, -1, 155, -1, -1, -1, -1, -1, -1, -1, + 163, 137, 138, 139, 140, 141, 142, 143, 144, 145, + 146, 147, 148, 149, 150, -1, -1, -1, -1, 155, + -1, -1, -1, -1, -1, -1, -1, 163, 137, 138, + 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, + 149, 150, -1, -1, -1, -1, 155, -1, 157, -1, + -1, -1, -1, 162, 137, 138, 139, 140, 141, 142, + 143, 144, 145, 146, 147, 148, 149, 150, -1, -1, + -1, -1, 155, -1, -1, -1, -1, -1, -1, 162, + 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, + 147, 148, 149, 150, -1, -1, -1, -1, 155, -1, + -1, -1, -1, -1, -1, 162, 137, 138, 139, 140, + 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, + -1, -1, -1, -1, 155, -1, -1, -1, -1, -1, + -1, 162, 137, 138, 139, 140, 141, 142, 143, 144, + 145, 146, 147, 148, 149, 150, -1, -1, -1, -1, + 155, -1, -1, -1, -1, -1, -1, 162, 137, 138, + 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, + 149, 150, -1, -1, -1, -1, 155, -1, -1, -1, + -1, -1, -1, 162, 137, 138, 139, 140, 141, 142, + 143, 144, 145, 146, 147, 148, 149, 150, -1, -1, + -1, -1, 155, -1, -1, -1, -1, -1, -1, 162, + 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, + 147, 148, 149, 150, -1, -1, -1, -1, 155, -1, + -1, -1, -1, -1, -1, 162, 137, 138, 139, 140, + 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, + -1, -1, -1, -1, 155, -1, -1, -1, -1, -1, + -1, 162, 137, 138, 139, 140, 141, 142, 143, 144, + 145, 146, 147, 148, 149, 150, -1, -1, -1, -1, + 155, -1, -1, -1, -1, -1, -1, 162, 137, 138, + 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, + 149, 150, -1, -1, -1, -1, 155, -1, -1, -1, + -1, -1, -1, 162, 137, 138, 139, 140, 141, 142, + 143, 144, 145, 146, 147, 148, 149, 150, -1, -1, + -1, -1, 155, -1, -1, -1, -1, -1, -1, 162, + 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, + 147, 148, 149, 150, -1, -1, -1, -1, 155, -1, + -1, -1, -1, -1, -1, 162, 137, 138, 139, 140, + 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, + -1, -1, -1, -1, 155, -1, -1, -1, -1, -1, + -1, 162, 137, 138, 139, 140, 141, 142, 143, 144, + 145, 146, 147, 148, 149, 150, -1, -1, -1, -1, + 155, -1, -1, -1, -1, -1, -1, 162, 137, 138, + 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, + 149, 150, -1, -1, -1, -1, 155, -1, -1, -1, + -1, -1, -1, 162, 137, 138, 139, 140, 141, 142, + 143, 144, 145, 146, 147, 148, 149, 150, -1, -1, + -1, -1, 155, -1, -1, -1, -1, -1, -1, 162, + 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, + 147, 148, 149, 150, -1, -1, -1, -1, 155, -1, + -1, -1, -1, -1, -1, 162, 137, 138, 139, 140, + 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, + -1, -1, -1, -1, 155, -1, -1, -1, -1, -1, + -1, 162, 137, 138, 139, 140, 141, 142, 143, 144, + 145, 146, 147, 148, 149, 150, -1, -1, -1, -1, + 155, -1, -1, -1, -1, -1, -1, 162, 137, 138, + 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, + 149, 150, -1, -1, -1, -1, 155, -1, -1, -1, + -1, -1, -1, 162, 137, 138, 139, 140, 141, 142, + 143, 144, 145, 146, 147, 148, 149, 150, -1, -1, + -1, -1, 155, -1, -1, -1, -1, -1, -1, 162, + 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, + 147, 148, 149, 150, -1, -1, -1, -1, 155, -1, + -1, -1, -1, -1, -1, 162, 137, 138, 139, 140, + 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, + -1, -1, -1, -1, 155, -1, -1, -1, -1, -1, + -1, 162, 137, 138, 139, 140, 141, 142, 143, 144, + 145, 146, 147, 148, 149, 150, -1, -1, -1, -1, + 155, -1, -1, -1, -1, -1, -1, 162, 137, 138, + 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, + 149, 150, -1, -1, -1, -1, 155, -1, -1, -1, + -1, -1, -1, 162, 137, 138, 139, 140, 141, 142, + 143, 144, 145, 146, 147, 148, 149, 150, -1, -1, + -1, -1, 155, -1, -1, -1, -1, -1, -1, 162, + 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, + 147, 148, 149, 150, -1, -1, -1, -1, 155, -1, + -1, -1, -1, -1, -1, 162, 137, 138, 139, 140, + 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, + -1, -1, -1, -1, 155, -1, -1, -1, 159, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, - 148, 149, -1, -1, -1, -1, 154, -1, -1, -1, - 158, 136, 137, 138, 139, 140, 141, 142, 143, 144, - 145, 146, 147, 148, 149, -1, -1, -1, -1, 154, - -1, -1, -1, 158, 136, 137, 138, 139, 140, 141, - 142, 143, 144, 145, 146, 147, 148, 149, -1, -1, - -1, -1, 154, -1, -1, -1, 158, 136, 137, 138, + 148, 149, 150, -1, -1, -1, -1, 155, -1, -1, + -1, 159, 137, 138, 139, 140, 141, 142, 143, 144, + 145, 146, 147, 148, 149, 150, -1, -1, -1, -1, + 155, -1, -1, -1, 159, 137, 138, 139, 140, 141, + 142, 143, 144, 145, 146, 147, 148, 149, 150, -1, + -1, -1, -1, 155, -1, -1, -1, 159, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, - 149, -1, -1, -1, -1, 154, -1, -1, -1, 158, - 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, - 146, 147, 148, 149, -1, -1, -1, -1, 154, -1, - -1, -1, 158, 136, 137, 138, 139, 140, 141, 142, - 143, 144, 145, 146, 147, 148, 149, -1, -1, -1, - -1, 154, -1, -1, -1, 158, 136, 137, 138, 139, + 149, 150, -1, -1, -1, -1, 155, -1, -1, -1, + 159, 137, 138, 139, 140, 141, 142, 143, 144, 145, + 146, 147, 148, 149, 150, -1, -1, -1, -1, 155, + -1, -1, -1, 159, 137, 138, 139, 140, 141, 142, + 143, 144, 145, 146, 147, 148, 149, 150, -1, -1, + -1, -1, 155, -1, -1, -1, 159, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, - -1, -1, -1, -1, 154, -1, -1, -1, 158, 136, + 150, -1, -1, -1, -1, 155, -1, -1, -1, 159, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, - 147, 148, 149, -1, -1, -1, -1, 154, -1, -1, - -1, 158, 136, 137, 138, 139, 140, 141, 142, 143, - 144, 145, 146, 147, 148, 149, -1, -1, -1, -1, - 154, -1, -1, -1, 158, 136, 137, 138, 139, 140, - 141, 142, 143, 144, 145, 146, 147, 148, 149, -1, - -1, -1, -1, 154, -1, -1, -1, 158, 136, 137, + 147, 148, 149, 150, -1, -1, -1, -1, 155, -1, + -1, -1, 159, 137, 138, 139, 140, 141, 142, 143, + 144, 145, 146, 147, 148, 149, 150, -1, -1, -1, + -1, 155, -1, -1, -1, 159, 137, 138, 139, 140, + 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, + -1, -1, -1, -1, 155, -1, -1, -1, 159, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, - 148, 149, -1, -1, -1, -1, 154, -1, -1, -1, - 158, 136, 137, 138, 139, 140, 141, 142, 143, 144, - 145, 146, 147, 148, 149, -1, -1, -1, -1, 154, - -1, -1, -1, 158, 136, 137, 138, 139, 140, 141, - 142, 143, 144, 145, 146, 147, 148, 149, -1, -1, - -1, -1, 154, -1, -1, -1, 158, 136, 137, 138, + 148, 149, 150, -1, -1, -1, -1, 155, -1, -1, + -1, 159, 137, 138, 139, 140, 141, 142, 143, 144, + 145, 146, 147, 148, 149, 150, -1, -1, -1, -1, + 155, -1, -1, -1, 159, 137, 138, 139, 140, 141, + 142, 143, 144, 145, 146, 147, 148, 149, 150, -1, + -1, -1, -1, 155, -1, -1, -1, 159, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, - 149, -1, -1, -1, -1, 154, -1, -1, -1, 158, - 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, - 146, 147, 148, 149, -1, -1, -1, -1, 154, -1, - -1, -1, 158, 136, 137, 138, 139, 140, 141, 142, - 143, 144, 145, 146, 147, 148, 149, -1, -1, -1, - -1, 154, -1, -1, -1, 158, 136, 137, 138, 139, + 149, 150, -1, -1, -1, -1, 155, -1, -1, -1, + 159, 137, 138, 139, 140, 141, 142, 143, 144, 145, + 146, 147, 148, 149, 150, -1, -1, -1, -1, 155, + -1, -1, -1, 159, 137, 138, 139, 140, 141, 142, + 143, 144, 145, 146, 147, 148, 149, 150, -1, -1, + -1, -1, 155, -1, -1, -1, 159, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, - -1, -1, -1, -1, 154, -1, -1, -1, 158, 136, + 150, -1, -1, -1, -1, 155, -1, -1, -1, 159, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, - 147, 148, 149, -1, -1, -1, -1, 154, -1, -1, - -1, 158, 136, 137, 138, 139, 140, 141, 142, 143, - 144, 145, 146, 147, 148, 149, -1, -1, -1, -1, - 154, -1, -1, -1, 158, 136, 137, 138, 139, 140, - 141, 142, 143, 144, 145, 146, 147, 148, 149, -1, - -1, -1, -1, 154, -1, -1, -1, 158, 136, 137, + 147, 148, 149, 150, -1, -1, -1, -1, 155, -1, + -1, -1, 159, 137, 138, 139, 140, 141, 142, 143, + 144, 145, 146, 147, 148, 149, 150, -1, -1, -1, + -1, 155, -1, -1, -1, 159, 137, 138, 139, 140, + 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, + -1, -1, -1, -1, 155, -1, -1, -1, 159, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, - 148, 149, -1, -1, -1, -1, 154, -1, -1, -1, - 158, 136, 137, 138, 139, 140, 141, 142, 143, 144, - 145, 146, 147, 148, 149, -1, -1, -1, -1, 154, - -1, -1, -1, 158, 136, 137, 138, 139, 140, 141, - 142, 143, 144, 145, 146, 147, 148, 149, -1, -1, - -1, -1, 154, -1, -1, -1, 158, 136, 137, 138, + 148, 149, 150, -1, -1, -1, -1, 155, -1, -1, + -1, 159, 137, 138, 139, 140, 141, 142, 143, 144, + 145, 146, 147, 148, 149, 150, -1, -1, -1, -1, + 155, -1, -1, -1, 159, 137, 138, 139, 140, 141, + 142, 143, 144, 145, 146, 147, 148, 149, 150, -1, + -1, -1, -1, 155, -1, -1, -1, 159, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, - 149, -1, -1, -1, -1, 154, -1, -1, -1, 158, - 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, - 146, 147, 148, 149, -1, -1, -1, -1, 154, -1, - -1, -1, 158, 136, 137, 138, 139, 140, 141, 142, - 143, 144, 145, 146, 147, 148, 149, -1, -1, -1, - -1, 154, -1, -1, -1, 158, 136, 137, 138, 139, + 149, 150, -1, -1, -1, -1, 155, -1, -1, -1, + 159, 137, 138, 139, 140, 141, 142, 143, 144, 145, + 146, 147, 148, 149, 150, -1, -1, -1, -1, 155, + -1, -1, -1, 159, 137, 138, 139, 140, 141, 142, + 143, 144, 145, 146, 147, 148, 149, 150, -1, -1, + -1, -1, 155, -1, -1, -1, 159, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, - -1, -1, -1, -1, 154, -1, -1, -1, 158, 136, + 150, -1, -1, -1, -1, 155, -1, -1, -1, 159, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, - 147, 148, 149, -1, -1, -1, -1, 154, -1, -1, - -1, 158, 136, 137, 138, 139, 140, 141, 142, 143, - 144, 145, 146, 147, 148, 149, -1, -1, -1, -1, - 154, -1, -1, -1, 158, 136, 137, 138, 139, 140, - 141, 142, 143, 144, 145, 146, 147, 148, 149, -1, - -1, -1, -1, 154, -1, -1, -1, 158, 136, 137, + 147, 148, 149, 150, -1, -1, -1, -1, 155, -1, + -1, -1, 159, 137, 138, 139, 140, 141, 142, 143, + 144, 145, 146, 147, 148, 149, 150, -1, -1, -1, + -1, 155, -1, -1, -1, 159, 137, 138, 139, 140, + 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, + -1, -1, -1, -1, 155, -1, -1, -1, 159, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, - 148, 149, -1, -1, -1, -1, 154, -1, -1, -1, - 158, 136, 137, 138, 139, 140, 141, 142, 143, 144, - 145, 146, 147, 148, 149, -1, -1, -1, -1, 154, - -1, 156, 136, 137, 138, 139, 140, 141, 142, 143, - 144, 145, 146, 147, 148, 149, -1, -1, -1, -1, - 154, -1, 156, 136, 137, 138, 139, 140, 141, 142, - 143, 144, 145, 146, 147, 148, 149, -1, -1, -1, - -1, 154, -1, 156, 136, 137, 138, 139, 140, 141, - 142, 143, 144, 145, 146, 147, 148, 149, -1, -1, - -1, -1, 154, -1, 156, 136, 137, 138, 139, 140, - 141, 142, 143, 144, 145, 146, 147, 148, 149, -1, - -1, -1, -1, 154, -1, 156, 136, 137, 138, 139, + 148, 149, 150, -1, -1, -1, -1, 155, -1, -1, + -1, 159, 137, 138, 139, 140, 141, 142, 143, 144, + 145, 146, 147, 148, 149, 150, -1, -1, -1, -1, + 155, -1, -1, -1, 159, 137, 138, 139, 140, 141, + 142, 143, 144, 145, 146, 147, 148, 149, 150, -1, + -1, -1, -1, 155, -1, 157, 137, 138, 139, 140, + 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, + -1, -1, -1, -1, 155, -1, 157, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, - -1, -1, -1, -1, 154, -1, 156, 136, 137, 138, + 150, -1, -1, -1, -1, 155, -1, 157, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, - 149, -1, -1, -1, -1, 154, -1, 156, 136, 137, + 149, 150, -1, -1, -1, -1, 155, -1, 157, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, - 148, 149, -1, -1, -1, -1, 154, -1, 156, 136, + 148, 149, 150, -1, -1, -1, -1, 155, -1, 157, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, - 147, 148, 149, -1, -1, -1, -1, 154, -1, 156, - 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, - 146, 147, 148, 149, -1, -1, -1, -1, 154, -1, - 156, 136, 137, 138, 139, 140, 141, 142, 143, 144, - 145, 146, 147, 148, 149, -1, -1, -1, -1, 154, - -1, 156, 136, 137, 138, 139, 140, 141, 142, 143, - 144, 145, 146, 147, 148, 149, -1, -1, -1, -1, - 154, -1, 156, 136, 137, 138, 139, 140, 141, 142, - 143, 144, 145, 146, 147, 148, 149, -1, -1, -1, - -1, 154, -1, 156, 136, 137, 138, 139, 140, 141, - 142, 143, 144, 145, 146, 147, 148, 149, -1, -1, - -1, -1, 154, -1, 156, 136, 137, 138, 139, 140, - 141, 142, 143, 144, 145, 146, 147, 148, 149, -1, - -1, -1, -1, 154, -1, 156, 136, 137, 138, 139, + 147, 148, 149, 150, -1, -1, -1, -1, 155, -1, + 157, 137, 138, 139, 140, 141, 142, 143, 144, 145, + 146, 147, 148, 149, 150, -1, -1, -1, -1, 155, + -1, 157, 137, 138, 139, 140, 141, 142, 143, 144, + 145, 146, 147, 148, 149, 150, -1, -1, -1, -1, + 155, -1, 157, 137, 138, 139, 140, 141, 142, 143, + 144, 145, 146, 147, 148, 149, 150, -1, -1, -1, + -1, 155, -1, 157, 137, 138, 139, 140, 141, 142, + 143, 144, 145, 146, 147, 148, 149, 150, -1, -1, + -1, -1, 155, -1, 157, 137, 138, 139, 140, 141, + 142, 143, 144, 145, 146, 147, 148, 149, 150, -1, + -1, -1, -1, 155, -1, 157, 137, 138, 139, 140, + 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, + -1, -1, -1, -1, 155, -1, 157, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, - -1, -1, -1, -1, 154, -1, 156, 136, 137, 138, + 150, -1, -1, -1, -1, 155, -1, 157, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, - 149, -1, -1, -1, -1, 154, -1, 156, 136, 137, + 149, 150, -1, -1, -1, -1, 155, -1, 157, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, - 148, 149, -1, -1, -1, -1, 154, -1, 156, 136, + 148, 149, 150, -1, -1, -1, -1, 155, -1, 157, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, - 147, 148, 149, -1, -1, -1, -1, 154, -1, 156, - 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, - 146, 147, 148, 149, -1, -1, -1, -1, 154, -1, - 156, 136, 137, 138, 139, 140, 141, 142, 143, 144, - 145, 146, 147, 148, 149, -1, -1, -1, -1, 154, - -1, 156, 136, 137, 138, 139, 140, 141, 142, 143, - 144, 145, 146, 147, 148, 149, -1, -1, -1, -1, - 154, -1, 156, 136, 137, 138, 139, 140, 141, 142, - 143, 144, 145, 146, 147, 148, 149, -1, -1, -1, - -1, 154, -1, 156, 136, 137, 138, 139, 140, 141, - 142, 143, 144, 145, 146, 147, 148, 149, -1, -1, - -1, -1, 154, -1, 156, 136, 137, 138, 139, 140, - 141, 142, 143, 144, 145, 146, 147, 148, 149, -1, - -1, -1, -1, 154, -1, 156, 136, 137, 138, 139, + 147, 148, 149, 150, -1, -1, -1, -1, 155, -1, + 157, 137, 138, 139, 140, 141, 142, 143, 144, 145, + 146, 147, 148, 149, 150, -1, -1, -1, -1, 155, + -1, 157, 137, 138, 139, 140, 141, 142, 143, 144, + 145, 146, 147, 148, 149, 150, -1, -1, -1, -1, + 155, -1, 157, 137, 138, 139, 140, 141, 142, 143, + 144, 145, 146, 147, 148, 149, 150, -1, -1, -1, + -1, 155, -1, 157, 137, 138, 139, 140, 141, 142, + 143, 144, 145, 146, 147, 148, 149, 150, -1, -1, + -1, -1, 155, -1, 157, 137, 138, 139, 140, 141, + 142, 143, 144, 145, 146, 147, 148, 149, 150, -1, + -1, -1, -1, 155, -1, 157, 137, 138, 139, 140, + 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, + -1, -1, -1, -1, 155, -1, 157, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, - -1, -1, -1, -1, 154, -1, 156, 136, 137, 138, + 150, -1, -1, -1, -1, 155, -1, 157, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, - 149, -1, -1, -1, -1, 154, -1, 156, 136, 137, + 149, 150, -1, -1, -1, -1, 155, -1, 157, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, - 148, 149, -1, -1, -1, -1, 154, -1, 156, 136, + 148, 149, 150, -1, -1, -1, -1, 155, -1, 157, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, - 147, 148, 149, -1, -1, -1, -1, 154, -1, 156, - 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, - 146, 147, 148, 149, -1, -1, -1, -1, 154, -1, - 156, 136, 137, 138, 139, 140, 141, 142, 143, 144, - 145, 146, 147, 148, 149, -1, -1, -1, -1, 154, - -1, 156, 136, 137, 138, 139, 140, 141, 142, 143, - 144, 145, 146, 147, 148, 149, -1, -1, -1, -1, - 154, -1, 156, 136, 137, 138, 139, 140, 141, 142, - 143, 144, 145, 146, 147, 148, 149, -1, -1, -1, - -1, 154, -1, 156, 136, 137, 138, 139, 140, 141, - 142, 143, 144, 145, 146, 147, 148, 149, -1, -1, - -1, -1, 154, -1, 156, 136, 137, 138, 139, 140, - 141, 142, 143, 144, 145, 146, 147, 148, 149, -1, - -1, -1, -1, 154, -1, 156, 136, 137, 138, 139, + 147, 148, 149, 150, -1, -1, -1, -1, 155, -1, + 157, 137, 138, 139, 140, 141, 142, 143, 144, 145, + 146, 147, 148, 149, 150, -1, -1, -1, -1, 155, + -1, 157, 137, 138, 139, 140, 141, 142, 143, 144, + 145, 146, 147, 148, 149, 150, -1, -1, -1, -1, + 155, -1, 157, 137, 138, 139, 140, 141, 142, 143, + 144, 145, 146, 147, 148, 149, 150, -1, -1, -1, + -1, 155, -1, 157, 137, 138, 139, 140, 141, 142, + 143, 144, 145, 146, 147, 148, 149, 150, -1, -1, + -1, -1, 155, -1, 157, 137, 138, 139, 140, 141, + 142, 143, 144, 145, 146, 147, 148, 149, 150, -1, + -1, -1, -1, 155, -1, 157, 137, 138, 139, 140, + 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, + -1, -1, -1, -1, 155, -1, 157, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, - -1, -1, -1, -1, 154, -1, 156, 136, 137, 138, + 150, -1, -1, -1, -1, 155, -1, 157, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, - 149, -1, -1, -1, -1, 154, -1, 156, 136, 137, + 149, 150, -1, -1, -1, -1, 155, -1, 157, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, - 148, 149, -1, -1, -1, -1, 154, -1, 156, 136, + 148, 149, 150, -1, -1, -1, -1, 155, -1, 157, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, - 147, 148, 149, -1, -1, -1, -1, 154, -1, 156, - 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, - 146, 147, 148, 149, -1, -1, -1, -1, 154, -1, - 156, 136, 137, 138, 139, 140, 141, 142, 143, 144, - 145, 146, 147, 148, 149, -1, -1, -1, -1, 154, - -1, 156, 136, 137, 138, 139, 140, 141, 142, 143, - 144, 145, 146, 147, 148, 149, -1, -1, -1, -1, - 154, -1, 156, 136, 137, 138, 139, 140, 141, 142, - 143, 144, 145, 146, 147, 148, 149, -1, -1, -1, - -1, 154, -1, 156, 136, 137, 138, 139, 140, 141, - 142, 143, 144, 145, 146, 147, 148, 149, -1, -1, - -1, -1, 154, -1, 156, 136, 137, 138, 139, 140, - 141, 142, 143, 144, 145, 146, 147, 148, 149, -1, - -1, -1, -1, 154, -1, 156, 136, 137, 138, 139, + 147, 148, 149, 150, -1, -1, -1, -1, 155, -1, + 157, 137, 138, 139, 140, 141, 142, 143, 144, 145, + 146, 147, 148, 149, 150, -1, -1, -1, -1, 155, + -1, 157, 137, 138, 139, 140, 141, 142, 143, 144, + 145, 146, 147, 148, 149, 150, -1, -1, -1, -1, + 155, -1, 157, 137, 138, 139, 140, 141, 142, 143, + 144, 145, 146, 147, 148, 149, 150, -1, -1, -1, + -1, 155, -1, 157, 137, 138, 139, 140, 141, 142, + 143, 144, 145, 146, 147, 148, 149, 150, -1, -1, + -1, -1, 155, -1, 157, 137, 138, 139, 140, 141, + 142, 143, 144, 145, 146, 147, 148, 149, 150, -1, + -1, -1, -1, 155, -1, 157, 137, 138, 139, 140, + 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, + -1, -1, -1, -1, 155, -1, 157, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, - -1, -1, -1, -1, 154, -1, 156, 136, 137, 138, + 150, -1, -1, -1, -1, 155, -1, 157, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, - 149, -1, -1, -1, -1, 154, -1, 156, 136, 137, + 149, 150, -1, -1, -1, -1, 155, -1, 157, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, - 148, 149, -1, -1, -1, -1, 154, -1, 156, 136, + 148, 149, 150, -1, -1, -1, -1, 155, -1, 157, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, - 147, 148, 149, -1, -1, -1, -1, 154, -1, 156, - 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, - 146, 147, 148, 149, -1, -1, -1, -1, 154, -1, - 156, 136, 137, 138, 139, 140, 141, 142, 143, 144, - 145, 146, 147, 148, 149, -1, -1, -1, -1, 154, - -1, 156, 136, 137, 138, 139, 140, 141, 142, 143, - 144, 145, 146, 147, 148, 149, -1, -1, -1, -1, - 154, -1, 156, 136, 137, 138, 139, 140, 141, 142, - 143, 144, 145, 146, 147, 148, 149, -1, -1, -1, - -1, 154, -1, 156, 136, 137, 138, 139, 140, 141, - 142, 143, 144, 145, 146, 147, 148, 149, -1, -1, - -1, -1, 154, -1, 156, 136, 137, 138, 139, 140, - 141, 142, 143, 144, 145, 146, 147, 148, 149, -1, - -1, -1, -1, 154, -1, 156, 136, 137, 138, 139, + 147, 148, 149, 150, -1, -1, -1, -1, 155, -1, + 157, 137, 138, 139, 140, 141, 142, 143, 144, 145, + 146, 147, 148, 149, 150, -1, -1, -1, -1, 155, + -1, 157, 137, 138, 139, 140, 141, 142, 143, 144, + 145, 146, 147, 148, 149, 150, -1, -1, -1, -1, + 155, -1, 157, 137, 138, 139, 140, 141, 142, 143, + 144, 145, 146, 147, 148, 149, 150, -1, -1, -1, + -1, 155, -1, 157, 137, 138, 139, 140, 141, 142, + 143, 144, 145, 146, 147, 148, 149, 150, -1, -1, + -1, -1, 155, -1, 157, 137, 138, 139, 140, 141, + 142, 143, 144, 145, 146, 147, 148, 149, 150, -1, + -1, -1, -1, 155, -1, 157, 137, 138, 139, 140, + 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, + -1, -1, -1, -1, 155, -1, 157, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, - -1, -1, -1, -1, 154 + 150, -1, -1, -1, -1, 155, -1, 157, 137, 138, + 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, + 149, 150, -1, -1, -1, -1, 155, -1, 157, 137, + 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, + 148, 149, 150, -1, -1, -1, -1, 155, -1, 157, + 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, + 147, 148, 149, 150, -1, -1, -1, -1, 155 }; /* YYSTOS[STATE-NUM] -- The (internal number of the) accessing symbol of state STATE-NUM. */ -static const yytype_uint16 yystos[] = +static const yytype_uint8 yystos[] = { - 0, 1, 166, 167, 6, 0, 4, 12, 13, 36, + 0, 1, 167, 168, 6, 0, 4, 12, 13, 36, 37, 44, 45, 47, 48, 49, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, - 87, 88, 91, 92, 96, 101, 102, 103, 104, 107, - 109, 111, 112, 113, 114, 115, 116, 117, 118, 119, - 120, 121, 125, 126, 127, 128, 168, 170, 171, 189, - 202, 207, 210, 211, 212, 213, 214, 215, 216, 236, - 237, 238, 239, 240, 241, 3, 4, 5, 7, 9, - 10, 11, 14, 15, 16, 17, 18, 19, 20, 21, - 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, - 32, 33, 34, 38, 39, 40, 41, 42, 43, 46, - 116, 122, 123, 124, 129, 130, 131, 132, 133, 134, - 135, 145, 146, 150, 152, 153, 155, 157, 159, 160, - 162, 187, 188, 242, 243, 255, 13, 58, 155, 155, - 6, 162, 6, 6, 6, 6, 157, 155, 162, 155, - 155, 4, 155, 162, 155, 155, 4, 162, 155, 155, - 62, 58, 58, 6, 58, 58, 55, 58, 60, 60, - 52, 55, 58, 60, 55, 58, 60, 55, 58, 155, - 55, 162, 145, 146, 155, 162, 244, 245, 244, 162, - 52, 55, 58, 162, 244, 4, 52, 56, 66, 58, - 60, 58, 55, 4, 116, 162, 4, 6, 52, 55, - 58, 4, 4, 4, 5, 35, 52, 55, 58, 60, - 70, 146, 155, 162, 207, 216, 242, 247, 248, 249, - 4, 155, 155, 155, 4, 162, 251, 4, 155, 155, - 6, 6, 157, 4, 4, 5, 162, 5, 162, 4, - 242, 6, 155, 162, 4, 157, 159, 164, 188, 162, - 5, 255, 155, 157, 155, 157, 155, 157, 155, 157, - 155, 157, 155, 157, 155, 157, 155, 157, 155, 157, - 155, 157, 155, 157, 155, 157, 155, 157, 155, 157, - 155, 157, 155, 157, 155, 157, 155, 157, 155, 157, - 155, 157, 155, 157, 155, 155, 155, 155, 155, 155, - 7, 155, 155, 155, 242, 242, 242, 162, 242, 158, - 162, 242, 4, 107, 108, 4, 4, 207, 208, 209, - 247, 6, 6, 136, 137, 138, 139, 140, 141, 142, - 143, 144, 145, 146, 147, 148, 149, 154, 6, 6, - 242, 5, 5, 242, 191, 242, 146, 242, 249, 250, - 242, 242, 155, 242, 250, 242, 242, 155, 250, 242, - 242, 247, 155, 162, 155, 155, 248, 248, 248, 155, - 203, 204, 205, 206, 155, 155, 155, 247, 242, 4, - 247, 244, 244, 244, 242, 242, 145, 146, 162, 162, - 244, 162, 162, 162, 145, 146, 155, 209, 244, 162, - 155, 162, 155, 155, 155, 248, 248, 247, 155, 4, - 6, 157, 157, 209, 6, 162, 162, 162, 157, 157, - 155, 157, 157, 5, 162, 5, 5, 5, 52, 55, - 58, 60, 162, 242, 249, 242, 163, 250, 8, 147, - 6, 6, 242, 242, 242, 159, 242, 162, 110, 242, - 242, 242, 6, 6, 209, 6, 209, 157, 6, 247, - 247, 157, 242, 4, 162, 172, 6, 242, 242, 242, - 242, 242, 242, 242, 242, 242, 242, 242, 242, 242, - 242, 242, 242, 242, 242, 242, 242, 242, 242, 242, - 242, 242, 242, 242, 242, 242, 242, 242, 242, 242, - 242, 242, 242, 242, 242, 242, 242, 242, 242, 4, - 254, 255, 254, 254, 254, 254, 254, 256, 242, 254, - 254, 254, 250, 156, 7, 187, 250, 158, 7, 187, - 188, 159, 7, 157, 163, 52, 55, 58, 60, 202, - 6, 242, 242, 242, 242, 242, 242, 242, 242, 242, - 242, 242, 242, 242, 242, 242, 6, 156, 161, 156, - 161, 161, 158, 161, 190, 156, 147, 161, 163, 156, - 156, 242, 156, 163, 156, 156, 242, 163, 156, 156, - 7, 242, 242, 242, 242, 7, 7, 234, 234, 242, - 155, 155, 155, 155, 242, 242, 242, 7, 162, 156, - 6, 161, 161, 161, 244, 244, 208, 208, 161, 242, - 242, 242, 242, 220, 161, 209, 242, 242, 242, 242, - 242, 7, 235, 6, 7, 242, 6, 242, 242, 163, - 250, 250, 250, 242, 242, 156, 162, 158, 162, 242, - 4, 242, 162, 162, 162, 162, 250, 156, 163, 242, - 162, 242, 249, 156, 156, 156, 107, 161, 209, 162, - 8, 156, 158, 163, 163, 156, 161, 163, 242, 158, - 188, 242, 4, 97, 98, 99, 100, 163, 175, 179, - 182, 184, 185, 156, 158, 156, 158, 156, 158, 156, + 87, 88, 89, 92, 93, 97, 102, 103, 104, 105, + 108, 110, 112, 113, 114, 115, 116, 117, 118, 119, + 120, 121, 122, 126, 127, 128, 129, 169, 171, 172, + 190, 203, 208, 211, 212, 213, 214, 215, 216, 217, + 237, 238, 239, 240, 3, 4, 5, 7, 9, 10, + 11, 14, 15, 16, 17, 18, 19, 20, 21, 22, + 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, + 33, 34, 38, 39, 40, 41, 42, 43, 46, 117, + 123, 124, 125, 130, 131, 132, 133, 134, 135, 136, + 146, 147, 151, 153, 154, 156, 158, 160, 161, 163, + 188, 189, 241, 242, 254, 13, 58, 156, 156, 6, + 163, 6, 6, 6, 6, 158, 156, 163, 156, 156, + 4, 156, 163, 156, 156, 4, 163, 156, 156, 62, + 58, 58, 6, 58, 58, 55, 58, 60, 60, 52, + 55, 58, 60, 55, 58, 60, 55, 58, 156, 55, + 163, 146, 147, 156, 163, 243, 244, 243, 163, 52, + 55, 58, 163, 243, 4, 52, 56, 66, 58, 60, + 58, 55, 4, 117, 163, 4, 6, 52, 55, 58, + 55, 58, 4, 4, 4, 5, 35, 52, 55, 58, + 60, 70, 147, 156, 163, 208, 217, 241, 246, 247, + 248, 4, 156, 156, 156, 4, 163, 250, 4, 156, + 156, 6, 6, 158, 4, 4, 5, 163, 5, 163, + 4, 241, 6, 156, 163, 4, 158, 160, 165, 189, + 163, 5, 254, 156, 158, 156, 158, 156, 158, 156, + 158, 156, 158, 156, 158, 156, 158, 156, 158, 156, + 158, 156, 158, 156, 158, 156, 158, 156, 158, 156, 158, 156, 158, 156, 158, 156, 158, 156, 158, 156, - 158, 156, 158, 156, 158, 161, 161, 156, 158, 156, - 158, 156, 158, 156, 158, 156, 158, 156, 158, 161, - 161, 161, 161, 161, 161, 157, 159, 156, 161, 161, - 156, 156, 161, 156, 161, 6, 161, 156, 161, 163, - 187, 247, 163, 159, 187, 188, 255, 242, 6, 4, - 4, 162, 252, 158, 162, 162, 162, 162, 8, 6, - 142, 169, 250, 6, 250, 242, 6, 4, 7, 242, - 249, 110, 7, 7, 156, 7, 110, 7, 7, 156, - 110, 7, 7, 242, 156, 163, 156, 156, 242, 247, - 4, 233, 6, 156, 199, 242, 255, 199, 199, 199, - 156, 156, 156, 247, 250, 159, 244, 242, 242, 163, - 163, 242, 244, 161, 161, 161, 73, 82, 89, 90, - 93, 94, 230, 231, 244, 163, 217, 156, 163, 156, - 156, 156, 242, 6, 242, 156, 158, 158, 163, 163, - 163, 158, 158, 250, 250, 158, 158, 163, 250, 250, - 250, 250, 163, 8, 250, 7, 7, 7, 159, 242, - 163, 242, 242, 7, 159, 162, 247, 6, 158, 159, - 188, 254, 163, 176, 155, 155, 162, 186, 6, 242, - 242, 242, 242, 242, 242, 242, 242, 242, 4, 250, - 254, 254, 254, 242, 254, 156, 242, 6, 158, 4, - 107, 108, 242, 6, 6, 6, 7, 157, 251, 253, - 6, 250, 250, 250, 250, 242, 142, 254, 156, 156, - 161, 7, 244, 58, 247, 247, 7, 247, 58, 60, - 247, 247, 7, 60, 247, 247, 6, 7, 7, 7, - 7, 73, 232, 6, 7, 156, 156, 156, 156, 7, - 7, 7, 6, 163, 4, 161, 161, 161, 163, 163, - 244, 244, 244, 4, 6, 162, 155, 6, 95, 6, - 95, 163, 231, 161, 230, 7, 6, 7, 7, 7, - 6, 162, 6, 6, 6, 58, 242, 6, 6, 163, - 163, 163, 163, 163, 163, 242, 163, 247, 247, 247, - 4, 161, 8, 8, 156, 4, 4, 247, 163, 6, - 4, 6, 155, 242, 242, 246, 247, 162, 156, 158, - 156, 158, 156, 158, 156, 158, 158, 156, 156, 156, - 156, 156, 187, 6, 187, 7, 187, 188, 159, 7, - 6, 251, 242, 161, 163, 163, 163, 163, 163, 6, - 6, 169, 6, 242, 162, 242, 255, 6, 162, 66, - 201, 201, 247, 6, 162, 162, 6, 6, 247, 162, - 6, 6, 5, 247, 247, 247, 4, 6, 247, 7, - 7, 7, 7, 247, 247, 247, 7, 6, 7, 242, - 242, 242, 162, 162, 161, 163, 161, 163, 161, 163, - 157, 242, 247, 242, 6, 6, 242, 244, 163, 5, - 162, 247, 162, 162, 162, 247, 250, 162, 6, 156, - 158, 6, 6, 106, 242, 242, 242, 6, 6, 7, - 161, 6, 188, 173, 242, 161, 161, 161, 163, 174, - 242, 159, 247, 247, 255, 242, 6, 4, 252, 6, - 158, 251, 6, 6, 6, 6, 254, 161, 242, 255, - 242, 244, 6, 6, 6, 242, 242, 6, 242, 5, - 6, 6, 110, 200, 242, 6, 247, 247, 247, 247, - 6, 4, 6, 6, 242, 242, 255, 163, 156, 161, - 163, 208, 208, 244, 6, 221, 244, 6, 222, 244, - 6, 223, 242, 163, 161, 156, 163, 161, 6, 146, - 244, 6, 246, 244, 244, 6, 163, 242, 247, 161, - 163, 8, 163, 156, 162, 242, 255, 247, 156, 161, - 242, 242, 247, 162, 161, 163, 4, 6, 6, 6, - 6, 7, 6, 159, 6, 242, 192, 193, 163, 163, - 163, 163, 5, 56, 6, 6, 6, 6, 6, 162, - 162, 6, 6, 162, 242, 163, 163, 161, 162, 161, - 162, 161, 162, 158, 6, 247, 7, 162, 242, 161, - 163, 161, 161, 6, 163, 105, 242, 242, 250, 6, - 6, 163, 177, 242, 161, 161, 246, 242, 6, 251, - 108, 161, 195, 197, 6, 6, 6, 6, 6, 162, - 246, 250, 208, 161, 163, 242, 244, 230, 242, 244, - 230, 242, 244, 230, 6, 161, 163, 247, 209, 163, - 244, 6, 250, 244, 242, 163, 163, 163, 6, 162, - 242, 242, 163, 6, 242, 161, 163, 196, 161, 163, - 198, 242, 163, 163, 163, 242, 163, 161, 163, 163, - 161, 163, 163, 161, 163, 247, 6, 73, 163, 218, - 162, 161, 163, 161, 6, 6, 174, 156, 161, 6, - 162, 161, 4, 4, 163, 6, 6, 163, 6, 224, - 242, 6, 6, 225, 242, 6, 6, 226, 242, 6, - 163, 242, 230, 209, 250, 6, 244, 250, 163, 180, - 242, 246, 242, 5, 162, 247, 5, 162, 242, 162, - 163, 162, 163, 162, 163, 6, 6, 163, 163, 219, - 163, 161, 163, 6, 162, 156, 163, 163, 194, 242, - 256, 230, 6, 227, 230, 6, 228, 230, 6, 229, - 230, 6, 250, 6, 178, 254, 183, 162, 6, 161, - 163, 7, 163, 163, 162, 163, 162, 163, 162, 163, - 163, 161, 163, 162, 246, 242, 255, 6, 230, 6, - 230, 6, 230, 6, 254, 6, 181, 254, 163, 7, - 163, 163, 163, 161, 163, 6, 255, 6, 6, 6, - 254, 6 + 158, 156, 158, 156, 158, 156, 156, 156, 156, 156, + 156, 7, 156, 156, 156, 241, 241, 241, 163, 241, + 159, 163, 241, 4, 108, 109, 4, 4, 208, 209, + 210, 246, 6, 6, 137, 138, 139, 140, 141, 142, + 143, 144, 145, 146, 147, 148, 149, 150, 155, 6, + 6, 241, 5, 5, 241, 192, 241, 147, 241, 248, + 249, 241, 241, 156, 241, 249, 241, 241, 156, 249, + 241, 241, 246, 156, 163, 156, 156, 247, 247, 247, + 156, 204, 205, 206, 207, 156, 156, 156, 246, 241, + 4, 246, 243, 243, 243, 241, 241, 146, 147, 163, + 163, 243, 163, 163, 163, 146, 147, 156, 210, 243, + 163, 156, 163, 156, 156, 156, 247, 247, 246, 156, + 4, 6, 158, 158, 210, 6, 163, 163, 163, 247, + 247, 158, 158, 156, 158, 158, 5, 163, 5, 5, + 5, 52, 55, 58, 60, 163, 241, 248, 241, 164, + 249, 8, 148, 6, 6, 241, 241, 241, 160, 241, + 163, 111, 241, 241, 241, 6, 6, 210, 6, 210, + 158, 6, 246, 246, 158, 241, 4, 163, 173, 6, + 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, + 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, + 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, + 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, + 241, 241, 4, 253, 254, 253, 253, 253, 253, 253, + 255, 241, 253, 253, 253, 249, 157, 7, 188, 249, + 159, 7, 188, 189, 160, 7, 158, 164, 52, 55, + 58, 60, 203, 6, 241, 241, 241, 241, 241, 241, + 241, 241, 241, 241, 241, 241, 241, 241, 241, 6, + 157, 162, 157, 162, 162, 159, 162, 191, 157, 148, + 162, 164, 157, 157, 241, 157, 164, 157, 157, 241, + 164, 157, 157, 7, 241, 241, 241, 241, 7, 7, + 235, 235, 241, 156, 156, 156, 156, 241, 241, 241, + 7, 163, 157, 6, 162, 162, 162, 243, 243, 209, + 209, 162, 241, 241, 241, 241, 221, 162, 210, 241, + 241, 241, 241, 241, 7, 236, 6, 7, 241, 6, + 241, 241, 164, 249, 249, 249, 6, 6, 241, 241, + 157, 163, 159, 163, 241, 4, 241, 163, 163, 163, + 163, 249, 157, 164, 241, 163, 241, 248, 157, 157, + 157, 108, 162, 210, 163, 8, 157, 159, 164, 164, + 157, 162, 164, 241, 159, 189, 241, 4, 98, 99, + 100, 101, 164, 176, 180, 183, 185, 186, 157, 159, + 157, 159, 157, 159, 157, 159, 157, 159, 157, 159, + 157, 159, 157, 159, 157, 159, 157, 159, 157, 159, + 162, 162, 157, 159, 157, 159, 157, 159, 157, 159, + 157, 159, 157, 159, 162, 162, 162, 162, 162, 162, + 158, 160, 157, 162, 162, 157, 157, 162, 157, 162, + 6, 162, 157, 162, 164, 188, 246, 164, 160, 188, + 189, 254, 241, 6, 4, 4, 163, 251, 159, 163, + 163, 163, 163, 8, 6, 143, 170, 249, 6, 249, + 241, 6, 4, 7, 241, 248, 111, 7, 7, 157, + 7, 111, 7, 7, 157, 111, 7, 7, 241, 157, + 164, 157, 157, 241, 246, 4, 234, 6, 157, 200, + 241, 254, 200, 200, 200, 157, 157, 157, 246, 249, + 160, 243, 241, 241, 164, 164, 241, 243, 162, 162, + 162, 73, 82, 90, 91, 94, 95, 231, 232, 243, + 164, 218, 157, 164, 157, 157, 157, 241, 6, 241, + 157, 159, 159, 164, 164, 164, 159, 159, 249, 249, + 159, 159, 164, 249, 249, 249, 249, 164, 8, 249, + 7, 7, 7, 160, 241, 164, 241, 241, 7, 160, + 163, 246, 6, 159, 160, 189, 253, 164, 177, 156, + 156, 163, 187, 6, 241, 241, 241, 241, 241, 241, + 241, 241, 241, 4, 249, 253, 253, 253, 241, 253, + 157, 241, 6, 159, 4, 108, 109, 241, 6, 6, + 6, 7, 158, 250, 252, 6, 249, 249, 249, 249, + 241, 143, 253, 157, 157, 162, 7, 243, 58, 246, + 246, 7, 246, 58, 60, 246, 246, 7, 60, 246, + 246, 6, 7, 7, 7, 7, 73, 233, 6, 7, + 157, 157, 157, 157, 7, 7, 7, 6, 164, 4, + 162, 162, 162, 164, 164, 243, 243, 243, 4, 6, + 163, 156, 6, 96, 6, 96, 164, 232, 162, 231, + 7, 6, 7, 7, 7, 6, 163, 6, 6, 6, + 58, 241, 6, 6, 164, 164, 164, 164, 164, 164, + 241, 164, 246, 246, 246, 4, 162, 8, 8, 157, + 4, 4, 246, 164, 6, 4, 6, 156, 241, 241, + 245, 246, 163, 157, 159, 157, 159, 157, 159, 157, + 159, 159, 157, 157, 157, 157, 157, 188, 6, 188, + 7, 188, 189, 160, 7, 6, 250, 241, 162, 164, + 164, 164, 164, 164, 6, 6, 170, 6, 241, 163, + 241, 254, 6, 163, 66, 202, 202, 246, 6, 163, + 163, 6, 6, 246, 163, 6, 6, 5, 246, 246, + 246, 4, 6, 246, 7, 7, 7, 7, 246, 246, + 246, 7, 6, 7, 241, 241, 241, 163, 163, 162, + 164, 162, 164, 162, 164, 158, 241, 246, 241, 6, + 6, 241, 243, 164, 5, 163, 246, 163, 163, 163, + 246, 249, 163, 6, 157, 159, 6, 6, 107, 241, + 241, 241, 6, 6, 7, 162, 6, 189, 174, 241, + 162, 162, 162, 164, 175, 241, 160, 246, 246, 254, + 241, 6, 4, 251, 6, 159, 250, 6, 6, 6, + 6, 253, 162, 241, 254, 241, 243, 6, 6, 6, + 241, 241, 6, 241, 5, 6, 6, 111, 201, 241, + 6, 246, 246, 246, 246, 6, 4, 6, 6, 241, + 241, 254, 164, 157, 162, 164, 209, 209, 243, 6, + 222, 243, 6, 223, 243, 6, 224, 241, 164, 162, + 157, 164, 162, 6, 147, 243, 6, 245, 243, 243, + 6, 164, 241, 246, 162, 164, 8, 164, 157, 163, + 241, 254, 246, 157, 162, 241, 241, 246, 163, 162, + 164, 4, 6, 6, 6, 6, 7, 6, 160, 6, + 241, 193, 194, 164, 164, 164, 164, 5, 56, 6, + 6, 6, 6, 6, 163, 163, 6, 6, 163, 241, + 164, 164, 162, 163, 162, 163, 162, 163, 159, 6, + 246, 7, 163, 241, 162, 164, 162, 162, 6, 164, + 106, 241, 241, 249, 6, 6, 164, 178, 241, 162, + 162, 245, 241, 6, 250, 109, 162, 196, 198, 6, + 6, 6, 6, 6, 163, 245, 249, 209, 162, 164, + 241, 243, 231, 241, 243, 231, 241, 243, 231, 6, + 162, 164, 246, 210, 164, 243, 6, 249, 243, 241, + 164, 164, 164, 6, 163, 241, 241, 164, 6, 241, + 162, 164, 197, 162, 164, 199, 241, 164, 164, 164, + 241, 164, 162, 164, 164, 162, 164, 164, 162, 164, + 246, 6, 73, 164, 219, 163, 162, 164, 162, 6, + 6, 175, 157, 162, 6, 163, 162, 4, 4, 164, + 6, 6, 164, 6, 225, 241, 6, 6, 226, 241, + 6, 6, 227, 241, 6, 164, 241, 231, 210, 249, + 6, 243, 249, 164, 181, 241, 245, 241, 5, 163, + 246, 5, 163, 241, 163, 164, 163, 164, 163, 164, + 6, 6, 164, 164, 220, 164, 162, 164, 6, 163, + 157, 164, 164, 195, 241, 255, 231, 6, 228, 231, + 6, 229, 231, 6, 230, 231, 6, 249, 6, 179, + 253, 184, 163, 6, 162, 164, 7, 164, 164, 163, + 164, 163, 164, 163, 164, 164, 162, 164, 163, 245, + 241, 254, 6, 231, 6, 231, 6, 231, 6, 253, + 6, 182, 253, 164, 7, 164, 164, 164, 162, 164, + 6, 254, 6, 6, 6, 253, 6 }; #define yyerrok (yyerrstatus = 0) @@ -4146,171 +4171,157 @@ yyreduce: case 3: /* Line 1464 of yacc.c */ -#line 167 "Gmsh.y" +#line 168 "Gmsh.y" { yyerrok; return 1; ;} break; case 6: /* Line 1464 of yacc.c */ -#line 178 "Gmsh.y" +#line 179 "Gmsh.y" { return 1; ;} break; case 7: /* Line 1464 of yacc.c */ -#line 179 "Gmsh.y" +#line 180 "Gmsh.y" { return 1; ;} break; case 8: /* Line 1464 of yacc.c */ -#line 180 "Gmsh.y" +#line 181 "Gmsh.y" { return 1; ;} break; case 9: /* Line 1464 of yacc.c */ -#line 181 "Gmsh.y" +#line 182 "Gmsh.y" { return 1; ;} break; case 10: /* Line 1464 of yacc.c */ -#line 182 "Gmsh.y" +#line 183 "Gmsh.y" { List_Delete((yyvsp[(1) - (1)].l)); return 1; ;} break; case 11: /* Line 1464 of yacc.c */ -#line 183 "Gmsh.y" +#line 184 "Gmsh.y" { return 1; ;} break; case 12: /* Line 1464 of yacc.c */ -#line 184 "Gmsh.y" +#line 185 "Gmsh.y" { return 1; ;} break; case 13: /* Line 1464 of yacc.c */ -#line 185 "Gmsh.y" +#line 186 "Gmsh.y" { return 1; ;} break; case 14: /* Line 1464 of yacc.c */ -#line 186 "Gmsh.y" +#line 187 "Gmsh.y" { List_Delete((yyvsp[(1) - (1)].l)); return 1; ;} break; case 15: -/* Line 1464 of yacc.c */ -#line 187 "Gmsh.y" - { return 1; ;} - break; - - case 16: - /* Line 1464 of yacc.c */ #line 188 "Gmsh.y" { return 1; ;} break; - case 17: + case 16: /* Line 1464 of yacc.c */ #line 189 "Gmsh.y" { return 1; ;} break; - case 18: + case 17: /* Line 1464 of yacc.c */ #line 190 "Gmsh.y" { return 1; ;} break; - case 19: + case 18: /* Line 1464 of yacc.c */ #line 191 "Gmsh.y" { return 1; ;} break; - case 20: + case 19: /* Line 1464 of yacc.c */ #line 192 "Gmsh.y" { return 1; ;} break; - case 21: + case 20: /* Line 1464 of yacc.c */ #line 193 "Gmsh.y" { return 1; ;} break; - case 22: - -/* Line 1464 of yacc.c */ -#line 194 "Gmsh.y" - { return 1; ;} - break; - - case 23: + case 21: /* Line 1464 of yacc.c */ -#line 199 "Gmsh.y" +#line 198 "Gmsh.y" { (yyval.c) = (char*)"w"; ;} break; - case 24: + case 22: /* Line 1464 of yacc.c */ -#line 203 "Gmsh.y" +#line 202 "Gmsh.y" { (yyval.c) = (char*)"a"; ;} break; - case 25: + case 23: /* Line 1464 of yacc.c */ -#line 210 "Gmsh.y" +#line 209 "Gmsh.y" { Msg::Direct((yyvsp[(3) - (5)].c)); Free((yyvsp[(3) - (5)].c)); ;} break; - case 26: + case 24: /* Line 1464 of yacc.c */ -#line 215 "Gmsh.y" +#line 214 "Gmsh.y" { Msg::Error((yyvsp[(3) - (5)].c)); Free((yyvsp[(3) - (5)].c)); ;} break; - case 27: + case 25: /* Line 1464 of yacc.c */ -#line 220 "Gmsh.y" +#line 219 "Gmsh.y" { std::string tmp = FixRelativePath(gmsh_yyname, (yyvsp[(6) - (7)].c)); FILE *fp = fopen(tmp.c_str(), (yyvsp[(5) - (7)].c)); @@ -4326,10 +4337,10 @@ yyreduce: ;} break; - case 28: + case 26: /* Line 1464 of yacc.c */ -#line 234 "Gmsh.y" +#line 233 "Gmsh.y" { char tmpstring[5000]; int i = PrintListOfDouble((yyvsp[(3) - (7)].c), (yyvsp[(5) - (7)].l), tmpstring); @@ -4344,10 +4355,10 @@ yyreduce: ;} break; - case 29: + case 27: /* Line 1464 of yacc.c */ -#line 247 "Gmsh.y" +#line 246 "Gmsh.y" { char tmpstring[5000]; int i = PrintListOfDouble((yyvsp[(3) - (7)].c), (yyvsp[(5) - (7)].l), tmpstring); @@ -4362,10 +4373,10 @@ yyreduce: ;} break; - case 30: + case 28: /* Line 1464 of yacc.c */ -#line 260 "Gmsh.y" +#line 259 "Gmsh.y" { char tmpstring[5000]; int i = PrintListOfDouble((yyvsp[(3) - (9)].c), (yyvsp[(5) - (9)].l), tmpstring); @@ -4390,10 +4401,10 @@ yyreduce: ;} break; - case 31: + case 29: /* Line 1464 of yacc.c */ -#line 288 "Gmsh.y" +#line 287 "Gmsh.y" { #if defined(HAVE_POST) if(!strcmp((yyvsp[(1) - (6)].c), "View") && ViewData->finalize()){ @@ -4409,10 +4420,10 @@ yyreduce: ;} break; - case 32: + case 30: /* Line 1464 of yacc.c */ -#line 302 "Gmsh.y" +#line 301 "Gmsh.y" { #if defined(HAVE_POST) if(!strcmp((yyvsp[(2) - (6)].c), "View")){ @@ -4425,10 +4436,10 @@ yyreduce: ;} break; - case 33: + case 31: /* Line 1464 of yacc.c */ -#line 313 "Gmsh.y" +#line 312 "Gmsh.y" { #if defined(HAVE_POST) if(!strcmp((yyvsp[(2) - (6)].c), "View")){ @@ -4441,10 +4452,10 @@ yyreduce: ;} break; - case 34: + case 32: /* Line 1464 of yacc.c */ -#line 327 "Gmsh.y" +#line 326 "Gmsh.y" { #if defined(HAVE_POST) ViewData = new PViewDataList(); @@ -4452,38 +4463,38 @@ yyreduce: ;} break; - case 40: + case 38: /* Line 1464 of yacc.c */ -#line 341 "Gmsh.y" +#line 340 "Gmsh.y" { ViewCoord.push_back((yyvsp[(1) - (1)].d)); ;} break; - case 41: + case 39: /* Line 1464 of yacc.c */ -#line 343 "Gmsh.y" +#line 342 "Gmsh.y" { ViewCoord.push_back((yyvsp[(3) - (3)].d)); ;} break; - case 42: + case 40: /* Line 1464 of yacc.c */ -#line 348 "Gmsh.y" +#line 347 "Gmsh.y" { if(ViewValueList) ViewValueList->push_back((yyvsp[(1) - (1)].d)); ;} break; - case 43: + case 41: /* Line 1464 of yacc.c */ -#line 350 "Gmsh.y" +#line 349 "Gmsh.y" { if(ViewValueList) ViewValueList->push_back((yyvsp[(3) - (3)].d)); ;} break; - case 44: + case 42: /* Line 1464 of yacc.c */ -#line 355 "Gmsh.y" +#line 354 "Gmsh.y" { #if defined(HAVE_POST) if(!strncmp((yyvsp[(1) - (1)].c), "SP", 2)){ @@ -4589,10 +4600,10 @@ yyreduce: ;} break; - case 45: + case 43: /* Line 1464 of yacc.c */ -#line 459 "Gmsh.y" +#line 458 "Gmsh.y" { #if defined(HAVE_POST) if(ViewValueList){ @@ -4604,10 +4615,10 @@ yyreduce: ;} break; - case 46: + case 44: /* Line 1464 of yacc.c */ -#line 469 "Gmsh.y" +#line 468 "Gmsh.y" { #if defined(HAVE_POST) if(ViewValueList) (*ViewNumList)++; @@ -4615,10 +4626,10 @@ yyreduce: ;} break; - case 47: + case 45: /* Line 1464 of yacc.c */ -#line 478 "Gmsh.y" +#line 477 "Gmsh.y" { #if defined(HAVE_POST) for(int i = 0; i < (int)strlen((yyvsp[(1) - (1)].c)) + 1; i++) ViewData->T2C.push_back((yyvsp[(1) - (1)].c)[i]); @@ -4627,10 +4638,10 @@ yyreduce: ;} break; - case 48: + case 46: /* Line 1464 of yacc.c */ -#line 485 "Gmsh.y" +#line 484 "Gmsh.y" { #if defined(HAVE_POST) for(int i = 0; i < (int)strlen((yyvsp[(3) - (3)].c)) + 1; i++) ViewData->T2C.push_back((yyvsp[(3) - (3)].c)[i]); @@ -4639,10 +4650,10 @@ yyreduce: ;} break; - case 49: + case 47: /* Line 1464 of yacc.c */ -#line 495 "Gmsh.y" +#line 494 "Gmsh.y" { #if defined(HAVE_POST) ViewData->T2D.push_back((yyvsp[(3) - (8)].d)); @@ -4653,10 +4664,10 @@ yyreduce: ;} break; - case 50: + case 48: /* Line 1464 of yacc.c */ -#line 504 "Gmsh.y" +#line 503 "Gmsh.y" { #if defined(HAVE_POST) ViewData->NbT2++; @@ -4664,10 +4675,10 @@ yyreduce: ;} break; - case 51: + case 49: /* Line 1464 of yacc.c */ -#line 513 "Gmsh.y" +#line 512 "Gmsh.y" { #if defined(HAVE_POST) for(int i = 0; i < (int)strlen((yyvsp[(1) - (1)].c)) + 1; i++) ViewData->T3C.push_back((yyvsp[(1) - (1)].c)[i]); @@ -4676,10 +4687,10 @@ yyreduce: ;} break; - case 52: + case 50: /* Line 1464 of yacc.c */ -#line 520 "Gmsh.y" +#line 519 "Gmsh.y" { #if defined(HAVE_POST) for(int i = 0; i < (int)strlen((yyvsp[(3) - (3)].c)) + 1; i++) ViewData->T3C.push_back((yyvsp[(3) - (3)].c)[i]); @@ -4688,10 +4699,10 @@ yyreduce: ;} break; - case 53: + case 51: /* Line 1464 of yacc.c */ -#line 530 "Gmsh.y" +#line 529 "Gmsh.y" { #if defined(HAVE_POST) ViewData->T3D.push_back((yyvsp[(3) - (10)].d)); ViewData->T3D.push_back((yyvsp[(5) - (10)].d)); @@ -4701,10 +4712,10 @@ yyreduce: ;} break; - case 54: + case 52: /* Line 1464 of yacc.c */ -#line 538 "Gmsh.y" +#line 537 "Gmsh.y" { #if defined(HAVE_POST) ViewData->NbT3++; @@ -4712,10 +4723,10 @@ yyreduce: ;} break; - case 55: + case 53: /* Line 1464 of yacc.c */ -#line 548 "Gmsh.y" +#line 547 "Gmsh.y" { #if defined(HAVE_POST) int type = @@ -4733,10 +4744,10 @@ yyreduce: ;} break; - case 56: + case 54: /* Line 1464 of yacc.c */ -#line 567 "Gmsh.y" +#line 566 "Gmsh.y" { #if defined(HAVE_POST) int type = @@ -4754,10 +4765,10 @@ yyreduce: ;} break; - case 57: + case 55: /* Line 1464 of yacc.c */ -#line 586 "Gmsh.y" +#line 585 "Gmsh.y" { #if defined(HAVE_POST) ViewValueList = &ViewData->Time; @@ -4765,67 +4776,67 @@ yyreduce: ;} break; - case 58: + case 56: /* Line 1464 of yacc.c */ -#line 592 "Gmsh.y" +#line 591 "Gmsh.y" { ;} break; - case 59: + case 57: /* Line 1464 of yacc.c */ -#line 599 "Gmsh.y" +#line 598 "Gmsh.y" { (yyval.i) = 0; ;} break; - case 60: + case 58: /* Line 1464 of yacc.c */ -#line 600 "Gmsh.y" +#line 599 "Gmsh.y" { (yyval.i) = 1; ;} break; - case 61: + case 59: /* Line 1464 of yacc.c */ -#line 601 "Gmsh.y" +#line 600 "Gmsh.y" { (yyval.i) = 2; ;} break; - case 62: + case 60: /* Line 1464 of yacc.c */ -#line 602 "Gmsh.y" +#line 601 "Gmsh.y" { (yyval.i) = 3; ;} break; - case 63: + case 61: /* Line 1464 of yacc.c */ -#line 603 "Gmsh.y" +#line 602 "Gmsh.y" { (yyval.i) = 4; ;} break; - case 64: + case 62: /* Line 1464 of yacc.c */ -#line 607 "Gmsh.y" +#line 606 "Gmsh.y" { (yyval.i) = 1; ;} break; - case 65: + case 63: /* Line 1464 of yacc.c */ -#line 608 "Gmsh.y" +#line 607 "Gmsh.y" { (yyval.i) = -1; ;} break; - case 67: + case 65: /* Line 1464 of yacc.c */ -#line 617 "Gmsh.y" +#line 616 "Gmsh.y" { if(!gmsh_yysymbols.count((yyvsp[(1) - (4)].c)) && (yyvsp[(2) - (4)].i) && List_Nbr((yyvsp[(3) - (4)].l)) == 1){ yymsg(0, "Unknown variable '%s'", (yyvsp[(1) - (4)].c)); @@ -4887,10 +4898,10 @@ yyreduce: ;} break; - case 68: + case 66: /* Line 1464 of yacc.c */ -#line 679 "Gmsh.y" +#line 678 "Gmsh.y" { gmsh_yysymbol &s(gmsh_yysymbols[(yyvsp[(1) - (6)].c)]); s.list = true; @@ -4921,10 +4932,10 @@ yyreduce: ;} break; - case 69: + case 67: /* Line 1464 of yacc.c */ -#line 709 "Gmsh.y" +#line 708 "Gmsh.y" { int index = (int)(yyvsp[(3) - (7)].d); if(!gmsh_yysymbols.count((yyvsp[(1) - (7)].c))){ @@ -4959,10 +4970,10 @@ yyreduce: ;} break; - case 70: + case 68: /* Line 1464 of yacc.c */ -#line 744 "Gmsh.y" +#line 743 "Gmsh.y" { int index = (int)(yyvsp[(3) - (7)].d); if(!gmsh_yysymbols.count((yyvsp[(1) - (7)].c))){ @@ -4997,10 +5008,10 @@ yyreduce: ;} break; - case 71: + case 69: /* Line 1464 of yacc.c */ -#line 778 "Gmsh.y" +#line 777 "Gmsh.y" { if(List_Nbr((yyvsp[(4) - (9)].l)) != List_Nbr((yyvsp[(8) - (9)].l))){ yymsg(0, "Incompatible array dimensions in affectation"); @@ -5048,10 +5059,10 @@ yyreduce: ;} break; - case 72: + case 70: /* Line 1464 of yacc.c */ -#line 826 "Gmsh.y" +#line 825 "Gmsh.y" { if(List_Nbr((yyvsp[(4) - (9)].l)) != List_Nbr((yyvsp[(8) - (9)].l))){ yymsg(0, "Incompatible array dimensions in affectation"); @@ -5099,10 +5110,10 @@ yyreduce: ;} break; - case 73: + case 71: /* Line 1464 of yacc.c */ -#line 873 "Gmsh.y" +#line 872 "Gmsh.y" { if(!gmsh_yysymbols.count((yyvsp[(1) - (3)].c))) yymsg(0, "Unknown variable '%s'", (yyvsp[(1) - (3)].c)); @@ -5119,10 +5130,10 @@ yyreduce: ;} break; - case 74: + case 72: /* Line 1464 of yacc.c */ -#line 888 "Gmsh.y" +#line 887 "Gmsh.y" { if(!gmsh_yysymbols.count((yyvsp[(1) - (6)].c))) yymsg(0, "Unknown variable '%s'", (yyvsp[(1) - (6)].c)); @@ -5140,10 +5151,10 @@ yyreduce: ;} break; - case 75: + case 73: /* Line 1464 of yacc.c */ -#line 904 "Gmsh.y" +#line 903 "Gmsh.y" { gmsh_yystringsymbols[(yyvsp[(1) - (4)].c)] = std::string((yyvsp[(3) - (4)].c)); Free((yyvsp[(1) - (4)].c)); @@ -5151,10 +5162,10 @@ yyreduce: ;} break; - case 76: + case 74: /* Line 1464 of yacc.c */ -#line 913 "Gmsh.y" +#line 912 "Gmsh.y" { std::string tmp((yyvsp[(5) - (6)].c)); StringOption(GMSH_SET|GMSH_GUI, (yyvsp[(1) - (6)].c), 0, (yyvsp[(3) - (6)].c), tmp); @@ -5162,10 +5173,10 @@ yyreduce: ;} break; - case 77: + case 75: /* Line 1464 of yacc.c */ -#line 919 "Gmsh.y" +#line 918 "Gmsh.y" { std::string tmp((yyvsp[(8) - (9)].c)); StringOption(GMSH_SET|GMSH_GUI, (yyvsp[(1) - (9)].c), (int)(yyvsp[(3) - (9)].d), (yyvsp[(6) - (9)].c), tmp); @@ -5173,10 +5184,10 @@ yyreduce: ;} break; - case 78: + case 76: /* Line 1464 of yacc.c */ -#line 928 "Gmsh.y" +#line 927 "Gmsh.y" { double d = 0.; if(NumberOption(GMSH_GET, (yyvsp[(1) - (6)].c), 0, (yyvsp[(3) - (6)].c), d)){ @@ -5196,10 +5207,10 @@ yyreduce: ;} break; - case 79: + case 77: /* Line 1464 of yacc.c */ -#line 946 "Gmsh.y" +#line 945 "Gmsh.y" { double d = 0.; if(NumberOption(GMSH_GET, (yyvsp[(1) - (9)].c), (int)(yyvsp[(3) - (9)].d), (yyvsp[(6) - (9)].c), d)){ @@ -5219,10 +5230,10 @@ yyreduce: ;} break; - case 80: + case 78: /* Line 1464 of yacc.c */ -#line 964 "Gmsh.y" +#line 963 "Gmsh.y" { double d = 0.; if(NumberOption(GMSH_GET, (yyvsp[(1) - (5)].c), 0, (yyvsp[(3) - (5)].c), d)){ @@ -5233,10 +5244,10 @@ yyreduce: ;} break; - case 81: + case 79: /* Line 1464 of yacc.c */ -#line 973 "Gmsh.y" +#line 972 "Gmsh.y" { double d = 0.; if(NumberOption(GMSH_GET, (yyvsp[(1) - (8)].c), (int)(yyvsp[(3) - (8)].d), (yyvsp[(6) - (8)].c), d)){ @@ -5247,30 +5258,30 @@ yyreduce: ;} break; - case 82: + case 80: /* Line 1464 of yacc.c */ -#line 985 "Gmsh.y" +#line 984 "Gmsh.y" { ColorOption(GMSH_SET|GMSH_GUI, (yyvsp[(1) - (8)].c), 0, (yyvsp[(5) - (8)].c), (yyvsp[(7) - (8)].u)); Free((yyvsp[(1) - (8)].c)); Free((yyvsp[(5) - (8)].c)); ;} break; - case 83: + case 81: /* Line 1464 of yacc.c */ -#line 990 "Gmsh.y" +#line 989 "Gmsh.y" { ColorOption(GMSH_SET|GMSH_GUI, (yyvsp[(1) - (11)].c), (int)(yyvsp[(3) - (11)].d), (yyvsp[(8) - (11)].c), (yyvsp[(10) - (11)].u)); Free((yyvsp[(1) - (11)].c)); Free((yyvsp[(8) - (11)].c)); ;} break; - case 84: + case 82: /* Line 1464 of yacc.c */ -#line 998 "Gmsh.y" +#line 997 "Gmsh.y" { GmshColorTable *ct = GetColorTable(0); if(!ct) @@ -5292,10 +5303,10 @@ yyreduce: ;} break; - case 85: + case 83: /* Line 1464 of yacc.c */ -#line 1018 "Gmsh.y" +#line 1017 "Gmsh.y" { GmshColorTable *ct = GetColorTable((int)(yyvsp[(3) - (9)].d)); if(!ct) @@ -5317,10 +5328,10 @@ yyreduce: ;} break; - case 86: + case 84: /* Line 1464 of yacc.c */ -#line 1041 "Gmsh.y" +#line 1040 "Gmsh.y" { #if defined(HAVE_MESH) if(!strcmp((yyvsp[(1) - (5)].c),"Background")) @@ -5333,10 +5344,10 @@ yyreduce: ;} break; - case 87: + case 85: /* Line 1464 of yacc.c */ -#line 1052 "Gmsh.y" +#line 1051 "Gmsh.y" { #if defined(HAVE_MESH) if(!GModel::current()->getFields()->newField((int)(yyvsp[(3) - (7)].d), (yyvsp[(6) - (7)].c))) @@ -5346,10 +5357,10 @@ yyreduce: ;} break; - case 88: + case 86: /* Line 1464 of yacc.c */ -#line 1060 "Gmsh.y" +#line 1059 "Gmsh.y" { #if defined(HAVE_MESH) Field *field = GModel::current()->getFields()->get((int)(yyvsp[(3) - (9)].d)); @@ -5373,10 +5384,10 @@ yyreduce: ;} break; - case 89: + case 87: /* Line 1464 of yacc.c */ -#line 1082 "Gmsh.y" +#line 1081 "Gmsh.y" { #if defined(HAVE_MESH) Field *field = GModel::current()->getFields()->get((int)(yyvsp[(3) - (9)].d)); @@ -5401,10 +5412,10 @@ yyreduce: ;} break; - case 90: + case 88: /* Line 1464 of yacc.c */ -#line 1105 "Gmsh.y" +#line 1104 "Gmsh.y" { #if defined(HAVE_MESH) Field *field = GModel::current()->getFields()->get((int)(yyvsp[(3) - (11)].d)); @@ -5432,10 +5443,10 @@ yyreduce: ;} break; - case 91: + case 89: /* Line 1464 of yacc.c */ -#line 1131 "Gmsh.y" +#line 1130 "Gmsh.y" { #if defined(HAVE_MESH) Field *field = GModel::current()->getFields()->get((int)(yyvsp[(3) - (7)].d)); @@ -5455,10 +5466,10 @@ yyreduce: ;} break; - case 92: + case 90: /* Line 1464 of yacc.c */ -#line 1152 "Gmsh.y" +#line 1151 "Gmsh.y" { #if defined(HAVE_PLUGINS) try { @@ -5472,10 +5483,10 @@ yyreduce: ;} break; - case 93: + case 91: /* Line 1464 of yacc.c */ -#line 1164 "Gmsh.y" +#line 1163 "Gmsh.y" { #if defined(HAVE_PLUGINS) try { @@ -5489,10 +5500,10 @@ yyreduce: ;} break; - case 97: + case 95: /* Line 1464 of yacc.c */ -#line 1182 "Gmsh.y" +#line 1181 "Gmsh.y" { std::string key((yyvsp[(3) - (3)].c)); std::vector<double> val(1, 0.); @@ -5505,10 +5516,10 @@ yyreduce: ;} break; - case 98: + case 96: /* Line 1464 of yacc.c */ -#line 1193 "Gmsh.y" +#line 1192 "Gmsh.y" { std::string key((yyvsp[(3) - (5)].c)); std::vector<double> val(1, (yyvsp[(5) - (5)].d)); @@ -5521,17 +5532,17 @@ yyreduce: ;} break; - case 99: + case 97: /* Line 1464 of yacc.c */ -#line 1204 "Gmsh.y" +#line 1203 "Gmsh.y" { floatOptions.clear(); charOptions.clear(); ;} break; - case 100: + case 98: /* Line 1464 of yacc.c */ -#line 1206 "Gmsh.y" +#line 1205 "Gmsh.y" { std::string key((yyvsp[(3) - (9)].c)); std::vector<double> val(1, (yyvsp[(6) - (9)].d)); @@ -5543,10 +5554,10 @@ yyreduce: ;} break; - case 101: + case 99: /* Line 1464 of yacc.c */ -#line 1216 "Gmsh.y" +#line 1215 "Gmsh.y" { std::string key((yyvsp[(3) - (5)].c)), val((yyvsp[(5) - (5)].c)); floatOptions.clear(); charOptions.clear(); @@ -5559,17 +5570,17 @@ yyreduce: ;} break; - case 102: + case 100: /* Line 1464 of yacc.c */ -#line 1227 "Gmsh.y" +#line 1226 "Gmsh.y" { floatOptions.clear(); charOptions.clear(); ;} break; - case 103: + case 101: /* Line 1464 of yacc.c */ -#line 1229 "Gmsh.y" +#line 1228 "Gmsh.y" { std::string key((yyvsp[(3) - (9)].c)), val((yyvsp[(6) - (9)].c)); if(!gmsh_yysymbols.count(key)){ @@ -5581,10 +5592,10 @@ yyreduce: ;} break; - case 104: + case 102: /* Line 1464 of yacc.c */ -#line 1242 "Gmsh.y" +#line 1241 "Gmsh.y" { (yyval.l) = List_Create(20,20,sizeof(doubleXstring)); doubleXstring v = {(yyvsp[(1) - (3)].d), (yyvsp[(3) - (3)].c)}; @@ -5592,20 +5603,20 @@ yyreduce: ;} break; - case 105: + case 103: /* Line 1464 of yacc.c */ -#line 1248 "Gmsh.y" +#line 1247 "Gmsh.y" { doubleXstring v = {(yyvsp[(3) - (5)].d), (yyvsp[(5) - (5)].c)}; List_Add((yyval.l), &v); ;} break; - case 108: + case 106: /* Line 1464 of yacc.c */ -#line 1260 "Gmsh.y" +#line 1259 "Gmsh.y" { std::string key((yyvsp[(2) - (3)].c)); for(int i = 0; i < List_Nbr((yyvsp[(3) - (3)].l)); i++){ @@ -5618,10 +5629,10 @@ yyreduce: ;} break; - case 109: + case 107: /* Line 1464 of yacc.c */ -#line 1271 "Gmsh.y" +#line 1270 "Gmsh.y" { std::string key((yyvsp[(2) - (5)].c)); for(int i = 0; i < List_Nbr((yyvsp[(4) - (5)].l)); i++){ @@ -5637,10 +5648,10 @@ yyreduce: ;} break; - case 110: + case 108: /* Line 1464 of yacc.c */ -#line 1286 "Gmsh.y" +#line 1285 "Gmsh.y" { std::string key((yyvsp[(2) - (3)].c)); std::string val((yyvsp[(3) - (3)].c)); @@ -5650,10 +5661,10 @@ yyreduce: ;} break; - case 113: + case 111: /* Line 1464 of yacc.c */ -#line 1302 "Gmsh.y" +#line 1301 "Gmsh.y" { std::string key((yyvsp[(2) - (3)].c)); double val = (yyvsp[(3) - (3)].d); @@ -5662,10 +5673,10 @@ yyreduce: ;} break; - case 114: + case 112: /* Line 1464 of yacc.c */ -#line 1310 "Gmsh.y" +#line 1309 "Gmsh.y" { std::string key((yyvsp[(2) - (3)].c)); std::string val((yyvsp[(3) - (3)].c)); @@ -5675,10 +5686,10 @@ yyreduce: ;} break; - case 115: + case 113: /* Line 1464 of yacc.c */ -#line 1319 "Gmsh.y" +#line 1318 "Gmsh.y" { std::string key((yyvsp[(2) - (5)].c)); for(int i = 0; i < List_Nbr((yyvsp[(4) - (5)].l)); i++){ @@ -5693,19 +5704,19 @@ yyreduce: ;} break; - case 116: + case 114: /* Line 1464 of yacc.c */ -#line 1338 "Gmsh.y" +#line 1337 "Gmsh.y" { (yyval.i) = (int)(yyvsp[(1) - (1)].d); ;} break; - case 117: + case 115: /* Line 1464 of yacc.c */ -#line 1342 "Gmsh.y" +#line 1341 "Gmsh.y" { (yyval.i) = GModel::current()->setPhysicalName (std::string((yyvsp[(1) - (1)].c)), curPhysDim, @@ -5714,19 +5725,19 @@ yyreduce: ;} break; - case 118: + case 116: /* Line 1464 of yacc.c */ -#line 1352 "Gmsh.y" +#line 1351 "Gmsh.y" { (yyval.l) = 0; ;} break; - case 119: + case 117: /* Line 1464 of yacc.c */ -#line 1356 "Gmsh.y" +#line 1355 "Gmsh.y" { (yyval.l) = List_Create(1, 1, sizeof(Vertex*)); Vertex *v = FindPoint((int)(yyvsp[(4) - (5)].d)); @@ -5738,28 +5749,28 @@ yyreduce: ;} break; - case 120: + case 118: /* Line 1464 of yacc.c */ -#line 1368 "Gmsh.y" +#line 1367 "Gmsh.y" { for(int i = 0; i < 4; i++) (yyval.v)[i] = 0.; ;} break; - case 121: + case 119: /* Line 1464 of yacc.c */ -#line 1372 "Gmsh.y" +#line 1371 "Gmsh.y" { for(int i = 0; i < 4; i++) (yyval.v)[i] = (yyvsp[(2) - (2)].v)[i]; ;} break; - case 122: + case 120: /* Line 1464 of yacc.c */ -#line 1382 "Gmsh.y" +#line 1381 "Gmsh.y" { int num = (int)(yyvsp[(3) - (7)].d); if(FindPoint(num)){ @@ -5784,19 +5795,19 @@ yyreduce: ;} break; - case 123: + case 121: /* Line 1464 of yacc.c */ -#line 1405 "Gmsh.y" +#line 1404 "Gmsh.y" { curPhysDim = 0; ;} break; - case 124: + case 122: /* Line 1464 of yacc.c */ -#line 1409 "Gmsh.y" +#line 1408 "Gmsh.y" { int num = (int)(yyvsp[(5) - (9)].i); if(FindPhysicalGroup(num, MSH_PHYSICAL_POINT)){ @@ -5814,10 +5825,10 @@ yyreduce: ;} break; - case 125: + case 123: /* Line 1464 of yacc.c */ -#line 1425 "Gmsh.y" +#line 1424 "Gmsh.y" { for(int i = 0; i < List_Nbr((yyvsp[(3) - (6)].l)); i++){ double d; @@ -5838,10 +5849,10 @@ yyreduce: ;} break; - case 126: + case 124: /* Line 1464 of yacc.c */ -#line 1447 "Gmsh.y" +#line 1446 "Gmsh.y" { int num = (int)(yyvsp[(3) - (7)].d); if(FindCurve(num)){ @@ -5861,10 +5872,10 @@ yyreduce: ;} break; - case 127: + case 125: /* Line 1464 of yacc.c */ -#line 1465 "Gmsh.y" +#line 1464 "Gmsh.y" { for (int i = 0; i < List_Nbr((yyvsp[(3) - (4)].l)); i++){ double dnum; @@ -5887,10 +5898,10 @@ yyreduce: ;} break; - case 128: + case 126: /* Line 1464 of yacc.c */ -#line 1486 "Gmsh.y" +#line 1485 "Gmsh.y" { int num = (int)(yyvsp[(3) - (7)].d); if(FindCurve(num)){ @@ -5910,10 +5921,10 @@ yyreduce: ;} break; - case 129: + case 127: /* Line 1464 of yacc.c */ -#line 1504 "Gmsh.y" +#line 1503 "Gmsh.y" { int num = (int)(yyvsp[(3) - (8)].d); if(FindCurve(num)){ @@ -5945,10 +5956,10 @@ yyreduce: ;} break; - case 130: + case 128: /* Line 1464 of yacc.c */ -#line 1534 "Gmsh.y" +#line 1533 "Gmsh.y" { int num = (int)(yyvsp[(3) - (8)].d); if(FindCurve(num)){ @@ -5980,10 +5991,10 @@ yyreduce: ;} break; - case 131: + case 129: /* Line 1464 of yacc.c */ -#line 1564 "Gmsh.y" +#line 1563 "Gmsh.y" { int num = (int)(yyvsp[(3) - (7)].d); if(FindCurve(num)){ @@ -6003,10 +6014,10 @@ yyreduce: ;} break; - case 132: + case 130: /* Line 1464 of yacc.c */ -#line 1582 "Gmsh.y" +#line 1581 "Gmsh.y" { int num = (int)(yyvsp[(3) - (7)].d); if(FindCurve(num)){ @@ -6026,10 +6037,10 @@ yyreduce: ;} break; - case 133: + case 131: /* Line 1464 of yacc.c */ -#line 1600 "Gmsh.y" +#line 1599 "Gmsh.y" { int num = (int)(yyvsp[(3) - (11)].d); if(List_Nbr((yyvsp[(6) - (11)].l)) + (int)(yyvsp[(10) - (11)].d) + 1 != List_Nbr((yyvsp[(8) - (11)].l))){ @@ -6057,10 +6068,10 @@ yyreduce: ;} break; - case 134: + case 132: /* Line 1464 of yacc.c */ -#line 1626 "Gmsh.y" +#line 1625 "Gmsh.y" { int num = (int)(yyvsp[(4) - (8)].d); if(FindEdgeLoop(num)){ @@ -6080,10 +6091,10 @@ yyreduce: ;} break; - case 135: + case 133: /* Line 1464 of yacc.c */ -#line 1644 "Gmsh.y" +#line 1643 "Gmsh.y" { int num = (int)(yyvsp[(4) - (8)].d); if(FindCurve(num)){ @@ -6103,19 +6114,19 @@ yyreduce: ;} break; - case 136: + case 134: /* Line 1464 of yacc.c */ -#line 1662 "Gmsh.y" +#line 1661 "Gmsh.y" { curPhysDim = 1; ;} break; - case 137: + case 135: /* Line 1464 of yacc.c */ -#line 1666 "Gmsh.y" +#line 1665 "Gmsh.y" { int num = (int)(yyvsp[(5) - (9)].i); if(FindPhysicalGroup(num, MSH_PHYSICAL_LINE)){ @@ -6133,10 +6144,10 @@ yyreduce: ;} break; - case 138: + case 136: /* Line 1464 of yacc.c */ -#line 1685 "Gmsh.y" +#line 1684 "Gmsh.y" { int num = (int)(yyvsp[(4) - (8)].d); if(FindSurface(num)){ @@ -6156,10 +6167,10 @@ yyreduce: ;} break; - case 139: + case 137: /* Line 1464 of yacc.c */ -#line 1703 "Gmsh.y" +#line 1702 "Gmsh.y" { int num = (int)(yyvsp[(4) - (9)].d), type = 0; if(FindSurface(num)){ @@ -6200,10 +6211,10 @@ yyreduce: ;} break; - case 140: + case 138: /* Line 1464 of yacc.c */ -#line 1742 "Gmsh.y" +#line 1741 "Gmsh.y" { myGmshSurface = 0; (yyval.s).Type = 0; @@ -6211,10 +6222,10 @@ yyreduce: ;} break; - case 141: + case 139: /* Line 1464 of yacc.c */ -#line 1748 "Gmsh.y" +#line 1747 "Gmsh.y" { myGmshSurface = gmshSurface::getSurface((int)(yyvsp[(3) - (4)].d)); (yyval.s).Type = 0; @@ -6222,10 +6233,10 @@ yyreduce: ;} break; - case 142: + case 140: /* Line 1464 of yacc.c */ -#line 1754 "Gmsh.y" +#line 1753 "Gmsh.y" { int num = (int)(yyvsp[(4) - (10)].d); myGmshSurface = gmshParametricSurface::NewParametricSurface(num, (yyvsp[(7) - (10)].c), (yyvsp[(8) - (10)].c), (yyvsp[(9) - (10)].c)); @@ -6234,10 +6245,10 @@ yyreduce: ;} break; - case 143: + case 141: /* Line 1464 of yacc.c */ -#line 1761 "Gmsh.y" +#line 1760 "Gmsh.y" { int num = (int)(yyvsp[(3) - (7)].d); if (List_Nbr((yyvsp[(6) - (7)].l)) != 2){ @@ -6264,10 +6275,10 @@ yyreduce: ;} break; - case 144: + case 142: /* Line 1464 of yacc.c */ -#line 1786 "Gmsh.y" +#line 1785 "Gmsh.y" { int num = (int)(yyvsp[(3) - (7)].d); if (List_Nbr((yyvsp[(6) - (7)].l)) != 2){ @@ -6294,10 +6305,10 @@ yyreduce: ;} break; - case 145: + case 143: /* Line 1464 of yacc.c */ -#line 1811 "Gmsh.y" +#line 1810 "Gmsh.y" { int num = (int)(yyvsp[(4) - (8)].d); if(FindSurfaceLoop(num)){ @@ -6316,10 +6327,10 @@ yyreduce: ;} break; - case 146: + case 144: /* Line 1464 of yacc.c */ -#line 1828 "Gmsh.y" +#line 1827 "Gmsh.y" { int num = (int)(yyvsp[(4) - (8)].d); if(FindSurface(num)){ @@ -6338,10 +6349,10 @@ yyreduce: ;} break; - case 147: + case 145: /* Line 1464 of yacc.c */ -#line 1846 "Gmsh.y" +#line 1845 "Gmsh.y" { int num = (int)(yyvsp[(4) - (12)].d); if(FindSurface(num)){ @@ -6373,19 +6384,19 @@ yyreduce: ;} break; - case 148: + case 146: /* Line 1464 of yacc.c */ -#line 1876 "Gmsh.y" +#line 1875 "Gmsh.y" { curPhysDim = 2; ;} break; - case 149: + case 147: /* Line 1464 of yacc.c */ -#line 1880 "Gmsh.y" +#line 1879 "Gmsh.y" { int num = (int)(yyvsp[(5) - (9)].i); if(FindPhysicalGroup(num, MSH_PHYSICAL_SURFACE)){ @@ -6403,10 +6414,10 @@ yyreduce: ;} break; - case 150: + case 148: /* Line 1464 of yacc.c */ -#line 1900 "Gmsh.y" +#line 1899 "Gmsh.y" { yymsg(0, "'Complex Volume' command is deprecated: use 'Volume' instead"); int num = (int)(yyvsp[(4) - (8)].d); @@ -6426,10 +6437,10 @@ yyreduce: ;} break; - case 151: + case 149: /* Line 1464 of yacc.c */ -#line 1918 "Gmsh.y" +#line 1917 "Gmsh.y" { int num = (int)(yyvsp[(3) - (7)].d); if(FindVolume(num)){ @@ -6448,10 +6459,10 @@ yyreduce: ;} break; - case 152: + case 150: /* Line 1464 of yacc.c */ -#line 1935 "Gmsh.y" +#line 1934 "Gmsh.y" { int num = (int)(yyvsp[(4) - (8)].d); if(FindVolume(num)){ @@ -6469,19 +6480,19 @@ yyreduce: ;} break; - case 153: + case 151: /* Line 1464 of yacc.c */ -#line 1951 "Gmsh.y" +#line 1950 "Gmsh.y" { curPhysDim = 3; ;} break; - case 154: + case 152: /* Line 1464 of yacc.c */ -#line 1955 "Gmsh.y" +#line 1954 "Gmsh.y" { int num = (int)(yyvsp[(5) - (9)].i); if(FindPhysicalGroup(num, MSH_PHYSICAL_VOLUME)){ @@ -6499,60 +6510,60 @@ yyreduce: ;} break; - case 155: + case 153: /* Line 1464 of yacc.c */ -#line 1977 "Gmsh.y" +#line 1976 "Gmsh.y" { TranslateShapes((yyvsp[(2) - (5)].v)[0], (yyvsp[(2) - (5)].v)[1], (yyvsp[(2) - (5)].v)[2], (yyvsp[(4) - (5)].l)); (yyval.l) = (yyvsp[(4) - (5)].l); ;} break; - case 156: + case 154: /* Line 1464 of yacc.c */ -#line 1982 "Gmsh.y" +#line 1981 "Gmsh.y" { RotateShapes((yyvsp[(3) - (11)].v)[0], (yyvsp[(3) - (11)].v)[1], (yyvsp[(3) - (11)].v)[2], (yyvsp[(5) - (11)].v)[0], (yyvsp[(5) - (11)].v)[1], (yyvsp[(5) - (11)].v)[2], (yyvsp[(7) - (11)].d), (yyvsp[(10) - (11)].l)); (yyval.l) = (yyvsp[(10) - (11)].l); ;} break; - case 157: + case 155: /* Line 1464 of yacc.c */ -#line 1987 "Gmsh.y" +#line 1986 "Gmsh.y" { SymmetryShapes((yyvsp[(2) - (5)].v)[0], (yyvsp[(2) - (5)].v)[1], (yyvsp[(2) - (5)].v)[2], (yyvsp[(2) - (5)].v)[3], (yyvsp[(4) - (5)].l)); (yyval.l) = (yyvsp[(4) - (5)].l); ;} break; - case 158: + case 156: /* Line 1464 of yacc.c */ -#line 1992 "Gmsh.y" +#line 1991 "Gmsh.y" { DilatShapes((yyvsp[(3) - (9)].v)[0], (yyvsp[(3) - (9)].v)[1], (yyvsp[(3) - (9)].v)[2], (yyvsp[(5) - (9)].d), (yyvsp[(5) - (9)].d), (yyvsp[(5) - (9)].d), (yyvsp[(8) - (9)].l)); (yyval.l) = (yyvsp[(8) - (9)].l); ;} break; - case 159: + case 157: /* Line 1464 of yacc.c */ -#line 1997 "Gmsh.y" +#line 1996 "Gmsh.y" { DilatShapes((yyvsp[(3) - (9)].v)[0], (yyvsp[(3) - (9)].v)[1], (yyvsp[(3) - (9)].v)[2], (yyvsp[(5) - (9)].v)[0], (yyvsp[(5) - (9)].v)[1], (yyvsp[(5) - (9)].v)[2], (yyvsp[(8) - (9)].l)); (yyval.l) = (yyvsp[(8) - (9)].l); ;} break; - case 160: + case 158: /* Line 1464 of yacc.c */ -#line 2002 "Gmsh.y" +#line 2001 "Gmsh.y" { (yyval.l) = List_Create(3, 3, sizeof(Shape)); if(!strcmp((yyvsp[(1) - (4)].c), "Duplicata")){ @@ -6577,10 +6588,10 @@ yyreduce: ;} break; - case 161: + case 159: /* Line 1464 of yacc.c */ -#line 2025 "Gmsh.y" +#line 2024 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); IntersectCurvesWithSurface((yyvsp[(4) - (9)].l), (int)(yyvsp[(8) - (9)].d), (yyval.l)); @@ -6588,10 +6599,10 @@ yyreduce: ;} break; - case 162: + case 160: /* Line 1464 of yacc.c */ -#line 2031 "Gmsh.y" +#line 2030 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape*)); List_T *tmp = ListOfDouble2ListOfInt((yyvsp[(7) - (9)].l)); @@ -6601,42 +6612,42 @@ yyreduce: ;} break; - case 163: + case 161: /* Line 1464 of yacc.c */ -#line 2041 "Gmsh.y" +#line 2040 "Gmsh.y" { (yyval.l) = (yyvsp[(1) - (1)].l); ;} break; - case 164: + case 162: /* Line 1464 of yacc.c */ -#line 2042 "Gmsh.y" +#line 2041 "Gmsh.y" { (yyval.l) = (yyvsp[(1) - (1)].l); ;} break; - case 165: + case 163: /* Line 1464 of yacc.c */ -#line 2047 "Gmsh.y" +#line 2046 "Gmsh.y" { (yyval.l) = List_Create(3, 3, sizeof(Shape)); ;} break; - case 166: + case 164: /* Line 1464 of yacc.c */ -#line 2051 "Gmsh.y" +#line 2050 "Gmsh.y" { List_Add((yyval.l), &(yyvsp[(2) - (2)].s)); ;} break; - case 167: + case 165: /* Line 1464 of yacc.c */ -#line 2055 "Gmsh.y" +#line 2054 "Gmsh.y" { for(int i = 0; i < List_Nbr((yyvsp[(4) - (6)].l)); i++){ double d; @@ -6661,10 +6672,10 @@ yyreduce: ;} break; - case 168: + case 166: /* Line 1464 of yacc.c */ -#line 2078 "Gmsh.y" +#line 2077 "Gmsh.y" { for(int i = 0; i < List_Nbr((yyvsp[(4) - (6)].l)); i++){ double d; @@ -6689,10 +6700,10 @@ yyreduce: ;} break; - case 169: + case 167: /* Line 1464 of yacc.c */ -#line 2101 "Gmsh.y" +#line 2100 "Gmsh.y" { for(int i = 0; i < List_Nbr((yyvsp[(4) - (6)].l)); i++){ double d; @@ -6717,10 +6728,10 @@ yyreduce: ;} break; - case 170: + case 168: /* Line 1464 of yacc.c */ -#line 2124 "Gmsh.y" +#line 2123 "Gmsh.y" { for(int i = 0; i < List_Nbr((yyvsp[(4) - (6)].l)); i++){ double d; @@ -6745,10 +6756,10 @@ yyreduce: ;} break; - case 171: + case 169: /* Line 1464 of yacc.c */ -#line 2152 "Gmsh.y" +#line 2151 "Gmsh.y" { #if defined(HAVE_DINTEGRATION) if(List_Nbr((yyvsp[(7) - (8)].l)) == 4){ @@ -6771,10 +6782,10 @@ yyreduce: ;} break; - case 172: + case 170: /* Line 1464 of yacc.c */ -#line 2173 "Gmsh.y" +#line 2172 "Gmsh.y" { #if defined(HAVE_DINTEGRATION) int t = (int)(yyvsp[(4) - (10)].d); @@ -6799,10 +6810,10 @@ yyreduce: ;} break; - case 173: + case 171: /* Line 1464 of yacc.c */ -#line 2197 "Gmsh.y" +#line 2196 "Gmsh.y" { #if defined(HAVE_DINTEGRATION) if(List_Nbr((yyvsp[(12) - (14)].l)) == 0){ @@ -6824,10 +6835,10 @@ yyreduce: ;} break; - case 174: + case 172: /* Line 1464 of yacc.c */ -#line 2218 "Gmsh.y" +#line 2217 "Gmsh.y" { #if defined(HAVE_DINTEGRATION) if(List_Nbr((yyvsp[(14) - (16)].l)) == 0){ @@ -6850,10 +6861,10 @@ yyreduce: ;} break; - case 175: + case 173: /* Line 1464 of yacc.c */ -#line 2239 "Gmsh.y" +#line 2238 "Gmsh.y" { #if defined(HAVE_DINTEGRATION) if(List_Nbr((yyvsp[(10) - (12)].l)) == 1){ @@ -6875,10 +6886,10 @@ yyreduce: ;} break; - case 176: + case 174: /* Line 1464 of yacc.c */ -#line 2259 "Gmsh.y" +#line 2258 "Gmsh.y" { #if defined(HAVE_DINTEGRATION) if(!strcmp((yyvsp[(2) - (8)].c), "Union")){ @@ -6992,10 +7003,10 @@ yyreduce: ;} break; - case 177: + case 175: /* Line 1464 of yacc.c */ -#line 2371 "Gmsh.y" +#line 2370 "Gmsh.y" { #if defined(HAVE_DINTEGRATION) if(!strcmp((yyvsp[(2) - (8)].c), "MathEval")){ @@ -7016,10 +7027,10 @@ yyreduce: ;} break; - case 178: + case 176: /* Line 1464 of yacc.c */ -#line 2390 "Gmsh.y" +#line 2389 "Gmsh.y" { #if defined(HAVE_DINTEGRATION) if(!strcmp((yyvsp[(2) - (6)].c), "CutMesh")){ @@ -7059,10 +7070,10 @@ yyreduce: ;} break; - case 179: + case 177: /* Line 1464 of yacc.c */ -#line 2429 "Gmsh.y" +#line 2428 "Gmsh.y" { #if defined(HAVE_DINTEGRATION) if(!strcmp((yyvsp[(2) - (14)].c), "Cylinder") && List_Nbr((yyvsp[(12) - (14)].l)) == 1){ @@ -7167,10 +7178,10 @@ yyreduce: ;} break; - case 180: + case 178: /* Line 1464 of yacc.c */ -#line 2537 "Gmsh.y" +#line 2536 "Gmsh.y" { for(int i = 0; i < List_Nbr((yyvsp[(3) - (4)].l)); i++){ Shape TheShape; @@ -7181,10 +7192,10 @@ yyreduce: ;} break; - case 181: + case 179: /* Line 1464 of yacc.c */ -#line 2546 "Gmsh.y" +#line 2545 "Gmsh.y" { #if defined(HAVE_MESH) GModel::current()->getFields()->deleteField((int)(yyvsp[(4) - (6)].d)); @@ -7192,10 +7203,10 @@ yyreduce: ;} break; - case 182: + case 180: /* Line 1464 of yacc.c */ -#line 2552 "Gmsh.y" +#line 2551 "Gmsh.y" { #if defined(HAVE_POST) if(!strcmp((yyvsp[(2) - (6)].c), "View")){ @@ -7212,10 +7223,10 @@ yyreduce: ;} break; - case 183: + case 181: /* Line 1464 of yacc.c */ -#line 2567 "Gmsh.y" +#line 2566 "Gmsh.y" { if(!strcmp((yyvsp[(2) - (3)].c), "Meshes") || !strcmp((yyvsp[(2) - (3)].c), "All")){ ClearProject(); @@ -7245,10 +7256,10 @@ yyreduce: ;} break; - case 184: + case 182: /* Line 1464 of yacc.c */ -#line 2595 "Gmsh.y" +#line 2594 "Gmsh.y" { #if defined(HAVE_POST) if(!strcmp((yyvsp[(2) - (4)].c), "Empty") && !strcmp((yyvsp[(3) - (4)].c), "Views")){ @@ -7262,10 +7273,10 @@ yyreduce: ;} break; - case 185: + case 183: /* Line 1464 of yacc.c */ -#line 2612 "Gmsh.y" +#line 2611 "Gmsh.y" { for(int i = 0; i < List_Nbr((yyvsp[(4) - (5)].l)); i++){ Shape TheShape; @@ -7276,10 +7287,10 @@ yyreduce: ;} break; - case 186: + case 184: /* Line 1464 of yacc.c */ -#line 2626 "Gmsh.y" +#line 2625 "Gmsh.y" { for(int i = 0; i < 4; i++) VisibilityShape((yyvsp[(2) - (3)].c), i, 1); @@ -7287,10 +7298,10 @@ yyreduce: ;} break; - case 187: + case 185: /* Line 1464 of yacc.c */ -#line 2632 "Gmsh.y" +#line 2631 "Gmsh.y" { for(int i = 0; i < 4; i++) VisibilityShape((yyvsp[(2) - (3)].c), i, 0); @@ -7298,10 +7309,10 @@ yyreduce: ;} break; - case 188: + case 186: /* Line 1464 of yacc.c */ -#line 2638 "Gmsh.y" +#line 2637 "Gmsh.y" { for(int i = 0; i < List_Nbr((yyvsp[(3) - (4)].l)); i++){ Shape TheShape; @@ -7312,10 +7323,10 @@ yyreduce: ;} break; - case 189: + case 187: /* Line 1464 of yacc.c */ -#line 2647 "Gmsh.y" +#line 2646 "Gmsh.y" { for(int i = 0; i < List_Nbr((yyvsp[(3) - (4)].l)); i++){ Shape TheShape; @@ -7326,10 +7337,10 @@ yyreduce: ;} break; - case 190: + case 188: /* Line 1464 of yacc.c */ -#line 2661 "Gmsh.y" +#line 2660 "Gmsh.y" { if(!strcmp((yyvsp[(1) - (3)].c), "Include")){ std::string tmp = FixRelativePath(gmsh_yyname, (yyvsp[(2) - (3)].c)); @@ -7376,10 +7387,10 @@ yyreduce: ;} break; - case 191: + case 189: /* Line 1464 of yacc.c */ -#line 2706 "Gmsh.y" +#line 2705 "Gmsh.y" { #if defined(HAVE_POST) if(!strcmp((yyvsp[(1) - (7)].c), "Save") && !strcmp((yyvsp[(2) - (7)].c), "View")){ @@ -7398,10 +7409,10 @@ yyreduce: ;} break; - case 192: + case 190: /* Line 1464 of yacc.c */ -#line 2723 "Gmsh.y" +#line 2722 "Gmsh.y" { #if defined(HAVE_POST) && defined(HAVE_MESH) if(!strcmp((yyvsp[(1) - (7)].c), "Background") && !strcmp((yyvsp[(2) - (7)].c), "Mesh") && !strcmp((yyvsp[(3) - (7)].c), "View")){ @@ -7418,10 +7429,10 @@ yyreduce: ;} break; - case 193: + case 191: /* Line 1464 of yacc.c */ -#line 2738 "Gmsh.y" +#line 2737 "Gmsh.y" { if(!strcmp((yyvsp[(1) - (3)].c), "Sleep")){ SleepInSeconds((yyvsp[(2) - (3)].d)); @@ -7442,10 +7453,10 @@ yyreduce: ;} break; - case 194: + case 192: /* Line 1464 of yacc.c */ -#line 2757 "Gmsh.y" +#line 2756 "Gmsh.y" { #if defined(HAVE_PLUGINS) try { @@ -7459,10 +7470,10 @@ yyreduce: ;} break; - case 195: + case 193: /* Line 1464 of yacc.c */ -#line 2769 "Gmsh.y" +#line 2768 "Gmsh.y" { #if defined(HAVE_POST) if(!strcmp((yyvsp[(2) - (3)].c), "ElementsFromAllViews")) @@ -7488,29 +7499,29 @@ yyreduce: ;} break; - case 196: + case 194: /* Line 1464 of yacc.c */ -#line 2793 "Gmsh.y" +#line 2792 "Gmsh.y" { Msg::Exit(0); ;} break; - case 197: + case 195: /* Line 1464 of yacc.c */ -#line 2797 "Gmsh.y" +#line 2796 "Gmsh.y" { gmsh_yyerrorstate = 999; // this will be checked when yyparse returns YYABORT; ;} break; - case 198: + case 196: /* Line 1464 of yacc.c */ -#line 2802 "Gmsh.y" +#line 2801 "Gmsh.y" { // FIXME: this is a hack to force a transfer from the old DB to // the new DB. This will become unnecessary if/when we fill the @@ -7519,10 +7530,10 @@ yyreduce: ;} break; - case 199: + case 197: /* Line 1464 of yacc.c */ -#line 2809 "Gmsh.y" +#line 2808 "Gmsh.y" { CTX::instance()->forcedBBox = 0; GModel::current()->importGEOInternals(); @@ -7530,20 +7541,20 @@ yyreduce: ;} break; - case 200: + case 198: /* Line 1464 of yacc.c */ -#line 2815 "Gmsh.y" +#line 2814 "Gmsh.y" { CTX::instance()->forcedBBox = 1; SetBoundingBox((yyvsp[(3) - (15)].d), (yyvsp[(5) - (15)].d), (yyvsp[(7) - (15)].d), (yyvsp[(9) - (15)].d), (yyvsp[(11) - (15)].d), (yyvsp[(13) - (15)].d)); ;} break; - case 201: + case 199: /* Line 1464 of yacc.c */ -#line 2820 "Gmsh.y" +#line 2819 "Gmsh.y" { #if defined(HAVE_OPENGL) drawContext::global()->draw(); @@ -7551,48 +7562,48 @@ yyreduce: ;} break; - case 202: + case 200: /* Line 1464 of yacc.c */ -#line 2826 "Gmsh.y" +#line 2825 "Gmsh.y" { GModel::current()->createTopologyFromMesh(); ;} break; - case 203: + case 201: /* Line 1464 of yacc.c */ -#line 2830 "Gmsh.y" +#line 2829 "Gmsh.y" { GModel::current()->createTopologyFromMesh(1); ;} break; - case 204: + case 202: /* Line 1464 of yacc.c */ -#line 2834 "Gmsh.y" +#line 2833 "Gmsh.y" { GModel::current()->importGEOInternals(); GModel::current()->refineMesh(CTX::instance()->mesh.secondOrderLinear); ;} break; - case 205: + case 203: /* Line 1464 of yacc.c */ -#line 2839 "Gmsh.y" +#line 2838 "Gmsh.y" { SetOrderN(GModel::current(), (yyvsp[(2) - (3)].d), CTX::instance()->mesh.secondOrderLinear, CTX::instance()->mesh.secondOrderIncomplete); ;} break; - case 206: + case 204: /* Line 1464 of yacc.c */ -#line 2849 "Gmsh.y" +#line 2848 "Gmsh.y" { LoopControlVariablesTab[ImbricatedLoop][0] = (yyvsp[(3) - (6)].d); LoopControlVariablesTab[ImbricatedLoop][1] = (yyvsp[(5) - (6)].d); @@ -7611,10 +7622,10 @@ yyreduce: ;} break; - case 207: + case 205: /* Line 1464 of yacc.c */ -#line 2866 "Gmsh.y" +#line 2865 "Gmsh.y" { LoopControlVariablesTab[ImbricatedLoop][0] = (yyvsp[(3) - (8)].d); LoopControlVariablesTab[ImbricatedLoop][1] = (yyvsp[(5) - (8)].d); @@ -7633,10 +7644,10 @@ yyreduce: ;} break; - case 208: + case 206: /* Line 1464 of yacc.c */ -#line 2883 "Gmsh.y" +#line 2882 "Gmsh.y" { LoopControlVariablesTab[ImbricatedLoop][0] = (yyvsp[(5) - (8)].d); LoopControlVariablesTab[ImbricatedLoop][1] = (yyvsp[(7) - (8)].d); @@ -7659,10 +7670,10 @@ yyreduce: ;} break; - case 209: + case 207: /* Line 1464 of yacc.c */ -#line 2904 "Gmsh.y" +#line 2903 "Gmsh.y" { LoopControlVariablesTab[ImbricatedLoop][0] = (yyvsp[(5) - (10)].d); LoopControlVariablesTab[ImbricatedLoop][1] = (yyvsp[(7) - (10)].d); @@ -7685,10 +7696,10 @@ yyreduce: ;} break; - case 210: + case 208: /* Line 1464 of yacc.c */ -#line 2925 "Gmsh.y" +#line 2924 "Gmsh.y" { if(ImbricatedLoop <= 0){ yymsg(0, "Invalid For/EndFor loop"); @@ -7725,10 +7736,10 @@ yyreduce: ;} break; - case 211: + case 209: /* Line 1464 of yacc.c */ -#line 2960 "Gmsh.y" +#line 2959 "Gmsh.y" { if(!FunctionManager::Instance()->createFunction ((yyvsp[(2) - (2)].c), gmsh_yyin, gmsh_yyname, gmsh_yylineno)) @@ -7738,10 +7749,10 @@ yyreduce: ;} break; - case 212: + case 210: /* Line 1464 of yacc.c */ -#line 2968 "Gmsh.y" +#line 2967 "Gmsh.y" { if(!FunctionManager::Instance()->leaveFunction (&gmsh_yyin, gmsh_yyname, gmsh_yylineno)) @@ -7749,10 +7760,10 @@ yyreduce: ;} break; - case 213: + case 211: /* Line 1464 of yacc.c */ -#line 2974 "Gmsh.y" +#line 2973 "Gmsh.y" { if(!FunctionManager::Instance()->enterFunction ((yyvsp[(2) - (3)].c), &gmsh_yyin, gmsh_yyname, gmsh_yylineno)) @@ -7761,27 +7772,27 @@ yyreduce: ;} break; - case 214: + case 212: /* Line 1464 of yacc.c */ -#line 2981 "Gmsh.y" +#line 2980 "Gmsh.y" { if(!(yyvsp[(3) - (4)].d)) skip_until("If", "EndIf"); ;} break; - case 215: + case 213: /* Line 1464 of yacc.c */ -#line 2985 "Gmsh.y" +#line 2984 "Gmsh.y" { ;} break; - case 216: + case 214: /* Line 1464 of yacc.c */ -#line 2994 "Gmsh.y" +#line 2993 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); ExtrudeShapes(TRANSLATE, (yyvsp[(4) - (5)].l), @@ -7791,10 +7802,10 @@ yyreduce: ;} break; - case 217: + case 215: /* Line 1464 of yacc.c */ -#line 3002 "Gmsh.y" +#line 3001 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); ExtrudeShapes(ROTATE, (yyvsp[(10) - (11)].l), @@ -7804,10 +7815,10 @@ yyreduce: ;} break; - case 218: + case 216: /* Line 1464 of yacc.c */ -#line 3010 "Gmsh.y" +#line 3009 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); ExtrudeShapes(TRANSLATE_ROTATE, (yyvsp[(12) - (13)].l), @@ -7817,20 +7828,20 @@ yyreduce: ;} break; - case 219: + case 217: /* Line 1464 of yacc.c */ -#line 3018 "Gmsh.y" +#line 3017 "Gmsh.y" { extr.mesh.ExtrudeMesh = extr.mesh.Recombine = false; extr.mesh.QuadToTri = NO_QUADTRI; ;} break; - case 220: + case 218: /* Line 1464 of yacc.c */ -#line 3023 "Gmsh.y" +#line 3022 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); ExtrudeShapes(TRANSLATE, (yyvsp[(4) - (7)].l), @@ -7840,20 +7851,20 @@ yyreduce: ;} break; - case 221: + case 219: /* Line 1464 of yacc.c */ -#line 3031 "Gmsh.y" +#line 3030 "Gmsh.y" { extr.mesh.ExtrudeMesh = extr.mesh.Recombine = false; extr.mesh.QuadToTri = NO_QUADTRI; ;} break; - case 222: + case 220: /* Line 1464 of yacc.c */ -#line 3036 "Gmsh.y" +#line 3035 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); ExtrudeShapes(ROTATE, (yyvsp[(10) - (13)].l), @@ -7863,20 +7874,20 @@ yyreduce: ;} break; - case 223: + case 221: /* Line 1464 of yacc.c */ -#line 3044 "Gmsh.y" +#line 3043 "Gmsh.y" { extr.mesh.ExtrudeMesh = extr.mesh.Recombine = false; extr.mesh.QuadToTri = NO_QUADTRI; ;} break; - case 224: + case 222: /* Line 1464 of yacc.c */ -#line 3049 "Gmsh.y" +#line 3048 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); ExtrudeShapes(TRANSLATE_ROTATE, (yyvsp[(12) - (15)].l), @@ -7886,20 +7897,20 @@ yyreduce: ;} break; - case 225: + case 223: /* Line 1464 of yacc.c */ -#line 3057 "Gmsh.y" +#line 3056 "Gmsh.y" { extr.mesh.ExtrudeMesh = extr.mesh.Recombine = false; extr.mesh.QuadToTri = NO_QUADTRI; ;} break; - case 226: + case 224: /* Line 1464 of yacc.c */ -#line 3062 "Gmsh.y" +#line 3061 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); ExtrudeShapes(BOUNDARY_LAYER, (yyvsp[(3) - (6)].l), 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., @@ -7908,10 +7919,10 @@ yyreduce: ;} break; - case 227: + case 225: /* Line 1464 of yacc.c */ -#line 3070 "Gmsh.y" +#line 3069 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); ExtrudeShape(TRANSLATE, MSH_POINT, (int)(yyvsp[(4) - (8)].d), @@ -7920,10 +7931,10 @@ yyreduce: ;} break; - case 228: + case 226: /* Line 1464 of yacc.c */ -#line 3077 "Gmsh.y" +#line 3076 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); ExtrudeShape(TRANSLATE, MSH_SEGM_LINE, (int)(yyvsp[(4) - (8)].d), @@ -7932,10 +7943,10 @@ yyreduce: ;} break; - case 229: + case 227: /* Line 1464 of yacc.c */ -#line 3084 "Gmsh.y" +#line 3083 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); ExtrudeShape(TRANSLATE, MSH_SURF_PLAN, (int)(yyvsp[(4) - (8)].d), @@ -7944,10 +7955,10 @@ yyreduce: ;} break; - case 230: + case 228: /* Line 1464 of yacc.c */ -#line 3091 "Gmsh.y" +#line 3090 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); ExtrudeShape(ROTATE, MSH_POINT, (int)(yyvsp[(4) - (12)].d), @@ -7956,10 +7967,10 @@ yyreduce: ;} break; - case 231: + case 229: /* Line 1464 of yacc.c */ -#line 3098 "Gmsh.y" +#line 3097 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); ExtrudeShape(ROTATE, MSH_SEGM_LINE, (int)(yyvsp[(4) - (12)].d), @@ -7968,10 +7979,10 @@ yyreduce: ;} break; - case 232: + case 230: /* Line 1464 of yacc.c */ -#line 3105 "Gmsh.y" +#line 3104 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); ExtrudeShape(ROTATE, MSH_SURF_PLAN, (int)(yyvsp[(4) - (12)].d), @@ -7980,10 +7991,10 @@ yyreduce: ;} break; - case 233: + case 231: /* Line 1464 of yacc.c */ -#line 3112 "Gmsh.y" +#line 3111 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); ExtrudeShape(TRANSLATE_ROTATE, MSH_POINT, (int)(yyvsp[(4) - (14)].d), @@ -7992,10 +8003,10 @@ yyreduce: ;} break; - case 234: + case 232: /* Line 1464 of yacc.c */ -#line 3119 "Gmsh.y" +#line 3118 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); ExtrudeShape(TRANSLATE_ROTATE, MSH_SEGM_LINE, (int)(yyvsp[(4) - (14)].d), @@ -8004,10 +8015,10 @@ yyreduce: ;} break; - case 235: + case 233: /* Line 1464 of yacc.c */ -#line 3126 "Gmsh.y" +#line 3125 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); ExtrudeShape(TRANSLATE_ROTATE, MSH_SURF_PLAN, (int)(yyvsp[(4) - (14)].d), @@ -8016,20 +8027,20 @@ yyreduce: ;} break; - case 236: + case 234: /* Line 1464 of yacc.c */ -#line 3133 "Gmsh.y" +#line 3132 "Gmsh.y" { extr.mesh.ExtrudeMesh = extr.mesh.Recombine = false; extr.mesh.QuadToTri = NO_QUADTRI; ;} break; - case 237: + case 235: /* Line 1464 of yacc.c */ -#line 3138 "Gmsh.y" +#line 3137 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); ExtrudeShape(TRANSLATE, MSH_POINT, (int)(yyvsp[(4) - (12)].d), @@ -8038,20 +8049,20 @@ yyreduce: ;} break; - case 238: + case 236: /* Line 1464 of yacc.c */ -#line 3145 "Gmsh.y" +#line 3144 "Gmsh.y" { extr.mesh.ExtrudeMesh = extr.mesh.Recombine = false; extr.mesh.QuadToTri = NO_QUADTRI; ;} break; - case 239: + case 237: /* Line 1464 of yacc.c */ -#line 3150 "Gmsh.y" +#line 3149 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); ExtrudeShape(TRANSLATE, MSH_SEGM_LINE, (int)(yyvsp[(4) - (12)].d), @@ -8060,20 +8071,20 @@ yyreduce: ;} break; - case 240: + case 238: /* Line 1464 of yacc.c */ -#line 3157 "Gmsh.y" +#line 3156 "Gmsh.y" { extr.mesh.ExtrudeMesh = extr.mesh.Recombine = false; extr.mesh.QuadToTri = NO_QUADTRI; ;} break; - case 241: + case 239: /* Line 1464 of yacc.c */ -#line 3162 "Gmsh.y" +#line 3161 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); ExtrudeShape(TRANSLATE, MSH_SURF_PLAN, (int)(yyvsp[(4) - (12)].d), @@ -8082,20 +8093,20 @@ yyreduce: ;} break; - case 242: + case 240: /* Line 1464 of yacc.c */ -#line 3169 "Gmsh.y" +#line 3168 "Gmsh.y" { extr.mesh.ExtrudeMesh = extr.mesh.Recombine = false; extr.mesh.QuadToTri = NO_QUADTRI; ;} break; - case 243: + case 241: /* Line 1464 of yacc.c */ -#line 3174 "Gmsh.y" +#line 3173 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); ExtrudeShape(ROTATE, MSH_POINT, (int)(yyvsp[(4) - (16)].d), @@ -8104,20 +8115,20 @@ yyreduce: ;} break; - case 244: + case 242: /* Line 1464 of yacc.c */ -#line 3181 "Gmsh.y" +#line 3180 "Gmsh.y" { extr.mesh.ExtrudeMesh = extr.mesh.Recombine = false; extr.mesh.QuadToTri = NO_QUADTRI; ;} break; - case 245: + case 243: /* Line 1464 of yacc.c */ -#line 3186 "Gmsh.y" +#line 3185 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); ExtrudeShape(ROTATE, MSH_SEGM_LINE, (int)(yyvsp[(4) - (16)].d), @@ -8126,20 +8137,20 @@ yyreduce: ;} break; - case 246: + case 244: /* Line 1464 of yacc.c */ -#line 3193 "Gmsh.y" +#line 3192 "Gmsh.y" { extr.mesh.ExtrudeMesh = extr.mesh.Recombine = false; extr.mesh.QuadToTri = NO_QUADTRI; ;} break; - case 247: + case 245: /* Line 1464 of yacc.c */ -#line 3198 "Gmsh.y" +#line 3197 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); ExtrudeShape(ROTATE, MSH_SURF_PLAN, (int)(yyvsp[(4) - (16)].d), @@ -8148,20 +8159,20 @@ yyreduce: ;} break; - case 248: + case 246: /* Line 1464 of yacc.c */ -#line 3205 "Gmsh.y" +#line 3204 "Gmsh.y" { extr.mesh.ExtrudeMesh = extr.mesh.Recombine = false; extr.mesh.QuadToTri = NO_QUADTRI; ;} break; - case 249: + case 247: /* Line 1464 of yacc.c */ -#line 3210 "Gmsh.y" +#line 3209 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); ExtrudeShape(TRANSLATE_ROTATE, MSH_POINT, (int)(yyvsp[(4) - (18)].d), @@ -8170,20 +8181,20 @@ yyreduce: ;} break; - case 250: + case 248: /* Line 1464 of yacc.c */ -#line 3217 "Gmsh.y" +#line 3216 "Gmsh.y" { extr.mesh.ExtrudeMesh = extr.mesh.Recombine = false; extr.mesh.QuadToTri = NO_QUADTRI; ;} break; - case 251: + case 249: /* Line 1464 of yacc.c */ -#line 3222 "Gmsh.y" +#line 3221 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); ExtrudeShape(TRANSLATE_ROTATE, MSH_SEGM_LINE, (int)(yyvsp[(4) - (18)].d), @@ -8192,20 +8203,20 @@ yyreduce: ;} break; - case 252: + case 250: /* Line 1464 of yacc.c */ -#line 3229 "Gmsh.y" +#line 3228 "Gmsh.y" { extr.mesh.ExtrudeMesh = extr.mesh.Recombine = false; extr.mesh.QuadToTri = NO_QUADTRI; ;} break; - case 253: + case 251: /* Line 1464 of yacc.c */ -#line 3234 "Gmsh.y" +#line 3233 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); ExtrudeShape(TRANSLATE_ROTATE, MSH_SURF_PLAN, (int)(yyvsp[(4) - (18)].d), @@ -8214,26 +8225,26 @@ yyreduce: ;} break; - case 254: + case 252: /* Line 1464 of yacc.c */ -#line 3245 "Gmsh.y" +#line 3244 "Gmsh.y" { ;} break; - case 255: + case 253: /* Line 1464 of yacc.c */ -#line 3248 "Gmsh.y" +#line 3247 "Gmsh.y" { ;} break; - case 256: + case 254: /* Line 1464 of yacc.c */ -#line 3254 "Gmsh.y" +#line 3253 "Gmsh.y" { extr.mesh.ExtrudeMesh = true; extr.mesh.NbLayer = 1; @@ -8244,10 +8255,10 @@ yyreduce: ;} break; - case 257: + case 255: /* Line 1464 of yacc.c */ -#line 3263 "Gmsh.y" +#line 3262 "Gmsh.y" { extr.mesh.ExtrudeMesh = true; extr.mesh.NbLayer = List_Nbr((yyvsp[(3) - (7)].l)); @@ -8269,10 +8280,10 @@ yyreduce: ;} break; - case 258: + case 256: /* Line 1464 of yacc.c */ -#line 3283 "Gmsh.y" +#line 3282 "Gmsh.y" { yymsg(0, "Explicit region numbers in layers are deprecated"); extr.mesh.ExtrudeMesh = true; @@ -8297,55 +8308,55 @@ yyreduce: ;} break; - case 259: + case 257: /* Line 1464 of yacc.c */ -#line 3306 "Gmsh.y" +#line 3305 "Gmsh.y" { extr.mesh.Recombine = true; ;} break; - case 260: + case 258: /* Line 1464 of yacc.c */ -#line 3310 "Gmsh.y" +#line 3309 "Gmsh.y" { extr.mesh.QuadToTri = QUADTRI_DBL_1; ;} break; - case 261: + case 259: /* Line 1464 of yacc.c */ -#line 3314 "Gmsh.y" +#line 3313 "Gmsh.y" { extr.mesh.QuadToTri = QUADTRI_DBL_1_RECOMB; ;} break; - case 262: + case 260: /* Line 1464 of yacc.c */ -#line 3318 "Gmsh.y" +#line 3317 "Gmsh.y" { extr.mesh.QuadToTri = QUADTRI_SNGL_1; ;} break; - case 263: + case 261: /* Line 1464 of yacc.c */ -#line 3322 "Gmsh.y" +#line 3321 "Gmsh.y" { extr.mesh.QuadToTri = QUADTRI_SNGL_1_RECOMB; ;} break; - case 264: + case 262: /* Line 1464 of yacc.c */ -#line 3326 "Gmsh.y" +#line 3325 "Gmsh.y" { int num = (int)(yyvsp[(3) - (9)].d); if(FindSurface(num)){ @@ -8366,10 +8377,10 @@ yyreduce: ;} break; - case 265: + case 263: /* Line 1464 of yacc.c */ -#line 3345 "Gmsh.y" +#line 3344 "Gmsh.y" { if(!strcmp((yyvsp[(2) - (6)].c), "Index")) extr.mesh.BoundaryLayerIndex = (yyvsp[(4) - (6)].d); @@ -8379,19 +8390,19 @@ yyreduce: ;} break; - case 266: + case 264: /* Line 1464 of yacc.c */ -#line 3357 "Gmsh.y" +#line 3356 "Gmsh.y" { (yyval.v)[0] = (yyval.v)[1] = 1.; ;} break; - case 267: + case 265: /* Line 1464 of yacc.c */ -#line 3361 "Gmsh.y" +#line 3360 "Gmsh.y" { if(!strcmp((yyvsp[(2) - (3)].c), "Progression") || !strcmp((yyvsp[(2) - (3)].c), "Power")) (yyval.v)[0] = 1.; @@ -8406,19 +8417,19 @@ yyreduce: ;} break; - case 268: + case 266: /* Line 1464 of yacc.c */ -#line 3376 "Gmsh.y" +#line 3375 "Gmsh.y" { (yyval.i) = -1; // left ;} break; - case 269: + case 267: /* Line 1464 of yacc.c */ -#line 3380 "Gmsh.y" +#line 3379 "Gmsh.y" { if(!strcmp((yyvsp[(1) - (1)].c), "Right")) (yyval.i) = 1; @@ -8430,46 +8441,46 @@ yyreduce: ;} break; - case 270: + case 268: /* Line 1464 of yacc.c */ -#line 3392 "Gmsh.y" +#line 3391 "Gmsh.y" { (yyval.l) = List_Create(1, 1, sizeof(double)); ;} break; - case 271: + case 269: /* Line 1464 of yacc.c */ -#line 3396 "Gmsh.y" +#line 3395 "Gmsh.y" { (yyval.l) = (yyvsp[(2) - (2)].l); ;} break; - case 272: + case 270: /* Line 1464 of yacc.c */ -#line 3401 "Gmsh.y" +#line 3400 "Gmsh.y" { (yyval.i) = 45; ;} break; - case 273: + case 271: /* Line 1464 of yacc.c */ -#line 3405 "Gmsh.y" +#line 3404 "Gmsh.y" { (yyval.i) = (int)(yyvsp[(2) - (2)].d); ;} break; - case 274: + case 272: /* Line 1464 of yacc.c */ -#line 3412 "Gmsh.y" +#line 3411 "Gmsh.y" { int type = (int)(yyvsp[(6) - (7)].v)[0]; double coef = fabs((yyvsp[(6) - (7)].v)[1]); @@ -8488,7 +8499,7 @@ yyreduce: else{ for(GModel::eiter it = GModel::current()->firstEdge(); it != GModel::current()->lastEdge(); it++){ - (*it)->meshAttributes.Method = MESH_TRANSFINITE; + (*it)->meshAttributes.method = MESH_TRANSFINITE; (*it)->meshAttributes.nbPointsTransfinite = ((yyvsp[(5) - (7)].d) > 2) ? (int)(yyvsp[(5) - (7)].d) : 2; (*it)->meshAttributes.typeTransfinite = type; (*it)->meshAttributes.coeffTransfinite = coef; @@ -8512,7 +8523,7 @@ yyreduce: else{ GEdge *ge = GModel::current()->getEdgeByTag(sign * j); if(ge){ - ge->meshAttributes.Method = MESH_TRANSFINITE; + ge->meshAttributes.method = MESH_TRANSFINITE; ge->meshAttributes.nbPointsTransfinite = ((yyvsp[(5) - (7)].d) > 2) ? (int)(yyvsp[(5) - (7)].d) : 2; ge->meshAttributes.typeTransfinite = type * sign(d); ge->meshAttributes.coeffTransfinite = coef; @@ -8527,10 +8538,10 @@ yyreduce: ;} break; - case 275: + case 273: /* Line 1464 of yacc.c */ -#line 3468 "Gmsh.y" +#line 3467 "Gmsh.y" { int k = List_Nbr((yyvsp[(4) - (6)].l)); if(k != 0 && k != 3 && k != 4){ @@ -8551,7 +8562,7 @@ yyreduce: else{ for(GModel::fiter it = GModel::current()->firstFace(); it != GModel::current()->lastFace(); it++){ - (*it)->meshAttributes.Method = MESH_TRANSFINITE; + (*it)->meshAttributes.method = MESH_TRANSFINITE; (*it)->meshAttributes.transfiniteArrangement = (yyvsp[(5) - (6)].i); } } @@ -8579,7 +8590,7 @@ yyreduce: else{ GFace *gf = GModel::current()->getFaceByTag((int)d); if(gf){ - gf->meshAttributes.Method = MESH_TRANSFINITE; + gf->meshAttributes.method = MESH_TRANSFINITE; gf->meshAttributes.transfiniteArrangement = (yyvsp[(5) - (6)].i); for(int j = 0; j < k; j++){ double p; @@ -8602,20 +8613,20 @@ yyreduce: ;} break; - case 276: + case 274: /* Line 1464 of yacc.c */ -#line 3538 "Gmsh.y" +#line 3537 "Gmsh.y" { yymsg(1, "Elliptic Surface is deprecated: use Transfinite instead (with smoothing)"); List_Delete((yyvsp[(7) - (8)].l)); ;} break; - case 277: + case 275: /* Line 1464 of yacc.c */ -#line 3543 "Gmsh.y" +#line 3542 "Gmsh.y" { int k = List_Nbr((yyvsp[(4) - (5)].l)); if(k != 0 && k != 6 && k != 8){ @@ -8636,7 +8647,7 @@ yyreduce: else{ for(GModel::riter it = GModel::current()->firstRegion(); it != GModel::current()->lastRegion(); it++){ - (*it)->meshAttributes.Method = MESH_TRANSFINITE; + (*it)->meshAttributes.method = MESH_TRANSFINITE; } } List_Delete(tmp); @@ -8662,7 +8673,7 @@ yyreduce: else{ GRegion *gr = GModel::current()->getRegionByTag((int)d); if(gr){ - gr->meshAttributes.Method = MESH_TRANSFINITE; + gr->meshAttributes.method = MESH_TRANSFINITE; for(int i = 0; i < k; i++){ double p; List_Read((yyvsp[(4) - (5)].l), i, &p); @@ -8684,10 +8695,10 @@ yyreduce: ;} break; - case 278: + case 276: /* Line 1464 of yacc.c */ -#line 3610 "Gmsh.y" +#line 3609 "Gmsh.y" { if(!(yyvsp[(2) - (3)].l)){ List_T *tmp = Tree2List(GModel::current()->getGEOInternals()->Volumes); @@ -8725,10 +8736,10 @@ yyreduce: ;} break; - case 279: + case 277: /* Line 1464 of yacc.c */ -#line 3646 "Gmsh.y" +#line 3645 "Gmsh.y" { for(int i = 0; i < List_Nbr((yyvsp[(4) - (7)].l)); i++){ double d; @@ -8738,10 +8749,10 @@ yyreduce: ;} break; - case 280: + case 278: /* Line 1464 of yacc.c */ -#line 3655 "Gmsh.y" +#line 3653 "Gmsh.y" { if(!(yyvsp[(3) - (5)].l)){ List_T *tmp = Tree2List(GModel::current()->getGEOInternals()->Surfaces); @@ -8786,10 +8797,10 @@ yyreduce: ;} break; - case 281: + case 279: /* Line 1464 of yacc.c */ -#line 3698 "Gmsh.y" +#line 3696 "Gmsh.y" { if(!(yyvsp[(3) - (4)].l)){ List_T *tmp = Tree2List(GModel::current()->getGEOInternals()->Volumes); @@ -8830,10 +8841,10 @@ yyreduce: ;} break; - case 282: + case 280: /* Line 1464 of yacc.c */ -#line 3737 "Gmsh.y" +#line 3735 "Gmsh.y" { for(int i = 0; i < List_Nbr((yyvsp[(3) - (6)].l)); i++){ double d; @@ -8855,10 +8866,10 @@ yyreduce: ;} break; - case 283: + case 281: /* Line 1464 of yacc.c */ -#line 3762 "Gmsh.y" +#line 3755 "Gmsh.y" { if(List_Nbr((yyvsp[(5) - (6)].l)) != List_Nbr((yyvsp[(3) - (6)].l))){ yymsg(0, "Number of master (%d) different from number of slave (%d) lines", @@ -8887,10 +8898,10 @@ yyreduce: ;} break; - case 284: + case 282: /* Line 1464 of yacc.c */ -#line 3790 "Gmsh.y" +#line 3783 "Gmsh.y" { if (List_Nbr((yyvsp[(5) - (12)].l)) != List_Nbr((yyvsp[(10) - (12)].l))){ yymsg(0, "Number of master surface edges (%d) different from number of " @@ -8931,10 +8942,10 @@ yyreduce: ;} break; - case 285: + case 283: /* Line 1464 of yacc.c */ -#line 3836 "Gmsh.y" +#line 3822 "Gmsh.y" { Surface *s = FindSurface((int)(yyvsp[(8) - (10)].d)); if(s){ @@ -8959,10 +8970,10 @@ yyreduce: ;} break; - case 286: + case 284: /* Line 1464 of yacc.c */ -#line 3859 "Gmsh.y" +#line 3845 "Gmsh.y" { Surface *s = FindSurface((int)(yyvsp[(8) - (10)].d)); if(s){ @@ -8987,26 +8998,116 @@ yyreduce: ;} break; + case 285: + +/* Line 1464 of yacc.c */ +#line 3868 "Gmsh.y" + { + Msg::Error("Line in Volume not implemented yet"); + ;} + break; + + case 286: + +/* Line 1464 of yacc.c */ +#line 3872 "Gmsh.y" + { + Msg::Error("Surface in Volume not implemented yet"); + ;} + break; + case 287: /* Line 1464 of yacc.c */ -#line 3882 "Gmsh.y" +#line 3876 "Gmsh.y" { + if(!(yyvsp[(3) - (4)].l)){ + List_T *tmp = Tree2List(GModel::current()->getGEOInternals()->Surfaces); + if(List_Nbr(tmp)){ + for(int i = 0; i < List_Nbr(tmp); i++){ + Surface *s; + List_Read(tmp, i, &s); + s->ReverseMesh = 1; + } + } + else{ + for(GModel::fiter it = GModel::current()->firstFace(); + it != GModel::current()->lastFace(); it++){ + (*it)->meshAttributes.reverseMesh = 1; + } + } + List_Delete(tmp); + } + else{ + for(int i = 0; i < List_Nbr((yyvsp[(3) - (4)].l)); i++){ + double d; + List_Read((yyvsp[(3) - (4)].l), i, &d); + Surface *s = FindSurface((int)d); + if(s){ + s->ReverseMesh = 1; + } + else{ + GFace *gf = GModel::current()->getFaceByTag((int)d); + if(gf){ + gf->meshAttributes.reverseMesh = 1; + } + else + yymsg(1, "Unknown surface %d", (int)d); + } + } + List_Delete((yyvsp[(3) - (4)].l)); + } ;} break; case 288: /* Line 1464 of yacc.c */ -#line 3885 "Gmsh.y" +#line 3915 "Gmsh.y" { + if(!(yyvsp[(3) - (4)].l)){ + List_T *tmp = Tree2List(GModel::current()->getGEOInternals()->Curves); + if(List_Nbr(tmp)){ + for(int i = 0; i < List_Nbr(tmp); i++){ + Curve *c; + List_Read(tmp, i, &c); + c->ReverseMesh = 1; + } + } + else{ + for(GModel::eiter it = GModel::current()->firstEdge(); + it != GModel::current()->lastEdge(); it++){ + (*it)->meshAttributes.reverseMesh = 1; + } + } + List_Delete(tmp); + } + else{ + for(int i = 0; i < List_Nbr((yyvsp[(3) - (4)].l)); i++){ + double d; + List_Read((yyvsp[(3) - (4)].l), i, &d); + Curve *c = FindCurve((int)d); + if(c){ + c->ReverseMesh = 1; + } + else{ + GEdge *ge = GModel::current()->getEdgeByTag((int)d); + if(ge){ + ge->meshAttributes.reverseMesh = 1; + } + else + yymsg(1, "Unknown surface %d", (int)d); + } + } + List_Delete((yyvsp[(3) - (4)].l)); + } ;} break; case 289: /* Line 1464 of yacc.c */ -#line 3894 "Gmsh.y" +#line 3960 "Gmsh.y" { ReplaceAllDuplicates(); ;} @@ -9015,7 +9116,7 @@ yyreduce: case 290: /* Line 1464 of yacc.c */ -#line 3898 "Gmsh.y" +#line 3964 "Gmsh.y" { if(!strcmp((yyvsp[(2) - (3)].c), "Geometry")) ReplaceAllDuplicates(); @@ -9030,7 +9131,7 @@ yyreduce: case 291: /* Line 1464 of yacc.c */ -#line 3908 "Gmsh.y" +#line 3974 "Gmsh.y" { if(List_Nbr((yyvsp[(4) - (6)].l)) >= 2){ double d; @@ -9065,28 +9166,28 @@ yyreduce: case 292: /* Line 1464 of yacc.c */ -#line 3942 "Gmsh.y" +#line 4008 "Gmsh.y" { (yyval.c) = (char*)"Homology"; ;} break; case 293: /* Line 1464 of yacc.c */ -#line 3943 "Gmsh.y" +#line 4009 "Gmsh.y" { (yyval.c) = (char*)"Cohomology"; ;} break; case 294: /* Line 1464 of yacc.c */ -#line 3944 "Gmsh.y" +#line 4010 "Gmsh.y" { (yyval.c) = (char*)"Betti"; ;} break; case 295: /* Line 1464 of yacc.c */ -#line 3949 "Gmsh.y" +#line 4015 "Gmsh.y" { std::vector<int> domain, subdomain, dim; for(int i = 0; i < 4; i++) dim.push_back(i); @@ -9097,7 +9198,7 @@ yyreduce: case 296: /* Line 1464 of yacc.c */ -#line 3955 "Gmsh.y" +#line 4021 "Gmsh.y" { std::vector<int> domain, subdomain, dim; for(int i = 0; i < List_Nbr((yyvsp[(3) - (5)].l)); i++){ @@ -9114,7 +9215,7 @@ yyreduce: case 297: /* Line 1464 of yacc.c */ -#line 3967 "Gmsh.y" +#line 4033 "Gmsh.y" { std::vector<int> domain, subdomain, dim; for(int i = 0; i < List_Nbr((yyvsp[(3) - (7)].l)); i++){ @@ -9137,7 +9238,7 @@ yyreduce: case 298: /* Line 1464 of yacc.c */ -#line 3985 "Gmsh.y" +#line 4051 "Gmsh.y" { std::vector<int> domain, subdomain, dim; for(int i = 0; i < List_Nbr((yyvsp[(6) - (10)].l)); i++){ @@ -9165,63 +9266,63 @@ yyreduce: case 299: /* Line 1464 of yacc.c */ -#line 4012 "Gmsh.y" +#line 4078 "Gmsh.y" { (yyval.d) = (yyvsp[(1) - (1)].d); ;} break; case 300: /* Line 1464 of yacc.c */ -#line 4013 "Gmsh.y" +#line 4079 "Gmsh.y" { (yyval.d) = (yyvsp[(2) - (3)].d); ;} break; case 301: /* Line 1464 of yacc.c */ -#line 4014 "Gmsh.y" +#line 4080 "Gmsh.y" { (yyval.d) = -(yyvsp[(2) - (2)].d); ;} break; case 302: /* Line 1464 of yacc.c */ -#line 4015 "Gmsh.y" +#line 4081 "Gmsh.y" { (yyval.d) = (yyvsp[(2) - (2)].d); ;} break; case 303: /* Line 1464 of yacc.c */ -#line 4016 "Gmsh.y" +#line 4082 "Gmsh.y" { (yyval.d) = !(yyvsp[(2) - (2)].d); ;} break; case 304: /* Line 1464 of yacc.c */ -#line 4017 "Gmsh.y" +#line 4083 "Gmsh.y" { (yyval.d) = (yyvsp[(1) - (3)].d) - (yyvsp[(3) - (3)].d); ;} break; case 305: /* Line 1464 of yacc.c */ -#line 4018 "Gmsh.y" +#line 4084 "Gmsh.y" { (yyval.d) = (yyvsp[(1) - (3)].d) + (yyvsp[(3) - (3)].d); ;} break; case 306: /* Line 1464 of yacc.c */ -#line 4019 "Gmsh.y" +#line 4085 "Gmsh.y" { (yyval.d) = (yyvsp[(1) - (3)].d) * (yyvsp[(3) - (3)].d); ;} break; case 307: /* Line 1464 of yacc.c */ -#line 4021 "Gmsh.y" +#line 4087 "Gmsh.y" { if(!(yyvsp[(3) - (3)].d)) yymsg(0, "Division by zero in '%g / %g'", (yyvsp[(1) - (3)].d), (yyvsp[(3) - (3)].d)); @@ -9233,427 +9334,427 @@ yyreduce: case 308: /* Line 1464 of yacc.c */ -#line 4027 "Gmsh.y" +#line 4093 "Gmsh.y" { (yyval.d) = (int)(yyvsp[(1) - (3)].d) % (int)(yyvsp[(3) - (3)].d); ;} break; case 309: /* Line 1464 of yacc.c */ -#line 4028 "Gmsh.y" +#line 4094 "Gmsh.y" { (yyval.d) = pow((yyvsp[(1) - (3)].d), (yyvsp[(3) - (3)].d)); ;} break; case 310: /* Line 1464 of yacc.c */ -#line 4029 "Gmsh.y" +#line 4095 "Gmsh.y" { (yyval.d) = (yyvsp[(1) - (3)].d) < (yyvsp[(3) - (3)].d); ;} break; case 311: /* Line 1464 of yacc.c */ -#line 4030 "Gmsh.y" +#line 4096 "Gmsh.y" { (yyval.d) = (yyvsp[(1) - (3)].d) > (yyvsp[(3) - (3)].d); ;} break; case 312: /* Line 1464 of yacc.c */ -#line 4031 "Gmsh.y" +#line 4097 "Gmsh.y" { (yyval.d) = (yyvsp[(1) - (3)].d) <= (yyvsp[(3) - (3)].d); ;} break; case 313: /* Line 1464 of yacc.c */ -#line 4032 "Gmsh.y" +#line 4098 "Gmsh.y" { (yyval.d) = (yyvsp[(1) - (3)].d) >= (yyvsp[(3) - (3)].d); ;} break; case 314: /* Line 1464 of yacc.c */ -#line 4033 "Gmsh.y" +#line 4099 "Gmsh.y" { (yyval.d) = (yyvsp[(1) - (3)].d) == (yyvsp[(3) - (3)].d); ;} break; case 315: /* Line 1464 of yacc.c */ -#line 4034 "Gmsh.y" +#line 4100 "Gmsh.y" { (yyval.d) = (yyvsp[(1) - (3)].d) != (yyvsp[(3) - (3)].d); ;} break; case 316: /* Line 1464 of yacc.c */ -#line 4035 "Gmsh.y" +#line 4101 "Gmsh.y" { (yyval.d) = (yyvsp[(1) - (3)].d) && (yyvsp[(3) - (3)].d); ;} break; case 317: /* Line 1464 of yacc.c */ -#line 4036 "Gmsh.y" +#line 4102 "Gmsh.y" { (yyval.d) = (yyvsp[(1) - (3)].d) || (yyvsp[(3) - (3)].d); ;} break; case 318: /* Line 1464 of yacc.c */ -#line 4037 "Gmsh.y" +#line 4103 "Gmsh.y" { (yyval.d) = (yyvsp[(1) - (5)].d) ? (yyvsp[(3) - (5)].d) : (yyvsp[(5) - (5)].d); ;} break; case 319: /* Line 1464 of yacc.c */ -#line 4038 "Gmsh.y" +#line 4104 "Gmsh.y" { (yyval.d) = exp((yyvsp[(3) - (4)].d)); ;} break; case 320: /* Line 1464 of yacc.c */ -#line 4039 "Gmsh.y" +#line 4105 "Gmsh.y" { (yyval.d) = log((yyvsp[(3) - (4)].d)); ;} break; case 321: /* Line 1464 of yacc.c */ -#line 4040 "Gmsh.y" +#line 4106 "Gmsh.y" { (yyval.d) = log10((yyvsp[(3) - (4)].d)); ;} break; case 322: /* Line 1464 of yacc.c */ -#line 4041 "Gmsh.y" +#line 4107 "Gmsh.y" { (yyval.d) = sqrt((yyvsp[(3) - (4)].d)); ;} break; case 323: /* Line 1464 of yacc.c */ -#line 4042 "Gmsh.y" +#line 4108 "Gmsh.y" { (yyval.d) = sin((yyvsp[(3) - (4)].d)); ;} break; case 324: /* Line 1464 of yacc.c */ -#line 4043 "Gmsh.y" +#line 4109 "Gmsh.y" { (yyval.d) = asin((yyvsp[(3) - (4)].d)); ;} break; case 325: /* Line 1464 of yacc.c */ -#line 4044 "Gmsh.y" +#line 4110 "Gmsh.y" { (yyval.d) = cos((yyvsp[(3) - (4)].d)); ;} break; case 326: /* Line 1464 of yacc.c */ -#line 4045 "Gmsh.y" +#line 4111 "Gmsh.y" { (yyval.d) = acos((yyvsp[(3) - (4)].d)); ;} break; case 327: /* Line 1464 of yacc.c */ -#line 4046 "Gmsh.y" +#line 4112 "Gmsh.y" { (yyval.d) = tan((yyvsp[(3) - (4)].d)); ;} break; case 328: /* Line 1464 of yacc.c */ -#line 4047 "Gmsh.y" +#line 4113 "Gmsh.y" { (yyval.d) = atan((yyvsp[(3) - (4)].d)); ;} break; case 329: /* Line 1464 of yacc.c */ -#line 4048 "Gmsh.y" +#line 4114 "Gmsh.y" { (yyval.d) = atan2((yyvsp[(3) - (6)].d), (yyvsp[(5) - (6)].d));;} break; case 330: /* Line 1464 of yacc.c */ -#line 4049 "Gmsh.y" +#line 4115 "Gmsh.y" { (yyval.d) = sinh((yyvsp[(3) - (4)].d)); ;} break; case 331: /* Line 1464 of yacc.c */ -#line 4050 "Gmsh.y" +#line 4116 "Gmsh.y" { (yyval.d) = cosh((yyvsp[(3) - (4)].d)); ;} break; case 332: /* Line 1464 of yacc.c */ -#line 4051 "Gmsh.y" +#line 4117 "Gmsh.y" { (yyval.d) = tanh((yyvsp[(3) - (4)].d)); ;} break; case 333: /* Line 1464 of yacc.c */ -#line 4052 "Gmsh.y" +#line 4118 "Gmsh.y" { (yyval.d) = fabs((yyvsp[(3) - (4)].d)); ;} break; case 334: /* Line 1464 of yacc.c */ -#line 4053 "Gmsh.y" +#line 4119 "Gmsh.y" { (yyval.d) = floor((yyvsp[(3) - (4)].d)); ;} break; case 335: /* Line 1464 of yacc.c */ -#line 4054 "Gmsh.y" +#line 4120 "Gmsh.y" { (yyval.d) = ceil((yyvsp[(3) - (4)].d)); ;} break; case 336: /* Line 1464 of yacc.c */ -#line 4055 "Gmsh.y" +#line 4121 "Gmsh.y" { (yyval.d) = fmod((yyvsp[(3) - (6)].d), (yyvsp[(5) - (6)].d)); ;} break; case 337: /* Line 1464 of yacc.c */ -#line 4056 "Gmsh.y" +#line 4122 "Gmsh.y" { (yyval.d) = fmod((yyvsp[(3) - (6)].d), (yyvsp[(5) - (6)].d)); ;} break; case 338: /* Line 1464 of yacc.c */ -#line 4057 "Gmsh.y" +#line 4123 "Gmsh.y" { (yyval.d) = sqrt((yyvsp[(3) - (6)].d) * (yyvsp[(3) - (6)].d) + (yyvsp[(5) - (6)].d) * (yyvsp[(5) - (6)].d)); ;} break; case 339: /* Line 1464 of yacc.c */ -#line 4058 "Gmsh.y" +#line 4124 "Gmsh.y" { (yyval.d) = (yyvsp[(3) - (4)].d) * (double)rand() / (double)RAND_MAX; ;} break; case 340: /* Line 1464 of yacc.c */ -#line 4061 "Gmsh.y" +#line 4127 "Gmsh.y" { (yyval.d) = exp((yyvsp[(3) - (4)].d)); ;} break; case 341: /* Line 1464 of yacc.c */ -#line 4062 "Gmsh.y" +#line 4128 "Gmsh.y" { (yyval.d) = log((yyvsp[(3) - (4)].d)); ;} break; case 342: /* Line 1464 of yacc.c */ -#line 4063 "Gmsh.y" +#line 4129 "Gmsh.y" { (yyval.d) = log10((yyvsp[(3) - (4)].d)); ;} break; case 343: /* Line 1464 of yacc.c */ -#line 4064 "Gmsh.y" +#line 4130 "Gmsh.y" { (yyval.d) = sqrt((yyvsp[(3) - (4)].d)); ;} break; case 344: /* Line 1464 of yacc.c */ -#line 4065 "Gmsh.y" +#line 4131 "Gmsh.y" { (yyval.d) = sin((yyvsp[(3) - (4)].d)); ;} break; case 345: /* Line 1464 of yacc.c */ -#line 4066 "Gmsh.y" +#line 4132 "Gmsh.y" { (yyval.d) = asin((yyvsp[(3) - (4)].d)); ;} break; case 346: /* Line 1464 of yacc.c */ -#line 4067 "Gmsh.y" +#line 4133 "Gmsh.y" { (yyval.d) = cos((yyvsp[(3) - (4)].d)); ;} break; case 347: /* Line 1464 of yacc.c */ -#line 4068 "Gmsh.y" +#line 4134 "Gmsh.y" { (yyval.d) = acos((yyvsp[(3) - (4)].d)); ;} break; case 348: /* Line 1464 of yacc.c */ -#line 4069 "Gmsh.y" +#line 4135 "Gmsh.y" { (yyval.d) = tan((yyvsp[(3) - (4)].d)); ;} break; case 349: /* Line 1464 of yacc.c */ -#line 4070 "Gmsh.y" +#line 4136 "Gmsh.y" { (yyval.d) = atan((yyvsp[(3) - (4)].d)); ;} break; case 350: /* Line 1464 of yacc.c */ -#line 4071 "Gmsh.y" +#line 4137 "Gmsh.y" { (yyval.d) = atan2((yyvsp[(3) - (6)].d), (yyvsp[(5) - (6)].d));;} break; case 351: /* Line 1464 of yacc.c */ -#line 4072 "Gmsh.y" +#line 4138 "Gmsh.y" { (yyval.d) = sinh((yyvsp[(3) - (4)].d)); ;} break; case 352: /* Line 1464 of yacc.c */ -#line 4073 "Gmsh.y" +#line 4139 "Gmsh.y" { (yyval.d) = cosh((yyvsp[(3) - (4)].d)); ;} break; case 353: /* Line 1464 of yacc.c */ -#line 4074 "Gmsh.y" +#line 4140 "Gmsh.y" { (yyval.d) = tanh((yyvsp[(3) - (4)].d)); ;} break; case 354: /* Line 1464 of yacc.c */ -#line 4075 "Gmsh.y" +#line 4141 "Gmsh.y" { (yyval.d) = fabs((yyvsp[(3) - (4)].d)); ;} break; case 355: /* Line 1464 of yacc.c */ -#line 4076 "Gmsh.y" +#line 4142 "Gmsh.y" { (yyval.d) = floor((yyvsp[(3) - (4)].d)); ;} break; case 356: /* Line 1464 of yacc.c */ -#line 4077 "Gmsh.y" +#line 4143 "Gmsh.y" { (yyval.d) = ceil((yyvsp[(3) - (4)].d)); ;} break; case 357: /* Line 1464 of yacc.c */ -#line 4078 "Gmsh.y" +#line 4144 "Gmsh.y" { (yyval.d) = fmod((yyvsp[(3) - (6)].d), (yyvsp[(5) - (6)].d)); ;} break; case 358: /* Line 1464 of yacc.c */ -#line 4079 "Gmsh.y" +#line 4145 "Gmsh.y" { (yyval.d) = fmod((yyvsp[(3) - (6)].d), (yyvsp[(5) - (6)].d)); ;} break; case 359: /* Line 1464 of yacc.c */ -#line 4080 "Gmsh.y" +#line 4146 "Gmsh.y" { (yyval.d) = sqrt((yyvsp[(3) - (6)].d) * (yyvsp[(3) - (6)].d) + (yyvsp[(5) - (6)].d) * (yyvsp[(5) - (6)].d)); ;} break; case 360: /* Line 1464 of yacc.c */ -#line 4081 "Gmsh.y" +#line 4147 "Gmsh.y" { (yyval.d) = (yyvsp[(3) - (4)].d) * (double)rand() / (double)RAND_MAX; ;} break; case 361: /* Line 1464 of yacc.c */ -#line 4090 "Gmsh.y" +#line 4156 "Gmsh.y" { (yyval.d) = (yyvsp[(1) - (1)].d); ;} break; case 362: /* Line 1464 of yacc.c */ -#line 4091 "Gmsh.y" +#line 4157 "Gmsh.y" { (yyval.d) = 3.141592653589793; ;} break; case 363: /* Line 1464 of yacc.c */ -#line 4092 "Gmsh.y" +#line 4158 "Gmsh.y" { (yyval.d) = Msg::GetCommRank(); ;} break; case 364: /* Line 1464 of yacc.c */ -#line 4093 "Gmsh.y" +#line 4159 "Gmsh.y" { (yyval.d) = Msg::GetCommSize(); ;} break; case 365: /* Line 1464 of yacc.c */ -#line 4094 "Gmsh.y" +#line 4160 "Gmsh.y" { (yyval.d) = GetGmshMajorVersion(); ;} break; case 366: /* Line 1464 of yacc.c */ -#line 4095 "Gmsh.y" +#line 4161 "Gmsh.y" { (yyval.d) = GetGmshMinorVersion(); ;} break; case 367: /* Line 1464 of yacc.c */ -#line 4096 "Gmsh.y" +#line 4162 "Gmsh.y" { (yyval.d) = GetGmshPatchVersion(); ;} break; case 368: /* Line 1464 of yacc.c */ -#line 4101 "Gmsh.y" +#line 4167 "Gmsh.y" { if(!gmsh_yysymbols.count((yyvsp[(1) - (1)].c))){ yymsg(0, "Unknown variable '%s'", (yyvsp[(1) - (1)].c)); @@ -9675,7 +9776,7 @@ yyreduce: case 369: /* Line 1464 of yacc.c */ -#line 4122 "Gmsh.y" +#line 4188 "Gmsh.y" { char tmpstring[1024]; sprintf(tmpstring, "%s_%d", (yyvsp[(1) - (5)].c), (int)(yyvsp[(4) - (5)].d)) ; @@ -9699,7 +9800,7 @@ yyreduce: case 370: /* Line 1464 of yacc.c */ -#line 4141 "Gmsh.y" +#line 4207 "Gmsh.y" { int index = (int)(yyvsp[(3) - (4)].d); if(!gmsh_yysymbols.count((yyvsp[(1) - (4)].c))){ @@ -9722,7 +9823,7 @@ yyreduce: case 371: /* Line 1464 of yacc.c */ -#line 4159 "Gmsh.y" +#line 4225 "Gmsh.y" { if(!gmsh_yysymbols.count((yyvsp[(2) - (4)].c))){ yymsg(0, "Unknown variable '%s'", (yyvsp[(2) - (4)].c)); @@ -9739,7 +9840,7 @@ yyreduce: case 372: /* Line 1464 of yacc.c */ -#line 4171 "Gmsh.y" +#line 4237 "Gmsh.y" { if(!gmsh_yysymbols.count((yyvsp[(1) - (2)].c))){ yymsg(0, "Unknown variable '%s'", (yyvsp[(1) - (2)].c)); @@ -9761,7 +9862,7 @@ yyreduce: case 373: /* Line 1464 of yacc.c */ -#line 4188 "Gmsh.y" +#line 4254 "Gmsh.y" { int index = (int)(yyvsp[(3) - (5)].d); if(!gmsh_yysymbols.count((yyvsp[(1) - (5)].c))){ @@ -9784,7 +9885,7 @@ yyreduce: case 374: /* Line 1464 of yacc.c */ -#line 4209 "Gmsh.y" +#line 4275 "Gmsh.y" { NumberOption(GMSH_GET, (yyvsp[(1) - (3)].c), 0, (yyvsp[(3) - (3)].c), (yyval.d)); Free((yyvsp[(1) - (3)].c)); Free((yyvsp[(3) - (3)].c)); @@ -9794,7 +9895,7 @@ yyreduce: case 375: /* Line 1464 of yacc.c */ -#line 4214 "Gmsh.y" +#line 4280 "Gmsh.y" { NumberOption(GMSH_GET, (yyvsp[(1) - (6)].c), (int)(yyvsp[(3) - (6)].d), (yyvsp[(6) - (6)].c), (yyval.d)); Free((yyvsp[(1) - (6)].c)); Free((yyvsp[(6) - (6)].c)); @@ -9804,7 +9905,7 @@ yyreduce: case 376: /* Line 1464 of yacc.c */ -#line 4219 "Gmsh.y" +#line 4285 "Gmsh.y" { double d = 0.; if(NumberOption(GMSH_GET, (yyvsp[(1) - (4)].c), 0, (yyvsp[(3) - (4)].c), d)){ @@ -9819,7 +9920,7 @@ yyreduce: case 377: /* Line 1464 of yacc.c */ -#line 4229 "Gmsh.y" +#line 4295 "Gmsh.y" { double d = 0.; if(NumberOption(GMSH_GET, (yyvsp[(1) - (7)].c), (int)(yyvsp[(3) - (7)].d), (yyvsp[(6) - (7)].c), d)){ @@ -9834,7 +9935,7 @@ yyreduce: case 378: /* Line 1464 of yacc.c */ -#line 4239 "Gmsh.y" +#line 4305 "Gmsh.y" { (yyval.d) = Msg::GetValue((yyvsp[(3) - (6)].c), (yyvsp[(5) - (6)].d)); Free((yyvsp[(3) - (6)].c)); @@ -9844,7 +9945,7 @@ yyreduce: case 379: /* Line 1464 of yacc.c */ -#line 4244 "Gmsh.y" +#line 4310 "Gmsh.y" { std::string s((yyvsp[(3) - (6)].c)), substr((yyvsp[(5) - (6)].c)); if(s.find(substr) != std::string::npos) @@ -9858,7 +9959,7 @@ yyreduce: case 380: /* Line 1464 of yacc.c */ -#line 4253 "Gmsh.y" +#line 4319 "Gmsh.y" { int align = 0, font = 0, fontsize = CTX::instance()->glFontSize; if(List_Nbr((yyvsp[(3) - (4)].l)) % 2){ @@ -9887,7 +9988,7 @@ yyreduce: case 381: /* Line 1464 of yacc.c */ -#line 4280 "Gmsh.y" +#line 4346 "Gmsh.y" { memcpy((yyval.v), (yyvsp[(1) - (1)].v), 5*sizeof(double)); ;} @@ -9896,7 +9997,7 @@ yyreduce: case 382: /* Line 1464 of yacc.c */ -#line 4284 "Gmsh.y" +#line 4350 "Gmsh.y" { for(int i = 0; i < 5; i++) (yyval.v)[i] = -(yyvsp[(2) - (2)].v)[i]; ;} @@ -9905,7 +10006,7 @@ yyreduce: case 383: /* Line 1464 of yacc.c */ -#line 4288 "Gmsh.y" +#line 4354 "Gmsh.y" { for(int i = 0; i < 5; i++) (yyval.v)[i] = (yyvsp[(2) - (2)].v)[i]; ;} @@ -9914,7 +10015,7 @@ yyreduce: case 384: /* Line 1464 of yacc.c */ -#line 4292 "Gmsh.y" +#line 4358 "Gmsh.y" { for(int i = 0; i < 5; i++) (yyval.v)[i] = (yyvsp[(1) - (3)].v)[i] - (yyvsp[(3) - (3)].v)[i]; ;} @@ -9923,7 +10024,7 @@ yyreduce: case 385: /* Line 1464 of yacc.c */ -#line 4296 "Gmsh.y" +#line 4362 "Gmsh.y" { for(int i = 0; i < 5; i++) (yyval.v)[i] = (yyvsp[(1) - (3)].v)[i] + (yyvsp[(3) - (3)].v)[i]; ;} @@ -9932,7 +10033,7 @@ yyreduce: case 386: /* Line 1464 of yacc.c */ -#line 4303 "Gmsh.y" +#line 4369 "Gmsh.y" { (yyval.v)[0] = (yyvsp[(2) - (11)].d); (yyval.v)[1] = (yyvsp[(4) - (11)].d); (yyval.v)[2] = (yyvsp[(6) - (11)].d); (yyval.v)[3] = (yyvsp[(8) - (11)].d); (yyval.v)[4] = (yyvsp[(10) - (11)].d); ;} @@ -9941,7 +10042,7 @@ yyreduce: case 387: /* Line 1464 of yacc.c */ -#line 4307 "Gmsh.y" +#line 4373 "Gmsh.y" { (yyval.v)[0] = (yyvsp[(2) - (9)].d); (yyval.v)[1] = (yyvsp[(4) - (9)].d); (yyval.v)[2] = (yyvsp[(6) - (9)].d); (yyval.v)[3] = (yyvsp[(8) - (9)].d); (yyval.v)[4] = 1.0; ;} @@ -9950,7 +10051,7 @@ yyreduce: case 388: /* Line 1464 of yacc.c */ -#line 4311 "Gmsh.y" +#line 4377 "Gmsh.y" { (yyval.v)[0] = (yyvsp[(2) - (7)].d); (yyval.v)[1] = (yyvsp[(4) - (7)].d); (yyval.v)[2] = (yyvsp[(6) - (7)].d); (yyval.v)[3] = 0.0; (yyval.v)[4] = 1.0; ;} @@ -9959,7 +10060,7 @@ yyreduce: case 389: /* Line 1464 of yacc.c */ -#line 4315 "Gmsh.y" +#line 4381 "Gmsh.y" { (yyval.v)[0] = (yyvsp[(2) - (7)].d); (yyval.v)[1] = (yyvsp[(4) - (7)].d); (yyval.v)[2] = (yyvsp[(6) - (7)].d); (yyval.v)[3] = 0.0; (yyval.v)[4] = 1.0; ;} @@ -9968,7 +10069,7 @@ yyreduce: case 390: /* Line 1464 of yacc.c */ -#line 4322 "Gmsh.y" +#line 4388 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(List_T*)); List_Add((yyval.l), &((yyvsp[(1) - (1)].l))); @@ -9978,7 +10079,7 @@ yyreduce: case 391: /* Line 1464 of yacc.c */ -#line 4327 "Gmsh.y" +#line 4393 "Gmsh.y" { List_Add((yyval.l), &((yyvsp[(3) - (3)].l))); ;} @@ -9987,7 +10088,7 @@ yyreduce: case 392: /* Line 1464 of yacc.c */ -#line 4334 "Gmsh.y" +#line 4400 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(double)); List_Add((yyval.l), &((yyvsp[(1) - (1)].d))); @@ -9997,7 +10098,7 @@ yyreduce: case 393: /* Line 1464 of yacc.c */ -#line 4339 "Gmsh.y" +#line 4405 "Gmsh.y" { (yyval.l) = (yyvsp[(1) - (1)].l); ;} @@ -10006,7 +10107,7 @@ yyreduce: case 394: /* Line 1464 of yacc.c */ -#line 4343 "Gmsh.y" +#line 4409 "Gmsh.y" { // creates an empty list (yyval.l) = List_Create(2, 1, sizeof(double)); @@ -10016,7 +10117,7 @@ yyreduce: case 395: /* Line 1464 of yacc.c */ -#line 4348 "Gmsh.y" +#line 4414 "Gmsh.y" { (yyval.l) = (yyvsp[(2) - (3)].l); ;} @@ -10025,7 +10126,7 @@ yyreduce: case 396: /* Line 1464 of yacc.c */ -#line 4352 "Gmsh.y" +#line 4418 "Gmsh.y" { (yyval.l) = (yyvsp[(3) - (4)].l); for(int i = 0; i < List_Nbr((yyval.l)); i++){ @@ -10038,7 +10139,7 @@ yyreduce: case 397: /* Line 1464 of yacc.c */ -#line 4360 "Gmsh.y" +#line 4426 "Gmsh.y" { (yyval.l) = (yyvsp[(4) - (5)].l); for(int i = 0; i < List_Nbr((yyval.l)); i++){ @@ -10051,7 +10152,7 @@ yyreduce: case 398: /* Line 1464 of yacc.c */ -#line 4371 "Gmsh.y" +#line 4437 "Gmsh.y" { (yyval.l) = (yyvsp[(1) - (1)].l); ;} @@ -10060,7 +10161,7 @@ yyreduce: case 399: /* Line 1464 of yacc.c */ -#line 4375 "Gmsh.y" +#line 4441 "Gmsh.y" { if(!strcmp((yyvsp[(1) - (1)].c), "*") || !strcmp((yyvsp[(1) - (1)].c), "all")) (yyval.l) = 0; @@ -10074,7 +10175,7 @@ yyreduce: case 400: /* Line 1464 of yacc.c */ -#line 4387 "Gmsh.y" +#line 4453 "Gmsh.y" { (yyval.l) = (yyvsp[(2) - (2)].l); for(int i = 0; i < List_Nbr((yyval.l)); i++){ @@ -10087,7 +10188,7 @@ yyreduce: case 401: /* Line 1464 of yacc.c */ -#line 4395 "Gmsh.y" +#line 4461 "Gmsh.y" { (yyval.l) = (yyvsp[(3) - (3)].l); for(int i = 0; i < List_Nbr((yyval.l)); i++){ @@ -10100,7 +10201,7 @@ yyreduce: case 402: /* Line 1464 of yacc.c */ -#line 4403 "Gmsh.y" +#line 4469 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(double)); for(double d = (yyvsp[(1) - (3)].d); ((yyvsp[(1) - (3)].d) < (yyvsp[(3) - (3)].d)) ? (d <= (yyvsp[(3) - (3)].d)) : (d >= (yyvsp[(3) - (3)].d)); @@ -10112,7 +10213,7 @@ yyreduce: case 403: /* Line 1464 of yacc.c */ -#line 4410 "Gmsh.y" +#line 4476 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(double)); if(!(yyvsp[(5) - (5)].d)){ //|| ($1 < $3 && $5 < 0) || ($1 > $3 && $5 > 0) @@ -10127,7 +10228,7 @@ yyreduce: case 404: /* Line 1464 of yacc.c */ -#line 4420 "Gmsh.y" +#line 4486 "Gmsh.y" { // Returns the coordinates of a point and fills a list with it. // This allows to ensure e.g. that relative point positions are @@ -10152,7 +10253,7 @@ yyreduce: case 405: /* Line 1464 of yacc.c */ -#line 4440 "Gmsh.y" +#line 4506 "Gmsh.y" { (yyval.l) = GetAllEntityNumbers(0); ;} @@ -10161,7 +10262,7 @@ yyreduce: case 406: /* Line 1464 of yacc.c */ -#line 4444 "Gmsh.y" +#line 4510 "Gmsh.y" { (yyval.l) = GetAllEntityNumbers(1); ;} @@ -10170,7 +10271,7 @@ yyreduce: case 407: /* Line 1464 of yacc.c */ -#line 4448 "Gmsh.y" +#line 4514 "Gmsh.y" { (yyval.l) = GetAllEntityNumbers(2); ;} @@ -10179,7 +10280,7 @@ yyreduce: case 408: /* Line 1464 of yacc.c */ -#line 4452 "Gmsh.y" +#line 4518 "Gmsh.y" { (yyval.l) = GetAllEntityNumbers(3); ;} @@ -10188,7 +10289,7 @@ yyreduce: case 409: /* Line 1464 of yacc.c */ -#line 4456 "Gmsh.y" +#line 4522 "Gmsh.y" { (yyval.l) = List_Create(10, 1, sizeof(double)); for(int i = 0; i < List_Nbr((yyvsp[(4) - (5)].l)); i++){ @@ -10222,7 +10323,7 @@ yyreduce: case 410: /* Line 1464 of yacc.c */ -#line 4485 "Gmsh.y" +#line 4551 "Gmsh.y" { (yyval.l) = List_Create(10, 1, sizeof(double)); for(int i = 0; i < List_Nbr((yyvsp[(4) - (5)].l)); i++){ @@ -10256,7 +10357,7 @@ yyreduce: case 411: /* Line 1464 of yacc.c */ -#line 4514 "Gmsh.y" +#line 4580 "Gmsh.y" { (yyval.l) = List_Create(10, 1, sizeof(double)); for(int i = 0; i < List_Nbr((yyvsp[(4) - (5)].l)); i++){ @@ -10290,7 +10391,7 @@ yyreduce: case 412: /* Line 1464 of yacc.c */ -#line 4543 "Gmsh.y" +#line 4609 "Gmsh.y" { (yyval.l) = List_Create(10, 1, sizeof(double)); for(int i = 0; i < List_Nbr((yyvsp[(4) - (5)].l)); i++){ @@ -10324,7 +10425,7 @@ yyreduce: case 413: /* Line 1464 of yacc.c */ -#line 4572 "Gmsh.y" +#line 4638 "Gmsh.y" { (yyval.l) = List_Create(List_Nbr((yyvsp[(1) - (1)].l)), 1, sizeof(double)); for(int i = 0; i < List_Nbr((yyvsp[(1) - (1)].l)); i++){ @@ -10339,7 +10440,7 @@ yyreduce: case 414: /* Line 1464 of yacc.c */ -#line 4582 "Gmsh.y" +#line 4648 "Gmsh.y" { (yyval.l) = List_Create(List_Nbr((yyvsp[(1) - (1)].l)), 1, sizeof(double)); for(int i = 0; i < List_Nbr((yyvsp[(1) - (1)].l)); i++){ @@ -10354,7 +10455,7 @@ yyreduce: case 415: /* Line 1464 of yacc.c */ -#line 4592 "Gmsh.y" +#line 4658 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(double)); if(!gmsh_yysymbols.count((yyvsp[(1) - (3)].c))) @@ -10371,7 +10472,7 @@ yyreduce: case 416: /* Line 1464 of yacc.c */ -#line 4605 "Gmsh.y" +#line 4671 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(double)); if(!gmsh_yysymbols.count((yyvsp[(1) - (3)].c))) @@ -10388,7 +10489,7 @@ yyreduce: case 417: /* Line 1464 of yacc.c */ -#line 4617 "Gmsh.y" +#line 4683 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(double)); if(!gmsh_yysymbols.count((yyvsp[(3) - (4)].c))) @@ -10405,7 +10506,7 @@ yyreduce: case 418: /* Line 1464 of yacc.c */ -#line 4629 "Gmsh.y" +#line 4695 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(double)); if(!gmsh_yysymbols.count((yyvsp[(1) - (6)].c))) @@ -10428,7 +10529,7 @@ yyreduce: case 419: /* Line 1464 of yacc.c */ -#line 4648 "Gmsh.y" +#line 4714 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(double)); if(!gmsh_yysymbols.count((yyvsp[(1) - (6)].c))) @@ -10451,7 +10552,7 @@ yyreduce: case 420: /* Line 1464 of yacc.c */ -#line 4669 "Gmsh.y" +#line 4735 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(double)); List_Add((yyval.l), &((yyvsp[(1) - (1)].d))); @@ -10461,7 +10562,7 @@ yyreduce: case 421: /* Line 1464 of yacc.c */ -#line 4674 "Gmsh.y" +#line 4740 "Gmsh.y" { (yyval.l) = (yyvsp[(1) - (1)].l); ;} @@ -10470,7 +10571,7 @@ yyreduce: case 422: /* Line 1464 of yacc.c */ -#line 4678 "Gmsh.y" +#line 4744 "Gmsh.y" { List_Add((yyval.l), &((yyvsp[(3) - (3)].d))); ;} @@ -10479,7 +10580,7 @@ yyreduce: case 423: /* Line 1464 of yacc.c */ -#line 4682 "Gmsh.y" +#line 4748 "Gmsh.y" { for(int i = 0; i < List_Nbr((yyvsp[(3) - (3)].l)); i++){ double d; @@ -10493,7 +10594,7 @@ yyreduce: case 424: /* Line 1464 of yacc.c */ -#line 4694 "Gmsh.y" +#line 4760 "Gmsh.y" { (yyval.u) = CTX::instance()->packColor((int)(yyvsp[(2) - (9)].d), (int)(yyvsp[(4) - (9)].d), (int)(yyvsp[(6) - (9)].d), (int)(yyvsp[(8) - (9)].d)); ;} @@ -10502,7 +10603,7 @@ yyreduce: case 425: /* Line 1464 of yacc.c */ -#line 4698 "Gmsh.y" +#line 4764 "Gmsh.y" { (yyval.u) = CTX::instance()->packColor((int)(yyvsp[(2) - (7)].d), (int)(yyvsp[(4) - (7)].d), (int)(yyvsp[(6) - (7)].d), 255); ;} @@ -10511,7 +10612,7 @@ yyreduce: case 426: /* Line 1464 of yacc.c */ -#line 4710 "Gmsh.y" +#line 4776 "Gmsh.y" { int flag; (yyval.u) = GetColorForString(-1, (yyvsp[(1) - (1)].c), &flag); @@ -10523,7 +10624,7 @@ yyreduce: case 427: /* Line 1464 of yacc.c */ -#line 4717 "Gmsh.y" +#line 4783 "Gmsh.y" { unsigned int val = 0; ColorOption(GMSH_GET, (yyvsp[(1) - (5)].c), 0, (yyvsp[(5) - (5)].c), val); @@ -10535,7 +10636,7 @@ yyreduce: case 428: /* Line 1464 of yacc.c */ -#line 4727 "Gmsh.y" +#line 4793 "Gmsh.y" { (yyval.l) = (yyvsp[(2) - (3)].l); ;} @@ -10544,7 +10645,7 @@ yyreduce: case 429: /* Line 1464 of yacc.c */ -#line 4731 "Gmsh.y" +#line 4797 "Gmsh.y" { (yyval.l) = List_Create(256, 10, sizeof(unsigned int)); GmshColorTable *ct = GetColorTable((int)(yyvsp[(3) - (6)].d)); @@ -10561,7 +10662,7 @@ yyreduce: case 430: /* Line 1464 of yacc.c */ -#line 4746 "Gmsh.y" +#line 4812 "Gmsh.y" { (yyval.l) = List_Create(256, 10, sizeof(unsigned int)); List_Add((yyval.l), &((yyvsp[(1) - (1)].u))); @@ -10571,7 +10672,7 @@ yyreduce: case 431: /* Line 1464 of yacc.c */ -#line 4751 "Gmsh.y" +#line 4817 "Gmsh.y" { List_Add((yyval.l), &((yyvsp[(3) - (3)].u))); ;} @@ -10580,7 +10681,7 @@ yyreduce: case 432: /* Line 1464 of yacc.c */ -#line 4758 "Gmsh.y" +#line 4824 "Gmsh.y" { (yyval.c) = (yyvsp[(1) - (1)].c); ;} @@ -10589,7 +10690,7 @@ yyreduce: case 433: /* Line 1464 of yacc.c */ -#line 4762 "Gmsh.y" +#line 4828 "Gmsh.y" { if(!gmsh_yystringsymbols.count((yyvsp[(1) - (1)].c))){ yymsg(0, "Unknown string variable '%s'", (yyvsp[(1) - (1)].c)); @@ -10607,7 +10708,7 @@ yyreduce: case 434: /* Line 1464 of yacc.c */ -#line 4775 "Gmsh.y" +#line 4841 "Gmsh.y" { std::string out; StringOption(GMSH_GET, (yyvsp[(1) - (3)].c), 0, (yyvsp[(3) - (3)].c), out); @@ -10620,7 +10721,7 @@ yyreduce: case 435: /* Line 1464 of yacc.c */ -#line 4783 "Gmsh.y" +#line 4849 "Gmsh.y" { std::string out; StringOption(GMSH_GET, (yyvsp[(1) - (6)].c), (int)(yyvsp[(3) - (6)].d), (yyvsp[(6) - (6)].c), out); @@ -10633,7 +10734,7 @@ yyreduce: case 436: /* Line 1464 of yacc.c */ -#line 4794 "Gmsh.y" +#line 4860 "Gmsh.y" { (yyval.c) = (yyvsp[(1) - (1)].c); ;} @@ -10642,7 +10743,7 @@ yyreduce: case 437: /* Line 1464 of yacc.c */ -#line 4798 "Gmsh.y" +#line 4864 "Gmsh.y" { (yyval.c) = (char *)Malloc(32 * sizeof(char)); time_t now; @@ -10655,7 +10756,7 @@ yyreduce: case 438: /* Line 1464 of yacc.c */ -#line 4806 "Gmsh.y" +#line 4872 "Gmsh.y" { const char *env = GetEnvironmentVar((yyvsp[(3) - (4)].c)); if(!env) env = ""; @@ -10668,7 +10769,7 @@ yyreduce: case 439: /* Line 1464 of yacc.c */ -#line 4814 "Gmsh.y" +#line 4880 "Gmsh.y" { std::string s = Msg::GetString((yyvsp[(3) - (6)].c), (yyvsp[(5) - (6)].c)); (yyval.c) = (char *)Malloc((s.size() + 1) * sizeof(char)); @@ -10681,7 +10782,7 @@ yyreduce: case 440: /* Line 1464 of yacc.c */ -#line 4822 "Gmsh.y" +#line 4888 "Gmsh.y" { (yyval.c) = (char *)Malloc((strlen((yyvsp[(3) - (6)].c)) + strlen((yyvsp[(5) - (6)].c)) + 1) * sizeof(char)); strcpy((yyval.c), (yyvsp[(3) - (6)].c)); @@ -10694,7 +10795,7 @@ yyreduce: case 441: /* Line 1464 of yacc.c */ -#line 4830 "Gmsh.y" +#line 4896 "Gmsh.y" { (yyval.c) = (char *)Malloc((strlen((yyvsp[(3) - (4)].c)) + 1) * sizeof(char)); int i; @@ -10713,7 +10814,7 @@ yyreduce: case 442: /* Line 1464 of yacc.c */ -#line 4844 "Gmsh.y" +#line 4910 "Gmsh.y" { (yyval.c) = (char *)Malloc((strlen((yyvsp[(3) - (4)].c)) + 1) * sizeof(char)); int i; @@ -10732,7 +10833,7 @@ yyreduce: case 443: /* Line 1464 of yacc.c */ -#line 4858 "Gmsh.y" +#line 4924 "Gmsh.y" { (yyval.c) = (yyvsp[(3) - (4)].c); ;} @@ -10741,7 +10842,7 @@ yyreduce: case 444: /* Line 1464 of yacc.c */ -#line 4862 "Gmsh.y" +#line 4928 "Gmsh.y" { char tmpstring[5000]; int i = PrintListOfDouble((yyvsp[(3) - (6)].c), (yyvsp[(5) - (6)].l), tmpstring); @@ -10765,7 +10866,7 @@ yyreduce: case 445: /* Line 1464 of yacc.c */ -#line 4884 "Gmsh.y" +#line 4950 "Gmsh.y" { (yyval.l) = List_Create(20,20,sizeof(char*)); List_Add((yyval.l), &((yyvsp[(1) - (1)].c))); @@ -10775,14 +10876,14 @@ yyreduce: case 446: /* Line 1464 of yacc.c */ -#line 4889 "Gmsh.y" +#line 4955 "Gmsh.y" { List_Add((yyval.l), &((yyvsp[(3) - (3)].c))); ;} break; /* Line 1464 of yacc.c */ -#line 10786 "Gmsh.tab.cpp" +#line 10887 "Gmsh.tab.cpp" default: break; } YY_SYMBOL_PRINT ("-> $$ =", yyr1[yyn], &yyval, &yyloc); @@ -10994,7 +11095,7 @@ yyreturn: /* Line 1684 of yacc.c */ -#line 4892 "Gmsh.y" +#line 4958 "Gmsh.y" int PrintListOfDouble(char *format, List_T *list, char *buffer) diff --git a/Parser/Gmsh.tab.hpp b/Parser/Gmsh.tab.hpp index 40697ad77572f26965940b957fc3be0a0842368d..6a62baf45882853599d8e4303a8feacc3bc4b007 100644 --- a/Parser/Gmsh.tab.hpp +++ b/Parser/Gmsh.tab.hpp @@ -124,62 +124,63 @@ tCoherence = 341, tIntersect = 342, tMeshAlgorithm = 343, - tLayers = 344, - tHole = 345, - tAlias = 346, - tAliasWithOptions = 347, - tQuadTriDbl = 348, - tQuadTriSngl = 349, - tRecombLaterals = 350, - tTransfQuadTri = 351, - tText2D = 352, - tText3D = 353, - tInterpolationScheme = 354, - tTime = 355, - tCombine = 356, - tBSpline = 357, - tBezier = 358, - tNurbs = 359, - tNurbsOrder = 360, - tNurbsKnots = 361, - tColor = 362, - tColorTable = 363, - tFor = 364, - tIn = 365, - tEndFor = 366, - tIf = 367, - tEndIf = 368, - tExit = 369, - tAbort = 370, - tField = 371, - tReturn = 372, - tCall = 373, - tFunction = 374, - tShow = 375, - tHide = 376, - tGetValue = 377, - tGetEnv = 378, - tGetString = 379, - tHomology = 380, - tCohomology = 381, - tBetti = 382, - tSetOrder = 383, - tGMSH_MAJOR_VERSION = 384, - tGMSH_MINOR_VERSION = 385, - tGMSH_PATCH_VERSION = 386, - tAFFECTDIVIDE = 387, - tAFFECTTIMES = 388, - tAFFECTMINUS = 389, - tAFFECTPLUS = 390, - tOR = 391, - tAND = 392, - tNOTEQUAL = 393, - tEQUAL = 394, - tGREATEROREQUAL = 395, - tLESSOREQUAL = 396, - UNARYPREC = 397, - tMINUSMINUS = 398, - tPLUSPLUS = 399 + tReverse = 344, + tLayers = 345, + tHole = 346, + tAlias = 347, + tAliasWithOptions = 348, + tQuadTriDbl = 349, + tQuadTriSngl = 350, + tRecombLaterals = 351, + tTransfQuadTri = 352, + tText2D = 353, + tText3D = 354, + tInterpolationScheme = 355, + tTime = 356, + tCombine = 357, + tBSpline = 358, + tBezier = 359, + tNurbs = 360, + tNurbsOrder = 361, + tNurbsKnots = 362, + tColor = 363, + tColorTable = 364, + tFor = 365, + tIn = 366, + tEndFor = 367, + tIf = 368, + tEndIf = 369, + tExit = 370, + tAbort = 371, + tField = 372, + tReturn = 373, + tCall = 374, + tFunction = 375, + tShow = 376, + tHide = 377, + tGetValue = 378, + tGetEnv = 379, + tGetString = 380, + tHomology = 381, + tCohomology = 382, + tBetti = 383, + tSetOrder = 384, + tGMSH_MAJOR_VERSION = 385, + tGMSH_MINOR_VERSION = 386, + tGMSH_PATCH_VERSION = 387, + tAFFECTDIVIDE = 388, + tAFFECTTIMES = 389, + tAFFECTMINUS = 390, + tAFFECTPLUS = 391, + tOR = 392, + tAND = 393, + tNOTEQUAL = 394, + tEQUAL = 395, + tGREATEROREQUAL = 396, + tLESSOREQUAL = 397, + UNARYPREC = 398, + tMINUSMINUS = 399, + tPLUSPLUS = 400 }; #endif @@ -203,7 +204,7 @@ typedef union YYSTYPE /* Line 1685 of yacc.c */ -#line 207 "Gmsh.tab.hpp" +#line 208 "Gmsh.tab.hpp" } YYSTYPE; # define YYSTYPE_IS_TRIVIAL 1 # define yystype YYSTYPE /* obsolescent; will be withdrawn */ diff --git a/Parser/Gmsh.y b/Parser/Gmsh.y index d8c7180b82651623e076e86a397dad82a91a2577..ae3bbef3e06909d973582e5f2c21e67c0e65086e 100644 --- a/Parser/Gmsh.y +++ b/Parser/Gmsh.y @@ -116,7 +116,8 @@ struct doubleXstring{ %token tPlane tRuled tTransfinite tComplex tPhysical tCompound tPeriodic %token tUsing tPlugin tDegenerated %token tRotate tTranslate tSymmetry tDilate tExtrude tLevelset -%token tRecombine tSmoother tSplit tDelete tCoherence tIntersect tMeshAlgorithm +%token tRecombine tSmoother tSplit tDelete tCoherence +%token tIntersect tMeshAlgorithm tReverse %token tLayers tHole tAlias tAliasWithOptions %token tQuadTriDbl tQuadTriSngl tRecombLaterals tTransfQuadTri %token tText2D tText3D tInterpolationScheme tTime tCombine @@ -184,9 +185,7 @@ GeoFormatItem : | Colorify { return 1; } | Visibility { return 1; } | Extrude { List_Delete($1); return 1; } - | Transfinite { return 1; } - | Periodic { return 1; } - | Embedding { return 1; } + | Constraints { return 1; } | Coherence { return 1; } | Loop { return 1; } | Command { return 1; } @@ -3351,7 +3350,7 @@ ExtrudeParameter : } ; -// T R A N S F I N I T E , R E C O M B I N E & S M O O T H I N G +// M E S H I N G C O N S T R A I N T S ( T R A N S F I N I T E , . . . ) TransfiniteType : { @@ -3407,7 +3406,7 @@ RecombineAngle : } ; -Transfinite : +Constraints : tTransfinite tLine ListOfDoubleOrAll tAFFECT FExpr TransfiniteType tEND { int type = (int)$6[0]; @@ -3427,7 +3426,7 @@ Transfinite : else{ for(GModel::eiter it = GModel::current()->firstEdge(); it != GModel::current()->lastEdge(); it++){ - (*it)->meshAttributes.Method = MESH_TRANSFINITE; + (*it)->meshAttributes.method = MESH_TRANSFINITE; (*it)->meshAttributes.nbPointsTransfinite = ($5 > 2) ? (int)$5 : 2; (*it)->meshAttributes.typeTransfinite = type; (*it)->meshAttributes.coeffTransfinite = coef; @@ -3451,7 +3450,7 @@ Transfinite : else{ GEdge *ge = GModel::current()->getEdgeByTag(sign * j); if(ge){ - ge->meshAttributes.Method = MESH_TRANSFINITE; + ge->meshAttributes.method = MESH_TRANSFINITE; ge->meshAttributes.nbPointsTransfinite = ($5 > 2) ? (int)$5 : 2; ge->meshAttributes.typeTransfinite = type * sign(d); ge->meshAttributes.coeffTransfinite = coef; @@ -3485,7 +3484,7 @@ Transfinite : else{ for(GModel::fiter it = GModel::current()->firstFace(); it != GModel::current()->lastFace(); it++){ - (*it)->meshAttributes.Method = MESH_TRANSFINITE; + (*it)->meshAttributes.method = MESH_TRANSFINITE; (*it)->meshAttributes.transfiniteArrangement = $5; } } @@ -3513,7 +3512,7 @@ Transfinite : else{ GFace *gf = GModel::current()->getFaceByTag((int)d); if(gf){ - gf->meshAttributes.Method = MESH_TRANSFINITE; + gf->meshAttributes.method = MESH_TRANSFINITE; gf->meshAttributes.transfiniteArrangement = $5; for(int j = 0; j < k; j++){ double p; @@ -3560,7 +3559,7 @@ Transfinite : else{ for(GModel::riter it = GModel::current()->firstRegion(); it != GModel::current()->lastRegion(); it++){ - (*it)->meshAttributes.Method = MESH_TRANSFINITE; + (*it)->meshAttributes.method = MESH_TRANSFINITE; } } List_Delete(tmp); @@ -3586,7 +3585,7 @@ Transfinite : else{ GRegion *gr = GModel::current()->getRegionByTag((int)d); if(gr){ - gr->meshAttributes.Method = MESH_TRANSFINITE; + gr->meshAttributes.method = MESH_TRANSFINITE; for(int i = 0; i < k; i++){ double p; List_Read($4, i, &p); @@ -3650,7 +3649,6 @@ Transfinite : CTX::instance()->mesh.algo2d_per_face[(int)d] = (int)$6; } } - | tRecombine tSurface ListOfDoubleOrAll RecombineAngle tEND { if(!$3){ @@ -3753,12 +3751,7 @@ Transfinite : } List_Delete($3); } -; - -// P E R I O D I C M E S H I N G C O N S T R A I N T S - -Periodic : - tPeriodic tLine ListOfDouble tAFFECT ListOfDouble tEND + | tPeriodic tLine ListOfDouble tAFFECT ListOfDouble tEND { if(List_Nbr($5) != List_Nbr($3)){ yymsg(0, "Number of master (%d) different from number of slave (%d) lines", @@ -3825,14 +3818,7 @@ Periodic : List_Delete($5); List_Delete($10); } -; - - -// E M B E D D I N G C U R V E S A N D P O I N T S I N T O S U R F A C E S -// A N D V O L U M E S - -Embedding : - tPoint '{' RecursiveListOfDouble '}' tIn tSurface '{' FExpr '}' tEND + | tPoint '{' RecursiveListOfDouble '}' tIn tSurface '{' FExpr '}' tEND { Surface *s = FindSurface((int)$8); if(s){ @@ -3880,9 +3866,89 @@ Embedding : } | tLine '{' RecursiveListOfDouble '}' tIn tVolume '{' FExpr '}' tEND { + Msg::Error("Line in Volume not implemented yet"); } | tSurface '{' RecursiveListOfDouble '}' tIn tVolume '{' FExpr '}' tEND { + Msg::Error("Surface in Volume not implemented yet"); + } + | tReverse tSurface ListOfDoubleOrAll tEND + { + if(!$3){ + List_T *tmp = Tree2List(GModel::current()->getGEOInternals()->Surfaces); + if(List_Nbr(tmp)){ + for(int i = 0; i < List_Nbr(tmp); i++){ + Surface *s; + List_Read(tmp, i, &s); + s->ReverseMesh = 1; + } + } + else{ + for(GModel::fiter it = GModel::current()->firstFace(); + it != GModel::current()->lastFace(); it++){ + (*it)->meshAttributes.reverseMesh = 1; + } + } + List_Delete(tmp); + } + else{ + for(int i = 0; i < List_Nbr($3); i++){ + double d; + List_Read($3, i, &d); + Surface *s = FindSurface((int)d); + if(s){ + s->ReverseMesh = 1; + } + else{ + GFace *gf = GModel::current()->getFaceByTag((int)d); + if(gf){ + gf->meshAttributes.reverseMesh = 1; + } + else + yymsg(1, "Unknown surface %d", (int)d); + } + } + List_Delete($3); + } + } + | tReverse tLine ListOfDoubleOrAll tEND + { + if(!$3){ + List_T *tmp = Tree2List(GModel::current()->getGEOInternals()->Curves); + if(List_Nbr(tmp)){ + for(int i = 0; i < List_Nbr(tmp); i++){ + Curve *c; + List_Read(tmp, i, &c); + c->ReverseMesh = 1; + } + } + else{ + for(GModel::eiter it = GModel::current()->firstEdge(); + it != GModel::current()->lastEdge(); it++){ + (*it)->meshAttributes.reverseMesh = 1; + } + } + List_Delete(tmp); + } + else{ + for(int i = 0; i < List_Nbr($3); i++){ + double d; + List_Read($3, i, &d); + Curve *c = FindCurve((int)d); + if(c){ + c->ReverseMesh = 1; + } + else{ + GEdge *ge = GModel::current()->getEdgeByTag((int)d); + if(ge){ + ge->meshAttributes.reverseMesh = 1; + } + else + yymsg(1, "Unknown surface %d", (int)d); + } + } + List_Delete($3); + } } ; diff --git a/Parser/Gmsh.yy.cpp b/Parser/Gmsh.yy.cpp index d0e876f5972c41b115c37e3f8bc9377afa530413..accf9fc582a62ac58acd8878dc330207fba317c3 100644 --- a/Parser/Gmsh.yy.cpp +++ b/Parser/Gmsh.yy.cpp @@ -380,8 +380,8 @@ static void yy_fatal_error (yyconst char msg[] ); *yy_cp = '\0'; \ (yy_c_buf_p) = yy_cp; -#define YY_NUM_RULES 165 -#define YY_END_OF_BUFFER 166 +#define YY_NUM_RULES 166 +#define YY_END_OF_BUFFER 167 /* This struct is not used in this scanner, but its presence is necessary. */ struct yy_trans_info @@ -389,91 +389,92 @@ struct yy_trans_info flex_int32_t yy_verify; flex_int32_t yy_nxt; }; -static yyconst flex_int16_t yy_accept[759] = +static yyconst flex_int16_t yy_accept[764] = { 0, - 0, 0, 166, 164, 1, 1, 164, 5, 164, 6, - 164, 164, 164, 164, 164, 159, 21, 2, 164, 16, - 164, 163, 163, 163, 163, 163, 163, 163, 163, 163, - 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, - 163, 163, 163, 163, 164, 28, 24, 19, 25, 17, - 26, 18, 0, 161, 3, 4, 20, 160, 159, 0, - 29, 27, 30, 163, 163, 163, 163, 163, 163, 163, - 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, - 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, - 163, 163, 163, 163, 163, 163, 163, 163, 163, 95, - - 94, 163, 163, 163, 163, 163, 163, 163, 163, 163, - 163, 163, 163, 163, 114, 163, 163, 163, 163, 163, - 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, - 163, 163, 147, 148, 163, 163, 163, 163, 163, 163, - 163, 163, 23, 22, 0, 160, 0, 0, 162, 163, - 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, - 163, 163, 163, 163, 163, 163, 163, 163, 52, 163, - 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, - 68, 163, 163, 163, 163, 163, 82, 163, 163, 163, - 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, - - 163, 163, 102, 163, 163, 163, 163, 163, 163, 163, - 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, - 163, 163, 163, 163, 163, 133, 163, 163, 163, 163, - 163, 163, 163, 163, 163, 163, 155, 163, 163, 163, - 163, 163, 163, 0, 161, 0, 0, 160, 163, 32, - 163, 163, 163, 163, 36, 38, 163, 163, 163, 163, - 60, 163, 46, 163, 163, 163, 163, 163, 163, 163, - 163, 51, 163, 163, 163, 163, 163, 67, 163, 163, - 163, 163, 163, 77, 163, 78, 163, 163, 81, 163, - 163, 163, 163, 163, 90, 91, 163, 163, 163, 163, - - 163, 163, 163, 163, 100, 101, 163, 163, 163, 163, - 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, - 163, 127, 163, 163, 163, 163, 163, 163, 144, 134, - 163, 163, 163, 163, 132, 163, 163, 163, 163, 163, - 163, 163, 150, 154, 163, 163, 163, 163, 163, 10, - 15, 9, 8, 163, 12, 14, 0, 160, 31, 34, - 163, 163, 163, 40, 163, 42, 163, 163, 163, 163, - 163, 163, 163, 55, 163, 163, 163, 163, 163, 163, - 163, 163, 163, 163, 163, 74, 76, 163, 163, 79, - 80, 163, 163, 163, 163, 163, 163, 93, 163, 163, - - 98, 163, 163, 163, 103, 163, 163, 163, 163, 110, - 111, 163, 163, 163, 115, 163, 116, 163, 163, 163, - 163, 163, 163, 163, 126, 163, 163, 163, 163, 137, - 163, 163, 163, 163, 163, 163, 163, 163, 163, 156, - 163, 157, 163, 11, 163, 13, 163, 33, 37, 39, - 163, 43, 163, 163, 163, 47, 163, 163, 163, 163, - 163, 163, 163, 163, 163, 163, 64, 66, 163, 163, - 73, 163, 163, 163, 163, 163, 84, 163, 163, 163, - 163, 163, 104, 99, 163, 163, 163, 163, 107, 163, - 163, 163, 120, 163, 119, 163, 163, 163, 129, 125, - - 163, 163, 135, 136, 163, 140, 163, 163, 163, 163, - 163, 163, 163, 163, 163, 158, 7, 163, 41, 44, - 163, 163, 163, 163, 163, 163, 50, 54, 163, 163, - 163, 163, 163, 70, 163, 163, 163, 71, 163, 163, - 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, - 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, - 163, 139, 143, 163, 163, 138, 163, 163, 163, 163, - 163, 163, 163, 163, 163, 163, 163, 163, 163, 57, - 163, 163, 163, 163, 69, 72, 163, 83, 163, 163, - 163, 163, 86, 92, 163, 163, 105, 108, 109, 163, - - 163, 112, 113, 163, 163, 163, 163, 163, 163, 131, - 130, 163, 163, 145, 163, 163, 163, 163, 163, 163, - 163, 163, 163, 48, 163, 163, 163, 163, 163, 163, - 75, 163, 163, 163, 85, 163, 96, 163, 163, 163, - 163, 163, 163, 123, 163, 141, 163, 146, 163, 163, - 163, 153, 163, 163, 59, 163, 49, 56, 163, 163, - 163, 163, 163, 163, 163, 163, 163, 117, 163, 121, - 163, 163, 128, 163, 163, 163, 163, 163, 45, 163, - 58, 163, 163, 65, 163, 163, 163, 163, 163, 118, - 122, 163, 142, 163, 163, 151, 163, 163, 163, 163, - - 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, - 163, 163, 163, 163, 163, 163, 106, 163, 163, 152, - 163, 53, 61, 63, 163, 163, 163, 163, 124, 149, - 163, 163, 163, 163, 163, 163, 35, 163, 163, 163, - 163, 163, 163, 163, 163, 163, 163, 163, 87, 88, - 89, 163, 163, 163, 163, 97, 62, 0 + 0, 0, 167, 165, 1, 1, 165, 5, 165, 6, + 165, 165, 165, 165, 165, 160, 21, 2, 165, 16, + 165, 164, 164, 164, 164, 164, 164, 164, 164, 164, + 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, + 164, 164, 164, 164, 165, 28, 24, 19, 25, 17, + 26, 18, 0, 162, 3, 4, 20, 161, 160, 0, + 29, 27, 30, 164, 164, 164, 164, 164, 164, 164, + 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, + 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, + 164, 164, 164, 164, 164, 164, 164, 164, 164, 95, + + 94, 164, 164, 164, 164, 164, 164, 164, 164, 164, + 164, 164, 164, 164, 114, 164, 164, 164, 164, 164, + 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, + 164, 164, 148, 149, 164, 164, 164, 164, 164, 164, + 164, 164, 23, 22, 0, 161, 0, 0, 163, 164, + 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, + 164, 164, 164, 164, 164, 164, 164, 164, 52, 164, + 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, + 68, 164, 164, 164, 164, 164, 82, 164, 164, 164, + 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, + + 164, 164, 102, 164, 164, 164, 164, 164, 164, 164, + 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, + 164, 164, 164, 164, 164, 164, 134, 164, 164, 164, + 164, 164, 164, 164, 164, 164, 164, 156, 164, 164, + 164, 164, 164, 164, 0, 162, 0, 0, 161, 164, + 32, 164, 164, 164, 164, 36, 38, 164, 164, 164, + 164, 60, 164, 46, 164, 164, 164, 164, 164, 164, + 164, 164, 51, 164, 164, 164, 164, 164, 67, 164, + 164, 164, 164, 164, 77, 164, 78, 164, 164, 81, + 164, 164, 164, 164, 164, 90, 91, 164, 164, 164, + + 164, 164, 164, 164, 164, 100, 101, 164, 164, 164, + 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, + 164, 164, 127, 164, 164, 164, 164, 164, 164, 164, + 145, 135, 164, 164, 164, 164, 133, 164, 164, 164, + 164, 164, 164, 164, 151, 155, 164, 164, 164, 164, + 164, 10, 15, 9, 8, 164, 12, 14, 0, 161, + 31, 34, 164, 164, 164, 40, 164, 42, 164, 164, + 164, 164, 164, 164, 164, 55, 164, 164, 164, 164, + 164, 164, 164, 164, 164, 164, 164, 74, 76, 164, + 164, 79, 80, 164, 164, 164, 164, 164, 164, 93, + + 164, 164, 98, 164, 164, 164, 103, 164, 164, 164, + 164, 110, 111, 164, 164, 164, 115, 164, 116, 164, + 164, 164, 164, 164, 164, 164, 164, 126, 164, 164, + 164, 164, 138, 164, 164, 164, 164, 164, 164, 164, + 164, 164, 157, 164, 158, 164, 11, 164, 13, 164, + 33, 37, 39, 164, 43, 164, 164, 164, 47, 164, + 164, 164, 164, 164, 164, 164, 164, 164, 164, 64, + 66, 164, 164, 73, 164, 164, 164, 164, 164, 84, + 164, 164, 164, 164, 164, 104, 99, 164, 164, 164, + 164, 107, 164, 164, 164, 120, 164, 119, 164, 164, + + 164, 129, 164, 125, 164, 164, 136, 137, 164, 141, + 164, 164, 164, 164, 164, 164, 164, 164, 164, 159, + 7, 164, 41, 44, 164, 164, 164, 164, 164, 164, + 50, 54, 164, 164, 164, 164, 164, 70, 164, 164, + 164, 71, 164, 164, 164, 164, 164, 164, 164, 164, + 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, + 164, 164, 164, 130, 164, 164, 140, 144, 164, 164, + 139, 164, 164, 164, 164, 164, 164, 164, 164, 164, + 164, 164, 164, 164, 57, 164, 164, 164, 164, 69, + 72, 164, 83, 164, 164, 164, 164, 86, 92, 164, + + 164, 105, 108, 109, 164, 164, 112, 113, 164, 164, + 164, 164, 164, 164, 132, 131, 164, 164, 146, 164, + 164, 164, 164, 164, 164, 164, 164, 164, 48, 164, + 164, 164, 164, 164, 164, 75, 164, 164, 164, 85, + 164, 96, 164, 164, 164, 164, 164, 164, 123, 164, + 142, 164, 147, 164, 164, 164, 154, 164, 164, 59, + 164, 49, 56, 164, 164, 164, 164, 164, 164, 164, + 164, 164, 117, 164, 121, 164, 164, 128, 164, 164, + 164, 164, 164, 45, 164, 58, 164, 164, 65, 164, + 164, 164, 164, 164, 118, 122, 164, 143, 164, 164, + + 152, 164, 164, 164, 164, 164, 164, 164, 164, 164, + 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, + 164, 106, 164, 164, 153, 164, 53, 61, 63, 164, + 164, 164, 164, 124, 150, 164, 164, 164, 164, 164, + 164, 35, 164, 164, 164, 164, 164, 164, 164, 164, + 164, 164, 164, 87, 88, 89, 164, 164, 164, 164, + 97, 62, 0 } ; static yyconst flex_int32_t yy_ec[256] = @@ -520,181 +521,183 @@ static yyconst flex_int32_t yy_meta[74] = 2, 2, 1 } ; -static yyconst flex_int16_t yy_base[760] = +static yyconst flex_int16_t yy_base[765] = { 0, - 0, 0, 886, 887, 887, 887, 864, 887, 878, 887, - 862, 65, 66, 64, 76, 78, 887, 887, 861, 860, - 859, 49, 49, 48, 64, 59, 76, 50, 50, 86, - 0, 819, 88, 89, 811, 813, 99, 809, 100, 110, - 143, 810, 813, 821, 799, 887, 887, 887, 887, 887, - 887, 887, 860, 169, 887, 887, 887, 184, 199, 214, - 887, 887, 887, 0, 809, 808, 812, 817, 810, 817, - 802, 59, 796, 87, 806, 813, 796, 179, 807, 117, - 800, 809, 798, 804, 790, 803, 177, 803, 799, 789, - 788, 784, 787, 805, 779, 793, 24, 781, 800, 0, - - 775, 779, 768, 96, 73, 784, 806, 771, 784, 770, - 782, 768, 767, 759, 0, 120, 122, 773, 780, 767, - 139, 760, 767, 758, 762, 762, 760, 177, 756, 755, - 754, 134, 0, 0, 782, 756, 745, 763, 765, 756, - 753, 741, 887, 887, 239, 244, 253, 259, 264, 745, - 743, 759, 177, 746, 745, 746, 737, 746, 741, 742, - 740, 740, 733, 746, 127, 734, 141, 730, 738, 744, - 735, 738, 737, 740, 718, 730, 178, 724, 726, 717, - 0, 718, 716, 722, 718, 727, 0, 727, 746, 181, - 723, 722, 712, 711, 744, 718, 703, 716, 713, 714, - - 713, 698, 749, 715, 706, 693, 710, 706, 709, 700, - 690, 694, 699, 692, 703, 690, 698, 697, 686, 690, - 678, 696, 691, 705, 672, 685, 678, 686, 681, 680, - 669, 257, 681, 674, 682, 704, 675, 663, 680, 667, - 666, 658, 236, 292, 297, 306, 311, 316, 658, 0, - 658, 661, 665, 672, 0, 704, 662, 661, 664, 664, - 0, 647, 0, 665, 654, 647, 651, 645, 652, 159, - 656, 0, 640, 645, 644, 637, 636, 0, 639, 639, - 646, 634, 641, 0, 629, 0, 644, 630, 0, 627, - 645, 631, 624, 641, 0, 0, 630, 621, 646, 621, - - 619, 619, 616, 623, 0, 0, 667, 205, 656, 620, - 612, 612, 616, 613, 617, 620, 615, 604, 605, 602, - 76, 0, 608, 606, 601, 598, 612, 598, 0, 0, - 595, 596, 224, 599, 0, 610, 601, 592, 603, 606, - 601, 617, 0, 0, 628, 579, 584, 594, 588, 0, - 0, 588, 0, 593, 586, 0, 321, 326, 0, 598, - 577, 581, 580, 0, 579, 0, 574, 581, 578, 585, - 582, 581, 571, 589, 570, 577, 561, 571, 574, 573, - 572, 571, 570, 199, 557, 0, 0, 569, 568, 0, - 0, 562, 212, 549, 552, 557, 553, 0, 575, 547, - - 0, 546, 555, 544, 0, 560, 551, 548, 544, 0, - 0, 552, 552, 552, 0, 541, 0, 559, 546, 534, - 548, 544, 535, 542, 0, 542, 537, 539, 538, 0, - 523, 522, 527, 534, 527, 534, 517, 521, 515, 0, - 230, 0, 528, 0, 525, 0, 522, 0, 0, 562, - 524, 0, 515, 516, 507, 0, 512, 513, 522, 517, - 498, 507, 506, 523, 539, 499, 0, 0, 235, 506, - 0, 505, 508, 498, 321, 535, 0, 501, 489, 501, - 517, 501, 0, 0, 500, 491, 478, 495, 0, 482, - 491, 498, 0, 483, 0, 488, 311, 508, 0, 0, - - 490, 489, 0, 0, 487, 0, 488, 485, 489, 484, - 471, 483, 467, 307, 484, 0, 0, 465, 0, 0, - 476, 489, 476, 477, 465, 476, 0, 0, 473, 475, - 461, 460, 472, 0, 454, 468, 469, 0, 456, 483, - 478, 471, 452, 459, 439, 475, 458, 441, 449, 453, - 443, 439, 452, 443, 445, 321, 451, 438, 445, 432, - 431, 0, 0, 438, 427, 0, 421, 439, 426, 422, - 428, 421, 431, 461, 423, 419, 430, 427, 422, 0, - 413, 416, 417, 410, 0, 0, 415, 0, 437, 436, - 447, 417, 0, 0, 447, 403, 0, 0, 0, 404, - - 411, 0, 0, 414, 416, 404, 397, 410, 396, 0, - 0, 390, 403, 0, 400, 401, 408, 399, 402, 416, - 391, 392, 394, 0, 378, 396, 395, 385, 380, 392, - 0, 403, 402, 411, 0, 398, 0, 383, 388, 373, - 378, 381, 382, 0, 378, 0, 364, 0, 382, 379, - 363, 0, 366, 357, 0, 361, 0, 0, 360, 366, - 357, 371, 374, 373, 372, 387, 351, 0, 364, 0, - 357, 350, 0, 361, 345, 251, 359, 344, 0, 343, - 0, 347, 359, 0, 362, 361, 360, 366, 347, 0, - 0, 353, 0, 334, 335, 0, 342, 341, 342, 335, - - 367, 366, 365, 355, 331, 331, 336, 52, 181, 242, - 228, 236, 263, 278, 308, 302, 0, 285, 286, 0, - 293, 0, 318, 0, 314, 315, 316, 317, 0, 0, - 294, 299, 330, 333, 334, 341, 0, 338, 334, 336, - 337, 345, 315, 341, 342, 343, 353, 323, 0, 0, - 0, 347, 331, 357, 320, 0, 0, 887, 385 + 0, 0, 891, 892, 892, 892, 869, 892, 883, 892, + 867, 65, 66, 64, 76, 78, 892, 892, 866, 865, + 864, 49, 49, 48, 64, 59, 76, 50, 50, 86, + 0, 824, 88, 89, 816, 818, 99, 814, 100, 110, + 143, 815, 818, 826, 804, 892, 892, 892, 892, 892, + 892, 892, 865, 169, 892, 892, 892, 184, 199, 214, + 892, 892, 892, 0, 814, 813, 817, 822, 815, 822, + 807, 59, 801, 87, 811, 818, 801, 179, 812, 117, + 805, 814, 803, 809, 795, 808, 177, 808, 804, 794, + 793, 789, 792, 810, 784, 798, 24, 786, 805, 0, + + 780, 784, 773, 96, 73, 789, 811, 776, 789, 775, + 787, 773, 772, 764, 0, 120, 122, 778, 785, 772, + 140, 765, 772, 763, 767, 767, 765, 177, 761, 760, + 759, 129, 0, 0, 787, 761, 750, 768, 770, 761, + 758, 746, 892, 892, 239, 244, 253, 259, 264, 750, + 748, 764, 177, 751, 750, 751, 742, 751, 746, 747, + 745, 745, 738, 751, 142, 739, 130, 735, 743, 749, + 740, 743, 742, 745, 723, 735, 189, 729, 731, 722, + 0, 723, 721, 727, 723, 732, 0, 732, 751, 256, + 728, 727, 717, 716, 749, 723, 708, 721, 718, 719, + + 718, 703, 754, 720, 711, 698, 715, 711, 714, 705, + 695, 699, 704, 697, 708, 695, 703, 702, 691, 695, + 683, 697, 700, 695, 709, 676, 689, 682, 690, 685, + 684, 673, 261, 685, 678, 686, 708, 679, 667, 684, + 671, 670, 662, 240, 296, 301, 310, 315, 320, 662, + 0, 662, 665, 669, 676, 0, 708, 666, 665, 668, + 668, 0, 651, 0, 669, 658, 651, 655, 649, 656, + 164, 660, 0, 644, 649, 648, 641, 640, 0, 643, + 643, 650, 638, 645, 0, 633, 0, 648, 634, 0, + 631, 649, 635, 628, 645, 0, 0, 634, 625, 650, + + 625, 623, 623, 620, 627, 0, 0, 671, 205, 660, + 624, 616, 616, 620, 617, 621, 624, 619, 608, 609, + 606, 76, 0, 612, 610, 605, 604, 601, 615, 601, + 0, 0, 598, 599, 222, 602, 0, 613, 604, 595, + 606, 609, 604, 620, 0, 0, 631, 582, 587, 597, + 591, 0, 0, 591, 0, 596, 589, 0, 325, 330, + 0, 601, 580, 584, 583, 0, 582, 0, 577, 584, + 581, 588, 585, 584, 574, 592, 573, 580, 564, 574, + 577, 576, 575, 574, 573, 199, 560, 0, 0, 572, + 571, 0, 0, 565, 212, 552, 555, 560, 556, 0, + + 578, 550, 0, 549, 558, 547, 0, 563, 554, 551, + 547, 0, 0, 555, 555, 555, 0, 544, 0, 562, + 549, 537, 551, 547, 538, 532, 544, 0, 544, 539, + 541, 540, 0, 525, 524, 529, 536, 529, 536, 519, + 523, 517, 0, 234, 0, 530, 0, 527, 0, 524, + 0, 0, 564, 526, 0, 517, 518, 509, 0, 514, + 515, 524, 519, 500, 509, 508, 525, 541, 501, 0, + 0, 153, 508, 0, 507, 510, 500, 272, 537, 0, + 503, 491, 503, 519, 503, 0, 0, 502, 493, 480, + 497, 0, 484, 493, 500, 0, 485, 0, 490, 314, + + 510, 0, 492, 0, 491, 490, 0, 0, 488, 0, + 489, 486, 490, 485, 472, 484, 468, 310, 485, 0, + 0, 466, 0, 0, 477, 490, 477, 478, 466, 477, + 0, 0, 474, 476, 462, 461, 473, 0, 455, 469, + 470, 0, 457, 484, 479, 472, 453, 460, 440, 476, + 459, 442, 450, 454, 444, 440, 453, 444, 446, 324, + 452, 439, 446, 0, 433, 432, 0, 0, 439, 428, + 0, 422, 440, 427, 423, 429, 422, 432, 462, 424, + 420, 431, 428, 423, 0, 414, 417, 418, 411, 0, + 0, 416, 0, 438, 437, 448, 418, 0, 0, 448, + + 404, 0, 0, 0, 405, 412, 0, 0, 415, 417, + 405, 398, 411, 397, 0, 0, 391, 404, 0, 401, + 402, 409, 400, 403, 417, 392, 393, 395, 0, 379, + 397, 396, 386, 381, 393, 0, 404, 403, 412, 0, + 399, 0, 384, 389, 374, 379, 382, 383, 0, 379, + 0, 365, 0, 383, 380, 364, 0, 367, 358, 0, + 362, 0, 0, 361, 367, 358, 372, 375, 374, 373, + 388, 352, 0, 365, 0, 358, 351, 0, 362, 346, + 310, 360, 345, 0, 344, 0, 348, 360, 0, 363, + 362, 361, 367, 348, 0, 0, 354, 0, 335, 336, + + 0, 343, 342, 343, 336, 368, 367, 366, 72, 183, + 226, 233, 235, 233, 256, 236, 255, 282, 311, 313, + 307, 0, 290, 291, 0, 297, 0, 322, 0, 318, + 319, 320, 321, 0, 0, 298, 303, 336, 337, 338, + 346, 0, 344, 340, 341, 342, 350, 320, 346, 347, + 348, 358, 328, 0, 0, 0, 352, 336, 363, 326, + 0, 0, 892, 390 } ; -static yyconst flex_int16_t yy_def[760] = +static yyconst flex_int16_t yy_def[765] = { 0, - 758, 1, 758, 758, 758, 758, 758, 758, 758, 758, - 758, 758, 758, 758, 758, 758, 758, 758, 758, 758, - 758, 759, 759, 759, 759, 759, 759, 759, 759, 759, - 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, - 759, 759, 759, 759, 758, 758, 758, 758, 758, 758, - 758, 758, 758, 758, 758, 758, 758, 758, 758, 758, - 758, 758, 758, 759, 759, 759, 759, 759, 759, 759, - 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, - 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, - 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, - - 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, - 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, - 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, - 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, - 759, 759, 758, 758, 758, 758, 758, 758, 758, 759, - 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, - 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, - 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, - 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, - 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, - - 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, - 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, - 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, - 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, - 759, 759, 759, 758, 758, 758, 758, 758, 759, 759, - 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, - 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, - 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, - 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, - 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, - - 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, - 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, - 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, - 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, - 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, - 759, 759, 759, 759, 759, 759, 758, 758, 759, 759, - 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, - 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, - 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, - 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, - - 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, - 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, - 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, - 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, - 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, - 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, - 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, - 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, - 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, - 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, - - 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, - 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, - 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, - 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, - 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, - 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, - 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, - 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, - 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, - 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, - - 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, - 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, - 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, - 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, - 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, - 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, - 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, - 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, - 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, - 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, - - 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, - 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, - 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, - 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, - 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, - 759, 759, 759, 759, 759, 759, 759, 0, 758 + 763, 1, 763, 763, 763, 763, 763, 763, 763, 763, + 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, + 763, 764, 764, 764, 764, 764, 764, 764, 764, 764, + 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, + 764, 764, 764, 764, 763, 763, 763, 763, 763, 763, + 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, + 763, 763, 763, 764, 764, 764, 764, 764, 764, 764, + 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, + 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, + 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, + + 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, + 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, + 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, + 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, + 764, 764, 763, 763, 763, 763, 763, 763, 763, 764, + 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, + 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, + 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, + 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, + 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, + + 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, + 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, + 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, + 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, + 764, 764, 764, 764, 763, 763, 763, 763, 763, 764, + 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, + 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, + 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, + 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, + 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, + + 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, + 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, + 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, + 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, + 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, + 764, 764, 764, 764, 764, 764, 764, 764, 763, 763, + 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, + 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, + 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, + 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, + + 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, + 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, + 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, + 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, + 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, + 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, + 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, + 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, + 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, + 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, + + 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, + 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, + 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, + 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, + 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, + 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, + 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, + 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, + 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, + 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, + + 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, + 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, + 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, + 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, + 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, + 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, + 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, + 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, + 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, + 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, + + 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, + 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, + 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, + 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, + 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, + 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, + 764, 764, 0, 763 } ; -static yyconst flex_int16_t yy_nxt[961] = +static yyconst flex_int16_t yy_nxt[966] = { 0, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 16, 16, 16, 16, 17, 18, 19, @@ -707,103 +710,104 @@ static yyconst flex_int16_t yy_nxt[961] = 54, 192, 193, 55, 94, 50, 52, 56, 58, 71, 59, 59, 59, 59, 59, 74, 57, 65, 66, 75, - 72, 95, 76, 77, 60, 96, 67, 720, 78, 73, - 97, 79, 68, 69, 70, 80, 83, 420, 84, 81, + 72, 95, 76, 77, 60, 96, 67, 721, 78, 73, + 97, 79, 68, 69, 70, 80, 83, 422, 84, 81, 98, 99, 85, 88, 157, 86, 107, 82, 87, 60, 158, 89, 201, 90, 91, 103, 92, 202, 100, 104, - 108, 420, 93, 105, 160, 101, 112, 120, 106, 109, + 108, 422, 93, 105, 160, 101, 112, 120, 106, 109, 113, 121, 161, 114, 115, 199, 116, 133, 134, 117, 122, 124, 118, 200, 125, 126, 123, 212, 127, 171, - 172, 128, 129, 135, 173, 130, 131, 214, 266, 215, - 132, 54, 54, 54, 54, 54, 213, 267, 219, 269, - 136, 220, 234, 235, 137, 145, 146, 146, 146, 146, - - 146, 252, 270, 138, 221, 280, 139, 292, 281, 58, - 147, 59, 59, 59, 59, 59, 376, 253, 254, 377, - 145, 293, 148, 148, 294, 60, 149, 149, 149, 149, - 149, 228, 180, 165, 229, 147, 166, 167, 181, 168, - 230, 721, 182, 169, 406, 407, 475, 244, 244, 476, - 60, 245, 245, 245, 245, 245, 146, 146, 146, 146, - 146, 247, 247, 469, 470, 248, 248, 248, 248, 248, - 246, 149, 149, 149, 149, 149, 149, 149, 149, 149, - 149, 336, 514, 429, 337, 350, 534, 515, 351, 430, - 535, 722, 695, 352, 338, 246, 339, 353, 723, 354, - - 355, 724, 725, 356, 245, 245, 245, 245, 245, 245, - 245, 245, 245, 245, 357, 357, 695, 726, 358, 358, - 358, 358, 358, 248, 248, 248, 248, 248, 248, 248, - 248, 248, 248, 358, 358, 358, 358, 358, 358, 358, - 358, 358, 358, 540, 557, 570, 605, 727, 728, 729, - 730, 541, 731, 732, 733, 734, 735, 736, 737, 738, - 739, 606, 571, 740, 741, 742, 558, 743, 557, 570, - 744, 605, 745, 746, 747, 748, 749, 750, 751, 752, - 753, 754, 755, 756, 757, 606, 64, 719, 718, 717, - 716, 715, 714, 713, 712, 711, 710, 709, 708, 707, - - 706, 705, 704, 703, 702, 701, 700, 699, 698, 697, - 696, 694, 693, 692, 691, 690, 689, 688, 687, 686, - 685, 684, 683, 682, 681, 680, 679, 678, 677, 676, - 675, 674, 673, 672, 671, 670, 669, 668, 667, 666, - 665, 664, 663, 662, 661, 660, 659, 658, 657, 656, - 655, 654, 653, 652, 651, 650, 649, 648, 647, 646, - 645, 644, 643, 642, 641, 640, 639, 638, 637, 636, - 635, 634, 633, 632, 631, 630, 629, 628, 627, 626, - 625, 624, 623, 622, 621, 620, 619, 618, 617, 616, - 615, 614, 613, 612, 611, 610, 609, 608, 607, 604, - - 603, 602, 601, 600, 599, 598, 597, 596, 595, 594, - 593, 592, 591, 590, 589, 588, 587, 586, 585, 584, - 583, 582, 581, 580, 579, 578, 577, 576, 575, 574, - 573, 572, 569, 568, 567, 566, 565, 564, 563, 562, - 561, 560, 559, 556, 555, 554, 553, 552, 551, 550, - 549, 548, 547, 546, 545, 544, 543, 542, 539, 538, - 537, 536, 533, 532, 531, 530, 529, 528, 527, 526, - 525, 524, 523, 522, 521, 520, 519, 518, 517, 516, - 513, 512, 511, 510, 509, 508, 507, 506, 505, 504, - 503, 502, 501, 500, 499, 498, 497, 496, 495, 494, - - 493, 492, 491, 490, 489, 488, 487, 486, 485, 484, - 483, 482, 481, 480, 479, 478, 477, 474, 473, 472, - 471, 468, 467, 466, 465, 464, 463, 462, 461, 460, - 459, 458, 457, 456, 455, 454, 453, 452, 451, 450, - 449, 448, 447, 446, 445, 444, 443, 442, 441, 440, - 439, 438, 437, 436, 435, 434, 433, 432, 431, 428, - 427, 426, 425, 424, 423, 422, 421, 419, 418, 417, - 416, 415, 414, 413, 412, 411, 410, 409, 408, 405, - 404, 403, 402, 401, 400, 399, 398, 397, 396, 395, - 394, 393, 392, 391, 390, 389, 388, 387, 386, 385, - - 384, 383, 382, 381, 380, 379, 378, 375, 374, 373, - 372, 371, 370, 369, 368, 367, 366, 365, 364, 363, - 362, 361, 360, 359, 349, 348, 347, 346, 345, 344, - 343, 342, 341, 340, 335, 334, 333, 332, 331, 330, - 329, 328, 327, 326, 325, 324, 323, 322, 321, 320, - 319, 318, 317, 316, 315, 314, 313, 312, 311, 310, - 309, 308, 307, 306, 305, 304, 303, 302, 301, 300, - 299, 298, 297, 296, 295, 291, 290, 289, 288, 287, - 286, 285, 284, 283, 282, 279, 278, 277, 276, 275, - 274, 273, 272, 271, 268, 265, 264, 263, 262, 261, - - 260, 259, 258, 257, 256, 255, 251, 250, 249, 243, - 242, 241, 240, 239, 238, 237, 236, 233, 232, 231, - 227, 226, 225, 224, 223, 222, 218, 217, 216, 211, - 210, 209, 208, 207, 206, 205, 204, 203, 198, 197, - 196, 195, 194, 191, 190, 189, 188, 187, 186, 185, - 184, 183, 179, 178, 177, 176, 175, 174, 170, 164, - 163, 162, 159, 156, 155, 154, 153, 152, 151, 150, - 144, 143, 142, 141, 140, 119, 111, 110, 102, 63, - 62, 61, 48, 47, 46, 758, 3, 758, 758, 758, - 758, 758, 758, 758, 758, 758, 758, 758, 758, 758, - - 758, 758, 758, 758, 758, 758, 758, 758, 758, 758, - 758, 758, 758, 758, 758, 758, 758, 758, 758, 758, - 758, 758, 758, 758, 758, 758, 758, 758, 758, 758, - 758, 758, 758, 758, 758, 758, 758, 758, 758, 758, - 758, 758, 758, 758, 758, 758, 758, 758, 758, 758, - 758, 758, 758, 758, 758, 758, 758, 758, 758, 758 + 172, 128, 129, 135, 173, 130, 131, 214, 270, 215, + 132, 54, 54, 54, 54, 54, 213, 235, 236, 219, + 136, 271, 220, 267, 137, 145, 146, 146, 146, 146, + + 146, 253, 268, 138, 538, 221, 139, 222, 539, 58, + 147, 59, 59, 59, 59, 59, 281, 254, 255, 282, + 145, 378, 148, 148, 379, 60, 149, 149, 149, 149, + 149, 229, 180, 165, 230, 147, 166, 167, 181, 168, + 231, 722, 182, 169, 408, 409, 478, 245, 245, 479, + 60, 246, 246, 246, 246, 246, 146, 146, 146, 146, + 146, 248, 248, 472, 473, 249, 249, 249, 249, 249, + 247, 149, 149, 149, 149, 149, 149, 149, 149, 149, + 149, 432, 293, 723, 724, 338, 518, 433, 339, 352, + 725, 519, 353, 726, 544, 247, 294, 354, 340, 295, + + 341, 355, 545, 356, 357, 727, 728, 358, 246, 246, + 246, 246, 246, 246, 246, 246, 246, 246, 359, 359, + 729, 730, 360, 360, 360, 360, 360, 249, 249, 249, + 249, 249, 249, 249, 249, 249, 249, 360, 360, 360, + 360, 360, 360, 360, 360, 360, 360, 561, 575, 610, + 731, 700, 732, 733, 734, 735, 736, 737, 738, 739, + 740, 741, 742, 743, 611, 576, 744, 745, 746, 562, + 747, 561, 575, 748, 610, 700, 749, 750, 751, 752, + 753, 754, 755, 756, 757, 758, 759, 760, 611, 761, + 762, 64, 720, 719, 718, 717, 716, 715, 714, 713, + + 712, 711, 710, 709, 708, 707, 706, 705, 704, 703, + 702, 701, 699, 698, 697, 696, 695, 694, 693, 692, + 691, 690, 689, 688, 687, 686, 685, 684, 683, 682, + 681, 680, 679, 678, 677, 676, 675, 674, 673, 672, + 671, 670, 669, 668, 667, 666, 665, 664, 663, 662, + 661, 660, 659, 658, 657, 656, 655, 654, 653, 652, + 651, 650, 649, 648, 647, 646, 645, 644, 643, 642, + 641, 640, 639, 638, 637, 636, 635, 634, 633, 632, + 631, 630, 629, 628, 627, 626, 625, 624, 623, 622, + 621, 620, 619, 618, 617, 616, 615, 614, 613, 612, + + 609, 608, 607, 606, 605, 604, 603, 602, 601, 600, + 599, 598, 597, 596, 595, 594, 593, 592, 591, 590, + 589, 588, 587, 586, 585, 584, 583, 582, 581, 580, + 579, 578, 577, 574, 573, 572, 571, 570, 569, 568, + 567, 566, 565, 564, 563, 560, 559, 558, 557, 556, + 555, 554, 553, 552, 551, 550, 549, 548, 547, 546, + 543, 542, 541, 540, 537, 536, 535, 534, 533, 532, + 531, 530, 529, 528, 527, 526, 525, 524, 523, 522, + 521, 520, 517, 516, 515, 514, 513, 512, 511, 510, + 509, 508, 507, 506, 505, 504, 503, 502, 501, 500, + + 499, 498, 497, 496, 495, 494, 493, 492, 491, 490, + 489, 488, 487, 486, 485, 484, 483, 482, 481, 480, + 477, 476, 475, 474, 471, 470, 469, 468, 467, 466, + 465, 464, 463, 462, 461, 460, 459, 458, 457, 456, + 455, 454, 453, 452, 451, 450, 449, 448, 447, 446, + 445, 444, 443, 442, 441, 440, 439, 438, 437, 436, + 435, 434, 431, 430, 429, 428, 427, 426, 425, 424, + 423, 421, 420, 419, 418, 417, 416, 415, 414, 413, + 412, 411, 410, 407, 406, 405, 404, 403, 402, 401, + 400, 399, 398, 397, 396, 395, 394, 393, 392, 391, + + 390, 389, 388, 387, 386, 385, 384, 383, 382, 381, + 380, 377, 376, 375, 374, 373, 372, 371, 370, 369, + 368, 367, 366, 365, 364, 363, 362, 361, 351, 350, + 349, 348, 347, 346, 345, 344, 343, 342, 337, 336, + 335, 334, 333, 332, 331, 330, 329, 328, 327, 326, + 325, 324, 323, 322, 321, 320, 319, 318, 317, 316, + 315, 314, 313, 312, 311, 310, 309, 308, 307, 306, + 305, 304, 303, 302, 301, 300, 299, 298, 297, 296, + 292, 291, 290, 289, 288, 287, 286, 285, 284, 283, + 280, 279, 278, 277, 276, 275, 274, 273, 272, 269, + + 266, 265, 264, 263, 262, 261, 260, 259, 258, 257, + 256, 252, 251, 250, 244, 243, 242, 241, 240, 239, + 238, 237, 234, 233, 232, 228, 227, 226, 225, 224, + 223, 218, 217, 216, 211, 210, 209, 208, 207, 206, + 205, 204, 203, 198, 197, 196, 195, 194, 191, 190, + 189, 188, 187, 186, 185, 184, 183, 179, 178, 177, + 176, 175, 174, 170, 164, 163, 162, 159, 156, 155, + 154, 153, 152, 151, 150, 144, 143, 142, 141, 140, + 119, 111, 110, 102, 63, 62, 61, 48, 47, 46, + 763, 3, 763, 763, 763, 763, 763, 763, 763, 763, + + 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, + 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, + 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, + 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, + 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, + 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, + 763, 763, 763, 763, 763 } ; -static yyconst flex_int16_t yy_chk[961] = +static yyconst flex_int16_t yy_chk[966] = { 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, @@ -816,100 +820,101 @@ static yyconst flex_int16_t yy_chk[961] = 14, 97, 97, 15, 28, 12, 13, 15, 16, 23, 16, 16, 16, 16, 16, 24, 15, 22, 22, 24, - 23, 28, 24, 24, 16, 29, 22, 708, 24, 23, - 29, 24, 22, 22, 22, 25, 26, 321, 26, 25, + 23, 28, 24, 24, 16, 29, 22, 709, 24, 23, + 29, 24, 22, 22, 22, 25, 26, 322, 26, 25, 29, 30, 26, 27, 72, 26, 34, 25, 26, 16, 72, 27, 105, 27, 27, 33, 27, 105, 30, 33, - 34, 321, 27, 33, 74, 30, 37, 39, 33, 34, + 34, 322, 27, 33, 74, 30, 37, 39, 33, 34, 37, 39, 74, 37, 37, 104, 37, 41, 41, 37, 39, 40, 37, 104, 40, 40, 39, 116, 40, 80, - 80, 40, 40, 41, 80, 40, 40, 117, 165, 117, - 40, 54, 54, 54, 54, 54, 116, 165, 121, 167, - 41, 121, 132, 132, 41, 54, 58, 58, 58, 58, + 80, 40, 40, 41, 80, 40, 40, 117, 167, 117, + 40, 54, 54, 54, 54, 54, 116, 132, 132, 121, + 41, 167, 121, 165, 41, 54, 58, 58, 58, 58, - 58, 153, 167, 41, 121, 177, 41, 190, 177, 59, - 58, 59, 59, 59, 59, 59, 270, 153, 153, 270, - 54, 190, 60, 60, 190, 59, 60, 60, 60, 60, + 58, 153, 165, 41, 472, 121, 41, 121, 472, 59, + 58, 59, 59, 59, 59, 59, 177, 153, 153, 177, + 54, 271, 60, 60, 271, 59, 60, 60, 60, 60, 60, 128, 87, 78, 128, 58, 78, 78, 87, 78, - 128, 709, 87, 78, 308, 308, 393, 145, 145, 393, + 128, 710, 87, 78, 309, 309, 395, 145, 145, 395, 59, 145, 145, 145, 145, 145, 146, 146, 146, 146, - 146, 147, 147, 384, 384, 147, 147, 147, 147, 147, + 146, 147, 147, 386, 386, 147, 147, 147, 147, 147, 146, 148, 148, 148, 148, 148, 149, 149, 149, 149, - 149, 232, 441, 333, 232, 243, 469, 441, 243, 333, - 469, 710, 676, 243, 232, 146, 232, 243, 711, 243, - - 243, 712, 713, 243, 244, 244, 244, 244, 244, 245, - 245, 245, 245, 245, 246, 246, 676, 714, 246, 246, - 246, 246, 246, 247, 247, 247, 247, 247, 248, 248, - 248, 248, 248, 357, 357, 357, 357, 357, 358, 358, - 358, 358, 358, 475, 497, 514, 556, 715, 716, 718, - 719, 475, 721, 723, 725, 726, 727, 728, 731, 732, - 733, 556, 514, 734, 735, 736, 497, 738, 497, 514, - 739, 556, 740, 741, 742, 743, 744, 745, 746, 747, - 748, 752, 753, 754, 755, 556, 759, 707, 706, 705, - 704, 703, 702, 701, 700, 699, 698, 697, 695, 694, - - 692, 689, 688, 687, 686, 685, 683, 682, 680, 678, - 677, 675, 674, 672, 671, 669, 667, 666, 665, 664, - 663, 662, 661, 660, 659, 656, 654, 653, 651, 650, - 649, 647, 645, 643, 642, 641, 640, 639, 638, 636, - 634, 633, 632, 630, 629, 628, 627, 626, 625, 623, - 622, 621, 620, 619, 618, 617, 616, 615, 613, 612, - 609, 608, 607, 606, 605, 604, 601, 600, 596, 595, - 592, 591, 590, 589, 587, 584, 583, 582, 581, 579, - 578, 577, 576, 575, 574, 573, 572, 571, 570, 569, - 568, 567, 565, 564, 561, 560, 559, 558, 557, 555, - - 554, 553, 552, 551, 550, 549, 548, 547, 546, 545, - 544, 543, 542, 541, 540, 539, 537, 536, 535, 533, - 532, 531, 530, 529, 526, 525, 524, 523, 522, 521, - 518, 515, 513, 512, 511, 510, 509, 508, 507, 505, - 502, 501, 498, 496, 494, 492, 491, 490, 488, 487, - 486, 485, 482, 481, 480, 479, 478, 476, 474, 473, - 472, 470, 466, 465, 464, 463, 462, 461, 460, 459, - 458, 457, 455, 454, 453, 451, 450, 447, 445, 443, - 439, 438, 437, 436, 435, 434, 433, 432, 431, 429, - 428, 427, 426, 424, 423, 422, 421, 420, 419, 418, - - 416, 414, 413, 412, 409, 408, 407, 406, 404, 403, - 402, 400, 399, 397, 396, 395, 394, 392, 389, 388, - 385, 383, 382, 381, 380, 379, 378, 377, 376, 375, - 374, 373, 372, 371, 370, 369, 368, 367, 365, 363, - 362, 361, 360, 355, 354, 352, 349, 348, 347, 346, - 345, 342, 341, 340, 339, 338, 337, 336, 334, 332, - 331, 328, 327, 326, 325, 324, 323, 320, 319, 318, - 317, 316, 315, 314, 313, 312, 311, 310, 309, 307, - 304, 303, 302, 301, 300, 299, 298, 297, 294, 293, - 292, 291, 290, 288, 287, 285, 283, 282, 281, 280, - - 279, 277, 276, 275, 274, 273, 271, 269, 268, 267, - 266, 265, 264, 262, 260, 259, 258, 257, 256, 254, - 253, 252, 251, 249, 242, 241, 240, 239, 238, 237, - 236, 235, 234, 233, 231, 230, 229, 228, 227, 226, - 225, 224, 223, 222, 221, 220, 219, 218, 217, 216, - 215, 214, 213, 212, 211, 210, 209, 208, 207, 206, - 205, 204, 203, 202, 201, 200, 199, 198, 197, 196, - 195, 194, 193, 192, 191, 189, 188, 186, 185, 184, - 183, 182, 180, 179, 178, 176, 175, 174, 173, 172, - 171, 170, 169, 168, 166, 164, 163, 162, 161, 160, - - 159, 158, 157, 156, 155, 154, 152, 151, 150, 142, - 141, 140, 139, 138, 137, 136, 135, 131, 130, 129, - 127, 126, 125, 124, 123, 122, 120, 119, 118, 114, - 113, 112, 111, 110, 109, 108, 107, 106, 103, 102, - 101, 99, 98, 96, 95, 94, 93, 92, 91, 90, - 89, 88, 86, 85, 84, 83, 82, 81, 79, 77, - 76, 75, 73, 71, 70, 69, 68, 67, 66, 65, - 53, 45, 44, 43, 42, 38, 36, 35, 32, 21, - 20, 19, 11, 9, 7, 3, 758, 758, 758, 758, - 758, 758, 758, 758, 758, 758, 758, 758, 758, 758, - - 758, 758, 758, 758, 758, 758, 758, 758, 758, 758, - 758, 758, 758, 758, 758, 758, 758, 758, 758, 758, - 758, 758, 758, 758, 758, 758, 758, 758, 758, 758, - 758, 758, 758, 758, 758, 758, 758, 758, 758, 758, - 758, 758, 758, 758, 758, 758, 758, 758, 758, 758, - 758, 758, 758, 758, 758, 758, 758, 758, 758, 758 + 149, 335, 190, 711, 712, 233, 444, 335, 233, 244, + 713, 444, 244, 714, 478, 146, 190, 244, 233, 190, + + 233, 244, 478, 244, 244, 715, 716, 244, 245, 245, + 245, 245, 245, 246, 246, 246, 246, 246, 247, 247, + 717, 718, 247, 247, 247, 247, 247, 248, 248, 248, + 248, 248, 249, 249, 249, 249, 249, 359, 359, 359, + 359, 359, 360, 360, 360, 360, 360, 500, 518, 560, + 719, 681, 720, 721, 723, 724, 726, 728, 730, 731, + 732, 733, 736, 737, 560, 518, 738, 739, 740, 500, + 741, 500, 518, 743, 560, 681, 744, 745, 746, 747, + 748, 749, 750, 751, 752, 753, 757, 758, 560, 759, + 760, 764, 708, 707, 706, 705, 704, 703, 702, 700, + + 699, 697, 694, 693, 692, 691, 690, 688, 687, 685, + 683, 682, 680, 679, 677, 676, 674, 672, 671, 670, + 669, 668, 667, 666, 665, 664, 661, 659, 658, 656, + 655, 654, 652, 650, 648, 647, 646, 645, 644, 643, + 641, 639, 638, 637, 635, 634, 633, 632, 631, 630, + 628, 627, 626, 625, 624, 623, 622, 621, 620, 618, + 617, 614, 613, 612, 611, 610, 609, 606, 605, 601, + 600, 597, 596, 595, 594, 592, 589, 588, 587, 586, + 584, 583, 582, 581, 580, 579, 578, 577, 576, 575, + 574, 573, 572, 570, 569, 566, 565, 563, 562, 561, + + 559, 558, 557, 556, 555, 554, 553, 552, 551, 550, + 549, 548, 547, 546, 545, 544, 543, 541, 540, 539, + 537, 536, 535, 534, 533, 530, 529, 528, 527, 526, + 525, 522, 519, 517, 516, 515, 514, 513, 512, 511, + 509, 506, 505, 503, 501, 499, 497, 495, 494, 493, + 491, 490, 489, 488, 485, 484, 483, 482, 481, 479, + 477, 476, 475, 473, 469, 468, 467, 466, 465, 464, + 463, 462, 461, 460, 458, 457, 456, 454, 453, 450, + 448, 446, 442, 441, 440, 439, 438, 437, 436, 435, + 434, 432, 431, 430, 429, 427, 426, 425, 424, 423, + + 422, 421, 420, 418, 416, 415, 414, 411, 410, 409, + 408, 406, 405, 404, 402, 401, 399, 398, 397, 396, + 394, 391, 390, 387, 385, 384, 383, 382, 381, 380, + 379, 378, 377, 376, 375, 374, 373, 372, 371, 370, + 369, 367, 365, 364, 363, 362, 357, 356, 354, 351, + 350, 349, 348, 347, 344, 343, 342, 341, 340, 339, + 338, 336, 334, 333, 330, 329, 328, 327, 326, 325, + 324, 321, 320, 319, 318, 317, 316, 315, 314, 313, + 312, 311, 310, 308, 305, 304, 303, 302, 301, 300, + 299, 298, 295, 294, 293, 292, 291, 289, 288, 286, + + 284, 283, 282, 281, 280, 278, 277, 276, 275, 274, + 272, 270, 269, 268, 267, 266, 265, 263, 261, 260, + 259, 258, 257, 255, 254, 253, 252, 250, 243, 242, + 241, 240, 239, 238, 237, 236, 235, 234, 232, 231, + 230, 229, 228, 227, 226, 225, 224, 223, 222, 221, + 220, 219, 218, 217, 216, 215, 214, 213, 212, 211, + 210, 209, 208, 207, 206, 205, 204, 203, 202, 201, + 200, 199, 198, 197, 196, 195, 194, 193, 192, 191, + 189, 188, 186, 185, 184, 183, 182, 180, 179, 178, + 176, 175, 174, 173, 172, 171, 170, 169, 168, 166, + + 164, 163, 162, 161, 160, 159, 158, 157, 156, 155, + 154, 152, 151, 150, 142, 141, 140, 139, 138, 137, + 136, 135, 131, 130, 129, 127, 126, 125, 124, 123, + 122, 120, 119, 118, 114, 113, 112, 111, 110, 109, + 108, 107, 106, 103, 102, 101, 99, 98, 96, 95, + 94, 93, 92, 91, 90, 89, 88, 86, 85, 84, + 83, 82, 81, 79, 77, 76, 75, 73, 71, 70, + 69, 68, 67, 66, 65, 53, 45, 44, 43, 42, + 38, 36, 35, 32, 21, 20, 19, 11, 9, 7, + 3, 763, 763, 763, 763, 763, 763, 763, 763, 763, + + 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, + 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, + 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, + 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, + 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, + 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, + 763, 763, 763, 763, 763 } ; static yy_state_type yy_last_accepting_state; @@ -966,7 +971,7 @@ void skipline(void); #define YY_NO_UNISTD_H #endif -#line 970 "Gmsh.yy.cpp" +#line 975 "Gmsh.yy.cpp" #define INITIAL 0 @@ -1151,7 +1156,7 @@ YY_DECL #line 49 "Gmsh.l" -#line 1155 "Gmsh.yy.cpp" +#line 1160 "Gmsh.yy.cpp" if ( !(yy_init) ) { @@ -1204,13 +1209,13 @@ yy_match: while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) { yy_current_state = (int) yy_def[yy_current_state]; - if ( yy_current_state >= 759 ) + if ( yy_current_state >= 764 ) yy_c = yy_meta[(unsigned int) yy_c]; } yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; ++yy_cp; } - while ( yy_base[yy_current_state] != 887 ); + while ( yy_base[yy_current_state] != 892 ); yy_find_action: yy_act = yy_accept[yy_current_state]; @@ -1882,176 +1887,181 @@ return tReturn; YY_BREAK case 130: YY_RULE_SETUP -#line 198 "Gmsh.l" -return tSmoother; +#line 197 "Gmsh.l" +return tReverse; YY_BREAK case 131: YY_RULE_SETUP #line 199 "Gmsh.l" -return tSetOrder; +return tSmoother; YY_BREAK case 132: YY_RULE_SETUP #line 200 "Gmsh.l" -return tSqrt; +return tSetOrder; YY_BREAK case 133: YY_RULE_SETUP #line 201 "Gmsh.l" -return tSin; +return tSqrt; YY_BREAK case 134: YY_RULE_SETUP #line 202 "Gmsh.l" -return tSinh; +return tSin; YY_BREAK case 135: YY_RULE_SETUP #line 203 "Gmsh.l" -return tSphere; +return tSinh; YY_BREAK case 136: YY_RULE_SETUP #line 204 "Gmsh.l" -return tSpline; +return tSphere; YY_BREAK case 137: YY_RULE_SETUP #line 205 "Gmsh.l" -return tSplit; +return tSpline; YY_BREAK case 138: YY_RULE_SETUP #line 206 "Gmsh.l" -return tSurface; +return tSplit; YY_BREAK case 139: YY_RULE_SETUP #line 207 "Gmsh.l" -return tSprintf; +return tSurface; YY_BREAK case 140: YY_RULE_SETUP #line 208 "Gmsh.l" -return tStrCat; +return tSprintf; YY_BREAK case 141: YY_RULE_SETUP #line 209 "Gmsh.l" -return tStrPrefix; +return tStrCat; YY_BREAK case 142: YY_RULE_SETUP #line 210 "Gmsh.l" -return tStrRelative; +return tStrPrefix; YY_BREAK case 143: YY_RULE_SETUP #line 211 "Gmsh.l" -return tStrFind; +return tStrRelative; YY_BREAK case 144: YY_RULE_SETUP #line 212 "Gmsh.l" -return tShow; +return tStrFind; YY_BREAK case 145: YY_RULE_SETUP #line 213 "Gmsh.l" -return tSymmetry; +return tShow; YY_BREAK case 146: YY_RULE_SETUP #line 214 "Gmsh.l" -return tSyncModel; +return tSymmetry; YY_BREAK case 147: YY_RULE_SETUP -#line 216 "Gmsh.l" -return tText2D; +#line 215 "Gmsh.l" +return tSyncModel; YY_BREAK case 148: YY_RULE_SETUP #line 217 "Gmsh.l" -return tText3D; +return tText2D; YY_BREAK case 149: YY_RULE_SETUP #line 218 "Gmsh.l" -return tTextAttributes; +return tText3D; YY_BREAK case 150: YY_RULE_SETUP #line 219 "Gmsh.l" -return tTime; +return tTextAttributes; YY_BREAK case 151: YY_RULE_SETUP #line 220 "Gmsh.l" -return tTransfinite; +return tTime; YY_BREAK case 152: YY_RULE_SETUP #line 221 "Gmsh.l" -return tTransfQuadTri; +return tTransfinite; YY_BREAK case 153: YY_RULE_SETUP #line 222 "Gmsh.l" -return tTranslate; +return tTransfQuadTri; YY_BREAK case 154: YY_RULE_SETUP #line 223 "Gmsh.l" -return tTanh; +return tTranslate; YY_BREAK case 155: YY_RULE_SETUP #line 224 "Gmsh.l" -return tTan; +return tTanh; YY_BREAK case 156: YY_RULE_SETUP #line 225 "Gmsh.l" -return tToday; +return tTan; YY_BREAK case 157: YY_RULE_SETUP -#line 227 "Gmsh.l" -return tUsing; +#line 226 "Gmsh.l" +return tToday; YY_BREAK case 158: YY_RULE_SETUP -#line 229 "Gmsh.l" -return tVolume; +#line 228 "Gmsh.l" +return tUsing; YY_BREAK case 159: -#line 232 "Gmsh.l" +YY_RULE_SETUP +#line 230 "Gmsh.l" +return tVolume; + YY_BREAK case 160: #line 233 "Gmsh.l" case 161: #line 234 "Gmsh.l" case 162: +#line 235 "Gmsh.l" +case 163: YY_RULE_SETUP -#line 234 "Gmsh.l" +#line 235 "Gmsh.l" { gmsh_yylval.d = atof((char *)gmsh_yytext); return tDOUBLE; } YY_BREAK -case 163: +case 164: YY_RULE_SETUP -#line 236 "Gmsh.l" +#line 237 "Gmsh.l" { gmsh_yylval.c = strsave((char*)gmsh_yytext); return tSTRING; } YY_BREAK -case 164: +case 165: YY_RULE_SETUP -#line 238 "Gmsh.l" +#line 239 "Gmsh.l" return gmsh_yytext[0]; YY_BREAK -case 165: +case 166: YY_RULE_SETUP -#line 240 "Gmsh.l" +#line 241 "Gmsh.l" ECHO; YY_BREAK -#line 2055 "Gmsh.yy.cpp" +#line 2065 "Gmsh.yy.cpp" case YY_STATE_EOF(INITIAL): yyterminate(); @@ -2343,7 +2353,7 @@ static int yy_get_next_buffer (void) while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) { yy_current_state = (int) yy_def[yy_current_state]; - if ( yy_current_state >= 759 ) + if ( yy_current_state >= 764 ) yy_c = yy_meta[(unsigned int) yy_c]; } yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; @@ -2371,11 +2381,11 @@ static int yy_get_next_buffer (void) while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) { yy_current_state = (int) yy_def[yy_current_state]; - if ( yy_current_state >= 759 ) + if ( yy_current_state >= 764 ) yy_c = yy_meta[(unsigned int) yy_c]; } yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; - yy_is_jam = (yy_current_state == 758); + yy_is_jam = (yy_current_state == 763); return yy_is_jam ? 0 : yy_current_state; } @@ -3048,7 +3058,7 @@ void gmsh_yyfree (void * ptr ) #define YYTABLES_NAME "yytables" -#line 240 "Gmsh.l" +#line 241 "Gmsh.l" diff --git a/Plugin/Transform.cpp b/Plugin/Transform.cpp index 6f5c1fd3cdc6c38f1f2589ff17d4cb0e6f23e7b9..ad91d582896897e122ce90d41941f7ff0e90f037 100644 --- a/Plugin/Transform.cpp +++ b/Plugin/Transform.cpp @@ -15,7 +15,7 @@ StringXNumber TransformOptions_Number[] = { {GMSH_FULLRC, "A31", NULL, 0.}, {GMSH_FULLRC, "A32", NULL, 0.}, {GMSH_FULLRC, "A33", NULL, 1.}, - {GMSH_FULLRC, "Tx", NULL, 0.}, + {GMSH_FULLRC, "Tx", NULL, 0.}, {GMSH_FULLRC, "Ty", NULL, 0.}, // cannot use T2 (reserved token in parser) {GMSH_FULLRC, "Tz", NULL, 0.}, // cannot use T3 (reserved token in parser) {GMSH_FULLRC, "SwapOrientation", NULL, 0.}, @@ -85,13 +85,13 @@ PView *GMSH_TransformPlugin::execute(PView *v) for(int ent = 0; ent < data1->getNumEntities(step); ent++){ for(int ele = 0; ele < data1->getNumElements(step, ent); ele++){ if(data1->skipElement(step, ent, ele)) continue; - if(swap) data1->revertElement(step, ent, ele); + if(swap) data1->reverseElement(step, ent, ele); for(int nod = 0; nod < data1->getNumNodes(step, ent, ele); nod++) data1->tagNode(step, ent, ele, nod, 0); } } } - + // transform all "0" nodes for(int step = 0; step < data1->getNumTimeSteps(); step++){ for(int ent = 0; ent < data1->getNumEntities(step); ent++){ diff --git a/Post/PViewData.h b/Post/PViewData.h index 4ae0bb74f257fda5341f06053532a50751c21df3..5136bf93d47869b887054a64827b544f7bba3f3a 100644 --- a/Post/PViewData.h +++ b/Post/PViewData.h @@ -174,7 +174,7 @@ class PViewData { double &x, double &y, double &z, double &style){} // change the orientation of the ele-th element - virtual void revertElement(int step, int ent, int ele){} + virtual void reverseElement(int step, int ent, int ele){} // check if the view is empty virtual bool empty(); diff --git a/Post/PViewDataGModel.cpp b/Post/PViewDataGModel.cpp index af7c1c49f1526ec7a27dcd14a2632e36ce03ebd2..25cc3ebdbb16a55933d1a37fc1f9fa59d09958a7 100644 --- a/Post/PViewDataGModel.cpp +++ b/Post/PViewDataGModel.cpp @@ -632,9 +632,9 @@ int PViewDataGModel::getType(int step, int ent, int ele) return _getElement(step, ent, ele)->getType(); } -void PViewDataGModel::revertElement(int step, int ent, int ele) +void PViewDataGModel::reverseElement(int step, int ent, int ele) { - if(!step) _getElement(step, ent, ele)->revert(); + if(!step) _getElement(step, ent, ele)->reverse(); } void PViewDataGModel::smooth() diff --git a/Post/PViewDataGModel.h b/Post/PViewDataGModel.h index 2425161e316c6e5afb2cc48b38f16d6085bb4a84..b29a02390747c1faf0c31279f679b80021a46d50 100644 --- a/Post/PViewDataGModel.h +++ b/Post/PViewDataGModel.h @@ -216,7 +216,7 @@ class PViewDataGModel : public PViewData { void setValue(int step, int ent, int ele, int node, int comp, double val); int getNumEdges(int step, int ent, int ele); int getType(int step, int ent, int ele); - void revertElement(int step, int ent, int ele); + void reverseElement(int step, int ent, int ele); void smooth(); double getMemoryInMb(); bool combineTime(nameData &nd); diff --git a/Post/PViewDataList.cpp b/Post/PViewDataList.cpp index c858d9ecb4ef66458beb0a1df132b9566d82c691..01feaae9796ca853c04ce2528aea3c6af0aea81a 100644 --- a/Post/PViewDataList.cpp +++ b/Post/PViewDataList.cpp @@ -493,7 +493,7 @@ void PViewDataList::getString3D(int i, int step, std::string &str, _getString(3, i, step, str, x, y, z, style); } -void PViewDataList::revertElement(int step, int ent, int ele) +void PViewDataList::reverseElement(int step, int ent, int ele) { if(step) return; if(ele != _lastElement) _setLast(ele); diff --git a/Post/PViewDataList.h b/Post/PViewDataList.h index 4844bf8588145e468401171c772e8f003c8fb7a4..bea48f95f6f386762a623822ed7af3e84a31d196 100644 --- a/Post/PViewDataList.h +++ b/Post/PViewDataList.h @@ -110,7 +110,7 @@ class PViewDataList : public PViewData { double &x, double &y, double &style); void getString3D(int i, int step, std::string &str, double &x, double &y, double &z, double &style); - void revertElement(int step, int ent, int ele); + void reverseElement(int step, int ent, int ele); void smooth(); bool combineTime(nameData &nd); bool combineSpace(nameData &nd); diff --git a/doc/texinfo/gmsh.texi b/doc/texinfo/gmsh.texi index ec276431b17d206f317902f828cc7743d2563b76..ee48423a85d23aa296b484c73396c6609e1c2808 100644 --- a/doc/texinfo/gmsh.texi +++ b/doc/texinfo/gmsh.texi @@ -2711,6 +2711,9 @@ quadrangle and a right angle (a value of 0 would only accept quadrangles with right angles; a value of 90 would allow degenerate quadrangles; default value is 45). +@item Reverse Line | Surface @{ @var{expression-list} @} ; +Reverses the mesh of the given line(s) or surface(s). + @item Save @var{char-expression}; Saves the mesh in a file named @var{char-expression}, using the current @code{Mesh.Format} (@pxref{Mesh options list}). If the path in