texlive-collection-latexextra-vl.spec 272 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987
  1. ## -*- coding: utf-8-unix -*-
  2. ## NOTE: This spec file is generated by tlpdb2rpmspec 2015-4:
  3. ## tlpdb2rpmspec collection-latexextra
  4. %global _use_internal_dependency_generator 0
  5. %global __find_provides %{nil}
  6. %global __find_requires %{nil}
  7. Summary: TeX Live: LaTeX additional packages
  8. Summary(ja): TeX Live: LaTeX additional packages
  9. Name: texlive-collection-latexextra
  10. Version: 2015
  11. Release: 4%{?_dist_release}
  12. License: LPPL, LPPL 1.3, Public Domain, GPL+, GPLv3+, LPPL 1.2, Freely redistributable without restriction, GPLv2+, LGPLv2+, ASL 2.0, BSD, Artistic
  13. Group: Applications/Publishing
  14. URL:http://www.tug.org/texlive/
  15. Source0: 2up.doc.tar.xz
  16. Source1: 2up.tar.xz
  17. Source2: ESIEEcv.doc.tar.xz
  18. Source3: ESIEEcv.source.tar.xz
  19. Source4: ESIEEcv.tar.xz
  20. Source5: GS1.doc.tar.xz
  21. Source6: GS1.source.tar.xz
  22. Source7: GS1.tar.xz
  23. Source8: HA-prosper.doc.tar.xz
  24. Source9: HA-prosper.source.tar.xz
  25. Source10: HA-prosper.tar.xz
  26. Source11: Tabbing.doc.tar.xz
  27. Source12: Tabbing.source.tar.xz
  28. Source13: Tabbing.tar.xz
  29. Source14: a0poster.doc.tar.xz
  30. Source15: a0poster.tar.xz
  31. Source16: a4wide.doc.tar.xz
  32. Source17: a4wide.tar.xz
  33. Source18: a5comb.doc.tar.xz
  34. Source19: a5comb.tar.xz
  35. Source20: abraces.doc.tar.xz
  36. Source21: abraces.tar.xz
  37. Source22: abstract.doc.tar.xz
  38. Source23: abstract.source.tar.xz
  39. Source24: abstract.tar.xz
  40. Source25: achemso.doc.tar.xz
  41. Source26: achemso.source.tar.xz
  42. Source27: achemso.tar.xz
  43. Source28: acro.doc.tar.xz
  44. Source29: acro.tar.xz
  45. Source30: acronym.doc.tar.xz
  46. Source31: acronym.source.tar.xz
  47. Source32: acronym.tar.xz
  48. Source33: acroterm.doc.tar.xz
  49. Source34: acroterm.source.tar.xz
  50. Source35: acroterm.tar.xz
  51. Source36: actuarialangle.doc.tar.xz
  52. Source37: actuarialangle.tar.xz
  53. Source38: addlines.doc.tar.xz
  54. Source39: addlines.source.tar.xz
  55. Source40: addlines.tar.xz
  56. Source41: adjmulticol.doc.tar.xz
  57. Source42: adjmulticol.source.tar.xz
  58. Source43: adjmulticol.tar.xz
  59. Source44: adjustbox.doc.tar.xz
  60. Source45: adjustbox.source.tar.xz
  61. Source46: adjustbox.tar.xz
  62. Source47: adrconv.doc.tar.xz
  63. Source48: adrconv.source.tar.xz
  64. Source49: adrconv.tar.xz
  65. Source50: advdate.doc.tar.xz
  66. Source51: advdate.tar.xz
  67. Source52: akktex.doc.tar.xz
  68. Source53: akktex.tar.xz
  69. Source54: akletter.doc.tar.xz
  70. Source55: akletter.tar.xz
  71. Source56: alertmessage.doc.tar.xz
  72. Source57: alertmessage.source.tar.xz
  73. Source58: alertmessage.tar.xz
  74. Source59: alnumsec.doc.tar.xz
  75. Source60: alnumsec.source.tar.xz
  76. Source61: alnumsec.tar.xz
  77. Source62: alterqcm.doc.tar.xz
  78. Source63: alterqcm.tar.xz
  79. Source64: altfont.doc.tar.xz
  80. Source65: altfont.source.tar.xz
  81. Source66: altfont.tar.xz
  82. Source67: amsaddr.doc.tar.xz
  83. Source68: amsaddr.source.tar.xz
  84. Source69: amsaddr.tar.xz
  85. Source70: animate.doc.tar.xz
  86. Source71: animate.source.tar.xz
  87. Source72: animate.tar.xz
  88. Source73: anonchap.doc.tar.xz
  89. Source74: anonchap.tar.xz
  90. Source75: answers.doc.tar.xz
  91. Source76: answers.source.tar.xz
  92. Source77: answers.tar.xz
  93. Source78: anyfontsize.doc.tar.xz
  94. Source79: anyfontsize.tar.xz
  95. Source80: appendix.doc.tar.xz
  96. Source81: appendix.source.tar.xz
  97. Source82: appendix.tar.xz
  98. Source83: appendixnumberbeamer.doc.tar.xz
  99. Source84: appendixnumberbeamer.tar.xz
  100. Source85: apptools.doc.tar.xz
  101. Source86: apptools.source.tar.xz
  102. Source87: apptools.tar.xz
  103. Source88: arcs.doc.tar.xz
  104. Source89: arcs.source.tar.xz
  105. Source90: arcs.tar.xz
  106. Source91: arrayjobx.doc.tar.xz
  107. Source92: arrayjobx.tar.xz
  108. Source93: arraysort.doc.tar.xz
  109. Source94: arraysort.source.tar.xz
  110. Source95: arraysort.tar.xz
  111. Source96: arydshln.doc.tar.xz
  112. Source97: arydshln.source.tar.xz
  113. Source98: arydshln.tar.xz
  114. Source99: asciilist.doc.tar.xz
  115. Source100: asciilist.source.tar.xz
  116. Source101: asciilist.tar.xz
  117. Source102: assignment.doc.tar.xz
  118. Source103: assignment.tar.xz
  119. Source104: assoccnt.doc.tar.xz
  120. Source105: assoccnt.tar.xz
  121. Source106: attachfile.doc.tar.xz
  122. Source107: attachfile.source.tar.xz
  123. Source108: attachfile.tar.xz
  124. Source109: authoraftertitle.doc.tar.xz
  125. Source110: authoraftertitle.tar.xz
  126. Source111: authorindex.doc.tar.xz
  127. Source112: authorindex.tar.xz
  128. Source113: autonum.doc.tar.xz
  129. Source114: autonum.source.tar.xz
  130. Source115: autonum.tar.xz
  131. Source116: autopdf.doc.tar.xz
  132. Source117: autopdf.source.tar.xz
  133. Source118: autopdf.tar.xz
  134. Source119: avremu.doc.tar.xz
  135. Source120: avremu.source.tar.xz
  136. Source121: avremu.tar.xz
  137. Source122: background.doc.tar.xz
  138. Source123: background.source.tar.xz
  139. Source124: background.tar.xz
  140. Source125: bankstatement.doc.tar.xz
  141. Source126: bankstatement.tar.xz
  142. Source127: bashful.doc.tar.xz
  143. Source128: bashful.tar.xz
  144. Source129: basicarith.doc.tar.xz
  145. Source130: basicarith.source.tar.xz
  146. Source131: basicarith.tar.xz
  147. Source132: bchart.doc.tar.xz
  148. Source133: bchart.tar.xz
  149. Source134: beamer2thesis.doc.tar.xz
  150. Source135: beamer2thesis.tar.xz
  151. Source136: beameraudience.doc.tar.xz
  152. Source137: beameraudience.tar.xz
  153. Source138: beamerdarkthemes.doc.tar.xz
  154. Source139: beamerdarkthemes.tar.xz
  155. Source140: beamerposter.doc.tar.xz
  156. Source141: beamerposter.tar.xz
  157. Source142: beamersubframe.doc.tar.xz
  158. Source143: beamersubframe.source.tar.xz
  159. Source144: beamersubframe.tar.xz
  160. Source145: beamertheme-detlevcm.doc.tar.xz
  161. Source146: beamertheme-detlevcm.tar.xz
  162. Source147: beamertheme-metropolis.doc.tar.xz
  163. Source148: beamertheme-metropolis.source.tar.xz
  164. Source149: beamertheme-metropolis.tar.xz
  165. Source150: beamertheme-phnompenh.doc.tar.xz
  166. Source151: beamertheme-phnompenh.tar.xz
  167. Source152: beamertheme-upenn-bc.doc.tar.xz
  168. Source153: beamertheme-upenn-bc.tar.xz
  169. Source154: beamerthemejltree.tar.xz
  170. Source155: beamerthemenirma.doc.tar.xz
  171. Source156: beamerthemenirma.tar.xz
  172. Source157: beton.doc.tar.xz
  173. Source158: beton.source.tar.xz
  174. Source159: beton.tar.xz
  175. Source160: bewerbung.doc.tar.xz
  176. Source161: bewerbung.source.tar.xz
  177. Source162: bewerbung.tar.xz
  178. Source163: bez123.doc.tar.xz
  179. Source164: bez123.source.tar.xz
  180. Source165: bez123.tar.xz
  181. Source166: bezos.doc.tar.xz
  182. Source167: bezos.tar.xz
  183. Source168: bhcexam.doc.tar.xz
  184. Source169: bhcexam.source.tar.xz
  185. Source170: bhcexam.tar.xz
  186. Source171: bigfoot.doc.tar.xz
  187. Source172: bigfoot.source.tar.xz
  188. Source173: bigfoot.tar.xz
  189. Source174: bigints.doc.tar.xz
  190. Source175: bigints.tar.xz
  191. Source176: bizcard.doc.tar.xz
  192. Source177: bizcard.source.tar.xz
  193. Source178: bizcard.tar.xz
  194. Source179: blindtext.doc.tar.xz
  195. Source180: blindtext.source.tar.xz
  196. Source181: blindtext.tar.xz
  197. Source182: blkarray.doc.tar.xz
  198. Source183: blkarray.tar.xz
  199. Source184: block.doc.tar.xz
  200. Source185: block.tar.xz
  201. Source186: blowup.doc.tar.xz
  202. Source187: blowup.source.tar.xz
  203. Source188: blowup.tar.xz
  204. Source189: bnumexpr.doc.tar.xz
  205. Source190: bnumexpr.source.tar.xz
  206. Source191: bnumexpr.tar.xz
  207. Source192: boites.doc.tar.xz
  208. Source193: boites.source.tar.xz
  209. Source194: boites.tar.xz
  210. Source195: bold-extra.doc.tar.xz
  211. Source196: bold-extra.tar.xz
  212. Source197: bookcover.doc.tar.xz
  213. Source198: bookcover.source.tar.xz
  214. Source199: bookcover.tar.xz
  215. Source200: bookest.doc.tar.xz
  216. Source201: bookest.tar.xz
  217. Source202: booklet.doc.tar.xz
  218. Source203: booklet.source.tar.xz
  219. Source204: booklet.tar.xz
  220. Source205: boolexpr.doc.tar.xz
  221. Source206: boolexpr.source.tar.xz
  222. Source207: boolexpr.tar.xz
  223. Source208: bophook.doc.tar.xz
  224. Source209: bophook.source.tar.xz
  225. Source210: bophook.tar.xz
  226. Source211: boxedminipage.doc.tar.xz
  227. Source212: boxedminipage.tar.xz
  228. Source213: boxedminipage2e.doc.tar.xz
  229. Source214: boxedminipage2e.source.tar.xz
  230. Source215: boxedminipage2e.tar.xz
  231. Source216: boxhandler.doc.tar.xz
  232. Source217: boxhandler.source.tar.xz
  233. Source218: boxhandler.tar.xz
  234. Source219: bracketkey.doc.tar.xz
  235. Source220: bracketkey.tar.xz
  236. Source221: braket.doc.tar.xz
  237. Source222: braket.tar.xz
  238. Source223: breakurl.doc.tar.xz
  239. Source224: breakurl.source.tar.xz
  240. Source225: breakurl.tar.xz
  241. Source226: bullcntr.doc.tar.xz
  242. Source227: bullcntr.source.tar.xz
  243. Source228: bullcntr.tar.xz
  244. Source229: bussproofs.doc.tar.xz
  245. Source230: bussproofs.tar.xz
  246. Source231: bxdpx-beamer.doc.tar.xz
  247. Source232: bxdpx-beamer.tar.xz
  248. Source233: bxpdfver.doc.tar.xz
  249. Source234: bxpdfver.tar.xz
  250. Source235: calcage.doc.tar.xz
  251. Source236: calcage.source.tar.xz
  252. Source237: calcage.tar.xz
  253. Source238: calctab.doc.tar.xz
  254. Source239: calctab.tar.xz
  255. Source240: calculator.doc.tar.xz
  256. Source241: calculator.source.tar.xz
  257. Source242: calculator.tar.xz
  258. Source243: calrsfs.doc.tar.xz
  259. Source244: calrsfs.tar.xz
  260. Source245: cals.doc.tar.xz
  261. Source246: cals.source.tar.xz
  262. Source247: cals.tar.xz
  263. Source248: calxxxx-yyyy.doc.tar.xz
  264. Source249: calxxxx-yyyy.tar.xz
  265. Source250: cancel.doc.tar.xz
  266. Source251: cancel.tar.xz
  267. Source252: canoniclayout.doc.tar.xz
  268. Source253: canoniclayout.source.tar.xz
  269. Source254: canoniclayout.tar.xz
  270. Source255: capt-of.doc.tar.xz
  271. Source256: capt-of.source.tar.xz
  272. Source257: capt-of.tar.xz
  273. Source258: captcont.doc.tar.xz
  274. Source259: captcont.source.tar.xz
  275. Source260: captcont.tar.xz
  276. Source261: captdef.doc.tar.xz
  277. Source262: captdef.tar.xz
  278. Source263: carbohydrates.doc.tar.xz
  279. Source264: carbohydrates.tar.xz
  280. Source265: cases.doc.tar.xz
  281. Source266: cases.tar.xz
  282. Source267: casyl.doc.tar.xz
  283. Source268: casyl.tar.xz
  284. Source269: catchfilebetweentags.doc.tar.xz
  285. Source270: catchfilebetweentags.source.tar.xz
  286. Source271: catchfilebetweentags.tar.xz
  287. Source272: catechis.doc.tar.xz
  288. Source273: catechis.source.tar.xz
  289. Source274: catechis.tar.xz
  290. Source275: catoptions.doc.tar.xz
  291. Source276: catoptions.tar.xz
  292. Source277: cbcoptic.doc.tar.xz
  293. Source278: cbcoptic.tar.xz
  294. Source279: ccaption.doc.tar.xz
  295. Source280: ccaption.source.tar.xz
  296. Source281: ccaption.tar.xz
  297. Source282: cclicenses.doc.tar.xz
  298. Source283: cclicenses.source.tar.xz
  299. Source284: cclicenses.tar.xz
  300. Source285: cd.doc.tar.xz
  301. Source286: cd.source.tar.xz
  302. Source287: cd.tar.xz
  303. Source288: cd-cover.doc.tar.xz
  304. Source289: cd-cover.source.tar.xz
  305. Source290: cd-cover.tar.xz
  306. Source291: cdpbundl.doc.tar.xz
  307. Source292: cdpbundl.source.tar.xz
  308. Source293: cdpbundl.tar.xz
  309. Source294: cellspace.doc.tar.xz
  310. Source295: cellspace.tar.xz
  311. Source296: censor.doc.tar.xz
  312. Source297: censor.tar.xz
  313. Source298: changebar.doc.tar.xz
  314. Source299: changebar.source.tar.xz
  315. Source300: changebar.tar.xz
  316. Source301: changelayout.doc.tar.xz
  317. Source302: changelayout.tar.xz
  318. Source303: changepage.doc.tar.xz
  319. Source304: changepage.source.tar.xz
  320. Source305: changepage.tar.xz
  321. Source306: changes.doc.tar.xz
  322. Source307: changes.source.tar.xz
  323. Source308: changes.tar.xz
  324. Source309: chappg.doc.tar.xz
  325. Source310: chappg.source.tar.xz
  326. Source311: chappg.tar.xz
  327. Source312: chapterfolder.doc.tar.xz
  328. Source313: chapterfolder.source.tar.xz
  329. Source314: chapterfolder.tar.xz
  330. Source315: chet.doc.tar.xz
  331. Source316: chet.tar.xz
  332. Source317: chextras.doc.tar.xz
  333. Source318: chextras.source.tar.xz
  334. Source319: chextras.tar.xz
  335. Source320: chkfloat.doc.tar.xz
  336. Source321: chkfloat.tar.xz
  337. Source322: chletter.doc.tar.xz
  338. Source323: chletter.source.tar.xz
  339. Source324: chletter.tar.xz
  340. Source325: chngcntr.doc.tar.xz
  341. Source326: chngcntr.tar.xz
  342. Source327: chronology.doc.tar.xz
  343. Source328: chronology.tar.xz
  344. Source329: circ.doc.tar.xz
  345. Source330: circ.source.tar.xz
  346. Source331: circ.tar.xz
  347. Source332: classics.doc.tar.xz
  348. Source333: classics.tar.xz
  349. Source334: clefval.doc.tar.xz
  350. Source335: clefval.source.tar.xz
  351. Source336: clefval.tar.xz
  352. Source337: cleveref.doc.tar.xz
  353. Source338: cleveref.source.tar.xz
  354. Source339: cleveref.tar.xz
  355. Source340: clipboard.doc.tar.xz
  356. Source341: clipboard.tar.xz
  357. Source342: clock.doc.tar.xz
  358. Source343: clock.tar.xz
  359. Source344: cmdstring.doc.tar.xz
  360. Source345: cmdstring.tar.xz
  361. Source346: cmdtrack.doc.tar.xz
  362. Source347: cmdtrack.source.tar.xz
  363. Source348: cmdtrack.tar.xz
  364. Source349: cmsd.doc.tar.xz
  365. Source350: cmsd.tar.xz
  366. Source351: cnltx.doc.tar.xz
  367. Source352: cnltx.tar.xz
  368. Source353: cntformats.doc.tar.xz
  369. Source354: cntformats.tar.xz
  370. Source355: cntperchap.doc.tar.xz
  371. Source356: cntperchap.tar.xz
  372. Source357: codedoc.doc.tar.xz
  373. Source358: codedoc.tar.xz
  374. Source359: codepage.doc.tar.xz
  375. Source360: codepage.source.tar.xz
  376. Source361: codepage.tar.xz
  377. Source362: codesection.doc.tar.xz
  378. Source363: codesection.source.tar.xz
  379. Source364: codesection.tar.xz
  380. Source365: collcell.doc.tar.xz
  381. Source366: collcell.source.tar.xz
  382. Source367: collcell.tar.xz
  383. Source368: collectbox.doc.tar.xz
  384. Source369: collectbox.source.tar.xz
  385. Source370: collectbox.tar.xz
  386. Source371: colordoc.doc.tar.xz
  387. Source372: colordoc.source.tar.xz
  388. Source373: colordoc.tar.xz
  389. Source374: colorinfo.doc.tar.xz
  390. Source375: colorinfo.tar.xz
  391. Source376: colorspace.doc.tar.xz
  392. Source377: colorspace.tar.xz
  393. Source378: colortab.doc.tar.xz
  394. Source379: colortab.tar.xz
  395. Source380: colorwav.doc.tar.xz
  396. Source381: colorwav.source.tar.xz
  397. Source382: colorwav.tar.xz
  398. Source383: colorweb.doc.tar.xz
  399. Source384: colorweb.source.tar.xz
  400. Source385: colorweb.tar.xz
  401. Source386: colourchange.doc.tar.xz
  402. Source387: colourchange.tar.xz
  403. Source388: combelow.doc.tar.xz
  404. Source389: combelow.tar.xz
  405. Source390: combine.doc.tar.xz
  406. Source391: combine.source.tar.xz
  407. Source392: combine.tar.xz
  408. Source393: comma.doc.tar.xz
  409. Source394: comma.tar.xz
  410. Source395: commado.doc.tar.xz
  411. Source396: commado.source.tar.xz
  412. Source397: commado.tar.xz
  413. Source398: comment.doc.tar.xz
  414. Source399: comment.tar.xz
  415. Source400: concepts.doc.tar.xz
  416. Source401: concepts.tar.xz
  417. Source402: concprog.doc.tar.xz
  418. Source403: concprog.tar.xz
  419. Source404: constants.doc.tar.xz
  420. Source405: constants.source.tar.xz
  421. Source406: constants.tar.xz
  422. Source407: continue.doc.tar.xz
  423. Source408: continue.source.tar.xz
  424. Source409: continue.tar.xz
  425. Source410: contour.doc.tar.xz
  426. Source411: contour.source.tar.xz
  427. Source412: contour.tar.xz
  428. Source413: contracard.doc.tar.xz
  429. Source414: contracard.source.tar.xz
  430. Source415: contracard.tar.xz
  431. Source416: cooking.doc.tar.xz
  432. Source417: cooking.source.tar.xz
  433. Source418: cooking.tar.xz
  434. Source419: cool.doc.tar.xz
  435. Source420: cool.source.tar.xz
  436. Source421: cool.tar.xz
  437. Source422: coollist.doc.tar.xz
  438. Source423: coollist.source.tar.xz
  439. Source424: coollist.tar.xz
  440. Source425: coolstr.doc.tar.xz
  441. Source426: coolstr.source.tar.xz
  442. Source427: coolstr.tar.xz
  443. Source428: coolthms.doc.tar.xz
  444. Source429: coolthms.source.tar.xz
  445. Source430: coolthms.tar.xz
  446. Source431: cooltooltips.doc.tar.xz
  447. Source432: cooltooltips.source.tar.xz
  448. Source433: cooltooltips.tar.xz
  449. Source434: coordsys.doc.tar.xz
  450. Source435: coordsys.source.tar.xz
  451. Source436: coordsys.tar.xz
  452. Source437: copyedit.doc.tar.xz
  453. Source438: copyedit.source.tar.xz
  454. Source439: copyedit.tar.xz
  455. Source440: copyrightbox.doc.tar.xz
  456. Source441: copyrightbox.tar.xz
  457. Source442: coseoul.doc.tar.xz
  458. Source443: coseoul.tar.xz
  459. Source444: counttexruns.doc.tar.xz
  460. Source445: counttexruns.source.tar.xz
  461. Source446: counttexruns.tar.xz
  462. Source447: courseoutline.doc.tar.xz
  463. Source448: courseoutline.tar.xz
  464. Source449: coursepaper.doc.tar.xz
  465. Source450: coursepaper.tar.xz
  466. Source451: coverpage.doc.tar.xz
  467. Source452: coverpage.source.tar.xz
  468. Source453: coverpage.tar.xz
  469. Source454: cprotect.doc.tar.xz
  470. Source455: cprotect.source.tar.xz
  471. Source456: cprotect.tar.xz
  472. Source457: crbox.doc.tar.xz
  473. Source458: crbox.tar.xz
  474. Source459: crossreference.doc.tar.xz
  475. Source460: crossreference.source.tar.xz
  476. Source461: crossreference.tar.xz
  477. Source462: csquotes.doc.tar.xz
  478. Source463: csquotes.tar.xz
  479. Source464: csvsimple.doc.tar.xz
  480. Source465: csvsimple.tar.xz
  481. Source466: cuisine.doc.tar.xz
  482. Source467: cuisine.source.tar.xz
  483. Source468: cuisine.tar.xz
  484. Source469: currfile.doc.tar.xz
  485. Source470: currfile.source.tar.xz
  486. Source471: currfile.tar.xz
  487. Source472: currvita.doc.tar.xz
  488. Source473: currvita.source.tar.xz
  489. Source474: currvita.tar.xz
  490. Source475: cutwin.doc.tar.xz
  491. Source476: cutwin.source.tar.xz
  492. Source477: cutwin.tar.xz
  493. Source478: cv.doc.tar.xz
  494. Source479: cv.tar.xz
  495. Source480: cv4tw.doc.tar.xz
  496. Source481: cv4tw.tar.xz
  497. Source482: cweb-latex.doc.tar.xz
  498. Source483: cweb-latex.tar.xz
  499. Source484: cyber.doc.tar.xz
  500. Source485: cyber.source.tar.xz
  501. Source486: cyber.tar.xz
  502. Source487: cybercic.doc.tar.xz
  503. Source488: cybercic.source.tar.xz
  504. Source489: cybercic.tar.xz
  505. Source490: dashbox.doc.tar.xz
  506. Source491: dashbox.source.tar.xz
  507. Source492: dashbox.tar.xz
  508. Source493: dashrule.doc.tar.xz
  509. Source494: dashrule.source.tar.xz
  510. Source495: dashrule.tar.xz
  511. Source496: dashundergaps.doc.tar.xz
  512. Source497: dashundergaps.tar.xz
  513. Source498: dataref.doc.tar.xz
  514. Source499: dataref.source.tar.xz
  515. Source500: dataref.tar.xz
  516. Source501: datatool.doc.tar.xz
  517. Source502: datatool.source.tar.xz
  518. Source503: datatool.tar.xz
  519. Source504: dateiliste.doc.tar.xz
  520. Source505: dateiliste.source.tar.xz
  521. Source506: dateiliste.tar.xz
  522. Source507: datenumber.doc.tar.xz
  523. Source508: datenumber.source.tar.xz
  524. Source509: datenumber.tar.xz
  525. Source510: datetime.doc.tar.xz
  526. Source511: datetime.source.tar.xz
  527. Source512: datetime.tar.xz
  528. Source513: datetime2.doc.tar.xz
  529. Source514: datetime2.source.tar.xz
  530. Source515: datetime2.tar.xz
  531. Source516: datetime2-bahasai.doc.tar.xz
  532. Source517: datetime2-bahasai.source.tar.xz
  533. Source518: datetime2-bahasai.tar.xz
  534. Source519: datetime2-basque.doc.tar.xz
  535. Source520: datetime2-basque.source.tar.xz
  536. Source521: datetime2-basque.tar.xz
  537. Source522: datetime2-breton.doc.tar.xz
  538. Source523: datetime2-breton.source.tar.xz
  539. Source524: datetime2-breton.tar.xz
  540. Source525: datetime2-bulgarian.doc.tar.xz
  541. Source526: datetime2-bulgarian.source.tar.xz
  542. Source527: datetime2-bulgarian.tar.xz
  543. Source528: datetime2-catalan.doc.tar.xz
  544. Source529: datetime2-catalan.source.tar.xz
  545. Source530: datetime2-catalan.tar.xz
  546. Source531: datetime2-croatian.doc.tar.xz
  547. Source532: datetime2-croatian.source.tar.xz
  548. Source533: datetime2-croatian.tar.xz
  549. Source534: datetime2-czech.doc.tar.xz
  550. Source535: datetime2-czech.source.tar.xz
  551. Source536: datetime2-czech.tar.xz
  552. Source537: datetime2-danish.doc.tar.xz
  553. Source538: datetime2-danish.source.tar.xz
  554. Source539: datetime2-danish.tar.xz
  555. Source540: datetime2-dutch.doc.tar.xz
  556. Source541: datetime2-dutch.source.tar.xz
  557. Source542: datetime2-dutch.tar.xz
  558. Source543: datetime2-en-fulltext.doc.tar.xz
  559. Source544: datetime2-en-fulltext.source.tar.xz
  560. Source545: datetime2-en-fulltext.tar.xz
  561. Source546: datetime2-english.doc.tar.xz
  562. Source547: datetime2-english.source.tar.xz
  563. Source548: datetime2-english.tar.xz
  564. Source549: datetime2-esperanto.doc.tar.xz
  565. Source550: datetime2-esperanto.source.tar.xz
  566. Source551: datetime2-esperanto.tar.xz
  567. Source552: datetime2-estonian.doc.tar.xz
  568. Source553: datetime2-estonian.source.tar.xz
  569. Source554: datetime2-estonian.tar.xz
  570. Source555: datetime2-finnish.doc.tar.xz
  571. Source556: datetime2-finnish.source.tar.xz
  572. Source557: datetime2-finnish.tar.xz
  573. Source558: datetime2-french.doc.tar.xz
  574. Source559: datetime2-french.source.tar.xz
  575. Source560: datetime2-french.tar.xz
  576. Source561: datetime2-galician.doc.tar.xz
  577. Source562: datetime2-galician.source.tar.xz
  578. Source563: datetime2-galician.tar.xz
  579. Source564: datetime2-german.doc.tar.xz
  580. Source565: datetime2-german.source.tar.xz
  581. Source566: datetime2-german.tar.xz
  582. Source567: datetime2-greek.doc.tar.xz
  583. Source568: datetime2-greek.source.tar.xz
  584. Source569: datetime2-greek.tar.xz
  585. Source570: datetime2-hebrew.doc.tar.xz
  586. Source571: datetime2-hebrew.source.tar.xz
  587. Source572: datetime2-hebrew.tar.xz
  588. Source573: datetime2-icelandic.doc.tar.xz
  589. Source574: datetime2-icelandic.source.tar.xz
  590. Source575: datetime2-icelandic.tar.xz
  591. Source576: datetime2-irish.doc.tar.xz
  592. Source577: datetime2-irish.source.tar.xz
  593. Source578: datetime2-irish.tar.xz
  594. Source579: datetime2-italian.doc.tar.xz
  595. Source580: datetime2-italian.source.tar.xz
  596. Source581: datetime2-italian.tar.xz
  597. Source582: datetime2-it-fulltext.doc.tar.xz
  598. Source583: datetime2-it-fulltext.source.tar.xz
  599. Source584: datetime2-it-fulltext.tar.xz
  600. Source585: datetime2-latin.doc.tar.xz
  601. Source586: datetime2-latin.source.tar.xz
  602. Source587: datetime2-latin.tar.xz
  603. Source588: datetime2-lsorbian.doc.tar.xz
  604. Source589: datetime2-lsorbian.source.tar.xz
  605. Source590: datetime2-lsorbian.tar.xz
  606. Source591: datetime2-magyar.doc.tar.xz
  607. Source592: datetime2-magyar.source.tar.xz
  608. Source593: datetime2-magyar.tar.xz
  609. Source594: datetime2-norsk.doc.tar.xz
  610. Source595: datetime2-norsk.source.tar.xz
  611. Source596: datetime2-norsk.tar.xz
  612. Source597: datetime2-polish.doc.tar.xz
  613. Source598: datetime2-polish.source.tar.xz
  614. Source599: datetime2-polish.tar.xz
  615. Source600: datetime2-portuges.doc.tar.xz
  616. Source601: datetime2-portuges.source.tar.xz
  617. Source602: datetime2-portuges.tar.xz
  618. Source603: datetime2-romanian.doc.tar.xz
  619. Source604: datetime2-romanian.source.tar.xz
  620. Source605: datetime2-romanian.tar.xz
  621. Source606: datetime2-russian.doc.tar.xz
  622. Source607: datetime2-russian.source.tar.xz
  623. Source608: datetime2-russian.tar.xz
  624. Source609: datetime2-samin.doc.tar.xz
  625. Source610: datetime2-samin.source.tar.xz
  626. Source611: datetime2-samin.tar.xz
  627. Source612: datetime2-scottish.doc.tar.xz
  628. Source613: datetime2-scottish.source.tar.xz
  629. Source614: datetime2-scottish.tar.xz
  630. Source615: datetime2-serbian.doc.tar.xz
  631. Source616: datetime2-serbian.source.tar.xz
  632. Source617: datetime2-serbian.tar.xz
  633. Source618: datetime2-slovak.doc.tar.xz
  634. Source619: datetime2-slovak.source.tar.xz
  635. Source620: datetime2-slovak.tar.xz
  636. Source621: datetime2-slovene.doc.tar.xz
  637. Source622: datetime2-slovene.source.tar.xz
  638. Source623: datetime2-slovene.tar.xz
  639. Source624: datetime2-spanish.doc.tar.xz
  640. Source625: datetime2-spanish.source.tar.xz
  641. Source626: datetime2-spanish.tar.xz
  642. Source627: datetime2-swedish.doc.tar.xz
  643. Source628: datetime2-swedish.source.tar.xz
  644. Source629: datetime2-swedish.tar.xz
  645. Source630: datetime2-turkish.doc.tar.xz
  646. Source631: datetime2-turkish.source.tar.xz
  647. Source632: datetime2-turkish.tar.xz
  648. Source633: datetime2-ukrainian.doc.tar.xz
  649. Source634: datetime2-ukrainian.source.tar.xz
  650. Source635: datetime2-ukrainian.tar.xz
  651. Source636: datetime2-usorbian.doc.tar.xz
  652. Source637: datetime2-usorbian.source.tar.xz
  653. Source638: datetime2-usorbian.tar.xz
  654. Source639: datetime2-welsh.doc.tar.xz
  655. Source640: datetime2-welsh.source.tar.xz
  656. Source641: datetime2-welsh.tar.xz
  657. Source642: dblfloatfix.doc.tar.xz
  658. Source643: dblfloatfix.tar.xz
  659. Source644: decimal.doc.tar.xz
  660. Source645: decimal.source.tar.xz
  661. Source646: decimal.tar.xz
  662. Source647: decorule.doc.tar.xz
  663. Source648: decorule.source.tar.xz
  664. Source649: decorule.tar.xz
  665. Source650: delimtxt.doc.tar.xz
  666. Source651: delimtxt.source.tar.xz
  667. Source652: delimtxt.tar.xz
  668. Source653: denisbdoc.doc.tar.xz
  669. Source654: denisbdoc.source.tar.xz
  670. Source655: denisbdoc.tar.xz
  671. Source656: diagbox.doc.tar.xz
  672. Source657: diagbox.source.tar.xz
  673. Source658: diagbox.tar.xz
  674. Source659: diagnose.doc.tar.xz
  675. Source660: diagnose.tar.xz
  676. Source661: dialogl.doc.tar.xz
  677. Source662: dialogl.source.tar.xz
  678. Source663: dialogl.tar.xz
  679. Source664: dichokey.doc.tar.xz
  680. Source665: dichokey.tar.xz
  681. Source666: dinbrief.doc.tar.xz
  682. Source667: dinbrief.source.tar.xz
  683. Source668: dinbrief.tar.xz
  684. Source669: directory.doc.tar.xz
  685. Source670: directory.tar.xz
  686. Source671: dirtytalk.doc.tar.xz
  687. Source672: dirtytalk.source.tar.xz
  688. Source673: dirtytalk.tar.xz
  689. Source674: dlfltxb.doc.tar.xz
  690. Source675: dlfltxb.tar.xz
  691. Source676: dnaseq.doc.tar.xz
  692. Source677: dnaseq.source.tar.xz
  693. Source678: dnaseq.tar.xz
  694. Source679: doclicense.doc.tar.xz
  695. Source680: doclicense.source.tar.xz
  696. Source681: doclicense.tar.xz
  697. Source682: docmfp.doc.tar.xz
  698. Source683: docmfp.source.tar.xz
  699. Source684: docmfp.tar.xz
  700. Source685: docmute.doc.tar.xz
  701. Source686: docmute.source.tar.xz
  702. Source687: docmute.tar.xz
  703. Source688: doctools.doc.tar.xz
  704. Source689: doctools.source.tar.xz
  705. Source690: doctools.tar.xz
  706. Source691: documentation.doc.tar.xz
  707. Source692: documentation.source.tar.xz
  708. Source693: documentation.tar.xz
  709. Source694: doi.doc.tar.xz
  710. Source695: doi.tar.xz
  711. Source696: dotarrow.doc.tar.xz
  712. Source697: dotarrow.source.tar.xz
  713. Source698: dotarrow.tar.xz
  714. Source699: dotseqn.doc.tar.xz
  715. Source700: dotseqn.source.tar.xz
  716. Source701: dotseqn.tar.xz
  717. Source702: download.doc.tar.xz
  718. Source703: download.source.tar.xz
  719. Source704: download.tar.xz
  720. Source705: dox.doc.tar.xz
  721. Source706: dox.source.tar.xz
  722. Source707: dox.tar.xz
  723. Source708: dpfloat.doc.tar.xz
  724. Source709: dpfloat.tar.xz
  725. Source710: dprogress.doc.tar.xz
  726. Source711: dprogress.source.tar.xz
  727. Source712: dprogress.tar.xz
  728. Source713: drac.doc.tar.xz
  729. Source714: drac.source.tar.xz
  730. Source715: drac.tar.xz
  731. Source716: draftcopy.doc.tar.xz
  732. Source717: draftcopy.source.tar.xz
  733. Source718: draftcopy.tar.xz
  734. Source719: draftwatermark.doc.tar.xz
  735. Source720: draftwatermark.source.tar.xz
  736. Source721: draftwatermark.tar.xz
  737. Source722: dtk.doc.tar.xz
  738. Source723: dtk.tar.xz
  739. Source724: dtxgallery.doc.tar.xz
  740. Source725: dtxgallery.source.tar.xz
  741. Source726: dtxgallery.tar.xz
  742. Source727: dvdcoll.doc.tar.xz
  743. Source728: dvdcoll.tar.xz
  744. Source729: dynamicnumber.doc.tar.xz
  745. Source730: dynamicnumber.source.tar.xz
  746. Source731: dynamicnumber.tar.xz
  747. Source732: dynblocks.doc.tar.xz
  748. Source733: dynblocks.tar.xz
  749. Source734: ean13isbn.doc.tar.xz
  750. Source735: ean13isbn.tar.xz
  751. Source736: easy.doc.tar.xz
  752. Source737: easy.tar.xz
  753. Source738: easy-todo.doc.tar.xz
  754. Source739: easy-todo.tar.xz
  755. Source740: easyfig.doc.tar.xz
  756. Source741: easyfig.source.tar.xz
  757. Source742: easyfig.tar.xz
  758. Source743: easylist.doc.tar.xz
  759. Source744: easylist.tar.xz
  760. Source745: easyreview.doc.tar.xz
  761. Source746: easyreview.source.tar.xz
  762. Source747: easyreview.tar.xz
  763. Source748: ebezier.doc.tar.xz
  764. Source749: ebezier.source.tar.xz
  765. Source750: ebezier.tar.xz
  766. Source751: ecclesiastic.doc.tar.xz
  767. Source752: ecclesiastic.source.tar.xz
  768. Source753: ecclesiastic.tar.xz
  769. Source754: ecv.doc.tar.xz
  770. Source755: ecv.source.tar.xz
  771. Source756: ecv.tar.xz
  772. Source757: ed.doc.tar.xz
  773. Source758: ed.source.tar.xz
  774. Source759: ed.tar.xz
  775. Source760: edmargin.doc.tar.xz
  776. Source761: edmargin.source.tar.xz
  777. Source762: edmargin.tar.xz
  778. Source763: eemeir.doc.tar.xz
  779. Source764: eemeir.source.tar.xz
  780. Source765: eemeir.tar.xz
  781. Source766: efbox.doc.tar.xz
  782. Source767: efbox.source.tar.xz
  783. Source768: efbox.tar.xz
  784. Source769: egplot.doc.tar.xz
  785. Source770: egplot.source.tar.xz
  786. Source771: egplot.tar.xz
  787. Source772: elements.doc.tar.xz
  788. Source773: elements.tar.xz
  789. Source774: ellipsis.doc.tar.xz
  790. Source775: ellipsis.source.tar.xz
  791. Source776: ellipsis.tar.xz
  792. Source777: elmath.doc.tar.xz
  793. Source778: elmath.source.tar.xz
  794. Source779: elmath.tar.xz
  795. Source780: elocalloc.doc.tar.xz
  796. Source781: elocalloc.source.tar.xz
  797. Source782: elocalloc.tar.xz
  798. Source783: elpres.doc.tar.xz
  799. Source784: elpres.tar.xz
  800. Source785: elzcards.doc.tar.xz
  801. Source786: elzcards.source.tar.xz
  802. Source787: elzcards.tar.xz
  803. Source788: emarks.doc.tar.xz
  804. Source789: emarks.source.tar.xz
  805. Source790: emarks.tar.xz
  806. Source791: embedall.doc.tar.xz
  807. Source792: embedall.source.tar.xz
  808. Source793: embedall.tar.xz
  809. Source794: embrac.doc.tar.xz
  810. Source795: embrac.tar.xz
  811. Source796: emptypage.doc.tar.xz
  812. Source797: emptypage.source.tar.xz
  813. Source798: emptypage.tar.xz
  814. Source799: emulateapj.doc.tar.xz
  815. Source800: emulateapj.tar.xz
  816. Source801: endfloat.doc.tar.xz
  817. Source802: endfloat.source.tar.xz
  818. Source803: endfloat.tar.xz
  819. Source804: endheads.doc.tar.xz
  820. Source805: endheads.source.tar.xz
  821. Source806: endheads.tar.xz
  822. Source807: endnotes.doc.tar.xz
  823. Source808: endnotes.tar.xz
  824. Source809: engpron.doc.tar.xz
  825. Source810: engpron.source.tar.xz
  826. Source811: engpron.tar.xz
  827. Source812: engrec.doc.tar.xz
  828. Source813: engrec.source.tar.xz
  829. Source814: engrec.tar.xz
  830. Source815: enotez.doc.tar.xz
  831. Source816: enotez.tar.xz
  832. Source817: enumitem.doc.tar.xz
  833. Source818: enumitem.tar.xz
  834. Source819: enumitem-zref.doc.tar.xz
  835. Source820: enumitem-zref.source.tar.xz
  836. Source821: enumitem-zref.tar.xz
  837. Source822: envbig.doc.tar.xz
  838. Source823: envbig.tar.xz
  839. Source824: environ.doc.tar.xz
  840. Source825: environ.source.tar.xz
  841. Source826: environ.tar.xz
  842. Source827: envlab.doc.tar.xz
  843. Source828: envlab.source.tar.xz
  844. Source829: envlab.tar.xz
  845. Source830: epigraph.doc.tar.xz
  846. Source831: epigraph.source.tar.xz
  847. Source832: epigraph.tar.xz
  848. Source833: epiolmec.doc.tar.xz
  849. Source834: epiolmec.source.tar.xz
  850. Source835: epiolmec.tar.xz
  851. Source836: epyt.doc.tar.xz
  852. Source837: epyt.tar.xz
  853. Source838: eqell.doc.tar.xz
  854. Source839: eqell.tar.xz
  855. Source840: eqlist.doc.tar.xz
  856. Source841: eqlist.source.tar.xz
  857. Source842: eqlist.tar.xz
  858. Source843: eqname.tar.xz
  859. Source844: eqparbox.doc.tar.xz
  860. Source845: eqparbox.source.tar.xz
  861. Source846: eqparbox.tar.xz
  862. Source847: errata.doc.tar.xz
  863. Source848: errata.source.tar.xz
  864. Source849: errata.tar.xz
  865. Source850: esami.doc.tar.xz
  866. Source851: esami.tar.xz
  867. Source852: esdiff.doc.tar.xz
  868. Source853: esdiff.source.tar.xz
  869. Source854: esdiff.tar.xz
  870. Source855: esint.doc.tar.xz
  871. Source856: esint.source.tar.xz
  872. Source857: esint.tar.xz
  873. Source858: esint-type1.doc.tar.xz
  874. Source859: esint-type1.tar.xz
  875. Source860: etaremune.doc.tar.xz
  876. Source861: etaremune.source.tar.xz
  877. Source862: etaremune.tar.xz
  878. Source863: etextools.doc.tar.xz
  879. Source864: etextools.source.tar.xz
  880. Source865: etextools.tar.xz
  881. Source866: etoc.doc.tar.xz
  882. Source867: etoc.source.tar.xz
  883. Source868: etoc.tar.xz
  884. Source869: etoolbox.doc.tar.xz
  885. Source870: etoolbox.tar.xz
  886. Source871: eukdate.doc.tar.xz
  887. Source872: eukdate.source.tar.xz
  888. Source873: eukdate.tar.xz
  889. Source874: europasscv.doc.tar.xz
  890. Source875: europasscv.tar.xz
  891. Source876: europecv.doc.tar.xz
  892. Source877: europecv.tar.xz
  893. Source878: everyhook.doc.tar.xz
  894. Source879: everyhook.source.tar.xz
  895. Source880: everyhook.tar.xz
  896. Source881: everypage.doc.tar.xz
  897. Source882: everypage.source.tar.xz
  898. Source883: everypage.tar.xz
  899. Source884: exam.doc.tar.xz
  900. Source885: exam.tar.xz
  901. Source886: exam-n.doc.tar.xz
  902. Source887: exam-n.source.tar.xz
  903. Source888: exam-n.tar.xz
  904. Source889: examdesign.doc.tar.xz
  905. Source890: examdesign.source.tar.xz
  906. Source891: examdesign.tar.xz
  907. Source892: example.tar.xz
  908. Source893: examplep.doc.tar.xz
  909. Source894: examplep.tar.xz
  910. Source895: exceltex.doc.tar.xz
  911. Source896: exceltex.tar.xz
  912. Source897: excludeonly.doc.tar.xz
  913. Source898: excludeonly.tar.xz
  914. Source899: exercise.doc.tar.xz
  915. Source900: exercise.source.tar.xz
  916. Source901: exercise.tar.xz
  917. Source902: exercises.doc.tar.xz
  918. Source903: exercises.source.tar.xz
  919. Source904: exercises.tar.xz
  920. Source905: exp-testopt.doc.tar.xz
  921. Source906: exp-testopt.source.tar.xz
  922. Source907: exp-testopt.tar.xz
  923. Source908: expdlist.doc.tar.xz
  924. Source909: expdlist.source.tar.xz
  925. Source910: expdlist.tar.xz
  926. Source911: export.doc.tar.xz
  927. Source912: export.source.tar.xz
  928. Source913: export.tar.xz
  929. Source914: exsheets.doc.tar.xz
  930. Source915: exsheets.tar.xz
  931. Source916: exsol.doc.tar.xz
  932. Source917: exsol.source.tar.xz
  933. Source918: exsol.tar.xz
  934. Source919: extract.doc.tar.xz
  935. Source920: extract.source.tar.xz
  936. Source921: extract.tar.xz
  937. Source922: facsimile.doc.tar.xz
  938. Source923: facsimile.source.tar.xz
  939. Source924: facsimile.tar.xz
  940. Source925: factura.doc.tar.xz
  941. Source926: factura.source.tar.xz
  942. Source927: factura.tar.xz
  943. Source928: fancylabel.doc.tar.xz
  944. Source929: fancylabel.source.tar.xz
  945. Source930: fancylabel.tar.xz
  946. Source931: fancynum.doc.tar.xz
  947. Source932: fancynum.source.tar.xz
  948. Source933: fancynum.tar.xz
  949. Source934: fancypar.doc.tar.xz
  950. Source935: fancypar.source.tar.xz
  951. Source936: fancypar.tar.xz
  952. Source937: fancyslides.doc.tar.xz
  953. Source938: fancyslides.tar.xz
  954. Source939: fancytabs.doc.tar.xz
  955. Source940: fancytabs.source.tar.xz
  956. Source941: fancytabs.tar.xz
  957. Source942: fancytooltips.doc.tar.xz
  958. Source943: fancytooltips.source.tar.xz
  959. Source944: fancytooltips.tar.xz
  960. Source945: fcolumn.doc.tar.xz
  961. Source946: fcolumn.source.tar.xz
  962. Source947: fcolumn.tar.xz
  963. Source948: ffslides.doc.tar.xz
  964. Source949: ffslides.tar.xz
  965. Source950: fibeamer.doc.tar.xz
  966. Source951: fibeamer.source.tar.xz
  967. Source952: fibeamer.tar.xz
  968. Source953: fifo-stack.doc.tar.xz
  969. Source954: fifo-stack.source.tar.xz
  970. Source955: fifo-stack.tar.xz
  971. Source956: figsize.doc.tar.xz
  972. Source957: figsize.tar.xz
  973. Source958: filecontents.doc.tar.xz
  974. Source959: filecontents.source.tar.xz
  975. Source960: filecontents.tar.xz
  976. Source961: filedate.doc.tar.xz
  977. Source962: filedate.source.tar.xz
  978. Source963: filedate.tar.xz
  979. Source964: filehook.doc.tar.xz
  980. Source965: filehook.source.tar.xz
  981. Source966: filehook.tar.xz
  982. Source967: fileinfo.doc.tar.xz
  983. Source968: fileinfo.source.tar.xz
  984. Source969: fileinfo.tar.xz
  985. Source970: filemod.doc.tar.xz
  986. Source971: filemod.tar.xz
  987. Source972: fink.doc.tar.xz
  988. Source973: fink.source.tar.xz
  989. Source974: fink.tar.xz
  990. Source975: finstrut.doc.tar.xz
  991. Source976: finstrut.source.tar.xz
  992. Source977: finstrut.tar.xz
  993. Source978: fithesis.doc.tar.xz
  994. Source979: fithesis.source.tar.xz
  995. Source980: fithesis.tar.xz
  996. Source981: fixcmex.doc.tar.xz
  997. Source982: fixcmex.source.tar.xz
  998. Source983: fixcmex.tar.xz
  999. Source984: fixfoot.doc.tar.xz
  1000. Source985: fixfoot.tar.xz
  1001. Source986: fixme.doc.tar.xz
  1002. Source987: fixme.source.tar.xz
  1003. Source988: fixme.tar.xz
  1004. Source989: fixmetodonotes.doc.tar.xz
  1005. Source990: fixmetodonotes.source.tar.xz
  1006. Source991: fixmetodonotes.tar.xz
  1007. Source992: fjodor.doc.tar.xz
  1008. Source993: fjodor.tar.xz
  1009. Source994: flabels.doc.tar.xz
  1010. Source995: flabels.source.tar.xz
  1011. Source996: flabels.tar.xz
  1012. Source997: flacards.doc.tar.xz
  1013. Source998: flacards.tar.xz
  1014. Source999: flagderiv.doc.tar.xz
  1015. Source1000: flagderiv.source.tar.xz
  1016. Source1001: flagderiv.tar.xz
  1017. Source1002: flashcards.doc.tar.xz
  1018. Source1003: flashcards.source.tar.xz
  1019. Source1004: flashcards.tar.xz
  1020. Source1005: flashmovie.doc.tar.xz
  1021. Source1006: flashmovie.tar.xz
  1022. Source1007: flipbook.doc.tar.xz
  1023. Source1008: flipbook.tar.xz
  1024. Source1009: flippdf.doc.tar.xz
  1025. Source1010: flippdf.source.tar.xz
  1026. Source1011: flippdf.tar.xz
  1027. Source1012: floatflt.doc.tar.xz
  1028. Source1013: floatflt.source.tar.xz
  1029. Source1014: floatflt.tar.xz
  1030. Source1015: floatrow.doc.tar.xz
  1031. Source1016: floatrow.source.tar.xz
  1032. Source1017: floatrow.tar.xz
  1033. Source1018: flowfram.doc.tar.xz
  1034. Source1019: flowfram.source.tar.xz
  1035. Source1020: flowfram.tar.xz
  1036. Source1021: fmp.doc.tar.xz
  1037. Source1022: fmp.source.tar.xz
  1038. Source1023: fmp.tar.xz
  1039. Source1024: fmtcount.doc.tar.xz
  1040. Source1025: fmtcount.source.tar.xz
  1041. Source1026: fmtcount.tar.xz
  1042. Source1027: fn2end.doc.tar.xz
  1043. Source1028: fn2end.tar.xz
  1044. Source1029: fnbreak.doc.tar.xz
  1045. Source1030: fnbreak.source.tar.xz
  1046. Source1031: fnbreak.tar.xz
  1047. Source1032: fncychap.doc.tar.xz
  1048. Source1033: fncychap.tar.xz
  1049. Source1034: fncylab.doc.tar.xz
  1050. Source1035: fncylab.tar.xz
  1051. Source1036: fnpara.doc.tar.xz
  1052. Source1037: fnpara.tar.xz
  1053. Source1038: fnpct.doc.tar.xz
  1054. Source1039: fnpct.tar.xz
  1055. Source1040: fnumprint.doc.tar.xz
  1056. Source1041: fnumprint.source.tar.xz
  1057. Source1042: fnumprint.tar.xz
  1058. Source1043: foilhtml.doc.tar.xz
  1059. Source1044: foilhtml.source.tar.xz
  1060. Source1045: foilhtml.tar.xz
  1061. Source1046: fontaxes.doc.tar.xz
  1062. Source1047: fontaxes.source.tar.xz
  1063. Source1048: fontaxes.tar.xz
  1064. Source1049: fonttable.doc.tar.xz
  1065. Source1050: fonttable.source.tar.xz
  1066. Source1051: fonttable.tar.xz
  1067. Source1052: footmisc.doc.tar.xz
  1068. Source1053: footmisc.source.tar.xz
  1069. Source1054: footmisc.tar.xz
  1070. Source1055: footnotebackref.doc.tar.xz
  1071. Source1056: footnotebackref.tar.xz
  1072. Source1057: footnoterange.doc.tar.xz
  1073. Source1058: footnoterange.source.tar.xz
  1074. Source1059: footnoterange.tar.xz
  1075. Source1060: footnpag.doc.tar.xz
  1076. Source1061: footnpag.source.tar.xz
  1077. Source1062: footnpag.tar.xz
  1078. Source1063: forarray.doc.tar.xz
  1079. Source1064: forarray.source.tar.xz
  1080. Source1065: forarray.tar.xz
  1081. Source1066: foreign.doc.tar.xz
  1082. Source1067: foreign.source.tar.xz
  1083. Source1068: foreign.tar.xz
  1084. Source1069: forloop.doc.tar.xz
  1085. Source1070: forloop.source.tar.xz
  1086. Source1071: forloop.tar.xz
  1087. Source1072: formlett.doc.tar.xz
  1088. Source1073: formlett.tar.xz
  1089. Source1074: formular.doc.tar.xz
  1090. Source1075: formular.source.tar.xz
  1091. Source1076: formular.tar.xz
  1092. Source1077: fragments.doc.tar.xz
  1093. Source1078: fragments.tar.xz
  1094. Source1079: frame.doc.tar.xz
  1095. Source1080: frame.tar.xz
  1096. Source1081: framed.doc.tar.xz
  1097. Source1082: framed.tar.xz
  1098. Source1083: frankenstein.doc.tar.xz
  1099. Source1084: frankenstein.source.tar.xz
  1100. Source1085: frankenstein.tar.xz
  1101. Source1086: frege.doc.tar.xz
  1102. Source1087: frege.tar.xz
  1103. Source1088: ftcap.doc.tar.xz
  1104. Source1089: ftcap.tar.xz
  1105. Source1090: ftnxtra.doc.tar.xz
  1106. Source1091: ftnxtra.source.tar.xz
  1107. Source1092: ftnxtra.tar.xz
  1108. Source1093: fullblck.doc.tar.xz
  1109. Source1094: fullblck.source.tar.xz
  1110. Source1095: fullblck.tar.xz
  1111. Source1096: fullminipage.doc.tar.xz
  1112. Source1097: fullminipage.source.tar.xz
  1113. Source1098: fullminipage.tar.xz
  1114. Source1099: fullwidth.doc.tar.xz
  1115. Source1100: fullwidth.tar.xz
  1116. Source1101: fundus-calligra.doc.tar.xz
  1117. Source1102: fundus-calligra.source.tar.xz
  1118. Source1103: fundus-calligra.tar.xz
  1119. Source1104: fundus-cyr.tar.xz
  1120. Source1105: fundus-sueterlin.doc.tar.xz
  1121. Source1106: fundus-sueterlin.source.tar.xz
  1122. Source1107: fundus-sueterlin.tar.xz
  1123. Source1108: fwlw.doc.tar.xz
  1124. Source1109: fwlw.tar.xz
  1125. Source1110: g-brief.doc.tar.xz
  1126. Source1111: g-brief.source.tar.xz
  1127. Source1112: g-brief.tar.xz
  1128. Source1113: gauss.doc.tar.xz
  1129. Source1114: gauss.tar.xz
  1130. Source1115: gcard.doc.tar.xz
  1131. Source1116: gcard.tar.xz
  1132. Source1117: gcite.doc.tar.xz
  1133. Source1118: gcite.source.tar.xz
  1134. Source1119: gcite.tar.xz
  1135. Source1120: gender.doc.tar.xz
  1136. Source1121: gender.source.tar.xz
  1137. Source1122: gender.tar.xz
  1138. Source1123: genmpage.doc.tar.xz
  1139. Source1124: genmpage.source.tar.xz
  1140. Source1125: genmpage.tar.xz
  1141. Source1126: getfiledate.doc.tar.xz
  1142. Source1127: getfiledate.tar.xz
  1143. Source1128: ginpenc.doc.tar.xz
  1144. Source1129: ginpenc.source.tar.xz
  1145. Source1130: ginpenc.tar.xz
  1146. Source1131: gitinfo.doc.tar.xz
  1147. Source1132: gitinfo.tar.xz
  1148. Source1133: gitinfo2.doc.tar.xz
  1149. Source1134: gitinfo2.tar.xz
  1150. Source1135: gitlog.doc.tar.xz
  1151. Source1136: gitlog.tar.xz
  1152. Source1137: gloss.doc.tar.xz
  1153. Source1138: gloss.tar.xz
  1154. Source1139: glossaries.doc.tar.xz
  1155. Source1140: glossaries.source.tar.xz
  1156. Source1141: glossaries.tar.xz
  1157. Source1142: glossaries-danish.doc.tar.xz
  1158. Source1143: glossaries-danish.source.tar.xz
  1159. Source1144: glossaries-danish.tar.xz
  1160. Source1145: glossaries-dutch.doc.tar.xz
  1161. Source1146: glossaries-dutch.source.tar.xz
  1162. Source1147: glossaries-dutch.tar.xz
  1163. Source1148: glossaries-english.doc.tar.xz
  1164. Source1149: glossaries-english.source.tar.xz
  1165. Source1150: glossaries-english.tar.xz
  1166. Source1151: glossaries-french.doc.tar.xz
  1167. Source1152: glossaries-french.source.tar.xz
  1168. Source1153: glossaries-french.tar.xz
  1169. Source1154: glossaries-german.doc.tar.xz
  1170. Source1155: glossaries-german.source.tar.xz
  1171. Source1156: glossaries-german.tar.xz
  1172. Source1157: glossaries-irish.doc.tar.xz
  1173. Source1158: glossaries-irish.source.tar.xz
  1174. Source1159: glossaries-irish.tar.xz
  1175. Source1160: glossaries-italian.doc.tar.xz
  1176. Source1161: glossaries-italian.source.tar.xz
  1177. Source1162: glossaries-italian.tar.xz
  1178. Source1163: glossaries-magyar.doc.tar.xz
  1179. Source1164: glossaries-magyar.source.tar.xz
  1180. Source1165: glossaries-magyar.tar.xz
  1181. Source1166: glossaries-polish.doc.tar.xz
  1182. Source1167: glossaries-polish.source.tar.xz
  1183. Source1168: glossaries-polish.tar.xz
  1184. Source1169: glossaries-portuges.doc.tar.xz
  1185. Source1170: glossaries-portuges.source.tar.xz
  1186. Source1171: glossaries-portuges.tar.xz
  1187. Source1172: glossaries-serbian.doc.tar.xz
  1188. Source1173: glossaries-serbian.source.tar.xz
  1189. Source1174: glossaries-serbian.tar.xz
  1190. Source1175: glossaries-spanish.doc.tar.xz
  1191. Source1176: glossaries-spanish.source.tar.xz
  1192. Source1177: glossaries-spanish.tar.xz
  1193. Source1178: gmdoc.doc.tar.xz
  1194. Source1179: gmdoc.tar.xz
  1195. Source1180: gmdoc-enhance.doc.tar.xz
  1196. Source1181: gmdoc-enhance.source.tar.xz
  1197. Source1182: gmdoc-enhance.tar.xz
  1198. Source1183: gmiflink.doc.tar.xz
  1199. Source1184: gmiflink.tar.xz
  1200. Source1185: gmutils.doc.tar.xz
  1201. Source1186: gmutils.tar.xz
  1202. Source1187: gmverb.doc.tar.xz
  1203. Source1188: gmverb.tar.xz
  1204. Source1189: graphbox.doc.tar.xz
  1205. Source1190: graphbox.source.tar.xz
  1206. Source1191: graphbox.tar.xz
  1207. Source1192: graphicx-psmin.doc.tar.xz
  1208. Source1193: graphicx-psmin.source.tar.xz
  1209. Source1194: graphicx-psmin.tar.xz
  1210. Source1195: graphicxbox.doc.tar.xz
  1211. Source1196: graphicxbox.source.tar.xz
  1212. Source1197: graphicxbox.tar.xz
  1213. Source1198: grfpaste.doc.tar.xz
  1214. Source1199: grfpaste.tar.xz
  1215. Source1200: grid.doc.tar.xz
  1216. Source1201: grid.source.tar.xz
  1217. Source1202: grid.tar.xz
  1218. Source1203: grid-system.doc.tar.xz
  1219. Source1204: grid-system.tar.xz
  1220. Source1205: gridset.doc.tar.xz
  1221. Source1206: gridset.source.tar.xz
  1222. Source1207: gridset.tar.xz
  1223. Source1208: guitlogo.doc.tar.xz
  1224. Source1209: guitlogo.source.tar.xz
  1225. Source1210: guitlogo.tar.xz
  1226. Source1211: handout.doc.tar.xz
  1227. Source1212: handout.tar.xz
  1228. Source1213: hang.doc.tar.xz
  1229. Source1214: hang.tar.xz
  1230. Source1215: hanging.doc.tar.xz
  1231. Source1216: hanging.source.tar.xz
  1232. Source1217: hanging.tar.xz
  1233. Source1218: hardwrap.doc.tar.xz
  1234. Source1219: hardwrap.source.tar.xz
  1235. Source1220: hardwrap.tar.xz
  1236. Source1221: harnon-cv.doc.tar.xz
  1237. Source1222: harnon-cv.tar.xz
  1238. Source1223: harpoon.doc.tar.xz
  1239. Source1224: harpoon.tar.xz
  1240. Source1225: hc.doc.tar.xz
  1241. Source1226: hc.source.tar.xz
  1242. Source1227: hc.tar.xz
  1243. Source1228: he-she.doc.tar.xz
  1244. Source1229: he-she.tar.xz
  1245. Source1230: hhtensor.doc.tar.xz
  1246. Source1231: hhtensor.source.tar.xz
  1247. Source1232: hhtensor.tar.xz
  1248. Source1233: histogr.doc.tar.xz
  1249. Source1234: histogr.source.tar.xz
  1250. Source1235: histogr.tar.xz
  1251. Source1236: hitec.doc.tar.xz
  1252. Source1237: hitec.tar.xz
  1253. Source1238: hletter.doc.tar.xz
  1254. Source1239: hletter.tar.xz
  1255. Source1240: hpsdiss.doc.tar.xz
  1256. Source1241: hpsdiss.source.tar.xz
  1257. Source1242: hpsdiss.tar.xz
  1258. Source1243: hrefhide.doc.tar.xz
  1259. Source1244: hrefhide.source.tar.xz
  1260. Source1245: hrefhide.tar.xz
  1261. Source1246: hvindex.doc.tar.xz
  1262. Source1247: hvindex.tar.xz
  1263. Source1248: hypdvips.doc.tar.xz
  1264. Source1249: hypdvips.tar.xz
  1265. Source1250: hyper.doc.tar.xz
  1266. Source1251: hyper.source.tar.xz
  1267. Source1252: hyper.tar.xz
  1268. Source1253: hypernat.doc.tar.xz
  1269. Source1254: hypernat.tar.xz
  1270. Source1255: hyperref-docsrc.doc.tar.xz
  1271. Source1256: hyperref-docsrc.tar.xz
  1272. Source1257: hyperxmp.doc.tar.xz
  1273. Source1258: hyperxmp.source.tar.xz
  1274. Source1259: hyperxmp.tar.xz
  1275. Source1260: hyphenat.doc.tar.xz
  1276. Source1261: hyphenat.source.tar.xz
  1277. Source1262: hyphenat.tar.xz
  1278. Source1263: idxcmds.doc.tar.xz
  1279. Source1264: idxcmds.tar.xz
  1280. Source1265: idxlayout.doc.tar.xz
  1281. Source1266: idxlayout.source.tar.xz
  1282. Source1267: idxlayout.tar.xz
  1283. Source1268: iffont.doc.tar.xz
  1284. Source1269: iffont.source.tar.xz
  1285. Source1270: iffont.tar.xz
  1286. Source1271: ifmslide.doc.tar.xz
  1287. Source1272: ifmslide.tar.xz
  1288. Source1273: ifmtarg.doc.tar.xz
  1289. Source1274: ifmtarg.source.tar.xz
  1290. Source1275: ifmtarg.tar.xz
  1291. Source1276: ifnextok.doc.tar.xz
  1292. Source1277: ifnextok.source.tar.xz
  1293. Source1278: ifnextok.tar.xz
  1294. Source1279: ifoddpage.doc.tar.xz
  1295. Source1280: ifoddpage.source.tar.xz
  1296. Source1281: ifoddpage.tar.xz
  1297. Source1282: ifplatform.doc.tar.xz
  1298. Source1283: ifplatform.source.tar.xz
  1299. Source1284: ifplatform.tar.xz
  1300. Source1285: ifthenx.doc.tar.xz
  1301. Source1286: ifthenx.tar.xz
  1302. Source1287: iitem.doc.tar.xz
  1303. Source1288: iitem.source.tar.xz
  1304. Source1289: iitem.tar.xz
  1305. Source1290: image-gallery.doc.tar.xz
  1306. Source1291: image-gallery.tar.xz
  1307. Source1292: imakeidx.doc.tar.xz
  1308. Source1293: imakeidx.source.tar.xz
  1309. Source1294: imakeidx.tar.xz
  1310. Source1295: import.doc.tar.xz
  1311. Source1296: import.tar.xz
  1312. Source1297: incgraph.doc.tar.xz
  1313. Source1298: incgraph.tar.xz
  1314. Source1299: indextools.doc.tar.xz
  1315. Source1300: indextools.source.tar.xz
  1316. Source1301: indextools.tar.xz
  1317. Source1302: inlinedef.doc.tar.xz
  1318. Source1303: inlinedef.source.tar.xz
  1319. Source1304: inlinedef.tar.xz
  1320. Source1305: inputtrc.doc.tar.xz
  1321. Source1306: inputtrc.source.tar.xz
  1322. Source1307: inputtrc.tar.xz
  1323. Source1308: interactiveworkbook.doc.tar.xz
  1324. Source1309: interactiveworkbook.tar.xz
  1325. Source1310: interfaces.doc.tar.xz
  1326. Source1311: interfaces.source.tar.xz
  1327. Source1312: interfaces.tar.xz
  1328. Source1313: inversepath.doc.tar.xz
  1329. Source1314: inversepath.source.tar.xz
  1330. Source1315: inversepath.tar.xz
  1331. Source1316: invoice.doc.tar.xz
  1332. Source1317: invoice.tar.xz
  1333. Source1318: iso.doc.tar.xz
  1334. Source1319: iso.source.tar.xz
  1335. Source1320: iso.tar.xz
  1336. Source1321: iso10303.doc.tar.xz
  1337. Source1322: iso10303.source.tar.xz
  1338. Source1323: iso10303.tar.xz
  1339. Source1324: isodate.doc.tar.xz
  1340. Source1325: isodate.source.tar.xz
  1341. Source1326: isodate.tar.xz
  1342. Source1327: isodoc.doc.tar.xz
  1343. Source1328: isodoc.source.tar.xz
  1344. Source1329: isodoc.tar.xz
  1345. Source1330: isonums.doc.tar.xz
  1346. Source1331: isonums.tar.xz
  1347. Source1332: isorot.doc.tar.xz
  1348. Source1333: isorot.source.tar.xz
  1349. Source1334: isorot.tar.xz
  1350. Source1335: isotope.doc.tar.xz
  1351. Source1336: isotope.source.tar.xz
  1352. Source1337: isotope.tar.xz
  1353. Source1338: issuulinks.doc.tar.xz
  1354. Source1339: issuulinks.source.tar.xz
  1355. Source1340: issuulinks.tar.xz
  1356. Source1341: iwhdp.doc.tar.xz
  1357. Source1342: iwhdp.tar.xz
  1358. Source1343: jlabels.doc.tar.xz
  1359. Source1344: jlabels.tar.xz
  1360. Source1345: jslectureplanner.doc.tar.xz
  1361. Source1346: jslectureplanner.tar.xz
  1362. Source1347: jumplines.doc.tar.xz
  1363. Source1348: jumplines.tar.xz
  1364. Source1349: jvlisting.doc.tar.xz
  1365. Source1350: jvlisting.source.tar.xz
  1366. Source1351: jvlisting.tar.xz
  1367. Source1352: kantlipsum.doc.tar.xz
  1368. Source1353: kantlipsum.source.tar.xz
  1369. Source1354: kantlipsum.tar.xz
  1370. Source1355: kerntest.doc.tar.xz
  1371. Source1356: kerntest.source.tar.xz
  1372. Source1357: kerntest.tar.xz
  1373. Source1358: keycommand.doc.tar.xz
  1374. Source1359: keycommand.source.tar.xz
  1375. Source1360: keycommand.tar.xz
  1376. Source1361: keyreader.doc.tar.xz
  1377. Source1362: keyreader.tar.xz
  1378. Source1363: keystroke.doc.tar.xz
  1379. Source1364: keystroke.tar.xz
  1380. Source1365: keyval2e.doc.tar.xz
  1381. Source1366: keyval2e.tar.xz
  1382. Source1367: kix.doc.tar.xz
  1383. Source1368: kix.tar.xz
  1384. Source1369: koma-moderncvclassic.doc.tar.xz
  1385. Source1370: koma-moderncvclassic.tar.xz
  1386. Source1371: koma-script-sfs.doc.tar.xz
  1387. Source1372: koma-script-sfs.tar.xz
  1388. Source1373: komacv.doc.tar.xz
  1389. Source1374: komacv.source.tar.xz
  1390. Source1375: komacv.tar.xz
  1391. Source1376: ktv-texdata.doc.tar.xz
  1392. Source1377: ktv-texdata.source.tar.xz
  1393. Source1378: ktv-texdata.tar.xz
  1394. Source1379: l3build.doc.tar.xz
  1395. Source1380: l3build.source.tar.xz
  1396. Source1381: l3build.tar.xz
  1397. Source1382: labbook.doc.tar.xz
  1398. Source1383: labbook.source.tar.xz
  1399. Source1384: labbook.tar.xz
  1400. Source1385: labelcas.doc.tar.xz
  1401. Source1386: labelcas.source.tar.xz
  1402. Source1387: labelcas.tar.xz
  1403. Source1388: labels.doc.tar.xz
  1404. Source1389: labels.source.tar.xz
  1405. Source1390: labels.tar.xz
  1406. Source1391: lastpackage.doc.tar.xz
  1407. Source1392: lastpackage.source.tar.xz
  1408. Source1393: lastpackage.tar.xz
  1409. Source1394: lastpage.doc.tar.xz
  1410. Source1395: lastpage.source.tar.xz
  1411. Source1396: lastpage.tar.xz
  1412. Source1397: latex-tds.doc.tar.xz
  1413. Source1398: latex-tds.source.tar.xz
  1414. Source1399: latex-tds.tar.xz
  1415. Source1400: latexdemo.doc.tar.xz
  1416. Source1401: latexdemo.source.tar.xz
  1417. Source1402: latexdemo.tar.xz
  1418. Source1403: layouts.doc.tar.xz
  1419. Source1404: layouts.source.tar.xz
  1420. Source1405: layouts.tar.xz
  1421. Source1406: lazylist.doc.tar.xz
  1422. Source1407: lazylist.tar.xz
  1423. Source1408: lcd.doc.tar.xz
  1424. Source1409: lcd.source.tar.xz
  1425. Source1410: lcd.tar.xz
  1426. Source1411: lcg.doc.tar.xz
  1427. Source1412: lcg.source.tar.xz
  1428. Source1413: lcg.tar.xz
  1429. Source1414: leading.doc.tar.xz
  1430. Source1415: leading.source.tar.xz
  1431. Source1416: leading.tar.xz
  1432. Source1417: leaflet.doc.tar.xz
  1433. Source1418: leaflet.source.tar.xz
  1434. Source1419: leaflet.tar.xz
  1435. Source1420: leftidx.doc.tar.xz
  1436. Source1421: leftidx.source.tar.xz
  1437. Source1422: leftidx.tar.xz
  1438. Source1423: lengthconvert.doc.tar.xz
  1439. Source1424: lengthconvert.source.tar.xz
  1440. Source1425: lengthconvert.tar.xz
  1441. Source1426: lettre.doc.tar.xz
  1442. Source1427: lettre.tar.xz
  1443. Source1428: lettrine.doc.tar.xz
  1444. Source1429: lettrine.source.tar.xz
  1445. Source1430: lettrine.tar.xz
  1446. Source1431: lewis.doc.tar.xz
  1447. Source1432: lewis.tar.xz
  1448. Source1433: lhelp.doc.tar.xz
  1449. Source1434: lhelp.source.tar.xz
  1450. Source1435: lhelp.tar.xz
  1451. Source1436: libgreek.doc.tar.xz
  1452. Source1437: libgreek.source.tar.xz
  1453. Source1438: libgreek.tar.xz
  1454. Source1439: limap.source.tar.xz
  1455. Source1440: limap.tar.xz
  1456. Source1441: linegoal.doc.tar.xz
  1457. Source1442: linegoal.source.tar.xz
  1458. Source1443: linegoal.tar.xz
  1459. Source1444: lipsum.doc.tar.xz
  1460. Source1445: lipsum.source.tar.xz
  1461. Source1446: lipsum.tar.xz
  1462. Source1447: lisp-on-tex.doc.tar.xz
  1463. Source1448: lisp-on-tex.tar.xz
  1464. Source1449: listing.doc.tar.xz
  1465. Source1450: listing.tar.xz
  1466. Source1451: listlbls.doc.tar.xz
  1467. Source1452: listlbls.source.tar.xz
  1468. Source1453: listlbls.tar.xz
  1469. Source1454: listliketab.doc.tar.xz
  1470. Source1455: listliketab.source.tar.xz
  1471. Source1456: listliketab.tar.xz
  1472. Source1457: listofsymbols.doc.tar.xz
  1473. Source1458: listofsymbols.source.tar.xz
  1474. Source1459: listofsymbols.tar.xz
  1475. Source1460: lkproof.doc.tar.xz
  1476. Source1461: lkproof.tar.xz
  1477. Source1462: lmake.doc.tar.xz
  1478. Source1463: lmake.source.tar.xz
  1479. Source1464: lmake.tar.xz
  1480. Source1465: locality.doc.tar.xz
  1481. Source1466: locality.source.tar.xz
  1482. Source1467: locality.tar.xz
  1483. Source1468: localloc.doc.tar.xz
  1484. Source1469: localloc.source.tar.xz
  1485. Source1470: localloc.tar.xz
  1486. Source1471: logbox.doc.tar.xz
  1487. Source1472: logbox.source.tar.xz
  1488. Source1473: logbox.tar.xz
  1489. Source1474: logical-markup-utils.doc.tar.xz
  1490. Source1475: logical-markup-utils.tar.xz
  1491. Source1476: logpap.doc.tar.xz
  1492. Source1477: logpap.source.tar.xz
  1493. Source1478: logpap.tar.xz
  1494. Source1479: longfbox.doc.tar.xz
  1495. Source1480: longfbox.tar.xz
  1496. Source1481: longfigure.doc.tar.xz
  1497. Source1482: longfigure.source.tar.xz
  1498. Source1483: longfigure.tar.xz
  1499. Source1484: longnamefilelist.doc.tar.xz
  1500. Source1485: longnamefilelist.source.tar.xz
  1501. Source1486: longnamefilelist.tar.xz
  1502. Source1487: loops.doc.tar.xz
  1503. Source1488: loops.tar.xz
  1504. Source1489: lsc.doc.tar.xz
  1505. Source1490: lsc.tar.xz
  1506. Source1491: lstaddons.doc.tar.xz
  1507. Source1492: lstaddons.source.tar.xz
  1508. Source1493: lstaddons.tar.xz
  1509. Source1494: lt3graph.doc.tar.xz
  1510. Source1495: lt3graph.tar.xz
  1511. Source1496: ltablex.doc.tar.xz
  1512. Source1497: ltablex.tar.xz
  1513. Source1498: ltabptch.doc.tar.xz
  1514. Source1499: ltabptch.tar.xz
  1515. Source1500: ltxdockit.doc.tar.xz
  1516. Source1501: ltxdockit.tar.xz
  1517. Source1502: ltxindex.doc.tar.xz
  1518. Source1503: ltxindex.source.tar.xz
  1519. Source1504: ltxindex.tar.xz
  1520. Source1505: ltxkeys.doc.tar.xz
  1521. Source1506: ltxkeys.tar.xz
  1522. Source1507: ltxnew.doc.tar.xz
  1523. Source1508: ltxnew.source.tar.xz
  1524. Source1509: ltxnew.tar.xz
  1525. Source1510: ltxtools.doc.tar.xz
  1526. Source1511: ltxtools.tar.xz
  1527. Source1512: macroswap.doc.tar.xz
  1528. Source1513: macroswap.source.tar.xz
  1529. Source1514: macroswap.tar.xz
  1530. Source1515: magaz.doc.tar.xz
  1531. Source1516: magaz.tar.xz
  1532. Source1517: mailing.doc.tar.xz
  1533. Source1518: mailing.source.tar.xz
  1534. Source1519: mailing.tar.xz
  1535. Source1520: mailmerge.doc.tar.xz
  1536. Source1521: mailmerge.source.tar.xz
  1537. Source1522: mailmerge.tar.xz
  1538. Source1523: makebarcode.doc.tar.xz
  1539. Source1524: makebarcode.tar.xz
  1540. Source1525: makebox.doc.tar.xz
  1541. Source1526: makebox.source.tar.xz
  1542. Source1527: makebox.tar.xz
  1543. Source1528: makecell.doc.tar.xz
  1544. Source1529: makecell.source.tar.xz
  1545. Source1530: makecell.tar.xz
  1546. Source1531: makecirc.doc.tar.xz
  1547. Source1532: makecirc.tar.xz
  1548. Source1533: makecmds.doc.tar.xz
  1549. Source1534: makecmds.source.tar.xz
  1550. Source1535: makecmds.tar.xz
  1551. Source1536: makedtx.doc.tar.xz
  1552. Source1537: makedtx.source.tar.xz
  1553. Source1538: makedtx.tar.xz
  1554. Source1539: makeglos.doc.tar.xz
  1555. Source1540: makeglos.tar.xz
  1556. Source1541: mandi.doc.tar.xz
  1557. Source1542: mandi.source.tar.xz
  1558. Source1543: mandi.tar.xz
  1559. Source1544: manfnt.source.tar.xz
  1560. Source1545: manfnt.tar.xz
  1561. Source1546: manuscript.doc.tar.xz
  1562. Source1547: manuscript.source.tar.xz
  1563. Source1548: manuscript.tar.xz
  1564. Source1549: marginfix.doc.tar.xz
  1565. Source1550: marginfix.source.tar.xz
  1566. Source1551: marginfix.tar.xz
  1567. Source1552: marginnote.doc.tar.xz
  1568. Source1553: marginnote.source.tar.xz
  1569. Source1554: marginnote.tar.xz
  1570. Source1555: mathalfa.doc.tar.xz
  1571. Source1556: mathalfa.tar.xz
  1572. Source1557: mathastext.doc.tar.xz
  1573. Source1558: mathastext.source.tar.xz
  1574. Source1559: mathastext.tar.xz
  1575. Source1560: mathexam.doc.tar.xz
  1576. Source1561: mathexam.source.tar.xz
  1577. Source1562: mathexam.tar.xz
  1578. Source1563: maybemath.doc.tar.xz
  1579. Source1564: maybemath.tar.xz
  1580. Source1565: mbenotes.doc.tar.xz
  1581. Source1566: mbenotes.tar.xz
  1582. Source1567: mcaption.doc.tar.xz
  1583. Source1568: mcaption.source.tar.xz
  1584. Source1569: mcaption.tar.xz
  1585. Source1570: mceinleger.doc.tar.xz
  1586. Source1571: mceinleger.tar.xz
  1587. Source1572: mcite.doc.tar.xz
  1588. Source1573: mcite.source.tar.xz
  1589. Source1574: mcite.tar.xz
  1590. Source1575: mciteplus.doc.tar.xz
  1591. Source1576: mciteplus.tar.xz
  1592. Source1577: mdframed.doc.tar.xz
  1593. Source1578: mdframed.source.tar.xz
  1594. Source1579: mdframed.tar.xz
  1595. Source1580: media9.doc.tar.xz
  1596. Source1581: media9.source.tar.xz
  1597. Source1582: media9.tar.xz
  1598. Source1583: medstarbeamer.doc.tar.xz
  1599. Source1584: medstarbeamer.tar.xz
  1600. Source1585: meetingmins.doc.tar.xz
  1601. Source1586: meetingmins.source.tar.xz
  1602. Source1587: meetingmins.tar.xz
  1603. Source1588: memexsupp.doc.tar.xz
  1604. Source1589: memexsupp.tar.xz
  1605. Source1590: memory.doc.tar.xz
  1606. Source1591: memory.source.tar.xz
  1607. Source1592: memory.tar.xz
  1608. Source1593: menu.doc.tar.xz
  1609. Source1594: menu.source.tar.xz
  1610. Source1595: menu.tar.xz
  1611. Source1596: menukeys.doc.tar.xz
  1612. Source1597: menukeys.source.tar.xz
  1613. Source1598: menukeys.tar.xz
  1614. Source1599: method.doc.tar.xz
  1615. Source1600: method.source.tar.xz
  1616. Source1601: method.tar.xz
  1617. Source1602: metre.doc.tar.xz
  1618. Source1603: metre.source.tar.xz
  1619. Source1604: metre.tar.xz
  1620. Source1605: mfirstuc.doc.tar.xz
  1621. Source1606: mfirstuc.source.tar.xz
  1622. Source1607: mfirstuc.tar.xz
  1623. Source1608: mftinc.doc.tar.xz
  1624. Source1609: mftinc.source.tar.xz
  1625. Source1610: mftinc.tar.xz
  1626. Source1611: midpage.doc.tar.xz
  1627. Source1612: midpage.tar.xz
  1628. Source1613: minibox.doc.tar.xz
  1629. Source1614: minibox.source.tar.xz
  1630. Source1615: minibox.tar.xz
  1631. Source1616: minifp.doc.tar.xz
  1632. Source1617: minifp.source.tar.xz
  1633. Source1618: minifp.tar.xz
  1634. Source1619: minipage-marginpar.doc.tar.xz
  1635. Source1620: minipage-marginpar.source.tar.xz
  1636. Source1621: minipage-marginpar.tar.xz
  1637. Source1622: minitoc.doc.tar.xz
  1638. Source1623: minitoc.tar.xz
  1639. Source1624: minorrevision.doc.tar.xz
  1640. Source1625: minorrevision.tar.xz
  1641. Source1626: minted.doc.tar.xz
  1642. Source1627: minted.source.tar.xz
  1643. Source1628: minted.tar.xz
  1644. Source1629: minutes.doc.tar.xz
  1645. Source1630: minutes.source.tar.xz
  1646. Source1631: minutes.tar.xz
  1647. Source1632: mla-paper.doc.tar.xz
  1648. Source1633: mla-paper.tar.xz
  1649. Source1634: mlist.doc.tar.xz
  1650. Source1635: mlist.source.tar.xz
  1651. Source1636: mlist.tar.xz
  1652. Source1637: mmap.doc.tar.xz
  1653. Source1638: mmap.tar.xz
  1654. Source1639: mnotes.doc.tar.xz
  1655. Source1640: mnotes.source.tar.xz
  1656. Source1641: mnotes.tar.xz
  1657. Source1642: moderncv.doc.tar.xz
  1658. Source1643: moderncv.tar.xz
  1659. Source1644: moderntimeline.doc.tar.xz
  1660. Source1645: moderntimeline.source.tar.xz
  1661. Source1646: moderntimeline.tar.xz
  1662. Source1647: modref.doc.tar.xz
  1663. Source1648: modref.source.tar.xz
  1664. Source1649: modref.tar.xz
  1665. Source1650: modroman.doc.tar.xz
  1666. Source1651: modroman.source.tar.xz
  1667. Source1652: modroman.tar.xz
  1668. Source1653: monofill.doc.tar.xz
  1669. Source1654: monofill.source.tar.xz
  1670. Source1655: monofill.tar.xz
  1671. Source1656: moreenum.doc.tar.xz
  1672. Source1657: moreenum.tar.xz
  1673. Source1658: morefloats.doc.tar.xz
  1674. Source1659: morefloats.source.tar.xz
  1675. Source1660: morefloats.tar.xz
  1676. Source1661: morehype.doc.tar.xz
  1677. Source1662: morehype.source.tar.xz
  1678. Source1663: morehype.tar.xz
  1679. Source1664: moresize.doc.tar.xz
  1680. Source1665: moresize.source.tar.xz
  1681. Source1666: moresize.tar.xz
  1682. Source1667: moreverb.doc.tar.xz
  1683. Source1668: moreverb.source.tar.xz
  1684. Source1669: moreverb.tar.xz
  1685. Source1670: morewrites.doc.tar.xz
  1686. Source1671: morewrites.source.tar.xz
  1687. Source1672: morewrites.tar.xz
  1688. Source1673: movie15.doc.tar.xz
  1689. Source1674: movie15.tar.xz
  1690. Source1675: mparhack.doc.tar.xz
  1691. Source1676: mparhack.source.tar.xz
  1692. Source1677: mparhack.tar.xz
  1693. Source1678: msc.doc.tar.xz
  1694. Source1679: msc.tar.xz
  1695. Source1680: msg.doc.tar.xz
  1696. Source1681: msg.source.tar.xz
  1697. Source1682: msg.tar.xz
  1698. Source1683: mslapa.doc.tar.xz
  1699. Source1684: mslapa.tar.xz
  1700. Source1685: mtgreek.doc.tar.xz
  1701. Source1686: mtgreek.source.tar.xz
  1702. Source1687: mtgreek.tar.xz
  1703. Source1688: multenum.doc.tar.xz
  1704. Source1689: multenum.tar.xz
  1705. Source1690: multiaudience.doc.tar.xz
  1706. Source1691: multiaudience.source.tar.xz
  1707. Source1692: multiaudience.tar.xz
  1708. Source1693: multibbl.doc.tar.xz
  1709. Source1694: multibbl.source.tar.xz
  1710. Source1695: multibbl.tar.xz
  1711. Source1696: multicap.doc.tar.xz
  1712. Source1697: multicap.source.tar.xz
  1713. Source1698: multicap.tar.xz
  1714. Source1699: multienv.doc.tar.xz
  1715. Source1700: multienv.source.tar.xz
  1716. Source1701: multienv.tar.xz
  1717. Source1702: multiexpand.doc.tar.xz
  1718. Source1703: multiexpand.source.tar.xz
  1719. Source1704: multiexpand.tar.xz
  1720. Source1705: multirow.doc.tar.xz
  1721. Source1706: multirow.tar.xz
  1722. Source1707: mversion.doc.tar.xz
  1723. Source1708: mversion.source.tar.xz
  1724. Source1709: mversion.tar.xz
  1725. Source1710: mwe.doc.tar.xz
  1726. Source1711: mwe.source.tar.xz
  1727. Source1712: mwe.tar.xz
  1728. Source1713: mweights.doc.tar.xz
  1729. Source1714: mweights.tar.xz
  1730. Source1715: mycv.doc.tar.xz
  1731. Source1716: mycv.source.tar.xz
  1732. Source1717: mycv.tar.xz
  1733. Source1718: mylatexformat.doc.tar.xz
  1734. Source1719: mylatexformat.source.tar.xz
  1735. Source1720: mylatexformat.tar.xz
  1736. Source1721: nag.doc.tar.xz
  1737. Source1722: nag.source.tar.xz
  1738. Source1723: nag.tar.xz
  1739. Source1724: nameauth.doc.tar.xz
  1740. Source1725: nameauth.source.tar.xz
  1741. Source1726: nameauth.tar.xz
  1742. Source1727: namespc.doc.tar.xz
  1743. Source1728: namespc.source.tar.xz
  1744. Source1729: namespc.tar.xz
  1745. Source1730: ncclatex.doc.tar.xz
  1746. Source1731: ncclatex.tar.xz
  1747. Source1732: ncctools.doc.tar.xz
  1748. Source1733: ncctools.source.tar.xz
  1749. Source1734: ncctools.tar.xz
  1750. Source1735: needspace.doc.tar.xz
  1751. Source1736: needspace.source.tar.xz
  1752. Source1737: needspace.tar.xz
  1753. Source1738: nestquot.tar.xz
  1754. Source1739: newcommand.doc.tar.xz
  1755. Source1740: newcommand.tar.xz
  1756. Source1741: newenviron.doc.tar.xz
  1757. Source1742: newenviron.tar.xz
  1758. Source1743: newfile.doc.tar.xz
  1759. Source1744: newfile.source.tar.xz
  1760. Source1745: newfile.tar.xz
  1761. Source1746: newlfm.doc.tar.xz
  1762. Source1747: newlfm.source.tar.xz
  1763. Source1748: newlfm.tar.xz
  1764. Source1749: newspaper.doc.tar.xz
  1765. Source1750: newspaper.source.tar.xz
  1766. Source1751: newspaper.tar.xz
  1767. Source1752: newunicodechar.doc.tar.xz
  1768. Source1753: newunicodechar.source.tar.xz
  1769. Source1754: newunicodechar.tar.xz
  1770. Source1755: newvbtm.doc.tar.xz
  1771. Source1756: newvbtm.source.tar.xz
  1772. Source1757: newvbtm.tar.xz
  1773. Source1758: newverbs.doc.tar.xz
  1774. Source1759: newverbs.source.tar.xz
  1775. Source1760: newverbs.tar.xz
  1776. Source1761: nextpage.tar.xz
  1777. Source1762: nfssext-cfr.doc.tar.xz
  1778. Source1763: nfssext-cfr.tar.xz
  1779. Source1764: nicefilelist.doc.tar.xz
  1780. Source1765: nicefilelist.source.tar.xz
  1781. Source1766: nicefilelist.tar.xz
  1782. Source1767: niceframe.doc.tar.xz
  1783. Source1768: niceframe.source.tar.xz
  1784. Source1769: niceframe.tar.xz
  1785. Source1770: nicetext.doc.tar.xz
  1786. Source1771: nicetext.source.tar.xz
  1787. Source1772: nicetext.tar.xz
  1788. Source1773: nlctdoc.doc.tar.xz
  1789. Source1774: nlctdoc.tar.xz
  1790. Source1775: noconflict.doc.tar.xz
  1791. Source1776: noconflict.tar.xz
  1792. Source1777: noindentafter.doc.tar.xz
  1793. Source1778: noindentafter.tar.xz
  1794. Source1779: noitcrul.doc.tar.xz
  1795. Source1780: noitcrul.source.tar.xz
  1796. Source1781: noitcrul.tar.xz
  1797. Source1782: nolbreaks.doc.tar.xz
  1798. Source1783: nolbreaks.tar.xz
  1799. Source1784: nomencl.doc.tar.xz
  1800. Source1785: nomencl.source.tar.xz
  1801. Source1786: nomencl.tar.xz
  1802. Source1787: nomentbl.doc.tar.xz
  1803. Source1788: nomentbl.source.tar.xz
  1804. Source1789: nomentbl.tar.xz
  1805. Source1790: nonfloat.doc.tar.xz
  1806. Source1791: nonfloat.source.tar.xz
  1807. Source1792: nonfloat.tar.xz
  1808. Source1793: nonumonpart.doc.tar.xz
  1809. Source1794: nonumonpart.source.tar.xz
  1810. Source1795: nonumonpart.tar.xz
  1811. Source1796: nopageno.doc.tar.xz
  1812. Source1797: nopageno.tar.xz
  1813. Source1798: notes.doc.tar.xz
  1814. Source1799: notes.source.tar.xz
  1815. Source1800: notes.tar.xz
  1816. Source1801: notoccite.doc.tar.xz
  1817. Source1802: notoccite.tar.xz
  1818. Source1803: nowidow.doc.tar.xz
  1819. Source1804: nowidow.source.tar.xz
  1820. Source1805: nowidow.tar.xz
  1821. Source1806: nox.doc.tar.xz
  1822. Source1807: nox.tar.xz
  1823. Source1808: ntheorem.doc.tar.xz
  1824. Source1809: ntheorem.source.tar.xz
  1825. Source1810: ntheorem.tar.xz
  1826. Source1811: numberedblock.doc.tar.xz
  1827. Source1812: numberedblock.tar.xz
  1828. Source1813: numname.doc.tar.xz
  1829. Source1814: numname.tar.xz
  1830. Source1815: numprint.doc.tar.xz
  1831. Source1816: numprint.source.tar.xz
  1832. Source1817: numprint.tar.xz
  1833. Source1818: ocg-p.doc.tar.xz
  1834. Source1819: ocg-p.tar.xz
  1835. Source1820: ocgx.doc.tar.xz
  1836. Source1821: ocgx.source.tar.xz
  1837. Source1822: ocgx.tar.xz
  1838. Source1823: ocgx2.doc.tar.xz
  1839. Source1824: ocgx2.tar.xz
  1840. Source1825: ocr-latex.doc.tar.xz
  1841. Source1826: ocr-latex.tar.xz
  1842. Source1827: octavo.doc.tar.xz
  1843. Source1828: octavo.source.tar.xz
  1844. Source1829: octavo.tar.xz
  1845. Source1830: oldstyle.doc.tar.xz
  1846. Source1831: oldstyle.source.tar.xz
  1847. Source1832: oldstyle.tar.xz
  1848. Source1833: onlyamsmath.doc.tar.xz
  1849. Source1834: onlyamsmath.source.tar.xz
  1850. Source1835: onlyamsmath.tar.xz
  1851. Source1836: opcit.doc.tar.xz
  1852. Source1837: opcit.source.tar.xz
  1853. Source1838: opcit.tar.xz
  1854. Source1839: optional.doc.tar.xz
  1855. Source1840: optional.tar.xz
  1856. Source1841: options.doc.tar.xz
  1857. Source1842: options.tar.xz
  1858. Source1843: outline.doc.tar.xz
  1859. Source1844: outline.tar.xz
  1860. Source1845: outliner.doc.tar.xz
  1861. Source1846: outliner.tar.xz
  1862. Source1847: outlines.doc.tar.xz
  1863. Source1848: outlines.tar.xz
  1864. Source1849: overpic.doc.tar.xz
  1865. Source1850: overpic.tar.xz
  1866. Source1851: pagecolor.doc.tar.xz
  1867. Source1852: pagecolor.source.tar.xz
  1868. Source1853: pagecolor.tar.xz
  1869. Source1854: pagecont.doc.tar.xz
  1870. Source1855: pagecont.source.tar.xz
  1871. Source1856: pagecont.tar.xz
  1872. Source1857: pagenote.doc.tar.xz
  1873. Source1858: pagenote.source.tar.xz
  1874. Source1859: pagenote.tar.xz
  1875. Source1860: pagerange.doc.tar.xz
  1876. Source1861: pagerange.tar.xz
  1877. Source1862: pageslts.doc.tar.xz
  1878. Source1863: pageslts.source.tar.xz
  1879. Source1864: pageslts.tar.xz
  1880. Source1865: paper.doc.tar.xz
  1881. Source1866: paper.source.tar.xz
  1882. Source1867: paper.tar.xz
  1883. Source1868: papercdcase.doc.tar.xz
  1884. Source1869: papercdcase.source.tar.xz
  1885. Source1870: papercdcase.tar.xz
  1886. Source1871: papermas.doc.tar.xz
  1887. Source1872: papermas.source.tar.xz
  1888. Source1873: papermas.tar.xz
  1889. Source1874: papertex.doc.tar.xz
  1890. Source1875: papertex.source.tar.xz
  1891. Source1876: papertex.tar.xz
  1892. Source1877: paracol.doc.tar.xz
  1893. Source1878: paracol.source.tar.xz
  1894. Source1879: paracol.tar.xz
  1895. Source1880: paralist.doc.tar.xz
  1896. Source1881: paralist.source.tar.xz
  1897. Source1882: paralist.tar.xz
  1898. Source1883: paresse.doc.tar.xz
  1899. Source1884: paresse.source.tar.xz
  1900. Source1885: paresse.tar.xz
  1901. Source1886: parnotes.doc.tar.xz
  1902. Source1887: parnotes.tar.xz
  1903. Source1888: parselines.doc.tar.xz
  1904. Source1889: parselines.source.tar.xz
  1905. Source1890: parselines.tar.xz
  1906. Source1891: pas-cours.doc.tar.xz
  1907. Source1892: pas-cours.tar.xz
  1908. Source1893: pas-cv.doc.tar.xz
  1909. Source1894: pas-cv.tar.xz
  1910. Source1895: pas-tableur.doc.tar.xz
  1911. Source1896: pas-tableur.tar.xz
  1912. Source1897: patch.source.tar.xz
  1913. Source1898: patch.tar.xz
  1914. Source1899: patchcmd.doc.tar.xz
  1915. Source1900: patchcmd.source.tar.xz
  1916. Source1901: patchcmd.tar.xz
  1917. Source1902: pauldoc.doc.tar.xz
  1918. Source1903: pauldoc.source.tar.xz
  1919. Source1904: pauldoc.tar.xz
  1920. Source1905: pawpict.doc.tar.xz
  1921. Source1906: pawpict.source.tar.xz
  1922. Source1907: pawpict.tar.xz
  1923. Source1908: pax.doc.tar.xz
  1924. Source1909: pax.source.tar.xz
  1925. Source1910: pax.tar.xz
  1926. Source1911: pbox.doc.tar.xz
  1927. Source1912: pbox.source.tar.xz
  1928. Source1913: pbox.tar.xz
  1929. Source1914: pbsheet.doc.tar.xz
  1930. Source1915: pbsheet.source.tar.xz
  1931. Source1916: pbsheet.tar.xz
  1932. Source1917: pdf14.doc.tar.xz
  1933. Source1918: pdf14.source.tar.xz
  1934. Source1919: pdf14.tar.xz
  1935. Source1920: pdfcomment.doc.tar.xz
  1936. Source1921: pdfcomment.tar.xz
  1937. Source1922: pdfcprot.doc.tar.xz
  1938. Source1923: pdfcprot.source.tar.xz
  1939. Source1924: pdfcprot.tar.xz
  1940. Source1925: pdfmarginpar.doc.tar.xz
  1941. Source1926: pdfmarginpar.tar.xz
  1942. Source1927: pdfpagediff.doc.tar.xz
  1943. Source1928: pdfpagediff.tar.xz
  1944. Source1929: pdfscreen.doc.tar.xz
  1945. Source1930: pdfscreen.tar.xz
  1946. Source1931: pdfslide.doc.tar.xz
  1947. Source1932: pdfslide.tar.xz
  1948. Source1933: pdfsync.doc.tar.xz
  1949. Source1934: pdfsync.tar.xz
  1950. Source1935: pdfwin.doc.tar.xz
  1951. Source1936: pdfwin.tar.xz
  1952. Source1937: pdfx.doc.tar.xz
  1953. Source1938: pdfx.source.tar.xz
  1954. Source1939: pdfx.tar.xz
  1955. Source1940: pecha.doc.tar.xz
  1956. Source1941: pecha.tar.xz
  1957. Source1942: perltex.doc.tar.xz
  1958. Source1943: perltex.source.tar.xz
  1959. Source1944: perltex.tar.xz
  1960. Source1945: permute.doc.tar.xz
  1961. Source1946: permute.source.tar.xz
  1962. Source1947: permute.tar.xz
  1963. Source1948: petiteannonce.doc.tar.xz
  1964. Source1949: petiteannonce.tar.xz
  1965. Source1950: philex.doc.tar.xz
  1966. Source1951: philex.tar.xz
  1967. Source1952: photo.doc.tar.xz
  1968. Source1953: photo.source.tar.xz
  1969. Source1954: photo.tar.xz
  1970. Source1955: piff.doc.tar.xz
  1971. Source1956: piff.tar.xz
  1972. Source1957: pkgloader.doc.tar.xz
  1973. Source1958: pkgloader.tar.xz
  1974. Source1959: placeins.doc.tar.xz
  1975. Source1960: placeins.tar.xz
  1976. Source1961: plantslabels.doc.tar.xz
  1977. Source1962: plantslabels.tar.xz
  1978. Source1963: plates.doc.tar.xz
  1979. Source1964: plates.tar.xz
  1980. Source1965: plweb.doc.tar.xz
  1981. Source1966: plweb.source.tar.xz
  1982. Source1967: plweb.tar.xz
  1983. Source1968: polynom.doc.tar.xz
  1984. Source1969: polynom.source.tar.xz
  1985. Source1970: polynom.tar.xz
  1986. Source1971: polynomial.doc.tar.xz
  1987. Source1972: polynomial.source.tar.xz
  1988. Source1973: polynomial.tar.xz
  1989. Source1974: polytable.doc.tar.xz
  1990. Source1975: polytable.source.tar.xz
  1991. Source1976: polytable.tar.xz
  1992. Source1977: postcards.doc.tar.xz
  1993. Source1978: postcards.tar.xz
  1994. Source1979: poster-mac.doc.tar.xz
  1995. Source1980: poster-mac.tar.xz
  1996. Source1981: ppr-prv.doc.tar.xz
  1997. Source1982: ppr-prv.source.tar.xz
  1998. Source1983: ppr-prv.tar.xz
  1999. Source1984: preprint.doc.tar.xz
  2000. Source1985: preprint.source.tar.xz
  2001. Source1986: preprint.tar.xz
  2002. Source1987: pressrelease.doc.tar.xz
  2003. Source1988: pressrelease.source.tar.xz
  2004. Source1989: pressrelease.tar.xz
  2005. Source1990: prettyref.doc.tar.xz
  2006. Source1991: prettyref.source.tar.xz
  2007. Source1992: prettyref.tar.xz
  2008. Source1993: preview.doc.tar.xz
  2009. Source1994: preview.source.tar.xz
  2010. Source1995: preview.tar.xz
  2011. Source1996: printlen.doc.tar.xz
  2012. Source1997: printlen.tar.xz
  2013. Source1998: probsoln.doc.tar.xz
  2014. Source1999: probsoln.source.tar.xz
  2015. Source2000: probsoln.tar.xz
  2016. Source2001: program.doc.tar.xz
  2017. Source2002: program.tar.xz
  2018. Source2003: progress.doc.tar.xz
  2019. Source2004: progress.tar.xz
  2020. Source2005: progressbar.doc.tar.xz
  2021. Source2006: progressbar.tar.xz
  2022. Source2007: proofread.doc.tar.xz
  2023. Source2008: proofread.source.tar.xz
  2024. Source2009: proofread.tar.xz
  2025. Source2010: properties.doc.tar.xz
  2026. Source2011: properties.tar.xz
  2027. Source2012: prosper.doc.tar.xz
  2028. Source2013: prosper.tar.xz
  2029. Source2014: protex.doc.tar.xz
  2030. Source2015: protex.tar.xz
  2031. Source2016: protocol.doc.tar.xz
  2032. Source2017: protocol.source.tar.xz
  2033. Source2018: protocol.tar.xz
  2034. Source2019: psfragx.doc.tar.xz
  2035. Source2020: psfragx.source.tar.xz
  2036. Source2021: psfragx.tar.xz
  2037. Source2022: pst-pdf.doc.tar.xz
  2038. Source2023: pst-pdf.source.tar.xz
  2039. Source2024: pst-pdf.tar.xz
  2040. Source2025: pstool.doc.tar.xz
  2041. Source2026: pstool.source.tar.xz
  2042. Source2027: pstool.tar.xz
  2043. Source2028: pxgreeks.doc.tar.xz
  2044. Source2029: pxgreeks.source.tar.xz
  2045. Source2030: pxgreeks.tar.xz
  2046. Source2031: python.doc.tar.xz
  2047. Source2032: python.tar.xz
  2048. Source2033: qcm.doc.tar.xz
  2049. Source2034: qcm.source.tar.xz
  2050. Source2035: qcm.tar.xz
  2051. Source2036: qstest.doc.tar.xz
  2052. Source2037: qstest.source.tar.xz
  2053. Source2038: qstest.tar.xz
  2054. Source2039: qsymbols.doc.tar.xz
  2055. Source2040: qsymbols.source.tar.xz
  2056. Source2041: qsymbols.tar.xz
  2057. Source2042: quotchap.doc.tar.xz
  2058. Source2043: quotchap.source.tar.xz
  2059. Source2044: quotchap.tar.xz
  2060. Source2045: quoting.doc.tar.xz
  2061. Source2046: quoting.source.tar.xz
  2062. Source2047: quoting.tar.xz
  2063. Source2048: quotmark.doc.tar.xz
  2064. Source2049: quotmark.source.tar.xz
  2065. Source2050: quotmark.tar.xz
  2066. Source2051: ran_toks.doc.tar.xz
  2067. Source2052: ran_toks.source.tar.xz
  2068. Source2053: ran_toks.tar.xz
  2069. Source2054: randtext.doc.tar.xz
  2070. Source2055: randtext.tar.xz
  2071. Source2056: rccol.doc.tar.xz
  2072. Source2057: rccol.source.tar.xz
  2073. Source2058: rccol.tar.xz
  2074. Source2059: rcs-multi.doc.tar.xz
  2075. Source2060: rcs-multi.source.tar.xz
  2076. Source2061: rcs-multi.tar.xz
  2077. Source2062: rcsinfo.doc.tar.xz
  2078. Source2063: rcsinfo.source.tar.xz
  2079. Source2064: rcsinfo.tar.xz
  2080. Source2065: readarray.doc.tar.xz
  2081. Source2066: readarray.tar.xz
  2082. Source2067: realboxes.doc.tar.xz
  2083. Source2068: realboxes.source.tar.xz
  2084. Source2069: realboxes.tar.xz
  2085. Source2070: recipe.doc.tar.xz
  2086. Source2071: recipe.tar.xz
  2087. Source2072: recipebook.doc.tar.xz
  2088. Source2073: recipebook.tar.xz
  2089. Source2074: recipecard.doc.tar.xz
  2090. Source2075: recipecard.source.tar.xz
  2091. Source2076: recipecard.tar.xz
  2092. Source2077: rectopma.doc.tar.xz
  2093. Source2078: rectopma.tar.xz
  2094. Source2079: refcheck.doc.tar.xz
  2095. Source2080: refcheck.tar.xz
  2096. Source2081: refenums.doc.tar.xz
  2097. Source2082: refenums.tar.xz
  2098. Source2083: reflectgraphics.doc.tar.xz
  2099. Source2084: reflectgraphics.source.tar.xz
  2100. Source2085: reflectgraphics.tar.xz
  2101. Source2086: refman.doc.tar.xz
  2102. Source2087: refman.source.tar.xz
  2103. Source2088: refman.tar.xz
  2104. Source2089: refstyle.doc.tar.xz
  2105. Source2090: refstyle.source.tar.xz
  2106. Source2091: refstyle.tar.xz
  2107. Source2092: regcount.doc.tar.xz
  2108. Source2093: regcount.source.tar.xz
  2109. Source2094: regcount.tar.xz
  2110. Source2095: regexpatch.doc.tar.xz
  2111. Source2096: regexpatch.source.tar.xz
  2112. Source2097: regexpatch.tar.xz
  2113. Source2098: register.doc.tar.xz
  2114. Source2099: register.source.tar.xz
  2115. Source2100: register.tar.xz
  2116. Source2101: regstats.doc.tar.xz
  2117. Source2102: regstats.source.tar.xz
  2118. Source2103: regstats.tar.xz
  2119. Source2104: relenc.doc.tar.xz
  2120. Source2105: relenc.source.tar.xz
  2121. Source2106: relenc.tar.xz
  2122. Source2107: relsize.doc.tar.xz
  2123. Source2108: relsize.tar.xz
  2124. Source2109: repeatindex.doc.tar.xz
  2125. Source2110: repeatindex.tar.xz
  2126. Source2111: repltext.doc.tar.xz
  2127. Source2112: repltext.source.tar.xz
  2128. Source2113: repltext.tar.xz
  2129. Source2114: rjlparshap.doc.tar.xz
  2130. Source2115: rjlparshap.source.tar.xz
  2131. Source2116: rjlparshap.tar.xz
  2132. Source2117: rlepsf.doc.tar.xz
  2133. Source2118: rlepsf.tar.xz
  2134. Source2119: rmpage.doc.tar.xz
  2135. Source2120: rmpage.tar.xz
  2136. Source2121: robustcommand.doc.tar.xz
  2137. Source2122: robustcommand.source.tar.xz
  2138. Source2123: robustcommand.tar.xz
  2139. Source2124: robustindex.doc.tar.xz
  2140. Source2125: robustindex.tar.xz
  2141. Source2126: romanbar.doc.tar.xz
  2142. Source2127: romanbar.source.tar.xz
  2143. Source2128: romanbar.tar.xz
  2144. Source2129: romanbarpagenumber.doc.tar.xz
  2145. Source2130: romanbarpagenumber.source.tar.xz
  2146. Source2131: romanbarpagenumber.tar.xz
  2147. Source2132: romanneg.doc.tar.xz
  2148. Source2133: romanneg.tar.xz
  2149. Source2134: romannum.doc.tar.xz
  2150. Source2135: romannum.source.tar.xz
  2151. Source2136: romannum.tar.xz
  2152. Source2137: rotfloat.doc.tar.xz
  2153. Source2138: rotfloat.source.tar.xz
  2154. Source2139: rotfloat.tar.xz
  2155. Source2140: rotpages.doc.tar.xz
  2156. Source2141: rotpages.tar.xz
  2157. Source2142: roundbox.doc.tar.xz
  2158. Source2143: roundbox.tar.xz
  2159. Source2144: rterface.doc.tar.xz
  2160. Source2145: rterface.tar.xz
  2161. Source2146: rtkinenc.doc.tar.xz
  2162. Source2147: rtkinenc.source.tar.xz
  2163. Source2148: rtkinenc.tar.xz
  2164. Source2149: rulercompass.doc.tar.xz
  2165. Source2150: rulercompass.source.tar.xz
  2166. Source2151: rulercompass.tar.xz
  2167. Source2152: rvwrite.doc.tar.xz
  2168. Source2153: rvwrite.tar.xz
  2169. Source2154: sauerj.doc.tar.xz
  2170. Source2155: sauerj.source.tar.xz
  2171. Source2156: sauerj.tar.xz
  2172. Source2157: savefnmark.doc.tar.xz
  2173. Source2158: savefnmark.source.tar.xz
  2174. Source2159: savefnmark.tar.xz
  2175. Source2160: savesym.tar.xz
  2176. Source2161: savetrees.doc.tar.xz
  2177. Source2162: savetrees.source.tar.xz
  2178. Source2163: savetrees.tar.xz
  2179. Source2164: scale.doc.tar.xz
  2180. Source2165: scale.source.tar.xz
  2181. Source2166: scale.tar.xz
  2182. Source2167: scalebar.doc.tar.xz
  2183. Source2168: scalebar.source.tar.xz
  2184. Source2169: scalebar.tar.xz
  2185. Source2170: scalerel.doc.tar.xz
  2186. Source2171: scalerel.tar.xz
  2187. Source2172: scanpages.doc.tar.xz
  2188. Source2173: scanpages.tar.xz
  2189. Source2174: sdrt.doc.tar.xz
  2190. Source2175: sdrt.tar.xz
  2191. Source2176: secdot.doc.tar.xz
  2192. Source2177: secdot.tar.xz
  2193. Source2178: sectionbox.doc.tar.xz
  2194. Source2179: sectionbox.tar.xz
  2195. Source2180: sectsty.doc.tar.xz
  2196. Source2181: sectsty.source.tar.xz
  2197. Source2182: sectsty.tar.xz
  2198. Source2183: seealso.doc.tar.xz
  2199. Source2184: seealso.source.tar.xz
  2200. Source2185: seealso.tar.xz
  2201. Source2186: selectp.doc.tar.xz
  2202. Source2187: selectp.tar.xz
  2203. Source2188: semantic.doc.tar.xz
  2204. Source2189: semantic.source.tar.xz
  2205. Source2190: semantic.tar.xz
  2206. Source2191: semioneside.doc.tar.xz
  2207. Source2192: semioneside.source.tar.xz
  2208. Source2193: semioneside.tar.xz
  2209. Source2194: semproc.doc.tar.xz
  2210. Source2195: semproc.source.tar.xz
  2211. Source2196: semproc.tar.xz
  2212. Source2197: sepfootnotes.doc.tar.xz
  2213. Source2198: sepfootnotes.tar.xz
  2214. Source2199: seqsplit.doc.tar.xz
  2215. Source2200: seqsplit.source.tar.xz
  2216. Source2201: seqsplit.tar.xz
  2217. Source2202: sf298.doc.tar.xz
  2218. Source2203: sf298.source.tar.xz
  2219. Source2204: sf298.tar.xz
  2220. Source2205: sffms.doc.tar.xz
  2221. Source2206: sffms.source.tar.xz
  2222. Source2207: sffms.tar.xz
  2223. Source2208: sfmath.tar.xz
  2224. Source2209: shadethm.doc.tar.xz
  2225. Source2210: shadethm.tar.xz
  2226. Source2211: shadow.doc.tar.xz
  2227. Source2212: shadow.tar.xz
  2228. Source2213: shadowtext.doc.tar.xz
  2229. Source2214: shadowtext.tar.xz
  2230. Source2215: shapepar.doc.tar.xz
  2231. Source2216: shapepar.tar.xz
  2232. Source2217: shdoc.doc.tar.xz
  2233. Source2218: shdoc.source.tar.xz
  2234. Source2219: shdoc.tar.xz
  2235. Source2220: shipunov.doc.tar.xz
  2236. Source2221: shipunov.tar.xz
  2237. Source2222: shorttoc.doc.tar.xz
  2238. Source2223: shorttoc.source.tar.xz
  2239. Source2224: shorttoc.tar.xz
  2240. Source2225: show2e.doc.tar.xz
  2241. Source2226: show2e.source.tar.xz
  2242. Source2227: show2e.tar.xz
  2243. Source2228: showcharinbox.doc.tar.xz
  2244. Source2229: showcharinbox.source.tar.xz
  2245. Source2230: showcharinbox.tar.xz
  2246. Source2231: showdim.doc.tar.xz
  2247. Source2232: showdim.tar.xz
  2248. Source2233: showexpl.doc.tar.xz
  2249. Source2234: showexpl.source.tar.xz
  2250. Source2235: showexpl.tar.xz
  2251. Source2236: showlabels.doc.tar.xz
  2252. Source2237: showlabels.source.tar.xz
  2253. Source2238: showlabels.tar.xz
  2254. Source2239: sidecap.doc.tar.xz
  2255. Source2240: sidecap.source.tar.xz
  2256. Source2241: sidecap.tar.xz
  2257. Source2242: sidenotes.doc.tar.xz
  2258. Source2243: sidenotes.source.tar.xz
  2259. Source2244: sidenotes.tar.xz
  2260. Source2245: silence.doc.tar.xz
  2261. Source2246: silence.source.tar.xz
  2262. Source2247: silence.tar.xz
  2263. Source2248: simplecd.doc.tar.xz
  2264. Source2249: simplecd.source.tar.xz
  2265. Source2250: simplecd.tar.xz
  2266. Source2251: simplecv.doc.tar.xz
  2267. Source2252: simplecv.source.tar.xz
  2268. Source2253: simplecv.tar.xz
  2269. Source2254: sitem.doc.tar.xz
  2270. Source2255: sitem.source.tar.xz
  2271. Source2256: sitem.tar.xz
  2272. Source2257: skb.doc.tar.xz
  2273. Source2258: skb.source.tar.xz
  2274. Source2259: skb.tar.xz
  2275. Source2260: skdoc.doc.tar.xz
  2276. Source2261: skdoc.source.tar.xz
  2277. Source2262: skdoc.tar.xz
  2278. Source2263: skeycommand.doc.tar.xz
  2279. Source2264: skeycommand.tar.xz
  2280. Source2265: skeyval.doc.tar.xz
  2281. Source2266: skeyval.tar.xz
  2282. Source2267: skrapport.doc.tar.xz
  2283. Source2268: skrapport.source.tar.xz
  2284. Source2269: skrapport.tar.xz
  2285. Source2270: slantsc.doc.tar.xz
  2286. Source2271: slantsc.source.tar.xz
  2287. Source2272: slantsc.tar.xz
  2288. Source2273: smalltableof.doc.tar.xz
  2289. Source2274: smalltableof.tar.xz
  2290. Source2275: smartref.doc.tar.xz
  2291. Source2276: smartref.tar.xz
  2292. Source2277: snapshot.doc.tar.xz
  2293. Source2278: snapshot.source.tar.xz
  2294. Source2279: snapshot.tar.xz
  2295. Source2280: snotez.doc.tar.xz
  2296. Source2281: snotez.tar.xz
  2297. Source2282: soul.doc.tar.xz
  2298. Source2283: soul.source.tar.xz
  2299. Source2284: soul.tar.xz
  2300. Source2285: sparklines.doc.tar.xz
  2301. Source2286: sparklines.tar.xz
  2302. Source2287: sphack.doc.tar.xz
  2303. Source2288: sphack.tar.xz
  2304. Source2289: splitindex.doc.tar.xz
  2305. Source2290: splitindex.source.tar.xz
  2306. Source2291: splitindex.tar.xz
  2307. Source2292: spot.doc.tar.xz
  2308. Source2293: spot.source.tar.xz
  2309. Source2294: spot.tar.xz
  2310. Source2295: spotcolor.doc.tar.xz
  2311. Source2296: spotcolor.tar.xz
  2312. Source2297: spreadtab.doc.tar.xz
  2313. Source2298: spreadtab.tar.xz
  2314. Source2299: spverbatim.doc.tar.xz
  2315. Source2300: spverbatim.source.tar.xz
  2316. Source2301: spverbatim.tar.xz
  2317. Source2302: srbook-mem.doc.tar.xz
  2318. Source2303: srbook-mem.tar.xz
  2319. Source2304: srcltx.doc.tar.xz
  2320. Source2305: srcltx.source.tar.xz
  2321. Source2306: srcltx.tar.xz
  2322. Source2307: sseq.doc.tar.xz
  2323. Source2308: sseq.source.tar.xz
  2324. Source2309: sseq.tar.xz
  2325. Source2310: sslides.doc.tar.xz
  2326. Source2311: sslides.tar.xz
  2327. Source2312: stack.source.tar.xz
  2328. Source2313: stack.tar.xz
  2329. Source2314: stackengine.doc.tar.xz
  2330. Source2315: stackengine.tar.xz
  2331. Source2316: standalone.doc.tar.xz
  2332. Source2317: standalone.source.tar.xz
  2333. Source2318: standalone.tar.xz
  2334. Source2319: statistik.doc.tar.xz
  2335. Source2320: statistik.source.tar.xz
  2336. Source2321: statistik.tar.xz
  2337. Source2322: stdclsdv.doc.tar.xz
  2338. Source2323: stdclsdv.source.tar.xz
  2339. Source2324: stdclsdv.tar.xz
  2340. Source2325: stdpage.doc.tar.xz
  2341. Source2326: stdpage.source.tar.xz
  2342. Source2327: stdpage.tar.xz
  2343. Source2328: stex.doc.tar.xz
  2344. Source2329: stex.source.tar.xz
  2345. Source2330: stex.tar.xz
  2346. Source2331: storebox.doc.tar.xz
  2347. Source2332: storebox.source.tar.xz
  2348. Source2333: storebox.tar.xz
  2349. Source2334: storecmd.doc.tar.xz
  2350. Source2335: storecmd.tar.xz
  2351. Source2336: stringstrings.doc.tar.xz
  2352. Source2337: stringstrings.source.tar.xz
  2353. Source2338: stringstrings.tar.xz
  2354. Source2339: sttools.doc.tar.xz
  2355. Source2340: sttools.source.tar.xz
  2356. Source2341: sttools.tar.xz
  2357. Source2342: stubs.doc.tar.xz
  2358. Source2343: stubs.tar.xz
  2359. Source2344: subdepth.doc.tar.xz
  2360. Source2345: subdepth.source.tar.xz
  2361. Source2346: subdepth.tar.xz
  2362. Source2347: subeqn.doc.tar.xz
  2363. Source2348: subeqn.source.tar.xz
  2364. Source2349: subeqn.tar.xz
  2365. Source2350: subeqnarray.doc.tar.xz
  2366. Source2351: subeqnarray.source.tar.xz
  2367. Source2352: subeqnarray.tar.xz
  2368. Source2353: subfigmat.doc.tar.xz
  2369. Source2354: subfigmat.tar.xz
  2370. Source2355: subfigure.doc.tar.xz
  2371. Source2356: subfigure.source.tar.xz
  2372. Source2357: subfigure.tar.xz
  2373. Source2358: subfiles.doc.tar.xz
  2374. Source2359: subfiles.source.tar.xz
  2375. Source2360: subfiles.tar.xz
  2376. Source2361: subfloat.doc.tar.xz
  2377. Source2362: subfloat.source.tar.xz
  2378. Source2363: subfloat.tar.xz
  2379. Source2364: substitutefont.doc.tar.xz
  2380. Source2365: substitutefont.tar.xz
  2381. Source2366: substr.doc.tar.xz
  2382. Source2367: substr.tar.xz
  2383. Source2368: supertabular.doc.tar.xz
  2384. Source2369: supertabular.source.tar.xz
  2385. Source2370: supertabular.tar.xz
  2386. Source2371: svg.doc.tar.xz
  2387. Source2372: svg.source.tar.xz
  2388. Source2373: svg.tar.xz
  2389. Source2374: svgcolor.doc.tar.xz
  2390. Source2375: svgcolor.tar.xz
  2391. Source2376: svn.doc.tar.xz
  2392. Source2377: svn.source.tar.xz
  2393. Source2378: svn.tar.xz
  2394. Source2379: svn-multi.doc.tar.xz
  2395. Source2380: svn-multi.source.tar.xz
  2396. Source2381: svn-multi.tar.xz
  2397. Source2382: svn-prov.doc.tar.xz
  2398. Source2383: svn-prov.source.tar.xz
  2399. Source2384: svn-prov.tar.xz
  2400. Source2385: svninfo.doc.tar.xz
  2401. Source2386: svninfo.source.tar.xz
  2402. Source2387: svninfo.tar.xz
  2403. Source2388: syntax.doc.tar.xz
  2404. Source2389: syntax.tar.xz
  2405. Source2390: syntrace.doc.tar.xz
  2406. Source2391: syntrace.source.tar.xz
  2407. Source2392: syntrace.tar.xz
  2408. Source2393: synttree.doc.tar.xz
  2409. Source2394: synttree.source.tar.xz
  2410. Source2395: synttree.tar.xz
  2411. Source2396: tabfigures.doc.tar.xz
  2412. Source2397: tabfigures.source.tar.xz
  2413. Source2398: tabfigures.tar.xz
  2414. Source2399: tableaux.doc.tar.xz
  2415. Source2400: tableaux.tar.xz
  2416. Source2401: tablefootnote.doc.tar.xz
  2417. Source2402: tablefootnote.source.tar.xz
  2418. Source2403: tablefootnote.tar.xz
  2419. Source2404: tableof.doc.tar.xz
  2420. Source2405: tableof.source.tar.xz
  2421. Source2406: tableof.tar.xz
  2422. Source2407: tablestyles.doc.tar.xz
  2423. Source2408: tablestyles.source.tar.xz
  2424. Source2409: tablestyles.tar.xz
  2425. Source2410: tablists.doc.tar.xz
  2426. Source2411: tablists.source.tar.xz
  2427. Source2412: tablists.tar.xz
  2428. Source2413: tabls.doc.tar.xz
  2429. Source2414: tabls.tar.xz
  2430. Source2415: tabstackengine.doc.tar.xz
  2431. Source2416: tabstackengine.tar.xz
  2432. Source2417: tabto-ltx.doc.tar.xz
  2433. Source2418: tabto-ltx.tar.xz
  2434. Source2419: tabu.doc.tar.xz
  2435. Source2420: tabu.source.tar.xz
  2436. Source2421: tabu.tar.xz
  2437. Source2422: tabularborder.doc.tar.xz
  2438. Source2423: tabularborder.source.tar.xz
  2439. Source2424: tabularborder.tar.xz
  2440. Source2425: tabularcalc.doc.tar.xz
  2441. Source2426: tabularcalc.tar.xz
  2442. Source2427: tabularew.doc.tar.xz
  2443. Source2428: tabularew.source.tar.xz
  2444. Source2429: tabularew.tar.xz
  2445. Source2430: tabulary.doc.tar.xz
  2446. Source2431: tabulary.source.tar.xz
  2447. Source2432: tabulary.tar.xz
  2448. Source2433: tagging.doc.tar.xz
  2449. Source2434: tagging.tar.xz
  2450. Source2435: tagpair.doc.tar.xz
  2451. Source2436: tagpair.tar.xz
  2452. Source2437: talk.doc.tar.xz
  2453. Source2438: talk.source.tar.xz
  2454. Source2439: talk.tar.xz
  2455. Source2440: tamefloats.doc.tar.xz
  2456. Source2441: tamefloats.tar.xz
  2457. Source2442: tasks.doc.tar.xz
  2458. Source2443: tasks.tar.xz
  2459. Source2444: tcldoc.doc.tar.xz
  2460. Source2445: tcldoc.source.tar.xz
  2461. Source2446: tcldoc.tar.xz
  2462. Source2447: tcolorbox.doc.tar.xz
  2463. Source2448: tcolorbox.tar.xz
  2464. Source2449: tdclock.doc.tar.xz
  2465. Source2450: tdclock.tar.xz
  2466. Source2451: technics.doc.tar.xz
  2467. Source2452: technics.tar.xz
  2468. Source2453: ted.doc.tar.xz
  2469. Source2454: ted.source.tar.xz
  2470. Source2455: ted.tar.xz
  2471. Source2456: templatetools.doc.tar.xz
  2472. Source2457: templatetools.source.tar.xz
  2473. Source2458: templatetools.tar.xz
  2474. Source2459: termcal.doc.tar.xz
  2475. Source2460: termcal.source.tar.xz
  2476. Source2461: termcal.tar.xz
  2477. Source2462: termlist.doc.tar.xz
  2478. Source2463: termlist.source.tar.xz
  2479. Source2464: termlist.tar.xz
  2480. Source2465: testhyphens.doc.tar.xz
  2481. Source2466: testhyphens.source.tar.xz
  2482. Source2467: testhyphens.tar.xz
  2483. Source2468: tex-label.doc.tar.xz
  2484. Source2469: tex-label.source.tar.xz
  2485. Source2470: tex-label.tar.xz
  2486. Source2471: texlogos.tar.xz
  2487. Source2472: texmate.doc.tar.xz
  2488. Source2473: texmate.source.tar.xz
  2489. Source2474: texmate.tar.xz
  2490. Source2475: texments.doc.tar.xz
  2491. Source2476: texments.source.tar.xz
  2492. Source2477: texments.tar.xz
  2493. Source2478: texpower.doc.tar.xz
  2494. Source2479: texpower.source.tar.xz
  2495. Source2480: texpower.tar.xz
  2496. Source2481: texshade.doc.tar.xz
  2497. Source2482: texshade.source.tar.xz
  2498. Source2483: texshade.tar.xz
  2499. Source2484: texvc.doc.tar.xz
  2500. Source2485: texvc.source.tar.xz
  2501. Source2486: texvc.tar.xz
  2502. Source2487: textfit.doc.tar.xz
  2503. Source2488: textfit.source.tar.xz
  2504. Source2489: textfit.tar.xz
  2505. Source2490: textgreek.doc.tar.xz
  2506. Source2491: textgreek.source.tar.xz
  2507. Source2492: textgreek.tar.xz
  2508. Source2493: textmerg.doc.tar.xz
  2509. Source2494: textmerg.source.tar.xz
  2510. Source2495: textmerg.tar.xz
  2511. Source2496: textpos.doc.tar.xz
  2512. Source2497: textpos.source.tar.xz
  2513. Source2498: textpos.tar.xz
  2514. Source2499: theoremref.doc.tar.xz
  2515. Source2500: theoremref.tar.xz
  2516. Source2501: thinsp.doc.tar.xz
  2517. Source2502: thinsp.tar.xz
  2518. Source2503: thmtools.doc.tar.xz
  2519. Source2504: thmtools.source.tar.xz
  2520. Source2505: thmtools.tar.xz
  2521. Source2506: threadcol.doc.tar.xz
  2522. Source2507: threadcol.source.tar.xz
  2523. Source2508: threadcol.tar.xz
  2524. Source2509: threeparttable.doc.tar.xz
  2525. Source2510: threeparttable.tar.xz
  2526. Source2511: threeparttablex.doc.tar.xz
  2527. Source2512: threeparttablex.tar.xz
  2528. Source2513: thumb.doc.tar.xz
  2529. Source2514: thumb.source.tar.xz
  2530. Source2515: thumb.tar.xz
  2531. Source2516: thumbs.doc.tar.xz
  2532. Source2517: thumbs.source.tar.xz
  2533. Source2518: thumbs.tar.xz
  2534. Source2519: thumby.doc.tar.xz
  2535. Source2520: thumby.tar.xz
  2536. Source2521: ticket.doc.tar.xz
  2537. Source2522: ticket.tar.xz
  2538. Source2523: titlecaps.doc.tar.xz
  2539. Source2524: titlecaps.tar.xz
  2540. Source2525: titlefoot.tar.xz
  2541. Source2526: titlepic.doc.tar.xz
  2542. Source2527: titlepic.tar.xz
  2543. Source2528: titleref.doc.tar.xz
  2544. Source2529: titleref.tar.xz
  2545. Source2530: titlesec.doc.tar.xz
  2546. Source2531: titlesec.tar.xz
  2547. Source2532: titling.doc.tar.xz
  2548. Source2533: titling.source.tar.xz
  2549. Source2534: titling.tar.xz
  2550. Source2535: tocbibind.doc.tar.xz
  2551. Source2536: tocbibind.source.tar.xz
  2552. Source2537: tocbibind.tar.xz
  2553. Source2538: tocloft.doc.tar.xz
  2554. Source2539: tocloft.source.tar.xz
  2555. Source2540: tocloft.tar.xz
  2556. Source2541: tocvsec2.doc.tar.xz
  2557. Source2542: tocvsec2.source.tar.xz
  2558. Source2543: tocvsec2.tar.xz
  2559. Source2544: todo.doc.tar.xz
  2560. Source2545: todo.source.tar.xz
  2561. Source2546: todo.tar.xz
  2562. Source2547: todonotes.doc.tar.xz
  2563. Source2548: todonotes.source.tar.xz
  2564. Source2549: todonotes.tar.xz
  2565. Source2550: tokenizer.doc.tar.xz
  2566. Source2551: tokenizer.tar.xz
  2567. Source2552: toolbox.doc.tar.xz
  2568. Source2553: toolbox.source.tar.xz
  2569. Source2554: toolbox.tar.xz
  2570. Source2555: topfloat.doc.tar.xz
  2571. Source2556: topfloat.tar.xz
  2572. Source2557: totcount.doc.tar.xz
  2573. Source2558: totcount.source.tar.xz
  2574. Source2559: totcount.tar.xz
  2575. Source2560: totpages.doc.tar.xz
  2576. Source2561: totpages.source.tar.xz
  2577. Source2562: totpages.tar.xz
  2578. Source2563: translations.doc.tar.xz
  2579. Source2564: translations.tar.xz
  2580. Source2565: trfsigns.doc.tar.xz
  2581. Source2566: trfsigns.source.tar.xz
  2582. Source2567: trfsigns.tar.xz
  2583. Source2568: trimspaces.doc.tar.xz
  2584. Source2569: trimspaces.source.tar.xz
  2585. Source2570: trimspaces.tar.xz
  2586. Source2571: trivfloat.doc.tar.xz
  2587. Source2572: trivfloat.source.tar.xz
  2588. Source2573: trivfloat.tar.xz
  2589. Source2574: trsym.doc.tar.xz
  2590. Source2575: trsym.source.tar.xz
  2591. Source2576: trsym.tar.xz
  2592. Source2577: truncate.doc.tar.xz
  2593. Source2578: truncate.tar.xz
  2594. Source2579: tucv.doc.tar.xz
  2595. Source2580: tucv.source.tar.xz
  2596. Source2581: tucv.tar.xz
  2597. Source2582: turnthepage.doc.tar.xz
  2598. Source2583: turnthepage.tar.xz
  2599. Source2584: twoinone.doc.tar.xz
  2600. Source2585: twoinone.tar.xz
  2601. Source2586: twoup.doc.tar.xz
  2602. Source2587: twoup.source.tar.xz
  2603. Source2588: twoup.tar.xz
  2604. Source2589: txgreeks.doc.tar.xz
  2605. Source2590: txgreeks.source.tar.xz
  2606. Source2591: txgreeks.tar.xz
  2607. Source2592: type1cm.doc.tar.xz
  2608. Source2593: type1cm.source.tar.xz
  2609. Source2594: type1cm.tar.xz
  2610. Source2595: typeface.doc.tar.xz
  2611. Source2596: typeface.source.tar.xz
  2612. Source2597: typeface.tar.xz
  2613. Source2598: typogrid.doc.tar.xz
  2614. Source2599: typogrid.source.tar.xz
  2615. Source2600: typogrid.tar.xz
  2616. Source2601: uassign.doc.tar.xz
  2617. Source2602: uassign.tar.xz
  2618. Source2603: ucs.doc.tar.xz
  2619. Source2604: ucs.tar.xz
  2620. Source2605: uebungsblatt.doc.tar.xz
  2621. Source2606: uebungsblatt.tar.xz
  2622. Source2607: umoline.doc.tar.xz
  2623. Source2608: umoline.source.tar.xz
  2624. Source2609: umoline.tar.xz
  2625. Source2610: underlin.doc.tar.xz
  2626. Source2611: underlin.source.tar.xz
  2627. Source2612: underlin.tar.xz
  2628. Source2613: underoverlap.doc.tar.xz
  2629. Source2614: underoverlap.tar.xz
  2630. Source2615: undolabl.doc.tar.xz
  2631. Source2616: undolabl.source.tar.xz
  2632. Source2617: undolabl.tar.xz
  2633. Source2618: units.doc.tar.xz
  2634. Source2619: units.source.tar.xz
  2635. Source2620: units.tar.xz
  2636. Source2621: unravel.doc.tar.xz
  2637. Source2622: unravel.source.tar.xz
  2638. Source2623: unravel.tar.xz
  2639. Source2624: upmethodology.doc.tar.xz
  2640. Source2625: upmethodology.tar.xz
  2641. Source2626: upquote.doc.tar.xz
  2642. Source2627: upquote.source.tar.xz
  2643. Source2628: upquote.tar.xz
  2644. Source2629: uri.doc.tar.xz
  2645. Source2630: uri.source.tar.xz
  2646. Source2631: uri.tar.xz
  2647. Source2632: ushort.doc.tar.xz
  2648. Source2633: ushort.source.tar.xz
  2649. Source2634: ushort.tar.xz
  2650. Source2635: uwmslide.doc.tar.xz
  2651. Source2636: uwmslide.tar.xz
  2652. Source2637: varindex.doc.tar.xz
  2653. Source2638: varindex.source.tar.xz
  2654. Source2639: varindex.tar.xz
  2655. Source2640: varsfromjobname.doc.tar.xz
  2656. Source2641: varsfromjobname.tar.xz
  2657. Source2642: varwidth.doc.tar.xz
  2658. Source2643: varwidth.tar.xz
  2659. Source2644: vdmlisting.doc.tar.xz
  2660. Source2645: vdmlisting.tar.xz
  2661. Source2646: verbasef.doc.tar.xz
  2662. Source2647: verbasef.tar.xz
  2663. Source2648: verbatimbox.doc.tar.xz
  2664. Source2649: verbatimbox.tar.xz
  2665. Source2650: verbatimcopy.doc.tar.xz
  2666. Source2651: verbatimcopy.tar.xz
  2667. Source2652: verbdef.doc.tar.xz
  2668. Source2653: verbdef.tar.xz
  2669. Source2654: verbments.doc.tar.xz
  2670. Source2655: verbments.tar.xz
  2671. Source2656: version.doc.tar.xz
  2672. Source2657: version.tar.xz
  2673. Source2658: versions.doc.tar.xz
  2674. Source2659: versions.tar.xz
  2675. Source2660: versonotes.doc.tar.xz
  2676. Source2661: versonotes.source.tar.xz
  2677. Source2662: versonotes.tar.xz
  2678. Source2663: vertbars.doc.tar.xz
  2679. Source2664: vertbars.source.tar.xz
  2680. Source2665: vertbars.tar.xz
  2681. Source2666: vgrid.doc.tar.xz
  2682. Source2667: vgrid.source.tar.xz
  2683. Source2668: vgrid.tar.xz
  2684. Source2669: vhistory.doc.tar.xz
  2685. Source2670: vhistory.tar.xz
  2686. Source2671: vmargin.doc.tar.xz
  2687. Source2672: vmargin.source.tar.xz
  2688. Source2673: vmargin.tar.xz
  2689. Source2674: volumes.doc.tar.xz
  2690. Source2675: volumes.source.tar.xz
  2691. Source2676: volumes.tar.xz
  2692. Source2677: vpe.doc.tar.xz
  2693. Source2678: vpe.tar.xz
  2694. Source2679: vruler.doc.tar.xz
  2695. Source2680: vruler.tar.xz
  2696. Source2681: vwcol.doc.tar.xz
  2697. Source2682: vwcol.source.tar.xz
  2698. Source2683: vwcol.tar.xz
  2699. Source2684: wallpaper.doc.tar.xz
  2700. Source2685: wallpaper.tar.xz
  2701. Source2686: warning.doc.tar.xz
  2702. Source2687: warning.tar.xz
  2703. Source2688: warpcol.doc.tar.xz
  2704. Source2689: warpcol.source.tar.xz
  2705. Source2690: warpcol.tar.xz
  2706. Source2691: was.doc.tar.xz
  2707. Source2692: was.source.tar.xz
  2708. Source2693: was.tar.xz
  2709. Source2694: widetable.doc.tar.xz
  2710. Source2695: widetable.source.tar.xz
  2711. Source2696: widetable.tar.xz
  2712. Source2697: williams.doc.tar.xz
  2713. Source2698: williams.tar.xz
  2714. Source2699: withargs.doc.tar.xz
  2715. Source2700: withargs.tar.xz
  2716. Source2701: wordlike.doc.tar.xz
  2717. Source2702: wordlike.source.tar.xz
  2718. Source2703: wordlike.tar.xz
  2719. Source2704: wrapfig.doc.tar.xz
  2720. Source2705: wrapfig.tar.xz
  2721. Source2706: xargs.doc.tar.xz
  2722. Source2707: xargs.source.tar.xz
  2723. Source2708: xargs.tar.xz
  2724. Source2709: xassoccnt.doc.tar.xz
  2725. Source2710: xassoccnt.tar.xz
  2726. Source2711: xcolor-solarized.doc.tar.xz
  2727. Source2712: xcolor-solarized.source.tar.xz
  2728. Source2713: xcolor-solarized.tar.xz
  2729. Source2714: xcomment.doc.tar.xz
  2730. Source2715: xcomment.tar.xz
  2731. Source2716: xdoc.doc.tar.xz
  2732. Source2717: xdoc.source.tar.xz
  2733. Source2718: xdoc.tar.xz
  2734. Source2719: xellipsis.doc.tar.xz
  2735. Source2720: xellipsis.source.tar.xz
  2736. Source2721: xellipsis.tar.xz
  2737. Source2722: xfor.doc.tar.xz
  2738. Source2723: xfor.source.tar.xz
  2739. Source2724: xfor.tar.xz
  2740. Source2725: xhfill.doc.tar.xz
  2741. Source2726: xhfill.tar.xz
  2742. Source2727: xifthen.doc.tar.xz
  2743. Source2728: xifthen.tar.xz
  2744. Source2729: xint.doc.tar.xz
  2745. Source2730: xint.source.tar.xz
  2746. Source2731: xint.tar.xz
  2747. Source2732: xmpincl.doc.tar.xz
  2748. Source2733: xmpincl.source.tar.xz
  2749. Source2734: xmpincl.tar.xz
  2750. Source2735: xnewcommand.doc.tar.xz
  2751. Source2736: xnewcommand.tar.xz
  2752. Source2737: xoptarg.doc.tar.xz
  2753. Source2738: xoptarg.tar.xz
  2754. Source2739: xpatch.doc.tar.xz
  2755. Source2740: xpatch.source.tar.xz
  2756. Source2741: xpatch.tar.xz
  2757. Source2742: xpeek.doc.tar.xz
  2758. Source2743: xpeek.source.tar.xz
  2759. Source2744: xpeek.tar.xz
  2760. Source2745: xprintlen.doc.tar.xz
  2761. Source2746: xprintlen.tar.xz
  2762. Source2747: xpunctuate.doc.tar.xz
  2763. Source2748: xpunctuate.source.tar.xz
  2764. Source2749: xpunctuate.tar.xz
  2765. Source2750: xstring.doc.tar.xz
  2766. Source2751: xstring.tar.xz
  2767. Source2752: xtab.doc.tar.xz
  2768. Source2753: xtab.source.tar.xz
  2769. Source2754: xtab.tar.xz
  2770. Source2755: xwatermark.doc.tar.xz
  2771. Source2756: xwatermark.tar.xz
  2772. Source2757: xytree.doc.tar.xz
  2773. Source2758: xytree.tar.xz
  2774. Source2759: yafoot.doc.tar.xz
  2775. Source2760: yafoot.source.tar.xz
  2776. Source2761: yafoot.tar.xz
  2777. Source2762: yagusylo.doc.tar.xz
  2778. Source2763: yagusylo.source.tar.xz
  2779. Source2764: yagusylo.tar.xz
  2780. Source2765: ydoc.doc.tar.xz
  2781. Source2766: ydoc.source.tar.xz
  2782. Source2767: ydoc.tar.xz
  2783. Source2768: yplan.doc.tar.xz
  2784. Source2769: yplan.tar.xz
  2785. Source2770: zed-csp.doc.tar.xz
  2786. Source2771: zed-csp.tar.xz
  2787. Source2772: ziffer.doc.tar.xz
  2788. Source2773: ziffer.tar.xz
  2789. Source2774: zwgetfdate.doc.tar.xz
  2790. Source2775: zwgetfdate.tar.xz
  2791. Source2776: zwpagelayout.doc.tar.xz
  2792. Source2777: zwpagelayout.tar.xz
  2793. Requires: texlive = %{version}
  2794. Requires: texlive-collection-latexrecommended = %{version}
  2795. Requires: texlive-collection-pictures = %{version}
  2796. Requires(post): texlive = %{version}
  2797. Requires(postun): texlive = %{version}
  2798. BuildArch: noarch
  2799. Buildroot: %{_tmppath}/%{name}-%{version}-root
  2800. Vendor: Project Vine
  2801. Distribution: Vine Linux
  2802. Packager: munepi
  2803. %description
  2804. The TeX Live software distribution offers a complete TeX system for a
  2805. variety of Unix, Macintosh, Windows and other platforms. It
  2806. encompasses programs for editing, typesetting, previewing and printing
  2807. of TeX documents in many different languages, and a large collection
  2808. of TeX macros and font libraries.
  2809. The distribution includes extensive general documentation about TeX,
  2810. as well as the documentation for the included software packages.
  2811. This package is a collection of LaTeX additional packages:
  2812. A very large collection of add-on packages for LaTeX.
  2813. This package contains the following CTAN packages:
  2814. 2up:
  2815. ESIEEcv: Curriculum vitae for French use.
  2816. GS1: Typeset EAN barcodes using TeX rules, only.
  2817. HA-prosper: Patches and improvements for prosper.
  2818. Tabbing: Tabbing with accented letters.
  2819. a0poster: Support for designing posters on large paper.
  2820. a4wide: "Wide" a4 layout.
  2821. a5comb: Support for a5 paper sizes.
  2822. abraces: Asymmetric over-/underbraces in maths.
  2823. abstract: Control the typesetting of the abstract environment.
  2824. achemso: Support for American Chemical Society journal submissions.
  2825. acro: Typeset acronyms
  2826. acronym: Expand acronyms at least once.
  2827. acroterm: Manage and index acronyms and terms.
  2828. actuarialangle: Symbol for use in "present value" statements of an annuity.
  2829. addlines: A user-friendly wrapper around enlargethispage.
  2830. adjmulticol: Adjusting margins for multicolumn and single column output.
  2831. adjustbox: Graphics package-alike macros for "general" boxes.
  2832. adrconv: BibTeX styles to implement an address database.
  2833. advdate: Print a date relative to "today".
  2834. akktex: A collection of packages and classes.
  2835. akletter: Comprehensive letter support.
  2836. alertmessage: Alert messages for LaTeX
  2837. alnumsec: Alphanumeric section numbering.
  2838. alterqcm: Multiple choice questionnaires in two column tables.
  2839. altfont: Alternative font handling in LaTeX.
  2840. amsaddr: Alter the position of affiliations in amsart.
  2841. animate: Create PDF animations from graphics files and inline graphics
  2842. anonchap: Make chapters be typeset like sections.
  2843. answers: Setting questions (or exercises) and answers.
  2844. anyfontsize: Select any font size in LaTeX.
  2845. appendix: Extra control of appendices
  2846. appendixnumberbeamer: Manage frame numbering in appendixes in beamer.
  2847. apptools: Tools for customising appendices.
  2848. arcs: Draw arcs over and under text
  2849. arrayjobx: Array data structures for (La)TeX.
  2850. arraysort: Sort arrays (or portions of them).
  2851. arydshln: Horizontal and vertical dashed lines in arrays and tabulars.
  2852. asciilist: Environments AsciiList and AsciiDocList for prototyping nested lists in LaTeX.
  2853. assignment: A class file for typesetting homework and lab assignments
  2854. assoccnt: Associate counters, making them step when a master steps
  2855. attachfile: Attach arbitrary files to a PDF document
  2856. authoraftertitle: Make author, etc., available after maketitle.
  2857. authorindex: Index citations by author names.
  2858. autonum: Automatic equation references.
  2859. autopdf: Conversion of graphics to pdfLaTeX-compatible formats.
  2860. avremu: An 8-Bit Microcontroller Simulator written in LaTeX.
  2861. background: Placement of background material on pages of a document.
  2862. bankstatement: A LaTeX class for bank statements based on csv data
  2863. bashful: Invoke bash commands from within LaTeX.
  2864. basicarith: Macros for typesetting basic arithmetic.
  2865. bchart: Draw simple bar charts in LaTeX.
  2866. beamer2thesis: Thesis presentations using beamer.
  2867. beameraudience: Assembling beamer frames according to audience
  2868. beamerdarkthemes: Dark color themes for beamer.
  2869. beamerposter: Extend beamer and a0poster for custom sized posters.
  2870. beamersubframe: Reorder frames in the PDF file.
  2871. beamertheme-detlevcm: A beamer theme designed for use in the University of Leeds
  2872. beamertheme-metropolis: A modern LaTeX beamer theme
  2873. beamertheme-phnompenh: A simple beamer theme
  2874. beamertheme-upenn-bc: Beamer themies for Boston College and the University of Pennsylvania.
  2875. beamerthemejltree: Contributed beamer theme.
  2876. beamerthemenirma: A Beamer theme for academic presentations.
  2877. beton: Use Concrete fonts.
  2878. bewerbung: Typesetting job application
  2879. bez123: Support for Bezier curves.
  2880. bezos: Packages by Javier Bezos.
  2881. bhcexam: An exam class designed for Mathematics Teachers in China
  2882. bigfoot: Footnotes for critical editions
  2883. bigints: Writing big integrals.
  2884. bizcard: Typeset business cards.
  2885. blindtext: Producing 'blind' text for testing.
  2886. blkarray: Extended array and tabular.
  2887. block: A block letter style for the letter class.
  2888. blowup: Upscale or downscale all pages of a document.
  2889. bnumexpr: Extends eTeX's numexpr...relax construct to big integers
  2890. boites: Boxes that may break across pages
  2891. bold-extra: Use bold small caps and typewriter fonts.
  2892. bookcover: A class for book covers and dust jackets.
  2893. bookest: Extended book class.
  2894. booklet: Aids for printing simple booklets.
  2895. boolexpr: A boolean expression evaluator and a switch command.
  2896. bophook: Provides an At-Begin-Page hook.
  2897. boxedminipage: A package for producing framed minipages.
  2898. boxedminipage2e: Framed minipages of a specified total width (text and frame combined)
  2899. boxhandler: Flexible Captioning and Deferred Box/List Printing.
  2900. bracketkey: Produce bracketed identification keys.
  2901. braket: Dirac bra-ket and set notations.
  2902. breakurl: Line-breakable url-like links in hyperref when compiling via dvips/ps2pdf.
  2903. bullcntr: Display list item counter as regular pattern of bullets.
  2904. bussproofs: Proof trees in the style of the sequent calculus.
  2905. bxdpx-beamer: Dvipdfmx extras for use with beamer.
  2906. bxpdfver: Specify version and compression level of output PDF files
  2907. calcage: Calculate the age of something, in years.
  2908. calctab: Language for numeric tables.
  2909. calculator: Use LaTeX as a scientific calculator.
  2910. calrsfs: Copperplate calligraphic letters in LaTeX.
  2911. cals: Multipage tables with wide range of features.
  2912. calxxxx-yyyy: Print a calendar for a group of years
  2913. cancel: Place lines through maths formulae.
  2914. canoniclayout: Create canonical page layouts with memoir.
  2915. capt-of: Captions on more than floats.
  2916. captcont: Retain float number across several floats.
  2917. captdef: Declare free-standing caption commands.
  2918. carbohydrates: Carbohydrate molecules with chemfig
  2919. cases: Numbered cases environment
  2920. casyl: Typeset Cree/Inuktitut in Canadian Aboriginal Syllabics.
  2921. catchfilebetweentags: Catch text delimited by docstrip tags.
  2922. catechis: Macros for typesetting catechisms.
  2923. catoptions: Preserving and recalling standard catcodes.
  2924. cbcoptic: Coptic fonts and LaTeX macros for general usage and for philology.
  2925. ccaption: Continuation headings and legends for floats.
  2926. cclicenses: Typeset Creative Commons licence logos.
  2927. cd: Typeset CD covers.
  2928. cd-cover: Typeset CD covers.
  2929. cdpbundl: Business letters in the Italian style.
  2930. cellspace: Ensure minimal spacing of table cells.
  2931. censor: Facilities for controlling restricted text in a document.
  2932. changebar: Generate changebars in LaTeX documents.
  2933. changelayout: Change the layout of individual pages and their text.
  2934. changepage: Margin adjustment and detection of odd/even pages.
  2935. changes: Manual change markup.
  2936. chappg: Page numbering by chapter.
  2937. chapterfolder: Package for working with complicated folder structures.
  2938. chet: LaTeX layout inspired by harvmac
  2939. chextras: A companion package for the Swiss typesetter.
  2940. chkfloat: Warn whenever a float is placed "to far away".
  2941. chletter: Class for typesetting letters to Swiss rules.
  2942. chngcntr: Change the resetting of counters.
  2943. chronology: Provides a horizontal timeline.
  2944. circ: Macros for typesetting circuit diagrams.
  2945. classics: Cite classic works.
  2946. clefval: Key/value support with a hash.
  2947. cleveref: Intelligent cross-referencing.
  2948. clipboard: Copy and paste into and across documents.
  2949. clock: Graphical and textual clocks for TeX and LaTeX.
  2950. cmdstring: Get command name reliably.
  2951. cmdtrack: Check used commands.
  2952. cmsd: Interfaces to the CM Sans Serif Bold fonts.
  2953. cnltx: LaTeX tools and documenting facilities
  2954. cntformats: A different way to read counters.
  2955. cntperchap: Store counter values per chapter.
  2956. codedoc: LaTeX code and documentation in LaTeX-format file.
  2957. codepage: Support for variant code pages.
  2958. codesection: Provides an environment that may be conditionally included.
  2959. collcell: Collect contents of a tabular cell as argument to a macro.
  2960. collectbox: Collect and process macro arguments as boxes.
  2961. colordoc: Coloured syntax highlights in documentation.
  2962. colorinfo: Retrieve colour model and values for defined colours.
  2963. colorspace: Provides PDF color spaces
  2964. colortab: Shade cells of tables and halign.
  2965. colorwav: Colours by wavelength of visible light.
  2966. colorweb: Extend the color package colour space.
  2967. colourchange: colourchange
  2968. combelow: Typeset "comma-below" letters, as in Romanian.
  2969. combine: Bundle individual documents into a single document.
  2970. comma: Formats a number by inserting commas.
  2971. commado: Expandable iteration on comma-separated and filename lists
  2972. comment: Selectively include/excludes portions of text.
  2973. concepts: Keeping track of formal 'concepts' for a particular field.
  2974. concprog: Concert programmes.
  2975. constants: Automatic numbering of constants.
  2976. continue: Prints 'continuation' marks on recto pages of multipage documents
  2977. contour: Print a coloured contour around text.
  2978. contracard: Generate calling cards for dances.
  2979. cooking: Typeset recipes.
  2980. cool: COntent-Oriented LaTeX.
  2981. coollist: Manipulate COntent Oriented LaTeX Lists.
  2982. coolstr: String manipulation in LaTeX.
  2983. coolthms: Reference items in a theorem environment.
  2984. cooltooltips: Associate a pop-up window and tooltip with PDF hyperlinks.
  2985. coordsys: Draw cartesian coordinate systems.
  2986. copyedit: Copyediting support for LaTeX documents.
  2987. copyrightbox: Provide copyright notices for images in a document.
  2988. coseoul: Context sensitive outline elements
  2989. counttexruns: Count compilations of a document.
  2990. courseoutline: Prepare university course outlines.
  2991. coursepaper: Prepare university course papers.
  2992. coverpage: Automatic cover page creation for scientific papers.
  2993. cprotect: Allow verbatim, etc., in macro arguments.
  2994. crbox: Boxes with crossed corners.
  2995. crossreference: Crossreferences within documents.
  2996. csquotes: Context sensitive quotation facilities.
  2997. csvsimple: Simple CSV file processing.
  2998. cuisine: Typeset recipes.
  2999. currfile: Provide file name and path of input files.
  3000. currvita: Typeset a curriculum vitae.
  3001. cutwin: Cut a window in a paragraph, typeset material in it.
  3002. cv: A package for creating a curriculum vitae.
  3003. cv4tw: LaTeX CV class, with extended details.
  3004. cweb-latex: A LaTeX version of CWEB.
  3005. cyber: Annotate compliance with cybersecurity requirements.
  3006. cybercic: "Controls in Contents" for the cyber package.
  3007. dashbox: Draw dashed boxes.
  3008. dashrule: Draw dashed rules.
  3009. dashundergaps: Underline with dotted or dashed lines.
  3010. dataref: Manage references to experimental data
  3011. datatool: Tools to load and manipulate data.
  3012. dateiliste: Extensions of the listfiles concept.
  3013. datenumber: Convert a date into a number and vice versa.
  3014. datetime: Change format of today with commands for current time.
  3015. datetime2: Formats for dates, times and time zones
  3016. datetime2-bahasai: Bahasai language module for the datetime2 package.
  3017. datetime2-basque: Basque language module for the datetime2 package
  3018. datetime2-breton: breton language module for the datetime2 package.
  3019. datetime2-bulgarian: Bulgarian language module for the datetime2 package.
  3020. datetime2-catalan: catalan language module for the datetime2 package.
  3021. datetime2-croatian: croatian language module for the datetime2 package.
  3022. datetime2-czech: czech language module for the datetime2 package.
  3023. datetime2-danish: danish language module for the datetime2 package.
  3024. datetime2-dutch: dutch language module for the datetime2 package.
  3025. datetime2-en-fulltext: English Full Text styles for the datetime2 package.
  3026. datetime2-english: English language module for the datetime2 package.
  3027. datetime2-esperanto: Esperanto language module for the datetime2 package.
  3028. datetime2-estonian: Estonian language module for the datetime2 package.
  3029. datetime2-finnish: Finnish language module for the datetime2 package.
  3030. datetime2-french: French language module for the datetime2 package.
  3031. datetime2-galician: galician language module for the datetime2 package.
  3032. datetime2-german: German language module for the datetime2 package.
  3033. datetime2-greek: Greek language module for the datetime2 package.
  3034. datetime2-hebrew: Hebrew language module for the datetime2 package.
  3035. datetime2-icelandic: Icelandic language module for the datetime2 package.
  3036. datetime2-irish: Irish Gaelic Language Module for the datetime2 Package.
  3037. datetime2-italian: Italian language module for the datetime2 package.
  3038. datetime2-it-fulltext: Italian full text styles for the datetime2 package
  3039. datetime2-latin: Latin language module for the datetime2 package.
  3040. datetime2-lsorbian: Lower Sorbian language module for the datetime2 package.
  3041. datetime2-magyar: magyar language module for the datetime2 package.
  3042. datetime2-norsk: Norsk language module for the datetime2 package.
  3043. datetime2-polish: polish language module for the datetime2 package.
  3044. datetime2-portuges: Portuguese language module for the datetime2 package.
  3045. datetime2-romanian: Romanian language module for the datetime2 package.
  3046. datetime2-russian: russian language module for the datetime2 package.
  3047. datetime2-samin: Northern Sami language module for the datetime2 package.
  3048. datetime2-scottish: Scottish Gaelic Language Module for the datetime2 Package.
  3049. datetime2-serbian: serbian language module for the datetime2 package.
  3050. datetime2-slovak: slovak language module for the datetime2 package.
  3051. datetime2-slovene: slovene language module for the datetime2 package.
  3052. datetime2-spanish: Spanish language module for the datetime2 package.
  3053. datetime2-swedish: swedish language module for the datetime2 package.
  3054. datetime2-turkish: turkish language module for the datetime2 package.
  3055. datetime2-ukrainian: Ukrainian language module for the datetime2 package.
  3056. datetime2-usorbian: Upper Sorbian language module for the datetime2 package.
  3057. datetime2-welsh: Welsh language module for the datetime2 package.
  3058. dblfloatfix: Fixes for twocolumn floats.
  3059. decimal: LaTeX package for the English raised decimal point.
  3060. decorule: Decorative swelled rule using font character.
  3061. delimtxt: Read and parse text tables.
  3062. denisbdoc: A personal dirty package for documenting packages
  3063. diagbox: Table heads with diagonal lines.
  3064. diagnose: A diagnostic tool for a TeX installation.
  3065. dialogl: Macros for constructing interactive LaTeX scripts.
  3066. dichokey: Construct dichotomous identification keys.
  3067. dinbrief: German letter DIN style.
  3068. directory: An address book using BibTeX.
  3069. dirtytalk: A package to typeset quotations easier.
  3070. dlfltxb: Macros related to "Introdktion til LaTeX".
  3071. dnaseq: Format DNA base sequences.
  3072. doclicense: Support for putting documents under a license
  3073. docmfp: Document non-LaTeX code.
  3074. docmute: Input files ignoring LaTeX preamble, etc.
  3075. doctools: Tools for the documentation of LaTeX code.
  3076. documentation: Documentation support for C, Java and assembler code.
  3077. doi: Create correct hyperlinks for DOI numbers.
  3078. dotarrow: Extendable dotted arrows.
  3079. dotseqn: Flush left equations with dotted leaders to the numbers.
  3080. download: Allow LaTeX to download files using an external process.
  3081. dox: Extend the doc package.
  3082. dpfloat: Support for double-page floats.
  3083. dprogress: LaTeX-relevant log information for debugging.
  3084. drac: Declare active character substitution, robustly.
  3085. draftcopy: Identify draft copies.
  3086. draftwatermark: Put a grey textual watermark on document pages.
  3087. dtk: Document class for the journal of DANTE.
  3088. dtxgallery: A small collection of minimal DTX examples.
  3089. dvdcoll: A class for typesetting DVD archives
  3090. dynamicnumber: Dynamically typeset numbers and values in LaTeX through "symbolic links"
  3091. dynblocks: A simple way to create dynamic blocks for Beamer.
  3092. ean13isbn: Print EAN13 for ISBN.
  3093. easy: A collection of easy-to-use macros.
  3094. easy-todo: To-do notes in a document.
  3095. easyfig: Simplifying the use of common figures.
  3096. easylist: Lists using a single active character.
  3097. easyreview: Package to provide a way to review (or perform editorial process) in LaTeX
  3098. ebezier: Device independent picture environment enhancement.
  3099. ecclesiastic: Typesetting Ecclesiastic Latin
  3100. ecv: A fancy Curriculum Vitae class.
  3101. ed: Editorial Notes for LaTeX documents.
  3102. edmargin: Multiple series of endnotes for critical editions.
  3103. eemeir: Adjust the gender of words in a document.
  3104. efbox: Extension of fbox, with controllable frames and colours.
  3105. egplot: Encapsulate Gnuplot sources in LaTeX documents.
  3106. elements: Provides properties of chemical elements
  3107. ellipsis: Fix uneven spacing around ellipses in LaTeX text mode.
  3108. elmath: Mathematics in Greek texts.
  3109. elocalloc: Local allocation macros for LaTeX 2015.
  3110. elpres: A simple class for electronic presentations
  3111. elzcards: Typeset business cards, index cards and flash cards easyly.
  3112. emarks: Named mark registers with e-TeX.
  3113. embedall: Embed source files into the generated PDF.
  3114. embrac: Upright brackets in emphasised text
  3115. emptypage: Make empty pages really empty.
  3116. emulateapj: Produce output similar to that of APJ.
  3117. endfloat: Move floats to the end, leaving markers where they belong.
  3118. endheads: Running headers of the form "Notes to pp.xx-yy"
  3119. endnotes: Place footnotes at the end.
  3120. engpron: Helps to type the pronunciation of English words.
  3121. engrec: Enumerate with lower- or uppercase Greek letters.
  3122. enotez: Support for end-notes
  3123. enumitem: Control layout of itemize, enumerate, description.
  3124. enumitem-zref: Extended references to items for enumitem package.
  3125. envbig: Printing addresses on envelopes.
  3126. environ: A new interface for environments in LaTeX.
  3127. envlab: Addresses on envelopes or mailing labels.
  3128. epigraph: A package for typesetting epigraphs.
  3129. epiolmec: Typesetting the Epi-Olmec Language.
  3130. epyt: A simple and clean theme for LaTeX beamer class.
  3131. eqell: Sympathetically spaced ellipsis after punctuation.
  3132. eqlist: Description lists with equal indentation.
  3133. eqname: Name tags for equations.
  3134. eqparbox: Create equal-widthed parboxes.
  3135. errata: Error markup for LaTeX documents.
  3136. esami: Typeset exams with scrambled questions and answers.
  3137. esdiff: Simplify typesetting of derivatives.
  3138. esint: Extended set of integrals for Computer Modern.
  3139. esint-type1: Font esint10 in Type 1 format
  3140. etaremune: Reverse-counting enumerate environment.
  3141. etextools: e-TeX tools for LaTeX users and package writers.
  3142. etoc: Completely customisable TOCs
  3143. etoolbox: e-TeX tools for LaTeX
  3144. eukdate: UK format dates, with weekday.
  3145. europasscv: Unofficial class for the new version of the Europass curriculum vitae
  3146. europecv: Unofficial class for European curricula vitae.
  3147. everyhook: Hooks for standard TeX token lists.
  3148. everypage: Provide hooks to be run on every page of a document.
  3149. exam: Package for typesetting exam scripts.
  3150. exam-n: Exam class, focused on collaborative authoring.
  3151. examdesign: LaTeX class for typesetting exams.
  3152. example: Typeset examples for TeX courses.
  3153. examplep: Verbatim phrases and listings in LaTeX.
  3154. exceltex: Get data from Excel files into LaTeX.
  3155. excludeonly: Prevent files being include-ed.
  3156. exercise: Typeset exercises, problems, etc. and their answers
  3157. exercises: Typeset exercises and solutions with automatic addition of points
  3158. exp-testopt: Expandable @testopt (and related) macros.
  3159. expdlist: Expanded description environments.
  3160. export: Import and export values of LaTeX registers.
  3161. exsheets: Create exercise sheets and exams
  3162. exsol: Exercises and solutions from the same source, into a book.
  3163. extract: Extract parts of a document and write to another document.
  3164. facsimile: Document class for preparing faxes.
  3165. factura: Typeset and calculate invoices according to Venezuelan law
  3166. fancylabel: Complex labelling with LaTeX.
  3167. fancynum: Typeset numbers.
  3168. fancypar: Decoration of individual paragraphs.
  3169. fancyslides: Custom presentation class built upon LaTeX Beamer.
  3170. fancytabs: Fancy page border tabs.
  3171. fancytooltips: Include a wide range of material in PDF tooltips.
  3172. fcolumn: Typesetting financial tables
  3173. ffslides: Freeform slides based on the article class
  3174. fibeamer: Beamer theme for thesis defense presentations at Masaryk University (Brno, Czech Republic)
  3175. fifo-stack: FIFO and stack implementation for package writers
  3176. figsize: Auto-size graphics.
  3177. filecontents: Extended filecontents and filecontents* environments
  3178. filedate: Access and compare info and modification dates.
  3179. filehook: Hooks for input files.
  3180. fileinfo: Enhanced display of LaTeX File Information.
  3181. filemod: Provide file modification times, and compare them.
  3182. fink: The LaTeX2e File Name Keeper.
  3183. finstrut: Adjust behaviour of the ends of footnotes.
  3184. fithesis: Thesis class and template for Masaryk University (Brno, Czech Republic)
  3185. fixcmex: Fully scalable version of Computer Modern Math Extension font
  3186. fixfoot: Multiple use of the same footnote text.
  3187. fixme: Insert "fixme" notes into draft documents.
  3188. fixmetodonotes: Add notes on document development.
  3189. fjodor: A selection of layout styles.
  3190. flabels: Labels for files and folders.
  3191. flacards: Generate flashcards for printing.
  3192. flagderiv: Flag style derivation package
  3193. flashcards: A class for typesetting flashcards.
  3194. flashmovie: Directly embed flash movies into PDF files.
  3195. flipbook: Typeset flipbook animations, in the corners of documents.
  3196. flippdf: Horizontal flipping of pages with pdfLaTeX.
  3197. floatflt: Wrap text around floats.
  3198. floatrow: Modifying the layout of floats.
  3199. flowfram: Create text frames for posters, brochures or magazines.
  3200. fmp: Include Functional MetaPost in LaTeX.
  3201. fmtcount: Display the value of a LaTeX counter in a variety of formats.
  3202. fn2end: Convert footnotes to endnotes.
  3203. fnbreak: Warn for split footnotes.
  3204. fncychap: Seven predefined chapter heading styles.
  3205. fncylab: Alter the format of label references.
  3206. fnpara: Footnotes in paragraphs.
  3207. fnpct: Manage footnote marks' interaction with punctuation.
  3208. fnumprint: Print a number in 'appropriate' format.
  3209. foilhtml: Interface between foiltex and LaTeX2HTML.
  3210. fontaxes: Additional font axes for LaTeX.
  3211. fonttable: Print font tables from a LaTeX document.
  3212. footmisc: A range of footnote options.
  3213. footnotebackref: Back-references from footnotes.
  3214. footnoterange: References to ranges of footnotes.
  3215. footnpag: Per-page numbering of footnotes.
  3216. forarray: Using array structures in LaTeX.
  3217. foreign: Systematic treatment of 'foreign' words in documents.
  3218. forloop: Iteration in LaTeX.
  3219. formlett: Letters to multiple recipients.
  3220. formular: Create forms containing field for manual entry.
  3221. fragments: Fragments of LaTeX code.
  3222. frame: Framed boxes for Plain TeX.
  3223. framed: Framed or shaded regions that can break across pages.
  3224. frankenstein: A collection of LaTeX packages.
  3225. frege: Typeset fregean Begriffsschrift.
  3226. ftcap: Allows caption at the beginning of a table-environment.
  3227. ftnxtra: Extend the applicability of the footnote command.
  3228. fullblck: Left-blocking for letter class.
  3229. fullminipage: Minipage spanning a complete page
  3230. fullwidth: Adjust margins of text block.
  3231. fundus-calligra: Support for the calligra font in LaTeX documents.
  3232. fundus-cyr: Support for Washington University Cyrillic fonts.
  3233. fundus-sueterlin: Sutterlin
  3234. fwlw: Get first and last words of a page.
  3235. g-brief: Letter document class.
  3236. gauss: A package for Gaussian operations.
  3237. gcard: Arrange text on a sheet to fold into a greeting card.
  3238. gcite: Citations in a reader-friendly style.
  3239. gender: Gender neutrality for languages with grammatical gender.
  3240. genmpage: Generalization of LaTeX's minipages.
  3241. getfiledate: Find the date of last modification of a file.
  3242. ginpenc: Modification of inputenc for German.
  3243. gitinfo: Access metadata from the git distributed version control system.
  3244. gitinfo2: Access metadata from the git distributed version control system
  3245. gitlog: Typesetting git changelogs
  3246. gloss: Create glossaries using BibTeX.
  3247. glossaries: Create glossaries and lists of acronyms
  3248. glossaries-danish: Danish language module for glossaries package
  3249. glossaries-dutch: Dutch language module for glossaries package
  3250. glossaries-english: English language module for glossaries package
  3251. glossaries-french: French language module for glossaries package
  3252. glossaries-german: German language module for glossaries package
  3253. glossaries-irish: Irish language module for glossaries package
  3254. glossaries-italian: Italian language module for glossaries package
  3255. glossaries-magyar: Magyar language module for glossaries package
  3256. glossaries-polish: Polish language module for glossaries package
  3257. glossaries-portuges: Portuges language module for glossaries package.
  3258. glossaries-serbian: Serbian language module for glossaries package.
  3259. glossaries-spanish: Spanish language module for glossaries package.
  3260. gmdoc: Documentation of LaTeX packages.
  3261. gmdoc-enhance: Some enhancements to the gmdoc package.
  3262. gmiflink: Simplify usage of hypertarget and hyperlink.
  3263. gmutils: Support macros for other packages.
  3264. gmverb: A variant of LaTeX verb, verbatim and shortvrb.
  3265. graphbox: Extend graphicx to improve placement of graphics.
  3266. graphicx-psmin: Reduce size of PostScript files by not repeating images.
  3267. graphicxbox: Insert a graphical image as a background.
  3268. grfpaste: Include fragments of a dvi file.
  3269. grid: Grid typesetting in LaTeX.
  3270. grid-system: Page organisation, modelled on CSS facilities.
  3271. gridset: Grid, a.k.a. in-register, setting.
  3272. guitlogo: Macros for typesetting the GuIT logo.
  3273. handout: Create handout for auditors of a talk
  3274. hang: Environments for hanging paragraphs and list items.
  3275. hanging: Hanging paragraphs.
  3276. hardwrap: Hard wrap text to a certain character length.
  3277. harnon-cv: A CV document class with a vertical timeline for experience.
  3278. harpoon: Extra harpoons, using the graphics package.
  3279. hc: Replacement for the LaTeX classes.
  3280. he-she: Alternating pronouns to aid gender-neutral writing.
  3281. hhtensor: Print vectors, matrices, and tensors.
  3282. histogr: Draw histograms with the LaTeX picture environment.
  3283. hitec: Class for documentation.
  3284. hletter: Flexible letter typesetting with flexible page headings.
  3285. hpsdiss: A dissertation class.
  3286. hrefhide: Suppress hyper links when printing.
  3287. hvindex: Support for indexing.
  3288. hypdvips: Hyperref extensions for use with dvips.
  3289. hyper: Hypertext cross referencing.
  3290. hypernat: Allow hyperref and natbib to work together.
  3291. hyperref-docsrc:
  3292. hyperxmp: Embed XMP metadata within a LaTeX document.
  3293. hyphenat: Disable/enable hypenation.
  3294. idxcmds: Semantic commands for adding formatted index entries
  3295. idxlayout: Configurable index layout, responsive to KOMA-Script and memoir.
  3296. iffont: Conditionally load fonts with fontspec
  3297. ifmslide: Presentation slides for screen and printouts.
  3298. ifmtarg: If-then-else command for processing potentially empty arguments.
  3299. ifnextok: Utility macro: peek ahead without ignoring spaces.
  3300. ifoddpage: Determine if the current page is odd or even.
  3301. ifplatform: Conditionals to test which platform is being used.
  3302. ifthenx: Extra tests for ifthenelse.
  3303. iitem: Multiple level of lists in one list-like environment.
  3304. image-gallery: Create an overview of pictures from a digital camera or from other sources.
  3305. imakeidx: A package for producing multiple indexes.
  3306. import: Establish input relative to a directory.
  3307. incgraph: Sophisticated graphics inclusion in a PDF document.
  3308. indextools: Producing multiple indices
  3309. inlinedef: Inline expansions within definitions.
  3310. inputtrc: Trace which file loads which.
  3311. interactiveworkbook: LaTeX-based interactive PDF on the Web.
  3312. interfaces: Set parameters for other packages, conveniently.
  3313. inversepath: Calculate inverse file paths.
  3314. invoice: Generate invoices.
  3315. iso: Generic ISO standards typesetting macros.
  3316. iso10303: Typesetting the STEP standards.
  3317. isodate: Tune the output format of dates according to language.
  3318. isodoc: A LaTeX class for typesetting letters and invoices.
  3319. isonums: Display numbers in maths mode according to ISO 31-0.
  3320. isorot: Rotation of document elements.
  3321. isotope: A package for typesetting isotopes
  3322. issuulinks: Produce external links instead of internal ones.
  3323. iwhdp: Halle Institute for Economic Research (IWH) Discussion Papers.
  3324. jlabels: Make letter-sized pages of labels.
  3325. jslectureplanner: Creation and management of university course material.
  3326. jumplines: Articles with teasers and continuation later on.
  3327. jvlisting: A replacement for LaTeX's verbatim package.
  3328. kantlipsum: Generate sentences in Kant's style.
  3329. kerntest: Print tables and generate control files to adjust kernings.
  3330. keycommand: Simple creation of commands with key-value arguments.
  3331. keyreader: A robust interface to xkeyval.
  3332. keystroke: Graphical representation of keys on keyboard.
  3333. keyval2e: A lightweight and robust key-value parser.
  3334. kix: Typeset KIX codes.
  3335. koma-moderncvclassic: Makes the style and command of moderncv (style classic) available for koma-classes and thus compatible with biblatex.
  3336. koma-script-sfs: Koma-script letter class option for Finnish.
  3337. komacv: Typesetting a beuatiful CV with various style options.
  3338. ktv-texdata: Extract subsets of documents.
  3339. l3build: A testing and building system for (La)TeX
  3340. labbook: Typeset laboratory journals.
  3341. labelcas: Check the existence of labels, and fork accordingly.
  3342. labels: Print sheets of sticky labels.
  3343. lastpackage: Indicates the last loaded package.
  3344. lastpage: Reference last page for Page N of M type footers.
  3345. latex-tds: A structured copy of the LaTeX distribution.
  3346. latexdemo: Demonstrate LaTeX code with its resulting output.
  3347. layouts: Display various elements of a document's layout.
  3348. lazylist: Lists in TeX's "mouth".
  3349. lcd: Alphanumerical LCD-style displays.
  3350. lcg: Generate random integers.
  3351. leading: Define leading with a length.
  3352. leaflet: Create small handouts (flyers).
  3353. leftidx: Left and right subscripts and superscripts in math mode.
  3354. lengthconvert: Express lengths in arbitrary units.
  3355. lettre: Letters and faxes in French.
  3356. lettrine: Typeset dropped capitals
  3357. lewis: Draw Lewis structures.
  3358. lhelp: Miscellaneous helper packages.
  3359. libgreek: Use Libertine or Biolinum Greek glyphs in mathematics.
  3360. limap: Typeset maps and blocks according to the Information Mapping method.
  3361. linegoal: A "dimen" that returns the space left on the line.
  3362. lipsum: Easy access to the Lorem Ipsum dummy text.
  3363. lisp-on-tex: Execute LISP code in a LaTeX document
  3364. listing: Produce formatted program listings.
  3365. listlbls: Creates a list of all labels used throughout a document
  3366. listliketab: Typeset lists as tables.
  3367. listofsymbols: Create and manipulate lists of symbols
  3368. lkproof: LK Proof figure macros.
  3369. lmake: Process lists to do repetitive actions.
  3370. locality: Various macros for keeping things local.
  3371. localloc: Macros for localizing TeX register allocations.
  3372. logbox: e-TeX showbox facilities for exploration purposes.
  3373. logical-markup-utils: Packages for language-dependent inline quotes and dashes.
  3374. logpap: Generate logarithmic graph paper with LaTeX.
  3375. longfbox: Draw framed boxes with standard CSS attributes that can break over multiple pages
  3376. longfigure: Provides a figure-like environment that break over pages.
  3377. longnamefilelist: Tidy listfiles with long file names.
  3378. loops: General looping macros for use with LaTeX.
  3379. lsc: Typesetting Live Sequence Charts.
  3380. lstaddons: Add-on packages for listings: autogobble and line background.
  3381. lt3graph: Provide a graph datastructure for experimental LaTeX3.
  3382. ltablex: Table package extensions.
  3383. ltabptch: Bug fix for longtable.
  3384. ltxdockit: Documentation support.
  3385. ltxindex: A LaTeX package to typeset indices with GNU's Texindex.
  3386. ltxkeys: A robust key parser for LaTeX.
  3387. ltxnew: A simple means of creating commands.
  3388. ltxtools: A collection of LaTeX API macros.
  3389. macroswap: Swap the definitions of two LaTeX macros.
  3390. magaz: Magazine layout.
  3391. mailing: Macros for mail merging.
  3392. mailmerge: Repeating text field substitution.
  3393. makebarcode: Print various kinds 2/5 and Code 39 bar codes.
  3394. makebox: Defines a makebox* command.
  3395. makecell: Tabular column heads and multilined cells.
  3396. makecirc: A MetaPost library for drawing electrical circuit diagrams.
  3397. makecmds: The new makecommand command always (re)defines a command.
  3398. makedtx: Perl script to help generate dtx and ins files
  3399. makeglos: Include a glossary into a document.
  3400. mandi: Macros for introductory physics and astronomy.
  3401. manfnt: LaTeX support for the TeX book symbols.
  3402. manuscript: Emulate look of a document typed on a typewriter.
  3403. marginfix: Patch marginpar to avoid overfull margins.
  3404. marginnote: Notes in the margin, even where marginpar fails
  3405. mathalfa: General package for loading maths alphabets in LaTeX.
  3406. mathastext: Use the text font in maths mode
  3407. mathexam: Package for typesetting exams.
  3408. maybemath: Make math bold or italic according to context.
  3409. mbenotes: Notes in tables or images.
  3410. mcaption: Put captions in the margin.
  3411. mceinleger: Creating covers for music cassettes.
  3412. mcite: Multiple items in a single citation.
  3413. mciteplus: Enhanced multiple citations.
  3414. mdframed: Framed environments that can split at page boundaries.
  3415. media9: Multimedia inclusion package with Adobe Reader-9/X compatibility
  3416. medstarbeamer: Beamer document class for MedStar Health Research Institute
  3417. meetingmins: Format written minutes of meetings.
  3418. memexsupp: Experimental memoir support.
  3419. memory: Containers for data in LaTeX.
  3420. menu: Typesetting menus.
  3421. menukeys: Format menu sequences, paths and keystrokes from lists.
  3422. method: Typeset method and variable declarations.
  3423. metre: Support for the work of classicists
  3424. mfirstuc: Uppercase the first letter of a word
  3425. mftinc: Pretty-print Metafont source.
  3426. midpage: Environment for vertical centring.
  3427. minibox: A simple type of box for LaTeX.
  3428. minifp: Fixed-point real computations to 8 decimals.
  3429. minipage-marginpar: Minipages with marginal notes.
  3430. minitoc: Produce a table of contents for each chapter, part or section.
  3431. minorrevision: Quote and refer to a manuscript for minor revisions.
  3432. minted: Highlighted source code for LaTeX
  3433. minutes: Typeset the minutes of meetings.
  3434. mla-paper: Proper MLA formatting.
  3435. mlist: Logical markup for lists.
  3436. mmap: Include CMap resources in PDF files from PDFTeX.
  3437. mnotes: Margin annotation for collaborative writing.
  3438. moderncv: A modern curriculum vitae class.
  3439. moderntimeline: Timelines for use with moderncv
  3440. modref: Customisation of cross-references in LaTeX.
  3441. modroman: Write numbers in lower case roman numerals.
  3442. monofill: Alignment of plain text.
  3443. moreenum: More enumeration options.
  3444. morefloats: Increase the number of simultaneous LaTeX floats.
  3445. morehype: Hypertext tools for use with LaTeX
  3446. moresize: Allows font sizes up to 35.83pt.
  3447. moreverb: Extended verbatim.
  3448. morewrites: Always room for a new write stream.
  3449. movie15: Multimedia inclusion package.
  3450. mparhack: Work around a LaTeX bug in marginpars.
  3451. msc: Draw MSC diagrams.
  3452. msg: A package for LaTeX localisation.
  3453. mslapa: Michael Landy's APA citation style.
  3454. mtgreek: Use italic and upright greek letters with mathtime.
  3455. multenum: Multi-column enumerated lists.
  3456. multiaudience: Several versions of output from the same source
  3457. multibbl: Multiple bibliographies.
  3458. multicap: Format captions inside multicols
  3459. multienv: Multiple environments using a "key=value" syntax.
  3460. multiexpand: Variations on the primitive command expandafter
  3461. multirow: Create tabular cells spanning multiple rows.
  3462. mversion: Keeping track of document versions.
  3463. mwe: Packages and image files for MWEs.
  3464. mweights: Support for multiple-weight font packages.
  3465. mycv: A list-driven CV class, allowing TikZ decorations.
  3466. mylatexformat: Build a format based on the preamble of a LaTeX file.
  3467. nag: Detecting and warning about obsolete LaTeX commands
  3468. nameauth: Name authority mechanism for consistency in body text and index
  3469. namespc: Rudimentary C++-like namespaces in LaTeX.
  3470. ncclatex: An extended general-purpose class
  3471. ncctools: A collection of general packages for LaTeX
  3472. needspace: Insert pagebreak if not enough space.
  3473. nestquot: Alternate quotes between double and single with nesting.
  3474. newcommand: Generate new LaTeX command definitions.
  3475. newenviron: Processing an environment's body.
  3476. newfile: User level management of LaTeX input and output.
  3477. newlfm: Write letters, facsimiles, and memos.
  3478. newspaper: Typeset newsletters to resemble newspapers.
  3479. newunicodechar: Definitions of the meaning of Unicode characters.
  3480. newvbtm: Define your own verbatim-like environment.
  3481. newverbs: Define new versions of verb, including short verb versions.
  3482. nextpage: Generalisations of the page advance commands.
  3483. nfssext-cfr: Extensions to the LaTeX NFSS.
  3484. nicefilelist: Provide listfiles alignment.
  3485. niceframe: Support for fancy frames.
  3486. nicetext: Minimal markup for simple text (Wikipedia style) and documentation
  3487. nlctdoc: Package documentation class.
  3488. noconflict: Resolve macro name conflict between packages.
  3489. noindentafter: Tool to prevent paragraph indentation after environments/macros.
  3490. noitcrul: Improved underlines in mathematics.
  3491. nolbreaks: No line breaks in text.
  3492. nomencl: Produce lists of symbols as in nomenclature.
  3493. nomentbl: Nomenclature typeset in a longtable
  3494. nonfloat: Non-floating table and figure captions.
  3495. nonumonpart: Prevent page numbers on part pages.
  3496. nopageno: No page numbers in LaTeX documents.
  3497. notes: Mark sections of a document.
  3498. notoccite: Prevent trouble from citations in table of contents, etc.
  3499. nowidow: Avoid widows.
  3500. nox: Adaptable tables.
  3501. ntheorem: Enhanced theorem environment.
  3502. numberedblock: Print a block of code, with unique index number.
  3503. numname: Convert a number to its English expression.
  3504. numprint: Print numbers with separators and exponent if necessary.
  3505. ocg-p: PDF OCG support in LaTeX.
  3506. ocgx: Use OCGs within a PDF document without JavaScript.
  3507. ocgx2: Drop-in replacement for the 'ocgx' package; adds support for dvips+ps2pdf, XeLaTeX, dvipdfmx
  3508. ocr-latex: LaTeX support for ocr fonts.
  3509. octavo: Typeset books following classical design and layout.
  3510. oldstyle: Old style numbers in OT1 encoding.
  3511. onlyamsmath: Inhibit use of non-amsmath mathematics markup when using amsmath.
  3512. opcit: Footnote-style bibliographical references.
  3513. optional: Facilitate optional printing of parts of a document.
  3514. options: Provides convenient key-value options for LaTeX package writers
  3515. outline: List environment for making outlines.
  3516. outliner: Change section levels easily.
  3517. outlines: Produce "outline" lists.
  3518. overpic: Combine LaTeX commands over included graphics.
  3519. pagecolor: Interrogate page colour
  3520. pagecont: Page numbering that continues between documents.
  3521. pagenote: Notes at end of document.
  3522. pagerange: Flexible and configurable page range typesetting.
  3523. pageslts: Variants of last page labels
  3524. paper: Versions of article class, tuned for scholarly publications.
  3525. papercdcase: Origami-style folding paper CD case.
  3526. papermas: Compute the mass of a printed version of a document.
  3527. papertex: Class for newspapers, etc.
  3528. paracol: Multiple columns with texts "in parallel"
  3529. paralist: Enumerate and itemize within paragraphs
  3530. paresse: Define simple macros for greek letters.
  3531. parnotes: Notes after every paragraph (or elsewhere).
  3532. parselines: Apply a macro to each line of an environment.
  3533. pas-cours: Macros useful in preparing teaching material.
  3534. pas-cv: Flexible typesetting of Curricula Vitae.
  3535. pas-tableur: Create a spreadsheet layout.
  3536. patch: Patch loaded packages, etc..
  3537. patchcmd: Change the definition of an existing command.
  3538. pauldoc: German LaTeX package documentation.
  3539. pawpict: Using graphics from PAW.
  3540. pax: Extract and reinsert PDF annotations with pdfTeX.
  3541. pbox: A variable-width parbox command.
  3542. pbsheet: Problem sheet class.
  3543. pdf14: Restore PDF 1.4 to a TeX live 2010 format.
  3544. pdfcomment: A user-friendly interface to pdf annotations.
  3545. pdfcprot: Activating and setting of character protruding using pdflatex.
  3546. pdfmarginpar: Generate marginpar-equivalent PDF annotations.
  3547. pdfpagediff: Find difference between two PDF's
  3548. pdfscreen: Support screen-based document design.
  3549. pdfslide: Presentation slides using pdftex.
  3550. pdfsync: Provide links between source and PDF.
  3551. pdfwin:
  3552. pdfx: PDF/X-1a and PDF/A-1b support for pdfTeX.
  3553. pecha: Print Tibetan text in the classic pecha layout style.
  3554. perltex: Define LaTeX macros in terms of Perl code
  3555. permute: Support for symmetric groups.
  3556. petiteannonce: A class for small advertisements.
  3557. philex: Cross references for named and numbered environments.
  3558. photo: A float environment for photographs.
  3559. piff: Macro tools by Mike Piff.
  3560. pkgloader: Managing the options and loading order of other packages.
  3561. placeins: Control float placement.
  3562. plantslabels: Write labels for plants.
  3563. plates: Arrange for "plates" sections of documents.
  3564. plweb: Literate Programming for Prolog with LaTeX.
  3565. polynom: Macros for manipulating polynomials.
  3566. polynomial: Typeset (univariate) polynomials.
  3567. polytable: Tabular-like environments with named columns.
  3568. postcards: Facilitates mass-mailing of postcards (junkmail).
  3569. poster-mac: Make posters and banners with TeX.
  3570. ppr-prv: Prosper preview.
  3571. preprint: A bundle of packages provided "as is".
  3572. pressrelease: A class for typesetting press releases.
  3573. prettyref: Make label references "self-identify".
  3574. preview: Extract bits of a LaTeX source for output
  3575. printlen: Print lengths using specified units.
  3576. probsoln: Generate problem sheets and their solution sheets.
  3577. program: Typesetting programs and algorithms.
  3578. progress: Creates an overview of a document's state.
  3579. progressbar: Visualize shares of total amounts in the form of a (progress-)bar.
  3580. proofread: Commands for inserting annotations
  3581. properties: Load properties from a file.
  3582. prosper: LaTeX class for high quality slides.
  3583. protex: Literate programming package.
  3584. protocol: A class for minutes of meetings.
  3585. psfragx: A psfrag eXtension.
  3586. pst-pdf: Make PDF versions of graphics by processing between runs.
  3587. pstool: Support for psfrag within pdfLaTeX.
  3588. pxgreeks: Shape selection for PX fonts Greek letters.
  3589. python: Embed Python code in LaTeX.
  3590. qcm: A LaTeX2e class for making multiple choice questionnaires
  3591. qstest: Bundle for unit tests and pattern matching.
  3592. qsymbols: Maths symbol abbreviations.
  3593. quotchap: Decorative chapter headings.
  3594. quoting: Consolidated environment for displayed text.
  3595. quotmark: Consistent quote marks.
  3596. ran_toks: Randomise token strings.
  3597. randtext: Randomise the order of characters in strings.
  3598. rccol: Decimal-centered optionally rounded numbers in tabular.
  3599. rcs-multi: Typeset RCS version control in multiple-file documents.
  3600. rcsinfo: Support for the revision control system.
  3601. readarray: Read, store and recall array-formatted data.
  3602. realboxes: Variants of common box-commands that read their content as real box and not as macro argument.
  3603. recipe: A LaTeX class to typeset recipes.
  3604. recipebook: Typeset 5.5" x 8" recipes for browsing or printing.
  3605. recipecard: Typeset recipes in note-card-sized boxes.
  3606. rectopma: Recycle top matter.
  3607. refcheck: Check references (in figures, table, equations, etc).
  3608. refenums: Define reference labels items with names of their own.
  3609. reflectgraphics: Techniques for reflecting graphics.
  3610. refman: Format technical reference manuals.
  3611. refstyle: Advanced formatting of cross references.
  3612. regcount: Display the allocation status of the TeX registers.
  3613. regexpatch: High level patching of commands.
  3614. register: Typeset programmable elements in digital hardware (registers).
  3615. regstats: Information about register use.
  3616. relenc: A "relaxed" font encoding.
  3617. relsize: Set the font size relative to the current font size.
  3618. repeatindex: Repeat items in an index after a page or column break
  3619. repltext: Control how text gets copied from a PDF file.
  3620. rjlparshap: Support for use of parshape in LaTeX.
  3621. rlepsf: Rewrite labels in EPS graphics.
  3622. rmpage: A package to help change page layout parameters in LaTeX.
  3623. robustcommand: Declare robust command, with newcommand checks.
  3624. robustindex: Create index with pagerefs.
  3625. romanbar: Write roman number with "bars".
  3626. romanbarpagenumber: Typesetting roman page numbers.
  3627. romanneg: Roman page numbers negative.
  3628. romannum: Generate roman numerals instead of arabic digits.
  3629. rotfloat: Rotate floats.
  3630. rotpages: Typeset sets of pages upside-down and backwards.
  3631. roundbox: Round boxes in LaTeX.
  3632. rterface: Access to R analysis from within a document.
  3633. rtkinenc: Input encoding with fallback procedures.
  3634. rulercompass: A TikZ library for straight-edge and compass diagrams.
  3635. rvwrite: Increase the number of available output streams in LaTeX.
  3636. sauerj: A bundle of utilities by Jonathan Sauer.
  3637. savefnmark: Save name of the footnote mark for reuse.
  3638. savesym: Redefine symbols where names conflict.
  3639. savetrees: Optimise the use of each page of a LaTeX document.
  3640. scale: Scale document by sqrt(2) or magstep(2).
  3641. scalebar: Create scalebars for maps, diagrams or photos.
  3642. scalerel: Constrained scaling and stretching of objects.
  3643. scanpages: Support importing and embellishing scanned documents.
  3644. sdrt: Macros for Segmented Discourse Representation Theory.
  3645. secdot: Section numbers with trailing dots.
  3646. sectionbox: Create fancy boxed ((sub)sub)sections.
  3647. sectsty: Control sectional headers.
  3648. seealso: Improve the performance of see macros with makeindex.
  3649. selectp: Select pages to be output.
  3650. semantic: Help for writing programming language semantics.
  3651. semioneside: Put only special contents on left-hand pages in two sided layout.
  3652. semproc: Seminar proceedings
  3653. sepfootnotes: Support footnotes and endnotes from separate files.
  3654. seqsplit: Split long sequences of characters in a neutral way.
  3655. sf298: Standard form 298.
  3656. sffms: Typesetting science fiction/fantasy manuscripts.
  3657. sfmath: Sans-serif mathematics.
  3658. shadethm: Theorem environments that are shaded
  3659. shadow: Shadow boxes.
  3660. shadowtext: shadowtext
  3661. shapepar: A macro to typeset paragraphs in specific shapes.
  3662. shdoc: Float environment to document the shell commands of a terminal session
  3663. shipunov: A collection of LaTeX packages and classes.
  3664. shorttoc: Table of contents with different depths.
  3665. show2e: Variants of show for LaTeX2e.
  3666. showcharinbox: Show characters inside a box.
  3667. showdim: Variants on printing dimensions.
  3668. showexpl: Typesetting LaTeX source code.
  3669. showlabels: Show label commands in the margin
  3670. sidecap: Typeset captions sideways.
  3671. sidenotes: Typeset notes containing rich content, in the margin.
  3672. silence: Selective filtering of error messages and warnings.
  3673. simplecd: Simple CD, DVD covers for printing.
  3674. simplecv: A simple class for writing curricula vitae.
  3675. sitem: Save the optional argument of item.
  3676. skb: Tools for a repository of long-living documents.
  3677. skdoc: Documentation and extraction for packages and document classes.
  3678. skeycommand: Create commands using parameters and keyval in parallel.
  3679. skeyval: Key-value parsing combining features of xkeyval and pgfkeys.
  3680. skrapport: 'Simple' class for reports, etc.
  3681. slantsc: Access different-shaped small-caps fonts.
  3682. smalltableof: Create listoffigures etc. in a single chapter.
  3683. smartref: Extend LaTeX's ref capability.
  3684. snapshot: List the external dependencies of a LaTeX document.
  3685. snotez: Typeset notes, in the margin.
  3686. soul: Hyphenation for letterspacing, underlining, and more.
  3687. sparklines: Drawing sparklines: intense, simple, wordlike graphics.
  3688. sphack: Patch LaTeX kernel spacing macros.
  3689. splitindex: Unlimited number of indexes.
  3690. spot: Spotlight highlighting for Beamer.
  3691. spotcolor: Spot colours for pdfLaTeX.
  3692. spreadtab: Spreadsheet features for LaTeX tabular environments.
  3693. spverbatim: Allow line breaks within verb and verbatim output.
  3694. srbook-mem:
  3695. srcltx: Jump between DVI and TeX files.
  3696. sseq: Typesetting spectral sequence charts.
  3697. sslides: Slides with headers and footers.
  3698. stack: Tools to define and use stacks.
  3699. stackengine: Highly customised stacking of objects, insets, baseline changes, etc.
  3700. standalone: Compile TeX pictures stand-alone or as part of a document.
  3701. statistik: Store statistics of a document.
  3702. stdclsdv: Provide sectioning information for package writers.
  3703. stdpage: Standard pages with n lines of at most m characters each.
  3704. stex: An Infrastructure for Semantic Preloading of LaTeX Documents.
  3705. storebox: Storing information for reuse.
  3706. storecmd: Store the name of a defined command in a container.
  3707. stringstrings: String manipulation for cosmetic and programming application.
  3708. sttools: Various macros.
  3709. stubs: Create tear-off stubs at the bottom of a page.
  3710. subdepth: Unify maths subscript height.
  3711. subeqn: Package for subequation numbering.
  3712. subeqnarray: Equation array with sub numbering.
  3713. subfigmat: Automates layout when using the subfigure package.
  3714. subfigure: Deprecated: Figures divided into subfigures.
  3715. subfiles: Individual typesetting of subfiles of a "main" document.
  3716. subfloat: Sub-numbering for figures and tables.
  3717. substitutefont: Easy font substitution.
  3718. substr: Deal with substrings in strings.
  3719. supertabular: A multi-page tables package.
  3720. svg: Include and extract SVG pictures using Inkscape.
  3721. svgcolor: Define SVG named colours.
  3722. svn: Typeset Subversion keywords.
  3723. svn-multi: Subversion keywords in multi-file LaTeX documents
  3724. svn-prov: Subversion variants of Provides... macros.
  3725. svninfo: Typeset Subversion keywords.
  3726. syntax: Creation of syntax diagrams.
  3727. syntrace: Labels for tracing in a syntax tree.
  3728. synttree: Typeset syntactic trees.
  3729. tabfigures: Maintain vertical alignment of figures.
  3730. tableaux: Construct tables of signs and variations.
  3731. tablefootnote: Permit footnotes in tables.
  3732. tableof: Tagging tables of contents.
  3733. tablestyles:
  3734. tablists: Tabulated lists of short items.
  3735. tabls: Better vertical spacing in tables and arrays.
  3736. tabstackengine: "Tabbing" front-end to stackengine.
  3737. tabto-ltx: "Tab" to a measured position in the line.
  3738. tabu: Flexible LaTeX tabulars.
  3739. tabularborder: Remove excess space at left and right of tabular.
  3740. tabularcalc: Calculate formulas in a tabular environment.
  3741. tabularew: A variation on the tabular environment.
  3742. tabulary: Tabular with variable width columns balanced.
  3743. tagging: Document configuration with tags.
  3744. tagpair: Word-by-word glosses, translations, and bibliographic attributions.
  3745. talk: A LaTeX class for presentations.
  3746. tamefloats: Experimentally use holdinginserts with LaTeX floats.
  3747. tasks: Horizontally columned lists.
  3748. tcldoc: Doc/docstrip for tcl.
  3749. tcolorbox: Coloured boxes, for LaTeX examples and theorems, etc
  3750. tdclock: A ticking digital clock package for PDF output.
  3751. technics: A package to format technical documents.
  3752. ted: A (primitive) token list editor.
  3753. templatetools: Commands useful in LaTeX templates.
  3754. termcal: Print a class calendar.
  3755. termlist: Label any kind of term with a continuous counter.
  3756. testhyphens: Testing hyphenation patterns
  3757. tex-label: Place a classification on each page of a document
  3758. texlogos: Ready-to-use LaTeX logos.
  3759. texmate: Comprehensive chess annotation in LaTeX.
  3760. texments: Using the Pygments highlighter in LaTeX.
  3761. texpower: Create dynamic online presentations with LaTeX.
  3762. texshade: Package for setting nucleotide and peptide alignments.
  3763. texvc: Use MediaWiki LaTeX commands
  3764. textfit: Fit text to a desired size.
  3765. textgreek: Upright greek letters in text.
  3766. textmerg: Merge text in TeX and LaTeX.
  3767. textpos: Place boxes at arbitrary positions on the LaTeX page.
  3768. theoremref: References with automatic theorem names.
  3769. thinsp: A stretchable thinspace for LaTeX.
  3770. thmtools: Extensions to theorem environments.
  3771. threadcol: Organize document columns into PDF "article thread".
  3772. threeparttable: Tables with captions and notes all the same width.
  3773. threeparttablex: Notes in longtables.
  3774. thumb: Thumb marks in documents.
  3775. thumbs: Create thumb indexes.
  3776. thumby: Create thumb indexes for printed books.
  3777. ticket: Make labels, visiting-cards, pins with LaTeX.
  3778. titlecaps: Setting rich-text input into Titling Caps.
  3779. titlefoot: Add special material to footer of title page.
  3780. titlepic: Add picture to title page of a document.
  3781. titleref: A "titleref" command to cross-reference section titles.
  3782. titlesec: Select alternative section titles.
  3783. titling: Control over the typesetting of the maketitle command.
  3784. tocbibind: Add bibliography/index/contents to Table of Contents.
  3785. tocloft: Control table of contents, figures, etc.
  3786. tocvsec2: Section numbering and table of contents control.
  3787. todo: Make a to-do list for a document.
  3788. todonotes: Marking things to do in a LaTeX document.
  3789. tokenizer: A tokenizer.
  3790. toolbox: Tool macros.
  3791. topfloat: Move floats to the top of the page.
  3792. totcount: Find the last value of a counter.
  3793. totpages: Count pages in a document, and report last page number.
  3794. translations: Internationalisation of LaTeX2e packages
  3795. trfsigns: Typeset transform signs.
  3796. trimspaces: Trim spaces around an argument or within a macro.
  3797. trivfloat: Quick float definitions in LaTeX.
  3798. trsym: Symbols for transformations.
  3799. truncate: Truncate text to a specified width.
  3800. tucv: Support for typesetting a CV or resumee.
  3801. turnthepage: Provide "turn page" instructions.
  3802. twoinone: Print two pages on a single page.
  3803. twoup: Print two virtual pages on each physical page.
  3804. txgreeks: Shape selection for TX fonts Greek letters.
  3805. type1cm: Arbitrary size font selection in LaTeX.
  3806. typeface: Select a balanced set of fonts.
  3807. typogrid: Print a typographic grid.
  3808. uassign: Environments and options for typesetting university assignments
  3809. ucs: Extended UTF-8 input encoding support for LaTeX.
  3810. uebungsblatt: A LaTeX class for writing exercise sheets.
  3811. umoline: Underline text allowing line breaking.
  3812. underlin: Underlined running heads.
  3813. underoverlap: Position decorations over and under expressions.
  3814. undolabl: Override existing labels.
  3815. units: Typeset units.
  3816. unravel: Watching TeX digest tokens
  3817. upmethodology: Writing specifications such as for UP-based methodologies
  3818. upquote: Show "realistic" quotes in verbatim.
  3819. uri: Hyperlinks for a wide range of URIs.
  3820. ushort: Shorter (and longer) underlines and underbars.
  3821. uwmslide: Slides with a simple Power Point like appearance.
  3822. varindex: Luxury frontend to the index command.
  3823. varsfromjobname: Extract variables from the name of the LaTeX file.
  3824. varwidth: A variable-width minipage.
  3825. vdmlisting: Typesetting VDM in ASCII syntax.
  3826. verbasef: VERBatim Automatic Splitting of External Files.
  3827. verbatimbox: Deposit verbatim text in a box.
  3828. verbatimcopy: Make copies of text documents from within LaTeX.
  3829. verbdef: Define commands which expand to verbatim text
  3830. verbments: Syntax highlighting of source code in LaTeX documents.
  3831. version: Conditionally include text.
  3832. versions: Optionally omit pieces of text.
  3833. versonotes: Display brief notes on verso pages
  3834. vertbars: Mark vertical rules in margin of text.
  3835. vgrid: Overlay a grid on the printed page.
  3836. vhistory: Support for creating a change log.
  3837. vmargin: Set various page dimensions.
  3838. volumes: Typeset only parts of a document, with complete indexes etc.
  3839. vpe: Source specials for PDF output.
  3840. vruler: Numbering text.
  3841. vwcol: Variable-width multiple text columns.
  3842. wallpaper: Easy addition of wallpapers (background images) to LaTeX documents, including tiling.
  3843. warning: Global warnings at the end of the logfile.
  3844. warpcol: Relative alignment of rows in numeric columns in tabulars.
  3845. was: A collection of small packages by Walter Schmidt.
  3846. widetable: An environment for typesetting tables of specified width
  3847. williams: Miscellaneous macros by Peter Williams.
  3848. withargs: Ephemeral macro use
  3849. wordlike: Simulating word processor layout.
  3850. wrapfig: Produces figures which text can flow around.
  3851. xargs: Define commands with many optional arguments.
  3852. xassoccnt: Associated counters stepping simultaneously
  3853. xcolor-solarized: Defines the 16 colors from Ethan Schoonover's Solarized palette
  3854. xcomment: Allows selected environments to be included/excluded.
  3855. xdoc: Extending the LaTeX doc system.
  3856. xellipsis: Extremely configurable ellipses with formats for various style manuals
  3857. xfor: A reimplementation of the LaTeX for-loop macro.
  3858. xhfill: Extending hrulefill.
  3859. xifthen: Extended conditional commands
  3860. xint: Expandable operations on long numbers
  3861. xmpincl: Include eXtensible Metadata Platform data in PDFLaTeX.
  3862. xnewcommand: Define global and protected commands with newcommand.
  3863. xoptarg: Expandable macros that take an optional argument.
  3864. xpatch: Extending etoolbox patching commands.
  3865. xpeek: Define commands that peek ahead in the input stream.
  3866. xprintlen: Print TeX lengths in a variety of units.
  3867. xpunctuate: Process trailing punctuation which may be redundant.
  3868. xstring: String manipulation for (La)TeX.
  3869. xtab: Break tables across pages.
  3870. xwatermark: Graphics and text watermarks on selected pages.
  3871. xytree: Tree macros using XY-Pic.
  3872. yafoot: A bundle of miscellaneous footnote packages.
  3873. yagusylo: A symbol loader.
  3874. ydoc: Macros for documentation of LaTeX classes and packages.
  3875. yplan: Daily planner type calendar.
  3876. zed-csp: Typesetting Z and CSP format specifications.
  3877. ziffer: Conversion of punctuation in maths mode.
  3878. zwgetfdate: Get package or file date.
  3879. zwpagelayout: Page layout and crop-marks.
  3880. %description -l ja
  3881. TeX Live ソフトウェアディストリビューションは、
  3882. さまざまな Unix, Macintosh, Windows、および
  3883. 他のプラットホームに対して完全な TeX システムを提供します。
  3884. 多くの異なった言語を含む TeX ドキュメントの
  3885. 編集、組版、閲覧、印刷するためのプログラム、
  3886. そして、TeX マクロやフォントライブラリの大きなコレクションを
  3887. 同梱しています。
  3888. このディストリビューションは
  3889. 同梱しているソフトウェアパッケージのためのドキュメントばかりでなく、
  3890. TeX に関するたくさんの一般的なドキュメントを含んでいます。
  3891. このパッケージは以下のようなパッケージ集です。
  3892. LaTeX additional packages:
  3893. A very large collection of add-on packages for LaTeX.
  3894. このパッケージは以下の CTAN パッケージを含んでいます:
  3895. 2up:
  3896. ESIEEcv: Curriculum vitae for French use.
  3897. GS1: Typeset EAN barcodes using TeX rules, only.
  3898. HA-prosper: Patches and improvements for prosper.
  3899. Tabbing: Tabbing with accented letters.
  3900. a0poster: Support for designing posters on large paper.
  3901. a4wide: "Wide" a4 layout.
  3902. a5comb: Support for a5 paper sizes.
  3903. abraces: Asymmetric over-/underbraces in maths.
  3904. abstract: Control the typesetting of the abstract environment.
  3905. achemso: Support for American Chemical Society journal submissions.
  3906. acro: Typeset acronyms
  3907. acronym: Expand acronyms at least once.
  3908. acroterm: Manage and index acronyms and terms.
  3909. actuarialangle: Symbol for use in "present value" statements of an annuity.
  3910. addlines: A user-friendly wrapper around enlargethispage.
  3911. adjmulticol: Adjusting margins for multicolumn and single column output.
  3912. adjustbox: Graphics package-alike macros for "general" boxes.
  3913. adrconv: BibTeX styles to implement an address database.
  3914. advdate: Print a date relative to "today".
  3915. akktex: A collection of packages and classes.
  3916. akletter: Comprehensive letter support.
  3917. alertmessage: Alert messages for LaTeX
  3918. alnumsec: Alphanumeric section numbering.
  3919. alterqcm: Multiple choice questionnaires in two column tables.
  3920. altfont: Alternative font handling in LaTeX.
  3921. amsaddr: Alter the position of affiliations in amsart.
  3922. animate: Create PDF animations from graphics files and inline graphics
  3923. anonchap: Make chapters be typeset like sections.
  3924. answers: Setting questions (or exercises) and answers.
  3925. anyfontsize: Select any font size in LaTeX.
  3926. appendix: Extra control of appendices
  3927. appendixnumberbeamer: Manage frame numbering in appendixes in beamer.
  3928. apptools: Tools for customising appendices.
  3929. arcs: Draw arcs over and under text
  3930. arrayjobx: Array data structures for (La)TeX.
  3931. arraysort: Sort arrays (or portions of them).
  3932. arydshln: Horizontal and vertical dashed lines in arrays and tabulars.
  3933. asciilist: Environments AsciiList and AsciiDocList for prototyping nested lists in LaTeX.
  3934. assignment: A class file for typesetting homework and lab assignments
  3935. assoccnt: Associate counters, making them step when a master steps
  3936. attachfile: Attach arbitrary files to a PDF document
  3937. authoraftertitle: Make author, etc., available after maketitle.
  3938. authorindex: Index citations by author names.
  3939. autonum: Automatic equation references.
  3940. autopdf: Conversion of graphics to pdfLaTeX-compatible formats.
  3941. avremu: An 8-Bit Microcontroller Simulator written in LaTeX.
  3942. background: Placement of background material on pages of a document.
  3943. bankstatement: A LaTeX class for bank statements based on csv data
  3944. bashful: Invoke bash commands from within LaTeX.
  3945. basicarith: Macros for typesetting basic arithmetic.
  3946. bchart: Draw simple bar charts in LaTeX.
  3947. beamer2thesis: Thesis presentations using beamer.
  3948. beameraudience: Assembling beamer frames according to audience
  3949. beamerdarkthemes: Dark color themes for beamer.
  3950. beamerposter: Extend beamer and a0poster for custom sized posters.
  3951. beamersubframe: Reorder frames in the PDF file.
  3952. beamertheme-detlevcm: A beamer theme designed for use in the University of Leeds
  3953. beamertheme-metropolis: A modern LaTeX beamer theme
  3954. beamertheme-phnompenh: A simple beamer theme
  3955. beamertheme-upenn-bc: Beamer themies for Boston College and the University of Pennsylvania.
  3956. beamerthemejltree: Contributed beamer theme.
  3957. beamerthemenirma: A Beamer theme for academic presentations.
  3958. beton: Use Concrete fonts.
  3959. bewerbung: Typesetting job application
  3960. bez123: Support for Bezier curves.
  3961. bezos: Packages by Javier Bezos.
  3962. bhcexam: An exam class designed for Mathematics Teachers in China
  3963. bigfoot: Footnotes for critical editions
  3964. bigints: Writing big integrals.
  3965. bizcard: Typeset business cards.
  3966. blindtext: Producing 'blind' text for testing.
  3967. blkarray: Extended array and tabular.
  3968. block: A block letter style for the letter class.
  3969. blowup: Upscale or downscale all pages of a document.
  3970. bnumexpr: Extends eTeX's numexpr...relax construct to big integers
  3971. boites: Boxes that may break across pages
  3972. bold-extra: Use bold small caps and typewriter fonts.
  3973. bookcover: A class for book covers and dust jackets.
  3974. bookest: Extended book class.
  3975. booklet: Aids for printing simple booklets.
  3976. boolexpr: A boolean expression evaluator and a switch command.
  3977. bophook: Provides an At-Begin-Page hook.
  3978. boxedminipage: A package for producing framed minipages.
  3979. boxedminipage2e: Framed minipages of a specified total width (text and frame combined)
  3980. boxhandler: Flexible Captioning and Deferred Box/List Printing.
  3981. bracketkey: Produce bracketed identification keys.
  3982. braket: Dirac bra-ket and set notations.
  3983. breakurl: Line-breakable url-like links in hyperref when compiling via dvips/ps2pdf.
  3984. bullcntr: Display list item counter as regular pattern of bullets.
  3985. bussproofs: Proof trees in the style of the sequent calculus.
  3986. bxdpx-beamer: Dvipdfmx extras for use with beamer.
  3987. bxpdfver: Specify version and compression level of output PDF files
  3988. calcage: Calculate the age of something, in years.
  3989. calctab: Language for numeric tables.
  3990. calculator: Use LaTeX as a scientific calculator.
  3991. calrsfs: Copperplate calligraphic letters in LaTeX.
  3992. cals: Multipage tables with wide range of features.
  3993. calxxxx-yyyy: Print a calendar for a group of years
  3994. cancel: Place lines through maths formulae.
  3995. canoniclayout: Create canonical page layouts with memoir.
  3996. capt-of: Captions on more than floats.
  3997. captcont: Retain float number across several floats.
  3998. captdef: Declare free-standing caption commands.
  3999. carbohydrates: Carbohydrate molecules with chemfig
  4000. cases: Numbered cases environment
  4001. casyl: Typeset Cree/Inuktitut in Canadian Aboriginal Syllabics.
  4002. catchfilebetweentags: Catch text delimited by docstrip tags.
  4003. catechis: Macros for typesetting catechisms.
  4004. catoptions: Preserving and recalling standard catcodes.
  4005. cbcoptic: Coptic fonts and LaTeX macros for general usage and for philology.
  4006. ccaption: Continuation headings and legends for floats.
  4007. cclicenses: Typeset Creative Commons licence logos.
  4008. cd: Typeset CD covers.
  4009. cd-cover: Typeset CD covers.
  4010. cdpbundl: Business letters in the Italian style.
  4011. cellspace: Ensure minimal spacing of table cells.
  4012. censor: Facilities for controlling restricted text in a document.
  4013. changebar: Generate changebars in LaTeX documents.
  4014. changelayout: Change the layout of individual pages and their text.
  4015. changepage: Margin adjustment and detection of odd/even pages.
  4016. changes: Manual change markup.
  4017. chappg: Page numbering by chapter.
  4018. chapterfolder: Package for working with complicated folder structures.
  4019. chet: LaTeX layout inspired by harvmac
  4020. chextras: A companion package for the Swiss typesetter.
  4021. chkfloat: Warn whenever a float is placed "to far away".
  4022. chletter: Class for typesetting letters to Swiss rules.
  4023. chngcntr: Change the resetting of counters.
  4024. chronology: Provides a horizontal timeline.
  4025. circ: Macros for typesetting circuit diagrams.
  4026. classics: Cite classic works.
  4027. clefval: Key/value support with a hash.
  4028. cleveref: Intelligent cross-referencing.
  4029. clipboard: Copy and paste into and across documents.
  4030. clock: Graphical and textual clocks for TeX and LaTeX.
  4031. cmdstring: Get command name reliably.
  4032. cmdtrack: Check used commands.
  4033. cmsd: Interfaces to the CM Sans Serif Bold fonts.
  4034. cnltx: LaTeX tools and documenting facilities
  4035. cntformats: A different way to read counters.
  4036. cntperchap: Store counter values per chapter.
  4037. codedoc: LaTeX code and documentation in LaTeX-format file.
  4038. codepage: Support for variant code pages.
  4039. codesection: Provides an environment that may be conditionally included.
  4040. collcell: Collect contents of a tabular cell as argument to a macro.
  4041. collectbox: Collect and process macro arguments as boxes.
  4042. colordoc: Coloured syntax highlights in documentation.
  4043. colorinfo: Retrieve colour model and values for defined colours.
  4044. colorspace: Provides PDF color spaces
  4045. colortab: Shade cells of tables and halign.
  4046. colorwav: Colours by wavelength of visible light.
  4047. colorweb: Extend the color package colour space.
  4048. colourchange: colourchange
  4049. combelow: Typeset "comma-below" letters, as in Romanian.
  4050. combine: Bundle individual documents into a single document.
  4051. comma: Formats a number by inserting commas.
  4052. commado: Expandable iteration on comma-separated and filename lists
  4053. comment: Selectively include/excludes portions of text.
  4054. concepts: Keeping track of formal 'concepts' for a particular field.
  4055. concprog: Concert programmes.
  4056. constants: Automatic numbering of constants.
  4057. continue: Prints 'continuation' marks on recto pages of multipage documents
  4058. contour: Print a coloured contour around text.
  4059. contracard: Generate calling cards for dances.
  4060. cooking: Typeset recipes.
  4061. cool: COntent-Oriented LaTeX.
  4062. coollist: Manipulate COntent Oriented LaTeX Lists.
  4063. coolstr: String manipulation in LaTeX.
  4064. coolthms: Reference items in a theorem environment.
  4065. cooltooltips: Associate a pop-up window and tooltip with PDF hyperlinks.
  4066. coordsys: Draw cartesian coordinate systems.
  4067. copyedit: Copyediting support for LaTeX documents.
  4068. copyrightbox: Provide copyright notices for images in a document.
  4069. coseoul: Context sensitive outline elements
  4070. counttexruns: Count compilations of a document.
  4071. courseoutline: Prepare university course outlines.
  4072. coursepaper: Prepare university course papers.
  4073. coverpage: Automatic cover page creation for scientific papers.
  4074. cprotect: Allow verbatim, etc., in macro arguments.
  4075. crbox: Boxes with crossed corners.
  4076. crossreference: Crossreferences within documents.
  4077. csquotes: Context sensitive quotation facilities.
  4078. csvsimple: Simple CSV file processing.
  4079. cuisine: Typeset recipes.
  4080. currfile: Provide file name and path of input files.
  4081. currvita: Typeset a curriculum vitae.
  4082. cutwin: Cut a window in a paragraph, typeset material in it.
  4083. cv: A package for creating a curriculum vitae.
  4084. cv4tw: LaTeX CV class, with extended details.
  4085. cweb-latex: A LaTeX version of CWEB.
  4086. cyber: Annotate compliance with cybersecurity requirements.
  4087. cybercic: "Controls in Contents" for the cyber package.
  4088. dashbox: Draw dashed boxes.
  4089. dashrule: Draw dashed rules.
  4090. dashundergaps: Underline with dotted or dashed lines.
  4091. dataref: Manage references to experimental data
  4092. datatool: Tools to load and manipulate data.
  4093. dateiliste: Extensions of the listfiles concept.
  4094. datenumber: Convert a date into a number and vice versa.
  4095. datetime: Change format of today with commands for current time.
  4096. datetime2: Formats for dates, times and time zones
  4097. datetime2-bahasai: Bahasai language module for the datetime2 package.
  4098. datetime2-basque: Basque language module for the datetime2 package
  4099. datetime2-breton: breton language module for the datetime2 package.
  4100. datetime2-bulgarian: Bulgarian language module for the datetime2 package.
  4101. datetime2-catalan: catalan language module for the datetime2 package.
  4102. datetime2-croatian: croatian language module for the datetime2 package.
  4103. datetime2-czech: czech language module for the datetime2 package.
  4104. datetime2-danish: danish language module for the datetime2 package.
  4105. datetime2-dutch: dutch language module for the datetime2 package.
  4106. datetime2-en-fulltext: English Full Text styles for the datetime2 package.
  4107. datetime2-english: English language module for the datetime2 package.
  4108. datetime2-esperanto: Esperanto language module for the datetime2 package.
  4109. datetime2-estonian: Estonian language module for the datetime2 package.
  4110. datetime2-finnish: Finnish language module for the datetime2 package.
  4111. datetime2-french: French language module for the datetime2 package.
  4112. datetime2-galician: galician language module for the datetime2 package.
  4113. datetime2-german: German language module for the datetime2 package.
  4114. datetime2-greek: Greek language module for the datetime2 package.
  4115. datetime2-hebrew: Hebrew language module for the datetime2 package.
  4116. datetime2-icelandic: Icelandic language module for the datetime2 package.
  4117. datetime2-irish: Irish Gaelic Language Module for the datetime2 Package.
  4118. datetime2-italian: Italian language module for the datetime2 package.
  4119. datetime2-it-fulltext: Italian full text styles for the datetime2 package
  4120. datetime2-latin: Latin language module for the datetime2 package.
  4121. datetime2-lsorbian: Lower Sorbian language module for the datetime2 package.
  4122. datetime2-magyar: magyar language module for the datetime2 package.
  4123. datetime2-norsk: Norsk language module for the datetime2 package.
  4124. datetime2-polish: polish language module for the datetime2 package.
  4125. datetime2-portuges: Portuguese language module for the datetime2 package.
  4126. datetime2-romanian: Romanian language module for the datetime2 package.
  4127. datetime2-russian: russian language module for the datetime2 package.
  4128. datetime2-samin: Northern Sami language module for the datetime2 package.
  4129. datetime2-scottish: Scottish Gaelic Language Module for the datetime2 Package.
  4130. datetime2-serbian: serbian language module for the datetime2 package.
  4131. datetime2-slovak: slovak language module for the datetime2 package.
  4132. datetime2-slovene: slovene language module for the datetime2 package.
  4133. datetime2-spanish: Spanish language module for the datetime2 package.
  4134. datetime2-swedish: swedish language module for the datetime2 package.
  4135. datetime2-turkish: turkish language module for the datetime2 package.
  4136. datetime2-ukrainian: Ukrainian language module for the datetime2 package.
  4137. datetime2-usorbian: Upper Sorbian language module for the datetime2 package.
  4138. datetime2-welsh: Welsh language module for the datetime2 package.
  4139. dblfloatfix: Fixes for twocolumn floats.
  4140. decimal: LaTeX package for the English raised decimal point.
  4141. decorule: Decorative swelled rule using font character.
  4142. delimtxt: Read and parse text tables.
  4143. denisbdoc: A personal dirty package for documenting packages
  4144. diagbox: Table heads with diagonal lines.
  4145. diagnose: A diagnostic tool for a TeX installation.
  4146. dialogl: Macros for constructing interactive LaTeX scripts.
  4147. dichokey: Construct dichotomous identification keys.
  4148. dinbrief: German letter DIN style.
  4149. directory: An address book using BibTeX.
  4150. dirtytalk: A package to typeset quotations easier.
  4151. dlfltxb: Macros related to "Introdktion til LaTeX".
  4152. dnaseq: Format DNA base sequences.
  4153. doclicense: Support for putting documents under a license
  4154. docmfp: Document non-LaTeX code.
  4155. docmute: Input files ignoring LaTeX preamble, etc.
  4156. doctools: Tools for the documentation of LaTeX code.
  4157. documentation: Documentation support for C, Java and assembler code.
  4158. doi: Create correct hyperlinks for DOI numbers.
  4159. dotarrow: Extendable dotted arrows.
  4160. dotseqn: Flush left equations with dotted leaders to the numbers.
  4161. download: Allow LaTeX to download files using an external process.
  4162. dox: Extend the doc package.
  4163. dpfloat: Support for double-page floats.
  4164. dprogress: LaTeX-relevant log information for debugging.
  4165. drac: Declare active character substitution, robustly.
  4166. draftcopy: Identify draft copies.
  4167. draftwatermark: Put a grey textual watermark on document pages.
  4168. dtk: Document class for the journal of DANTE.
  4169. dtxgallery: A small collection of minimal DTX examples.
  4170. dvdcoll: A class for typesetting DVD archives
  4171. dynamicnumber: Dynamically typeset numbers and values in LaTeX through "symbolic links"
  4172. dynblocks: A simple way to create dynamic blocks for Beamer.
  4173. ean13isbn: Print EAN13 for ISBN.
  4174. easy: A collection of easy-to-use macros.
  4175. easy-todo: To-do notes in a document.
  4176. easyfig: Simplifying the use of common figures.
  4177. easylist: Lists using a single active character.
  4178. easyreview: Package to provide a way to review (or perform editorial process) in LaTeX
  4179. ebezier: Device independent picture environment enhancement.
  4180. ecclesiastic: Typesetting Ecclesiastic Latin
  4181. ecv: A fancy Curriculum Vitae class.
  4182. ed: Editorial Notes for LaTeX documents.
  4183. edmargin: Multiple series of endnotes for critical editions.
  4184. eemeir: Adjust the gender of words in a document.
  4185. efbox: Extension of fbox, with controllable frames and colours.
  4186. egplot: Encapsulate Gnuplot sources in LaTeX documents.
  4187. elements: Provides properties of chemical elements
  4188. ellipsis: Fix uneven spacing around ellipses in LaTeX text mode.
  4189. elmath: Mathematics in Greek texts.
  4190. elocalloc: Local allocation macros for LaTeX 2015.
  4191. elpres: A simple class for electronic presentations
  4192. elzcards: Typeset business cards, index cards and flash cards easyly.
  4193. emarks: Named mark registers with e-TeX.
  4194. embedall: Embed source files into the generated PDF.
  4195. embrac: Upright brackets in emphasised text
  4196. emptypage: Make empty pages really empty.
  4197. emulateapj: Produce output similar to that of APJ.
  4198. endfloat: Move floats to the end, leaving markers where they belong.
  4199. endheads: Running headers of the form "Notes to pp.xx-yy"
  4200. endnotes: Place footnotes at the end.
  4201. engpron: Helps to type the pronunciation of English words.
  4202. engrec: Enumerate with lower- or uppercase Greek letters.
  4203. enotez: Support for end-notes
  4204. enumitem: Control layout of itemize, enumerate, description.
  4205. enumitem-zref: Extended references to items for enumitem package.
  4206. envbig: Printing addresses on envelopes.
  4207. environ: A new interface for environments in LaTeX.
  4208. envlab: Addresses on envelopes or mailing labels.
  4209. epigraph: A package for typesetting epigraphs.
  4210. epiolmec: Typesetting the Epi-Olmec Language.
  4211. epyt: A simple and clean theme for LaTeX beamer class.
  4212. eqell: Sympathetically spaced ellipsis after punctuation.
  4213. eqlist: Description lists with equal indentation.
  4214. eqname: Name tags for equations.
  4215. eqparbox: Create equal-widthed parboxes.
  4216. errata: Error markup for LaTeX documents.
  4217. esami: Typeset exams with scrambled questions and answers.
  4218. esdiff: Simplify typesetting of derivatives.
  4219. esint: Extended set of integrals for Computer Modern.
  4220. esint-type1: Font esint10 in Type 1 format
  4221. etaremune: Reverse-counting enumerate environment.
  4222. etextools: e-TeX tools for LaTeX users and package writers.
  4223. etoc: Completely customisable TOCs
  4224. etoolbox: e-TeX tools for LaTeX
  4225. eukdate: UK format dates, with weekday.
  4226. europasscv: Unofficial class for the new version of the Europass curriculum vitae
  4227. europecv: Unofficial class for European curricula vitae.
  4228. everyhook: Hooks for standard TeX token lists.
  4229. everypage: Provide hooks to be run on every page of a document.
  4230. exam: Package for typesetting exam scripts.
  4231. exam-n: Exam class, focused on collaborative authoring.
  4232. examdesign: LaTeX class for typesetting exams.
  4233. example: Typeset examples for TeX courses.
  4234. examplep: Verbatim phrases and listings in LaTeX.
  4235. exceltex: Get data from Excel files into LaTeX.
  4236. excludeonly: Prevent files being include-ed.
  4237. exercise: Typeset exercises, problems, etc. and their answers
  4238. exercises: Typeset exercises and solutions with automatic addition of points
  4239. exp-testopt: Expandable @testopt (and related) macros.
  4240. expdlist: Expanded description environments.
  4241. export: Import and export values of LaTeX registers.
  4242. exsheets: Create exercise sheets and exams
  4243. exsol: Exercises and solutions from the same source, into a book.
  4244. extract: Extract parts of a document and write to another document.
  4245. facsimile: Document class for preparing faxes.
  4246. factura: Typeset and calculate invoices according to Venezuelan law
  4247. fancylabel: Complex labelling with LaTeX.
  4248. fancynum: Typeset numbers.
  4249. fancypar: Decoration of individual paragraphs.
  4250. fancyslides: Custom presentation class built upon LaTeX Beamer.
  4251. fancytabs: Fancy page border tabs.
  4252. fancytooltips: Include a wide range of material in PDF tooltips.
  4253. fcolumn: Typesetting financial tables
  4254. ffslides: Freeform slides based on the article class
  4255. fibeamer: Beamer theme for thesis defense presentations at Masaryk University (Brno, Czech Republic)
  4256. fifo-stack: FIFO and stack implementation for package writers
  4257. figsize: Auto-size graphics.
  4258. filecontents: Extended filecontents and filecontents* environments
  4259. filedate: Access and compare info and modification dates.
  4260. filehook: Hooks for input files.
  4261. fileinfo: Enhanced display of LaTeX File Information.
  4262. filemod: Provide file modification times, and compare them.
  4263. fink: The LaTeX2e File Name Keeper.
  4264. finstrut: Adjust behaviour of the ends of footnotes.
  4265. fithesis: Thesis class and template for Masaryk University (Brno, Czech Republic)
  4266. fixcmex: Fully scalable version of Computer Modern Math Extension font
  4267. fixfoot: Multiple use of the same footnote text.
  4268. fixme: Insert "fixme" notes into draft documents.
  4269. fixmetodonotes: Add notes on document development.
  4270. fjodor: A selection of layout styles.
  4271. flabels: Labels for files and folders.
  4272. flacards: Generate flashcards for printing.
  4273. flagderiv: Flag style derivation package
  4274. flashcards: A class for typesetting flashcards.
  4275. flashmovie: Directly embed flash movies into PDF files.
  4276. flipbook: Typeset flipbook animations, in the corners of documents.
  4277. flippdf: Horizontal flipping of pages with pdfLaTeX.
  4278. floatflt: Wrap text around floats.
  4279. floatrow: Modifying the layout of floats.
  4280. flowfram: Create text frames for posters, brochures or magazines.
  4281. fmp: Include Functional MetaPost in LaTeX.
  4282. fmtcount: Display the value of a LaTeX counter in a variety of formats.
  4283. fn2end: Convert footnotes to endnotes.
  4284. fnbreak: Warn for split footnotes.
  4285. fncychap: Seven predefined chapter heading styles.
  4286. fncylab: Alter the format of label references.
  4287. fnpara: Footnotes in paragraphs.
  4288. fnpct: Manage footnote marks' interaction with punctuation.
  4289. fnumprint: Print a number in 'appropriate' format.
  4290. foilhtml: Interface between foiltex and LaTeX2HTML.
  4291. fontaxes: Additional font axes for LaTeX.
  4292. fonttable: Print font tables from a LaTeX document.
  4293. footmisc: A range of footnote options.
  4294. footnotebackref: Back-references from footnotes.
  4295. footnoterange: References to ranges of footnotes.
  4296. footnpag: Per-page numbering of footnotes.
  4297. forarray: Using array structures in LaTeX.
  4298. foreign: Systematic treatment of 'foreign' words in documents.
  4299. forloop: Iteration in LaTeX.
  4300. formlett: Letters to multiple recipients.
  4301. formular: Create forms containing field for manual entry.
  4302. fragments: Fragments of LaTeX code.
  4303. frame: Framed boxes for Plain TeX.
  4304. framed: Framed or shaded regions that can break across pages.
  4305. frankenstein: A collection of LaTeX packages.
  4306. frege: Typeset fregean Begriffsschrift.
  4307. ftcap: Allows caption at the beginning of a table-environment.
  4308. ftnxtra: Extend the applicability of the footnote command.
  4309. fullblck: Left-blocking for letter class.
  4310. fullminipage: Minipage spanning a complete page
  4311. fullwidth: Adjust margins of text block.
  4312. fundus-calligra: Support for the calligra font in LaTeX documents.
  4313. fundus-cyr: Support for Washington University Cyrillic fonts.
  4314. fundus-sueterlin: Sutterlin
  4315. fwlw: Get first and last words of a page.
  4316. g-brief: Letter document class.
  4317. gauss: A package for Gaussian operations.
  4318. gcard: Arrange text on a sheet to fold into a greeting card.
  4319. gcite: Citations in a reader-friendly style.
  4320. gender: Gender neutrality for languages with grammatical gender.
  4321. genmpage: Generalization of LaTeX's minipages.
  4322. getfiledate: Find the date of last modification of a file.
  4323. ginpenc: Modification of inputenc for German.
  4324. gitinfo: Access metadata from the git distributed version control system.
  4325. gitinfo2: Access metadata from the git distributed version control system
  4326. gitlog: Typesetting git changelogs
  4327. gloss: Create glossaries using BibTeX.
  4328. glossaries: Create glossaries and lists of acronyms
  4329. glossaries-danish: Danish language module for glossaries package
  4330. glossaries-dutch: Dutch language module for glossaries package
  4331. glossaries-english: English language module for glossaries package
  4332. glossaries-french: French language module for glossaries package
  4333. glossaries-german: German language module for glossaries package
  4334. glossaries-irish: Irish language module for glossaries package
  4335. glossaries-italian: Italian language module for glossaries package
  4336. glossaries-magyar: Magyar language module for glossaries package
  4337. glossaries-polish: Polish language module for glossaries package
  4338. glossaries-portuges: Portuges language module for glossaries package.
  4339. glossaries-serbian: Serbian language module for glossaries package.
  4340. glossaries-spanish: Spanish language module for glossaries package.
  4341. gmdoc: Documentation of LaTeX packages.
  4342. gmdoc-enhance: Some enhancements to the gmdoc package.
  4343. gmiflink: Simplify usage of hypertarget and hyperlink.
  4344. gmutils: Support macros for other packages.
  4345. gmverb: A variant of LaTeX verb, verbatim and shortvrb.
  4346. graphbox: Extend graphicx to improve placement of graphics.
  4347. graphicx-psmin: Reduce size of PostScript files by not repeating images.
  4348. graphicxbox: Insert a graphical image as a background.
  4349. grfpaste: Include fragments of a dvi file.
  4350. grid: Grid typesetting in LaTeX.
  4351. grid-system: Page organisation, modelled on CSS facilities.
  4352. gridset: Grid, a.k.a. in-register, setting.
  4353. guitlogo: Macros for typesetting the GuIT logo.
  4354. handout: Create handout for auditors of a talk
  4355. hang: Environments for hanging paragraphs and list items.
  4356. hanging: Hanging paragraphs.
  4357. hardwrap: Hard wrap text to a certain character length.
  4358. harnon-cv: A CV document class with a vertical timeline for experience.
  4359. harpoon: Extra harpoons, using the graphics package.
  4360. hc: Replacement for the LaTeX classes.
  4361. he-she: Alternating pronouns to aid gender-neutral writing.
  4362. hhtensor: Print vectors, matrices, and tensors.
  4363. histogr: Draw histograms with the LaTeX picture environment.
  4364. hitec: Class for documentation.
  4365. hletter: Flexible letter typesetting with flexible page headings.
  4366. hpsdiss: A dissertation class.
  4367. hrefhide: Suppress hyper links when printing.
  4368. hvindex: Support for indexing.
  4369. hypdvips: Hyperref extensions for use with dvips.
  4370. hyper: Hypertext cross referencing.
  4371. hypernat: Allow hyperref and natbib to work together.
  4372. hyperref-docsrc:
  4373. hyperxmp: Embed XMP metadata within a LaTeX document.
  4374. hyphenat: Disable/enable hypenation.
  4375. idxcmds: Semantic commands for adding formatted index entries
  4376. idxlayout: Configurable index layout, responsive to KOMA-Script and memoir.
  4377. iffont: Conditionally load fonts with fontspec
  4378. ifmslide: Presentation slides for screen and printouts.
  4379. ifmtarg: If-then-else command for processing potentially empty arguments.
  4380. ifnextok: Utility macro: peek ahead without ignoring spaces.
  4381. ifoddpage: Determine if the current page is odd or even.
  4382. ifplatform: Conditionals to test which platform is being used.
  4383. ifthenx: Extra tests for ifthenelse.
  4384. iitem: Multiple level of lists in one list-like environment.
  4385. image-gallery: Create an overview of pictures from a digital camera or from other sources.
  4386. imakeidx: A package for producing multiple indexes.
  4387. import: Establish input relative to a directory.
  4388. incgraph: Sophisticated graphics inclusion in a PDF document.
  4389. indextools: Producing multiple indices
  4390. inlinedef: Inline expansions within definitions.
  4391. inputtrc: Trace which file loads which.
  4392. interactiveworkbook: LaTeX-based interactive PDF on the Web.
  4393. interfaces: Set parameters for other packages, conveniently.
  4394. inversepath: Calculate inverse file paths.
  4395. invoice: Generate invoices.
  4396. iso: Generic ISO standards typesetting macros.
  4397. iso10303: Typesetting the STEP standards.
  4398. isodate: Tune the output format of dates according to language.
  4399. isodoc: A LaTeX class for typesetting letters and invoices.
  4400. isonums: Display numbers in maths mode according to ISO 31-0.
  4401. isorot: Rotation of document elements.
  4402. isotope: A package for typesetting isotopes
  4403. issuulinks: Produce external links instead of internal ones.
  4404. iwhdp: Halle Institute for Economic Research (IWH) Discussion Papers.
  4405. jlabels: Make letter-sized pages of labels.
  4406. jslectureplanner: Creation and management of university course material.
  4407. jumplines: Articles with teasers and continuation later on.
  4408. jvlisting: A replacement for LaTeX's verbatim package.
  4409. kantlipsum: Generate sentences in Kant's style.
  4410. kerntest: Print tables and generate control files to adjust kernings.
  4411. keycommand: Simple creation of commands with key-value arguments.
  4412. keyreader: A robust interface to xkeyval.
  4413. keystroke: Graphical representation of keys on keyboard.
  4414. keyval2e: A lightweight and robust key-value parser.
  4415. kix: Typeset KIX codes.
  4416. koma-moderncvclassic: Makes the style and command of moderncv (style classic) available for koma-classes and thus compatible with biblatex.
  4417. koma-script-sfs: Koma-script letter class option for Finnish.
  4418. komacv: Typesetting a beuatiful CV with various style options.
  4419. ktv-texdata: Extract subsets of documents.
  4420. l3build: A testing and building system for (La)TeX
  4421. labbook: Typeset laboratory journals.
  4422. labelcas: Check the existence of labels, and fork accordingly.
  4423. labels: Print sheets of sticky labels.
  4424. lastpackage: Indicates the last loaded package.
  4425. lastpage: Reference last page for Page N of M type footers.
  4426. latex-tds: A structured copy of the LaTeX distribution.
  4427. latexdemo: Demonstrate LaTeX code with its resulting output.
  4428. layouts: Display various elements of a document's layout.
  4429. lazylist: Lists in TeX's "mouth".
  4430. lcd: Alphanumerical LCD-style displays.
  4431. lcg: Generate random integers.
  4432. leading: Define leading with a length.
  4433. leaflet: Create small handouts (flyers).
  4434. leftidx: Left and right subscripts and superscripts in math mode.
  4435. lengthconvert: Express lengths in arbitrary units.
  4436. lettre: Letters and faxes in French.
  4437. lettrine: Typeset dropped capitals
  4438. lewis: Draw Lewis structures.
  4439. lhelp: Miscellaneous helper packages.
  4440. libgreek: Use Libertine or Biolinum Greek glyphs in mathematics.
  4441. limap: Typeset maps and blocks according to the Information Mapping method.
  4442. linegoal: A "dimen" that returns the space left on the line.
  4443. lipsum: Easy access to the Lorem Ipsum dummy text.
  4444. lisp-on-tex: Execute LISP code in a LaTeX document
  4445. listing: Produce formatted program listings.
  4446. listlbls: Creates a list of all labels used throughout a document
  4447. listliketab: Typeset lists as tables.
  4448. listofsymbols: Create and manipulate lists of symbols
  4449. lkproof: LK Proof figure macros.
  4450. lmake: Process lists to do repetitive actions.
  4451. locality: Various macros for keeping things local.
  4452. localloc: Macros for localizing TeX register allocations.
  4453. logbox: e-TeX showbox facilities for exploration purposes.
  4454. logical-markup-utils: Packages for language-dependent inline quotes and dashes.
  4455. logpap: Generate logarithmic graph paper with LaTeX.
  4456. longfbox: Draw framed boxes with standard CSS attributes that can break over multiple pages
  4457. longfigure: Provides a figure-like environment that break over pages.
  4458. longnamefilelist: Tidy listfiles with long file names.
  4459. loops: General looping macros for use with LaTeX.
  4460. lsc: Typesetting Live Sequence Charts.
  4461. lstaddons: Add-on packages for listings: autogobble and line background.
  4462. lt3graph: Provide a graph datastructure for experimental LaTeX3.
  4463. ltablex: Table package extensions.
  4464. ltabptch: Bug fix for longtable.
  4465. ltxdockit: Documentation support.
  4466. ltxindex: A LaTeX package to typeset indices with GNU's Texindex.
  4467. ltxkeys: A robust key parser for LaTeX.
  4468. ltxnew: A simple means of creating commands.
  4469. ltxtools: A collection of LaTeX API macros.
  4470. macroswap: Swap the definitions of two LaTeX macros.
  4471. magaz: Magazine layout.
  4472. mailing: Macros for mail merging.
  4473. mailmerge: Repeating text field substitution.
  4474. makebarcode: Print various kinds 2/5 and Code 39 bar codes.
  4475. makebox: Defines a makebox* command.
  4476. makecell: Tabular column heads and multilined cells.
  4477. makecirc: A MetaPost library for drawing electrical circuit diagrams.
  4478. makecmds: The new makecommand command always (re)defines a command.
  4479. makedtx: Perl script to help generate dtx and ins files
  4480. makeglos: Include a glossary into a document.
  4481. mandi: Macros for introductory physics and astronomy.
  4482. manfnt: LaTeX support for the TeX book symbols.
  4483. manuscript: Emulate look of a document typed on a typewriter.
  4484. marginfix: Patch marginpar to avoid overfull margins.
  4485. marginnote: Notes in the margin, even where marginpar fails
  4486. mathalfa: General package for loading maths alphabets in LaTeX.
  4487. mathastext: Use the text font in maths mode
  4488. mathexam: Package for typesetting exams.
  4489. maybemath: Make math bold or italic according to context.
  4490. mbenotes: Notes in tables or images.
  4491. mcaption: Put captions in the margin.
  4492. mceinleger: Creating covers for music cassettes.
  4493. mcite: Multiple items in a single citation.
  4494. mciteplus: Enhanced multiple citations.
  4495. mdframed: Framed environments that can split at page boundaries.
  4496. media9: Multimedia inclusion package with Adobe Reader-9/X compatibility
  4497. medstarbeamer: Beamer document class for MedStar Health Research Institute
  4498. meetingmins: Format written minutes of meetings.
  4499. memexsupp: Experimental memoir support.
  4500. memory: Containers for data in LaTeX.
  4501. menu: Typesetting menus.
  4502. menukeys: Format menu sequences, paths and keystrokes from lists.
  4503. method: Typeset method and variable declarations.
  4504. metre: Support for the work of classicists
  4505. mfirstuc: Uppercase the first letter of a word
  4506. mftinc: Pretty-print Metafont source.
  4507. midpage: Environment for vertical centring.
  4508. minibox: A simple type of box for LaTeX.
  4509. minifp: Fixed-point real computations to 8 decimals.
  4510. minipage-marginpar: Minipages with marginal notes.
  4511. minitoc: Produce a table of contents for each chapter, part or section.
  4512. minorrevision: Quote and refer to a manuscript for minor revisions.
  4513. minted: Highlighted source code for LaTeX
  4514. minutes: Typeset the minutes of meetings.
  4515. mla-paper: Proper MLA formatting.
  4516. mlist: Logical markup for lists.
  4517. mmap: Include CMap resources in PDF files from PDFTeX.
  4518. mnotes: Margin annotation for collaborative writing.
  4519. moderncv: A modern curriculum vitae class.
  4520. moderntimeline: Timelines for use with moderncv
  4521. modref: Customisation of cross-references in LaTeX.
  4522. modroman: Write numbers in lower case roman numerals.
  4523. monofill: Alignment of plain text.
  4524. moreenum: More enumeration options.
  4525. morefloats: Increase the number of simultaneous LaTeX floats.
  4526. morehype: Hypertext tools for use with LaTeX
  4527. moresize: Allows font sizes up to 35.83pt.
  4528. moreverb: Extended verbatim.
  4529. morewrites: Always room for a new write stream.
  4530. movie15: Multimedia inclusion package.
  4531. mparhack: Work around a LaTeX bug in marginpars.
  4532. msc: Draw MSC diagrams.
  4533. msg: A package for LaTeX localisation.
  4534. mslapa: Michael Landy's APA citation style.
  4535. mtgreek: Use italic and upright greek letters with mathtime.
  4536. multenum: Multi-column enumerated lists.
  4537. multiaudience: Several versions of output from the same source
  4538. multibbl: Multiple bibliographies.
  4539. multicap: Format captions inside multicols
  4540. multienv: Multiple environments using a "key=value" syntax.
  4541. multiexpand: Variations on the primitive command expandafter
  4542. multirow: Create tabular cells spanning multiple rows.
  4543. mversion: Keeping track of document versions.
  4544. mwe: Packages and image files for MWEs.
  4545. mweights: Support for multiple-weight font packages.
  4546. mycv: A list-driven CV class, allowing TikZ decorations.
  4547. mylatexformat: Build a format based on the preamble of a LaTeX file.
  4548. nag: Detecting and warning about obsolete LaTeX commands
  4549. nameauth: Name authority mechanism for consistency in body text and index
  4550. namespc: Rudimentary C++-like namespaces in LaTeX.
  4551. ncclatex: An extended general-purpose class
  4552. ncctools: A collection of general packages for LaTeX
  4553. needspace: Insert pagebreak if not enough space.
  4554. nestquot: Alternate quotes between double and single with nesting.
  4555. newcommand: Generate new LaTeX command definitions.
  4556. newenviron: Processing an environment's body.
  4557. newfile: User level management of LaTeX input and output.
  4558. newlfm: Write letters, facsimiles, and memos.
  4559. newspaper: Typeset newsletters to resemble newspapers.
  4560. newunicodechar: Definitions of the meaning of Unicode characters.
  4561. newvbtm: Define your own verbatim-like environment.
  4562. newverbs: Define new versions of verb, including short verb versions.
  4563. nextpage: Generalisations of the page advance commands.
  4564. nfssext-cfr: Extensions to the LaTeX NFSS.
  4565. nicefilelist: Provide listfiles alignment.
  4566. niceframe: Support for fancy frames.
  4567. nicetext: Minimal markup for simple text (Wikipedia style) and documentation
  4568. nlctdoc: Package documentation class.
  4569. noconflict: Resolve macro name conflict between packages.
  4570. noindentafter: Tool to prevent paragraph indentation after environments/macros.
  4571. noitcrul: Improved underlines in mathematics.
  4572. nolbreaks: No line breaks in text.
  4573. nomencl: Produce lists of symbols as in nomenclature.
  4574. nomentbl: Nomenclature typeset in a longtable
  4575. nonfloat: Non-floating table and figure captions.
  4576. nonumonpart: Prevent page numbers on part pages.
  4577. nopageno: No page numbers in LaTeX documents.
  4578. notes: Mark sections of a document.
  4579. notoccite: Prevent trouble from citations in table of contents, etc.
  4580. nowidow: Avoid widows.
  4581. nox: Adaptable tables.
  4582. ntheorem: Enhanced theorem environment.
  4583. numberedblock: Print a block of code, with unique index number.
  4584. numname: Convert a number to its English expression.
  4585. numprint: Print numbers with separators and exponent if necessary.
  4586. ocg-p: PDF OCG support in LaTeX.
  4587. ocgx: Use OCGs within a PDF document without JavaScript.
  4588. ocgx2: Drop-in replacement for the 'ocgx' package; adds support for dvips+ps2pdf, XeLaTeX, dvipdfmx
  4589. ocr-latex: LaTeX support for ocr fonts.
  4590. octavo: Typeset books following classical design and layout.
  4591. oldstyle: Old style numbers in OT1 encoding.
  4592. onlyamsmath: Inhibit use of non-amsmath mathematics markup when using amsmath.
  4593. opcit: Footnote-style bibliographical references.
  4594. optional: Facilitate optional printing of parts of a document.
  4595. options: Provides convenient key-value options for LaTeX package writers
  4596. outline: List environment for making outlines.
  4597. outliner: Change section levels easily.
  4598. outlines: Produce "outline" lists.
  4599. overpic: Combine LaTeX commands over included graphics.
  4600. pagecolor: Interrogate page colour
  4601. pagecont: Page numbering that continues between documents.
  4602. pagenote: Notes at end of document.
  4603. pagerange: Flexible and configurable page range typesetting.
  4604. pageslts: Variants of last page labels
  4605. paper: Versions of article class, tuned for scholarly publications.
  4606. papercdcase: Origami-style folding paper CD case.
  4607. papermas: Compute the mass of a printed version of a document.
  4608. papertex: Class for newspapers, etc.
  4609. paracol: Multiple columns with texts "in parallel"
  4610. paralist: Enumerate and itemize within paragraphs
  4611. paresse: Define simple macros for greek letters.
  4612. parnotes: Notes after every paragraph (or elsewhere).
  4613. parselines: Apply a macro to each line of an environment.
  4614. pas-cours: Macros useful in preparing teaching material.
  4615. pas-cv: Flexible typesetting of Curricula Vitae.
  4616. pas-tableur: Create a spreadsheet layout.
  4617. patch: Patch loaded packages, etc..
  4618. patchcmd: Change the definition of an existing command.
  4619. pauldoc: German LaTeX package documentation.
  4620. pawpict: Using graphics from PAW.
  4621. pax: Extract and reinsert PDF annotations with pdfTeX.
  4622. pbox: A variable-width parbox command.
  4623. pbsheet: Problem sheet class.
  4624. pdf14: Restore PDF 1.4 to a TeX live 2010 format.
  4625. pdfcomment: A user-friendly interface to pdf annotations.
  4626. pdfcprot: Activating and setting of character protruding using pdflatex.
  4627. pdfmarginpar: Generate marginpar-equivalent PDF annotations.
  4628. pdfpagediff: Find difference between two PDF's
  4629. pdfscreen: Support screen-based document design.
  4630. pdfslide: Presentation slides using pdftex.
  4631. pdfsync: Provide links between source and PDF.
  4632. pdfwin:
  4633. pdfx: PDF/X-1a and PDF/A-1b support for pdfTeX.
  4634. pecha: Print Tibetan text in the classic pecha layout style.
  4635. perltex: Define LaTeX macros in terms of Perl code
  4636. permute: Support for symmetric groups.
  4637. petiteannonce: A class for small advertisements.
  4638. philex: Cross references for named and numbered environments.
  4639. photo: A float environment for photographs.
  4640. piff: Macro tools by Mike Piff.
  4641. pkgloader: Managing the options and loading order of other packages.
  4642. placeins: Control float placement.
  4643. plantslabels: Write labels for plants.
  4644. plates: Arrange for "plates" sections of documents.
  4645. plweb: Literate Programming for Prolog with LaTeX.
  4646. polynom: Macros for manipulating polynomials.
  4647. polynomial: Typeset (univariate) polynomials.
  4648. polytable: Tabular-like environments with named columns.
  4649. postcards: Facilitates mass-mailing of postcards (junkmail).
  4650. poster-mac: Make posters and banners with TeX.
  4651. ppr-prv: Prosper preview.
  4652. preprint: A bundle of packages provided "as is".
  4653. pressrelease: A class for typesetting press releases.
  4654. prettyref: Make label references "self-identify".
  4655. preview: Extract bits of a LaTeX source for output
  4656. printlen: Print lengths using specified units.
  4657. probsoln: Generate problem sheets and their solution sheets.
  4658. program: Typesetting programs and algorithms.
  4659. progress: Creates an overview of a document's state.
  4660. progressbar: Visualize shares of total amounts in the form of a (progress-)bar.
  4661. proofread: Commands for inserting annotations
  4662. properties: Load properties from a file.
  4663. prosper: LaTeX class for high quality slides.
  4664. protex: Literate programming package.
  4665. protocol: A class for minutes of meetings.
  4666. psfragx: A psfrag eXtension.
  4667. pst-pdf: Make PDF versions of graphics by processing between runs.
  4668. pstool: Support for psfrag within pdfLaTeX.
  4669. pxgreeks: Shape selection for PX fonts Greek letters.
  4670. python: Embed Python code in LaTeX.
  4671. qcm: A LaTeX2e class for making multiple choice questionnaires
  4672. qstest: Bundle for unit tests and pattern matching.
  4673. qsymbols: Maths symbol abbreviations.
  4674. quotchap: Decorative chapter headings.
  4675. quoting: Consolidated environment for displayed text.
  4676. quotmark: Consistent quote marks.
  4677. ran_toks: Randomise token strings.
  4678. randtext: Randomise the order of characters in strings.
  4679. rccol: Decimal-centered optionally rounded numbers in tabular.
  4680. rcs-multi: Typeset RCS version control in multiple-file documents.
  4681. rcsinfo: Support for the revision control system.
  4682. readarray: Read, store and recall array-formatted data.
  4683. realboxes: Variants of common box-commands that read their content as real box and not as macro argument.
  4684. recipe: A LaTeX class to typeset recipes.
  4685. recipebook: Typeset 5.5" x 8" recipes for browsing or printing.
  4686. recipecard: Typeset recipes in note-card-sized boxes.
  4687. rectopma: Recycle top matter.
  4688. refcheck: Check references (in figures, table, equations, etc).
  4689. refenums: Define reference labels items with names of their own.
  4690. reflectgraphics: Techniques for reflecting graphics.
  4691. refman: Format technical reference manuals.
  4692. refstyle: Advanced formatting of cross references.
  4693. regcount: Display the allocation status of the TeX registers.
  4694. regexpatch: High level patching of commands.
  4695. register: Typeset programmable elements in digital hardware (registers).
  4696. regstats: Information about register use.
  4697. relenc: A "relaxed" font encoding.
  4698. relsize: Set the font size relative to the current font size.
  4699. repeatindex: Repeat items in an index after a page or column break
  4700. repltext: Control how text gets copied from a PDF file.
  4701. rjlparshap: Support for use of parshape in LaTeX.
  4702. rlepsf: Rewrite labels in EPS graphics.
  4703. rmpage: A package to help change page layout parameters in LaTeX.
  4704. robustcommand: Declare robust command, with newcommand checks.
  4705. robustindex: Create index with pagerefs.
  4706. romanbar: Write roman number with "bars".
  4707. romanbarpagenumber: Typesetting roman page numbers.
  4708. romanneg: Roman page numbers negative.
  4709. romannum: Generate roman numerals instead of arabic digits.
  4710. rotfloat: Rotate floats.
  4711. rotpages: Typeset sets of pages upside-down and backwards.
  4712. roundbox: Round boxes in LaTeX.
  4713. rterface: Access to R analysis from within a document.
  4714. rtkinenc: Input encoding with fallback procedures.
  4715. rulercompass: A TikZ library for straight-edge and compass diagrams.
  4716. rvwrite: Increase the number of available output streams in LaTeX.
  4717. sauerj: A bundle of utilities by Jonathan Sauer.
  4718. savefnmark: Save name of the footnote mark for reuse.
  4719. savesym: Redefine symbols where names conflict.
  4720. savetrees: Optimise the use of each page of a LaTeX document.
  4721. scale: Scale document by sqrt(2) or magstep(2).
  4722. scalebar: Create scalebars for maps, diagrams or photos.
  4723. scalerel: Constrained scaling and stretching of objects.
  4724. scanpages: Support importing and embellishing scanned documents.
  4725. sdrt: Macros for Segmented Discourse Representation Theory.
  4726. secdot: Section numbers with trailing dots.
  4727. sectionbox: Create fancy boxed ((sub)sub)sections.
  4728. sectsty: Control sectional headers.
  4729. seealso: Improve the performance of see macros with makeindex.
  4730. selectp: Select pages to be output.
  4731. semantic: Help for writing programming language semantics.
  4732. semioneside: Put only special contents on left-hand pages in two sided layout.
  4733. semproc: Seminar proceedings
  4734. sepfootnotes: Support footnotes and endnotes from separate files.
  4735. seqsplit: Split long sequences of characters in a neutral way.
  4736. sf298: Standard form 298.
  4737. sffms: Typesetting science fiction/fantasy manuscripts.
  4738. sfmath: Sans-serif mathematics.
  4739. shadethm: Theorem environments that are shaded
  4740. shadow: Shadow boxes.
  4741. shadowtext: shadowtext
  4742. shapepar: A macro to typeset paragraphs in specific shapes.
  4743. shdoc: Float environment to document the shell commands of a terminal session
  4744. shipunov: A collection of LaTeX packages and classes.
  4745. shorttoc: Table of contents with different depths.
  4746. show2e: Variants of show for LaTeX2e.
  4747. showcharinbox: Show characters inside a box.
  4748. showdim: Variants on printing dimensions.
  4749. showexpl: Typesetting LaTeX source code.
  4750. showlabels: Show label commands in the margin
  4751. sidecap: Typeset captions sideways.
  4752. sidenotes: Typeset notes containing rich content, in the margin.
  4753. silence: Selective filtering of error messages and warnings.
  4754. simplecd: Simple CD, DVD covers for printing.
  4755. simplecv: A simple class for writing curricula vitae.
  4756. sitem: Save the optional argument of item.
  4757. skb: Tools for a repository of long-living documents.
  4758. skdoc: Documentation and extraction for packages and document classes.
  4759. skeycommand: Create commands using parameters and keyval in parallel.
  4760. skeyval: Key-value parsing combining features of xkeyval and pgfkeys.
  4761. skrapport: 'Simple' class for reports, etc.
  4762. slantsc: Access different-shaped small-caps fonts.
  4763. smalltableof: Create listoffigures etc. in a single chapter.
  4764. smartref: Extend LaTeX's ref capability.
  4765. snapshot: List the external dependencies of a LaTeX document.
  4766. snotez: Typeset notes, in the margin.
  4767. soul: Hyphenation for letterspacing, underlining, and more.
  4768. sparklines: Drawing sparklines: intense, simple, wordlike graphics.
  4769. sphack: Patch LaTeX kernel spacing macros.
  4770. splitindex: Unlimited number of indexes.
  4771. spot: Spotlight highlighting for Beamer.
  4772. spotcolor: Spot colours for pdfLaTeX.
  4773. spreadtab: Spreadsheet features for LaTeX tabular environments.
  4774. spverbatim: Allow line breaks within verb and verbatim output.
  4775. srbook-mem:
  4776. srcltx: Jump between DVI and TeX files.
  4777. sseq: Typesetting spectral sequence charts.
  4778. sslides: Slides with headers and footers.
  4779. stack: Tools to define and use stacks.
  4780. stackengine: Highly customised stacking of objects, insets, baseline changes, etc.
  4781. standalone: Compile TeX pictures stand-alone or as part of a document.
  4782. statistik: Store statistics of a document.
  4783. stdclsdv: Provide sectioning information for package writers.
  4784. stdpage: Standard pages with n lines of at most m characters each.
  4785. stex: An Infrastructure for Semantic Preloading of LaTeX Documents.
  4786. storebox: Storing information for reuse.
  4787. storecmd: Store the name of a defined command in a container.
  4788. stringstrings: String manipulation for cosmetic and programming application.
  4789. sttools: Various macros.
  4790. stubs: Create tear-off stubs at the bottom of a page.
  4791. subdepth: Unify maths subscript height.
  4792. subeqn: Package for subequation numbering.
  4793. subeqnarray: Equation array with sub numbering.
  4794. subfigmat: Automates layout when using the subfigure package.
  4795. subfigure: Deprecated: Figures divided into subfigures.
  4796. subfiles: Individual typesetting of subfiles of a "main" document.
  4797. subfloat: Sub-numbering for figures and tables.
  4798. substitutefont: Easy font substitution.
  4799. substr: Deal with substrings in strings.
  4800. supertabular: A multi-page tables package.
  4801. svg: Include and extract SVG pictures using Inkscape.
  4802. svgcolor: Define SVG named colours.
  4803. svn: Typeset Subversion keywords.
  4804. svn-multi: Subversion keywords in multi-file LaTeX documents
  4805. svn-prov: Subversion variants of Provides... macros.
  4806. svninfo: Typeset Subversion keywords.
  4807. syntax: Creation of syntax diagrams.
  4808. syntrace: Labels for tracing in a syntax tree.
  4809. synttree: Typeset syntactic trees.
  4810. tabfigures: Maintain vertical alignment of figures.
  4811. tableaux: Construct tables of signs and variations.
  4812. tablefootnote: Permit footnotes in tables.
  4813. tableof: Tagging tables of contents.
  4814. tablestyles:
  4815. tablists: Tabulated lists of short items.
  4816. tabls: Better vertical spacing in tables and arrays.
  4817. tabstackengine: "Tabbing" front-end to stackengine.
  4818. tabto-ltx: "Tab" to a measured position in the line.
  4819. tabu: Flexible LaTeX tabulars.
  4820. tabularborder: Remove excess space at left and right of tabular.
  4821. tabularcalc: Calculate formulas in a tabular environment.
  4822. tabularew: A variation on the tabular environment.
  4823. tabulary: Tabular with variable width columns balanced.
  4824. tagging: Document configuration with tags.
  4825. tagpair: Word-by-word glosses, translations, and bibliographic attributions.
  4826. talk: A LaTeX class for presentations.
  4827. tamefloats: Experimentally use holdinginserts with LaTeX floats.
  4828. tasks: Horizontally columned lists.
  4829. tcldoc: Doc/docstrip for tcl.
  4830. tcolorbox: Coloured boxes, for LaTeX examples and theorems, etc
  4831. tdclock: A ticking digital clock package for PDF output.
  4832. technics: A package to format technical documents.
  4833. ted: A (primitive) token list editor.
  4834. templatetools: Commands useful in LaTeX templates.
  4835. termcal: Print a class calendar.
  4836. termlist: Label any kind of term with a continuous counter.
  4837. testhyphens: Testing hyphenation patterns
  4838. tex-label: Place a classification on each page of a document
  4839. texlogos: Ready-to-use LaTeX logos.
  4840. texmate: Comprehensive chess annotation in LaTeX.
  4841. texments: Using the Pygments highlighter in LaTeX.
  4842. texpower: Create dynamic online presentations with LaTeX.
  4843. texshade: Package for setting nucleotide and peptide alignments.
  4844. texvc: Use MediaWiki LaTeX commands
  4845. textfit: Fit text to a desired size.
  4846. textgreek: Upright greek letters in text.
  4847. textmerg: Merge text in TeX and LaTeX.
  4848. textpos: Place boxes at arbitrary positions on the LaTeX page.
  4849. theoremref: References with automatic theorem names.
  4850. thinsp: A stretchable thinspace for LaTeX.
  4851. thmtools: Extensions to theorem environments.
  4852. threadcol: Organize document columns into PDF "article thread".
  4853. threeparttable: Tables with captions and notes all the same width.
  4854. threeparttablex: Notes in longtables.
  4855. thumb: Thumb marks in documents.
  4856. thumbs: Create thumb indexes.
  4857. thumby: Create thumb indexes for printed books.
  4858. ticket: Make labels, visiting-cards, pins with LaTeX.
  4859. titlecaps: Setting rich-text input into Titling Caps.
  4860. titlefoot: Add special material to footer of title page.
  4861. titlepic: Add picture to title page of a document.
  4862. titleref: A "titleref" command to cross-reference section titles.
  4863. titlesec: Select alternative section titles.
  4864. titling: Control over the typesetting of the maketitle command.
  4865. tocbibind: Add bibliography/index/contents to Table of Contents.
  4866. tocloft: Control table of contents, figures, etc.
  4867. tocvsec2: Section numbering and table of contents control.
  4868. todo: Make a to-do list for a document.
  4869. todonotes: Marking things to do in a LaTeX document.
  4870. tokenizer: A tokenizer.
  4871. toolbox: Tool macros.
  4872. topfloat: Move floats to the top of the page.
  4873. totcount: Find the last value of a counter.
  4874. totpages: Count pages in a document, and report last page number.
  4875. translations: Internationalisation of LaTeX2e packages
  4876. trfsigns: Typeset transform signs.
  4877. trimspaces: Trim spaces around an argument or within a macro.
  4878. trivfloat: Quick float definitions in LaTeX.
  4879. trsym: Symbols for transformations.
  4880. truncate: Truncate text to a specified width.
  4881. tucv: Support for typesetting a CV or resumee.
  4882. turnthepage: Provide "turn page" instructions.
  4883. twoinone: Print two pages on a single page.
  4884. twoup: Print two virtual pages on each physical page.
  4885. txgreeks: Shape selection for TX fonts Greek letters.
  4886. type1cm: Arbitrary size font selection in LaTeX.
  4887. typeface: Select a balanced set of fonts.
  4888. typogrid: Print a typographic grid.
  4889. uassign: Environments and options for typesetting university assignments
  4890. ucs: Extended UTF-8 input encoding support for LaTeX.
  4891. uebungsblatt: A LaTeX class for writing exercise sheets.
  4892. umoline: Underline text allowing line breaking.
  4893. underlin: Underlined running heads.
  4894. underoverlap: Position decorations over and under expressions.
  4895. undolabl: Override existing labels.
  4896. units: Typeset units.
  4897. unravel: Watching TeX digest tokens
  4898. upmethodology: Writing specifications such as for UP-based methodologies
  4899. upquote: Show "realistic" quotes in verbatim.
  4900. uri: Hyperlinks for a wide range of URIs.
  4901. ushort: Shorter (and longer) underlines and underbars.
  4902. uwmslide: Slides with a simple Power Point like appearance.
  4903. varindex: Luxury frontend to the index command.
  4904. varsfromjobname: Extract variables from the name of the LaTeX file.
  4905. varwidth: A variable-width minipage.
  4906. vdmlisting: Typesetting VDM in ASCII syntax.
  4907. verbasef: VERBatim Automatic Splitting of External Files.
  4908. verbatimbox: Deposit verbatim text in a box.
  4909. verbatimcopy: Make copies of text documents from within LaTeX.
  4910. verbdef: Define commands which expand to verbatim text
  4911. verbments: Syntax highlighting of source code in LaTeX documents.
  4912. version: Conditionally include text.
  4913. versions: Optionally omit pieces of text.
  4914. versonotes: Display brief notes on verso pages
  4915. vertbars: Mark vertical rules in margin of text.
  4916. vgrid: Overlay a grid on the printed page.
  4917. vhistory: Support for creating a change log.
  4918. vmargin: Set various page dimensions.
  4919. volumes: Typeset only parts of a document, with complete indexes etc.
  4920. vpe: Source specials for PDF output.
  4921. vruler: Numbering text.
  4922. vwcol: Variable-width multiple text columns.
  4923. wallpaper: Easy addition of wallpapers (background images) to LaTeX documents, including tiling.
  4924. warning: Global warnings at the end of the logfile.
  4925. warpcol: Relative alignment of rows in numeric columns in tabulars.
  4926. was: A collection of small packages by Walter Schmidt.
  4927. widetable: An environment for typesetting tables of specified width
  4928. williams: Miscellaneous macros by Peter Williams.
  4929. withargs: Ephemeral macro use
  4930. wordlike: Simulating word processor layout.
  4931. wrapfig: Produces figures which text can flow around.
  4932. xargs: Define commands with many optional arguments.
  4933. xassoccnt: Associated counters stepping simultaneously
  4934. xcolor-solarized: Defines the 16 colors from Ethan Schoonover's Solarized palette
  4935. xcomment: Allows selected environments to be included/excluded.
  4936. xdoc: Extending the LaTeX doc system.
  4937. xellipsis: Extremely configurable ellipses with formats for various style manuals
  4938. xfor: A reimplementation of the LaTeX for-loop macro.
  4939. xhfill: Extending hrulefill.
  4940. xifthen: Extended conditional commands
  4941. xint: Expandable operations on long numbers
  4942. xmpincl: Include eXtensible Metadata Platform data in PDFLaTeX.
  4943. xnewcommand: Define global and protected commands with newcommand.
  4944. xoptarg: Expandable macros that take an optional argument.
  4945. xpatch: Extending etoolbox patching commands.
  4946. xpeek: Define commands that peek ahead in the input stream.
  4947. xprintlen: Print TeX lengths in a variety of units.
  4948. xpunctuate: Process trailing punctuation which may be redundant.
  4949. xstring: String manipulation for (La)TeX.
  4950. xtab: Break tables across pages.
  4951. xwatermark: Graphics and text watermarks on selected pages.
  4952. xytree: Tree macros using XY-Pic.
  4953. yafoot: A bundle of miscellaneous footnote packages.
  4954. yagusylo: A symbol loader.
  4955. ydoc: Macros for documentation of LaTeX classes and packages.
  4956. yplan: Daily planner type calendar.
  4957. zed-csp: Typesetting Z and CSP format specifications.
  4958. ziffer: Conversion of punctuation in maths mode.
  4959. zwgetfdate: Get package or file date.
  4960. zwpagelayout: Page layout and crop-marks.
  4961. %package doc
  4962. Summary: TeX Live: Documentation files of %{name}
  4963. Group: Applications/Publishing
  4964. Requires: %{name} = %{version}-%{release}
  4965. %description doc
  4966. This package contains documentation files of %{name}.
  4967. %prep
  4968. %setup -c -n %{name}-%{version}
  4969. %__tar -xvf %{SOURCE1}
  4970. %__tar -xvf %{SOURCE2}
  4971. %__tar -xvf %{SOURCE3}
  4972. %__tar -xvf %{SOURCE4}
  4973. %__tar -xvf %{SOURCE5}
  4974. %__tar -xvf %{SOURCE6}
  4975. %__tar -xvf %{SOURCE7}
  4976. %__tar -xvf %{SOURCE8}
  4977. %__tar -xvf %{SOURCE9}
  4978. %__tar -xvf %{SOURCE10}
  4979. %__tar -xvf %{SOURCE11}
  4980. %__tar -xvf %{SOURCE12}
  4981. %__tar -xvf %{SOURCE13}
  4982. %__tar -xvf %{SOURCE14}
  4983. %__tar -xvf %{SOURCE15}
  4984. %__tar -xvf %{SOURCE16}
  4985. %__tar -xvf %{SOURCE17}
  4986. %__tar -xvf %{SOURCE18}
  4987. %__tar -xvf %{SOURCE19}
  4988. %__tar -xvf %{SOURCE20}
  4989. %__tar -xvf %{SOURCE21}
  4990. %__tar -xvf %{SOURCE22}
  4991. %__tar -xvf %{SOURCE23}
  4992. %__tar -xvf %{SOURCE24}
  4993. %__tar -xvf %{SOURCE25}
  4994. %__tar -xvf %{SOURCE26}
  4995. %__tar -xvf %{SOURCE27}
  4996. %__tar -xvf %{SOURCE28}
  4997. %__tar -xvf %{SOURCE29}
  4998. %__tar -xvf %{SOURCE30}
  4999. %__tar -xvf %{SOURCE31}
  5000. %__tar -xvf %{SOURCE32}
  5001. %__tar -xvf %{SOURCE33}
  5002. %__tar -xvf %{SOURCE34}
  5003. %__tar -xvf %{SOURCE35}
  5004. %__tar -xvf %{SOURCE36}
  5005. %__tar -xvf %{SOURCE37}
  5006. %__tar -xvf %{SOURCE38}
  5007. %__tar -xvf %{SOURCE39}
  5008. %__tar -xvf %{SOURCE40}
  5009. %__tar -xvf %{SOURCE41}
  5010. %__tar -xvf %{SOURCE42}
  5011. %__tar -xvf %{SOURCE43}
  5012. %__tar -xvf %{SOURCE44}
  5013. %__tar -xvf %{SOURCE45}
  5014. %__tar -xvf %{SOURCE46}
  5015. %__tar -xvf %{SOURCE47}
  5016. %__tar -xvf %{SOURCE48}
  5017. %__tar -xvf %{SOURCE49}
  5018. %__tar -xvf %{SOURCE50}
  5019. %__tar -xvf %{SOURCE51}
  5020. %__tar -xvf %{SOURCE52}
  5021. %__tar -xvf %{SOURCE53}
  5022. %__tar -xvf %{SOURCE54}
  5023. %__tar -xvf %{SOURCE55}
  5024. %__tar -xvf %{SOURCE56}
  5025. %__tar -xvf %{SOURCE57}
  5026. %__tar -xvf %{SOURCE58}
  5027. %__tar -xvf %{SOURCE59}
  5028. %__tar -xvf %{SOURCE60}
  5029. %__tar -xvf %{SOURCE61}
  5030. %__tar -xvf %{SOURCE62}
  5031. %__tar -xvf %{SOURCE63}
  5032. %__tar -xvf %{SOURCE64}
  5033. %__tar -xvf %{SOURCE65}
  5034. %__tar -xvf %{SOURCE66}
  5035. %__tar -xvf %{SOURCE67}
  5036. %__tar -xvf %{SOURCE68}
  5037. %__tar -xvf %{SOURCE69}
  5038. %__tar -xvf %{SOURCE70}
  5039. %__tar -xvf %{SOURCE71}
  5040. %__tar -xvf %{SOURCE72}
  5041. %__tar -xvf %{SOURCE73}
  5042. %__tar -xvf %{SOURCE74}
  5043. %__tar -xvf %{SOURCE75}
  5044. %__tar -xvf %{SOURCE76}
  5045. %__tar -xvf %{SOURCE77}
  5046. %__tar -xvf %{SOURCE78}
  5047. %__tar -xvf %{SOURCE79}
  5048. %__tar -xvf %{SOURCE80}
  5049. %__tar -xvf %{SOURCE81}
  5050. %__tar -xvf %{SOURCE82}
  5051. %__tar -xvf %{SOURCE83}
  5052. %__tar -xvf %{SOURCE84}
  5053. %__tar -xvf %{SOURCE85}
  5054. %__tar -xvf %{SOURCE86}
  5055. %__tar -xvf %{SOURCE87}
  5056. %__tar -xvf %{SOURCE88}
  5057. %__tar -xvf %{SOURCE89}
  5058. %__tar -xvf %{SOURCE90}
  5059. %__tar -xvf %{SOURCE91}
  5060. %__tar -xvf %{SOURCE92}
  5061. %__tar -xvf %{SOURCE93}
  5062. %__tar -xvf %{SOURCE94}
  5063. %__tar -xvf %{SOURCE95}
  5064. %__tar -xvf %{SOURCE96}
  5065. %__tar -xvf %{SOURCE97}
  5066. %__tar -xvf %{SOURCE98}
  5067. %__tar -xvf %{SOURCE99}
  5068. %__tar -xvf %{SOURCE100}
  5069. %__tar -xvf %{SOURCE101}
  5070. %__tar -xvf %{SOURCE102}
  5071. %__tar -xvf %{SOURCE103}
  5072. %__tar -xvf %{SOURCE104}
  5073. %__tar -xvf %{SOURCE105}
  5074. %__tar -xvf %{SOURCE106}
  5075. %__tar -xvf %{SOURCE107}
  5076. %__tar -xvf %{SOURCE108}
  5077. %__tar -xvf %{SOURCE109}
  5078. %__tar -xvf %{SOURCE110}
  5079. %__tar -xvf %{SOURCE111}
  5080. %__tar -xvf %{SOURCE112}
  5081. %__tar -xvf %{SOURCE113}
  5082. %__tar -xvf %{SOURCE114}
  5083. %__tar -xvf %{SOURCE115}
  5084. %__tar -xvf %{SOURCE116}
  5085. %__tar -xvf %{SOURCE117}
  5086. %__tar -xvf %{SOURCE118}
  5087. %__tar -xvf %{SOURCE119}
  5088. %__tar -xvf %{SOURCE120}
  5089. %__tar -xvf %{SOURCE121}
  5090. %__tar -xvf %{SOURCE122}
  5091. %__tar -xvf %{SOURCE123}
  5092. %__tar -xvf %{SOURCE124}
  5093. %__tar -xvf %{SOURCE125}
  5094. %__tar -xvf %{SOURCE126}
  5095. %__tar -xvf %{SOURCE127}
  5096. %__tar -xvf %{SOURCE128}
  5097. %__tar -xvf %{SOURCE129}
  5098. %__tar -xvf %{SOURCE130}
  5099. %__tar -xvf %{SOURCE131}
  5100. %__tar -xvf %{SOURCE132}
  5101. %__tar -xvf %{SOURCE133}
  5102. %__tar -xvf %{SOURCE134}
  5103. %__tar -xvf %{SOURCE135}
  5104. %__tar -xvf %{SOURCE136}
  5105. %__tar -xvf %{SOURCE137}
  5106. %__tar -xvf %{SOURCE138}
  5107. %__tar -xvf %{SOURCE139}
  5108. %__tar -xvf %{SOURCE140}
  5109. %__tar -xvf %{SOURCE141}
  5110. %__tar -xvf %{SOURCE142}
  5111. %__tar -xvf %{SOURCE143}
  5112. %__tar -xvf %{SOURCE144}
  5113. %__tar -xvf %{SOURCE145}
  5114. %__tar -xvf %{SOURCE146}
  5115. %__tar -xvf %{SOURCE147}
  5116. %__tar -xvf %{SOURCE148}
  5117. %__tar -xvf %{SOURCE149}
  5118. %__tar -xvf %{SOURCE150}
  5119. %__tar -xvf %{SOURCE151}
  5120. %__tar -xvf %{SOURCE152}
  5121. %__tar -xvf %{SOURCE153}
  5122. %__tar -xvf %{SOURCE154}
  5123. %__tar -xvf %{SOURCE155}
  5124. %__tar -xvf %{SOURCE156}
  5125. %__tar -xvf %{SOURCE157}
  5126. %__tar -xvf %{SOURCE158}
  5127. %__tar -xvf %{SOURCE159}
  5128. %__tar -xvf %{SOURCE160}
  5129. %__tar -xvf %{SOURCE161}
  5130. %__tar -xvf %{SOURCE162}
  5131. %__tar -xvf %{SOURCE163}
  5132. %__tar -xvf %{SOURCE164}
  5133. %__tar -xvf %{SOURCE165}
  5134. %__tar -xvf %{SOURCE166}
  5135. %__tar -xvf %{SOURCE167}
  5136. %__tar -xvf %{SOURCE168}
  5137. %__tar -xvf %{SOURCE169}
  5138. %__tar -xvf %{SOURCE170}
  5139. %__tar -xvf %{SOURCE171}
  5140. %__tar -xvf %{SOURCE172}
  5141. %__tar -xvf %{SOURCE173}
  5142. %__tar -xvf %{SOURCE174}
  5143. %__tar -xvf %{SOURCE175}
  5144. %__tar -xvf %{SOURCE176}
  5145. %__tar -xvf %{SOURCE177}
  5146. %__tar -xvf %{SOURCE178}
  5147. %__tar -xvf %{SOURCE179}
  5148. %__tar -xvf %{SOURCE180}
  5149. %__tar -xvf %{SOURCE181}
  5150. %__tar -xvf %{SOURCE182}
  5151. %__tar -xvf %{SOURCE183}
  5152. %__tar -xvf %{SOURCE184}
  5153. %__tar -xvf %{SOURCE185}
  5154. %__tar -xvf %{SOURCE186}
  5155. %__tar -xvf %{SOURCE187}
  5156. %__tar -xvf %{SOURCE188}
  5157. %__tar -xvf %{SOURCE189}
  5158. %__tar -xvf %{SOURCE190}
  5159. %__tar -xvf %{SOURCE191}
  5160. %__tar -xvf %{SOURCE192}
  5161. %__tar -xvf %{SOURCE193}
  5162. %__tar -xvf %{SOURCE194}
  5163. %__tar -xvf %{SOURCE195}
  5164. %__tar -xvf %{SOURCE196}
  5165. %__tar -xvf %{SOURCE197}
  5166. %__tar -xvf %{SOURCE198}
  5167. %__tar -xvf %{SOURCE199}
  5168. %__tar -xvf %{SOURCE200}
  5169. %__tar -xvf %{SOURCE201}
  5170. %__tar -xvf %{SOURCE202}
  5171. %__tar -xvf %{SOURCE203}
  5172. %__tar -xvf %{SOURCE204}
  5173. %__tar -xvf %{SOURCE205}
  5174. %__tar -xvf %{SOURCE206}
  5175. %__tar -xvf %{SOURCE207}
  5176. %__tar -xvf %{SOURCE208}
  5177. %__tar -xvf %{SOURCE209}
  5178. %__tar -xvf %{SOURCE210}
  5179. %__tar -xvf %{SOURCE211}
  5180. %__tar -xvf %{SOURCE212}
  5181. %__tar -xvf %{SOURCE213}
  5182. %__tar -xvf %{SOURCE214}
  5183. %__tar -xvf %{SOURCE215}
  5184. %__tar -xvf %{SOURCE216}
  5185. %__tar -xvf %{SOURCE217}
  5186. %__tar -xvf %{SOURCE218}
  5187. %__tar -xvf %{SOURCE219}
  5188. %__tar -xvf %{SOURCE220}
  5189. %__tar -xvf %{SOURCE221}
  5190. %__tar -xvf %{SOURCE222}
  5191. %__tar -xvf %{SOURCE223}
  5192. %__tar -xvf %{SOURCE224}
  5193. %__tar -xvf %{SOURCE225}
  5194. %__tar -xvf %{SOURCE226}
  5195. %__tar -xvf %{SOURCE227}
  5196. %__tar -xvf %{SOURCE228}
  5197. %__tar -xvf %{SOURCE229}
  5198. %__tar -xvf %{SOURCE230}
  5199. %__tar -xvf %{SOURCE231}
  5200. %__tar -xvf %{SOURCE232}
  5201. %__tar -xvf %{SOURCE233}
  5202. %__tar -xvf %{SOURCE234}
  5203. %__tar -xvf %{SOURCE235}
  5204. %__tar -xvf %{SOURCE236}
  5205. %__tar -xvf %{SOURCE237}
  5206. %__tar -xvf %{SOURCE238}
  5207. %__tar -xvf %{SOURCE239}
  5208. %__tar -xvf %{SOURCE240}
  5209. %__tar -xvf %{SOURCE241}
  5210. %__tar -xvf %{SOURCE242}
  5211. %__tar -xvf %{SOURCE243}
  5212. %__tar -xvf %{SOURCE244}
  5213. %__tar -xvf %{SOURCE245}
  5214. %__tar -xvf %{SOURCE246}
  5215. %__tar -xvf %{SOURCE247}
  5216. %__tar -xvf %{SOURCE248}
  5217. %__tar -xvf %{SOURCE249}
  5218. %__tar -xvf %{SOURCE250}
  5219. %__tar -xvf %{SOURCE251}
  5220. %__tar -xvf %{SOURCE252}
  5221. %__tar -xvf %{SOURCE253}
  5222. %__tar -xvf %{SOURCE254}
  5223. %__tar -xvf %{SOURCE255}
  5224. %__tar -xvf %{SOURCE256}
  5225. %__tar -xvf %{SOURCE257}
  5226. %__tar -xvf %{SOURCE258}
  5227. %__tar -xvf %{SOURCE259}
  5228. %__tar -xvf %{SOURCE260}
  5229. %__tar -xvf %{SOURCE261}
  5230. %__tar -xvf %{SOURCE262}
  5231. %__tar -xvf %{SOURCE263}
  5232. %__tar -xvf %{SOURCE264}
  5233. %__tar -xvf %{SOURCE265}
  5234. %__tar -xvf %{SOURCE266}
  5235. %__tar -xvf %{SOURCE267}
  5236. %__tar -xvf %{SOURCE268}
  5237. %__tar -xvf %{SOURCE269}
  5238. %__tar -xvf %{SOURCE270}
  5239. %__tar -xvf %{SOURCE271}
  5240. %__tar -xvf %{SOURCE272}
  5241. %__tar -xvf %{SOURCE273}
  5242. %__tar -xvf %{SOURCE274}
  5243. %__tar -xvf %{SOURCE275}
  5244. %__tar -xvf %{SOURCE276}
  5245. %__tar -xvf %{SOURCE277}
  5246. %__tar -xvf %{SOURCE278}
  5247. %__tar -xvf %{SOURCE279}
  5248. %__tar -xvf %{SOURCE280}
  5249. %__tar -xvf %{SOURCE281}
  5250. %__tar -xvf %{SOURCE282}
  5251. %__tar -xvf %{SOURCE283}
  5252. %__tar -xvf %{SOURCE284}
  5253. %__tar -xvf %{SOURCE285}
  5254. %__tar -xvf %{SOURCE286}
  5255. %__tar -xvf %{SOURCE287}
  5256. %__tar -xvf %{SOURCE288}
  5257. %__tar -xvf %{SOURCE289}
  5258. %__tar -xvf %{SOURCE290}
  5259. %__tar -xvf %{SOURCE291}
  5260. %__tar -xvf %{SOURCE292}
  5261. %__tar -xvf %{SOURCE293}
  5262. %__tar -xvf %{SOURCE294}
  5263. %__tar -xvf %{SOURCE295}
  5264. %__tar -xvf %{SOURCE296}
  5265. %__tar -xvf %{SOURCE297}
  5266. %__tar -xvf %{SOURCE298}
  5267. %__tar -xvf %{SOURCE299}
  5268. %__tar -xvf %{SOURCE300}
  5269. %__tar -xvf %{SOURCE301}
  5270. %__tar -xvf %{SOURCE302}
  5271. %__tar -xvf %{SOURCE303}
  5272. %__tar -xvf %{SOURCE304}
  5273. %__tar -xvf %{SOURCE305}
  5274. %__tar -xvf %{SOURCE306}
  5275. %__tar -xvf %{SOURCE307}
  5276. %__tar -xvf %{SOURCE308}
  5277. %__tar -xvf %{SOURCE309}
  5278. %__tar -xvf %{SOURCE310}
  5279. %__tar -xvf %{SOURCE311}
  5280. %__tar -xvf %{SOURCE312}
  5281. %__tar -xvf %{SOURCE313}
  5282. %__tar -xvf %{SOURCE314}
  5283. %__tar -xvf %{SOURCE315}
  5284. %__tar -xvf %{SOURCE316}
  5285. %__tar -xvf %{SOURCE317}
  5286. %__tar -xvf %{SOURCE318}
  5287. %__tar -xvf %{SOURCE319}
  5288. %__tar -xvf %{SOURCE320}
  5289. %__tar -xvf %{SOURCE321}
  5290. %__tar -xvf %{SOURCE322}
  5291. %__tar -xvf %{SOURCE323}
  5292. %__tar -xvf %{SOURCE324}
  5293. %__tar -xvf %{SOURCE325}
  5294. %__tar -xvf %{SOURCE326}
  5295. %__tar -xvf %{SOURCE327}
  5296. %__tar -xvf %{SOURCE328}
  5297. %__tar -xvf %{SOURCE329}
  5298. %__tar -xvf %{SOURCE330}
  5299. %__tar -xvf %{SOURCE331}
  5300. %__tar -xvf %{SOURCE332}
  5301. %__tar -xvf %{SOURCE333}
  5302. %__tar -xvf %{SOURCE334}
  5303. %__tar -xvf %{SOURCE335}
  5304. %__tar -xvf %{SOURCE336}
  5305. %__tar -xvf %{SOURCE337}
  5306. %__tar -xvf %{SOURCE338}
  5307. %__tar -xvf %{SOURCE339}
  5308. %__tar -xvf %{SOURCE340}
  5309. %__tar -xvf %{SOURCE341}
  5310. %__tar -xvf %{SOURCE342}
  5311. %__tar -xvf %{SOURCE343}
  5312. %__tar -xvf %{SOURCE344}
  5313. %__tar -xvf %{SOURCE345}
  5314. %__tar -xvf %{SOURCE346}
  5315. %__tar -xvf %{SOURCE347}
  5316. %__tar -xvf %{SOURCE348}
  5317. %__tar -xvf %{SOURCE349}
  5318. %__tar -xvf %{SOURCE350}
  5319. %__tar -xvf %{SOURCE351}
  5320. %__tar -xvf %{SOURCE352}
  5321. %__tar -xvf %{SOURCE353}
  5322. %__tar -xvf %{SOURCE354}
  5323. %__tar -xvf %{SOURCE355}
  5324. %__tar -xvf %{SOURCE356}
  5325. %__tar -xvf %{SOURCE357}
  5326. %__tar -xvf %{SOURCE358}
  5327. %__tar -xvf %{SOURCE359}
  5328. %__tar -xvf %{SOURCE360}
  5329. %__tar -xvf %{SOURCE361}
  5330. %__tar -xvf %{SOURCE362}
  5331. %__tar -xvf %{SOURCE363}
  5332. %__tar -xvf %{SOURCE364}
  5333. %__tar -xvf %{SOURCE365}
  5334. %__tar -xvf %{SOURCE366}
  5335. %__tar -xvf %{SOURCE367}
  5336. %__tar -xvf %{SOURCE368}
  5337. %__tar -xvf %{SOURCE369}
  5338. %__tar -xvf %{SOURCE370}
  5339. %__tar -xvf %{SOURCE371}
  5340. %__tar -xvf %{SOURCE372}
  5341. %__tar -xvf %{SOURCE373}
  5342. %__tar -xvf %{SOURCE374}
  5343. %__tar -xvf %{SOURCE375}
  5344. %__tar -xvf %{SOURCE376}
  5345. %__tar -xvf %{SOURCE377}
  5346. %__tar -xvf %{SOURCE378}
  5347. %__tar -xvf %{SOURCE379}
  5348. %__tar -xvf %{SOURCE380}
  5349. %__tar -xvf %{SOURCE381}
  5350. %__tar -xvf %{SOURCE382}
  5351. %__tar -xvf %{SOURCE383}
  5352. %__tar -xvf %{SOURCE384}
  5353. %__tar -xvf %{SOURCE385}
  5354. %__tar -xvf %{SOURCE386}
  5355. %__tar -xvf %{SOURCE387}
  5356. %__tar -xvf %{SOURCE388}
  5357. %__tar -xvf %{SOURCE389}
  5358. %__tar -xvf %{SOURCE390}
  5359. %__tar -xvf %{SOURCE391}
  5360. %__tar -xvf %{SOURCE392}
  5361. %__tar -xvf %{SOURCE393}
  5362. %__tar -xvf %{SOURCE394}
  5363. %__tar -xvf %{SOURCE395}
  5364. %__tar -xvf %{SOURCE396}
  5365. %__tar -xvf %{SOURCE397}
  5366. %__tar -xvf %{SOURCE398}
  5367. %__tar -xvf %{SOURCE399}
  5368. %__tar -xvf %{SOURCE400}
  5369. %__tar -xvf %{SOURCE401}
  5370. %__tar -xvf %{SOURCE402}
  5371. %__tar -xvf %{SOURCE403}
  5372. %__tar -xvf %{SOURCE404}
  5373. %__tar -xvf %{SOURCE405}
  5374. %__tar -xvf %{SOURCE406}
  5375. %__tar -xvf %{SOURCE407}
  5376. %__tar -xvf %{SOURCE408}
  5377. %__tar -xvf %{SOURCE409}
  5378. %__tar -xvf %{SOURCE410}
  5379. %__tar -xvf %{SOURCE411}
  5380. %__tar -xvf %{SOURCE412}
  5381. %__tar -xvf %{SOURCE413}
  5382. %__tar -xvf %{SOURCE414}
  5383. %__tar -xvf %{SOURCE415}
  5384. %__tar -xvf %{SOURCE416}
  5385. %__tar -xvf %{SOURCE417}
  5386. %__tar -xvf %{SOURCE418}
  5387. %__tar -xvf %{SOURCE419}
  5388. %__tar -xvf %{SOURCE420}
  5389. %__tar -xvf %{SOURCE421}
  5390. %__tar -xvf %{SOURCE422}
  5391. %__tar -xvf %{SOURCE423}
  5392. %__tar -xvf %{SOURCE424}
  5393. %__tar -xvf %{SOURCE425}
  5394. %__tar -xvf %{SOURCE426}
  5395. %__tar -xvf %{SOURCE427}
  5396. %__tar -xvf %{SOURCE428}
  5397. %__tar -xvf %{SOURCE429}
  5398. %__tar -xvf %{SOURCE430}
  5399. %__tar -xvf %{SOURCE431}
  5400. %__tar -xvf %{SOURCE432}
  5401. %__tar -xvf %{SOURCE433}
  5402. %__tar -xvf %{SOURCE434}
  5403. %__tar -xvf %{SOURCE435}
  5404. %__tar -xvf %{SOURCE436}
  5405. %__tar -xvf %{SOURCE437}
  5406. %__tar -xvf %{SOURCE438}
  5407. %__tar -xvf %{SOURCE439}
  5408. %__tar -xvf %{SOURCE440}
  5409. %__tar -xvf %{SOURCE441}
  5410. %__tar -xvf %{SOURCE442}
  5411. %__tar -xvf %{SOURCE443}
  5412. %__tar -xvf %{SOURCE444}
  5413. %__tar -xvf %{SOURCE445}
  5414. %__tar -xvf %{SOURCE446}
  5415. %__tar -xvf %{SOURCE447}
  5416. %__tar -xvf %{SOURCE448}
  5417. %__tar -xvf %{SOURCE449}
  5418. %__tar -xvf %{SOURCE450}
  5419. %__tar -xvf %{SOURCE451}
  5420. %__tar -xvf %{SOURCE452}
  5421. %__tar -xvf %{SOURCE453}
  5422. %__tar -xvf %{SOURCE454}
  5423. %__tar -xvf %{SOURCE455}
  5424. %__tar -xvf %{SOURCE456}
  5425. %__tar -xvf %{SOURCE457}
  5426. %__tar -xvf %{SOURCE458}
  5427. %__tar -xvf %{SOURCE459}
  5428. %__tar -xvf %{SOURCE460}
  5429. %__tar -xvf %{SOURCE461}
  5430. %__tar -xvf %{SOURCE462}
  5431. %__tar -xvf %{SOURCE463}
  5432. %__tar -xvf %{SOURCE464}
  5433. %__tar -xvf %{SOURCE465}
  5434. %__tar -xvf %{SOURCE466}
  5435. %__tar -xvf %{SOURCE467}
  5436. %__tar -xvf %{SOURCE468}
  5437. %__tar -xvf %{SOURCE469}
  5438. %__tar -xvf %{SOURCE470}
  5439. %__tar -xvf %{SOURCE471}
  5440. %__tar -xvf %{SOURCE472}
  5441. %__tar -xvf %{SOURCE473}
  5442. %__tar -xvf %{SOURCE474}
  5443. %__tar -xvf %{SOURCE475}
  5444. %__tar -xvf %{SOURCE476}
  5445. %__tar -xvf %{SOURCE477}
  5446. %__tar -xvf %{SOURCE478}
  5447. %__tar -xvf %{SOURCE479}
  5448. %__tar -xvf %{SOURCE480}
  5449. %__tar -xvf %{SOURCE481}
  5450. %__tar -xvf %{SOURCE482}
  5451. %__tar -xvf %{SOURCE483}
  5452. %__tar -xvf %{SOURCE484}
  5453. %__tar -xvf %{SOURCE485}
  5454. %__tar -xvf %{SOURCE486}
  5455. %__tar -xvf %{SOURCE487}
  5456. %__tar -xvf %{SOURCE488}
  5457. %__tar -xvf %{SOURCE489}
  5458. %__tar -xvf %{SOURCE490}
  5459. %__tar -xvf %{SOURCE491}
  5460. %__tar -xvf %{SOURCE492}
  5461. %__tar -xvf %{SOURCE493}
  5462. %__tar -xvf %{SOURCE494}
  5463. %__tar -xvf %{SOURCE495}
  5464. %__tar -xvf %{SOURCE496}
  5465. %__tar -xvf %{SOURCE497}
  5466. %__tar -xvf %{SOURCE498}
  5467. %__tar -xvf %{SOURCE499}
  5468. %__tar -xvf %{SOURCE500}
  5469. %__tar -xvf %{SOURCE501}
  5470. %__tar -xvf %{SOURCE502}
  5471. %__tar -xvf %{SOURCE503}
  5472. %__tar -xvf %{SOURCE504}
  5473. %__tar -xvf %{SOURCE505}
  5474. %__tar -xvf %{SOURCE506}
  5475. %__tar -xvf %{SOURCE507}
  5476. %__tar -xvf %{SOURCE508}
  5477. %__tar -xvf %{SOURCE509}
  5478. %__tar -xvf %{SOURCE510}
  5479. %__tar -xvf %{SOURCE511}
  5480. %__tar -xvf %{SOURCE512}
  5481. %__tar -xvf %{SOURCE513}
  5482. %__tar -xvf %{SOURCE514}
  5483. %__tar -xvf %{SOURCE515}
  5484. %__tar -xvf %{SOURCE516}
  5485. %__tar -xvf %{SOURCE517}
  5486. %__tar -xvf %{SOURCE518}
  5487. %__tar -xvf %{SOURCE519}
  5488. %__tar -xvf %{SOURCE520}
  5489. %__tar -xvf %{SOURCE521}
  5490. %__tar -xvf %{SOURCE522}
  5491. %__tar -xvf %{SOURCE523}
  5492. %__tar -xvf %{SOURCE524}
  5493. %__tar -xvf %{SOURCE525}
  5494. %__tar -xvf %{SOURCE526}
  5495. %__tar -xvf %{SOURCE527}
  5496. %__tar -xvf %{SOURCE528}
  5497. %__tar -xvf %{SOURCE529}
  5498. %__tar -xvf %{SOURCE530}
  5499. %__tar -xvf %{SOURCE531}
  5500. %__tar -xvf %{SOURCE532}
  5501. %__tar -xvf %{SOURCE533}
  5502. %__tar -xvf %{SOURCE534}
  5503. %__tar -xvf %{SOURCE535}
  5504. %__tar -xvf %{SOURCE536}
  5505. %__tar -xvf %{SOURCE537}
  5506. %__tar -xvf %{SOURCE538}
  5507. %__tar -xvf %{SOURCE539}
  5508. %__tar -xvf %{SOURCE540}
  5509. %__tar -xvf %{SOURCE541}
  5510. %__tar -xvf %{SOURCE542}
  5511. %__tar -xvf %{SOURCE543}
  5512. %__tar -xvf %{SOURCE544}
  5513. %__tar -xvf %{SOURCE545}
  5514. %__tar -xvf %{SOURCE546}
  5515. %__tar -xvf %{SOURCE547}
  5516. %__tar -xvf %{SOURCE548}
  5517. %__tar -xvf %{SOURCE549}
  5518. %__tar -xvf %{SOURCE550}
  5519. %__tar -xvf %{SOURCE551}
  5520. %__tar -xvf %{SOURCE552}
  5521. %__tar -xvf %{SOURCE553}
  5522. %__tar -xvf %{SOURCE554}
  5523. %__tar -xvf %{SOURCE555}
  5524. %__tar -xvf %{SOURCE556}
  5525. %__tar -xvf %{SOURCE557}
  5526. %__tar -xvf %{SOURCE558}
  5527. %__tar -xvf %{SOURCE559}
  5528. %__tar -xvf %{SOURCE560}
  5529. %__tar -xvf %{SOURCE561}
  5530. %__tar -xvf %{SOURCE562}
  5531. %__tar -xvf %{SOURCE563}
  5532. %__tar -xvf %{SOURCE564}
  5533. %__tar -xvf %{SOURCE565}
  5534. %__tar -xvf %{SOURCE566}
  5535. %__tar -xvf %{SOURCE567}
  5536. %__tar -xvf %{SOURCE568}
  5537. %__tar -xvf %{SOURCE569}
  5538. %__tar -xvf %{SOURCE570}
  5539. %__tar -xvf %{SOURCE571}
  5540. %__tar -xvf %{SOURCE572}
  5541. %__tar -xvf %{SOURCE573}
  5542. %__tar -xvf %{SOURCE574}
  5543. %__tar -xvf %{SOURCE575}
  5544. %__tar -xvf %{SOURCE576}
  5545. %__tar -xvf %{SOURCE577}
  5546. %__tar -xvf %{SOURCE578}
  5547. %__tar -xvf %{SOURCE579}
  5548. %__tar -xvf %{SOURCE580}
  5549. %__tar -xvf %{SOURCE581}
  5550. %__tar -xvf %{SOURCE582}
  5551. %__tar -xvf %{SOURCE583}
  5552. %__tar -xvf %{SOURCE584}
  5553. %__tar -xvf %{SOURCE585}
  5554. %__tar -xvf %{SOURCE586}
  5555. %__tar -xvf %{SOURCE587}
  5556. %__tar -xvf %{SOURCE588}
  5557. %__tar -xvf %{SOURCE589}
  5558. %__tar -xvf %{SOURCE590}
  5559. %__tar -xvf %{SOURCE591}
  5560. %__tar -xvf %{SOURCE592}
  5561. %__tar -xvf %{SOURCE593}
  5562. %__tar -xvf %{SOURCE594}
  5563. %__tar -xvf %{SOURCE595}
  5564. %__tar -xvf %{SOURCE596}
  5565. %__tar -xvf %{SOURCE597}
  5566. %__tar -xvf %{SOURCE598}
  5567. %__tar -xvf %{SOURCE599}
  5568. %__tar -xvf %{SOURCE600}
  5569. %__tar -xvf %{SOURCE601}
  5570. %__tar -xvf %{SOURCE602}
  5571. %__tar -xvf %{SOURCE603}
  5572. %__tar -xvf %{SOURCE604}
  5573. %__tar -xvf %{SOURCE605}
  5574. %__tar -xvf %{SOURCE606}
  5575. %__tar -xvf %{SOURCE607}
  5576. %__tar -xvf %{SOURCE608}
  5577. %__tar -xvf %{SOURCE609}
  5578. %__tar -xvf %{SOURCE610}
  5579. %__tar -xvf %{SOURCE611}
  5580. %__tar -xvf %{SOURCE612}
  5581. %__tar -xvf %{SOURCE613}
  5582. %__tar -xvf %{SOURCE614}
  5583. %__tar -xvf %{SOURCE615}
  5584. %__tar -xvf %{SOURCE616}
  5585. %__tar -xvf %{SOURCE617}
  5586. %__tar -xvf %{SOURCE618}
  5587. %__tar -xvf %{SOURCE619}
  5588. %__tar -xvf %{SOURCE620}
  5589. %__tar -xvf %{SOURCE621}
  5590. %__tar -xvf %{SOURCE622}
  5591. %__tar -xvf %{SOURCE623}
  5592. %__tar -xvf %{SOURCE624}
  5593. %__tar -xvf %{SOURCE625}
  5594. %__tar -xvf %{SOURCE626}
  5595. %__tar -xvf %{SOURCE627}
  5596. %__tar -xvf %{SOURCE628}
  5597. %__tar -xvf %{SOURCE629}
  5598. %__tar -xvf %{SOURCE630}
  5599. %__tar -xvf %{SOURCE631}
  5600. %__tar -xvf %{SOURCE632}
  5601. %__tar -xvf %{SOURCE633}
  5602. %__tar -xvf %{SOURCE634}
  5603. %__tar -xvf %{SOURCE635}
  5604. %__tar -xvf %{SOURCE636}
  5605. %__tar -xvf %{SOURCE637}
  5606. %__tar -xvf %{SOURCE638}
  5607. %__tar -xvf %{SOURCE639}
  5608. %__tar -xvf %{SOURCE640}
  5609. %__tar -xvf %{SOURCE641}
  5610. %__tar -xvf %{SOURCE642}
  5611. %__tar -xvf %{SOURCE643}
  5612. %__tar -xvf %{SOURCE644}
  5613. %__tar -xvf %{SOURCE645}
  5614. %__tar -xvf %{SOURCE646}
  5615. %__tar -xvf %{SOURCE647}
  5616. %__tar -xvf %{SOURCE648}
  5617. %__tar -xvf %{SOURCE649}
  5618. %__tar -xvf %{SOURCE650}
  5619. %__tar -xvf %{SOURCE651}
  5620. %__tar -xvf %{SOURCE652}
  5621. %__tar -xvf %{SOURCE653}
  5622. %__tar -xvf %{SOURCE654}
  5623. %__tar -xvf %{SOURCE655}
  5624. %__tar -xvf %{SOURCE656}
  5625. %__tar -xvf %{SOURCE657}
  5626. %__tar -xvf %{SOURCE658}
  5627. %__tar -xvf %{SOURCE659}
  5628. %__tar -xvf %{SOURCE660}
  5629. %__tar -xvf %{SOURCE661}
  5630. %__tar -xvf %{SOURCE662}
  5631. %__tar -xvf %{SOURCE663}
  5632. %__tar -xvf %{SOURCE664}
  5633. %__tar -xvf %{SOURCE665}
  5634. %__tar -xvf %{SOURCE666}
  5635. %__tar -xvf %{SOURCE667}
  5636. %__tar -xvf %{SOURCE668}
  5637. %__tar -xvf %{SOURCE669}
  5638. %__tar -xvf %{SOURCE670}
  5639. %__tar -xvf %{SOURCE671}
  5640. %__tar -xvf %{SOURCE672}
  5641. %__tar -xvf %{SOURCE673}
  5642. %__tar -xvf %{SOURCE674}
  5643. %__tar -xvf %{SOURCE675}
  5644. %__tar -xvf %{SOURCE676}
  5645. %__tar -xvf %{SOURCE677}
  5646. %__tar -xvf %{SOURCE678}
  5647. %__tar -xvf %{SOURCE679}
  5648. %__tar -xvf %{SOURCE680}
  5649. %__tar -xvf %{SOURCE681}
  5650. %__tar -xvf %{SOURCE682}
  5651. %__tar -xvf %{SOURCE683}
  5652. %__tar -xvf %{SOURCE684}
  5653. %__tar -xvf %{SOURCE685}
  5654. %__tar -xvf %{SOURCE686}
  5655. %__tar -xvf %{SOURCE687}
  5656. %__tar -xvf %{SOURCE688}
  5657. %__tar -xvf %{SOURCE689}
  5658. %__tar -xvf %{SOURCE690}
  5659. %__tar -xvf %{SOURCE691}
  5660. %__tar -xvf %{SOURCE692}
  5661. %__tar -xvf %{SOURCE693}
  5662. %__tar -xvf %{SOURCE694}
  5663. %__tar -xvf %{SOURCE695}
  5664. %__tar -xvf %{SOURCE696}
  5665. %__tar -xvf %{SOURCE697}
  5666. %__tar -xvf %{SOURCE698}
  5667. %__tar -xvf %{SOURCE699}
  5668. %__tar -xvf %{SOURCE700}
  5669. %__tar -xvf %{SOURCE701}
  5670. %__tar -xvf %{SOURCE702}
  5671. %__tar -xvf %{SOURCE703}
  5672. %__tar -xvf %{SOURCE704}
  5673. %__tar -xvf %{SOURCE705}
  5674. %__tar -xvf %{SOURCE706}
  5675. %__tar -xvf %{SOURCE707}
  5676. %__tar -xvf %{SOURCE708}
  5677. %__tar -xvf %{SOURCE709}
  5678. %__tar -xvf %{SOURCE710}
  5679. %__tar -xvf %{SOURCE711}
  5680. %__tar -xvf %{SOURCE712}
  5681. %__tar -xvf %{SOURCE713}
  5682. %__tar -xvf %{SOURCE714}
  5683. %__tar -xvf %{SOURCE715}
  5684. %__tar -xvf %{SOURCE716}
  5685. %__tar -xvf %{SOURCE717}
  5686. %__tar -xvf %{SOURCE718}
  5687. %__tar -xvf %{SOURCE719}
  5688. %__tar -xvf %{SOURCE720}
  5689. %__tar -xvf %{SOURCE721}
  5690. %__tar -xvf %{SOURCE722}
  5691. %__tar -xvf %{SOURCE723}
  5692. %__tar -xvf %{SOURCE724}
  5693. %__tar -xvf %{SOURCE725}
  5694. %__tar -xvf %{SOURCE726}
  5695. %__tar -xvf %{SOURCE727}
  5696. %__tar -xvf %{SOURCE728}
  5697. %__tar -xvf %{SOURCE729}
  5698. %__tar -xvf %{SOURCE730}
  5699. %__tar -xvf %{SOURCE731}
  5700. %__tar -xvf %{SOURCE732}
  5701. %__tar -xvf %{SOURCE733}
  5702. %__tar -xvf %{SOURCE734}
  5703. %__tar -xvf %{SOURCE735}
  5704. %__tar -xvf %{SOURCE736}
  5705. %__tar -xvf %{SOURCE737}
  5706. %__tar -xvf %{SOURCE738}
  5707. %__tar -xvf %{SOURCE739}
  5708. %__tar -xvf %{SOURCE740}
  5709. %__tar -xvf %{SOURCE741}
  5710. %__tar -xvf %{SOURCE742}
  5711. %__tar -xvf %{SOURCE743}
  5712. %__tar -xvf %{SOURCE744}
  5713. %__tar -xvf %{SOURCE745}
  5714. %__tar -xvf %{SOURCE746}
  5715. %__tar -xvf %{SOURCE747}
  5716. %__tar -xvf %{SOURCE748}
  5717. %__tar -xvf %{SOURCE749}
  5718. %__tar -xvf %{SOURCE750}
  5719. %__tar -xvf %{SOURCE751}
  5720. %__tar -xvf %{SOURCE752}
  5721. %__tar -xvf %{SOURCE753}
  5722. %__tar -xvf %{SOURCE754}
  5723. %__tar -xvf %{SOURCE755}
  5724. %__tar -xvf %{SOURCE756}
  5725. %__tar -xvf %{SOURCE757}
  5726. %__tar -xvf %{SOURCE758}
  5727. %__tar -xvf %{SOURCE759}
  5728. %__tar -xvf %{SOURCE760}
  5729. %__tar -xvf %{SOURCE761}
  5730. %__tar -xvf %{SOURCE762}
  5731. %__tar -xvf %{SOURCE763}
  5732. %__tar -xvf %{SOURCE764}
  5733. %__tar -xvf %{SOURCE765}
  5734. %__tar -xvf %{SOURCE766}
  5735. %__tar -xvf %{SOURCE767}
  5736. %__tar -xvf %{SOURCE768}
  5737. %__tar -xvf %{SOURCE769}
  5738. %__tar -xvf %{SOURCE770}
  5739. %__tar -xvf %{SOURCE771}
  5740. %__tar -xvf %{SOURCE772}
  5741. %__tar -xvf %{SOURCE773}
  5742. %__tar -xvf %{SOURCE774}
  5743. %__tar -xvf %{SOURCE775}
  5744. %__tar -xvf %{SOURCE776}
  5745. %__tar -xvf %{SOURCE777}
  5746. %__tar -xvf %{SOURCE778}
  5747. %__tar -xvf %{SOURCE779}
  5748. %__tar -xvf %{SOURCE780}
  5749. %__tar -xvf %{SOURCE781}
  5750. %__tar -xvf %{SOURCE782}
  5751. %__tar -xvf %{SOURCE783}
  5752. %__tar -xvf %{SOURCE784}
  5753. %__tar -xvf %{SOURCE785}
  5754. %__tar -xvf %{SOURCE786}
  5755. %__tar -xvf %{SOURCE787}
  5756. %__tar -xvf %{SOURCE788}
  5757. %__tar -xvf %{SOURCE789}
  5758. %__tar -xvf %{SOURCE790}
  5759. %__tar -xvf %{SOURCE791}
  5760. %__tar -xvf %{SOURCE792}
  5761. %__tar -xvf %{SOURCE793}
  5762. %__tar -xvf %{SOURCE794}
  5763. %__tar -xvf %{SOURCE795}
  5764. %__tar -xvf %{SOURCE796}
  5765. %__tar -xvf %{SOURCE797}
  5766. %__tar -xvf %{SOURCE798}
  5767. %__tar -xvf %{SOURCE799}
  5768. %__tar -xvf %{SOURCE800}
  5769. %__tar -xvf %{SOURCE801}
  5770. %__tar -xvf %{SOURCE802}
  5771. %__tar -xvf %{SOURCE803}
  5772. %__tar -xvf %{SOURCE804}
  5773. %__tar -xvf %{SOURCE805}
  5774. %__tar -xvf %{SOURCE806}
  5775. %__tar -xvf %{SOURCE807}
  5776. %__tar -xvf %{SOURCE808}
  5777. %__tar -xvf %{SOURCE809}
  5778. %__tar -xvf %{SOURCE810}
  5779. %__tar -xvf %{SOURCE811}
  5780. %__tar -xvf %{SOURCE812}
  5781. %__tar -xvf %{SOURCE813}
  5782. %__tar -xvf %{SOURCE814}
  5783. %__tar -xvf %{SOURCE815}
  5784. %__tar -xvf %{SOURCE816}
  5785. %__tar -xvf %{SOURCE817}
  5786. %__tar -xvf %{SOURCE818}
  5787. %__tar -xvf %{SOURCE819}
  5788. %__tar -xvf %{SOURCE820}
  5789. %__tar -xvf %{SOURCE821}
  5790. %__tar -xvf %{SOURCE822}
  5791. %__tar -xvf %{SOURCE823}
  5792. %__tar -xvf %{SOURCE824}
  5793. %__tar -xvf %{SOURCE825}
  5794. %__tar -xvf %{SOURCE826}
  5795. %__tar -xvf %{SOURCE827}
  5796. %__tar -xvf %{SOURCE828}
  5797. %__tar -xvf %{SOURCE829}
  5798. %__tar -xvf %{SOURCE830}
  5799. %__tar -xvf %{SOURCE831}
  5800. %__tar -xvf %{SOURCE832}
  5801. %__tar -xvf %{SOURCE833}
  5802. %__tar -xvf %{SOURCE834}
  5803. %__tar -xvf %{SOURCE835}
  5804. %__tar -xvf %{SOURCE836}
  5805. %__tar -xvf %{SOURCE837}
  5806. %__tar -xvf %{SOURCE838}
  5807. %__tar -xvf %{SOURCE839}
  5808. %__tar -xvf %{SOURCE840}
  5809. %__tar -xvf %{SOURCE841}
  5810. %__tar -xvf %{SOURCE842}
  5811. %__tar -xvf %{SOURCE843}
  5812. %__tar -xvf %{SOURCE844}
  5813. %__tar -xvf %{SOURCE845}
  5814. %__tar -xvf %{SOURCE846}
  5815. %__tar -xvf %{SOURCE847}
  5816. %__tar -xvf %{SOURCE848}
  5817. %__tar -xvf %{SOURCE849}
  5818. %__tar -xvf %{SOURCE850}
  5819. %__tar -xvf %{SOURCE851}
  5820. %__tar -xvf %{SOURCE852}
  5821. %__tar -xvf %{SOURCE853}
  5822. %__tar -xvf %{SOURCE854}
  5823. %__tar -xvf %{SOURCE855}
  5824. %__tar -xvf %{SOURCE856}
  5825. %__tar -xvf %{SOURCE857}
  5826. %__tar -xvf %{SOURCE858}
  5827. %__tar -xvf %{SOURCE859}
  5828. %__tar -xvf %{SOURCE860}
  5829. %__tar -xvf %{SOURCE861}
  5830. %__tar -xvf %{SOURCE862}
  5831. %__tar -xvf %{SOURCE863}
  5832. %__tar -xvf %{SOURCE864}
  5833. %__tar -xvf %{SOURCE865}
  5834. %__tar -xvf %{SOURCE866}
  5835. %__tar -xvf %{SOURCE867}
  5836. %__tar -xvf %{SOURCE868}
  5837. %__tar -xvf %{SOURCE869}
  5838. %__tar -xvf %{SOURCE870}
  5839. %__tar -xvf %{SOURCE871}
  5840. %__tar -xvf %{SOURCE872}
  5841. %__tar -xvf %{SOURCE873}
  5842. %__tar -xvf %{SOURCE874}
  5843. %__tar -xvf %{SOURCE875}
  5844. %__tar -xvf %{SOURCE876}
  5845. %__tar -xvf %{SOURCE877}
  5846. %__tar -xvf %{SOURCE878}
  5847. %__tar -xvf %{SOURCE879}
  5848. %__tar -xvf %{SOURCE880}
  5849. %__tar -xvf %{SOURCE881}
  5850. %__tar -xvf %{SOURCE882}
  5851. %__tar -xvf %{SOURCE883}
  5852. %__tar -xvf %{SOURCE884}
  5853. %__tar -xvf %{SOURCE885}
  5854. %__tar -xvf %{SOURCE886}
  5855. %__tar -xvf %{SOURCE887}
  5856. %__tar -xvf %{SOURCE888}
  5857. %__tar -xvf %{SOURCE889}
  5858. %__tar -xvf %{SOURCE890}
  5859. %__tar -xvf %{SOURCE891}
  5860. %__tar -xvf %{SOURCE892}
  5861. %__tar -xvf %{SOURCE893}
  5862. %__tar -xvf %{SOURCE894}
  5863. %__tar -xvf %{SOURCE895}
  5864. %__tar -xvf %{SOURCE896}
  5865. %__tar -xvf %{SOURCE897}
  5866. %__tar -xvf %{SOURCE898}
  5867. %__tar -xvf %{SOURCE899}
  5868. %__tar -xvf %{SOURCE900}
  5869. %__tar -xvf %{SOURCE901}
  5870. %__tar -xvf %{SOURCE902}
  5871. %__tar -xvf %{SOURCE903}
  5872. %__tar -xvf %{SOURCE904}
  5873. %__tar -xvf %{SOURCE905}
  5874. %__tar -xvf %{SOURCE906}
  5875. %__tar -xvf %{SOURCE907}
  5876. %__tar -xvf %{SOURCE908}
  5877. %__tar -xvf %{SOURCE909}
  5878. %__tar -xvf %{SOURCE910}
  5879. %__tar -xvf %{SOURCE911}
  5880. %__tar -xvf %{SOURCE912}
  5881. %__tar -xvf %{SOURCE913}
  5882. %__tar -xvf %{SOURCE914}
  5883. %__tar -xvf %{SOURCE915}
  5884. %__tar -xvf %{SOURCE916}
  5885. %__tar -xvf %{SOURCE917}
  5886. %__tar -xvf %{SOURCE918}
  5887. %__tar -xvf %{SOURCE919}
  5888. %__tar -xvf %{SOURCE920}
  5889. %__tar -xvf %{SOURCE921}
  5890. %__tar -xvf %{SOURCE922}
  5891. %__tar -xvf %{SOURCE923}
  5892. %__tar -xvf %{SOURCE924}
  5893. %__tar -xvf %{SOURCE925}
  5894. %__tar -xvf %{SOURCE926}
  5895. %__tar -xvf %{SOURCE927}
  5896. %__tar -xvf %{SOURCE928}
  5897. %__tar -xvf %{SOURCE929}
  5898. %__tar -xvf %{SOURCE930}
  5899. %__tar -xvf %{SOURCE931}
  5900. %__tar -xvf %{SOURCE932}
  5901. %__tar -xvf %{SOURCE933}
  5902. %__tar -xvf %{SOURCE934}
  5903. %__tar -xvf %{SOURCE935}
  5904. %__tar -xvf %{SOURCE936}
  5905. %__tar -xvf %{SOURCE937}
  5906. %__tar -xvf %{SOURCE938}
  5907. %__tar -xvf %{SOURCE939}
  5908. %__tar -xvf %{SOURCE940}
  5909. %__tar -xvf %{SOURCE941}
  5910. %__tar -xvf %{SOURCE942}
  5911. %__tar -xvf %{SOURCE943}
  5912. %__tar -xvf %{SOURCE944}
  5913. %__tar -xvf %{SOURCE945}
  5914. %__tar -xvf %{SOURCE946}
  5915. %__tar -xvf %{SOURCE947}
  5916. %__tar -xvf %{SOURCE948}
  5917. %__tar -xvf %{SOURCE949}
  5918. %__tar -xvf %{SOURCE950}
  5919. %__tar -xvf %{SOURCE951}
  5920. %__tar -xvf %{SOURCE952}
  5921. %__tar -xvf %{SOURCE953}
  5922. %__tar -xvf %{SOURCE954}
  5923. %__tar -xvf %{SOURCE955}
  5924. %__tar -xvf %{SOURCE956}
  5925. %__tar -xvf %{SOURCE957}
  5926. %__tar -xvf %{SOURCE958}
  5927. %__tar -xvf %{SOURCE959}
  5928. %__tar -xvf %{SOURCE960}
  5929. %__tar -xvf %{SOURCE961}
  5930. %__tar -xvf %{SOURCE962}
  5931. %__tar -xvf %{SOURCE963}
  5932. %__tar -xvf %{SOURCE964}
  5933. %__tar -xvf %{SOURCE965}
  5934. %__tar -xvf %{SOURCE966}
  5935. %__tar -xvf %{SOURCE967}
  5936. %__tar -xvf %{SOURCE968}
  5937. %__tar -xvf %{SOURCE969}
  5938. %__tar -xvf %{SOURCE970}
  5939. %__tar -xvf %{SOURCE971}
  5940. %__tar -xvf %{SOURCE972}
  5941. %__tar -xvf %{SOURCE973}
  5942. %__tar -xvf %{SOURCE974}
  5943. %__tar -xvf %{SOURCE975}
  5944. %__tar -xvf %{SOURCE976}
  5945. %__tar -xvf %{SOURCE977}
  5946. %__tar -xvf %{SOURCE978}
  5947. %__tar -xvf %{SOURCE979}
  5948. %__tar -xvf %{SOURCE980}
  5949. %__tar -xvf %{SOURCE981}
  5950. %__tar -xvf %{SOURCE982}
  5951. %__tar -xvf %{SOURCE983}
  5952. %__tar -xvf %{SOURCE984}
  5953. %__tar -xvf %{SOURCE985}
  5954. %__tar -xvf %{SOURCE986}
  5955. %__tar -xvf %{SOURCE987}
  5956. %__tar -xvf %{SOURCE988}
  5957. %__tar -xvf %{SOURCE989}
  5958. %__tar -xvf %{SOURCE990}
  5959. %__tar -xvf %{SOURCE991}
  5960. %__tar -xvf %{SOURCE992}
  5961. %__tar -xvf %{SOURCE993}
  5962. %__tar -xvf %{SOURCE994}
  5963. %__tar -xvf %{SOURCE995}
  5964. %__tar -xvf %{SOURCE996}
  5965. %__tar -xvf %{SOURCE997}
  5966. %__tar -xvf %{SOURCE998}
  5967. %__tar -xvf %{SOURCE999}
  5968. %__tar -xvf %{SOURCE1000}
  5969. %__tar -xvf %{SOURCE1001}
  5970. %__tar -xvf %{SOURCE1002}
  5971. %__tar -xvf %{SOURCE1003}
  5972. %__tar -xvf %{SOURCE1004}
  5973. %__tar -xvf %{SOURCE1005}
  5974. %__tar -xvf %{SOURCE1006}
  5975. %__tar -xvf %{SOURCE1007}
  5976. %__tar -xvf %{SOURCE1008}
  5977. %__tar -xvf %{SOURCE1009}
  5978. %__tar -xvf %{SOURCE1010}
  5979. %__tar -xvf %{SOURCE1011}
  5980. %__tar -xvf %{SOURCE1012}
  5981. %__tar -xvf %{SOURCE1013}
  5982. %__tar -xvf %{SOURCE1014}
  5983. %__tar -xvf %{SOURCE1015}
  5984. %__tar -xvf %{SOURCE1016}
  5985. %__tar -xvf %{SOURCE1017}
  5986. %__tar -xvf %{SOURCE1018}
  5987. %__tar -xvf %{SOURCE1019}
  5988. %__tar -xvf %{SOURCE1020}
  5989. %__tar -xvf %{SOURCE1021}
  5990. %__tar -xvf %{SOURCE1022}
  5991. %__tar -xvf %{SOURCE1023}
  5992. %__tar -xvf %{SOURCE1024}
  5993. %__tar -xvf %{SOURCE1025}
  5994. %__tar -xvf %{SOURCE1026}
  5995. %__tar -xvf %{SOURCE1027}
  5996. %__tar -xvf %{SOURCE1028}
  5997. %__tar -xvf %{SOURCE1029}
  5998. %__tar -xvf %{SOURCE1030}
  5999. %__tar -xvf %{SOURCE1031}
  6000. %__tar -xvf %{SOURCE1032}
  6001. %__tar -xvf %{SOURCE1033}
  6002. %__tar -xvf %{SOURCE1034}
  6003. %__tar -xvf %{SOURCE1035}
  6004. %__tar -xvf %{SOURCE1036}
  6005. %__tar -xvf %{SOURCE1037}
  6006. %__tar -xvf %{SOURCE1038}
  6007. %__tar -xvf %{SOURCE1039}
  6008. %__tar -xvf %{SOURCE1040}
  6009. %__tar -xvf %{SOURCE1041}
  6010. %__tar -xvf %{SOURCE1042}
  6011. %__tar -xvf %{SOURCE1043}
  6012. %__tar -xvf %{SOURCE1044}
  6013. %__tar -xvf %{SOURCE1045}
  6014. %__tar -xvf %{SOURCE1046}
  6015. %__tar -xvf %{SOURCE1047}
  6016. %__tar -xvf %{SOURCE1048}
  6017. %__tar -xvf %{SOURCE1049}
  6018. %__tar -xvf %{SOURCE1050}
  6019. %__tar -xvf %{SOURCE1051}
  6020. %__tar -xvf %{SOURCE1052}
  6021. %__tar -xvf %{SOURCE1053}
  6022. %__tar -xvf %{SOURCE1054}
  6023. %__tar -xvf %{SOURCE1055}
  6024. %__tar -xvf %{SOURCE1056}
  6025. %__tar -xvf %{SOURCE1057}
  6026. %__tar -xvf %{SOURCE1058}
  6027. %__tar -xvf %{SOURCE1059}
  6028. %__tar -xvf %{SOURCE1060}
  6029. %__tar -xvf %{SOURCE1061}
  6030. %__tar -xvf %{SOURCE1062}
  6031. %__tar -xvf %{SOURCE1063}
  6032. %__tar -xvf %{SOURCE1064}
  6033. %__tar -xvf %{SOURCE1065}
  6034. %__tar -xvf %{SOURCE1066}
  6035. %__tar -xvf %{SOURCE1067}
  6036. %__tar -xvf %{SOURCE1068}
  6037. %__tar -xvf %{SOURCE1069}
  6038. %__tar -xvf %{SOURCE1070}
  6039. %__tar -xvf %{SOURCE1071}
  6040. %__tar -xvf %{SOURCE1072}
  6041. %__tar -xvf %{SOURCE1073}
  6042. %__tar -xvf %{SOURCE1074}
  6043. %__tar -xvf %{SOURCE1075}
  6044. %__tar -xvf %{SOURCE1076}
  6045. %__tar -xvf %{SOURCE1077}
  6046. %__tar -xvf %{SOURCE1078}
  6047. %__tar -xvf %{SOURCE1079}
  6048. %__tar -xvf %{SOURCE1080}
  6049. %__tar -xvf %{SOURCE1081}
  6050. %__tar -xvf %{SOURCE1082}
  6051. %__tar -xvf %{SOURCE1083}
  6052. %__tar -xvf %{SOURCE1084}
  6053. %__tar -xvf %{SOURCE1085}
  6054. %__tar -xvf %{SOURCE1086}
  6055. %__tar -xvf %{SOURCE1087}
  6056. %__tar -xvf %{SOURCE1088}
  6057. %__tar -xvf %{SOURCE1089}
  6058. %__tar -xvf %{SOURCE1090}
  6059. %__tar -xvf %{SOURCE1091}
  6060. %__tar -xvf %{SOURCE1092}
  6061. %__tar -xvf %{SOURCE1093}
  6062. %__tar -xvf %{SOURCE1094}
  6063. %__tar -xvf %{SOURCE1095}
  6064. %__tar -xvf %{SOURCE1096}
  6065. %__tar -xvf %{SOURCE1097}
  6066. %__tar -xvf %{SOURCE1098}
  6067. %__tar -xvf %{SOURCE1099}
  6068. %__tar -xvf %{SOURCE1100}
  6069. %__tar -xvf %{SOURCE1101}
  6070. %__tar -xvf %{SOURCE1102}
  6071. %__tar -xvf %{SOURCE1103}
  6072. %__tar -xvf %{SOURCE1104}
  6073. %__tar -xvf %{SOURCE1105}
  6074. %__tar -xvf %{SOURCE1106}
  6075. %__tar -xvf %{SOURCE1107}
  6076. %__tar -xvf %{SOURCE1108}
  6077. %__tar -xvf %{SOURCE1109}
  6078. %__tar -xvf %{SOURCE1110}
  6079. %__tar -xvf %{SOURCE1111}
  6080. %__tar -xvf %{SOURCE1112}
  6081. %__tar -xvf %{SOURCE1113}
  6082. %__tar -xvf %{SOURCE1114}
  6083. %__tar -xvf %{SOURCE1115}
  6084. %__tar -xvf %{SOURCE1116}
  6085. %__tar -xvf %{SOURCE1117}
  6086. %__tar -xvf %{SOURCE1118}
  6087. %__tar -xvf %{SOURCE1119}
  6088. %__tar -xvf %{SOURCE1120}
  6089. %__tar -xvf %{SOURCE1121}
  6090. %__tar -xvf %{SOURCE1122}
  6091. %__tar -xvf %{SOURCE1123}
  6092. %__tar -xvf %{SOURCE1124}
  6093. %__tar -xvf %{SOURCE1125}
  6094. %__tar -xvf %{SOURCE1126}
  6095. %__tar -xvf %{SOURCE1127}
  6096. %__tar -xvf %{SOURCE1128}
  6097. %__tar -xvf %{SOURCE1129}
  6098. %__tar -xvf %{SOURCE1130}
  6099. %__tar -xvf %{SOURCE1131}
  6100. %__tar -xvf %{SOURCE1132}
  6101. %__tar -xvf %{SOURCE1133}
  6102. %__tar -xvf %{SOURCE1134}
  6103. %__tar -xvf %{SOURCE1135}
  6104. %__tar -xvf %{SOURCE1136}
  6105. %__tar -xvf %{SOURCE1137}
  6106. %__tar -xvf %{SOURCE1138}
  6107. %__tar -xvf %{SOURCE1139}
  6108. %__tar -xvf %{SOURCE1140}
  6109. %__tar -xvf %{SOURCE1141}
  6110. %__tar -xvf %{SOURCE1142}
  6111. %__tar -xvf %{SOURCE1143}
  6112. %__tar -xvf %{SOURCE1144}
  6113. %__tar -xvf %{SOURCE1145}
  6114. %__tar -xvf %{SOURCE1146}
  6115. %__tar -xvf %{SOURCE1147}
  6116. %__tar -xvf %{SOURCE1148}
  6117. %__tar -xvf %{SOURCE1149}
  6118. %__tar -xvf %{SOURCE1150}
  6119. %__tar -xvf %{SOURCE1151}
  6120. %__tar -xvf %{SOURCE1152}
  6121. %__tar -xvf %{SOURCE1153}
  6122. %__tar -xvf %{SOURCE1154}
  6123. %__tar -xvf %{SOURCE1155}
  6124. %__tar -xvf %{SOURCE1156}
  6125. %__tar -xvf %{SOURCE1157}
  6126. %__tar -xvf %{SOURCE1158}
  6127. %__tar -xvf %{SOURCE1159}
  6128. %__tar -xvf %{SOURCE1160}
  6129. %__tar -xvf %{SOURCE1161}
  6130. %__tar -xvf %{SOURCE1162}
  6131. %__tar -xvf %{SOURCE1163}
  6132. %__tar -xvf %{SOURCE1164}
  6133. %__tar -xvf %{SOURCE1165}
  6134. %__tar -xvf %{SOURCE1166}
  6135. %__tar -xvf %{SOURCE1167}
  6136. %__tar -xvf %{SOURCE1168}
  6137. %__tar -xvf %{SOURCE1169}
  6138. %__tar -xvf %{SOURCE1170}
  6139. %__tar -xvf %{SOURCE1171}
  6140. %__tar -xvf %{SOURCE1172}
  6141. %__tar -xvf %{SOURCE1173}
  6142. %__tar -xvf %{SOURCE1174}
  6143. %__tar -xvf %{SOURCE1175}
  6144. %__tar -xvf %{SOURCE1176}
  6145. %__tar -xvf %{SOURCE1177}
  6146. %__tar -xvf %{SOURCE1178}
  6147. %__tar -xvf %{SOURCE1179}
  6148. %__tar -xvf %{SOURCE1180}
  6149. %__tar -xvf %{SOURCE1181}
  6150. %__tar -xvf %{SOURCE1182}
  6151. %__tar -xvf %{SOURCE1183}
  6152. %__tar -xvf %{SOURCE1184}
  6153. %__tar -xvf %{SOURCE1185}
  6154. %__tar -xvf %{SOURCE1186}
  6155. %__tar -xvf %{SOURCE1187}
  6156. %__tar -xvf %{SOURCE1188}
  6157. %__tar -xvf %{SOURCE1189}
  6158. %__tar -xvf %{SOURCE1190}
  6159. %__tar -xvf %{SOURCE1191}
  6160. %__tar -xvf %{SOURCE1192}
  6161. %__tar -xvf %{SOURCE1193}
  6162. %__tar -xvf %{SOURCE1194}
  6163. %__tar -xvf %{SOURCE1195}
  6164. %__tar -xvf %{SOURCE1196}
  6165. %__tar -xvf %{SOURCE1197}
  6166. %__tar -xvf %{SOURCE1198}
  6167. %__tar -xvf %{SOURCE1199}
  6168. %__tar -xvf %{SOURCE1200}
  6169. %__tar -xvf %{SOURCE1201}
  6170. %__tar -xvf %{SOURCE1202}
  6171. %__tar -xvf %{SOURCE1203}
  6172. %__tar -xvf %{SOURCE1204}
  6173. %__tar -xvf %{SOURCE1205}
  6174. %__tar -xvf %{SOURCE1206}
  6175. %__tar -xvf %{SOURCE1207}
  6176. %__tar -xvf %{SOURCE1208}
  6177. %__tar -xvf %{SOURCE1209}
  6178. %__tar -xvf %{SOURCE1210}
  6179. %__tar -xvf %{SOURCE1211}
  6180. %__tar -xvf %{SOURCE1212}
  6181. %__tar -xvf %{SOURCE1213}
  6182. %__tar -xvf %{SOURCE1214}
  6183. %__tar -xvf %{SOURCE1215}
  6184. %__tar -xvf %{SOURCE1216}
  6185. %__tar -xvf %{SOURCE1217}
  6186. %__tar -xvf %{SOURCE1218}
  6187. %__tar -xvf %{SOURCE1219}
  6188. %__tar -xvf %{SOURCE1220}
  6189. %__tar -xvf %{SOURCE1221}
  6190. %__tar -xvf %{SOURCE1222}
  6191. %__tar -xvf %{SOURCE1223}
  6192. %__tar -xvf %{SOURCE1224}
  6193. %__tar -xvf %{SOURCE1225}
  6194. %__tar -xvf %{SOURCE1226}
  6195. %__tar -xvf %{SOURCE1227}
  6196. %__tar -xvf %{SOURCE1228}
  6197. %__tar -xvf %{SOURCE1229}
  6198. %__tar -xvf %{SOURCE1230}
  6199. %__tar -xvf %{SOURCE1231}
  6200. %__tar -xvf %{SOURCE1232}
  6201. %__tar -xvf %{SOURCE1233}
  6202. %__tar -xvf %{SOURCE1234}
  6203. %__tar -xvf %{SOURCE1235}
  6204. %__tar -xvf %{SOURCE1236}
  6205. %__tar -xvf %{SOURCE1237}
  6206. %__tar -xvf %{SOURCE1238}
  6207. %__tar -xvf %{SOURCE1239}
  6208. %__tar -xvf %{SOURCE1240}
  6209. %__tar -xvf %{SOURCE1241}
  6210. %__tar -xvf %{SOURCE1242}
  6211. %__tar -xvf %{SOURCE1243}
  6212. %__tar -xvf %{SOURCE1244}
  6213. %__tar -xvf %{SOURCE1245}
  6214. %__tar -xvf %{SOURCE1246}
  6215. %__tar -xvf %{SOURCE1247}
  6216. %__tar -xvf %{SOURCE1248}
  6217. %__tar -xvf %{SOURCE1249}
  6218. %__tar -xvf %{SOURCE1250}
  6219. %__tar -xvf %{SOURCE1251}
  6220. %__tar -xvf %{SOURCE1252}
  6221. %__tar -xvf %{SOURCE1253}
  6222. %__tar -xvf %{SOURCE1254}
  6223. %__tar -xvf %{SOURCE1255}
  6224. %__tar -xvf %{SOURCE1256}
  6225. %__tar -xvf %{SOURCE1257}
  6226. %__tar -xvf %{SOURCE1258}
  6227. %__tar -xvf %{SOURCE1259}
  6228. %__tar -xvf %{SOURCE1260}
  6229. %__tar -xvf %{SOURCE1261}
  6230. %__tar -xvf %{SOURCE1262}
  6231. %__tar -xvf %{SOURCE1263}
  6232. %__tar -xvf %{SOURCE1264}
  6233. %__tar -xvf %{SOURCE1265}
  6234. %__tar -xvf %{SOURCE1266}
  6235. %__tar -xvf %{SOURCE1267}
  6236. %__tar -xvf %{SOURCE1268}
  6237. %__tar -xvf %{SOURCE1269}
  6238. %__tar -xvf %{SOURCE1270}
  6239. %__tar -xvf %{SOURCE1271}
  6240. %__tar -xvf %{SOURCE1272}
  6241. %__tar -xvf %{SOURCE1273}
  6242. %__tar -xvf %{SOURCE1274}
  6243. %__tar -xvf %{SOURCE1275}
  6244. %__tar -xvf %{SOURCE1276}
  6245. %__tar -xvf %{SOURCE1277}
  6246. %__tar -xvf %{SOURCE1278}
  6247. %__tar -xvf %{SOURCE1279}
  6248. %__tar -xvf %{SOURCE1280}
  6249. %__tar -xvf %{SOURCE1281}
  6250. %__tar -xvf %{SOURCE1282}
  6251. %__tar -xvf %{SOURCE1283}
  6252. %__tar -xvf %{SOURCE1284}
  6253. %__tar -xvf %{SOURCE1285}
  6254. %__tar -xvf %{SOURCE1286}
  6255. %__tar -xvf %{SOURCE1287}
  6256. %__tar -xvf %{SOURCE1288}
  6257. %__tar -xvf %{SOURCE1289}
  6258. %__tar -xvf %{SOURCE1290}
  6259. %__tar -xvf %{SOURCE1291}
  6260. %__tar -xvf %{SOURCE1292}
  6261. %__tar -xvf %{SOURCE1293}
  6262. %__tar -xvf %{SOURCE1294}
  6263. %__tar -xvf %{SOURCE1295}
  6264. %__tar -xvf %{SOURCE1296}
  6265. %__tar -xvf %{SOURCE1297}
  6266. %__tar -xvf %{SOURCE1298}
  6267. %__tar -xvf %{SOURCE1299}
  6268. %__tar -xvf %{SOURCE1300}
  6269. %__tar -xvf %{SOURCE1301}
  6270. %__tar -xvf %{SOURCE1302}
  6271. %__tar -xvf %{SOURCE1303}
  6272. %__tar -xvf %{SOURCE1304}
  6273. %__tar -xvf %{SOURCE1305}
  6274. %__tar -xvf %{SOURCE1306}
  6275. %__tar -xvf %{SOURCE1307}
  6276. %__tar -xvf %{SOURCE1308}
  6277. %__tar -xvf %{SOURCE1309}
  6278. %__tar -xvf %{SOURCE1310}
  6279. %__tar -xvf %{SOURCE1311}
  6280. %__tar -xvf %{SOURCE1312}
  6281. %__tar -xvf %{SOURCE1313}
  6282. %__tar -xvf %{SOURCE1314}
  6283. %__tar -xvf %{SOURCE1315}
  6284. %__tar -xvf %{SOURCE1316}
  6285. %__tar -xvf %{SOURCE1317}
  6286. %__tar -xvf %{SOURCE1318}
  6287. %__tar -xvf %{SOURCE1319}
  6288. %__tar -xvf %{SOURCE1320}
  6289. %__tar -xvf %{SOURCE1321}
  6290. %__tar -xvf %{SOURCE1322}
  6291. %__tar -xvf %{SOURCE1323}
  6292. %__tar -xvf %{SOURCE1324}
  6293. %__tar -xvf %{SOURCE1325}
  6294. %__tar -xvf %{SOURCE1326}
  6295. %__tar -xvf %{SOURCE1327}
  6296. %__tar -xvf %{SOURCE1328}
  6297. %__tar -xvf %{SOURCE1329}
  6298. %__tar -xvf %{SOURCE1330}
  6299. %__tar -xvf %{SOURCE1331}
  6300. %__tar -xvf %{SOURCE1332}
  6301. %__tar -xvf %{SOURCE1333}
  6302. %__tar -xvf %{SOURCE1334}
  6303. %__tar -xvf %{SOURCE1335}
  6304. %__tar -xvf %{SOURCE1336}
  6305. %__tar -xvf %{SOURCE1337}
  6306. %__tar -xvf %{SOURCE1338}
  6307. %__tar -xvf %{SOURCE1339}
  6308. %__tar -xvf %{SOURCE1340}
  6309. %__tar -xvf %{SOURCE1341}
  6310. %__tar -xvf %{SOURCE1342}
  6311. %__tar -xvf %{SOURCE1343}
  6312. %__tar -xvf %{SOURCE1344}
  6313. %__tar -xvf %{SOURCE1345}
  6314. %__tar -xvf %{SOURCE1346}
  6315. %__tar -xvf %{SOURCE1347}
  6316. %__tar -xvf %{SOURCE1348}
  6317. %__tar -xvf %{SOURCE1349}
  6318. %__tar -xvf %{SOURCE1350}
  6319. %__tar -xvf %{SOURCE1351}
  6320. %__tar -xvf %{SOURCE1352}
  6321. %__tar -xvf %{SOURCE1353}
  6322. %__tar -xvf %{SOURCE1354}
  6323. %__tar -xvf %{SOURCE1355}
  6324. %__tar -xvf %{SOURCE1356}
  6325. %__tar -xvf %{SOURCE1357}
  6326. %__tar -xvf %{SOURCE1358}
  6327. %__tar -xvf %{SOURCE1359}
  6328. %__tar -xvf %{SOURCE1360}
  6329. %__tar -xvf %{SOURCE1361}
  6330. %__tar -xvf %{SOURCE1362}
  6331. %__tar -xvf %{SOURCE1363}
  6332. %__tar -xvf %{SOURCE1364}
  6333. %__tar -xvf %{SOURCE1365}
  6334. %__tar -xvf %{SOURCE1366}
  6335. %__tar -xvf %{SOURCE1367}
  6336. %__tar -xvf %{SOURCE1368}
  6337. %__tar -xvf %{SOURCE1369}
  6338. %__tar -xvf %{SOURCE1370}
  6339. %__tar -xvf %{SOURCE1371}
  6340. %__tar -xvf %{SOURCE1372}
  6341. %__tar -xvf %{SOURCE1373}
  6342. %__tar -xvf %{SOURCE1374}
  6343. %__tar -xvf %{SOURCE1375}
  6344. %__tar -xvf %{SOURCE1376}
  6345. %__tar -xvf %{SOURCE1377}
  6346. %__tar -xvf %{SOURCE1378}
  6347. %__tar -xvf %{SOURCE1379}
  6348. %__tar -xvf %{SOURCE1380}
  6349. %__tar -xvf %{SOURCE1381}
  6350. %__tar -xvf %{SOURCE1382}
  6351. %__tar -xvf %{SOURCE1383}
  6352. %__tar -xvf %{SOURCE1384}
  6353. %__tar -xvf %{SOURCE1385}
  6354. %__tar -xvf %{SOURCE1386}
  6355. %__tar -xvf %{SOURCE1387}
  6356. %__tar -xvf %{SOURCE1388}
  6357. %__tar -xvf %{SOURCE1389}
  6358. %__tar -xvf %{SOURCE1390}
  6359. %__tar -xvf %{SOURCE1391}
  6360. %__tar -xvf %{SOURCE1392}
  6361. %__tar -xvf %{SOURCE1393}
  6362. %__tar -xvf %{SOURCE1394}
  6363. %__tar -xvf %{SOURCE1395}
  6364. %__tar -xvf %{SOURCE1396}
  6365. %__tar -xvf %{SOURCE1397}
  6366. %__tar -xvf %{SOURCE1398}
  6367. %__tar -xvf %{SOURCE1399}
  6368. %__tar -xvf %{SOURCE1400}
  6369. %__tar -xvf %{SOURCE1401}
  6370. %__tar -xvf %{SOURCE1402}
  6371. %__tar -xvf %{SOURCE1403}
  6372. %__tar -xvf %{SOURCE1404}
  6373. %__tar -xvf %{SOURCE1405}
  6374. %__tar -xvf %{SOURCE1406}
  6375. %__tar -xvf %{SOURCE1407}
  6376. %__tar -xvf %{SOURCE1408}
  6377. %__tar -xvf %{SOURCE1409}
  6378. %__tar -xvf %{SOURCE1410}
  6379. %__tar -xvf %{SOURCE1411}
  6380. %__tar -xvf %{SOURCE1412}
  6381. %__tar -xvf %{SOURCE1413}
  6382. %__tar -xvf %{SOURCE1414}
  6383. %__tar -xvf %{SOURCE1415}
  6384. %__tar -xvf %{SOURCE1416}
  6385. %__tar -xvf %{SOURCE1417}
  6386. %__tar -xvf %{SOURCE1418}
  6387. %__tar -xvf %{SOURCE1419}
  6388. %__tar -xvf %{SOURCE1420}
  6389. %__tar -xvf %{SOURCE1421}
  6390. %__tar -xvf %{SOURCE1422}
  6391. %__tar -xvf %{SOURCE1423}
  6392. %__tar -xvf %{SOURCE1424}
  6393. %__tar -xvf %{SOURCE1425}
  6394. %__tar -xvf %{SOURCE1426}
  6395. %__tar -xvf %{SOURCE1427}
  6396. %__tar -xvf %{SOURCE1428}
  6397. %__tar -xvf %{SOURCE1429}
  6398. %__tar -xvf %{SOURCE1430}
  6399. %__tar -xvf %{SOURCE1431}
  6400. %__tar -xvf %{SOURCE1432}
  6401. %__tar -xvf %{SOURCE1433}
  6402. %__tar -xvf %{SOURCE1434}
  6403. %__tar -xvf %{SOURCE1435}
  6404. %__tar -xvf %{SOURCE1436}
  6405. %__tar -xvf %{SOURCE1437}
  6406. %__tar -xvf %{SOURCE1438}
  6407. %__tar -xvf %{SOURCE1439}
  6408. %__tar -xvf %{SOURCE1440}
  6409. %__tar -xvf %{SOURCE1441}
  6410. %__tar -xvf %{SOURCE1442}
  6411. %__tar -xvf %{SOURCE1443}
  6412. %__tar -xvf %{SOURCE1444}
  6413. %__tar -xvf %{SOURCE1445}
  6414. %__tar -xvf %{SOURCE1446}
  6415. %__tar -xvf %{SOURCE1447}
  6416. %__tar -xvf %{SOURCE1448}
  6417. %__tar -xvf %{SOURCE1449}
  6418. %__tar -xvf %{SOURCE1450}
  6419. %__tar -xvf %{SOURCE1451}
  6420. %__tar -xvf %{SOURCE1452}
  6421. %__tar -xvf %{SOURCE1453}
  6422. %__tar -xvf %{SOURCE1454}
  6423. %__tar -xvf %{SOURCE1455}
  6424. %__tar -xvf %{SOURCE1456}
  6425. %__tar -xvf %{SOURCE1457}
  6426. %__tar -xvf %{SOURCE1458}
  6427. %__tar -xvf %{SOURCE1459}
  6428. %__tar -xvf %{SOURCE1460}
  6429. %__tar -xvf %{SOURCE1461}
  6430. %__tar -xvf %{SOURCE1462}
  6431. %__tar -xvf %{SOURCE1463}
  6432. %__tar -xvf %{SOURCE1464}
  6433. %__tar -xvf %{SOURCE1465}
  6434. %__tar -xvf %{SOURCE1466}
  6435. %__tar -xvf %{SOURCE1467}
  6436. %__tar -xvf %{SOURCE1468}
  6437. %__tar -xvf %{SOURCE1469}
  6438. %__tar -xvf %{SOURCE1470}
  6439. %__tar -xvf %{SOURCE1471}
  6440. %__tar -xvf %{SOURCE1472}
  6441. %__tar -xvf %{SOURCE1473}
  6442. %__tar -xvf %{SOURCE1474}
  6443. %__tar -xvf %{SOURCE1475}
  6444. %__tar -xvf %{SOURCE1476}
  6445. %__tar -xvf %{SOURCE1477}
  6446. %__tar -xvf %{SOURCE1478}
  6447. %__tar -xvf %{SOURCE1479}
  6448. %__tar -xvf %{SOURCE1480}
  6449. %__tar -xvf %{SOURCE1481}
  6450. %__tar -xvf %{SOURCE1482}
  6451. %__tar -xvf %{SOURCE1483}
  6452. %__tar -xvf %{SOURCE1484}
  6453. %__tar -xvf %{SOURCE1485}
  6454. %__tar -xvf %{SOURCE1486}
  6455. %__tar -xvf %{SOURCE1487}
  6456. %__tar -xvf %{SOURCE1488}
  6457. %__tar -xvf %{SOURCE1489}
  6458. %__tar -xvf %{SOURCE1490}
  6459. %__tar -xvf %{SOURCE1491}
  6460. %__tar -xvf %{SOURCE1492}
  6461. %__tar -xvf %{SOURCE1493}
  6462. %__tar -xvf %{SOURCE1494}
  6463. %__tar -xvf %{SOURCE1495}
  6464. %__tar -xvf %{SOURCE1496}
  6465. %__tar -xvf %{SOURCE1497}
  6466. %__tar -xvf %{SOURCE1498}
  6467. %__tar -xvf %{SOURCE1499}
  6468. %__tar -xvf %{SOURCE1500}
  6469. %__tar -xvf %{SOURCE1501}
  6470. %__tar -xvf %{SOURCE1502}
  6471. %__tar -xvf %{SOURCE1503}
  6472. %__tar -xvf %{SOURCE1504}
  6473. %__tar -xvf %{SOURCE1505}
  6474. %__tar -xvf %{SOURCE1506}
  6475. %__tar -xvf %{SOURCE1507}
  6476. %__tar -xvf %{SOURCE1508}
  6477. %__tar -xvf %{SOURCE1509}
  6478. %__tar -xvf %{SOURCE1510}
  6479. %__tar -xvf %{SOURCE1511}
  6480. %__tar -xvf %{SOURCE1512}
  6481. %__tar -xvf %{SOURCE1513}
  6482. %__tar -xvf %{SOURCE1514}
  6483. %__tar -xvf %{SOURCE1515}
  6484. %__tar -xvf %{SOURCE1516}
  6485. %__tar -xvf %{SOURCE1517}
  6486. %__tar -xvf %{SOURCE1518}
  6487. %__tar -xvf %{SOURCE1519}
  6488. %__tar -xvf %{SOURCE1520}
  6489. %__tar -xvf %{SOURCE1521}
  6490. %__tar -xvf %{SOURCE1522}
  6491. %__tar -xvf %{SOURCE1523}
  6492. %__tar -xvf %{SOURCE1524}
  6493. %__tar -xvf %{SOURCE1525}
  6494. %__tar -xvf %{SOURCE1526}
  6495. %__tar -xvf %{SOURCE1527}
  6496. %__tar -xvf %{SOURCE1528}
  6497. %__tar -xvf %{SOURCE1529}
  6498. %__tar -xvf %{SOURCE1530}
  6499. %__tar -xvf %{SOURCE1531}
  6500. %__tar -xvf %{SOURCE1532}
  6501. %__tar -xvf %{SOURCE1533}
  6502. %__tar -xvf %{SOURCE1534}
  6503. %__tar -xvf %{SOURCE1535}
  6504. %__tar -xvf %{SOURCE1536}
  6505. %__tar -xvf %{SOURCE1537}
  6506. %__tar -xvf %{SOURCE1538}
  6507. %__tar -xvf %{SOURCE1539}
  6508. %__tar -xvf %{SOURCE1540}
  6509. %__tar -xvf %{SOURCE1541}
  6510. %__tar -xvf %{SOURCE1542}
  6511. %__tar -xvf %{SOURCE1543}
  6512. %__tar -xvf %{SOURCE1544}
  6513. %__tar -xvf %{SOURCE1545}
  6514. %__tar -xvf %{SOURCE1546}
  6515. %__tar -xvf %{SOURCE1547}
  6516. %__tar -xvf %{SOURCE1548}
  6517. %__tar -xvf %{SOURCE1549}
  6518. %__tar -xvf %{SOURCE1550}
  6519. %__tar -xvf %{SOURCE1551}
  6520. %__tar -xvf %{SOURCE1552}
  6521. %__tar -xvf %{SOURCE1553}
  6522. %__tar -xvf %{SOURCE1554}
  6523. %__tar -xvf %{SOURCE1555}
  6524. %__tar -xvf %{SOURCE1556}
  6525. %__tar -xvf %{SOURCE1557}
  6526. %__tar -xvf %{SOURCE1558}
  6527. %__tar -xvf %{SOURCE1559}
  6528. %__tar -xvf %{SOURCE1560}
  6529. %__tar -xvf %{SOURCE1561}
  6530. %__tar -xvf %{SOURCE1562}
  6531. %__tar -xvf %{SOURCE1563}
  6532. %__tar -xvf %{SOURCE1564}
  6533. %__tar -xvf %{SOURCE1565}
  6534. %__tar -xvf %{SOURCE1566}
  6535. %__tar -xvf %{SOURCE1567}
  6536. %__tar -xvf %{SOURCE1568}
  6537. %__tar -xvf %{SOURCE1569}
  6538. %__tar -xvf %{SOURCE1570}
  6539. %__tar -xvf %{SOURCE1571}
  6540. %__tar -xvf %{SOURCE1572}
  6541. %__tar -xvf %{SOURCE1573}
  6542. %__tar -xvf %{SOURCE1574}
  6543. %__tar -xvf %{SOURCE1575}
  6544. %__tar -xvf %{SOURCE1576}
  6545. %__tar -xvf %{SOURCE1577}
  6546. %__tar -xvf %{SOURCE1578}
  6547. %__tar -xvf %{SOURCE1579}
  6548. %__tar -xvf %{SOURCE1580}
  6549. %__tar -xvf %{SOURCE1581}
  6550. %__tar -xvf %{SOURCE1582}
  6551. %__tar -xvf %{SOURCE1583}
  6552. %__tar -xvf %{SOURCE1584}
  6553. %__tar -xvf %{SOURCE1585}
  6554. %__tar -xvf %{SOURCE1586}
  6555. %__tar -xvf %{SOURCE1587}
  6556. %__tar -xvf %{SOURCE1588}
  6557. %__tar -xvf %{SOURCE1589}
  6558. %__tar -xvf %{SOURCE1590}
  6559. %__tar -xvf %{SOURCE1591}
  6560. %__tar -xvf %{SOURCE1592}
  6561. %__tar -xvf %{SOURCE1593}
  6562. %__tar -xvf %{SOURCE1594}
  6563. %__tar -xvf %{SOURCE1595}
  6564. %__tar -xvf %{SOURCE1596}
  6565. %__tar -xvf %{SOURCE1597}
  6566. %__tar -xvf %{SOURCE1598}
  6567. %__tar -xvf %{SOURCE1599}
  6568. %__tar -xvf %{SOURCE1600}
  6569. %__tar -xvf %{SOURCE1601}
  6570. %__tar -xvf %{SOURCE1602}
  6571. %__tar -xvf %{SOURCE1603}
  6572. %__tar -xvf %{SOURCE1604}
  6573. %__tar -xvf %{SOURCE1605}
  6574. %__tar -xvf %{SOURCE1606}
  6575. %__tar -xvf %{SOURCE1607}
  6576. %__tar -xvf %{SOURCE1608}
  6577. %__tar -xvf %{SOURCE1609}
  6578. %__tar -xvf %{SOURCE1610}
  6579. %__tar -xvf %{SOURCE1611}
  6580. %__tar -xvf %{SOURCE1612}
  6581. %__tar -xvf %{SOURCE1613}
  6582. %__tar -xvf %{SOURCE1614}
  6583. %__tar -xvf %{SOURCE1615}
  6584. %__tar -xvf %{SOURCE1616}
  6585. %__tar -xvf %{SOURCE1617}
  6586. %__tar -xvf %{SOURCE1618}
  6587. %__tar -xvf %{SOURCE1619}
  6588. %__tar -xvf %{SOURCE1620}
  6589. %__tar -xvf %{SOURCE1621}
  6590. %__tar -xvf %{SOURCE1622}
  6591. %__tar -xvf %{SOURCE1623}
  6592. %__tar -xvf %{SOURCE1624}
  6593. %__tar -xvf %{SOURCE1625}
  6594. %__tar -xvf %{SOURCE1626}
  6595. %__tar -xvf %{SOURCE1627}
  6596. %__tar -xvf %{SOURCE1628}
  6597. %__tar -xvf %{SOURCE1629}
  6598. %__tar -xvf %{SOURCE1630}
  6599. %__tar -xvf %{SOURCE1631}
  6600. %__tar -xvf %{SOURCE1632}
  6601. %__tar -xvf %{SOURCE1633}
  6602. %__tar -xvf %{SOURCE1634}
  6603. %__tar -xvf %{SOURCE1635}
  6604. %__tar -xvf %{SOURCE1636}
  6605. %__tar -xvf %{SOURCE1637}
  6606. %__tar -xvf %{SOURCE1638}
  6607. %__tar -xvf %{SOURCE1639}
  6608. %__tar -xvf %{SOURCE1640}
  6609. %__tar -xvf %{SOURCE1641}
  6610. %__tar -xvf %{SOURCE1642}
  6611. %__tar -xvf %{SOURCE1643}
  6612. %__tar -xvf %{SOURCE1644}
  6613. %__tar -xvf %{SOURCE1645}
  6614. %__tar -xvf %{SOURCE1646}
  6615. %__tar -xvf %{SOURCE1647}
  6616. %__tar -xvf %{SOURCE1648}
  6617. %__tar -xvf %{SOURCE1649}
  6618. %__tar -xvf %{SOURCE1650}
  6619. %__tar -xvf %{SOURCE1651}
  6620. %__tar -xvf %{SOURCE1652}
  6621. %__tar -xvf %{SOURCE1653}
  6622. %__tar -xvf %{SOURCE1654}
  6623. %__tar -xvf %{SOURCE1655}
  6624. %__tar -xvf %{SOURCE1656}
  6625. %__tar -xvf %{SOURCE1657}
  6626. %__tar -xvf %{SOURCE1658}
  6627. %__tar -xvf %{SOURCE1659}
  6628. %__tar -xvf %{SOURCE1660}
  6629. %__tar -xvf %{SOURCE1661}
  6630. %__tar -xvf %{SOURCE1662}
  6631. %__tar -xvf %{SOURCE1663}
  6632. %__tar -xvf %{SOURCE1664}
  6633. %__tar -xvf %{SOURCE1665}
  6634. %__tar -xvf %{SOURCE1666}
  6635. %__tar -xvf %{SOURCE1667}
  6636. %__tar -xvf %{SOURCE1668}
  6637. %__tar -xvf %{SOURCE1669}
  6638. %__tar -xvf %{SOURCE1670}
  6639. %__tar -xvf %{SOURCE1671}
  6640. %__tar -xvf %{SOURCE1672}
  6641. %__tar -xvf %{SOURCE1673}
  6642. %__tar -xvf %{SOURCE1674}
  6643. %__tar -xvf %{SOURCE1675}
  6644. %__tar -xvf %{SOURCE1676}
  6645. %__tar -xvf %{SOURCE1677}
  6646. %__tar -xvf %{SOURCE1678}
  6647. %__tar -xvf %{SOURCE1679}
  6648. %__tar -xvf %{SOURCE1680}
  6649. %__tar -xvf %{SOURCE1681}
  6650. %__tar -xvf %{SOURCE1682}
  6651. %__tar -xvf %{SOURCE1683}
  6652. %__tar -xvf %{SOURCE1684}
  6653. %__tar -xvf %{SOURCE1685}
  6654. %__tar -xvf %{SOURCE1686}
  6655. %__tar -xvf %{SOURCE1687}
  6656. %__tar -xvf %{SOURCE1688}
  6657. %__tar -xvf %{SOURCE1689}
  6658. %__tar -xvf %{SOURCE1690}
  6659. %__tar -xvf %{SOURCE1691}
  6660. %__tar -xvf %{SOURCE1692}
  6661. %__tar -xvf %{SOURCE1693}
  6662. %__tar -xvf %{SOURCE1694}
  6663. %__tar -xvf %{SOURCE1695}
  6664. %__tar -xvf %{SOURCE1696}
  6665. %__tar -xvf %{SOURCE1697}
  6666. %__tar -xvf %{SOURCE1698}
  6667. %__tar -xvf %{SOURCE1699}
  6668. %__tar -xvf %{SOURCE1700}
  6669. %__tar -xvf %{SOURCE1701}
  6670. %__tar -xvf %{SOURCE1702}
  6671. %__tar -xvf %{SOURCE1703}
  6672. %__tar -xvf %{SOURCE1704}
  6673. %__tar -xvf %{SOURCE1705}
  6674. %__tar -xvf %{SOURCE1706}
  6675. %__tar -xvf %{SOURCE1707}
  6676. %__tar -xvf %{SOURCE1708}
  6677. %__tar -xvf %{SOURCE1709}
  6678. %__tar -xvf %{SOURCE1710}
  6679. %__tar -xvf %{SOURCE1711}
  6680. %__tar -xvf %{SOURCE1712}
  6681. %__tar -xvf %{SOURCE1713}
  6682. %__tar -xvf %{SOURCE1714}
  6683. %__tar -xvf %{SOURCE1715}
  6684. %__tar -xvf %{SOURCE1716}
  6685. %__tar -xvf %{SOURCE1717}
  6686. %__tar -xvf %{SOURCE1718}
  6687. %__tar -xvf %{SOURCE1719}
  6688. %__tar -xvf %{SOURCE1720}
  6689. %__tar -xvf %{SOURCE1721}
  6690. %__tar -xvf %{SOURCE1722}
  6691. %__tar -xvf %{SOURCE1723}
  6692. %__tar -xvf %{SOURCE1724}
  6693. %__tar -xvf %{SOURCE1725}
  6694. %__tar -xvf %{SOURCE1726}
  6695. %__tar -xvf %{SOURCE1727}
  6696. %__tar -xvf %{SOURCE1728}
  6697. %__tar -xvf %{SOURCE1729}
  6698. %__tar -xvf %{SOURCE1730}
  6699. %__tar -xvf %{SOURCE1731}
  6700. %__tar -xvf %{SOURCE1732}
  6701. %__tar -xvf %{SOURCE1733}
  6702. %__tar -xvf %{SOURCE1734}
  6703. %__tar -xvf %{SOURCE1735}
  6704. %__tar -xvf %{SOURCE1736}
  6705. %__tar -xvf %{SOURCE1737}
  6706. %__tar -xvf %{SOURCE1738}
  6707. %__tar -xvf %{SOURCE1739}
  6708. %__tar -xvf %{SOURCE1740}
  6709. %__tar -xvf %{SOURCE1741}
  6710. %__tar -xvf %{SOURCE1742}
  6711. %__tar -xvf %{SOURCE1743}
  6712. %__tar -xvf %{SOURCE1744}
  6713. %__tar -xvf %{SOURCE1745}
  6714. %__tar -xvf %{SOURCE1746}
  6715. %__tar -xvf %{SOURCE1747}
  6716. %__tar -xvf %{SOURCE1748}
  6717. %__tar -xvf %{SOURCE1749}
  6718. %__tar -xvf %{SOURCE1750}
  6719. %__tar -xvf %{SOURCE1751}
  6720. %__tar -xvf %{SOURCE1752}
  6721. %__tar -xvf %{SOURCE1753}
  6722. %__tar -xvf %{SOURCE1754}
  6723. %__tar -xvf %{SOURCE1755}
  6724. %__tar -xvf %{SOURCE1756}
  6725. %__tar -xvf %{SOURCE1757}
  6726. %__tar -xvf %{SOURCE1758}
  6727. %__tar -xvf %{SOURCE1759}
  6728. %__tar -xvf %{SOURCE1760}
  6729. %__tar -xvf %{SOURCE1761}
  6730. %__tar -xvf %{SOURCE1762}
  6731. %__tar -xvf %{SOURCE1763}
  6732. %__tar -xvf %{SOURCE1764}
  6733. %__tar -xvf %{SOURCE1765}
  6734. %__tar -xvf %{SOURCE1766}
  6735. %__tar -xvf %{SOURCE1767}
  6736. %__tar -xvf %{SOURCE1768}
  6737. %__tar -xvf %{SOURCE1769}
  6738. %__tar -xvf %{SOURCE1770}
  6739. %__tar -xvf %{SOURCE1771}
  6740. %__tar -xvf %{SOURCE1772}
  6741. %__tar -xvf %{SOURCE1773}
  6742. %__tar -xvf %{SOURCE1774}
  6743. %__tar -xvf %{SOURCE1775}
  6744. %__tar -xvf %{SOURCE1776}
  6745. %__tar -xvf %{SOURCE1777}
  6746. %__tar -xvf %{SOURCE1778}
  6747. %__tar -xvf %{SOURCE1779}
  6748. %__tar -xvf %{SOURCE1780}
  6749. %__tar -xvf %{SOURCE1781}
  6750. %__tar -xvf %{SOURCE1782}
  6751. %__tar -xvf %{SOURCE1783}
  6752. %__tar -xvf %{SOURCE1784}
  6753. %__tar -xvf %{SOURCE1785}
  6754. %__tar -xvf %{SOURCE1786}
  6755. %__tar -xvf %{SOURCE1787}
  6756. %__tar -xvf %{SOURCE1788}
  6757. %__tar -xvf %{SOURCE1789}
  6758. %__tar -xvf %{SOURCE1790}
  6759. %__tar -xvf %{SOURCE1791}
  6760. %__tar -xvf %{SOURCE1792}
  6761. %__tar -xvf %{SOURCE1793}
  6762. %__tar -xvf %{SOURCE1794}
  6763. %__tar -xvf %{SOURCE1795}
  6764. %__tar -xvf %{SOURCE1796}
  6765. %__tar -xvf %{SOURCE1797}
  6766. %__tar -xvf %{SOURCE1798}
  6767. %__tar -xvf %{SOURCE1799}
  6768. %__tar -xvf %{SOURCE1800}
  6769. %__tar -xvf %{SOURCE1801}
  6770. %__tar -xvf %{SOURCE1802}
  6771. %__tar -xvf %{SOURCE1803}
  6772. %__tar -xvf %{SOURCE1804}
  6773. %__tar -xvf %{SOURCE1805}
  6774. %__tar -xvf %{SOURCE1806}
  6775. %__tar -xvf %{SOURCE1807}
  6776. %__tar -xvf %{SOURCE1808}
  6777. %__tar -xvf %{SOURCE1809}
  6778. %__tar -xvf %{SOURCE1810}
  6779. %__tar -xvf %{SOURCE1811}
  6780. %__tar -xvf %{SOURCE1812}
  6781. %__tar -xvf %{SOURCE1813}
  6782. %__tar -xvf %{SOURCE1814}
  6783. %__tar -xvf %{SOURCE1815}
  6784. %__tar -xvf %{SOURCE1816}
  6785. %__tar -xvf %{SOURCE1817}
  6786. %__tar -xvf %{SOURCE1818}
  6787. %__tar -xvf %{SOURCE1819}
  6788. %__tar -xvf %{SOURCE1820}
  6789. %__tar -xvf %{SOURCE1821}
  6790. %__tar -xvf %{SOURCE1822}
  6791. %__tar -xvf %{SOURCE1823}
  6792. %__tar -xvf %{SOURCE1824}
  6793. %__tar -xvf %{SOURCE1825}
  6794. %__tar -xvf %{SOURCE1826}
  6795. %__tar -xvf %{SOURCE1827}
  6796. %__tar -xvf %{SOURCE1828}
  6797. %__tar -xvf %{SOURCE1829}
  6798. %__tar -xvf %{SOURCE1830}
  6799. %__tar -xvf %{SOURCE1831}
  6800. %__tar -xvf %{SOURCE1832}
  6801. %__tar -xvf %{SOURCE1833}
  6802. %__tar -xvf %{SOURCE1834}
  6803. %__tar -xvf %{SOURCE1835}
  6804. %__tar -xvf %{SOURCE1836}
  6805. %__tar -xvf %{SOURCE1837}
  6806. %__tar -xvf %{SOURCE1838}
  6807. %__tar -xvf %{SOURCE1839}
  6808. %__tar -xvf %{SOURCE1840}
  6809. %__tar -xvf %{SOURCE1841}
  6810. %__tar -xvf %{SOURCE1842}
  6811. %__tar -xvf %{SOURCE1843}
  6812. %__tar -xvf %{SOURCE1844}
  6813. %__tar -xvf %{SOURCE1845}
  6814. %__tar -xvf %{SOURCE1846}
  6815. %__tar -xvf %{SOURCE1847}
  6816. %__tar -xvf %{SOURCE1848}
  6817. %__tar -xvf %{SOURCE1849}
  6818. %__tar -xvf %{SOURCE1850}
  6819. %__tar -xvf %{SOURCE1851}
  6820. %__tar -xvf %{SOURCE1852}
  6821. %__tar -xvf %{SOURCE1853}
  6822. %__tar -xvf %{SOURCE1854}
  6823. %__tar -xvf %{SOURCE1855}
  6824. %__tar -xvf %{SOURCE1856}
  6825. %__tar -xvf %{SOURCE1857}
  6826. %__tar -xvf %{SOURCE1858}
  6827. %__tar -xvf %{SOURCE1859}
  6828. %__tar -xvf %{SOURCE1860}
  6829. %__tar -xvf %{SOURCE1861}
  6830. %__tar -xvf %{SOURCE1862}
  6831. %__tar -xvf %{SOURCE1863}
  6832. %__tar -xvf %{SOURCE1864}
  6833. %__tar -xvf %{SOURCE1865}
  6834. %__tar -xvf %{SOURCE1866}
  6835. %__tar -xvf %{SOURCE1867}
  6836. %__tar -xvf %{SOURCE1868}
  6837. %__tar -xvf %{SOURCE1869}
  6838. %__tar -xvf %{SOURCE1870}
  6839. %__tar -xvf %{SOURCE1871}
  6840. %__tar -xvf %{SOURCE1872}
  6841. %__tar -xvf %{SOURCE1873}
  6842. %__tar -xvf %{SOURCE1874}
  6843. %__tar -xvf %{SOURCE1875}
  6844. %__tar -xvf %{SOURCE1876}
  6845. %__tar -xvf %{SOURCE1877}
  6846. %__tar -xvf %{SOURCE1878}
  6847. %__tar -xvf %{SOURCE1879}
  6848. %__tar -xvf %{SOURCE1880}
  6849. %__tar -xvf %{SOURCE1881}
  6850. %__tar -xvf %{SOURCE1882}
  6851. %__tar -xvf %{SOURCE1883}
  6852. %__tar -xvf %{SOURCE1884}
  6853. %__tar -xvf %{SOURCE1885}
  6854. %__tar -xvf %{SOURCE1886}
  6855. %__tar -xvf %{SOURCE1887}
  6856. %__tar -xvf %{SOURCE1888}
  6857. %__tar -xvf %{SOURCE1889}
  6858. %__tar -xvf %{SOURCE1890}
  6859. %__tar -xvf %{SOURCE1891}
  6860. %__tar -xvf %{SOURCE1892}
  6861. %__tar -xvf %{SOURCE1893}
  6862. %__tar -xvf %{SOURCE1894}
  6863. %__tar -xvf %{SOURCE1895}
  6864. %__tar -xvf %{SOURCE1896}
  6865. %__tar -xvf %{SOURCE1897}
  6866. %__tar -xvf %{SOURCE1898}
  6867. %__tar -xvf %{SOURCE1899}
  6868. %__tar -xvf %{SOURCE1900}
  6869. %__tar -xvf %{SOURCE1901}
  6870. %__tar -xvf %{SOURCE1902}
  6871. %__tar -xvf %{SOURCE1903}
  6872. %__tar -xvf %{SOURCE1904}
  6873. %__tar -xvf %{SOURCE1905}
  6874. %__tar -xvf %{SOURCE1906}
  6875. %__tar -xvf %{SOURCE1907}
  6876. %__tar -xvf %{SOURCE1908}
  6877. %__tar -xvf %{SOURCE1909}
  6878. %__tar -xvf %{SOURCE1910}
  6879. %__tar -xvf %{SOURCE1911}
  6880. %__tar -xvf %{SOURCE1912}
  6881. %__tar -xvf %{SOURCE1913}
  6882. %__tar -xvf %{SOURCE1914}
  6883. %__tar -xvf %{SOURCE1915}
  6884. %__tar -xvf %{SOURCE1916}
  6885. %__tar -xvf %{SOURCE1917}
  6886. %__tar -xvf %{SOURCE1918}
  6887. %__tar -xvf %{SOURCE1919}
  6888. %__tar -xvf %{SOURCE1920}
  6889. %__tar -xvf %{SOURCE1921}
  6890. %__tar -xvf %{SOURCE1922}
  6891. %__tar -xvf %{SOURCE1923}
  6892. %__tar -xvf %{SOURCE1924}
  6893. %__tar -xvf %{SOURCE1925}
  6894. %__tar -xvf %{SOURCE1926}
  6895. %__tar -xvf %{SOURCE1927}
  6896. %__tar -xvf %{SOURCE1928}
  6897. %__tar -xvf %{SOURCE1929}
  6898. %__tar -xvf %{SOURCE1930}
  6899. %__tar -xvf %{SOURCE1931}
  6900. %__tar -xvf %{SOURCE1932}
  6901. %__tar -xvf %{SOURCE1933}
  6902. %__tar -xvf %{SOURCE1934}
  6903. %__tar -xvf %{SOURCE1935}
  6904. %__tar -xvf %{SOURCE1936}
  6905. %__tar -xvf %{SOURCE1937}
  6906. %__tar -xvf %{SOURCE1938}
  6907. %__tar -xvf %{SOURCE1939}
  6908. %__tar -xvf %{SOURCE1940}
  6909. %__tar -xvf %{SOURCE1941}
  6910. %__tar -xvf %{SOURCE1942}
  6911. %__tar -xvf %{SOURCE1943}
  6912. %__tar -xvf %{SOURCE1944}
  6913. %__tar -xvf %{SOURCE1945}
  6914. %__tar -xvf %{SOURCE1946}
  6915. %__tar -xvf %{SOURCE1947}
  6916. %__tar -xvf %{SOURCE1948}
  6917. %__tar -xvf %{SOURCE1949}
  6918. %__tar -xvf %{SOURCE1950}
  6919. %__tar -xvf %{SOURCE1951}
  6920. %__tar -xvf %{SOURCE1952}
  6921. %__tar -xvf %{SOURCE1953}
  6922. %__tar -xvf %{SOURCE1954}
  6923. %__tar -xvf %{SOURCE1955}
  6924. %__tar -xvf %{SOURCE1956}
  6925. %__tar -xvf %{SOURCE1957}
  6926. %__tar -xvf %{SOURCE1958}
  6927. %__tar -xvf %{SOURCE1959}
  6928. %__tar -xvf %{SOURCE1960}
  6929. %__tar -xvf %{SOURCE1961}
  6930. %__tar -xvf %{SOURCE1962}
  6931. %__tar -xvf %{SOURCE1963}
  6932. %__tar -xvf %{SOURCE1964}
  6933. %__tar -xvf %{SOURCE1965}
  6934. %__tar -xvf %{SOURCE1966}
  6935. %__tar -xvf %{SOURCE1967}
  6936. %__tar -xvf %{SOURCE1968}
  6937. %__tar -xvf %{SOURCE1969}
  6938. %__tar -xvf %{SOURCE1970}
  6939. %__tar -xvf %{SOURCE1971}
  6940. %__tar -xvf %{SOURCE1972}
  6941. %__tar -xvf %{SOURCE1973}
  6942. %__tar -xvf %{SOURCE1974}
  6943. %__tar -xvf %{SOURCE1975}
  6944. %__tar -xvf %{SOURCE1976}
  6945. %__tar -xvf %{SOURCE1977}
  6946. %__tar -xvf %{SOURCE1978}
  6947. %__tar -xvf %{SOURCE1979}
  6948. %__tar -xvf %{SOURCE1980}
  6949. %__tar -xvf %{SOURCE1981}
  6950. %__tar -xvf %{SOURCE1982}
  6951. %__tar -xvf %{SOURCE1983}
  6952. %__tar -xvf %{SOURCE1984}
  6953. %__tar -xvf %{SOURCE1985}
  6954. %__tar -xvf %{SOURCE1986}
  6955. %__tar -xvf %{SOURCE1987}
  6956. %__tar -xvf %{SOURCE1988}
  6957. %__tar -xvf %{SOURCE1989}
  6958. %__tar -xvf %{SOURCE1990}
  6959. %__tar -xvf %{SOURCE1991}
  6960. %__tar -xvf %{SOURCE1992}
  6961. %__tar -xvf %{SOURCE1993}
  6962. %__tar -xvf %{SOURCE1994}
  6963. %__tar -xvf %{SOURCE1995}
  6964. %__tar -xvf %{SOURCE1996}
  6965. %__tar -xvf %{SOURCE1997}
  6966. %__tar -xvf %{SOURCE1998}
  6967. %__tar -xvf %{SOURCE1999}
  6968. %__tar -xvf %{SOURCE2000}
  6969. %__tar -xvf %{SOURCE2001}
  6970. %__tar -xvf %{SOURCE2002}
  6971. %__tar -xvf %{SOURCE2003}
  6972. %__tar -xvf %{SOURCE2004}
  6973. %__tar -xvf %{SOURCE2005}
  6974. %__tar -xvf %{SOURCE2006}
  6975. %__tar -xvf %{SOURCE2007}
  6976. %__tar -xvf %{SOURCE2008}
  6977. %__tar -xvf %{SOURCE2009}
  6978. %__tar -xvf %{SOURCE2010}
  6979. %__tar -xvf %{SOURCE2011}
  6980. %__tar -xvf %{SOURCE2012}
  6981. %__tar -xvf %{SOURCE2013}
  6982. %__tar -xvf %{SOURCE2014}
  6983. %__tar -xvf %{SOURCE2015}
  6984. %__tar -xvf %{SOURCE2016}
  6985. %__tar -xvf %{SOURCE2017}
  6986. %__tar -xvf %{SOURCE2018}
  6987. %__tar -xvf %{SOURCE2019}
  6988. %__tar -xvf %{SOURCE2020}
  6989. %__tar -xvf %{SOURCE2021}
  6990. %__tar -xvf %{SOURCE2022}
  6991. %__tar -xvf %{SOURCE2023}
  6992. %__tar -xvf %{SOURCE2024}
  6993. %__tar -xvf %{SOURCE2025}
  6994. %__tar -xvf %{SOURCE2026}
  6995. %__tar -xvf %{SOURCE2027}
  6996. %__tar -xvf %{SOURCE2028}
  6997. %__tar -xvf %{SOURCE2029}
  6998. %__tar -xvf %{SOURCE2030}
  6999. %__tar -xvf %{SOURCE2031}
  7000. %__tar -xvf %{SOURCE2032}
  7001. %__tar -xvf %{SOURCE2033}
  7002. %__tar -xvf %{SOURCE2034}
  7003. %__tar -xvf %{SOURCE2035}
  7004. %__tar -xvf %{SOURCE2036}
  7005. %__tar -xvf %{SOURCE2037}
  7006. %__tar -xvf %{SOURCE2038}
  7007. %__tar -xvf %{SOURCE2039}
  7008. %__tar -xvf %{SOURCE2040}
  7009. %__tar -xvf %{SOURCE2041}
  7010. %__tar -xvf %{SOURCE2042}
  7011. %__tar -xvf %{SOURCE2043}
  7012. %__tar -xvf %{SOURCE2044}
  7013. %__tar -xvf %{SOURCE2045}
  7014. %__tar -xvf %{SOURCE2046}
  7015. %__tar -xvf %{SOURCE2047}
  7016. %__tar -xvf %{SOURCE2048}
  7017. %__tar -xvf %{SOURCE2049}
  7018. %__tar -xvf %{SOURCE2050}
  7019. %__tar -xvf %{SOURCE2051}
  7020. %__tar -xvf %{SOURCE2052}
  7021. %__tar -xvf %{SOURCE2053}
  7022. %__tar -xvf %{SOURCE2054}
  7023. %__tar -xvf %{SOURCE2055}
  7024. %__tar -xvf %{SOURCE2056}
  7025. %__tar -xvf %{SOURCE2057}
  7026. %__tar -xvf %{SOURCE2058}
  7027. %__tar -xvf %{SOURCE2059}
  7028. %__tar -xvf %{SOURCE2060}
  7029. %__tar -xvf %{SOURCE2061}
  7030. %__tar -xvf %{SOURCE2062}
  7031. %__tar -xvf %{SOURCE2063}
  7032. %__tar -xvf %{SOURCE2064}
  7033. %__tar -xvf %{SOURCE2065}
  7034. %__tar -xvf %{SOURCE2066}
  7035. %__tar -xvf %{SOURCE2067}
  7036. %__tar -xvf %{SOURCE2068}
  7037. %__tar -xvf %{SOURCE2069}
  7038. %__tar -xvf %{SOURCE2070}
  7039. %__tar -xvf %{SOURCE2071}
  7040. %__tar -xvf %{SOURCE2072}
  7041. %__tar -xvf %{SOURCE2073}
  7042. %__tar -xvf %{SOURCE2074}
  7043. %__tar -xvf %{SOURCE2075}
  7044. %__tar -xvf %{SOURCE2076}
  7045. %__tar -xvf %{SOURCE2077}
  7046. %__tar -xvf %{SOURCE2078}
  7047. %__tar -xvf %{SOURCE2079}
  7048. %__tar -xvf %{SOURCE2080}
  7049. %__tar -xvf %{SOURCE2081}
  7050. %__tar -xvf %{SOURCE2082}
  7051. %__tar -xvf %{SOURCE2083}
  7052. %__tar -xvf %{SOURCE2084}
  7053. %__tar -xvf %{SOURCE2085}
  7054. %__tar -xvf %{SOURCE2086}
  7055. %__tar -xvf %{SOURCE2087}
  7056. %__tar -xvf %{SOURCE2088}
  7057. %__tar -xvf %{SOURCE2089}
  7058. %__tar -xvf %{SOURCE2090}
  7059. %__tar -xvf %{SOURCE2091}
  7060. %__tar -xvf %{SOURCE2092}
  7061. %__tar -xvf %{SOURCE2093}
  7062. %__tar -xvf %{SOURCE2094}
  7063. %__tar -xvf %{SOURCE2095}
  7064. %__tar -xvf %{SOURCE2096}
  7065. %__tar -xvf %{SOURCE2097}
  7066. %__tar -xvf %{SOURCE2098}
  7067. %__tar -xvf %{SOURCE2099}
  7068. %__tar -xvf %{SOURCE2100}
  7069. %__tar -xvf %{SOURCE2101}
  7070. %__tar -xvf %{SOURCE2102}
  7071. %__tar -xvf %{SOURCE2103}
  7072. %__tar -xvf %{SOURCE2104}
  7073. %__tar -xvf %{SOURCE2105}
  7074. %__tar -xvf %{SOURCE2106}
  7075. %__tar -xvf %{SOURCE2107}
  7076. %__tar -xvf %{SOURCE2108}
  7077. %__tar -xvf %{SOURCE2109}
  7078. %__tar -xvf %{SOURCE2110}
  7079. %__tar -xvf %{SOURCE2111}
  7080. %__tar -xvf %{SOURCE2112}
  7081. %__tar -xvf %{SOURCE2113}
  7082. %__tar -xvf %{SOURCE2114}
  7083. %__tar -xvf %{SOURCE2115}
  7084. %__tar -xvf %{SOURCE2116}
  7085. %__tar -xvf %{SOURCE2117}
  7086. %__tar -xvf %{SOURCE2118}
  7087. %__tar -xvf %{SOURCE2119}
  7088. %__tar -xvf %{SOURCE2120}
  7089. %__tar -xvf %{SOURCE2121}
  7090. %__tar -xvf %{SOURCE2122}
  7091. %__tar -xvf %{SOURCE2123}
  7092. %__tar -xvf %{SOURCE2124}
  7093. %__tar -xvf %{SOURCE2125}
  7094. %__tar -xvf %{SOURCE2126}
  7095. %__tar -xvf %{SOURCE2127}
  7096. %__tar -xvf %{SOURCE2128}
  7097. %__tar -xvf %{SOURCE2129}
  7098. %__tar -xvf %{SOURCE2130}
  7099. %__tar -xvf %{SOURCE2131}
  7100. %__tar -xvf %{SOURCE2132}
  7101. %__tar -xvf %{SOURCE2133}
  7102. %__tar -xvf %{SOURCE2134}
  7103. %__tar -xvf %{SOURCE2135}
  7104. %__tar -xvf %{SOURCE2136}
  7105. %__tar -xvf %{SOURCE2137}
  7106. %__tar -xvf %{SOURCE2138}
  7107. %__tar -xvf %{SOURCE2139}
  7108. %__tar -xvf %{SOURCE2140}
  7109. %__tar -xvf %{SOURCE2141}
  7110. %__tar -xvf %{SOURCE2142}
  7111. %__tar -xvf %{SOURCE2143}
  7112. %__tar -xvf %{SOURCE2144}
  7113. %__tar -xvf %{SOURCE2145}
  7114. %__tar -xvf %{SOURCE2146}
  7115. %__tar -xvf %{SOURCE2147}
  7116. %__tar -xvf %{SOURCE2148}
  7117. %__tar -xvf %{SOURCE2149}
  7118. %__tar -xvf %{SOURCE2150}
  7119. %__tar -xvf %{SOURCE2151}
  7120. %__tar -xvf %{SOURCE2152}
  7121. %__tar -xvf %{SOURCE2153}
  7122. %__tar -xvf %{SOURCE2154}
  7123. %__tar -xvf %{SOURCE2155}
  7124. %__tar -xvf %{SOURCE2156}
  7125. %__tar -xvf %{SOURCE2157}
  7126. %__tar -xvf %{SOURCE2158}
  7127. %__tar -xvf %{SOURCE2159}
  7128. %__tar -xvf %{SOURCE2160}
  7129. %__tar -xvf %{SOURCE2161}
  7130. %__tar -xvf %{SOURCE2162}
  7131. %__tar -xvf %{SOURCE2163}
  7132. %__tar -xvf %{SOURCE2164}
  7133. %__tar -xvf %{SOURCE2165}
  7134. %__tar -xvf %{SOURCE2166}
  7135. %__tar -xvf %{SOURCE2167}
  7136. %__tar -xvf %{SOURCE2168}
  7137. %__tar -xvf %{SOURCE2169}
  7138. %__tar -xvf %{SOURCE2170}
  7139. %__tar -xvf %{SOURCE2171}
  7140. %__tar -xvf %{SOURCE2172}
  7141. %__tar -xvf %{SOURCE2173}
  7142. %__tar -xvf %{SOURCE2174}
  7143. %__tar -xvf %{SOURCE2175}
  7144. %__tar -xvf %{SOURCE2176}
  7145. %__tar -xvf %{SOURCE2177}
  7146. %__tar -xvf %{SOURCE2178}
  7147. %__tar -xvf %{SOURCE2179}
  7148. %__tar -xvf %{SOURCE2180}
  7149. %__tar -xvf %{SOURCE2181}
  7150. %__tar -xvf %{SOURCE2182}
  7151. %__tar -xvf %{SOURCE2183}
  7152. %__tar -xvf %{SOURCE2184}
  7153. %__tar -xvf %{SOURCE2185}
  7154. %__tar -xvf %{SOURCE2186}
  7155. %__tar -xvf %{SOURCE2187}
  7156. %__tar -xvf %{SOURCE2188}
  7157. %__tar -xvf %{SOURCE2189}
  7158. %__tar -xvf %{SOURCE2190}
  7159. %__tar -xvf %{SOURCE2191}
  7160. %__tar -xvf %{SOURCE2192}
  7161. %__tar -xvf %{SOURCE2193}
  7162. %__tar -xvf %{SOURCE2194}
  7163. %__tar -xvf %{SOURCE2195}
  7164. %__tar -xvf %{SOURCE2196}
  7165. %__tar -xvf %{SOURCE2197}
  7166. %__tar -xvf %{SOURCE2198}
  7167. %__tar -xvf %{SOURCE2199}
  7168. %__tar -xvf %{SOURCE2200}
  7169. %__tar -xvf %{SOURCE2201}
  7170. %__tar -xvf %{SOURCE2202}
  7171. %__tar -xvf %{SOURCE2203}
  7172. %__tar -xvf %{SOURCE2204}
  7173. %__tar -xvf %{SOURCE2205}
  7174. %__tar -xvf %{SOURCE2206}
  7175. %__tar -xvf %{SOURCE2207}
  7176. %__tar -xvf %{SOURCE2208}
  7177. %__tar -xvf %{SOURCE2209}
  7178. %__tar -xvf %{SOURCE2210}
  7179. %__tar -xvf %{SOURCE2211}
  7180. %__tar -xvf %{SOURCE2212}
  7181. %__tar -xvf %{SOURCE2213}
  7182. %__tar -xvf %{SOURCE2214}
  7183. %__tar -xvf %{SOURCE2215}
  7184. %__tar -xvf %{SOURCE2216}
  7185. %__tar -xvf %{SOURCE2217}
  7186. %__tar -xvf %{SOURCE2218}
  7187. %__tar -xvf %{SOURCE2219}
  7188. %__tar -xvf %{SOURCE2220}
  7189. %__tar -xvf %{SOURCE2221}
  7190. %__tar -xvf %{SOURCE2222}
  7191. %__tar -xvf %{SOURCE2223}
  7192. %__tar -xvf %{SOURCE2224}
  7193. %__tar -xvf %{SOURCE2225}
  7194. %__tar -xvf %{SOURCE2226}
  7195. %__tar -xvf %{SOURCE2227}
  7196. %__tar -xvf %{SOURCE2228}
  7197. %__tar -xvf %{SOURCE2229}
  7198. %__tar -xvf %{SOURCE2230}
  7199. %__tar -xvf %{SOURCE2231}
  7200. %__tar -xvf %{SOURCE2232}
  7201. %__tar -xvf %{SOURCE2233}
  7202. %__tar -xvf %{SOURCE2234}
  7203. %__tar -xvf %{SOURCE2235}
  7204. %__tar -xvf %{SOURCE2236}
  7205. %__tar -xvf %{SOURCE2237}
  7206. %__tar -xvf %{SOURCE2238}
  7207. %__tar -xvf %{SOURCE2239}
  7208. %__tar -xvf %{SOURCE2240}
  7209. %__tar -xvf %{SOURCE2241}
  7210. %__tar -xvf %{SOURCE2242}
  7211. %__tar -xvf %{SOURCE2243}
  7212. %__tar -xvf %{SOURCE2244}
  7213. %__tar -xvf %{SOURCE2245}
  7214. %__tar -xvf %{SOURCE2246}
  7215. %__tar -xvf %{SOURCE2247}
  7216. %__tar -xvf %{SOURCE2248}
  7217. %__tar -xvf %{SOURCE2249}
  7218. %__tar -xvf %{SOURCE2250}
  7219. %__tar -xvf %{SOURCE2251}
  7220. %__tar -xvf %{SOURCE2252}
  7221. %__tar -xvf %{SOURCE2253}
  7222. %__tar -xvf %{SOURCE2254}
  7223. %__tar -xvf %{SOURCE2255}
  7224. %__tar -xvf %{SOURCE2256}
  7225. %__tar -xvf %{SOURCE2257}
  7226. %__tar -xvf %{SOURCE2258}
  7227. %__tar -xvf %{SOURCE2259}
  7228. %__tar -xvf %{SOURCE2260}
  7229. %__tar -xvf %{SOURCE2261}
  7230. %__tar -xvf %{SOURCE2262}
  7231. %__tar -xvf %{SOURCE2263}
  7232. %__tar -xvf %{SOURCE2264}
  7233. %__tar -xvf %{SOURCE2265}
  7234. %__tar -xvf %{SOURCE2266}
  7235. %__tar -xvf %{SOURCE2267}
  7236. %__tar -xvf %{SOURCE2268}
  7237. %__tar -xvf %{SOURCE2269}
  7238. %__tar -xvf %{SOURCE2270}
  7239. %__tar -xvf %{SOURCE2271}
  7240. %__tar -xvf %{SOURCE2272}
  7241. %__tar -xvf %{SOURCE2273}
  7242. %__tar -xvf %{SOURCE2274}
  7243. %__tar -xvf %{SOURCE2275}
  7244. %__tar -xvf %{SOURCE2276}
  7245. %__tar -xvf %{SOURCE2277}
  7246. %__tar -xvf %{SOURCE2278}
  7247. %__tar -xvf %{SOURCE2279}
  7248. %__tar -xvf %{SOURCE2280}
  7249. %__tar -xvf %{SOURCE2281}
  7250. %__tar -xvf %{SOURCE2282}
  7251. %__tar -xvf %{SOURCE2283}
  7252. %__tar -xvf %{SOURCE2284}
  7253. %__tar -xvf %{SOURCE2285}
  7254. %__tar -xvf %{SOURCE2286}
  7255. %__tar -xvf %{SOURCE2287}
  7256. %__tar -xvf %{SOURCE2288}
  7257. %__tar -xvf %{SOURCE2289}
  7258. %__tar -xvf %{SOURCE2290}
  7259. %__tar -xvf %{SOURCE2291}
  7260. %__tar -xvf %{SOURCE2292}
  7261. %__tar -xvf %{SOURCE2293}
  7262. %__tar -xvf %{SOURCE2294}
  7263. %__tar -xvf %{SOURCE2295}
  7264. %__tar -xvf %{SOURCE2296}
  7265. %__tar -xvf %{SOURCE2297}
  7266. %__tar -xvf %{SOURCE2298}
  7267. %__tar -xvf %{SOURCE2299}
  7268. %__tar -xvf %{SOURCE2300}
  7269. %__tar -xvf %{SOURCE2301}
  7270. %__tar -xvf %{SOURCE2302}
  7271. %__tar -xvf %{SOURCE2303}
  7272. %__tar -xvf %{SOURCE2304}
  7273. %__tar -xvf %{SOURCE2305}
  7274. %__tar -xvf %{SOURCE2306}
  7275. %__tar -xvf %{SOURCE2307}
  7276. %__tar -xvf %{SOURCE2308}
  7277. %__tar -xvf %{SOURCE2309}
  7278. %__tar -xvf %{SOURCE2310}
  7279. %__tar -xvf %{SOURCE2311}
  7280. %__tar -xvf %{SOURCE2312}
  7281. %__tar -xvf %{SOURCE2313}
  7282. %__tar -xvf %{SOURCE2314}
  7283. %__tar -xvf %{SOURCE2315}
  7284. %__tar -xvf %{SOURCE2316}
  7285. %__tar -xvf %{SOURCE2317}
  7286. %__tar -xvf %{SOURCE2318}
  7287. %__tar -xvf %{SOURCE2319}
  7288. %__tar -xvf %{SOURCE2320}
  7289. %__tar -xvf %{SOURCE2321}
  7290. %__tar -xvf %{SOURCE2322}
  7291. %__tar -xvf %{SOURCE2323}
  7292. %__tar -xvf %{SOURCE2324}
  7293. %__tar -xvf %{SOURCE2325}
  7294. %__tar -xvf %{SOURCE2326}
  7295. %__tar -xvf %{SOURCE2327}
  7296. %__tar -xvf %{SOURCE2328}
  7297. %__tar -xvf %{SOURCE2329}
  7298. %__tar -xvf %{SOURCE2330}
  7299. %__tar -xvf %{SOURCE2331}
  7300. %__tar -xvf %{SOURCE2332}
  7301. %__tar -xvf %{SOURCE2333}
  7302. %__tar -xvf %{SOURCE2334}
  7303. %__tar -xvf %{SOURCE2335}
  7304. %__tar -xvf %{SOURCE2336}
  7305. %__tar -xvf %{SOURCE2337}
  7306. %__tar -xvf %{SOURCE2338}
  7307. %__tar -xvf %{SOURCE2339}
  7308. %__tar -xvf %{SOURCE2340}
  7309. %__tar -xvf %{SOURCE2341}
  7310. %__tar -xvf %{SOURCE2342}
  7311. %__tar -xvf %{SOURCE2343}
  7312. %__tar -xvf %{SOURCE2344}
  7313. %__tar -xvf %{SOURCE2345}
  7314. %__tar -xvf %{SOURCE2346}
  7315. %__tar -xvf %{SOURCE2347}
  7316. %__tar -xvf %{SOURCE2348}
  7317. %__tar -xvf %{SOURCE2349}
  7318. %__tar -xvf %{SOURCE2350}
  7319. %__tar -xvf %{SOURCE2351}
  7320. %__tar -xvf %{SOURCE2352}
  7321. %__tar -xvf %{SOURCE2353}
  7322. %__tar -xvf %{SOURCE2354}
  7323. %__tar -xvf %{SOURCE2355}
  7324. %__tar -xvf %{SOURCE2356}
  7325. %__tar -xvf %{SOURCE2357}
  7326. %__tar -xvf %{SOURCE2358}
  7327. %__tar -xvf %{SOURCE2359}
  7328. %__tar -xvf %{SOURCE2360}
  7329. %__tar -xvf %{SOURCE2361}
  7330. %__tar -xvf %{SOURCE2362}
  7331. %__tar -xvf %{SOURCE2363}
  7332. %__tar -xvf %{SOURCE2364}
  7333. %__tar -xvf %{SOURCE2365}
  7334. %__tar -xvf %{SOURCE2366}
  7335. %__tar -xvf %{SOURCE2367}
  7336. %__tar -xvf %{SOURCE2368}
  7337. %__tar -xvf %{SOURCE2369}
  7338. %__tar -xvf %{SOURCE2370}
  7339. %__tar -xvf %{SOURCE2371}
  7340. %__tar -xvf %{SOURCE2372}
  7341. %__tar -xvf %{SOURCE2373}
  7342. %__tar -xvf %{SOURCE2374}
  7343. %__tar -xvf %{SOURCE2375}
  7344. %__tar -xvf %{SOURCE2376}
  7345. %__tar -xvf %{SOURCE2377}
  7346. %__tar -xvf %{SOURCE2378}
  7347. %__tar -xvf %{SOURCE2379}
  7348. %__tar -xvf %{SOURCE2380}
  7349. %__tar -xvf %{SOURCE2381}
  7350. %__tar -xvf %{SOURCE2382}
  7351. %__tar -xvf %{SOURCE2383}
  7352. %__tar -xvf %{SOURCE2384}
  7353. %__tar -xvf %{SOURCE2385}
  7354. %__tar -xvf %{SOURCE2386}
  7355. %__tar -xvf %{SOURCE2387}
  7356. %__tar -xvf %{SOURCE2388}
  7357. %__tar -xvf %{SOURCE2389}
  7358. %__tar -xvf %{SOURCE2390}
  7359. %__tar -xvf %{SOURCE2391}
  7360. %__tar -xvf %{SOURCE2392}
  7361. %__tar -xvf %{SOURCE2393}
  7362. %__tar -xvf %{SOURCE2394}
  7363. %__tar -xvf %{SOURCE2395}
  7364. %__tar -xvf %{SOURCE2396}
  7365. %__tar -xvf %{SOURCE2397}
  7366. %__tar -xvf %{SOURCE2398}
  7367. %__tar -xvf %{SOURCE2399}
  7368. %__tar -xvf %{SOURCE2400}
  7369. %__tar -xvf %{SOURCE2401}
  7370. %__tar -xvf %{SOURCE2402}
  7371. %__tar -xvf %{SOURCE2403}
  7372. %__tar -xvf %{SOURCE2404}
  7373. %__tar -xvf %{SOURCE2405}
  7374. %__tar -xvf %{SOURCE2406}
  7375. %__tar -xvf %{SOURCE2407}
  7376. %__tar -xvf %{SOURCE2408}
  7377. %__tar -xvf %{SOURCE2409}
  7378. %__tar -xvf %{SOURCE2410}
  7379. %__tar -xvf %{SOURCE2411}
  7380. %__tar -xvf %{SOURCE2412}
  7381. %__tar -xvf %{SOURCE2413}
  7382. %__tar -xvf %{SOURCE2414}
  7383. %__tar -xvf %{SOURCE2415}
  7384. %__tar -xvf %{SOURCE2416}
  7385. %__tar -xvf %{SOURCE2417}
  7386. %__tar -xvf %{SOURCE2418}
  7387. %__tar -xvf %{SOURCE2419}
  7388. %__tar -xvf %{SOURCE2420}
  7389. %__tar -xvf %{SOURCE2421}
  7390. %__tar -xvf %{SOURCE2422}
  7391. %__tar -xvf %{SOURCE2423}
  7392. %__tar -xvf %{SOURCE2424}
  7393. %__tar -xvf %{SOURCE2425}
  7394. %__tar -xvf %{SOURCE2426}
  7395. %__tar -xvf %{SOURCE2427}
  7396. %__tar -xvf %{SOURCE2428}
  7397. %__tar -xvf %{SOURCE2429}
  7398. %__tar -xvf %{SOURCE2430}
  7399. %__tar -xvf %{SOURCE2431}
  7400. %__tar -xvf %{SOURCE2432}
  7401. %__tar -xvf %{SOURCE2433}
  7402. %__tar -xvf %{SOURCE2434}
  7403. %__tar -xvf %{SOURCE2435}
  7404. %__tar -xvf %{SOURCE2436}
  7405. %__tar -xvf %{SOURCE2437}
  7406. %__tar -xvf %{SOURCE2438}
  7407. %__tar -xvf %{SOURCE2439}
  7408. %__tar -xvf %{SOURCE2440}
  7409. %__tar -xvf %{SOURCE2441}
  7410. %__tar -xvf %{SOURCE2442}
  7411. %__tar -xvf %{SOURCE2443}
  7412. %__tar -xvf %{SOURCE2444}
  7413. %__tar -xvf %{SOURCE2445}
  7414. %__tar -xvf %{SOURCE2446}
  7415. %__tar -xvf %{SOURCE2447}
  7416. %__tar -xvf %{SOURCE2448}
  7417. %__tar -xvf %{SOURCE2449}
  7418. %__tar -xvf %{SOURCE2450}
  7419. %__tar -xvf %{SOURCE2451}
  7420. %__tar -xvf %{SOURCE2452}
  7421. %__tar -xvf %{SOURCE2453}
  7422. %__tar -xvf %{SOURCE2454}
  7423. %__tar -xvf %{SOURCE2455}
  7424. %__tar -xvf %{SOURCE2456}
  7425. %__tar -xvf %{SOURCE2457}
  7426. %__tar -xvf %{SOURCE2458}
  7427. %__tar -xvf %{SOURCE2459}
  7428. %__tar -xvf %{SOURCE2460}
  7429. %__tar -xvf %{SOURCE2461}
  7430. %__tar -xvf %{SOURCE2462}
  7431. %__tar -xvf %{SOURCE2463}
  7432. %__tar -xvf %{SOURCE2464}
  7433. %__tar -xvf %{SOURCE2465}
  7434. %__tar -xvf %{SOURCE2466}
  7435. %__tar -xvf %{SOURCE2467}
  7436. %__tar -xvf %{SOURCE2468}
  7437. %__tar -xvf %{SOURCE2469}
  7438. %__tar -xvf %{SOURCE2470}
  7439. %__tar -xvf %{SOURCE2471}
  7440. %__tar -xvf %{SOURCE2472}
  7441. %__tar -xvf %{SOURCE2473}
  7442. %__tar -xvf %{SOURCE2474}
  7443. %__tar -xvf %{SOURCE2475}
  7444. %__tar -xvf %{SOURCE2476}
  7445. %__tar -xvf %{SOURCE2477}
  7446. %__tar -xvf %{SOURCE2478}
  7447. %__tar -xvf %{SOURCE2479}
  7448. %__tar -xvf %{SOURCE2480}
  7449. %__tar -xvf %{SOURCE2481}
  7450. %__tar -xvf %{SOURCE2482}
  7451. %__tar -xvf %{SOURCE2483}
  7452. %__tar -xvf %{SOURCE2484}
  7453. %__tar -xvf %{SOURCE2485}
  7454. %__tar -xvf %{SOURCE2486}
  7455. %__tar -xvf %{SOURCE2487}
  7456. %__tar -xvf %{SOURCE2488}
  7457. %__tar -xvf %{SOURCE2489}
  7458. %__tar -xvf %{SOURCE2490}
  7459. %__tar -xvf %{SOURCE2491}
  7460. %__tar -xvf %{SOURCE2492}
  7461. %__tar -xvf %{SOURCE2493}
  7462. %__tar -xvf %{SOURCE2494}
  7463. %__tar -xvf %{SOURCE2495}
  7464. %__tar -xvf %{SOURCE2496}
  7465. %__tar -xvf %{SOURCE2497}
  7466. %__tar -xvf %{SOURCE2498}
  7467. %__tar -xvf %{SOURCE2499}
  7468. %__tar -xvf %{SOURCE2500}
  7469. %__tar -xvf %{SOURCE2501}
  7470. %__tar -xvf %{SOURCE2502}
  7471. %__tar -xvf %{SOURCE2503}
  7472. %__tar -xvf %{SOURCE2504}
  7473. %__tar -xvf %{SOURCE2505}
  7474. %__tar -xvf %{SOURCE2506}
  7475. %__tar -xvf %{SOURCE2507}
  7476. %__tar -xvf %{SOURCE2508}
  7477. %__tar -xvf %{SOURCE2509}
  7478. %__tar -xvf %{SOURCE2510}
  7479. %__tar -xvf %{SOURCE2511}
  7480. %__tar -xvf %{SOURCE2512}
  7481. %__tar -xvf %{SOURCE2513}
  7482. %__tar -xvf %{SOURCE2514}
  7483. %__tar -xvf %{SOURCE2515}
  7484. %__tar -xvf %{SOURCE2516}
  7485. %__tar -xvf %{SOURCE2517}
  7486. %__tar -xvf %{SOURCE2518}
  7487. %__tar -xvf %{SOURCE2519}
  7488. %__tar -xvf %{SOURCE2520}
  7489. %__tar -xvf %{SOURCE2521}
  7490. %__tar -xvf %{SOURCE2522}
  7491. %__tar -xvf %{SOURCE2523}
  7492. %__tar -xvf %{SOURCE2524}
  7493. %__tar -xvf %{SOURCE2525}
  7494. %__tar -xvf %{SOURCE2526}
  7495. %__tar -xvf %{SOURCE2527}
  7496. %__tar -xvf %{SOURCE2528}
  7497. %__tar -xvf %{SOURCE2529}
  7498. %__tar -xvf %{SOURCE2530}
  7499. %__tar -xvf %{SOURCE2531}
  7500. %__tar -xvf %{SOURCE2532}
  7501. %__tar -xvf %{SOURCE2533}
  7502. %__tar -xvf %{SOURCE2534}
  7503. %__tar -xvf %{SOURCE2535}
  7504. %__tar -xvf %{SOURCE2536}
  7505. %__tar -xvf %{SOURCE2537}
  7506. %__tar -xvf %{SOURCE2538}
  7507. %__tar -xvf %{SOURCE2539}
  7508. %__tar -xvf %{SOURCE2540}
  7509. %__tar -xvf %{SOURCE2541}
  7510. %__tar -xvf %{SOURCE2542}
  7511. %__tar -xvf %{SOURCE2543}
  7512. %__tar -xvf %{SOURCE2544}
  7513. %__tar -xvf %{SOURCE2545}
  7514. %__tar -xvf %{SOURCE2546}
  7515. %__tar -xvf %{SOURCE2547}
  7516. %__tar -xvf %{SOURCE2548}
  7517. %__tar -xvf %{SOURCE2549}
  7518. %__tar -xvf %{SOURCE2550}
  7519. %__tar -xvf %{SOURCE2551}
  7520. %__tar -xvf %{SOURCE2552}
  7521. %__tar -xvf %{SOURCE2553}
  7522. %__tar -xvf %{SOURCE2554}
  7523. %__tar -xvf %{SOURCE2555}
  7524. %__tar -xvf %{SOURCE2556}
  7525. %__tar -xvf %{SOURCE2557}
  7526. %__tar -xvf %{SOURCE2558}
  7527. %__tar -xvf %{SOURCE2559}
  7528. %__tar -xvf %{SOURCE2560}
  7529. %__tar -xvf %{SOURCE2561}
  7530. %__tar -xvf %{SOURCE2562}
  7531. %__tar -xvf %{SOURCE2563}
  7532. %__tar -xvf %{SOURCE2564}
  7533. %__tar -xvf %{SOURCE2565}
  7534. %__tar -xvf %{SOURCE2566}
  7535. %__tar -xvf %{SOURCE2567}
  7536. %__tar -xvf %{SOURCE2568}
  7537. %__tar -xvf %{SOURCE2569}
  7538. %__tar -xvf %{SOURCE2570}
  7539. %__tar -xvf %{SOURCE2571}
  7540. %__tar -xvf %{SOURCE2572}
  7541. %__tar -xvf %{SOURCE2573}
  7542. %__tar -xvf %{SOURCE2574}
  7543. %__tar -xvf %{SOURCE2575}
  7544. %__tar -xvf %{SOURCE2576}
  7545. %__tar -xvf %{SOURCE2577}
  7546. %__tar -xvf %{SOURCE2578}
  7547. %__tar -xvf %{SOURCE2579}
  7548. %__tar -xvf %{SOURCE2580}
  7549. %__tar -xvf %{SOURCE2581}
  7550. %__tar -xvf %{SOURCE2582}
  7551. %__tar -xvf %{SOURCE2583}
  7552. %__tar -xvf %{SOURCE2584}
  7553. %__tar -xvf %{SOURCE2585}
  7554. %__tar -xvf %{SOURCE2586}
  7555. %__tar -xvf %{SOURCE2587}
  7556. %__tar -xvf %{SOURCE2588}
  7557. %__tar -xvf %{SOURCE2589}
  7558. %__tar -xvf %{SOURCE2590}
  7559. %__tar -xvf %{SOURCE2591}
  7560. %__tar -xvf %{SOURCE2592}
  7561. %__tar -xvf %{SOURCE2593}
  7562. %__tar -xvf %{SOURCE2594}
  7563. %__tar -xvf %{SOURCE2595}
  7564. %__tar -xvf %{SOURCE2596}
  7565. %__tar -xvf %{SOURCE2597}
  7566. %__tar -xvf %{SOURCE2598}
  7567. %__tar -xvf %{SOURCE2599}
  7568. %__tar -xvf %{SOURCE2600}
  7569. %__tar -xvf %{SOURCE2601}
  7570. %__tar -xvf %{SOURCE2602}
  7571. %__tar -xvf %{SOURCE2603}
  7572. %__tar -xvf %{SOURCE2604}
  7573. %__tar -xvf %{SOURCE2605}
  7574. %__tar -xvf %{SOURCE2606}
  7575. %__tar -xvf %{SOURCE2607}
  7576. %__tar -xvf %{SOURCE2608}
  7577. %__tar -xvf %{SOURCE2609}
  7578. %__tar -xvf %{SOURCE2610}
  7579. %__tar -xvf %{SOURCE2611}
  7580. %__tar -xvf %{SOURCE2612}
  7581. %__tar -xvf %{SOURCE2613}
  7582. %__tar -xvf %{SOURCE2614}
  7583. %__tar -xvf %{SOURCE2615}
  7584. %__tar -xvf %{SOURCE2616}
  7585. %__tar -xvf %{SOURCE2617}
  7586. %__tar -xvf %{SOURCE2618}
  7587. %__tar -xvf %{SOURCE2619}
  7588. %__tar -xvf %{SOURCE2620}
  7589. %__tar -xvf %{SOURCE2621}
  7590. %__tar -xvf %{SOURCE2622}
  7591. %__tar -xvf %{SOURCE2623}
  7592. %__tar -xvf %{SOURCE2624}
  7593. %__tar -xvf %{SOURCE2625}
  7594. %__tar -xvf %{SOURCE2626}
  7595. %__tar -xvf %{SOURCE2627}
  7596. %__tar -xvf %{SOURCE2628}
  7597. %__tar -xvf %{SOURCE2629}
  7598. %__tar -xvf %{SOURCE2630}
  7599. %__tar -xvf %{SOURCE2631}
  7600. %__tar -xvf %{SOURCE2632}
  7601. %__tar -xvf %{SOURCE2633}
  7602. %__tar -xvf %{SOURCE2634}
  7603. %__tar -xvf %{SOURCE2635}
  7604. %__tar -xvf %{SOURCE2636}
  7605. %__tar -xvf %{SOURCE2637}
  7606. %__tar -xvf %{SOURCE2638}
  7607. %__tar -xvf %{SOURCE2639}
  7608. %__tar -xvf %{SOURCE2640}
  7609. %__tar -xvf %{SOURCE2641}
  7610. %__tar -xvf %{SOURCE2642}
  7611. %__tar -xvf %{SOURCE2643}
  7612. %__tar -xvf %{SOURCE2644}
  7613. %__tar -xvf %{SOURCE2645}
  7614. %__tar -xvf %{SOURCE2646}
  7615. %__tar -xvf %{SOURCE2647}
  7616. %__tar -xvf %{SOURCE2648}
  7617. %__tar -xvf %{SOURCE2649}
  7618. %__tar -xvf %{SOURCE2650}
  7619. %__tar -xvf %{SOURCE2651}
  7620. %__tar -xvf %{SOURCE2652}
  7621. %__tar -xvf %{SOURCE2653}
  7622. %__tar -xvf %{SOURCE2654}
  7623. %__tar -xvf %{SOURCE2655}
  7624. %__tar -xvf %{SOURCE2656}
  7625. %__tar -xvf %{SOURCE2657}
  7626. %__tar -xvf %{SOURCE2658}
  7627. %__tar -xvf %{SOURCE2659}
  7628. %__tar -xvf %{SOURCE2660}
  7629. %__tar -xvf %{SOURCE2661}
  7630. %__tar -xvf %{SOURCE2662}
  7631. %__tar -xvf %{SOURCE2663}
  7632. %__tar -xvf %{SOURCE2664}
  7633. %__tar -xvf %{SOURCE2665}
  7634. %__tar -xvf %{SOURCE2666}
  7635. %__tar -xvf %{SOURCE2667}
  7636. %__tar -xvf %{SOURCE2668}
  7637. %__tar -xvf %{SOURCE2669}
  7638. %__tar -xvf %{SOURCE2670}
  7639. %__tar -xvf %{SOURCE2671}
  7640. %__tar -xvf %{SOURCE2672}
  7641. %__tar -xvf %{SOURCE2673}
  7642. %__tar -xvf %{SOURCE2674}
  7643. %__tar -xvf %{SOURCE2675}
  7644. %__tar -xvf %{SOURCE2676}
  7645. %__tar -xvf %{SOURCE2677}
  7646. %__tar -xvf %{SOURCE2678}
  7647. %__tar -xvf %{SOURCE2679}
  7648. %__tar -xvf %{SOURCE2680}
  7649. %__tar -xvf %{SOURCE2681}
  7650. %__tar -xvf %{SOURCE2682}
  7651. %__tar -xvf %{SOURCE2683}
  7652. %__tar -xvf %{SOURCE2684}
  7653. %__tar -xvf %{SOURCE2685}
  7654. %__tar -xvf %{SOURCE2686}
  7655. %__tar -xvf %{SOURCE2687}
  7656. %__tar -xvf %{SOURCE2688}
  7657. %__tar -xvf %{SOURCE2689}
  7658. %__tar -xvf %{SOURCE2690}
  7659. %__tar -xvf %{SOURCE2691}
  7660. %__tar -xvf %{SOURCE2692}
  7661. %__tar -xvf %{SOURCE2693}
  7662. %__tar -xvf %{SOURCE2694}
  7663. %__tar -xvf %{SOURCE2695}
  7664. %__tar -xvf %{SOURCE2696}
  7665. %__tar -xvf %{SOURCE2697}
  7666. %__tar -xvf %{SOURCE2698}
  7667. %__tar -xvf %{SOURCE2699}
  7668. %__tar -xvf %{SOURCE2700}
  7669. %__tar -xvf %{SOURCE2701}
  7670. %__tar -xvf %{SOURCE2702}
  7671. %__tar -xvf %{SOURCE2703}
  7672. %__tar -xvf %{SOURCE2704}
  7673. %__tar -xvf %{SOURCE2705}
  7674. %__tar -xvf %{SOURCE2706}
  7675. %__tar -xvf %{SOURCE2707}
  7676. %__tar -xvf %{SOURCE2708}
  7677. %__tar -xvf %{SOURCE2709}
  7678. %__tar -xvf %{SOURCE2710}
  7679. %__tar -xvf %{SOURCE2711}
  7680. %__tar -xvf %{SOURCE2712}
  7681. %__tar -xvf %{SOURCE2713}
  7682. %__tar -xvf %{SOURCE2714}
  7683. %__tar -xvf %{SOURCE2715}
  7684. %__tar -xvf %{SOURCE2716}
  7685. %__tar -xvf %{SOURCE2717}
  7686. %__tar -xvf %{SOURCE2718}
  7687. %__tar -xvf %{SOURCE2719}
  7688. %__tar -xvf %{SOURCE2720}
  7689. %__tar -xvf %{SOURCE2721}
  7690. %__tar -xvf %{SOURCE2722}
  7691. %__tar -xvf %{SOURCE2723}
  7692. %__tar -xvf %{SOURCE2724}
  7693. %__tar -xvf %{SOURCE2725}
  7694. %__tar -xvf %{SOURCE2726}
  7695. %__tar -xvf %{SOURCE2727}
  7696. %__tar -xvf %{SOURCE2728}
  7697. %__tar -xvf %{SOURCE2729}
  7698. %__tar -xvf %{SOURCE2730}
  7699. %__tar -xvf %{SOURCE2731}
  7700. %__tar -xvf %{SOURCE2732}
  7701. %__tar -xvf %{SOURCE2733}
  7702. %__tar -xvf %{SOURCE2734}
  7703. %__tar -xvf %{SOURCE2735}
  7704. %__tar -xvf %{SOURCE2736}
  7705. %__tar -xvf %{SOURCE2737}
  7706. %__tar -xvf %{SOURCE2738}
  7707. %__tar -xvf %{SOURCE2739}
  7708. %__tar -xvf %{SOURCE2740}
  7709. %__tar -xvf %{SOURCE2741}
  7710. %__tar -xvf %{SOURCE2742}
  7711. %__tar -xvf %{SOURCE2743}
  7712. %__tar -xvf %{SOURCE2744}
  7713. %__tar -xvf %{SOURCE2745}
  7714. %__tar -xvf %{SOURCE2746}
  7715. %__tar -xvf %{SOURCE2747}
  7716. %__tar -xvf %{SOURCE2748}
  7717. %__tar -xvf %{SOURCE2749}
  7718. %__tar -xvf %{SOURCE2750}
  7719. %__tar -xvf %{SOURCE2751}
  7720. %__tar -xvf %{SOURCE2752}
  7721. %__tar -xvf %{SOURCE2753}
  7722. %__tar -xvf %{SOURCE2754}
  7723. %__tar -xvf %{SOURCE2755}
  7724. %__tar -xvf %{SOURCE2756}
  7725. %__tar -xvf %{SOURCE2757}
  7726. %__tar -xvf %{SOURCE2758}
  7727. %__tar -xvf %{SOURCE2759}
  7728. %__tar -xvf %{SOURCE2760}
  7729. %__tar -xvf %{SOURCE2761}
  7730. %__tar -xvf %{SOURCE2762}
  7731. %__tar -xvf %{SOURCE2763}
  7732. %__tar -xvf %{SOURCE2764}
  7733. %__tar -xvf %{SOURCE2765}
  7734. %__tar -xvf %{SOURCE2766}
  7735. %__tar -xvf %{SOURCE2767}
  7736. %__tar -xvf %{SOURCE2768}
  7737. %__tar -xvf %{SOURCE2769}
  7738. %__tar -xvf %{SOURCE2770}
  7739. %__tar -xvf %{SOURCE2771}
  7740. %__tar -xvf %{SOURCE2772}
  7741. %__tar -xvf %{SOURCE2773}
  7742. %__tar -xvf %{SOURCE2774}
  7743. %__tar -xvf %{SOURCE2775}
  7744. %__tar -xvf %{SOURCE2776}
  7745. %__tar -xvf %{SOURCE2777}
  7746. %build
  7747. %install
  7748. [ -n "%{buildroot}" -a "%{buildroot}" != / ] && %__rm -rf %{buildroot}
  7749. %__mkdir_p %{buildroot}%{_datadir}
  7750. ## move texmf-dist to /usr/share/texmf-dist
  7751. [ -d texmf-dist ] && %__mv texmf-dist %{buildroot}%{_tl_texmfdist}/ ||:
  7752. ## move texmf to /usr/share/texmf
  7753. [ -d texmf ] && %__mv texmf %{buildroot}%{_tl_texmfmain}/ ||:
  7754. ## move tlpkg to /usr/share/tlpkg
  7755. [ -d tlpkg ] && %__mv tlpkg %{buildroot}%{_datadir}/ ||:
  7756. ## move all non-arch binaries to /usr/bin
  7757. [ -d bin ] && %__mv bin %{buildroot}%{_prefix}/ ||:
  7758. ## move others into /usr/share/texmf-dist
  7759. %__mkdir_p %{buildroot}%{_tl_texmfdist}
  7760. %__cp -a * %{buildroot}%{_tl_texmfdist}/ ||:
  7761. %__rm -rf * ||:
  7762. ## remove duplicated files between texlive and texlive-collection-*
  7763. ## NOTE: We provides texmf.cnf and updmap{-hdr,}.cfg from texlive
  7764. ## remove unpacked files
  7765. x=(
  7766. dvipdfmx/dvipdfmx.cfg
  7767. scripts/context/stubs/unix/mtxrun
  7768. scripts/ptex2pdf/ptex2pdf.lua
  7769. scripts/texlive/fmtutil.pl
  7770. scripts/texlive/texconfig-dialog.sh
  7771. scripts/texlive/texconfig-sys.sh
  7772. scripts/texlive/texconfig.sh
  7773. scripts/texlive/texlinks.sh
  7774. scripts/texlive/tlmgr.pl
  7775. scripts/texlive/updmap.pl
  7776. texconfig/tcfmgr
  7777. web2c/fmtutil.cnf
  7778. web2c/mktex.opt
  7779. web2c/mktexdir
  7780. web2c/mktexdir.opt
  7781. web2c/mktexnam
  7782. web2c/mktexnam.opt
  7783. web2c/mktexupd
  7784. web2c/texmf.cnf
  7785. web2c/updmap-hdr.cfg
  7786. web2c/updmap.cfg
  7787. install-tl
  7788. #
  7789. scripts/cjk-gs-integrate/cjk-gs-integrate.pl #texlive-collection-langcjk-2015-3vl7.noarch
  7790. scripts/epspdf/epspdf.tlu #texlive-collection-pictures-2015-3vl7.noarch
  7791. scripts/epspdf/epspdftk.tcl #texlive-collection-pictures-2015-3vl7.noarch
  7792. scripts/glossaries/makeglossaries #texlive-collection-latexextra-2015-3vl7.noarch
  7793. scripts/jfontmaps/kanji-config-updmap.pl #texlive-collection-langjapanese-2015-3vl7.noarch
  7794. scripts/jfontmaps/kanji-fontmap-creator.pl #texlive-collection-langjapanese-2015-3vl7.noarch
  7795. scripts/kotex-utils/jamo-normalize.pl #texlive-collection-langkorean-2015-3vl7.noarch
  7796. scripts/kotex-utils/komkindex.pl #texlive-collection-langkorean-2015-3vl7.noarch
  7797. scripts/crossrefware/ltx2crossrefxml.pl #texlive-collection-bibtexextra-2015-3vl7.noarch
  7798. scripts/rubik/rubikrotation.pl #texlive-collection-games-2015-3vl7.noarch
  7799. scripts/musixtex/musixtex.lua #texlive-collection-music-2015-3vl7.noarch
  7800. scripts/pmxchords/pmxchords.lua #texlive-collection-music-2015-3vl7.noarch
  7801. scripts/ctanify/ctanify #texlive-collection-binextra-2015-3vl7.noarch
  7802. scripts/dtxgen/dtxgen #texlive-collection-binextra-2015-3vl7.noarch
  7803. scripts/findhyph/findhyph #texlive-collection-binextra-2015-3vl7.noarch
  7804. scripts/latexpand/latexpand #texlive-collection-binextra-2015-3vl7.noarch
  7805. scripts/ltxfileinfo/ltxfileinfo #texlive-collection-binextra-2015-3vl7.noarch
  7806. scripts/latexdiff/latexdiff-vc.pl #texlive-collection-binextra-2015-3vl7.noarch
  7807. scripts/latexdiff/latexdiff.pl #texlive-collection-binextra-2015-3vl7.noarch
  7808. scripts/texfot/texfot.pl #texlive-collection-binextra-2015-3vl7.noarch
  7809. scripts/fontools/autoinst #texlive-collection-fontutils-2015-3vl7.noarch
  7810. scripts/luaotfload/luaotfload-tool.lua #texlive-collection-luatex-2015-3vl7.noarch
  7811. )
  7812. if [ -d %{buildroot}%{_tl_texmfdist} ]; then
  7813. pushd %{buildroot}%{_tl_texmfdist}
  7814. %__rm -f ${x[@]} ||:
  7815. popd
  7816. fi
  7817. ## Files list
  7818. find %{buildroot} -type f -or -type l | \
  7819. %__sed -e "s|%{buildroot}||g" > filelist.full
  7820. find %{buildroot}%{_tl_texmfdist} -type d | \
  7821. %__sed -e "s|^%{buildroot}|%dir |" \
  7822. -e "s|$|/|" >> filelist.full
  7823. ## subpackages
  7824. grep "/texmf-dist/doc/" filelist.full > filelist.doc
  7825. cat filelist.doc filelist.full | sort | uniq -u > filelist.tmp
  7826. %__mv -f filelist.tmp filelist.full
  7827. %clean
  7828. %__rm -rf %{buildroot}
  7829. %post
  7830. %_tl_touch_run texhash
  7831. %_tl_touch_run mtxrun
  7832. [ -f %{_tl_texmfdist}/web2c/updmap.cfg ] || exit 0
  7833. %_tl_enable_map Map epiolmec.map
  7834. %_tl_enable_map MixedMap esint.map
  7835. exit 0
  7836. %postun
  7837. if [ "$1" = 0 ]; then
  7838. %_tl_touch_run texhash
  7839. [ -f %{_tl_texmfdist}/web2c/updmap.cfg ] || exit 0
  7840. %_tl_disable_map epiolmec.map
  7841. %_tl_disable_map esint.map
  7842. fi
  7843. exit 0
  7844. %posttrans
  7845. %{_tl_exec_texhash}
  7846. %{_tl_exec_mtxrun}
  7847. %{_tl_exec_updmap}
  7848. %{_tl_exec_fmtutil}
  7849. exit 0
  7850. %files -f filelist.full
  7851. %defattr(-,root,root,-)
  7852. %files -f filelist.doc doc
  7853. %defattr(-,root,root,-)
  7854. %changelog
  7855. * Wed Jan 13 2016 Munehiro Yamamoto <munepi@vinelinux.org> 2015-4
  7856. - remove duplicated files from texlive-collection-*
  7857. - synced tlnet to 20160113 (TeX Live 2015)
  7858. * Sun Jan 10 2016 Munehiro Yamamoto <munepi@vinelinux.org> 2015-3
  7859. - TeX Live 2016/dev
  7860. - synced tlnet to 20160110 (TeX Live 2016/dev)
  7861. * Sun May 24 2015 Munehiro Yamamoto <munepi@vinelinux.org> 2015-2
  7862. - TeX Live 2015/pretest
  7863. - synced tlnet to 20150522 (TeX Live 2015/pretest)
  7864. * Sun Apr 26 2015 Munehiro Yamamoto <munepi@vinelinux.org> 2015-1
  7865. - TeX Live 2015/pretest
  7866. - synced tlnet to 20150426 (TeX Live 2015/pretest)
  7867. * Wed Apr 01 2015 Munehiro Yamamoto <munepi@vinelinux.org> 2014-4
  7868. - synced tlnet to 20150401
  7869. * Tue Oct 28 2014 Munehiro Yamamoto <munepi@vinelinux.org> 2014-3
  7870. - synced tlnet to 20141028
  7871. * Sun Jul 06 2014 Munehiro Yamamoto <munepi@vinelinux.org> 2014-2
  7872. - synced tlnet to 20140706
  7873. * Sun May 25 2014 Munehiro Yamamoto <munepi@vinelinux.org> 2014-1
  7874. - upgraded to TeX Live 2014
  7875. * Sun Apr 06 2014 Munehiro Yamamoto <munepi@vinelinux.org> 2013-6
  7876. - synced tlnet to 20140406
  7877. * Wed Dec 18 2013 Munehiro Yamamoto <munepi@vinelinux.org> 2013-5
  7878. - synced tlnet to 20131218
  7879. * Fri Nov 01 2013 Munehiro Yamamoto <munepi@vinelinux.org> 2013-4
  7880. - synced tlnet to 20131101
  7881. * Wed Oct 02 2013 Munehiro Yamamoto <munepi@vinelinux.org> 2013-3
  7882. - synced tlnet to 20131002
  7883. * Thu Sep 19 2013 Munehiro Yamamoto <munepi@vinelinux.org> 2013-2
  7884. - synced tlnet to 20130919
  7885. * Fri Aug 23 2013 Munehiro Yamamoto <munepi@vinelinux.org> 2013-1
  7886. - upgraded to TeX Live 2013
  7887. - used tlnet archives
  7888. - synced tlnet to 20130823
  7889. - added macros.texlive
  7890. * Fri Aug 10 2012 Munehiro Yamamoto <munepi@vinelinux.org> 2012-1
  7891. - updated to TeX Live 2012
  7892. * Sat Dec 03 2011 Munehiro Yamamoto <munepi@vinelinux.org> 2011-2
  7893. - updated tlpdb2rpmspec.sh.in and dot.vtlpkg.conf.in:
  7894. - set external dependencies (texlive-collection-binextra,
  7895. texlive-collection-fontutils)
  7896. * Sun Oct 30 2011 Munehiro Yamamoto <munepi@vinelinux.org> 2011-1
  7897. - updated to TeX Live 2011
  7898. - merged texlive-vtlpkg-2009-osx.patch from OSXWS
  7899. - added %doc README (%files)
  7900. * Wed Mar 23 2011 Munehiro Yamamoto <munepi@vinelinux.org> 2009-4
  7901. - applied texlive-vtlpkg-2009-vine.patch
  7902. - remove arch dependent binaries
  7903. - updated tlpdb2rpmspec.sh.in:
  7904. - improved tlpdb4a()
  7905. - make symlinks of core script utils (texlive-collection-binextra,
  7906. texlive-collection-context, texlive-collection-fontutils,
  7907. texlive-collection-langgreek, texlive-collection-langindic,
  7908. texlive-collection-latex, texlive-collection-latexextra,
  7909. texlive-collection-latexrecommended, texlive-collection-pictures,
  7910. texlive-collection-pstricks, texlive-collection-science)
  7911. * Wed Jan 12 2011 Munehiro Yamamoto <munepi@vinelinux.org> 2009-3
  7912. - updated tlpdb2rpmspec.sh.in:
  7913. - improved %post
  7914. * Sun Sep 26 2010 Munehiro Yamamoto <munepi@vinelinux.org> 2009-2
  7915. - updated tlpdb2rpmspec.sh.in:
  7916. - removed arch dependent binaries (texlive-collection-latexextra)
  7917. - improved updmap process in %post and %postun
  7918. - fixed perl path
  7919. * Fri Jul 30 2010 Munehiro Yamamoto <munepi@vinelinux.org> 2009-1
  7920. - initial build