Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.
Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.
| Download
GAP 4.8.9 installation with standard packages -- copy to your CoCalc project to get it
Project: cocalc-sagemath-dev-slelievre
Views: 418346<Chapter Label="ChangesGAP47toGAP48">1<Heading>Changes between &GAP; 4.7 and &GAP; 4.8</Heading>23This chapter contains an overview of the most important changes4introduced in &GAP; 4.8.2 release (the 1st public release of &GAP; 4.8).5Later it will also contain information about subsequent update6releases for &GAP; 4.8.78First of all, the &GAP; development repository is now hosted on GitHub at9<URL>https://github.com/gap-system/gap</URL>, and &GAP; 4.8 is the first10major &GAP; release made from this repository. The public issue tracker11for the core &GAP; system is located at12<URL>https://github.com/gap-system/gap/issues</URL>,13and you may use appropriate milestones from14<URL>https://github.com/gap-system/gap/milestones</URL> to see all changes15that were introduced in corresponding &GAP; releases. An overview of the16most significant ones is provided below.1718<Section Label="gap482">19<Heading>&GAP; 4.8.2 (February 2016)</Heading>2021<Subsection Label="Changes in the core GAP48 system">22<Heading>Changes in the core &GAP; system introduced in &GAP; 4.8</Heading>2324New features:25<List>26<Item>27Added support for profiling which tracks how much time in spent on each line28of &GAP; code. This can be used to show where code is spending a long time29and also check which lines of code are even executed. See the documentation30for <Ref Func="ProfileLineByLine" BookName="ref"/> and31<Ref Func="CoverageLineByLine" BookName="ref"/> for details on generating profiles,32and the <Package>Profiling</Package> package for transforming these profiles33into a human-readable form.34</Item>35<!-- https://github.com/gap-system/gap/pull/192 -->36<Item>Added ability to install (in the library or packages) methods37for accessing lists using multiple indices and indexing into lists38using indices other than positive small integers. Such methods could allow,39for example, to support expressions like40<Log><![CDATA[41m[1,2];42m[1,2,3] := x;43IsBound(m["a","b",Z(7)]);44Unbind(m[1][2,3])45]]></Log>46</Item>47<Item>48<!-- https://github.com/gap-system/gap/pull/90 -->49Added support for partially variadic functions to allow function expressions50like51<Log><![CDATA[52function( a, b, c, x... ) ... end;53]]></Log>54which would require at least three arguments and assign the first three55to <A>a</A>, <A>b</A> and <A>c</A> and then a list containing any remaining56ones to <A>x</A>.57<P/>58The former special meaning of the argument <A>arg</A> is still supported59and is now equivalent to <C>function( arg... )</C>, so no changes in the60existing code are required.61</Item>62<Item>63Introduced <Ref Func="CallWithTimeout" BookName="ref"/> and64<Ref Func="CallWithTimeoutList" BookName="ref"/> to call a function with65a limit on the CPU time it can consume. This functionality may not be66available on all systems and you should check <C>GAPInfo.TimeoutsSupported</C>67before using this functionality.68</Item>69<Item>70&GAP; now displays the filename and line numbers of statements in backtraces71when entering the break loop.72</Item>73<Item>74Introduced <Ref Func="TestDirectory" BookName="ref"/> function to find75(recursively) all <F>.tst</F> files from a given directory or a list of76directories and run them using <Ref Func="Test" BookName="ref"/>.77</Item>78</List>7980Improved and extended functionality:81<List>82<Item>83Method tracing shows the filename and line of function during tracing.84</Item>85<Item>86<Ref Func="TraceAllMethods" BookName="ref"/> and87<Ref Func="UntraceAllMethods" BookName="ref"/> to turn on and off tracing all88methods in &GAP;. Also, for the uniform approach89<Ref Func="UntraceImmediateMethods" BookName="ref"/> has been added as an90equivalent of <C>TraceImmediateMethods(false)</C>.91</Item>92<Item>93The most common cases of <Ref Oper="AddDictionary" BookName="ref"/>94on three arguments now bypass method selection, avoiding the cost95of determining homogeneity for plain lists of mutable objects.96</Item>97<Item>98Improved methods for symmetric and alternating groups in the "natural"99representations and removed some duplicated code.100</Item>101<Item>102<!-- https://github.com/gap-system/gap/issues/7 -->103Package authors may optionally specify the source code repository,104issue tracker and support email address for their package using new105components in the <File>PackageInfo.g</File> file, which will be used106to create hyperlinks from the package overview page (see107<File>PackageInfo.g</File> from the Example package which you may use108as a template).109</Item>110</List>111112Changed functionality:113<List>114<Item>115As a preparation for the future developments to support multithreading,116some language extensions from the <Package>HPC-GAP</Package> project were117backported to the &GAP; library to help to unify the codebase of both118&GAP; 4 and <Package>HPC-GAP</Package>. The only change which is not backwards119compatible is that <C>atomic</C>, <C>readonly</C> and <C>readwrite</C> are120now keywords, and thus are no longer valid identifiers.121So if you have any variables or functions using that name,122you will have to change it in &GAP; 4.8.123</Item>124<Item>125There was inconsistent use of the following properties of semigroups:126<C>IsGroupAsSemigroup</C>, <C>IsMonoidAsSemigroup</C>, and127<C>IsSemilatticeAsSemigroup</C>. <C>IsGroupAsSemigroup</C> was true for128semigroups that mathematically defined a group, and for semigroups in the129category <Ref Filt="IsGroup" BookName="ref"/>; <C>IsMonoidAsSemigroup</C>130was only true for semigroups that mathematically defined monoids, but did131not belong to the category <Ref Filt="IsMonoid" BookName="ref"/>; and132<C>IsSemilatticeAsSemigroup</C> was simply a property of semigroups, as133there is no category <C>IsSemilattice</C>.134<P/>135From version 4.8 onwards, <C>IsSemilatticeAsSemigroup</C> is renamed to136<C>IsSemilattice</C>, and <C>IsMonoidAsSemigroup</C> returns true for137semigroups in the category <Ref Filt="IsMonoid" BookName="ref"/>.138<P/>139This way all of the properties of the type <C>IsXAsSemigroup</C> are consistent.140It should be noted that the only methods installed for <C>IsMonoidAsSemigroup</C>141belong to the <Package>Semigroups</Package> and <Package>Smallsemi</Package> packages.142</Item>143<Item>144<C>ReadTest</C> became obsolete and for backwards compatibility is replaced by145<Ref Func="Test" BookName="ref"/> with the option to compare the output up to146whitespaces.147</Item>148<Item>The function `ErrorMayQuit`, which differs from149<Ref Func="Error" BookName="ref"/> by not allowing execution to continue,150has been renamed to <Ref Func="ErrorNoReturn" BookName="ref"/>.151</Item>152</List>153154Fixed bugs:155156<List>157<Item>158A combination of two bugs could lead to a segfault. First off,159<Ref Func="NullMat" BookName="ref"/> (and various other &GAP; functions),160when asked to produce matrix over a small field, called161<Ref Func="ConvertToMatrixRep" BookName="ref"/>. After this, if the user162tried to change one of the entries to a value from a larger extension163field, this resulted in an error. (This is now fixed).164<P/>165Unfortunately, the C code catching this error had a bug and allowed166users to type <Q>return</Q> to continue while ignoring the conversion167error. This was a bad idea, as the C code would be in an inconsistent168state at this point, subsequently leading to a crash.169<P/>170This, too, has been fixed, by not allowing the user to ignore the error171by entering <Q>return</Q>.172</Item>173<Item>174The Fitting-free code and code inheriting PCGS is now using175<Ref Attr="IndicesEANormalSteps" BookName="ref"/> instead of176<Ref Attr="IndicesNormalSteps" BookName="ref"/>, as these indices are neither177guaranteed, nor required to be maximally refined when restricting to subgroups.178</Item>179<Item>180A bug that caused a break loop in the computation of the Hall subgroup for181groups having a trivial Fitting subgroup.182</Item>183<Item>184Including a <C>break</C> or <C>continue</C> statement in a function body185but not in a loop now gives a syntax error instead of failing at run time.186</Item>187<Item>188<Ref Oper="GroupGeneralMappingByImages" BookName="ref"/> now verifies that189that image of a mapping is contained in its range.190</Item>191<Item>192Fixed a bug in caching the degree of transformation that could lead to a193non-identity transformation accidentally changing its value to the identity194transformation.195</Item>196<Item>197Fixed the problem with using Windows default browser as a help viewer using198<C>SetHelpViewer("browser");</C>.199</Item>200</List>201202</Subsection>203204<Subsection Label="New and updated packages since GAP 4.7.8">205<Heading>New and updated packages since &GAP; 4.7.8</Heading>206207<Index>Packages, new</Index>208At the time of the release of &GAP; 4.7.8 there were 119 packages209redistributed with &GAP;. New packages that have been added to the210redistribution since the release of &GAP; 4.7.8 are:211212<List>213<Item>214<Package>CAP</Package> (Categories, Algorithms, Programming) package215by Sebastian Gutsche, Sebastian Posur and Øystein Skartsæterhagen,216together with three associated packages217<Package>GeneralizedMorphismsForCAP</Package>,218<Package>LinearAlgebraForCAP</Package> and219<Package>ModulePresentationsForCAP</Package>220(all three - by Sebastian Gutsche and Sebastian Posur).221</Item>222<Item>223<Package>Digraphs</Package> package by Jan De Beule, Julius Jonušas,224James Mitchell, Michael Torpey and Wilf Wilson, which provides225functionality to work with graphs, digraphs, and multidigraphs.226</Item>227<Item>228<Package>FinInG</Package> package by John Bamberg, Anton Betten,229Philippe Cara, Jan De Beule, Michel Lavrauw and Max Neunhöffer230for computation in Finite Incidence Geometry.231</Item>232<Item>233<Package>HeLP</Package> package by Andreas Bächle and Leo Margolis,234which computes constraints on partial augmentations of torsion units235in integral group rings using a method developed by Luthar, Passi and236Hertweck. The package can be employed to verify the Zassenhaus237Conjecture and the Prime Graph Question for finite groups, once238their characters are known. It uses an interface to the software239package <Package>4ti2</Package> to solve integral linear inequalities.240</Item>241<Item>242<Package>matgrp</Package> package by Alexander Hulpke, which provides243an interface to the solvable radical functionality for matrix groups,244building on constructive recognition.245</Item>246<Item>247<Package>NormalizInterface</Package> package by Sebastian Gutsche,248Max Horn and Christof Söger, which provides a GAP interface to249<Package>Normaliz</Package>, enabling direct access to the complete250functionality of <Package>Normaliz</Package>, such as computations251in affine monoids, vector configurations, lattice polytopes, and252rational cones.253</Item>254<Item>255<Package>profiling</Package> package by Christopher Jefferson for256transforming profiles produced by <Ref Func="ProfileLineByLine" BookName="ref"/>257and <Ref Func="CoverageLineByLine" BookName="ref"/> into a human-readable form.258</Item>259<Item>260<Package>Utils</Package> package by Sebastian Gutsche, Stefan Kohl and261Christopher Wensley, which provides a collection of utility functions262gleaned from many packages.263</Item>264<Item>265<Package>XModAlg</Package> package by Zekeriya Arvasi and Alper Odabas,266which provides a collection of functions for computing with crossed267modules and Cat1-algebras and morphisms of these structures.268</Item>269</List>270271</Subsection>272273</Section>274275276<Section Label="gap483">277<Heading>&GAP; 4.8.3 (March 2016)</Heading>278279<Subsection Label="Changes in the core GAP system introduced in GAP 4.8.3">280<Heading>Changes in the core &GAP; system introduced in &GAP; 4.8.3</Heading>281282New features:283<List>284<Item>285<!-- #647 -->286New function <Ref Func="TestPackage" BookName="ref"/> to run standard tests287(if available) for a single package in the current &GAP; session (also callable288via <C>make testpackage PKGNAME=pkgname</C> to run package tests in the same289settings that are used for testing &GAP; releases).290</Item>291</List>292293Improved and extended functionality:294<List>295<Item>296<!-- #670 -->297<Ref Func="TestDirectory" BookName="ref"/> now prints a special status message298to indicate the outcome of the test (this is convenient for automated testing).299If necessary, this message may be suppressed by using the option300<C>suppressStatusMessage</C>301</Item>302<Item>303<!-- [#655] -->304Improved output of tracing methods (which may be invoked, for example, with305<Ref Func="TraceAllMethods" BookName="ref"/>) by displaying filename and line306number in some more cases.307</Item>308</List>309310Changed functionality:311<List>312<Item>313<!-- #615 -->314Fixed some inconsistencies in the usage of315<Ref Prop="IsGeneratorsOfSemigroup" BookName="ref"/>.316</Item>317</List>318319Fixed bugs that could lead to incorrect results:320<List>321<Item>322<!-- #626 -->323Fallback methods for conjugacy classes, that were never intended for infinite324groups, now use <Ref Prop="IsFinite" BookName="ref"/> filter to prevent them325being called for infinite groups. [Reported by Gabor Horvath]326</Item>327</List>328329Fixed bugs that could lead to break loops:330<List>331<Item>332<!-- #665 -->333Calculating stabiliser for the alternating group caused a break loop in the334case when it defers to the corresponding symmetric group.335</Item>336<Item>337<!-- #663 -->338It was not possible to use <Ref Func="DotFileLatticeSubgroups" BookName="ref"/>339for a trivial group. [Reported by Sergio Siccha]340</Item>341<Item>342<!-- #648 -->343A break loop while computing <Ref Attr="AutomorphismGroup" BookName="ref"/> for344<C>TransitiveGroup(12,269)</C>. [Reported by Ignat Soroko]345</Item>346<Item>347<!-- #622 -->348A break loop while computing conjugacy classes of <C>PSL(6,4)</C>.349[Reported by Martin Macaj]350</Item>351</List>352353Other fixed bugs:354<List>355<Item>356<!-- #654 -->357Fix for using Firefox as a default help viewer with358<Ref Func="SetHelpViewer" BookName="ref"/>. [Reported by Tom McDonough]359</Item>360</List>361</Subsection>362</Section>363364<Section Label="gap484">365<Heading>&GAP; 4.8.4 (June 2016)</Heading>366367<Subsection Label="Changes in the core GAP system introduced in GAP 4.8.4">368<Heading>Changes in the core &GAP; system introduced in &GAP; 4.8.4</Heading>369370New features:371<List>372<Item>373<!-- #737 -->374The &GAP; distribution now includes <F>bin/BuildPackages.sh</F>, a script which375can be started from the <F>pkg</F> directory via <C>../bin/BuildPackages.sh</C>376and will attempt to build as many packages as possible. It replaces the377<F>InstPackages.sh</F> script which was not a part of the &GAP; distribution378and had to be downloaded separately from the &GAP; website. The new script is379more robust and simplifies adding new packages with binaries, as it requires no380adjustments if the new package supports the standard <C>./configure; make</C>381build procedure.382</Item>383</List>384385Improved and extended functionality:386<List>387<Item>388<!-- #678 -->389<Ref Func="SimpleGroup" BookName="ref"/> now produces more informative error390message in the case when <Ref Func="AtlasGroup" BookName="AtlasRep"/> could391not load the requested group.392</Item>393<Item>394<!-- #610 -->395An info message with the suggestion to use396<Ref InfoClass="InfoPackageLoading" BookName="ref"/> will now be displayed397when <Ref Func="LoadPackage" BookName="ref"/> returns <K>fail</K>398(unless &GAP; is started with <C>-b</C> option).399</Item>400<Item>401<!-- #728 -->402The build system will now enable C++ support in GMP403only if a working C++ compiler is detected.404</Item>405<Item>406<!-- #757 -->407More checks were added when embedding coefficient rings or rational numbers408into polynomial rings in order to forbid adding polynomials in different409characteristic.410</Item>411</List>412413Fixed bugs that could lead to crashes:414<List>415<Item>416<!-- #685 -->417Fixed the crash in <C>--cover</C> mode when reading files418with more than 65,536 lines.419</Item>420</List>421422Fixed bugs that could lead to incorrect results:423<List>424<Item>425<!-- #741 -->426Fixed an error in the code for partial permutations that427occurred on big-endian systems. [Reported by Bill Allombert]428</Item>429<Item>430<!-- #766 -->431Fixed the kernel method for <Ref Oper="Remove" BookName="ref"/> with432one argument, which failed to reduce the length of a list to the433position of the last bound entry. [Reported by Peter Schauenburg]434</Item>435</List>436437Fixed bugs that could lead to break loops:438<List>439<Item>440<!-- #679 -->441Fixed the break loop while using <Ref Oper="Factorization" BookName="ref"/>442on permutation groups by removing some old code that relied on further caching443in <C>Factorization</C>. [Reported by Grahame Erskine]444</Item>445<Item>446<!-- #681 -->447Fixed a problem with computation of maximal subgroups in an almost448simple group. [Reported by Ramon Esteban Romero]449</Item>450<Item>451<!-- #773 -->452Added missing methods for <Ref Oper="Intersection2" BookName="ref"/>453when one of the arguments is an empty list. [Reported by Wilf Wilson]454</Item>455</List>456457Other fixed bugs:458<List>459<Item>460<!-- #770 -->461Fixed several bugs in <Ref Func="RandomPrimitivePolynomial" BookName="ref"/>.462[Reported by Nusa Zidaric]463</Item>464<Item>465<!-- #781 -->466Fixed several problems with <Ref Oper="Random" BookName="ref"/>467on long lists in 64-bit GAP installations.468</Item>469</List>470471</Subsection>472473</Section>474475<Section Label="gap485">476<Heading>&GAP; 4.8.5 (September 2016)</Heading>477478<Subsection Label="Changes in the core GAP system introduced in GAP 4.8.5">479<Heading>Changes in the core &GAP; system introduced in &GAP; 4.8.5</Heading>480481Improved and extended functionality:482<List>483<Item>484<!-- #827 -->485The error messages produced when an unexpected <K>fail</K> is returned were486made more clear by explicitly telling that the result should not be boolean487or <K>fail</K> (before it only said <Q>not a boolean</Q>).488</Item>489<Item>490<!-- #797 -->491For consistency, both <Ref Func="NrTransitiveGroups" BookName="ref" /> and492<Ref Func="TransitiveGroup" BookName="ref" /> now disallow the transitive493group of degree 1.494</Item>495</List>496497Fixed bugs that could lead to incorrect results:498<List>499<Item>500<!-- #869 -->501A bug in the code for algebraic field extensions over non-prime fields that502may cause, for example, a list of all elements of the extension not being503a duplicate-free. [Reported by Huta Gana]504</Item>505<Item>506<!-- #875 -->507So far, <Ref Func="FileString" BookName="GAPDoc" /> only wrote files of sizes508less than 2G and did not indicate an error in case of larger strings. Now509strings of any length can be written, and in the case of a failure510the corresponding system error is shown.511</Item>512</List>513514Fixed bugs that could lead to break loops:515<List>516<Item>517<!-- #877 -->518<Ref Oper="NaturalHomomorphismByIdeal" BookName="ref" /> was not reducing519monomials before forming a quotient ring, causing a break loop on some520inputs. [Reported by Dmytro Savchuk]521</Item>522<Item>523<!-- #867 -->524A bug in <Ref Func="DefaultInfoHandler" BookName="ref" /> caused525a break loop on startup with the setting526<C>SetUserPreference( "InfoPackageLoadingLevel", 4 )</C>`.527[Reported by Mathieu Dutour]528</Item>529<Item>530<!-- #801 -->531The <Ref Oper="Iterator" BookName="ref" /> for permutation groups was broken532when the <Ref Attr="StabChainMutable" Label="for a group" BookName="ref" />533of the group was not reduced, which can reasonably happen as the result of534various algorithms.535</Item>536</List>537538</Subsection>539540</Section>541542<Section Label="gap486">543<Heading>&GAP; 4.8.6 (November 2016)</Heading>544545<Subsection Label="Changes in the core GAP system introduced in GAP 4.8.6">546<Heading>Changes in the core &GAP; system introduced in &GAP; 4.8.6</Heading>547548Fixed bugs that could lead to break loops:549<List>550<Item>551<!-- #910 -->552Fixed regression in the &GAP; kernel code introduced in &GAP; 4.8.5 and553breaking <Ref Func="StringFile" BookName="gapdoc"/> ability to work554with compressed files. [Reported by Bill Allombert]555</Item>556</List>557558</Subsection>559560</Section>561562563<Section Label="gap487">564<Heading>&GAP; 4.8.7 (March 2017)</Heading>565566<Subsection Label="Changes in the core GAP system introduced in GAP 4.8.7">567<Heading>Changes in the core &GAP; system introduced in &GAP; 4.8.7</Heading>568569Fixed bugs that could lead to incorrect results:570<List>571<Item>572<!-- #1016, #1018 -->573Fixed a regression from &GAP; 4.7.6 when reading compressed574files after a workspace is loaded. Before the fix, if &GAP;575is started with the <C>-L</C> option (load workspace), using576<Ref Oper="ReadLine" BookName="ref"/> on the input stream for577a compressed file returned by <Ref Oper="InputTextFile" BookName="ref"/>578only returned the first character. [Reported by Bill Allombert]579</Item>580</List>581582Other fixed bugs:583<List>584<Item>585<!-- #924, 942 -->586Fixed compiler warning occurring when &GAP; is compiled with gcc 6.2.0.587[Reported by Bill Allombert]588</Item>589</List>590591592</Subsection>593594595<Subsection Label="New and updated packages since GAP 4.8.6">596<Heading>New and updated packages since &GAP; 4.8.6</Heading>597598This release contains updated versions of 19 packages from &GAP; 4.8.6599distribution. Additionally, the following package has been added for the600redistribution with &GAP;:601602<List>603<Item>604<Package>lpres</Package> package (author: René Hartung, maintainer: Laurent605Bartholdi) to work with L-presented groups, namely groups given by a finite606generating set and a possibly infinite set of relations given as iterates of607finitely many seed relations by a finite set of endomorphisms. The package608implements nilpotent quotient, Todd-Coxeter and Reidemeister-Schreier609algorithms for such groups.610</Item>611</List>612613</Subsection>614615</Section>616617618<Section Label="gap488">619<Heading>&GAP; 4.8.8 (August 2017)</Heading>620621<Subsection Label="Changes in the core GAP system introduced in GAP 4.8.8">622<Heading>Changes in the core &GAP; system introduced in &GAP; 4.8.8</Heading>623624Fixed bugs that could lead to incorrect results:625<List>626<Item>627<!-- #1431 -->628Fixed a bug in <Ref Func="RepresentativeAction" BookName="ref"/> producing629incorrect answers for both symmetric and alternating groups, with both630<Ref Func="OnTuples" BookName="ref"/> and <Ref Func="OnSets" BookName="ref"/>,631by producing elements outside the group. [Reported by Mun See Chang]632</Item>633</List>634635Fixed bugs that could lead to break loops:636<List>637<Item>638<!-- #1515 -->639Fixed a bug in <Ref Func="RepresentativeAction" BookName="ref"/>640for <M>S_n</M> and <M>A_n</M> acting on non-standard domains.641</Item>642</List>643644Other fixed bugs:645<List>646<Item>647<!-- #1579 -->648Fixed a problem with checking the path to a file649when using the default browser as a help viewer on Windows.650[Reported by Jack Saunders]651</Item>652</List>653654</Subsection>655656<Subsection Label="New and updated packages since GAP 4.8.7">657<Heading>New and updated packages since &GAP; 4.8.7</Heading>658659This release contains updated versions of 29 packages from &GAP; 4.8.7660distribution. Additionally, the <Package>Gpd</Package> package661(author: Chris Wensley) has been renamed to <Package>Groupoids</Package>.662663</Subsection>664665</Section>666667<Section Label="gap489">668<Heading>&GAP; 4.8.9 (December 2017)</Heading>669670This release contains updated versions of 56 packages from &GAP; 4.8.8671distribution. The core part of the &GAP; system in this release is672identical to the one from the &GAP; 4.8.8 release.673674</Section>675676<Section Label="gap48_10">677<Heading>&GAP; 4.8.10 (January 2018)</Heading>678679This release contains updated versions of 9 packages from &GAP; 4.8.9680distribution. It also contains an older version 2.8.0 of the681<Package>Semigroups</Package> package, which is compatible with &GAP; 4.8,682and an older version 4.7.6 of the <Package>orb</Package> package, which is683compatible with the specified version of the <Package>Semigroups</Package>.684Additionally, it provides a working version of the <Package>Digraphs</Package>685package for Windows. The core part of the &GAP; system in this release is again686identical to the one from the &GAP; 4.8.8 release.687688</Section>689690</Chapter>691692693<!-- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -->694<!-- %% -->695<!-- %E -->696697698