LICENSE 376 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943
  1. Copyright (c) 2015, Google Inc.
  2. Licensed under the Apache License, Version 2.0 (the "License");
  3. you may not use this file except in compliance with the License.
  4. Unless required by applicable law or agreed to in writing, software
  5. distributed under the License is distributed on an "AS IS" BASIS,
  6. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  7. See the License for the specific language governing permissions and
  8. limitations under the License.
  9. Apache License
  10. Version 2.0, January 2004
  11. http://www.apache.org/licenses/
  12. TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
  13. 1. Definitions.
  14. "License" shall mean the terms and conditions for use, reproduction,
  15. and distribution as defined by Sections 1 through 9 of this document.
  16. "Licensor" shall mean the copyright owner or entity authorized by
  17. the copyright owner that is granting the License.
  18. "Legal Entity" shall mean the union of the acting entity and all
  19. other entities that control, are controlled by, or are under common
  20. control with that entity. For the purposes of this definition,
  21. "control" means (i) the power, direct or indirect, to cause the
  22. direction or management of such entity, whether by contract or
  23. otherwise, or (ii) ownership of fifty percent (50%) or more of the
  24. outstanding shares, or (iii) beneficial ownership of such entity.
  25. "You" (or "Your") shall mean an individual or Legal Entity
  26. exercising permissions granted by this License.
  27. "Source" form shall mean the preferred form for making modifications,
  28. including but not limited to software source code, documentation
  29. source, and configuration files.
  30. "Object" form shall mean any form resulting from mechanical
  31. transformation or translation of a Source form, including but
  32. not limited to compiled object code, generated documentation,
  33. and conversions to other media types.
  34. "Work" shall mean the work of authorship, whether in Source or
  35. Object form, made available under the License, as indicated by a
  36. copyright notice that is included in or attached to the work
  37. (an example is provided in the Appendix below).
  38. "Derivative Works" shall mean any work, whether in Source or Object
  39. form, that is based on (or derived from) the Work and for which the
  40. editorial revisions, annotations, elaborations, or other modifications
  41. represent, as a whole, an original work of authorship. For the purposes
  42. of this License, Derivative Works shall not include works that remain
  43. separable from, or merely link (or bind by name) to the interfaces of,
  44. the Work and Derivative Works thereof.
  45. "Contribution" shall mean any work of authorship, including
  46. the original version of the Work and any modifications or additions
  47. to that Work or Derivative Works thereof, that is intentionally
  48. submitted to Licensor for inclusion in the Work by the copyright owner
  49. or by an individual or Legal Entity authorized to submit on behalf of
  50. the copyright owner. For the purposes of this definition, "submitted"
  51. means any form of electronic, verbal, or written communication sent
  52. to the Licensor or its representatives, including but not limited to
  53. communication on electronic mailing lists, source code control systems,
  54. and issue tracking systems that are managed by, or on behalf of, the
  55. Licensor for the purpose of discussing and improving the Work, but
  56. excluding communication that is conspicuously marked or otherwise
  57. designated in writing by the copyright owner as "Not a Contribution."
  58. "Contributor" shall mean Licensor and any individual or Legal Entity
  59. on behalf of whom a Contribution has been received by Licensor and
  60. subsequently incorporated within the Work.
  61. 2. Grant of Copyright License. Subject to the terms and conditions of
  62. this License, each Contributor hereby grants to You a perpetual,
  63. worldwide, non-exclusive, no-charge, royalty-free, irrevocable
  64. copyright license to reproduce, prepare Derivative Works of,
  65. publicly display, publicly perform, sublicense, and distribute the
  66. Work and such Derivative Works in Source or Object form.
  67. 3. Grant of Patent License. Subject to the terms and conditions of
  68. this License, each Contributor hereby grants to You a perpetual,
  69. worldwide, non-exclusive, no-charge, royalty-free, irrevocable
  70. (except as stated in this section) patent license to make, have made,
  71. use, offer to sell, sell, import, and otherwise transfer the Work,
  72. where such license applies only to those patent claims licensable
  73. by such Contributor that are necessarily infringed by their
  74. Contribution(s) alone or by combination of their Contribution(s)
  75. with the Work to which such Contribution(s) was submitted. If You
  76. institute patent litigation against any entity (including a
  77. cross-claim or counterclaim in a lawsuit) alleging that the Work
  78. or a Contribution incorporated within the Work constitutes direct
  79. or contributory patent infringement, then any patent licenses
  80. granted to You under this License for that Work shall terminate
  81. as of the date such litigation is filed.
  82. 4. Redistribution. You may reproduce and distribute copies of the
  83. Work or Derivative Works thereof in any medium, with or without
  84. modifications, and in Source or Object form, provided that You
  85. meet the following conditions:
  86. (a) You must give any other recipients of the Work or
  87. Derivative Works a copy of this License; and
  88. (b) You must cause any modified files to carry prominent notices
  89. stating that You changed the files; and
  90. (c) You must retain, in the Source form of any Derivative Works
  91. that You distribute, all copyright, patent, trademark, and
  92. attribution notices from the Source form of the Work,
  93. excluding those notices that do not pertain to any part of
  94. the Derivative Works; and
  95. (d) If the Work includes a "NOTICE" text file as part of its
  96. distribution, then any Derivative Works that You distribute must
  97. include a readable copy of the attribution notices contained
  98. within such NOTICE file, excluding those notices that do not
  99. pertain to any part of the Derivative Works, in at least one
  100. of the following places: within a NOTICE text file distributed
  101. as part of the Derivative Works; within the Source form or
  102. documentation, if provided along with the Derivative Works; or,
  103. within a display generated by the Derivative Works, if and
  104. wherever such third-party notices normally appear. The contents
  105. of the NOTICE file are for informational purposes only and
  106. do not modify the License. You may add Your own attribution
  107. notices within Derivative Works that You distribute, alongside
  108. or as an addendum to the NOTICE text from the Work, provided
  109. that such additional attribution notices cannot be construed
  110. as modifying the License.
  111. You may add Your own copyright statement to Your modifications and
  112. may provide additional or different license terms and conditions
  113. for use, reproduction, or distribution of Your modifications, or
  114. for any such Derivative Works as a whole, provided Your use,
  115. reproduction, and distribution of the Work otherwise complies with
  116. the conditions stated in this License.
  117. 5. Submission of Contributions. Unless You explicitly state otherwise,
  118. any Contribution intentionally submitted for inclusion in the Work
  119. by You to the Licensor shall be under the terms and conditions of
  120. this License, without any additional terms or conditions.
  121. Notwithstanding the above, nothing herein shall supersede or modify
  122. the terms of any separate license agreement you may have executed
  123. with Licensor regarding such Contributions.
  124. 6. Trademarks. This License does not grant permission to use the trade
  125. names, trademarks, service marks, or product names of the Licensor,
  126. except as required for reasonable and customary use in describing the
  127. origin of the Work and reproducing the content of the NOTICE file.
  128. 7. Disclaimer of Warranty. Unless required by applicable law or
  129. agreed to in writing, Licensor provides the Work (and each
  130. Contributor provides its Contributions) on an "AS IS" BASIS,
  131. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
  132. implied, including, without limitation, any warranties or conditions
  133. of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
  134. PARTICULAR PURPOSE. You are solely responsible for determining the
  135. appropriateness of using or redistributing the Work and assume any
  136. risks associated with Your exercise of permissions under this License.
  137. 8. Limitation of Liability. In no event and under no legal theory,
  138. whether in tort (including negligence), contract, or otherwise,
  139. unless required by applicable law (such as deliberate and grossly
  140. negligent acts) or agreed to in writing, shall any Contributor be
  141. liable to You for damages, including any direct, indirect, special,
  142. incidental, or consequential damages of any character arising as a
  143. result of this License or out of the use or inability to use the
  144. Work (including but not limited to damages for loss of goodwill,
  145. work stoppage, computer failure or malfunction, or any and all
  146. other commercial damages or losses), even if such Contributor
  147. has been advised of the possibility of such damages.
  148. 9. Accepting Warranty or Additional Liability. While redistributing
  149. the Work or Derivative Works thereof, You may choose to offer,
  150. and charge a fee for, acceptance of support, warranty, indemnity,
  151. or other liability obligations and/or rights consistent with this
  152. License. However, in accepting such obligations, You may act only
  153. on Your own behalf and on Your sole responsibility, not on behalf
  154. of any other Contributor, and only if You agree to indemnify,
  155. defend, and hold each Contributor harmless for any liability
  156. incurred by, or claims asserted against, such Contributor by reason
  157. of your accepting any such warranty or additional liability.
  158. END OF TERMS AND CONDITIONS
  159. ====================
  160. Open Source Licenses
  161. ====================
  162. This software may use portions of the following libraries subject to the accompanying licenses:
  163. ****************************
  164. chromium_audio
  165. ****************************
  166. // Copyright 2014 The Chromium Authors. All rights reserved.
  167. //
  168. // Redistribution and use in source and binary forms, with or without
  169. // modification, are permitted provided that the following conditions are
  170. // met:
  171. //
  172. // * Redistributions of source code must retain the above copyright
  173. // notice, this list of conditions and the following disclaimer.
  174. // * Redistributions in binary form must reproduce the above
  175. // copyright notice, this list of conditions and the following disclaimer
  176. // in the documentation and/or other materials provided with the
  177. // distribution.
  178. // * Neither the name of Google Inc. nor the names of its
  179. // contributors may be used to endorse or promote products derived from
  180. // this software without specific prior written permission.
  181. //
  182. // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  183. // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  184. // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  185. // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  186. // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  187. // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  188. // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  189. // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  190. // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  191. // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  192. // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  193. ****************************
  194. curl
  195. ****************************
  196. COPYRIGHT AND PERMISSION NOTICE
  197. Copyright (c) 1996 - 2014, Daniel Stenberg, <daniel@haxx.se>.
  198. All rights reserved.
  199. Permission to use, copy, modify, and distribute this software for any purpose
  200. with or without fee is hereby granted, provided that the above copyright
  201. notice and this permission notice appear in all copies.
  202. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  203. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  204. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN
  205. NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
  206. DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
  207. OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE
  208. OR OTHER DEALINGS IN THE SOFTWARE.
  209. Except as contained in this notice, the name of a copyright holder shall not
  210. be used in advertising or otherwise to promote the sale, use or other dealings
  211. in this Software without prior written authorization of the copyright holder.
  212. ****************************
  213. dynamic_annotations
  214. ****************************
  215. Copyright (c) 2008-2009, Google Inc.
  216. All rights reserved.
  217. Redistribution and use in source and binary forms, with or without
  218. modification, are permitted provided that the following conditions are
  219. met:
  220. * Redistributions of source code must retain the above copyright
  221. notice, this list of conditions and the following disclaimer.
  222. * Redistributions in binary form must reproduce the above
  223. copyright notice, this list of conditions and the following disclaimer
  224. in the documentation and/or other materials provided with the
  225. distribution.
  226. * Neither the name of Google Inc. nor the names of its
  227. contributors may be used to endorse or promote products derived from
  228. this software without specific prior written permission.
  229. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  230. "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  231. LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  232. A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  233. OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  234. SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  235. LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  236. DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  237. THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  238. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  239. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  240. ****************************
  241. eigen3
  242. ****************************
  243. Eigen is primarily MPL2 licensed. See COPYING.MPL2 and these links:
  244. http://www.mozilla.org/MPL/2.0/
  245. http://www.mozilla.org/MPL/2.0/FAQ.html
  246. Some files contain third-party code under BSD or LGPL licenses, whence
  247. the other COPYING.* files here.
  248. All the LGPL code is either LGPL 2.1-only, or LGPL 2.1-or-later.
  249. For this reason, the COPYING.LGPL file contains the LGPL 2.1 text.
  250. If you want to guarantee that the Eigen code that you are #including
  251. is licensed under the MPL2 and possibly more permissive licenses (like
  252. BSD), #define this preprocessor symbol: EIGEN_MPL2_ONLY
  253. For example, with most compilers, you could add this to your project
  254. CXXFLAGS: -DEIGEN_MPL2_ONLY
  255. This will cause a compilation error to be generated if you #include
  256. any code that is LGPL licensed.
  257. ----------------------------------------------------------------------
  258. Following applies to:
  259. ./test/mapstaticmethods.cpp
  260. ./test/schur_real.cpp
  261. ./test/prec_inverse_4x4.cpp
  262. ./test/smallvectors.cpp
  263. ./test/redux.cpp
  264. ./test/special_numbers.cpp
  265. ./test/adjoint.cpp
  266. ./test/resize.cpp
  267. ./test/mixingtypes.cpp
  268. ./test/product_trmv.cpp
  269. ./test/sparse_solvers.cpp
  270. ./test/cholesky.cpp
  271. ./test/geo_quaternion.cpp
  272. ./test/miscmatrices.cpp
  273. ./test/stddeque.cpp
  274. ./test/integer_types.cpp
  275. ./test/product_large.cpp
  276. ./test/eigensolver_generic.cpp
  277. ./test/householder.cpp
  278. ./test/geo_orthomethods.cpp
  279. ./test/array_for_matrix.cpp
  280. ./test/sparseLM.cpp
  281. ./test/upperbidiagonalization.cpp
  282. ./test/nomalloc.cpp
  283. ./test/packetmath.cpp
  284. ./test/jacobisvd.cpp
  285. ./test/geo_transformations.cpp
  286. ./test/swap.cpp
  287. ./test/eigensolver_selfadjoint.cpp
  288. ./test/inverse.cpp
  289. ./test/product_selfadjoint.cpp
  290. ./test/product_trsolve.cpp
  291. ./test/product_extra.cpp
  292. ./test/sparse_solver.h
  293. ./test/mapstride.cpp
  294. ./test/mapped_matrix.cpp
  295. ./test/geo_eulerangles.cpp
  296. ./test/eigen2support.cpp
  297. ./test/denseLM.cpp
  298. ./test/stdvector.cpp
  299. ./test/nesting_ops.cpp
  300. ./test/sparse_permutations.cpp
  301. ./test/zerosized.cpp
  302. ./test/exceptions.cpp
  303. ./test/vectorwiseop.cpp
  304. ./test/cwiseop.cpp
  305. ./test/basicstuff.cpp
  306. ./test/product_trmm.cpp
  307. ./test/linearstructure.cpp
  308. ./test/sparse_product.cpp
  309. ./test/stdvector_overload.cpp
  310. ./test/stable_norm.cpp
  311. ./test/umeyama.cpp
  312. ./test/unalignedcount.cpp
  313. ./test/triangular.cpp
  314. ./test/product_mmtr.cpp
  315. ./test/sparse_basic.cpp
  316. ./test/sparse_vector.cpp
  317. ./test/meta.cpp
  318. ./test/real_qz.cpp
  319. ./test/ref.cpp
  320. ./test/eigensolver_complex.cpp
  321. ./test/cholmod_support.cpp
  322. ./test/conjugate_gradient.cpp
  323. ./test/sparse.h
  324. ./test/simplicial_cholesky.cpp
  325. ./test/bicgstab.cpp
  326. ./test/dynalloc.cpp
  327. ./test/product_notemporary.cpp
  328. ./test/geo_hyperplane.cpp
  329. ./test/lu.cpp
  330. ./test/qr.cpp
  331. ./test/hessenberg.cpp
  332. ./test/sizeof.cpp
  333. ./test/main.h
  334. ./test/selfadjoint.cpp
  335. ./test/permutationmatrices.cpp
  336. ./test/superlu_support.cpp
  337. ./test/qtvector.cpp
  338. ./test/geo_homogeneous.cpp
  339. ./test/determinant.cpp
  340. ./test/array_reverse.cpp
  341. ./test/unalignedassert.cpp
  342. ./test/stdlist.cpp
  343. ./test/product_symm.cpp
  344. ./test/corners.cpp
  345. ./test/dontalign.cpp
  346. ./test/visitor.cpp
  347. ./test/geo_alignedbox.cpp
  348. ./test/diagonalmatrices.cpp
  349. ./test/product_small.cpp
  350. ./test/eigensolver_generalized_real.cpp
  351. ./test/umfpack_support.cpp
  352. ./test/first_aligned.cpp
  353. ./test/qr_fullpivoting.cpp
  354. ./test/array_replicate.cpp
  355. ./test/geo_parametrizedline.cpp
  356. ./test/eigen2/eigen2_unalignedassert.cpp
  357. ./test/eigen2/eigen2_prec_inverse_4x4.cpp
  358. ./test/eigen2/eigen2_alignedbox.cpp
  359. ./test/eigen2/eigen2_sparse_product.cpp
  360. ./test/eigen2/eigen2_meta.cpp
  361. ./test/eigen2/eigen2_nomalloc.cpp
  362. ./test/eigen2/eigen2_visitor.cpp
  363. ./test/eigen2/eigen2_packetmath.cpp
  364. ./test/eigen2/eigen2_svd.cpp
  365. ./test/eigen2/eigen2_mixingtypes.cpp
  366. ./test/eigen2/eigen2_qr.cpp
  367. ./test/eigen2/eigen2_cwiseop.cpp
  368. ./test/eigen2/eigen2_geometry_with_eigen2_prefix.cpp
  369. ./test/eigen2/eigen2_smallvectors.cpp
  370. ./test/eigen2/eigen2_commainitializer.cpp
  371. ./test/eigen2/eigen2_sparse_solvers.cpp
  372. ./test/eigen2/eigen2_hyperplane.cpp
  373. ./test/eigen2/eigen2_eigensolver.cpp
  374. ./test/eigen2/eigen2_linearstructure.cpp
  375. ./test/eigen2/eigen2_sizeof.cpp
  376. ./test/eigen2/eigen2_parametrizedline.cpp
  377. ./test/eigen2/eigen2_lu.cpp
  378. ./test/eigen2/eigen2_adjoint.cpp
  379. ./test/eigen2/eigen2_geometry.cpp
  380. ./test/eigen2/eigen2_stdvector.cpp
  381. ./test/eigen2/eigen2_newstdvector.cpp
  382. ./test/eigen2/eigen2_submatrices.cpp
  383. ./test/eigen2/sparse.h
  384. ./test/eigen2/eigen2_swap.cpp
  385. ./test/eigen2/eigen2_triangular.cpp
  386. ./test/eigen2/eigen2_basicstuff.cpp
  387. ./test/eigen2/gsl_helper.h
  388. ./test/eigen2/eigen2_dynalloc.cpp
  389. ./test/eigen2/eigen2_array.cpp
  390. ./test/eigen2/eigen2_map.cpp
  391. ./test/eigen2/main.h
  392. ./test/eigen2/eigen2_miscmatrices.cpp
  393. ./test/eigen2/eigen2_product_large.cpp
  394. ./test/eigen2/eigen2_first_aligned.cpp
  395. ./test/eigen2/eigen2_cholesky.cpp
  396. ./test/eigen2/eigen2_determinant.cpp
  397. ./test/eigen2/eigen2_sum.cpp
  398. ./test/eigen2/eigen2_inverse.cpp
  399. ./test/eigen2/eigen2_regression.cpp
  400. ./test/eigen2/eigen2_product_small.cpp
  401. ./test/eigen2/eigen2_qtvector.cpp
  402. ./test/eigen2/eigen2_sparse_vector.cpp
  403. ./test/eigen2/product.h
  404. ./test/eigen2/eigen2_sparse_basic.cpp
  405. ./test/eigen2/eigen2_bug_132.cpp
  406. ./test/array.cpp
  407. ./test/product_syrk.cpp
  408. ./test/commainitializer.cpp
  409. ./test/conservative_resize.cpp
  410. ./test/qr_colpivoting.cpp
  411. ./test/nullary.cpp
  412. ./test/bandmatrix.cpp
  413. ./test/pastix_support.cpp
  414. ./test/product.h
  415. ./test/block.cpp
  416. ./test/vectorization_logic.cpp
  417. ./test/jacobi.cpp
  418. ./test/diagonal.cpp
  419. ./test/schur_complex.cpp
  420. ./test/sizeoverflow.cpp
  421. ./bench/BenchTimer.h
  422. ./bench/benchFFT.cpp
  423. ./bench/eig33.cpp
  424. ./bench/spbench/spbenchsolver.h
  425. ./bench/spbench/spbenchstyle.h
  426. ./lapack/complex_double.cpp
  427. ./lapack/cholesky.cpp
  428. ./lapack/lapack_common.h
  429. ./lapack/eigenvalues.cpp
  430. ./lapack/single.cpp
  431. ./lapack/lu.cpp
  432. ./lapack/complex_single.cpp
  433. ./lapack/double.cpp
  434. ./demos/mix_eigen_and_c/binary_library.cpp
  435. ./demos/mix_eigen_and_c/binary_library.h
  436. ./demos/mix_eigen_and_c/example.c
  437. ./demos/mandelbrot/mandelbrot.cpp
  438. ./demos/mandelbrot/mandelbrot.h
  439. ./demos/opengl/icosphere.cpp
  440. ./demos/opengl/icosphere.h
  441. ./demos/opengl/camera.cpp
  442. ./demos/opengl/quaternion_demo.h
  443. ./demos/opengl/camera.h
  444. ./demos/opengl/trackball.h
  445. ./demos/opengl/gpuhelper.h
  446. ./demos/opengl/trackball.cpp
  447. ./demos/opengl/gpuhelper.cpp
  448. ./demos/opengl/quaternion_demo.cpp
  449. ./debug/gdb/printers.py
  450. ./unsupported/test/minres.cpp
  451. ./unsupported/test/openglsupport.cpp
  452. ./unsupported/test/jacobisvd.cpp
  453. ./unsupported/test/dgmres.cpp
  454. ./unsupported/test/matrix_square_root.cpp
  455. ./unsupported/test/bdcsvd.cpp
  456. ./unsupported/test/matrix_exponential.cpp
  457. ./unsupported/test/forward_adolc.cpp
  458. ./unsupported/test/polynomialsolver.cpp
  459. ./unsupported/test/matrix_function.cpp
  460. ./unsupported/test/sparse_extra.cpp
  461. ./unsupported/test/matrix_functions.h
  462. ./unsupported/test/svd_common.h
  463. ./unsupported/test/FFTW.cpp
  464. ./unsupported/test/alignedvector3.cpp
  465. ./unsupported/test/autodiff.cpp
  466. ./unsupported/test/gmres.cpp
  467. ./unsupported/test/BVH.cpp
  468. ./unsupported/test/levenberg_marquardt.cpp
  469. ./unsupported/test/matrix_power.cpp
  470. ./unsupported/test/kronecker_product.cpp
  471. ./unsupported/test/splines.cpp
  472. ./unsupported/test/polynomialutils.cpp
  473. ./unsupported/bench/bench_svd.cpp
  474. ./unsupported/Eigen/IterativeSolvers
  475. ./unsupported/Eigen/src/IterativeSolvers/DGMRES.h
  476. ./unsupported/Eigen/src/IterativeSolvers/IncompleteLU.h
  477. ./unsupported/Eigen/src/IterativeSolvers/GMRES.h
  478. ./unsupported/Eigen/src/IterativeSolvers/IncompleteCholesky.h
  479. ./unsupported/Eigen/src/IterativeSolvers/Scaling.h
  480. ./unsupported/Eigen/src/IterativeSolvers/MINRES.h
  481. ./unsupported/Eigen/src/SparseExtra/RandomSetter.h
  482. ./unsupported/Eigen/src/SparseExtra/MatrixMarketIterator.h
  483. ./unsupported/Eigen/src/SparseExtra/DynamicSparseMatrix.h
  484. ./unsupported/Eigen/src/SparseExtra/MarketIO.h
  485. ./unsupported/Eigen/src/SparseExtra/BlockOfDynamicSparseMatrix.h
  486. ./unsupported/Eigen/src/KroneckerProduct/KroneckerTensorProduct.h
  487. ./unsupported/Eigen/src/NonLinearOptimization/LevenbergMarquardt.h
  488. ./unsupported/Eigen/src/NonLinearOptimization/HybridNonLinearSolver.h
  489. ./unsupported/Eigen/src/BVH/BVAlgorithms.h
  490. ./unsupported/Eigen/src/BVH/KdBVH.h
  491. ./unsupported/Eigen/src/AutoDiff/AutoDiffScalar.h
  492. ./unsupported/Eigen/src/AutoDiff/AutoDiffJacobian.h
  493. ./unsupported/Eigen/src/AutoDiff/AutoDiffVector.h
  494. ./unsupported/Eigen/src/Splines/Spline.h
  495. ./unsupported/Eigen/src/Splines/SplineFitting.h
  496. ./unsupported/Eigen/src/Splines/SplineFwd.h
  497. ./unsupported/Eigen/src/SVD/JacobiSVD.h
  498. ./unsupported/Eigen/src/SVD/BDCSVD.h
  499. ./unsupported/Eigen/src/SVD/SVDBase.h
  500. ./unsupported/Eigen/src/MatrixFunctions/MatrixFunction.h
  501. ./unsupported/Eigen/src/MatrixFunctions/MatrixSquareRoot.h
  502. ./unsupported/Eigen/src/MatrixFunctions/MatrixLogarithm.h
  503. ./unsupported/Eigen/src/MatrixFunctions/StemFunction.h
  504. ./unsupported/Eigen/src/MatrixFunctions/MatrixPower.h
  505. ./unsupported/Eigen/src/MatrixFunctions/MatrixExponential.h
  506. ./unsupported/Eigen/src/MatrixFunctions/MatrixFunctionAtomic.h
  507. ./unsupported/Eigen/src/MoreVectorization/MathFunctions.h
  508. ./unsupported/Eigen/src/LevenbergMarquardt/LevenbergMarquardt.h
  509. ./unsupported/Eigen/src/FFT/ei_fftw_impl.h
  510. ./unsupported/Eigen/src/FFT/ei_kissfft_impl.h
  511. ./unsupported/Eigen/src/Polynomials/PolynomialSolver.h
  512. ./unsupported/Eigen/src/Polynomials/Companion.h
  513. ./unsupported/Eigen/src/Polynomials/PolynomialUtils.h
  514. ./unsupported/Eigen/src/NumericalDiff/NumericalDiff.h
  515. ./unsupported/Eigen/src/Skyline/SkylineProduct.h
  516. ./unsupported/Eigen/src/Skyline/SkylineMatrixBase.h
  517. ./unsupported/Eigen/src/Skyline/SkylineStorage.h
  518. ./unsupported/Eigen/src/Skyline/SkylineUtil.h
  519. ./unsupported/Eigen/src/Skyline/SkylineInplaceLU.h
  520. ./unsupported/Eigen/src/Skyline/SkylineMatrix.h
  521. ./unsupported/Eigen/SparseExtra
  522. ./unsupported/Eigen/AdolcForward
  523. ./unsupported/Eigen/KroneckerProduct
  524. ./unsupported/Eigen/NonLinearOptimization
  525. ./unsupported/Eigen/BVH
  526. ./unsupported/Eigen/OpenGLSupport
  527. ./unsupported/Eigen/ArpackSupport
  528. ./unsupported/Eigen/AutoDiff
  529. ./unsupported/Eigen/Splines
  530. ./unsupported/Eigen/MPRealSupport
  531. ./unsupported/Eigen/MatrixFunctions
  532. ./unsupported/Eigen/MoreVectorization
  533. ./unsupported/Eigen/LevenbergMarquardt
  534. ./unsupported/Eigen/AlignedVector3
  535. ./unsupported/Eigen/FFT
  536. ./unsupported/Eigen/Polynomials
  537. ./unsupported/Eigen/NumericalDiff
  538. ./unsupported/Eigen/Skyline
  539. ./COPYING.README
  540. ./COPYING.README
  541. ./LICENSE
  542. ./LICENSE
  543. ./LICENSE
  544. ./Eigen/Eigen2Support
  545. ./Eigen/src/Eigen2Support/VectorBlock.h
  546. ./Eigen/src/Eigen2Support/Cwise.h
  547. ./Eigen/src/Eigen2Support/Minor.h
  548. ./Eigen/src/Eigen2Support/Lazy.h
  549. ./Eigen/src/Eigen2Support/Memory.h
  550. ./Eigen/src/Eigen2Support/MathFunctions.h
  551. ./Eigen/src/Eigen2Support/Geometry/AlignedBox.h
  552. ./Eigen/src/Eigen2Support/Geometry/Hyperplane.h
  553. ./Eigen/src/Eigen2Support/Geometry/Quaternion.h
  554. ./Eigen/src/Eigen2Support/Geometry/Rotation2D.h
  555. ./Eigen/src/Eigen2Support/Geometry/ParametrizedLine.h
  556. ./Eigen/src/Eigen2Support/Geometry/RotationBase.h
  557. ./Eigen/src/Eigen2Support/Geometry/Translation.h
  558. ./Eigen/src/Eigen2Support/Geometry/Scaling.h
  559. ./Eigen/src/Eigen2Support/Geometry/AngleAxis.h
  560. ./Eigen/src/Eigen2Support/Geometry/Transform.h
  561. ./Eigen/src/Eigen2Support/TriangularSolver.h
  562. ./Eigen/src/Eigen2Support/LU.h
  563. ./Eigen/src/Eigen2Support/QR.h
  564. ./Eigen/src/Eigen2Support/SVD.h
  565. ./Eigen/src/Eigen2Support/Meta.h
  566. ./Eigen/src/Eigen2Support/Block.h
  567. ./Eigen/src/Eigen2Support/Macros.h
  568. ./Eigen/src/Eigen2Support/LeastSquares.h
  569. ./Eigen/src/Eigen2Support/CwiseOperators.h
  570. ./Eigen/src/Jacobi/Jacobi.h
  571. ./Eigen/src/misc/Kernel.h
  572. ./Eigen/src/misc/SparseSolve.h
  573. ./Eigen/src/misc/Solve.h
  574. ./Eigen/src/misc/Image.h
  575. ./Eigen/src/SparseCore/SparseColEtree.h
  576. ./Eigen/src/SparseCore/SparseTranspose.h
  577. ./Eigen/src/SparseCore/SparseUtil.h
  578. ./Eigen/src/SparseCore/SparseCwiseBinaryOp.h
  579. ./Eigen/src/SparseCore/SparseDiagonalProduct.h
  580. ./Eigen/src/SparseCore/SparseProduct.h
  581. ./Eigen/src/SparseCore/SparseDot.h
  582. ./Eigen/src/SparseCore/SparseCwiseUnaryOp.h
  583. ./Eigen/src/SparseCore/SparseSparseProductWithPruning.h
  584. ./Eigen/src/SparseCore/SparseBlock.h
  585. ./Eigen/src/SparseCore/SparseDenseProduct.h
  586. ./Eigen/src/SparseCore/CompressedStorage.h
  587. ./Eigen/src/SparseCore/SparseMatrixBase.h
  588. ./Eigen/src/SparseCore/MappedSparseMatrix.h
  589. ./Eigen/src/SparseCore/SparseTriangularView.h
  590. ./Eigen/src/SparseCore/SparseView.h
  591. ./Eigen/src/SparseCore/SparseFuzzy.h
  592. ./Eigen/src/SparseCore/TriangularSolver.h
  593. ./Eigen/src/SparseCore/SparseSelfAdjointView.h
  594. ./Eigen/src/SparseCore/SparseMatrix.h
  595. ./Eigen/src/SparseCore/SparseVector.h
  596. ./Eigen/src/SparseCore/AmbiVector.h
  597. ./Eigen/src/SparseCore/ConservativeSparseSparseProduct.h
  598. ./Eigen/src/SparseCore/SparseRedux.h
  599. ./Eigen/src/SparseCore/SparsePermutation.h
  600. ./Eigen/src/Eigenvalues/RealSchur.h
  601. ./Eigen/src/Eigenvalues/ComplexEigenSolver.h
  602. ./Eigen/src/Eigenvalues/GeneralizedEigenSolver.h
  603. ./Eigen/src/Eigenvalues/ComplexSchur.h
  604. ./Eigen/src/Eigenvalues/RealQZ.h
  605. ./Eigen/src/Eigenvalues/EigenSolver.h
  606. ./Eigen/src/Eigenvalues/HessenbergDecomposition.h
  607. ./Eigen/src/Eigenvalues/GeneralizedSelfAdjointEigenSolver.h
  608. ./Eigen/src/Eigenvalues/Tridiagonalization.h
  609. ./Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h
  610. ./Eigen/src/Eigenvalues/MatrixBaseEigenvalues.h
  611. ./Eigen/src/SuperLUSupport/SuperLUSupport.h
  612. ./Eigen/src/StlSupport/StdDeque.h
  613. ./Eigen/src/StlSupport/StdVector.h
  614. ./Eigen/src/StlSupport/StdList.h
  615. ./Eigen/src/StlSupport/details.h
  616. ./Eigen/src/SparseQR/SparseQR.h
  617. ./Eigen/src/LU/Inverse.h
  618. ./Eigen/src/LU/arch/Inverse_SSE.h
  619. ./Eigen/src/LU/Determinant.h
  620. ./Eigen/src/LU/PartialPivLU.h
  621. ./Eigen/src/LU/FullPivLU.h
  622. ./Eigen/src/UmfPackSupport/UmfPackSupport.h
  623. ./Eigen/src/OrderingMethods/Ordering.h
  624. ./Eigen/src/OrderingMethods/Eigen_Colamd.h
  625. ./Eigen/src/QR/HouseholderQR.h
  626. ./Eigen/src/QR/ColPivHouseholderQR.h
  627. ./Eigen/src/QR/FullPivHouseholderQR.h
  628. ./Eigen/src/SVD/JacobiSVD.h
  629. ./Eigen/src/SVD/UpperBidiagonalization.h
  630. ./Eigen/src/Geometry/OrthoMethods.h
  631. ./Eigen/src/Geometry/AlignedBox.h
  632. ./Eigen/src/Geometry/Hyperplane.h
  633. ./Eigen/src/Geometry/Quaternion.h
  634. ./Eigen/src/Geometry/EulerAngles.h
  635. ./Eigen/src/Geometry/Rotation2D.h
  636. ./Eigen/src/Geometry/ParametrizedLine.h
  637. ./Eigen/src/Geometry/RotationBase.h
  638. ./Eigen/src/Geometry/arch/Geometry_SSE.h
  639. ./Eigen/src/Geometry/Umeyama.h
  640. ./Eigen/src/Geometry/Homogeneous.h
  641. ./Eigen/src/Geometry/Translation.h
  642. ./Eigen/src/Geometry/Scaling.h
  643. ./Eigen/src/Geometry/AngleAxis.h
  644. ./Eigen/src/Geometry/Transform.h
  645. ./Eigen/src/plugins/BlockMethods.h
  646. ./Eigen/src/plugins/CommonCwiseUnaryOps.h
  647. ./Eigen/src/plugins/CommonCwiseBinaryOps.h
  648. ./Eigen/src/plugins/MatrixCwiseUnaryOps.h
  649. ./Eigen/src/plugins/MatrixCwiseBinaryOps.h
  650. ./Eigen/src/Householder/Householder.h
  651. ./Eigen/src/Householder/HouseholderSequence.h
  652. ./Eigen/src/Householder/BlockHouseholder.h
  653. ./Eigen/src/Core/VectorBlock.h
  654. ./Eigen/src/Core/Matrix.h
  655. ./Eigen/src/Core/Ref.h
  656. ./Eigen/src/Core/SelfAdjointView.h
  657. ./Eigen/src/Core/MathFunctions.h
  658. ./Eigen/src/Core/GlobalFunctions.h
  659. ./Eigen/src/Core/MapBase.h
  660. ./Eigen/src/Core/EigenBase.h
  661. ./Eigen/src/Core/GenericPacketMath.h
  662. ./Eigen/src/Core/NestByValue.h
  663. ./Eigen/src/Core/CwiseUnaryOp.h
  664. ./Eigen/src/Core/SolveTriangular.h
  665. ./Eigen/src/Core/Fuzzy.h
  666. ./Eigen/src/Core/Visitor.h
  667. ./Eigen/src/Core/Map.h
  668. ./Eigen/src/Core/NoAlias.h
  669. ./Eigen/src/Core/Diagonal.h
  670. ./Eigen/src/Core/StableNorm.h
  671. ./Eigen/src/Core/CoreIterators.h
  672. ./Eigen/src/Core/products/Parallelizer.h
  673. ./Eigen/src/Core/products/SelfadjointMatrixVector.h
  674. ./Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h
  675. ./Eigen/src/Core/products/TriangularSolverMatrix.h
  676. ./Eigen/src/Core/products/GeneralMatrixMatrix.h
  677. ./Eigen/src/Core/products/SelfadjointProduct.h
  678. ./Eigen/src/Core/products/CoeffBasedProduct.h
  679. ./Eigen/src/Core/products/TriangularMatrixVector.h
  680. ./Eigen/src/Core/products/SelfadjointMatrixMatrix.h
  681. ./Eigen/src/Core/products/TriangularSolverVector.h
  682. ./Eigen/src/Core/products/SelfadjointRank2Update.h
  683. ./Eigen/src/Core/products/GeneralBlockPanelKernel.h
  684. ./Eigen/src/Core/products/GeneralMatrixVector.h
  685. ./Eigen/src/Core/products/TriangularMatrixMatrix.h
  686. ./Eigen/src/Core/Reverse.h
  687. ./Eigen/src/Core/BooleanRedux.h
  688. ./Eigen/src/Core/Replicate.h
  689. ./Eigen/src/Core/arch/AltiVec/PacketMath.h
  690. ./Eigen/src/Core/arch/AltiVec/Complex.h
  691. ./Eigen/src/Core/arch/SSE/PacketMath.h
  692. ./Eigen/src/Core/arch/SSE/Complex.h
  693. ./Eigen/src/Core/arch/SSE/MathFunctions.h
  694. ./Eigen/src/Core/arch/NEON/PacketMath.h
  695. ./Eigen/src/Core/arch/NEON/Complex.h
  696. ./Eigen/src/Core/arch/Default/Settings.h
  697. ./Eigen/src/Core/CwiseUnaryView.h
  698. ./Eigen/src/Core/Array.h
  699. ./Eigen/src/Core/ArrayWrapper.h
  700. ./Eigen/src/Core/Swap.h
  701. ./Eigen/src/Core/Transpositions.h
  702. ./Eigen/src/Core/Random.h
  703. ./Eigen/src/Core/IO.h
  704. ./Eigen/src/Core/SelfCwiseBinaryOp.h
  705. ./Eigen/src/Core/VectorwiseOp.h
  706. ./Eigen/src/Core/Select.h
  707. ./Eigen/src/Core/ArrayBase.h
  708. ./Eigen/src/Core/DenseCoeffsBase.h
  709. ./Eigen/src/Core/DiagonalProduct.h
  710. ./Eigen/src/Core/Assign.h
  711. ./Eigen/src/Core/Redux.h
  712. ./Eigen/src/Core/ForceAlignedAccess.h
  713. ./Eigen/src/Core/BandMatrix.h
  714. ./Eigen/src/Core/PlainObjectBase.h
  715. ./Eigen/src/Core/DenseBase.h
  716. ./Eigen/src/Core/Flagged.h
  717. ./Eigen/src/Core/CwiseBinaryOp.h
  718. ./Eigen/src/Core/ProductBase.h
  719. ./Eigen/src/Core/TriangularMatrix.h
  720. ./Eigen/src/Core/Transpose.h
  721. ./Eigen/src/Core/DiagonalMatrix.h
  722. ./Eigen/src/Core/Dot.h
  723. ./Eigen/src/Core/Functors.h
  724. ./Eigen/src/Core/PermutationMatrix.h
  725. ./Eigen/src/Core/NumTraits.h
  726. ./Eigen/src/Core/MatrixBase.h
  727. ./Eigen/src/Core/DenseStorage.h
  728. ./Eigen/src/Core/util/Memory.h
  729. ./Eigen/src/Core/util/StaticAssert.h
  730. ./Eigen/src/Core/util/BlasUtil.h
  731. ./Eigen/src/Core/util/MatrixMapper.h
  732. ./Eigen/src/Core/util/XprHelper.h
  733. ./Eigen/src/Core/util/ForwardDeclarations.h
  734. ./Eigen/src/Core/util/Meta.h
  735. ./Eigen/src/Core/util/Macros.h
  736. ./Eigen/src/Core/util/Constants.h
  737. ./Eigen/src/Core/CwiseNullaryOp.h
  738. ./Eigen/src/Core/Block.h
  739. ./Eigen/src/Core/GeneralProduct.h
  740. ./Eigen/src/Core/CommaInitializer.h
  741. ./Eigen/src/Core/ReturnByValue.h
  742. ./Eigen/src/Core/Stride.h
  743. ./Eigen/src/SPQRSupport/SuiteSparseQRSupport.h
  744. ./Eigen/src/SparseLU/SparseLU_column_dfs.h
  745. ./Eigen/src/SparseLU/SparseLU_panel_dfs.h
  746. ./Eigen/src/SparseLU/SparseLU_relax_snode.h
  747. ./Eigen/src/SparseLU/SparseLU_panel_bmod.h
  748. ./Eigen/src/SparseLU/SparseLU_SupernodalMatrix.h
  749. ./Eigen/src/SparseLU/SparseLU_Utils.h
  750. ./Eigen/src/SparseLU/SparseLU_gemm_kernel.h
  751. ./Eigen/src/SparseLU/SparseLU_kernel_bmod.h
  752. ./Eigen/src/SparseLU/SparseLU_pivotL.h
  753. ./Eigen/src/SparseLU/SparseLU_Memory.h
  754. ./Eigen/src/SparseLU/SparseLU_heap_relax_snode.h
  755. ./Eigen/src/SparseLU/SparseLUImpl.h
  756. ./Eigen/src/SparseLU/SparseLU_copy_to_ucol.h
  757. ./Eigen/src/SparseLU/SparseLU_Structs.h
  758. ./Eigen/src/SparseLU/SparseLU.h
  759. ./Eigen/src/SparseLU/SparseLU_column_bmod.h
  760. ./Eigen/src/SparseLU/SparseLU_pruneL.h
  761. ./Eigen/src/IterativeLinearSolvers/IncompleteLUT.h
  762. ./Eigen/src/IterativeLinearSolvers/BasicPreconditioners.h
  763. ./Eigen/src/IterativeLinearSolvers/IterativeSolverBase.h
  764. ./Eigen/src/IterativeLinearSolvers/ConjugateGradient.h
  765. ./Eigen/src/IterativeLinearSolvers/BiCGSTAB.h
  766. ./Eigen/src/SparseCholesky/SimplicialCholesky.h
  767. ./Eigen/src/Cholesky/LDLT.h
  768. ./Eigen/src/Cholesky/LLT.h
  769. ./Eigen/src/CholmodSupport/CholmodSupport.h
  770. ./Eigen/src/PaStiXSupport/PaStiXSupport.h
  771. ./Eigen/src/MetisSupport/MetisSupport.h
  772. ./Eigen/StdVector
  773. ./Eigen/Core
  774. ./Eigen/SparseLU
  775. ./Eigen/StdList
  776. ./Eigen/StdDeque
  777. ./Eigen/SparseCholesky
  778. ./scripts/relicense.py
  779. ./scripts/relicense.py
  780. ./blas/BandTriangularSolver.h
  781. ./blas/PackedTriangularMatrixVector.h
  782. ./blas/complex_double.cpp
  783. ./blas/level2_real_impl.h
  784. ./blas/level1_cplx_impl.h
  785. ./blas/level1_impl.h
  786. ./blas/level1_real_impl.h
  787. ./blas/level3_impl.h
  788. ./blas/single.cpp
  789. ./blas/level2_cplx_impl.h
  790. ./blas/PackedSelfadjointProduct.h
  791. ./blas/Rank2Update.h
  792. ./blas/complex_single.cpp
  793. ./blas/PackedTriangularSolverVector.h
  794. ./blas/double.cpp
  795. ./blas/common.h
  796. ./blas/level2_impl.h
  797. ./blas/GeneralRank1Update.h
  798. Mozilla Public License Version 2.0
  799. ==================================
  800. 1. Definitions
  801. --------------
  802. 1.1. "Contributor"
  803. means each individual or legal entity that creates, contributes to
  804. the creation of, or owns Covered Software.
  805. 1.2. "Contributor Version"
  806. means the combination of the Contributions of others (if any) used
  807. by a Contributor and that particular Contributor's Contribution.
  808. 1.3. "Contribution"
  809. means Covered Software of a particular Contributor.
  810. 1.4. "Covered Software"
  811. means Source Code Form to which the initial Contributor has attached
  812. the notice in Exhibit A, the Executable Form of such Source Code
  813. Form, and Modifications of such Source Code Form, in each case
  814. including portions thereof.
  815. 1.5. "Incompatible With Secondary Licenses"
  816. means
  817. (a) that the initial Contributor has attached the notice described
  818. in Exhibit B to the Covered Software; or
  819. (b) that the Covered Software was made available under the terms of
  820. version 1.1 or earlier of the License, but not also under the
  821. terms of a Secondary License.
  822. 1.6. "Executable Form"
  823. means any form of the work other than Source Code Form.
  824. 1.7. "Larger Work"
  825. means a work that combines Covered Software with other material, in
  826. a separate file or files, that is not Covered Software.
  827. 1.8. "License"
  828. means this document.
  829. 1.9. "Licensable"
  830. means having the right to grant, to the maximum extent possible,
  831. whether at the time of the initial grant or subsequently, any and
  832. all of the rights conveyed by this License.
  833. 1.10. "Modifications"
  834. means any of the following:
  835. (a) any file in Source Code Form that results from an addition to,
  836. deletion from, or modification of the contents of Covered
  837. Software; or
  838. (b) any new file in Source Code Form that contains any Covered
  839. Software.
  840. 1.11. "Patent Claims" of a Contributor
  841. means any patent claim(s), including without limitation, method,
  842. process, and apparatus claims, in any patent Licensable by such
  843. Contributor that would be infringed, but for the grant of the
  844. License, by the making, using, selling, offering for sale, having
  845. made, import, or transfer of either its Contributions or its
  846. Contributor Version.
  847. 1.12. "Secondary License"
  848. means either the GNU General Public License, Version 2.0, the GNU
  849. Lesser General Public License, Version 2.1, the GNU Affero General
  850. Public License, Version 3.0, or any later versions of those
  851. licenses.
  852. 1.13. "Source Code Form"
  853. means the form of the work preferred for making modifications.
  854. 1.14. "You" (or "Your")
  855. means an individual or a legal entity exercising rights under this
  856. License. For legal entities, "You" includes any entity that
  857. controls, is controlled by, or is under common control with You. For
  858. purposes of this definition, "control" means (a) the power, direct
  859. or indirect, to cause the direction or management of such entity,
  860. whether by contract or otherwise, or (b) ownership of more than
  861. fifty percent (50%) of the outstanding shares or beneficial
  862. ownership of such entity.
  863. 2. License Grants and Conditions
  864. --------------------------------
  865. 2.1. Grants
  866. Each Contributor hereby grants You a world-wide, royalty-free,
  867. non-exclusive license:
  868. (a) under intellectual property rights (other than patent or trademark)
  869. Licensable by such Contributor to use, reproduce, make available,
  870. modify, display, perform, distribute, and otherwise exploit its
  871. Contributions, either on an unmodified basis, with Modifications, or
  872. as part of a Larger Work; and
  873. (b) under Patent Claims of such Contributor to make, use, sell, offer
  874. for sale, have made, import, and otherwise transfer either its
  875. Contributions or its Contributor Version.
  876. 2.2. Effective Date
  877. The licenses granted in Section 2.1 with respect to any Contribution
  878. become effective for each Contribution on the date the Contributor first
  879. distributes such Contribution.
  880. 2.3. Limitations on Grant Scope
  881. The licenses granted in this Section 2 are the only rights granted under
  882. this License. No additional rights or licenses will be implied from the
  883. distribution or licensing of Covered Software under this License.
  884. Notwithstanding Section 2.1(b) above, no patent license is granted by a
  885. Contributor:
  886. (a) for any code that a Contributor has removed from Covered Software;
  887. or
  888. (b) for infringements caused by: (i) Your and any other third party's
  889. modifications of Covered Software, or (ii) the combination of its
  890. Contributions with other software (except as part of its Contributor
  891. Version); or
  892. (c) under Patent Claims infringed by Covered Software in the absence of
  893. its Contributions.
  894. This License does not grant any rights in the trademarks, service marks,
  895. or logos of any Contributor (except as may be necessary to comply with
  896. the notice requirements in Section 3.4).
  897. 2.4. Subsequent Licenses
  898. No Contributor makes additional grants as a result of Your choice to
  899. distribute the Covered Software under a subsequent version of this
  900. License (see Section 10.2) or under the terms of a Secondary License (if
  901. permitted under the terms of Section 3.3).
  902. 2.5. Representation
  903. Each Contributor represents that the Contributor believes its
  904. Contributions are its original creation(s) or it has sufficient rights
  905. to grant the rights to its Contributions conveyed by this License.
  906. 2.6. Fair Use
  907. This License is not intended to limit any rights You have under
  908. applicable copyright doctrines of fair use, fair dealing, or other
  909. equivalents.
  910. 2.7. Conditions
  911. Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted
  912. in Section 2.1.
  913. 3. Responsibilities
  914. -------------------
  915. 3.1. Distribution of Source Form
  916. All distribution of Covered Software in Source Code Form, including any
  917. Modifications that You create or to which You contribute, must be under
  918. the terms of this License. You must inform recipients that the Source
  919. Code Form of the Covered Software is governed by the terms of this
  920. License, and how they can obtain a copy of this License. You may not
  921. attempt to alter or restrict the recipients' rights in the Source Code
  922. Form.
  923. 3.2. Distribution of Executable Form
  924. If You distribute Covered Software in Executable Form then:
  925. (a) such Covered Software must also be made available in Source Code
  926. Form, as described in Section 3.1, and You must inform recipients of
  927. the Executable Form how they can obtain a copy of such Source Code
  928. Form by reasonable means in a timely manner, at a charge no more
  929. than the cost of distribution to the recipient; and
  930. (b) You may distribute such Executable Form under the terms of this
  931. License, or sublicense it under different terms, provided that the
  932. license for the Executable Form does not attempt to limit or alter
  933. the recipients' rights in the Source Code Form under this License.
  934. 3.3. Distribution of a Larger Work
  935. You may create and distribute a Larger Work under terms of Your choice,
  936. provided that You also comply with the requirements of this License for
  937. the Covered Software. If the Larger Work is a combination of Covered
  938. Software with a work governed by one or more Secondary Licenses, and the
  939. Covered Software is not Incompatible With Secondary Licenses, this
  940. License permits You to additionally distribute such Covered Software
  941. under the terms of such Secondary License(s), so that the recipient of
  942. the Larger Work may, at their option, further distribute the Covered
  943. Software under the terms of either this License or such Secondary
  944. License(s).
  945. 3.4. Notices
  946. You may not remove or alter the substance of any license notices
  947. (including copyright notices, patent notices, disclaimers of warranty,
  948. or limitations of liability) contained within the Source Code Form of
  949. the Covered Software, except that You may alter any license notices to
  950. the extent required to remedy known factual inaccuracies.
  951. 3.5. Application of Additional Terms
  952. You may choose to offer, and to charge a fee for, warranty, support,
  953. indemnity or liability obligations to one or more recipients of Covered
  954. Software. However, You may do so only on Your own behalf, and not on
  955. behalf of any Contributor. You must make it absolutely clear that any
  956. such warranty, support, indemnity, or liability obligation is offered by
  957. You alone, and You hereby agree to indemnify every Contributor for any
  958. liability incurred by such Contributor as a result of warranty, support,
  959. indemnity or liability terms You offer. You may include additional
  960. disclaimers of warranty and limitations of liability specific to any
  961. jurisdiction.
  962. 4. Inability to Comply Due to Statute or Regulation
  963. ---------------------------------------------------
  964. If it is impossible for You to comply with any of the terms of this
  965. License with respect to some or all of the Covered Software due to
  966. statute, judicial order, or regulation then You must: (a) comply with
  967. the terms of this License to the maximum extent possible; and (b)
  968. describe the limitations and the code they affect. Such description must
  969. be placed in a text file included with all distributions of the Covered
  970. Software under this License. Except to the extent prohibited by statute
  971. or regulation, such description must be sufficiently detailed for a
  972. recipient of ordinary skill to be able to understand it.
  973. 5. Termination
  974. --------------
  975. 5.1. The rights granted under this License will terminate automatically
  976. if You fail to comply with any of its terms. However, if You become
  977. compliant, then the rights granted under this License from a particular
  978. Contributor are reinstated (a) provisionally, unless and until such
  979. Contributor explicitly and finally terminates Your grants, and (b) on an
  980. ongoing basis, if such Contributor fails to notify You of the
  981. non-compliance by some reasonable means prior to 60 days after You have
  982. come back into compliance. Moreover, Your grants from a particular
  983. Contributor are reinstated on an ongoing basis if such Contributor
  984. notifies You of the non-compliance by some reasonable means, this is the
  985. first time You have received notice of non-compliance with this License
  986. from such Contributor, and You become compliant prior to 30 days after
  987. Your receipt of the notice.
  988. 5.2. If You initiate litigation against any entity by asserting a patent
  989. infringement claim (excluding declaratory judgment actions,
  990. counter-claims, and cross-claims) alleging that a Contributor Version
  991. directly or indirectly infringes any patent, then the rights granted to
  992. You by any and all Contributors for the Covered Software under Section
  993. 2.1 of this License shall terminate.
  994. 5.3. In the event of termination under Sections 5.1 or 5.2 above, all
  995. end user license agreements (excluding distributors and resellers) which
  996. have been validly granted by You or Your distributors under this License
  997. prior to termination shall survive termination.
  998. ************************************************************************
  999. * *
  1000. * 6. Disclaimer of Warranty *
  1001. * ------------------------- *
  1002. * *
  1003. * Covered Software is provided under this License on an "as is" *
  1004. * basis, without warranty of any kind, either expressed, implied, or *
  1005. * statutory, including, without limitation, warranties that the *
  1006. * Covered Software is free of defects, merchantable, fit for a *
  1007. * particular purpose or non-infringing. The entire risk as to the *
  1008. * quality and performance of the Covered Software is with You. *
  1009. * Should any Covered Software prove defective in any respect, You *
  1010. * (not any Contributor) assume the cost of any necessary servicing, *
  1011. * repair, or correction. This disclaimer of warranty constitutes an *
  1012. * essential part of this License. No use of any Covered Software is *
  1013. * authorized under this License except under this disclaimer. *
  1014. * *
  1015. ************************************************************************
  1016. ************************************************************************
  1017. * *
  1018. * 7. Limitation of Liability *
  1019. * -------------------------- *
  1020. * *
  1021. * Under no circumstances and under no legal theory, whether tort *
  1022. * (including negligence), contract, or otherwise, shall any *
  1023. * Contributor, or anyone who distributes Covered Software as *
  1024. * permitted above, be liable to You for any direct, indirect, *
  1025. * special, incidental, or consequential damages of any character *
  1026. * including, without limitation, damages for lost profits, loss of *
  1027. * goodwill, work stoppage, computer failure or malfunction, or any *
  1028. * and all other commercial damages or losses, even if such party *
  1029. * shall have been informed of the possibility of such damages. This *
  1030. * limitation of liability shall not apply to liability for death or *
  1031. * personal injury resulting from such party's negligence to the *
  1032. * extent applicable law prohibits such limitation. Some *
  1033. * jurisdictions do not allow the exclusion or limitation of *
  1034. * incidental or consequential damages, so this exclusion and *
  1035. * limitation may not apply to You. *
  1036. * *
  1037. ************************************************************************
  1038. 8. Litigation
  1039. -------------
  1040. Any litigation relating to this License may be brought only in the
  1041. courts of a jurisdiction where the defendant maintains its principal
  1042. place of business and such litigation shall be governed by laws of that
  1043. jurisdiction, without reference to its conflict-of-law provisions.
  1044. Nothing in this Section shall prevent a party's ability to bring
  1045. cross-claims or counter-claims.
  1046. 9. Miscellaneous
  1047. ----------------
  1048. This License represents the complete agreement concerning the subject
  1049. matter hereof. If any provision of this License is held to be
  1050. unenforceable, such provision shall be reformed only to the extent
  1051. necessary to make it enforceable. Any law or regulation which provides
  1052. that the language of a contract shall be construed against the drafter
  1053. shall not be used to construe this License against a Contributor.
  1054. 10. Versions of the License
  1055. ---------------------------
  1056. 10.1. New Versions
  1057. Mozilla Foundation is the license steward. Except as provided in Section
  1058. 10.3, no one other than the license steward has the right to modify or
  1059. publish new versions of this License. Each version will be given a
  1060. distinguishing version number.
  1061. 10.2. Effect of New Versions
  1062. You may distribute the Covered Software under the terms of the version
  1063. of the License under which You originally received the Covered Software,
  1064. or under the terms of any subsequent version published by the license
  1065. steward.
  1066. 10.3. Modified Versions
  1067. If you create software not governed by this License, and you want to
  1068. create a new license for such software, you may create and use a
  1069. modified version of this License if you rename the license and remove
  1070. any references to the name of the license steward (except to note that
  1071. such modified license differs from this License).
  1072. 10.4. Distributing Source Code Form that is Incompatible With Secondary
  1073. Licenses
  1074. If You choose to distribute Source Code Form that is Incompatible With
  1075. Secondary Licenses under the terms of this version of the License, the
  1076. notice described in Exhibit B of this License must be attached.
  1077. Exhibit A - Source Code Form License Notice
  1078. -------------------------------------------
  1079. This Source Code Form is subject to the terms of the Mozilla Public
  1080. License, v. 2.0. If a copy of the MPL was not distributed with this
  1081. file, You can obtain one at http://mozilla.org/MPL/2.0/.
  1082. If it is not possible or desirable to put the notice in a particular
  1083. file, then You may include the notice in a location (such as a LICENSE
  1084. file in a relevant directory) where a recipient would be likely to look
  1085. for such a notice.
  1086. You may add additional accurate notices of copyright ownership.
  1087. Exhibit B - "Incompatible With Secondary Licenses" Notice
  1088. ---------------------------------------------------------
  1089. This Source Code Form is "Incompatible With Secondary Licenses", as
  1090. defined by the Mozilla Public License, v. 2.0.
  1091. ----------------------------------------------------------------------
  1092. Following applies to:
  1093. ./doc/UsingIntelMKL.dox
  1094. ./doc/UsingIntelMKL.dox
  1095. ./Eigen/src/Eigenvalues/ComplexSchur_MKL.h
  1096. ./Eigen/src/Eigenvalues/ComplexSchur_MKL.h
  1097. ./Eigen/src/Eigenvalues/SelfAdjointEigenSolver_MKL.h
  1098. ./Eigen/src/Eigenvalues/SelfAdjointEigenSolver_MKL.h
  1099. ./Eigen/src/Eigenvalues/RealSchur_MKL.h
  1100. ./Eigen/src/Eigenvalues/RealSchur_MKL.h
  1101. ./Eigen/src/LU/arch/Inverse_SSE.h
  1102. ./Eigen/src/LU/arch/Inverse_SSE.h
  1103. ./Eigen/src/LU/PartialPivLU_MKL.h
  1104. ./Eigen/src/LU/PartialPivLU_MKL.h
  1105. ./Eigen/src/QR/HouseholderQR_MKL.h
  1106. ./Eigen/src/QR/HouseholderQR_MKL.h
  1107. ./Eigen/src/QR/ColPivHouseholderQR_MKL.h
  1108. ./Eigen/src/QR/ColPivHouseholderQR_MKL.h
  1109. ./Eigen/src/SVD/JacobiSVD_MKL.h
  1110. ./Eigen/src/SVD/JacobiSVD_MKL.h
  1111. ./Eigen/src/PardisoSupport/PardisoSupport.h
  1112. ./Eigen/src/PardisoSupport/PardisoSupport.h
  1113. ./Eigen/src/Core/Assign_MKL.h
  1114. ./Eigen/src/Core/Assign_MKL.h
  1115. ./Eigen/src/Core/products/SelfadjointMatrixVector_MKL.h
  1116. ./Eigen/src/Core/products/SelfadjointMatrixVector_MKL.h
  1117. ./Eigen/src/Core/products/GeneralMatrixVector_MKL.h
  1118. ./Eigen/src/Core/products/GeneralMatrixVector_MKL.h
  1119. ./Eigen/src/Core/products/SelfadjointMatrixMatrix_MKL.h
  1120. ./Eigen/src/Core/products/SelfadjointMatrixMatrix_MKL.h
  1121. ./Eigen/src/Core/products/TriangularMatrixMatrix_MKL.h
  1122. ./Eigen/src/Core/products/TriangularMatrixMatrix_MKL.h
  1123. ./Eigen/src/Core/products/GeneralMatrixMatrix_MKL.h
  1124. ./Eigen/src/Core/products/GeneralMatrixMatrix_MKL.h
  1125. ./Eigen/src/Core/products/TriangularMatrixVector_MKL.h
  1126. ./Eigen/src/Core/products/TriangularMatrixVector_MKL.h
  1127. ./Eigen/src/Core/products/GeneralMatrixMatrixTriangular_MKL.h
  1128. ./Eigen/src/Core/products/GeneralMatrixMatrixTriangular_MKL.h
  1129. ./Eigen/src/Core/products/TriangularSolverMatrix_MKL.h
  1130. ./Eigen/src/Core/products/TriangularSolverMatrix_MKL.h
  1131. ./Eigen/src/Core/util/MKL_support.h
  1132. ./Eigen/src/Core/util/MKL_support.h
  1133. ./Eigen/src/Cholesky/LLT_MKL.h
  1134. ./Eigen/src/Cholesky/LLT_MKL.h
  1135. /*
  1136. Copyright (c) 2011, Intel Corporation. All rights reserved.
  1137. Redistribution and use in source and binary forms, with or without
  1138. modification, are permitted provided that the following conditions
  1139. are met:
  1140. * Redistributions of source code must retain the above copyright
  1141. notice, this list of conditions and the following disclaimer. *
  1142. Redistributions in binary form must reproduce the above copyright
  1143. notice, this list of conditions and the following disclaimer in the
  1144. documentation and/or other materials provided with the
  1145. distribution. * Neither the name of Intel Corporation nor the
  1146. names of its contributors may be used to endorse or promote
  1147. products derived from this software without specific prior written
  1148. permission.
  1149. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  1150. "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  1151. LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  1152. A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  1153. OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  1154. SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  1155. LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  1156. DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  1157. THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  1158. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  1159. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  1160. */
  1161. ----------------------------------------------------------------------
  1162. Following applies to:
  1163. everything under ./bench/btl
  1164. GNU GENERAL PUBLIC LICENSE
  1165. Version 3, 29 June 2007
  1166. Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
  1167. Everyone is permitted to copy and distribute verbatim copies
  1168. of this license document, but changing it is not allowed.
  1169. Preamble
  1170. The GNU General Public License is a free, copyleft license for
  1171. software and other kinds of works.
  1172. The licenses for most software and other practical works are designed
  1173. to take away your freedom to share and change the works. By contrast,
  1174. the GNU General Public License is intended to guarantee your freedom to
  1175. share and change all versions of a program--to make sure it remains free
  1176. software for all its users. We, the Free Software Foundation, use the
  1177. GNU General Public License for most of our software; it applies also to
  1178. any other work released this way by its authors. You can apply it to
  1179. your programs, too.
  1180. When we speak of free software, we are referring to freedom, not
  1181. price. Our General Public Licenses are designed to make sure that you
  1182. have the freedom to distribute copies of free software (and charge for
  1183. them if you wish), that you receive source code or can get it if you
  1184. want it, that you can change the software or use pieces of it in new
  1185. free programs, and that you know you can do these things.
  1186. To protect your rights, we need to prevent others from denying you
  1187. these rights or asking you to surrender the rights. Therefore, you have
  1188. certain responsibilities if you distribute copies of the software, or if
  1189. you modify it: responsibilities to respect the freedom of others.
  1190. For example, if you distribute copies of such a program, whether
  1191. gratis or for a fee, you must pass on to the recipients the same
  1192. freedoms that you received. You must make sure that they, too, receive
  1193. or can get the source code. And you must show them these terms so they
  1194. know their rights.
  1195. Developers that use the GNU GPL protect your rights with two steps:
  1196. (1) assert copyright on the software, and (2) offer you this License
  1197. giving you legal permission to copy, distribute and/or modify it.
  1198. For the developers' and authors' protection, the GPL clearly explains
  1199. that there is no warranty for this free software. For both users' and
  1200. authors' sake, the GPL requires that modified versions be marked as
  1201. changed, so that their problems will not be attributed erroneously to
  1202. authors of previous versions.
  1203. Some devices are designed to deny users access to install or run
  1204. modified versions of the software inside them, although the manufacturer
  1205. can do so. This is fundamentally incompatible with the aim of
  1206. protecting users' freedom to change the software. The systematic
  1207. pattern of such abuse occurs in the area of products for individuals to
  1208. use, which is precisely where it is most unacceptable. Therefore, we
  1209. have designed this version of the GPL to prohibit the practice for those
  1210. products. If such problems arise substantially in other domains, we
  1211. stand ready to extend this provision to those domains in future versions
  1212. of the GPL, as needed to protect the freedom of users.
  1213. Finally, every program is threatened constantly by software patents.
  1214. States should not allow patents to restrict development and use of
  1215. software on general-purpose computers, but in those that do, we wish to
  1216. avoid the special danger that patents applied to a free program could
  1217. make it effectively proprietary. To prevent this, the GPL assures that
  1218. patents cannot be used to render the program non-free.
  1219. The precise terms and conditions for copying, distribution and
  1220. modification follow.
  1221. TERMS AND CONDITIONS
  1222. 0. Definitions.
  1223. "This License" refers to version 3 of the GNU General Public License.
  1224. "Copyright" also means copyright-like laws that apply to other kinds
  1225. of works, such as semiconductor masks.
  1226. "The Program" refers to any copyrightable work licensed under this
  1227. License. Each licensee is addressed as "you". "Licensees" and
  1228. "recipients" may be individuals or organizations.
  1229. To "modify" a work means to copy from or adapt all or part of the work
  1230. in a fashion requiring copyright permission, other than the making of an
  1231. exact copy. The resulting work is called a "modified version" of the
  1232. earlier work or a work "based on" the earlier work.
  1233. A "covered work" means either the unmodified Program or a work based
  1234. on the Program.
  1235. To "propagate" a work means to do anything with it that, without
  1236. permission, would make you directly or secondarily liable for
  1237. infringement under applicable copyright law, except executing it on a
  1238. computer or modifying a private copy. Propagation includes copying,
  1239. distribution (with or without modification), making available to the
  1240. public, and in some countries other activities as well.
  1241. To "convey" a work means any kind of propagation that enables other
  1242. parties to make or receive copies. Mere interaction with a user through
  1243. a computer network, with no transfer of a copy, is not conveying.
  1244. An interactive user interface displays "Appropriate Legal Notices"
  1245. to the extent that it includes a convenient and prominently visible
  1246. feature that (1) displays an appropriate copyright notice, and (2)
  1247. tells the user that there is no warranty for the work (except to the
  1248. extent that warranties are provided), that licensees may convey the
  1249. work under this License, and how to view a copy of this License. If
  1250. the interface presents a list of user commands or options, such as a
  1251. menu, a prominent item in the list meets this criterion.
  1252. 1. Source Code.
  1253. The "source code" for a work means the preferred form of the work
  1254. for making modifications to it. "Object code" means any non-source
  1255. form of a work.
  1256. A "Standard Interface" means an interface that either is an official
  1257. standard defined by a recognized standards body, or, in the case of
  1258. interfaces specified for a particular programming language, one that
  1259. is widely used among developers working in that language.
  1260. The "System Libraries" of an executable work include anything, other
  1261. than the work as a whole, that (a) is included in the normal form of
  1262. packaging a Major Component, but which is not part of that Major
  1263. Component, and (b) serves only to enable use of the work with that
  1264. Major Component, or to implement a Standard Interface for which an
  1265. implementation is available to the public in source code form. A
  1266. "Major Component", in this context, means a major essential component
  1267. (kernel, window system, and so on) of the specific operating system
  1268. (if any) on which the executable work runs, or a compiler used to
  1269. produce the work, or an object code interpreter used to run it.
  1270. The "Corresponding Source" for a work in object code form means all
  1271. the source code needed to generate, install, and (for an executable
  1272. work) run the object code and to modify the work, including scripts to
  1273. control those activities. However, it does not include the work's
  1274. System Libraries, or general-purpose tools or generally available free
  1275. programs which are used unmodified in performing those activities but
  1276. which are not part of the work. For example, Corresponding Source
  1277. includes interface definition files associated with source files for
  1278. the work, and the source code for shared libraries and dynamically
  1279. linked subprograms that the work is specifically designed to require,
  1280. such as by intimate data communication or control flow between those
  1281. subprograms and other parts of the work.
  1282. The Corresponding Source need not include anything that users
  1283. can regenerate automatically from other parts of the Corresponding
  1284. Source.
  1285. The Corresponding Source for a work in source code form is that
  1286. same work.
  1287. 2. Basic Permissions.
  1288. All rights granted under this License are granted for the term of
  1289. copyright on the Program, and are irrevocable provided the stated
  1290. conditions are met. This License explicitly affirms your unlimited
  1291. permission to run the unmodified Program. The output from running a
  1292. covered work is covered by this License only if the output, given its
  1293. content, constitutes a covered work. This License acknowledges your
  1294. rights of fair use or other equivalent, as provided by copyright law.
  1295. You may make, run and propagate covered works that you do not
  1296. convey, without conditions so long as your license otherwise remains
  1297. in force. You may convey covered works to others for the sole purpose
  1298. of having them make modifications exclusively for you, or provide you
  1299. with facilities for running those works, provided that you comply with
  1300. the terms of this License in conveying all material for which you do
  1301. not control copyright. Those thus making or running the covered works
  1302. for you must do so exclusively on your behalf, under your direction
  1303. and control, on terms that prohibit them from making any copies of
  1304. your copyrighted material outside their relationship with you.
  1305. Conveying under any other circumstances is permitted solely under
  1306. the conditions stated below. Sublicensing is not allowed; section 10
  1307. makes it unnecessary.
  1308. 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
  1309. No covered work shall be deemed part of an effective technological
  1310. measure under any applicable law fulfilling obligations under article
  1311. 11 of the WIPO copyright treaty adopted on 20 December 1996, or
  1312. similar laws prohibiting or restricting circumvention of such
  1313. measures.
  1314. When you convey a covered work, you waive any legal power to forbid
  1315. circumvention of technological measures to the extent such circumvention
  1316. is effected by exercising rights under this License with respect to
  1317. the covered work, and you disclaim any intention to limit operation or
  1318. modification of the work as a means of enforcing, against the work's
  1319. users, your or third parties' legal rights to forbid circumvention of
  1320. technological measures.
  1321. 4. Conveying Verbatim Copies.
  1322. You may convey verbatim copies of the Program's source code as you
  1323. receive it, in any medium, provided that you conspicuously and
  1324. appropriately publish on each copy an appropriate copyright notice;
  1325. keep intact all notices stating that this License and any
  1326. non-permissive terms added in accord with section 7 apply to the code;
  1327. keep intact all notices of the absence of any warranty; and give all
  1328. recipients a copy of this License along with the Program.
  1329. You may charge any price or no price for each copy that you convey,
  1330. and you may offer support or warranty protection for a fee.
  1331. 5. Conveying Modified Source Versions.
  1332. You may convey a work based on the Program, or the modifications to
  1333. produce it from the Program, in the form of source code under the
  1334. terms of section 4, provided that you also meet all of these conditions:
  1335. a) The work must carry prominent notices stating that you modified
  1336. it, and giving a relevant date.
  1337. b) The work must carry prominent notices stating that it is
  1338. released under this License and any conditions added under section
  1339. 7. This requirement modifies the requirement in section 4 to
  1340. "keep intact all notices".
  1341. c) You must license the entire work, as a whole, under this
  1342. License to anyone who comes into possession of a copy. This
  1343. License will therefore apply, along with any applicable section 7
  1344. additional terms, to the whole of the work, and all its parts,
  1345. regardless of how they are packaged. This License gives no
  1346. permission to license the work in any other way, but it does not
  1347. invalidate such permission if you have separately received it.
  1348. d) If the work has interactive user interfaces, each must display
  1349. Appropriate Legal Notices; however, if the Program has interactive
  1350. interfaces that do not display Appropriate Legal Notices, your
  1351. work need not make them do so.
  1352. A compilation of a covered work with other separate and independent
  1353. works, which are not by their nature extensions of the covered work,
  1354. and which are not combined with it such as to form a larger program,
  1355. in or on a volume of a storage or distribution medium, is called an
  1356. "aggregate" if the compilation and its resulting copyright are not
  1357. used to limit the access or legal rights of the compilation's users
  1358. beyond what the individual works permit. Inclusion of a covered work
  1359. in an aggregate does not cause this License to apply to the other
  1360. parts of the aggregate.
  1361. 6. Conveying Non-Source Forms.
  1362. You may convey a covered work in object code form under the terms
  1363. of sections 4 and 5, provided that you also convey the
  1364. machine-readable Corresponding Source under the terms of this License,
  1365. in one of these ways:
  1366. a) Convey the object code in, or embodied in, a physical product
  1367. (including a physical distribution medium), accompanied by the
  1368. Corresponding Source fixed on a durable physical medium
  1369. customarily used for software interchange.
  1370. b) Convey the object code in, or embodied in, a physical product
  1371. (including a physical distribution medium), accompanied by a
  1372. written offer, valid for at least three years and valid for as
  1373. long as you offer spare parts or customer support for that product
  1374. model, to give anyone who possesses the object code either (1) a
  1375. copy of the Corresponding Source for all the software in the
  1376. product that is covered by this License, on a durable physical
  1377. medium customarily used for software interchange, for a price no
  1378. more than your reasonable cost of physically performing this
  1379. conveying of source, or (2) access to copy the
  1380. Corresponding Source from a network server at no charge.
  1381. c) Convey individual copies of the object code with a copy of the
  1382. written offer to provide the Corresponding Source. This
  1383. alternative is allowed only occasionally and noncommercially, and
  1384. only if you received the object code with such an offer, in accord
  1385. with subsection 6b.
  1386. d) Convey the object code by offering access from a designated
  1387. place (gratis or for a charge), and offer equivalent access to the
  1388. Corresponding Source in the same way through the same place at no
  1389. further charge. You need not require recipients to copy the
  1390. Corresponding Source along with the object code. If the place to
  1391. copy the object code is a network server, the Corresponding Source
  1392. may be on a different server (operated by you or a third party)
  1393. that supports equivalent copying facilities, provided you maintain
  1394. clear directions next to the object code saying where to find the
  1395. Corresponding Source. Regardless of what server hosts the
  1396. Corresponding Source, you remain obligated to ensure that it is
  1397. available for as long as needed to satisfy these requirements.
  1398. e) Convey the object code using peer-to-peer transmission, provided
  1399. you inform other peers where the object code and Corresponding
  1400. Source of the work are being offered to the general public at no
  1401. charge under subsection 6d.
  1402. A separable portion of the object code, whose source code is excluded
  1403. from the Corresponding Source as a System Library, need not be
  1404. included in conveying the object code work.
  1405. A "User Product" is either (1) a "consumer product", which means any
  1406. tangible personal property which is normally used for personal,
  1407. family, or household purposes, or (2) anything designed or sold for
  1408. incorporation into a dwelling. In determining whether a product is a
  1409. consumer product, doubtful cases shall be resolved in favor of
  1410. coverage. For a particular product received by a particular user,
  1411. "normally used" refers to a typical or common use of that class of
  1412. product, regardless of the status of the particular user or of the way
  1413. in which the particular user actually uses, or expects or is expected
  1414. to use, the product. A product is a consumer product regardless of
  1415. whether the product has substantial commercial, industrial or
  1416. non-consumer uses, unless such uses represent the only significant
  1417. mode of use of the product.
  1418. "Installation Information" for a User Product means any methods,
  1419. procedures, authorization keys, or other information required to
  1420. install and execute modified versions of a covered work in that User
  1421. Product from a modified version of its Corresponding Source. The
  1422. information must suffice to ensure that the continued functioning of
  1423. the modified object code is in no case prevented or interfered with
  1424. solely because modification has been made.
  1425. If you convey an object code work under this section in, or with, or
  1426. specifically for use in, a User Product, and the conveying occurs as
  1427. part of a transaction in which the right of possession and use of the
  1428. User Product is transferred to the recipient in perpetuity or for a
  1429. fixed term (regardless of how the transaction is characterized), the
  1430. Corresponding Source conveyed under this section must be accompanied
  1431. by the Installation Information. But this requirement does not apply
  1432. if neither you nor any third party retains the ability to install
  1433. modified object code on the User Product (for example, the work has
  1434. been installed in ROM).
  1435. The requirement to provide Installation Information does not include
  1436. a requirement to continue to provide support service, warranty, or
  1437. updates for a work that has been modified or installed by the
  1438. recipient, or for the User Product in which it has been modified or
  1439. installed. Access to a network may be denied when the modification
  1440. itself materially and adversely affects the operation of the network
  1441. or violates the rules and protocols for communication across the
  1442. network.
  1443. Corresponding Source conveyed, and Installation Information provided,
  1444. in accord with this section must be in a format that is publicly
  1445. documented (and with an implementation available to the public in
  1446. source code form), and must require no special password or key for
  1447. unpacking, reading or copying.
  1448. 7. Additional Terms.
  1449. "Additional permissions" are terms that supplement the terms of this
  1450. License by making exceptions from one or more of its conditions.
  1451. Additional permissions that are applicable to the entire Program shall
  1452. be treated as though they were included in this License, to the extent
  1453. that they are valid under applicable law. If additional permissions
  1454. apply only to part of the Program, that part may be used separately
  1455. under those permissions, but the entire Program remains governed by
  1456. this License without regard to the additional permissions.
  1457. When you convey a copy of a covered work, you may at your option
  1458. remove any additional permissions from that copy, or from any part of
  1459. it. (Additional permissions may be written to require their own
  1460. removal in certain cases when you modify the work.) You may place
  1461. additional permissions on material, added by you to a covered work,
  1462. for which you have or can give appropriate copyright permission.
  1463. Notwithstanding any other provision of this License, for material
  1464. you add to a covered work, you may (if authorized by the copyright
  1465. holders of that material) supplement the terms of this License with
  1466. terms:
  1467. a) Disclaiming warranty or limiting liability differently from the
  1468. terms of sections 15 and 16 of this License; or
  1469. b) Requiring preservation of specified reasonable legal notices or
  1470. author attributions in that material or in the Appropriate Legal
  1471. Notices displayed by works containing it; or
  1472. c) Prohibiting misrepresentation of the origin of that material, or
  1473. requiring that modified versions of such material be marked in
  1474. reasonable ways as different from the original version; or
  1475. d) Limiting the use for publicity purposes of names of licensors or
  1476. authors of the material; or
  1477. e) Declining to grant rights under trademark law for use of some
  1478. trade names, trademarks, or service marks; or
  1479. f) Requiring indemnification of licensors and authors of that
  1480. material by anyone who conveys the material (or modified versions
  1481. of it) with contractual assumptions of liability to the recipient,
  1482. for any liability that these contractual assumptions directly
  1483. impose on those licensors and authors.
  1484. All other non-permissive additional terms are considered "further
  1485. restrictions" within the meaning of section 10. If the Program as you
  1486. received it, or any part of it, contains a notice stating that it is
  1487. governed by this License along with a term that is a further
  1488. restriction, you may remove that term. If a license document contains
  1489. a further restriction but permits relicensing or conveying under this
  1490. License, you may add to a covered work material governed by the terms
  1491. of that license document, provided that the further restriction does
  1492. not survive such relicensing or conveying.
  1493. If you add terms to a covered work in accord with this section, you
  1494. must place, in the relevant source files, a statement of the
  1495. additional terms that apply to those files, or a notice indicating
  1496. where to find the applicable terms.
  1497. Additional terms, permissive or non-permissive, may be stated in the
  1498. form of a separately written license, or stated as exceptions;
  1499. the above requirements apply either way.
  1500. 8. Termination.
  1501. You may not propagate or modify a covered work except as expressly
  1502. provided under this License. Any attempt otherwise to propagate or
  1503. modify it is void, and will automatically terminate your rights under
  1504. this License (including any patent licenses granted under the third
  1505. paragraph of section 11).
  1506. However, if you cease all violation of this License, then your
  1507. license from a particular copyright holder is reinstated (a)
  1508. provisionally, unless and until the copyright holder explicitly and
  1509. finally terminates your license, and (b) permanently, if the copyright
  1510. holder fails to notify you of the violation by some reasonable means
  1511. prior to 60 days after the cessation.
  1512. Moreover, your license from a particular copyright holder is
  1513. reinstated permanently if the copyright holder notifies you of the
  1514. violation by some reasonable means, this is the first time you have
  1515. received notice of violation of this License (for any work) from that
  1516. copyright holder, and you cure the violation prior to 30 days after
  1517. your receipt of the notice.
  1518. Termination of your rights under this section does not terminate the
  1519. licenses of parties who have received copies or rights from you under
  1520. this License. If your rights have been terminated and not permanently
  1521. reinstated, you do not qualify to receive new licenses for the same
  1522. material under section 10.
  1523. 9. Acceptance Not Required for Having Copies.
  1524. You are not required to accept this License in order to receive or
  1525. run a copy of the Program. Ancillary propagation of a covered work
  1526. occurring solely as a consequence of using peer-to-peer transmission
  1527. to receive a copy likewise does not require acceptance. However,
  1528. nothing other than this License grants you permission to propagate or
  1529. modify any covered work. These actions infringe copyright if you do
  1530. not accept this License. Therefore, by modifying or propagating a
  1531. covered work, you indicate your acceptance of this License to do so.
  1532. 10. Automatic Licensing of Downstream Recipients.
  1533. Each time you convey a covered work, the recipient automatically
  1534. receives a license from the original licensors, to run, modify and
  1535. propagate that work, subject to this License. You are not responsible
  1536. for enforcing compliance by third parties with this License.
  1537. An "entity transaction" is a transaction transferring control of an
  1538. organization, or substantially all assets of one, or subdividing an
  1539. organization, or merging organizations. If propagation of a covered
  1540. work results from an entity transaction, each party to that
  1541. transaction who receives a copy of the work also receives whatever
  1542. licenses to the work the party's predecessor in interest had or could
  1543. give under the previous paragraph, plus a right to possession of the
  1544. Corresponding Source of the work from the predecessor in interest, if
  1545. the predecessor has it or can get it with reasonable efforts.
  1546. You may not impose any further restrictions on the exercise of the
  1547. rights granted or affirmed under this License. For example, you may
  1548. not impose a license fee, royalty, or other charge for exercise of
  1549. rights granted under this License, and you may not initiate litigation
  1550. (including a cross-claim or counterclaim in a lawsuit) alleging that
  1551. any patent claim is infringed by making, using, selling, offering for
  1552. sale, or importing the Program or any portion of it.
  1553. 11. Patents.
  1554. A "contributor" is a copyright holder who authorizes use under this
  1555. License of the Program or a work on which the Program is based. The
  1556. work thus licensed is called the contributor's "contributor version".
  1557. A contributor's "essential patent claims" are all patent claims
  1558. owned or controlled by the contributor, whether already acquired or
  1559. hereafter acquired, that would be infringed by some manner, permitted
  1560. by this License, of making, using, or selling its contributor version,
  1561. but do not include claims that would be infringed only as a
  1562. consequence of further modification of the contributor version. For
  1563. purposes of this definition, "control" includes the right to grant
  1564. patent sublicenses in a manner consistent with the requirements of
  1565. this License.
  1566. Each contributor grants you a non-exclusive, worldwide, royalty-free
  1567. patent license under the contributor's essential patent claims, to
  1568. make, use, sell, offer for sale, import and otherwise run, modify and
  1569. propagate the contents of its contributor version.
  1570. In the following three paragraphs, a "patent license" is any express
  1571. agreement or commitment, however denominated, not to enforce a patent
  1572. (such as an express permission to practice a patent or covenant not to
  1573. sue for patent infringement). To "grant" such a patent license to a
  1574. party means to make such an agreement or commitment not to enforce a
  1575. patent against the party.
  1576. If you convey a covered work, knowingly relying on a patent license,
  1577. and the Corresponding Source of the work is not available for anyone
  1578. to copy, free of charge and under the terms of this License, through a
  1579. publicly available network server or other readily accessible means,
  1580. then you must either (1) cause the Corresponding Source to be so
  1581. available, or (2) arrange to deprive yourself of the benefit of the
  1582. patent license for this particular work, or (3) arrange, in a manner
  1583. consistent with the requirements of this License, to extend the patent
  1584. license to downstream recipients. "Knowingly relying" means you have
  1585. actual knowledge that, but for the patent license, your conveying the
  1586. covered work in a country, or your recipient's use of the covered work
  1587. in a country, would infringe one or more identifiable patents in that
  1588. country that you have reason to believe are valid.
  1589. If, pursuant to or in connection with a single transaction or
  1590. arrangement, you convey, or propagate by procuring conveyance of, a
  1591. covered work, and grant a patent license to some of the parties
  1592. receiving the covered work authorizing them to use, propagate, modify
  1593. or convey a specific copy of the covered work, then the patent license
  1594. you grant is automatically extended to all recipients of the covered
  1595. work and works based on it.
  1596. A patent license is "discriminatory" if it does not include within
  1597. the scope of its coverage, prohibits the exercise of, or is
  1598. conditioned on the non-exercise of one or more of the rights that are
  1599. specifically granted under this License. You may not convey a covered
  1600. work if you are a party to an arrangement with a third party that is
  1601. in the business of distributing software, under which you make payment
  1602. to the third party based on the extent of your activity of conveying
  1603. the work, and under which the third party grants, to any of the
  1604. parties who would receive the covered work from you, a discriminatory
  1605. patent license (a) in connection with copies of the covered work
  1606. conveyed by you (or copies made from those copies), or (b) primarily
  1607. for and in connection with specific products or compilations that
  1608. contain the covered work, unless you entered into that arrangement,
  1609. or that patent license was granted, prior to 28 March 2007.
  1610. Nothing in this License shall be construed as excluding or limiting
  1611. any implied license or other defenses to infringement that may
  1612. otherwise be available to you under applicable patent law.
  1613. 12. No Surrender of Others' Freedom.
  1614. If conditions are imposed on you (whether by court order, agreement
  1615. or otherwise) that contradict the conditions of this License, they do
  1616. not excuse you from the conditions of this License. If you cannot
  1617. convey a covered work so as to satisfy simultaneously your obligations
  1618. under this License and any other pertinent obligations, then as a
  1619. consequence you may not convey it at all. For example, if you agree
  1620. to terms that obligate you to collect a royalty for further conveying
  1621. from those to whom you convey the Program, the only way you could
  1622. satisfy both those terms and this License would be to refrain entirely
  1623. from conveying the Program.
  1624. 13. Use with the GNU Affero General Public License.
  1625. Notwithstanding any other provision of this License, you have
  1626. permission to link or combine any covered work with a work licensed
  1627. under version 3 of the GNU Affero General Public License into a single
  1628. combined work, and to convey the resulting work. The terms of this
  1629. License will continue to apply to the part which is the covered work,
  1630. but the special requirements of the GNU Affero General Public License,
  1631. section 13, concerning interaction through a network will apply to the
  1632. combination as such.
  1633. 14. Revised Versions of this License.
  1634. The Free Software Foundation may publish revised and/or new versions
  1635. of the GNU General Public License from time to time. Such new
  1636. versions will be similar in spirit to the present version, but may
  1637. differ in detail to address new problems or concerns.
  1638. Each version is given a distinguishing version number. If the
  1639. Program specifies that a certain numbered version of the GNU General
  1640. Public License "or any later version" applies to it, you have the
  1641. option of following the terms and conditions either of that numbered
  1642. version or of any later version published by the Free Software
  1643. Foundation. If the Program does not specify a version number of the
  1644. GNU General Public License, you may choose any version ever published
  1645. by the Free Software Foundation.
  1646. If the Program specifies that a proxy can decide which future
  1647. versions of the GNU General Public License can be used, that proxy's
  1648. public statement of acceptance of a version permanently authorizes you
  1649. to choose that version for the Program.
  1650. Later license versions may give you additional or different
  1651. permissions. However, no additional obligations are imposed on any
  1652. author or copyright holder as a result of your choosing to follow a
  1653. later version.
  1654. 15. Disclaimer of Warranty.
  1655. THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
  1656. APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
  1657. HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT
  1658. WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT
  1659. LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  1660. A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND
  1661. PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE
  1662. DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR
  1663. CORRECTION.
  1664. 16. Limitation of Liability.
  1665. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
  1666. WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES
  1667. AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR
  1668. DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL
  1669. DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM
  1670. (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED
  1671. INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF
  1672. THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER
  1673. OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
  1674. 17. Interpretation of Sections 15 and 16.
  1675. If the disclaimer of warranty and limitation of liability provided
  1676. above cannot be given local legal effect according to their terms,
  1677. reviewing courts shall apply local law that most closely approximates
  1678. an absolute waiver of all civil liability in connection with the
  1679. Program, unless a warranty or assumption of liability accompanies a
  1680. copy of the Program in return for a fee.
  1681. END OF TERMS AND CONDITIONS
  1682. How to Apply These Terms to Your New Programs
  1683. If you develop a new program, and you want it to be of the greatest
  1684. possible use to the public, the best way to achieve this is to make it
  1685. free software which everyone can redistribute and change under these
  1686. terms.
  1687. To do so, attach the following notices to the program. It is safest
  1688. to attach them to the start of each source file to most effectively
  1689. state the exclusion of warranty; and each file should have at least
  1690. the "copyright" line and a pointer to where the full notice is found.
  1691. <one line to give the program's name and a brief idea of what it
  1692. does.>
  1693. Copyright (C) <year> <name of author>
  1694. This program is free software: you can redistribute it and/or
  1695. modify it under the terms of the GNU General Public License as
  1696. published by the Free Software Foundation, either version 3 of the
  1697. License, or (at your option) any later version.
  1698. This program is distributed in the hope that it will be useful,
  1699. but WITHOUT ANY WARRANTY; without even the implied warranty of
  1700. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  1701. GNU General Public License for more details.
  1702. You should have received a copy of the GNU General Public License
  1703. along with this program. If not, see
  1704. <http://www.gnu.org/licenses/>.
  1705. Also add information on how to contact you by electronic and paper mail.
  1706. If the program does terminal interaction, make it output a short
  1707. notice like this when it starts in an interactive mode:
  1708. <program> Copyright (C) <year> <name of author> This program comes
  1709. with ABSOLUTELY NO WARRANTY; for details type `show w'. This is
  1710. free software, and you are welcome to redistribute it under
  1711. certain conditions; type `show c' for details.
  1712. The hypothetical commands `show w' and `show c' should show the
  1713. appropriate parts of the General Public License. Of course, your
  1714. program's commands might be different; for a GUI interface, you would
  1715. use an "about box".
  1716. You should also get your employer (if you work as a programmer) or
  1717. school, if any, to sign a "copyright disclaimer" for the program, if
  1718. necessary. For more information on this, and how to apply and follow
  1719. the GNU GPL, see <http://www.gnu.org/licenses/>.
  1720. The GNU General Public License does not permit incorporating your
  1721. program into proprietary programs. If your program is a subroutine
  1722. library, you may consider it more useful to permit linking proprietary
  1723. applications with the library. If this is what you want to do, use
  1724. the GNU Lesser General Public License instead of this License. But
  1725. first, please read <http://www.gnu.org/philosophy/why-not-lgpl.html>.
  1726. ----------------------------------------------------------------------
  1727. Following applies to:
  1728. ./test/metis_support.cpp
  1729. ./test/sparselu.cpp
  1730. ./unsupported/test/mpreal/mpreal.h
  1731. ./unsupported/Eigen/src/IterativeSolvers/IterationController.h
  1732. ./unsupported/Eigen/src/IterativeSolvers/ConstrainedConjGrad.h
  1733. ./unsupported/Eigen/src/Eigenvalues/ArpackSelfAdjointEigenSolver.h
  1734. ./Eigen/src/OrderingMethods/Amd.h
  1735. ./Eigen/src/SparseCholesky/SimplicialCholesky_impl.h
  1736. GNU LESSER GENERAL PUBLIC LICENSE
  1737. Version 3, 29 June 2007
  1738. Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
  1739. Everyone is permitted to copy and distribute verbatim copies
  1740. of this license document, but changing it is not allowed.
  1741. This version of the GNU Lesser General Public License incorporates
  1742. the terms and conditions of version 3 of the GNU General Public
  1743. License, supplemented by the additional permissions listed below.
  1744. 0. Additional Definitions.
  1745. As used herein, "this License" refers to version 3 of the GNU Lesser
  1746. General Public License, and the "GNU GPL" refers to version 3 of the
  1747. GNU General Public License.
  1748. "The Library" refers to a covered work governed by this License,
  1749. other than an Application or a Combined Work as defined below.
  1750. An "Application" is any work that makes use of an interface provided
  1751. by the Library, but which is not otherwise based on the Library.
  1752. Defining a subclass of a class defined by the Library is deemed a mode
  1753. of using an interface provided by the Library.
  1754. A "Combined Work" is a work produced by combining or linking an
  1755. Application with the Library. The particular version of the Library
  1756. with which the Combined Work was made is also called the "Linked
  1757. Version".
  1758. The "Minimal Corresponding Source" for a Combined Work means the
  1759. Corresponding Source for the Combined Work, excluding any source code
  1760. for portions of the Combined Work that, considered in isolation, are
  1761. based on the Application, and not on the Linked Version.
  1762. The "Corresponding Application Code" for a Combined Work means the
  1763. object code and/or source code for the Application, including any data
  1764. and utility programs needed for reproducing the Combined Work from the
  1765. Application, but excluding the System Libraries of the Combined Work.
  1766. 1. Exception to Section 3 of the GNU GPL.
  1767. You may convey a covered work under sections 3 and 4 of this License
  1768. without being bound by section 3 of the GNU GPL.
  1769. 2. Conveying Modified Versions.
  1770. If you modify a copy of the Library, and, in your modifications, a
  1771. facility refers to a function or data to be supplied by an Application
  1772. that uses the facility (other than as an argument passed when the
  1773. facility is invoked), then you may convey a copy of the modified
  1774. version:
  1775. a) under this License, provided that you make a good faith effort to
  1776. ensure that, in the event an Application does not supply the
  1777. function or data, the facility still operates, and performs
  1778. whatever part of its purpose remains meaningful, or
  1779. b) under the GNU GPL, with none of the additional permissions of
  1780. this License applicable to that copy.
  1781. 3. Object Code Incorporating Material from Library Header Files.
  1782. The object code form of an Application may incorporate material from
  1783. a header file that is part of the Library. You may convey such object
  1784. code under terms of your choice, provided that, if the incorporated
  1785. material is not limited to numerical parameters, data structure
  1786. layouts and accessors, or small macros, inline functions and templates
  1787. (ten or fewer lines in length), you do both of the following:
  1788. a) Give prominent notice with each copy of the object code that the
  1789. Library is used in it and that the Library and its use are
  1790. covered by this License.
  1791. b) Accompany the object code with a copy of the GNU GPL and this
  1792. license document.
  1793. 4. Combined Works.
  1794. You may convey a Combined Work under terms of your choice that,
  1795. taken together, effectively do not restrict modification of the
  1796. portions of the Library contained in the Combined Work and reverse
  1797. engineering for debugging such modifications, if you also do each of
  1798. the following:
  1799. a) Give prominent notice with each copy of the Combined Work that
  1800. the Library is used in it and that the Library and its use are
  1801. covered by this License.
  1802. b) Accompany the Combined Work with a copy of the GNU GPL and this
  1803. license document.
  1804. c) For a Combined Work that displays copyright notices during
  1805. execution, include the copyright notice for the Library among
  1806. these notices, as well as a reference directing the user to the
  1807. copies of the GNU GPL and this license document.
  1808. d) Do one of the following:
  1809. 0) Convey the Minimal Corresponding Source under the terms of
  1810. this License, and the Corresponding Application Code in a form
  1811. suitable for, and under terms that permit, the user to
  1812. recombine or relink the Application with a modified version of
  1813. the Linked Version to produce a modified Combined Work, in the
  1814. manner specified by section 6 of the GNU GPL for conveying
  1815. Corresponding Source.
  1816. 1) Use a suitable shared library mechanism for linking with the
  1817. Library. A suitable mechanism is one that (a) uses at run time
  1818. a copy of the Library already present on the user's computer
  1819. system, and (b) will operate properly with a modified version
  1820. of the Library that is interface-compatible with the Linked
  1821. Version.
  1822. e) Provide Installation Information, but only if you would otherwise
  1823. be required to provide such information under section 6 of the
  1824. GNU GPL, and only to the extent that such information is
  1825. necessary to install and execute a modified version of the
  1826. Combined Work produced by recombining or relinking the
  1827. Application with a modified version of the Linked Version. (If
  1828. you use option 4d0, the Installation Information must accompany
  1829. the Minimal Corresponding Source and Corresponding Application
  1830. Code. If you use option 4d1, you must provide the Installation
  1831. Information in the manner specified by section 6 of the GNU GPL
  1832. for conveying Corresponding Source.)
  1833. 5. Combined Libraries.
  1834. You may place library facilities that are a work based on the
  1835. Library side by side in a single library together with other library
  1836. facilities that are not Applications and are not covered by this
  1837. License, and convey such a combined library under terms of your
  1838. choice, if you do both of the following:
  1839. a) Accompany the combined library with a copy of the same work based
  1840. on the Library, uncombined with any other library facilities,
  1841. conveyed under the terms of this License.
  1842. b) Give prominent notice with the combined library that part of it
  1843. is a work based on the Library, and explaining where to find the
  1844. accompanying uncombined form of the same work.
  1845. 6. Revised Versions of the GNU Lesser General Public License.
  1846. The Free Software Foundation may publish revised and/or new versions
  1847. of the GNU Lesser General Public License from time to time. Such new
  1848. versions will be similar in spirit to the present version, but may
  1849. differ in detail to address new problems or concerns.
  1850. Each version is given a distinguishing version number. If the
  1851. Library as you received it specifies that a certain numbered version
  1852. of the GNU Lesser General Public License "or any later version"
  1853. applies to it, you have the option of following the terms and
  1854. conditions either of that published version or of any later version
  1855. published by the Free Software Foundation. If the Library as you
  1856. received it does not specify a version number of the GNU Lesser
  1857. General Public License, you may choose any version of the GNU Lesser
  1858. General Public License ever published by the Free Software Foundation.
  1859. If the Library as you received it specifies that a proxy can decide
  1860. whether future versions of the GNU Lesser General Public License shall
  1861. apply, that proxy's public statement of acceptance of any version is
  1862. permanent authorization for you to choose that version for the
  1863. Library.
  1864. ----------------------------------------------------------------------
  1865. Following applies to:
  1866. ./unsupported/Eigen/src/LevenbergMarquardt/LevenbergMarquardt.h
  1867. ./unsupported/Eigen/src/LevenbergMarquardt/LMcovar.h
  1868. ./unsupported/Eigen/src/LevenbergMarquardt/LMonestep.h
  1869. ./unsupported/Eigen/src/LevenbergMarquardt/LMpar.h
  1870. ./unsupported/Eigen/src/LevenbergMarquardt/LMqrsolv.h
  1871. Minpack Copyright Notice (1999) University of Chicago. All rights
  1872. reserved
  1873. Redistribution and use in source and binary forms, with or
  1874. without modification, are permitted provided that the
  1875. following conditions are met:
  1876. 1. Redistributions of source code must retain the above
  1877. copyright notice, this list of conditions and the following
  1878. disclaimer.
  1879. 2. Redistributions in binary form must reproduce the above
  1880. copyright notice, this list of conditions and the following
  1881. disclaimer in the documentation and/or other materials
  1882. provided with the distribution.
  1883. 3. The end-user documentation included with the
  1884. redistribution, if any, must include the following
  1885. acknowledgment:
  1886. "This product includes software developed by the
  1887. University of Chicago, as Operator of Argonne National
  1888. Laboratory.
  1889. Alternately, this acknowledgment may appear in the software
  1890. itself, if and wherever such third-party acknowledgments
  1891. normally appear.
  1892. 4. WARRANTY DISCLAIMER. THE SOFTWARE IS SUPPLIED "AS IS"
  1893. WITHOUT WARRANTY OF ANY KIND. THE COPYRIGHT HOLDER, THE
  1894. UNITED STATES, THE UNITED STATES DEPARTMENT OF ENERGY, AND
  1895. THEIR EMPLOYEES: (1) DISCLAIM ANY WARRANTIES, EXPRESS OR
  1896. IMPLIED, INCLUDING BUT NOT LIMITED TO ANY IMPLIED WARRANTIES
  1897. OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE
  1898. OR NON-INFRINGEMENT, (2) DO NOT ASSUME ANY LEGAL LIABILITY
  1899. OR RESPONSIBILITY FOR THE ACCURACY, COMPLETENESS, OR
  1900. USEFULNESS OF THE SOFTWARE, (3) DO NOT REPRESENT THAT USE OF
  1901. THE SOFTWARE WOULD NOT INFRINGE PRIVATELY OWNED RIGHTS, (4)
  1902. DO NOT WARRANT THAT THE SOFTWARE WILL FUNCTION
  1903. UNINTERRUPTED, THAT IT IS ERROR-FREE OR THAT ANY ERRORS WILL
  1904. BE CORRECTED.
  1905. 5. LIMITATION OF LIABILITY. IN NO EVENT WILL THE COPYRIGHT
  1906. HOLDER, THE UNITED STATES, THE UNITED STATES DEPARTMENT OF
  1907. ENERGY, OR THEIR EMPLOYEES: BE LIABLE FOR ANY INDIRECT,
  1908. INCIDENTAL, CONSEQUENTIAL, SPECIAL OR PUNITIVE DAMAGES OF
  1909. ANY KIND OR NATURE, INCLUDING BUT NOT LIMITED TO LOSS OF
  1910. PROFITS OR LOSS OF DATA, FOR ANY REASON WHATSOEVER, WHETHER
  1911. SUCH LIABILITY IS ASSERTED ON THE BASIS OF CONTRACT, TORT
  1912. (INCLUDING NEGLIGENCE OR STRICT LIABILITY), OR OTHERWISE,
  1913. EVEN IF ANY OF SAID PARTIES HAS BEEN WARNED OF THE
  1914. POSSIBILITY OF SUCH LOSS OR DAMAGES.
  1915. ****************************
  1916. freetype2
  1917. ****************************
  1918. FreeType
  1919. Quoth http://freetype.sourceforge.net/license.html:
  1920. FreeType comes with two licenses from which you can choose the one
  1921. which fits your needs best.
  1922. * The FreeType License is the most commonly used one.
  1923. It is a BSD-style license with a credit clause (and thus not
  1924. compatible with the GPL).
  1925. * The GNU General Public License (GPL).
  1926. For all projects which use the GPL also or which need a license
  1927. compatible to the GPL.
  1928. FTL.TXT:
  1929. ---
  1930. The FreeType Project LICENSE
  1931. ----------------------------
  1932. 2006-Jan-27
  1933. Copyright 1996-2002, 2006 by
  1934. David Turner, Robert Wilhelm, and Werner Lemberg
  1935. Introduction
  1936. ============
  1937. The FreeType Project is distributed in several archive packages;
  1938. some of them may contain, in addition to the FreeType font engine,
  1939. various tools and contributions which rely on, or relate to, the
  1940. FreeType Project.
  1941. This license applies to all files found in such packages, and
  1942. which do not fall under their own explicit license. The license
  1943. affects thus the FreeType font engine, the test programs,
  1944. documentation and makefiles, at the very least.
  1945. This license was inspired by the BSD, Artistic, and IJG
  1946. (Independent JPEG Group) licenses, which all encourage inclusion
  1947. and use of free software in commercial and freeware products
  1948. alike. As a consequence, its main points are that:
  1949. o We don't promise that this software works. However, we will be
  1950. interested in any kind of bug reports. (`as is' distribution)
  1951. o You can use this software for whatever you want, in parts or
  1952. full form, without having to pay us. (`royalty-free' usage)
  1953. o You may not pretend that you wrote this software. If you use
  1954. it, or only parts of it, in a program, you must acknowledge
  1955. somewhere in your documentation that you have used the
  1956. FreeType code. (`credits')
  1957. We specifically permit and encourage the inclusion of this
  1958. software, with or without modifications, in commercial products.
  1959. We disclaim all warranties covering The FreeType Project and
  1960. assume no liability related to The FreeType Project.
  1961. Finally, many people asked us for a preferred form for a
  1962. credit/disclaimer to use in compliance with this license. We thus
  1963. encourage you to use the following text:
  1964. """
  1965. Portions of this software are copyright (C) <year> The FreeType
  1966. Project (www.freetype.org). All rights reserved.
  1967. """
  1968. Please replace <year> with the value from the FreeType version you
  1969. actually use.
  1970. Legal Terms
  1971. ===========
  1972. 0. Definitions
  1973. --------------
  1974. Throughout this license, the terms `package', `FreeType Project',
  1975. and `FreeType archive' refer to the set of files originally
  1976. distributed by the authors (David Turner, Robert Wilhelm, and
  1977. Werner Lemberg) as the `FreeType Project', be they named as alpha,
  1978. beta or final release.
  1979. `You' refers to the licensee, or person using the project, where
  1980. `using' is a generic term including compiling the project's source
  1981. code as well as linking it to form a `program' or `executable'.
  1982. This program is referred to as `a program using the FreeType
  1983. engine'.
  1984. This license applies to all files distributed in the original
  1985. FreeType Project, including all source code, binaries and
  1986. documentation, unless otherwise stated in the file in its
  1987. original, unmodified form as distributed in the original archive.
  1988. If you are unsure whether or not a particular file is covered by
  1989. this license, you must contact us to verify this.
  1990. The FreeType Project is copyright (C) 1996-2000 by David Turner,
  1991. Robert Wilhelm, and Werner Lemberg. All rights reserved except as
  1992. specified below.
  1993. 1. No Warranty
  1994. --------------
  1995. THE FREETYPE PROJECT IS PROVIDED `AS IS' WITHOUT WARRANTY OF ANY
  1996. KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
  1997. WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  1998. PURPOSE. IN NO EVENT WILL ANY OF THE AUTHORS OR COPYRIGHT HOLDERS
  1999. BE LIABLE FOR ANY DAMAGES CAUSED BY THE USE OR THE INABILITY TO
  2000. USE, OF THE FREETYPE PROJECT.
  2001. 2. Redistribution
  2002. -----------------
  2003. This license grants a worldwide, royalty-free, perpetual and
  2004. irrevocable right and license to use, execute, perform, compile,
  2005. display, copy, create derivative works of, distribute and
  2006. sublicense the FreeType Project (in both source and object code
  2007. forms) and derivative works thereof for any purpose; and to
  2008. authorize others to exercise some or all of the rights granted
  2009. herein, subject to the following conditions:
  2010. o Redistribution of source code must retain this license file
  2011. (`FTL.TXT') unaltered; any additions, deletions or changes to
  2012. the original files must be clearly indicated in accompanying
  2013. documentation. The copyright notices of the unaltered,
  2014. original files must be preserved in all copies of source
  2015. files.
  2016. o Redistribution in binary form must provide a disclaimer that
  2017. states that the software is based in part of the work of the
  2018. FreeType Team, in the distribution documentation. We also
  2019. encourage you to put an URL to the FreeType web page in your
  2020. documentation, though this isn't mandatory.
  2021. These conditions apply to any software derived from or based on
  2022. the FreeType Project, not just the unmodified files. If you use
  2023. our work, you must acknowledge us. However, no fee need be paid
  2024. to us.
  2025. 3. Advertising
  2026. --------------
  2027. Neither the FreeType authors and contributors nor you shall use
  2028. the name of the other for commercial, advertising, or promotional
  2029. purposes without specific prior written permission.
  2030. We suggest, but do not require, that you use one or more of the
  2031. following phrases to refer to this software in your documentation
  2032. or advertising materials: `FreeType Project', `FreeType Engine',
  2033. `FreeType library', or `FreeType Distribution'.
  2034. As you have not signed this license, you are not required to
  2035. accept it. However, as the FreeType Project is copyrighted
  2036. material, only this license, or another one contracted with the
  2037. authors, grants you the right to use, distribute, and modify it.
  2038. Therefore, by using, distributing, or modifying the FreeType
  2039. Project, you indicate that you understand and accept all the terms
  2040. of this license.
  2041. 4. Contacts
  2042. -----------
  2043. There are two mailing lists related to FreeType:
  2044. o freetype@nongnu.org
  2045. Discusses general use and applications of FreeType, as well as
  2046. future and wanted additions to the library and distribution.
  2047. If you are looking for support, start in this list if you
  2048. haven't found anything to help you in the documentation.
  2049. o freetype-devel@nongnu.org
  2050. Discusses bugs, as well as engine internals, design issues,
  2051. specific licenses, porting, etc.
  2052. Our home page can be found at
  2053. http://www.freetype.org
  2054. --- end of FTL.TXT ---
  2055. ****************************
  2056. GL
  2057. ****************************
  2058. Mesa Component Licenses
  2059. Component Location Primary Author License
  2060. ----------------------------------------------------------------------------
  2061. Main Mesa code src/mesa/ Brian Paul Mesa (MIT)
  2062. Device drivers src/mesa/drivers/* See drivers See drivers
  2063. Ext headers include/GL/glext.h SGI SGI Free B
  2064. include/GL/glxext.h
  2065. GLUT src/glut/ Mark Kilgard Mark's copyright
  2066. GLEW src/glew-1.13.0 Nigel Stewart Modified BSD
  2067. Mesa GLU library src/glu/mesa/ Brian Paul GNU-LGPL
  2068. SGI GLU library src/glu/sgi/ SGI SGI Free B
  2069. demo programs progs/demos/ various see source files
  2070. X demos progs/xdemos/ Brian Paul see source files
  2071. SGI demos progs/samples/ SGI SGI copyright
  2072. RedBook demos progs/redbook/ SGI SGI copyright
  2073. ---------------------
  2074. Permission is hereby granted, free of charge, to any person obtaining a
  2075. copy of this software and associated documentation files (the "Software"),
  2076. to deal in the Software without restriction, including without limitation
  2077. the rights to use, copy, modify, merge, publish, distribute, sublicense,
  2078. and/or sell copies of the Software, and to permit persons to whom the
  2079. Software is furnished to do so, subject to the following conditions:
  2080. The above copyright notice and this permission notice shall be included
  2081. in all copies or substantial portions of the Software.
  2082. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
  2083. OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  2084. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  2085. BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
  2086. AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  2087. CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  2088. ----------------------------
  2089. Permission to use, copy, modify, distribute, and sell this software and its
  2090. documentation for any purpose is hereby granted without fee, provided that
  2091. the above copyright notice appear in all copies and that both that
  2092. copyright notice and this permission notice appear in supporting
  2093. documentation, and that the name of Alan Hourihane not be used in
  2094. advertising or publicity pertaining to distribution of the software without
  2095. specific, written prior permission. Alan Hourihane makes no representations
  2096. about the suitability of this software for any purpose. It is provided
  2097. "as is" without express or implied warranty.
  2098. ALAN HOURIHANE DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
  2099. INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
  2100. EVENT SHALL ALAN HOURIHANE BE LIABLE FOR ANY SPECIAL, INDIRECT OR
  2101. CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
  2102. DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  2103. TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  2104. PERFORMANCE OF THIS SOFTWARE.
  2105. ----------------------------------------------------------------------
  2106. GNU LIBRARY GENERAL PUBLIC LICENSE
  2107. Version 2, June 1991
  2108. Copyright (C) 1991 Free Software Foundation, Inc.
  2109. 675 Mass Ave, Cambridge, MA 02139, USA
  2110. Everyone is permitted to copy and distribute verbatim copies
  2111. of this license document, but changing it is not allowed.
  2112. [This is the first released version of the library GPL. It is
  2113. numbered 2 because it goes with version 2 of the ordinary GPL.]
  2114. Preamble
  2115. The licenses for most software are designed to take away your
  2116. freedom to share and change it. By contrast, the GNU General Public
  2117. Licenses are intended to guarantee your freedom to share and change
  2118. free software--to make sure the software is free for all its users.
  2119. This license, the Library General Public License, applies to some
  2120. specially designated Free Software Foundation software, and to any
  2121. other libraries whose authors decide to use it. You can use it for
  2122. your libraries, too.
  2123. When we speak of free software, we are referring to freedom, not
  2124. price. Our General Public Licenses are designed to make sure that you
  2125. have the freedom to distribute copies of free software (and charge for
  2126. this service if you wish), that you receive source code or can get it
  2127. if you want it, that you can change the software or use pieces of it
  2128. in new free programs; and that you know you can do these things.
  2129. To protect your rights, we need to make restrictions that forbid
  2130. anyone to deny you these rights or to ask you to surrender the rights.
  2131. These restrictions translate to certain responsibilities for you if
  2132. you distribute copies of the library, or if you modify it.
  2133. For example, if you distribute copies of the library, whether gratis
  2134. or for a fee, you must give the recipients all the rights that we gave
  2135. you. You must make sure that they, too, receive or can get the source
  2136. code. If you link a program with the library, you must provide
  2137. complete object files to the recipients so that they can relink them
  2138. with the library, after making changes to the library and recompiling
  2139. it. And you must show them these terms so they know their rights.
  2140. Our method of protecting your rights has two steps: (1) copyright
  2141. the library, and (2) offer you this license which gives you legal
  2142. permission to copy, distribute and/or modify the library.
  2143. Also, for each distributor's protection, we want to make certain
  2144. that everyone understands that there is no warranty for this free
  2145. library. If the library is modified by someone else and passed on, we
  2146. want its recipients to know that what they have is not the original
  2147. version, so that any problems introduced by others will not reflect on
  2148. the original authors' reputations.
  2149. Finally, any free program is threatened constantly by software
  2150. patents. We wish to avoid the danger that companies distributing free
  2151. software will individually obtain patent licenses, thus in effect
  2152. transforming the program into proprietary software. To prevent this,
  2153. we have made it clear that any patent must be licensed for everyone's
  2154. free use or not licensed at all.
  2155. Most GNU software, including some libraries, is covered by the ordinary
  2156. GNU General Public License, which was designed for utility programs. This
  2157. license, the GNU Library General Public License, applies to certain
  2158. designated libraries. This license is quite different from the ordinary
  2159. one; be sure to read it in full, and don't assume that anything in it is
  2160. the same as in the ordinary license.
  2161. The reason we have a separate public license for some libraries is that
  2162. they blur the distinction we usually make between modifying or adding to a
  2163. program and simply using it. Linking a program with a library, without
  2164. changing the library, is in some sense simply using the library, and is
  2165. analogous to running a utility program or application program. However, in
  2166. a textual and legal sense, the linked executable is a combined work, a
  2167. derivative of the original library, and the ordinary General Public License
  2168. treats it as such.
  2169. Because of this blurred distinction, using the ordinary General
  2170. Public License for libraries did not effectively promote software
  2171. sharing, because most developers did not use the libraries. We
  2172. concluded that weaker conditions might promote sharing better.
  2173. However, unrestricted linking of non-free programs would deprive the
  2174. users of those programs of all benefit from the free status of the
  2175. libraries themselves. This Library General Public License is intended to
  2176. permit developers of non-free programs to use free libraries, while
  2177. preserving your freedom as a user of such programs to change the free
  2178. libraries that are incorporated in them. (We have not seen how to achieve
  2179. this as regards changes in header files, but we have achieved it as regards
  2180. changes in the actual functions of the Library.) The hope is that this
  2181. will lead to faster development of free libraries.
  2182. The precise terms and conditions for copying, distribution and
  2183. modification follow. Pay close attention to the difference between a
  2184. "work based on the library" and a "work that uses the library". The
  2185. former contains code derived from the library, while the latter only
  2186. works together with the library.
  2187. Note that it is possible for a library to be covered by the ordinary
  2188. General Public License rather than by this special one.
  2189. GNU LIBRARY GENERAL PUBLIC LICENSE
  2190. TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
  2191. 0. This License Agreement applies to any software library which
  2192. contains a notice placed by the copyright holder or other authorized
  2193. party saying it may be distributed under the terms of this Library
  2194. General Public License (also called "this License"). Each licensee is
  2195. addressed as "you".
  2196. A "library" means a collection of software functions and/or data
  2197. prepared so as to be conveniently linked with application programs
  2198. (which use some of those functions and data) to form executables.
  2199. The "Library", below, refers to any such software library or work
  2200. which has been distributed under these terms. A "work based on the
  2201. Library" means either the Library or any derivative work under
  2202. copyright law: that is to say, a work containing the Library or a
  2203. portion of it, either verbatim or with modifications and/or translated
  2204. straightforwardly into another language. (Hereinafter, translation is
  2205. included without limitation in the term "modification".)
  2206. "Source code" for a work means the preferred form of the work for
  2207. making modifications to it. For a library, complete source code means
  2208. all the source code for all modules it contains, plus any associated
  2209. interface definition files, plus the scripts used to control compilation
  2210. and installation of the library.
  2211. Activities other than copying, distribution and modification are not
  2212. covered by this License; they are outside its scope. The act of
  2213. running a program using the Library is not restricted, and output from
  2214. such a program is covered only if its contents constitute a work based
  2215. on the Library (independent of the use of the Library in a tool for
  2216. writing it). Whether that is true depends on what the Library does
  2217. and what the program that uses the Library does.
  2218. 1. You may copy and distribute verbatim copies of the Library's
  2219. complete source code as you receive it, in any medium, provided that
  2220. you conspicuously and appropriately publish on each copy an
  2221. appropriate copyright notice and disclaimer of warranty; keep intact
  2222. all the notices that refer to this License and to the absence of any
  2223. warranty; and distribute a copy of this License along with the
  2224. Library.
  2225. You may charge a fee for the physical act of transferring a copy,
  2226. and you may at your option offer warranty protection in exchange for a
  2227. fee.
  2228. 2. You may modify your copy or copies of the Library or any portion
  2229. of it, thus forming a work based on the Library, and copy and
  2230. distribute such modifications or work under the terms of Section 1
  2231. above, provided that you also meet all of these conditions:
  2232. a) The modified work must itself be a software library.
  2233. b) You must cause the files modified to carry prominent notices
  2234. stating that you changed the files and the date of any change.
  2235. c) You must cause the whole of the work to be licensed at no
  2236. charge to all third parties under the terms of this License.
  2237. d) If a facility in the modified Library refers to a function or a
  2238. table of data to be supplied by an application program that uses
  2239. the facility, other than as an argument passed when the facility
  2240. is invoked, then you must make a good faith effort to ensure that,
  2241. in the event an application does not supply such function or
  2242. table, the facility still operates, and performs whatever part of
  2243. its purpose remains meaningful.
  2244. (For example, a function in a library to compute square roots has
  2245. a purpose that is entirely well-defined independent of the
  2246. application. Therefore, Subsection 2d requires that any
  2247. application-supplied function or table used by this function must
  2248. be optional: if the application does not supply it, the square
  2249. root function must still compute square roots.)
  2250. These requirements apply to the modified work as a whole. If
  2251. identifiable sections of that work are not derived from the Library,
  2252. and can be reasonably considered independent and separate works in
  2253. themselves, then this License, and its terms, do not apply to those
  2254. sections when you distribute them as separate works. But when you
  2255. distribute the same sections as part of a whole which is a work based
  2256. on the Library, the distribution of the whole must be on the terms of
  2257. this License, whose permissions for other licensees extend to the
  2258. entire whole, and thus to each and every part regardless of who wrote
  2259. it.
  2260. Thus, it is not the intent of this section to claim rights or contest
  2261. your rights to work written entirely by you; rather, the intent is to
  2262. exercise the right to control the distribution of derivative or
  2263. collective works based on the Library.
  2264. In addition, mere aggregation of another work not based on the Library
  2265. with the Library (or with a work based on the Library) on a volume of
  2266. a storage or distribution medium does not bring the other work under
  2267. the scope of this License.
  2268. 3. You may opt to apply the terms of the ordinary GNU General Public
  2269. License instead of this License to a given copy of the Library. To do
  2270. this, you must alter all the notices that refer to this License, so
  2271. that they refer to the ordinary GNU General Public License, version 2,
  2272. instead of to this License. (If a newer version than version 2 of the
  2273. ordinary GNU General Public License has appeared, then you can specify
  2274. that version instead if you wish.) Do not make any other change in
  2275. these notices.
  2276. Once this change is made in a given copy, it is irreversible for
  2277. that copy, so the ordinary GNU General Public License applies to all
  2278. subsequent copies and derivative works made from that copy.
  2279. This option is useful when you wish to copy part of the code of
  2280. the Library into a program that is not a library.
  2281. 4. You may copy and distribute the Library (or a portion or
  2282. derivative of it, under Section 2) in object code or executable form
  2283. under the terms of Sections 1 and 2 above provided that you accompany
  2284. it with the complete corresponding machine-readable source code, which
  2285. must be distributed under the terms of Sections 1 and 2 above on a
  2286. medium customarily used for software interchange.
  2287. If distribution of object code is made by offering access to copy
  2288. from a designated place, then offering equivalent access to copy the
  2289. source code from the same place satisfies the requirement to
  2290. distribute the source code, even though third parties are not
  2291. compelled to copy the source along with the object code.
  2292. 5. A program that contains no derivative of any portion of the
  2293. Library, but is designed to work with the Library by being compiled or
  2294. linked with it, is called a "work that uses the Library". Such a
  2295. work, in isolation, is not a derivative work of the Library, and
  2296. therefore falls outside the scope of this License.
  2297. However, linking a "work that uses the Library" with the Library
  2298. creates an executable that is a derivative of the Library (because it
  2299. contains portions of the Library), rather than a "work that uses the
  2300. library". The executable is therefore covered by this License.
  2301. Section 6 states terms for distribution of such executables.
  2302. When a "work that uses the Library" uses material from a header file
  2303. that is part of the Library, the object code for the work may be a
  2304. derivative work of the Library even though the source code is not.
  2305. Whether this is true is especially significant if the work can be
  2306. linked without the Library, or if the work is itself a library. The
  2307. threshold for this to be true is not precisely defined by law.
  2308. If such an object file uses only numerical parameters, data
  2309. structure layouts and accessors, and small macros and small inline
  2310. functions (ten lines or less in length), then the use of the object
  2311. file is unrestricted, regardless of whether it is legally a derivative
  2312. work. (Executables containing this object code plus portions of the
  2313. Library will still fall under Section 6.)
  2314. Otherwise, if the work is a derivative of the Library, you may
  2315. distribute the object code for the work under the terms of Section 6.
  2316. Any executables containing that work also fall under Section 6,
  2317. whether or not they are linked directly with the Library itself.
  2318. 6. As an exception to the Sections above, you may also compile or
  2319. link a "work that uses the Library" with the Library to produce a
  2320. work containing portions of the Library, and distribute that work
  2321. under terms of your choice, provided that the terms permit
  2322. modification of the work for the customer's own use and reverse
  2323. engineering for debugging such modifications.
  2324. You must give prominent notice with each copy of the work that the
  2325. Library is used in it and that the Library and its use are covered by
  2326. this License. You must supply a copy of this License. If the work
  2327. during execution displays copyright notices, you must include the
  2328. copyright notice for the Library among them, as well as a reference
  2329. directing the user to the copy of this License. Also, you must do one
  2330. of these things:
  2331. a) Accompany the work with the complete corresponding
  2332. machine-readable source code for the Library including whatever
  2333. changes were used in the work (which must be distributed under
  2334. Sections 1 and 2 above); and, if the work is an executable linked
  2335. with the Library, with the complete machine-readable "work that
  2336. uses the Library", as object code and/or source code, so that the
  2337. user can modify the Library and then relink to produce a modified
  2338. executable containing the modified Library. (It is understood
  2339. that the user who changes the contents of definitions files in the
  2340. Library will not necessarily be able to recompile the application
  2341. to use the modified definitions.)
  2342. b) Accompany the work with a written offer, valid for at
  2343. least three years, to give the same user the materials
  2344. specified in Subsection 6a, above, for a charge no more
  2345. than the cost of performing this distribution.
  2346. c) If distribution of the work is made by offering access to copy
  2347. from a designated place, offer equivalent access to copy the above
  2348. specified materials from the same place.
  2349. d) Verify that the user has already received a copy of these
  2350. materials or that you have already sent this user a copy.
  2351. For an executable, the required form of the "work that uses the
  2352. Library" must include any data and utility programs needed for
  2353. reproducing the executable from it. However, as a special exception,
  2354. the source code distributed need not include anything that is normally
  2355. distributed (in either source or binary form) with the major
  2356. components (compiler, kernel, and so on) of the operating system on
  2357. which the executable runs, unless that component itself accompanies
  2358. the executable.
  2359. It may happen that this requirement contradicts the license
  2360. restrictions of other proprietary libraries that do not normally
  2361. accompany the operating system. Such a contradiction means you cannot
  2362. use both them and the Library together in an executable that you
  2363. distribute.
  2364. 7. You may place library facilities that are a work based on the
  2365. Library side-by-side in a single library together with other library
  2366. facilities not covered by this License, and distribute such a combined
  2367. library, provided that the separate distribution of the work based on
  2368. the Library and of the other library facilities is otherwise
  2369. permitted, and provided that you do these two things:
  2370. a) Accompany the combined library with a copy of the same work
  2371. based on the Library, uncombined with any other library
  2372. facilities. This must be distributed under the terms of the
  2373. Sections above.
  2374. b) Give prominent notice with the combined library of the fact
  2375. that part of it is a work based on the Library, and explaining
  2376. where to find the accompanying uncombined form of the same work.
  2377. 8. You may not copy, modify, sublicense, link with, or distribute
  2378. the Library except as expressly provided under this License. Any
  2379. attempt otherwise to copy, modify, sublicense, link with, or
  2380. distribute the Library is void, and will automatically terminate your
  2381. rights under this License. However, parties who have received copies,
  2382. or rights, from you under this License will not have their licenses
  2383. terminated so long as such parties remain in full compliance.
  2384. 9. You are not required to accept this License, since you have not
  2385. signed it. However, nothing else grants you permission to modify or
  2386. distribute the Library or its derivative works. These actions are
  2387. prohibited by law if you do not accept this License. Therefore, by
  2388. modifying or distributing the Library (or any work based on the
  2389. Library), you indicate your acceptance of this License to do so, and
  2390. all its terms and conditions for copying, distributing or modifying
  2391. the Library or works based on it.
  2392. 10. Each time you redistribute the Library (or any work based on the
  2393. Library), the recipient automatically receives a license from the
  2394. original licensor to copy, distribute, link with or modify the Library
  2395. subject to these terms and conditions. You may not impose any further
  2396. restrictions on the recipients' exercise of the rights granted herein.
  2397. You are not responsible for enforcing compliance by third parties to
  2398. this License.
  2399. 11. If, as a consequence of a court judgment or allegation of patent
  2400. infringement or for any other reason (not limited to patent issues),
  2401. conditions are imposed on you (whether by court order, agreement or
  2402. otherwise) that contradict the conditions of this License, they do not
  2403. excuse you from the conditions of this License. If you cannot
  2404. distribute so as to satisfy simultaneously your obligations under this
  2405. License and any other pertinent obligations, then as a consequence you
  2406. may not distribute the Library at all. For example, if a patent
  2407. license would not permit royalty-free redistribution of the Library by
  2408. all those who receive copies directly or indirectly through you, then
  2409. the only way you could satisfy both it and this License would be to
  2410. refrain entirely from distribution of the Library.
  2411. If any portion of this section is held invalid or unenforceable under any
  2412. particular circumstance, the balance of the section is intended to apply,
  2413. and the section as a whole is intended to apply in other circumstances.
  2414. It is not the purpose of this section to induce you to infringe any
  2415. patents or other property right claims or to contest validity of any
  2416. such claims; this section has the sole purpose of protecting the
  2417. integrity of the free software distribution system which is
  2418. implemented by public license practices. Many people have made
  2419. generous contributions to the wide range of software distributed
  2420. through that system in reliance on consistent application of that
  2421. system; it is up to the author/donor to decide if he or she is willing
  2422. to distribute software through any other system and a licensee cannot
  2423. impose that choice.
  2424. This section is intended to make thoroughly clear what is believed to
  2425. be a consequence of the rest of this License.
  2426. 12. If the distribution and/or use of the Library is restricted in
  2427. certain countries either by patents or by copyrighted interfaces, the
  2428. original copyright holder who places the Library under this License may add
  2429. an explicit geographical distribution limitation excluding those countries,
  2430. so that distribution is permitted only in or among countries not thus
  2431. excluded. In such case, this License incorporates the limitation as if
  2432. written in the body of this License.
  2433. 13. The Free Software Foundation may publish revised and/or new
  2434. versions of the Library General Public License from time to time.
  2435. Such new versions will be similar in spirit to the present version,
  2436. but may differ in detail to address new problems or concerns.
  2437. Each version is given a distinguishing version number. If the Library
  2438. specifies a version number of this License which applies to it and
  2439. "any later version", you have the option of following the terms and
  2440. conditions either of that version or of any later version published by
  2441. the Free Software Foundation. If the Library does not specify a
  2442. license version number, you may choose any version ever published by
  2443. the Free Software Foundation.
  2444. 14. If you wish to incorporate parts of the Library into other free
  2445. programs whose distribution conditions are incompatible with these,
  2446. write to the author to ask for permission. For software which is
  2447. copyrighted by the Free Software Foundation, write to the Free
  2448. Software Foundation; we sometimes make exceptions for this. Our
  2449. decision will be guided by the two goals of preserving the free status
  2450. of all derivatives of our free software and of promoting the sharing
  2451. and reuse of software generally.
  2452. NO WARRANTY
  2453. 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO
  2454. WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.
  2455. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR
  2456. OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY
  2457. KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE
  2458. IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  2459. PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE
  2460. LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME
  2461. THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
  2462. 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
  2463. WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY
  2464. AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU
  2465. FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR
  2466. CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE
  2467. LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING
  2468. RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
  2469. FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF
  2470. SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
  2471. DAMAGES.
  2472. END OF TERMS AND CONDITIONS
  2473. Appendix: How to Apply These Terms to Your New Libraries
  2474. If you develop a new library, and you want it to be of the greatest
  2475. possible use to the public, we recommend making it free software that
  2476. everyone can redistribute and change. You can do so by permitting
  2477. redistribution under these terms (or, alternatively, under the terms of the
  2478. ordinary General Public License).
  2479. To apply these terms, attach the following notices to the library. It is
  2480. safest to attach them to the start of each source file to most effectively
  2481. convey the exclusion of warranty; and each file should have at least the
  2482. "copyright" line and a pointer to where the full notice is found.
  2483. <one line to give the library's name and a brief idea of what it does.>
  2484. Copyright (C) <year> <name of author>
  2485. This library is free software; you can redistribute it and/or
  2486. modify it under the terms of the GNU Library General Public
  2487. License as published by the Free Software Foundation; either
  2488. version 2 of the License, or (at your option) any later version.
  2489. This library is distributed in the hope that it will be useful,
  2490. but WITHOUT ANY WARRANTY; without even the implied warranty of
  2491. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  2492. Library General Public License for more details.
  2493. You should have received a copy of the GNU Library General Public
  2494. License along with this library; if not, write to the Free
  2495. Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  2496. Also add information on how to contact you by electronic and paper mail.
  2497. You should also get your employer (if you work as a programmer) or your
  2498. school, if any, to sign a "copyright disclaimer" for the library, if
  2499. necessary. Here is a sample; alter the names:
  2500. Yoyodyne, Inc., hereby disclaims all copyright interest in the
  2501. library `Frob' (a library for tweaking knobs) written by James Random Hacker.
  2502. <signature of Ty Coon>, 1 April 1990
  2503. Ty Coon, President of Vice
  2504. That's all there is to it!
  2505. ---------------------
  2506. The OpenGL Extension Wrangler Library
  2507. Copyright (C) 2002-2008, Milan Ikits <milan ikits[]ieee org>
  2508. Copyright (C) 2002-2008, Marcelo E. Magallon <mmagallo[]debian org>
  2509. Copyright (C) 2002, Lev Povalahev
  2510. All rights reserved.
  2511. Redistribution and use in source and binary forms, with or without
  2512. modification, are permitted provided that the following conditions are met:
  2513. * Redistributions of source code must retain the above copyright notice,
  2514. this list of conditions and the following disclaimer.
  2515. * Redistributions in binary form must reproduce the above copyright notice,
  2516. this list of conditions and the following disclaimer in the documentation
  2517. and/or other materials provided with the distribution.
  2518. * The name of the author may be used to endorse or promote products
  2519. derived from this software without specific prior written permission.
  2520. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  2521. AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  2522. IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  2523. ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
  2524. LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  2525. CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  2526. SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  2527. INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  2528. CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  2529. ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
  2530. THE POSSIBILITY OF SUCH DAMAGE.
  2531. ****************************
  2532. gradle
  2533. ****************************
  2534. Apache License
  2535. Version 2.0, January 2004
  2536. http://www.apache.org/licenses/
  2537. TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
  2538. 1. Definitions.
  2539. "License" shall mean the terms and conditions for use, reproduction,
  2540. and distribution as defined by Sections 1 through 9 of this document.
  2541. "Licensor" shall mean the copyright owner or entity authorized by
  2542. the copyright owner that is granting the License.
  2543. "Legal Entity" shall mean the union of the acting entity and all
  2544. other entities that control, are controlled by, or are under common
  2545. control with that entity. For the purposes of this definition,
  2546. "control" means (i) the power, direct or indirect, to cause the
  2547. direction or management of such entity, whether by contract or
  2548. otherwise, or (ii) ownership of fifty percent (50%) or more of the
  2549. outstanding shares, or (iii) beneficial ownership of such entity.
  2550. "You" (or "Your") shall mean an individual or Legal Entity
  2551. exercising permissions granted by this License.
  2552. "Source" form shall mean the preferred form for making modifications,
  2553. including but not limited to software source code, documentation
  2554. source, and configuration files.
  2555. "Object" form shall mean any form resulting from mechanical
  2556. transformation or translation of a Source form, including but
  2557. not limited to compiled object code, generated documentation,
  2558. and conversions to other media types.
  2559. "Work" shall mean the work of authorship, whether in Source or
  2560. Object form, made available under the License, as indicated by a
  2561. copyright notice that is included in or attached to the work
  2562. (an example is provided in the Appendix below).
  2563. "Derivative Works" shall mean any work, whether in Source or Object
  2564. form, that is based on (or derived from) the Work and for which the
  2565. editorial revisions, annotations, elaborations, or other modifications
  2566. represent, as a whole, an original work of authorship. For the purposes
  2567. of this License, Derivative Works shall not include works that remain
  2568. separable from, or merely link (or bind by name) to the interfaces of,
  2569. the Work and Derivative Works thereof.
  2570. "Contribution" shall mean any work of authorship, including
  2571. the original version of the Work and any modifications or additions
  2572. to that Work or Derivative Works thereof, that is intentionally
  2573. submitted to Licensor for inclusion in the Work by the copyright owner
  2574. or by an individual or Legal Entity authorized to submit on behalf of
  2575. the copyright owner. For the purposes of this definition, "submitted"
  2576. means any form of electronic, verbal, or written communication sent
  2577. to the Licensor or its representatives, including but not limited to
  2578. communication on electronic mailing lists, source code control systems,
  2579. and issue tracking systems that are managed by, or on behalf of, the
  2580. Licensor for the purpose of discussing and improving the Work, but
  2581. excluding communication that is conspicuously marked or otherwise
  2582. designated in writing by the copyright owner as "Not a Contribution."
  2583. "Contributor" shall mean Licensor and any individual or Legal Entity
  2584. on behalf of whom a Contribution has been received by Licensor and
  2585. subsequently incorporated within the Work.
  2586. 2. Grant of Copyright License. Subject to the terms and conditions of
  2587. this License, each Contributor hereby grants to You a perpetual,
  2588. worldwide, non-exclusive, no-charge, royalty-free, irrevocable
  2589. copyright license to reproduce, prepare Derivative Works of,
  2590. publicly display, publicly perform, sublicense, and distribute the
  2591. Work and such Derivative Works in Source or Object form.
  2592. 3. Grant of Patent License. Subject to the terms and conditions of
  2593. this License, each Contributor hereby grants to You a perpetual,
  2594. worldwide, non-exclusive, no-charge, royalty-free, irrevocable
  2595. (except as stated in this section) patent license to make, have made,
  2596. use, offer to sell, sell, import, and otherwise transfer the Work,
  2597. where such license applies only to those patent claims licensable
  2598. by such Contributor that are necessarily infringed by their
  2599. Contribution(s) alone or by combination of their Contribution(s)
  2600. with the Work to which such Contribution(s) was submitted. If You
  2601. institute patent litigation against any entity (including a
  2602. cross-claim or counterclaim in a lawsuit) alleging that the Work
  2603. or a Contribution incorporated within the Work constitutes direct
  2604. or contributory patent infringement, then any patent licenses
  2605. granted to You under this License for that Work shall terminate
  2606. as of the date such litigation is filed.
  2607. 4. Redistribution. You may reproduce and distribute copies of the
  2608. Work or Derivative Works thereof in any medium, with or without
  2609. modifications, and in Source or Object form, provided that You
  2610. meet the following conditions:
  2611. (a) You must give any other recipients of the Work or
  2612. Derivative Works a copy of this License; and
  2613. (b) You must cause any modified files to carry prominent notices
  2614. stating that You changed the files; and
  2615. (c) You must retain, in the Source form of any Derivative Works
  2616. that You distribute, all copyright, patent, trademark, and
  2617. attribution notices from the Source form of the Work,
  2618. excluding those notices that do not pertain to any part of
  2619. the Derivative Works; and
  2620. (d) If the Work includes a "NOTICE" text file as part of its
  2621. distribution, then any Derivative Works that You distribute must
  2622. include a readable copy of the attribution notices contained
  2623. within such NOTICE file, excluding those notices that do not
  2624. pertain to any part of the Derivative Works, in at least one
  2625. of the following places: within a NOTICE text file distributed
  2626. as part of the Derivative Works; within the Source form or
  2627. documentation, if provided along with the Derivative Works; or,
  2628. within a display generated by the Derivative Works, if and
  2629. wherever such third-party notices normally appear. The contents
  2630. of the NOTICE file are for informational purposes only and
  2631. do not modify the License. You may add Your own attribution
  2632. notices within Derivative Works that You distribute, alongside
  2633. or as an addendum to the NOTICE text from the Work, provided
  2634. that such additional attribution notices cannot be construed
  2635. as modifying the License.
  2636. You may add Your own copyright statement to Your modifications and
  2637. may provide additional or different license terms and conditions
  2638. for use, reproduction, or distribution of Your modifications, or
  2639. for any such Derivative Works as a whole, provided Your use,
  2640. reproduction, and distribution of the Work otherwise complies with
  2641. the conditions stated in this License.
  2642. 5. Submission of Contributions. Unless You explicitly state otherwise,
  2643. any Contribution intentionally submitted for inclusion in the Work
  2644. by You to the Licensor shall be under the terms and conditions of
  2645. this License, without any additional terms or conditions.
  2646. Notwithstanding the above, nothing herein shall supersede or modify
  2647. the terms of any separate license agreement you may have executed
  2648. with Licensor regarding such Contributions.
  2649. 6. Trademarks. This License does not grant permission to use the trade
  2650. names, trademarks, service marks, or product names of the Licensor,
  2651. except as required for reasonable and customary use in describing the
  2652. origin of the Work and reproducing the content of the NOTICE file.
  2653. 7. Disclaimer of Warranty. Unless required by applicable law or
  2654. agreed to in writing, Licensor provides the Work (and each
  2655. Contributor provides its Contributions) on an "AS IS" BASIS,
  2656. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
  2657. implied, including, without limitation, any warranties or conditions
  2658. of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
  2659. PARTICULAR PURPOSE. You are solely responsible for determining the
  2660. appropriateness of using or redistributing the Work and assume any
  2661. risks associated with Your exercise of permissions under this License.
  2662. 8. Limitation of Liability. In no event and under no legal theory,
  2663. whether in tort (including negligence), contract, or otherwise,
  2664. unless required by applicable law (such as deliberate and grossly
  2665. negligent acts) or agreed to in writing, shall any Contributor be
  2666. liable to You for damages, including any direct, indirect, special,
  2667. incidental, or consequential damages of any character arising as a
  2668. result of this License or out of the use or inability to use the
  2669. Work (including but not limited to damages for loss of goodwill,
  2670. work stoppage, computer failure or malfunction, or any and all
  2671. other commercial damages or losses), even if such Contributor
  2672. has been advised of the possibility of such damages.
  2673. 9. Accepting Warranty or Additional Liability. While redistributing
  2674. the Work or Derivative Works thereof, You may choose to offer,
  2675. and charge a fee for, acceptance of support, warranty, indemnity,
  2676. or other liability obligations and/or rights consistent with this
  2677. License. However, in accepting such obligations, You may act only
  2678. on Your own behalf and on Your sole responsibility, not on behalf
  2679. of any other Contributor, and only if You agree to indemnify,
  2680. defend, and hold each Contributor harmless for any liability
  2681. incurred by, or claims asserted against, such Contributor by reason
  2682. of your accepting any such warranty or additional liability.
  2683. END OF TERMS AND CONDITIONS
  2684. APPENDIX: How to apply the Apache License to your work.
  2685. To apply the Apache License to your work, attach the following
  2686. boilerplate notice, with the fields enclosed by brackets "[]"
  2687. replaced with your own identifying information. (Don't include
  2688. the brackets!) The text should be enclosed in the appropriate
  2689. comment syntax for the file format. We also recommend that a
  2690. file or class name and description of purpose be included on the
  2691. same "printed page" as the copyright notice for easier
  2692. identification within third-party archives.
  2693. Copyright [yyyy] [name of copyright owner]
  2694. Licensed under the Apache License, Version 2.0 (the "License");
  2695. you may not use this file except in compliance with the License.
  2696. You may obtain a copy of the License at
  2697. http://www.apache.org/licenses/LICENSE-2.0
  2698. Unless required by applicable law or agreed to in writing, software
  2699. distributed under the License is distributed on an "AS IS" BASIS,
  2700. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  2701. See the License for the specific language governing permissions and
  2702. limitations under the License.
  2703. ------------------------------------------------------------------------------
  2704. License for the slf4j package
  2705. ------------------------------------------------------------------------------
  2706. SLF4J License
  2707. Copyright (c) 2004-2007 QOS.ch
  2708. All rights reserved.
  2709. Permission is hereby granted, free of charge, to any person obtaining
  2710. a copy of this software and associated documentation files (the
  2711. "Software"), to deal in the Software without restriction, including
  2712. without limitation the rights to use, copy, modify, merge, publish,
  2713. distribute, sublicense, and/or sell copies of the Software, and to
  2714. permit persons to whom the Software is furnished to do so, subject to
  2715. the following conditions:
  2716. The above copyright notice and this permission notice shall be
  2717. included in all copies or substantial portions of the Software.
  2718. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  2719. EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  2720. MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  2721. NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
  2722. LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  2723. OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  2724. WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  2725. These terms are identical to those of the MIT License, also called the X License or the X11 License,
  2726. which is a simple, permissive non-copyleft free software license. It is deemed compatible with virtually
  2727. all types of licenses, commercial or otherwise. In particular, the Free Software Foundation has declared it
  2728. compatible with GNU GPL. It is also known to be approved by the Apache Software Foundation as compatible
  2729. with Apache Software License.
  2730. ------------------------------------------------------------------------------
  2731. License for the JUnit package
  2732. ------------------------------------------------------------------------------
  2733. THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS COMMON PUBLIC
  2734. LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM
  2735. CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT.
  2736. 1. DEFINITIONS
  2737. "Contribution" means:
  2738. a) in the case of the initial Contributor, the initial code and
  2739. documentation distributed under this Agreement, and
  2740. b) in the case of each subsequent Contributor:
  2741. i) changes to the Program, and
  2742. ii) additions to the Program;
  2743. where such changes and/or additions to the Program originate from and are
  2744. distributed by that particular Contributor. A Contribution 'originates' from a
  2745. Contributor if it was added to the Program by such Contributor itself or anyone
  2746. acting on such Contributor's behalf. Contributions do not include additions to
  2747. the Program which: (i) are separate modules of software distributed in
  2748. conjunction with the Program under their own license agreement, and (ii) are not
  2749. derivative works of the Program.
  2750. "Contributor" means any person or entity that distributes the Program.
  2751. "Licensed Patents " mean patent claims licensable by a Contributor which are
  2752. necessarily infringed by the use or sale of its Contribution alone or when
  2753. combined with the Program.
  2754. "Program" means the Contributions distributed in accordance with this Agreement.
  2755. "Recipient" means anyone who receives the Program under this Agreement,
  2756. including all Contributors.
  2757. 2. GRANT OF RIGHTS
  2758. a) Subject to the terms of this Agreement, each Contributor hereby grants
  2759. Recipient a non-exclusive, worldwide, royalty-free copyright license to
  2760. reproduce, prepare derivative works of, publicly display, publicly perform,
  2761. distribute and sublicense the Contribution of such Contributor, if any, and such
  2762. derivative works, in source code and object code form.
  2763. b) Subject to the terms of this Agreement, each Contributor hereby grants
  2764. Recipient a non-exclusive, worldwide, royalty-free patent license under Licensed
  2765. Patents to make, use, sell, offer to sell, import and otherwise transfer the
  2766. Contribution of such Contributor, if any, in source code and object code form.
  2767. This patent license shall apply to the combination of the Contribution and the
  2768. Program if, at the time the Contribution is added by the Contributor, such
  2769. addition of the Contribution causes such combination to be covered by the
  2770. Licensed Patents. The patent license shall not apply to any other combinations
  2771. which include the Contribution. No hardware per se is licensed hereunder.
  2772. c) Recipient understands that although each Contributor grants the licenses
  2773. to its Contributions set forth herein, no assurances are provided by any
  2774. Contributor that the Program does not infringe the patent or other intellectual
  2775. property rights of any other entity. Each Contributor disclaims any liability to
  2776. Recipient for claims brought by any other entity based on infringement of
  2777. intellectual property rights or otherwise. As a condition to exercising the
  2778. rights and licenses granted hereunder, each Recipient hereby assumes sole
  2779. responsibility to secure any other intellectual property rights needed, if any.
  2780. For example, if a third party patent license is required to allow Recipient to
  2781. distribute the Program, it is Recipient's responsibility to acquire that license
  2782. before distributing the Program.
  2783. d) Each Contributor represents that to its knowledge it has sufficient
  2784. copyright rights in its Contribution, if any, to grant the copyright license set
  2785. forth in this Agreement.
  2786. 3. REQUIREMENTS
  2787. A Contributor may choose to distribute the Program in object code form under its
  2788. own license agreement, provided that:
  2789. a) it complies with the terms and conditions of this Agreement; and
  2790. b) its license agreement:
  2791. i) effectively disclaims on behalf of all Contributors all warranties and
  2792. conditions, express and implied, including warranties or conditions of title and
  2793. non-infringement, and implied warranties or conditions of merchantability and
  2794. fitness for a particular purpose;
  2795. ii) effectively excludes on behalf of all Contributors all liability for
  2796. damages, including direct, indirect, special, incidental and consequential
  2797. damages, such as lost profits;
  2798. iii) states that any provisions which differ from this Agreement are offered
  2799. by that Contributor alone and not by any other party; and
  2800. iv) states that source code for the Program is available from such
  2801. Contributor, and informs licensees how to obtain it in a reasonable manner on or
  2802. through a medium customarily used for software exchange.
  2803. When the Program is made available in source code form:
  2804. a) it must be made available under this Agreement; and
  2805. b) a copy of this Agreement must be included with each copy of the Program.
  2806. Contributors may not remove or alter any copyright notices contained within the
  2807. Program.
  2808. Each Contributor must identify itself as the originator of its Contribution, if
  2809. any, in a manner that reasonably allows subsequent Recipients to identify the
  2810. originator of the Contribution.
  2811. 4. COMMERCIAL DISTRIBUTION
  2812. Commercial distributors of software may accept certain responsibilities with
  2813. respect to end users, business partners and the like. While this license is
  2814. intended to facilitate the commercial use of the Program, the Contributor who
  2815. includes the Program in a commercial product offering should do so in a manner
  2816. which does not create potential liability for other Contributors. Therefore, if
  2817. a Contributor includes the Program in a commercial product offering, such
  2818. Contributor ("Commercial Contributor") hereby agrees to defend and indemnify
  2819. every other Contributor ("Indemnified Contributor") against any losses, damages
  2820. and costs (collectively "Losses") arising from claims, lawsuits and other legal
  2821. actions brought by a third party against the Indemnified Contributor to the
  2822. extent caused by the acts or omissions of such Commercial Contributor in
  2823. connection with its distribution of the Program in a commercial product
  2824. offering. The obligations in this section do not apply to any claims or Losses
  2825. relating to any actual or alleged intellectual property infringement. In order
  2826. to qualify, an Indemnified Contributor must: a) promptly notify the Commercial
  2827. Contributor in writing of such claim, and b) allow the Commercial Contributor to
  2828. control, and cooperate with the Commercial Contributor in, the defense and any
  2829. related settlement negotiations. The Indemnified Contributor may participate in
  2830. any such claim at its own expense.
  2831. For example, a Contributor might include the Program in a commercial product
  2832. offering, Product X. That Contributor is then a Commercial Contributor. If that
  2833. Commercial Contributor then makes performance claims, or offers warranties
  2834. related to Product X, those performance claims and warranties are such
  2835. Commercial Contributor's responsibility alone. Under this section, the
  2836. Commercial Contributor would have to defend claims against the other
  2837. Contributors related to those performance claims and warranties, and if a court
  2838. requires any other Contributor to pay any damages as a result, the Commercial
  2839. Contributor must pay those damages.
  2840. 5. NO WARRANTY
  2841. EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED ON AN
  2842. "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR
  2843. IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE,
  2844. NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each
  2845. Recipient is solely responsible for determining the appropriateness of using and
  2846. distributing the Program and assumes all risks associated with its exercise of
  2847. rights under this Agreement, including but not limited to the risks and costs of
  2848. program errors, compliance with applicable laws, damage to or loss of data,
  2849. programs or equipment, and unavailability or interruption of operations.
  2850. 6. DISCLAIMER OF LIABILITY
  2851. EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR ANY
  2852. CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  2853. SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST
  2854. PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  2855. STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  2856. OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS
  2857. GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
  2858. 7. GENERAL
  2859. If any provision of this Agreement is invalid or unenforceable under applicable
  2860. law, it shall not affect the validity or enforceability of the remainder of the
  2861. terms of this Agreement, and without further action by the parties hereto, such
  2862. provision shall be reformed to the minimum extent necessary to make such
  2863. provision valid and enforceable.
  2864. If Recipient institutes patent litigation against a Contributor with respect to
  2865. a patent applicable to software (including a cross-claim or counterclaim in a
  2866. lawsuit), then any patent licenses granted by that Contributor to such Recipient
  2867. under this Agreement shall terminate as of the date such litigation is filed. In
  2868. addition, if Recipient institutes patent litigation against any entity
  2869. (including a cross-claim or counterclaim in a lawsuit) alleging that the Program
  2870. itself (excluding combinations of the Program with other software or hardware)
  2871. infringes such Recipient's patent(s), then such Recipient's rights granted under
  2872. Section 2(b) shall terminate as of the date such litigation is filed.
  2873. All Recipient's rights under this Agreement shall terminate if it fails to
  2874. comply with any of the material terms or conditions of this Agreement and does
  2875. not cure such failure in a reasonable period of time after becoming aware of
  2876. such noncompliance. If all Recipient's rights under this Agreement terminate,
  2877. Recipient agrees to cease use and distribution of the Program as soon as
  2878. reasonably practicable. However, Recipient's obligations under this Agreement
  2879. and any licenses granted by Recipient relating to the Program shall continue and
  2880. survive.
  2881. Everyone is permitted to copy and distribute copies of this Agreement, but in
  2882. order to avoid inconsistency the Agreement is copyrighted and may only be
  2883. modified in the following manner. The Agreement Steward reserves the right to
  2884. publish new versions (including revisions) of this Agreement from time to time.
  2885. No one other than the Agreement Steward has the right to modify this Agreement.
  2886. IBM is the initial Agreement Steward. IBM may assign the responsibility to serve
  2887. as the Agreement Steward to a suitable separate entity. Each new version of the
  2888. Agreement will be given a distinguishing version number. The Program (including
  2889. Contributions) may always be distributed subject to the version of the Agreement
  2890. under which it was received. In addition, after a new version of the Agreement
  2891. is published, Contributor may elect to distribute the Program (including its
  2892. Contributions) under the new version. Except as expressly stated in Sections
  2893. 2(a) and 2(b) above, Recipient receives no rights or licenses to the
  2894. intellectual property of any Contributor under this Agreement, whether
  2895. expressly, by implication, estoppel or otherwise. All rights in the Program not
  2896. expressly granted under this Agreement are reserved.
  2897. This Agreement is governed by the laws of the State of New York and the
  2898. intellectual property laws of the United States of America. No party to this
  2899. Agreement will bring a legal action under this Agreement more than one year
  2900. after the cause of action arose. Each party waives its rights to a jury trial in
  2901. any resulting litigation.
  2902. ------------------------------------------------------------------------------
  2903. License for the JCIFS package
  2904. ------------------------------------------------------------------------------
  2905. JCIFS License
  2906. GNU LESSER GENERAL PUBLIC LICENSE
  2907. Version 2.1, February 1999
  2908. Copyright (C) 1991, 1999 Free Software Foundation, Inc.
  2909. 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  2910. Everyone is permitted to copy and distribute verbatim copies
  2911. of this license document, but changing it is not allowed.
  2912. [This is the first released version of the Lesser GPL. It also counts
  2913. as the successor of the GNU Library Public License, version 2, hence
  2914. the version number 2.1.]
  2915. Preamble
  2916. The licenses for most software are designed to take away your
  2917. freedom to share and change it. By contrast, the GNU General Public
  2918. Licenses are intended to guarantee your freedom to share and change
  2919. free software--to make sure the software is free for all its users.
  2920. This license, the Lesser General Public License, applies to some
  2921. specially designated software packages--typically libraries--of the
  2922. Free Software Foundation and other authors who decide to use it. You
  2923. can use it too, but we suggest you first think carefully about whether
  2924. this license or the ordinary General Public License is the better
  2925. strategy to use in any particular case, based on the explanations below.
  2926. When we speak of free software, we are referring to freedom of use,
  2927. not price. Our General Public Licenses are designed to make sure that
  2928. you have the freedom to distribute copies of free software (and charge
  2929. for this service if you wish); that you receive source code or can get
  2930. it if you want it; that you can change the software and use pieces of
  2931. it in new free programs; and that you are informed that you can do
  2932. these things.
  2933. To protect your rights, we need to make restrictions that forbid
  2934. distributors to deny you these rights or to ask you to surrender these
  2935. rights. These restrictions translate to certain responsibilities for
  2936. you if you distribute copies of the library or if you modify it.
  2937. For example, if you distribute copies of the library, whether gratis
  2938. or for a fee, you must give the recipients all the rights that we gave
  2939. you. You must make sure that they, too, receive or can get the source
  2940. code. If you link other code with the library, you must provide
  2941. complete object files to the recipients, so that they can relink them
  2942. with the library after making changes to the library and recompiling
  2943. it. And you must show them these terms so they know their rights.
  2944. We protect your rights with a two-step method: (1) we copyright the
  2945. library, and (2) we offer you this license, which gives you legal
  2946. permission to copy, distribute and/or modify the library.
  2947. To protect each distributor, we want to make it very clear that
  2948. there is no warranty for the free library. Also, if the library is
  2949. modified by someone else and passed on, the recipients should know
  2950. that what they have is not the original version, so that the original
  2951. author's reputation will not be affected by problems that might be
  2952. introduced by others.
  2953. Finally, software patents pose a constant threat to the existence of
  2954. any free program. We wish to make sure that a company cannot
  2955. effectively restrict the users of a free program by obtaining a
  2956. restrictive license from a patent holder. Therefore, we insist that
  2957. any patent license obtained for a version of the library must be
  2958. consistent with the full freedom of use specified in this license.
  2959. Most GNU software, including some libraries, is covered by the
  2960. ordinary GNU General Public License. This license, the GNU Lesser
  2961. General Public License, applies to certain designated libraries, and
  2962. is quite different from the ordinary General Public License. We use
  2963. this license for certain libraries in order to permit linking those
  2964. libraries into non-free programs.
  2965. When a program is linked with a library, whether statically or using
  2966. a shared library, the combination of the two is legally speaking a
  2967. combined work, a derivative of the original library. The ordinary
  2968. General Public License therefore permits such linking only if the
  2969. entire combination fits its criteria of freedom. The Lesser General
  2970. Public License permits more lax criteria for linking other code with
  2971. the library.
  2972. We call this license the "Lesser" General Public License because it
  2973. does Less to protect the user's freedom than the ordinary General
  2974. Public License. It also provides other free software developers Less
  2975. of an advantage over competing non-free programs. These disadvantages
  2976. are the reason we use the ordinary General Public License for many
  2977. libraries. However, the Lesser license provides advantages in certain
  2978. special circumstances.
  2979. For example, on rare occasions, there may be a special need to
  2980. encourage the widest possible use of a certain library, so that it becomes
  2981. a de-facto standard. To achieve this, non-free programs must be
  2982. allowed to use the library. A more frequent case is that a free
  2983. library does the same job as widely used non-free libraries. In this
  2984. case, there is little to gain by limiting the free library to free
  2985. software only, so we use the Lesser General Public License.
  2986. In other cases, permission to use a particular library in non-free
  2987. programs enables a greater number of people to use a large body of
  2988. free software. For example, permission to use the GNU C Library in
  2989. non-free programs enables many more people to use the whole GNU
  2990. operating system, as well as its variant, the GNU/Linux operating
  2991. system.
  2992. Although the Lesser General Public License is Less protective of the
  2993. users' freedom, it does ensure that the user of a program that is
  2994. linked with the Library has the freedom and the wherewithal to run
  2995. that program using a modified version of the Library.
  2996. The precise terms and conditions for copying, distribution and
  2997. modification follow. Pay close attention to the difference between a
  2998. "work based on the library" and a "work that uses the library". The
  2999. former contains code derived from the library, whereas the latter must
  3000. be combined with the library in order to run.
  3001. GNU LESSER GENERAL PUBLIC LICENSE
  3002. TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
  3003. 0. This License Agreement applies to any software library or other
  3004. program which contains a notice placed by the copyright holder or
  3005. other authorized party saying it may be distributed under the terms of
  3006. this Lesser General Public License (also called "this License").
  3007. Each licensee is addressed as "you".
  3008. A "library" means a collection of software functions and/or data
  3009. prepared so as to be conveniently linked with application programs
  3010. (which use some of those functions and data) to form executables.
  3011. The "Library", below, refers to any such software library or work
  3012. which has been distributed under these terms. A "work based on the
  3013. Library" means either the Library or any derivative work under
  3014. copyright law: that is to say, a work containing the Library or a
  3015. portion of it, either verbatim or with modifications and/or translated
  3016. straightforwardly into another language. (Hereinafter, translation is
  3017. included without limitation in the term "modification".)
  3018. "Source code" for a work means the preferred form of the work for
  3019. making modifications to it. For a library, complete source code means
  3020. all the source code for all modules it contains, plus any associated
  3021. interface definition files, plus the scripts used to control compilation
  3022. and installation of the library.
  3023. Activities other than copying, distribution and modification are not
  3024. covered by this License; they are outside its scope. The act of
  3025. running a program using the Library is not restricted, and output from
  3026. such a program is covered only if its contents constitute a work based
  3027. on the Library (independent of the use of the Library in a tool for
  3028. writing it). Whether that is true depends on what the Library does
  3029. and what the program that uses the Library does.
  3030. 1. You may copy and distribute verbatim copies of the Library's
  3031. complete source code as you receive it, in any medium, provided that
  3032. you conspicuously and appropriately publish on each copy an
  3033. appropriate copyright notice and disclaimer of warranty; keep intact
  3034. all the notices that refer to this License and to the absence of any
  3035. warranty; and distribute a copy of this License along with the
  3036. Library.
  3037. You may charge a fee for the physical act of transferring a copy,
  3038. and you may at your option offer warranty protection in exchange for a
  3039. fee.
  3040. 2. You may modify your copy or copies of the Library or any portion
  3041. of it, thus forming a work based on the Library, and copy and
  3042. distribute such modifications or work under the terms of Section 1
  3043. above, provided that you also meet all of these conditions:
  3044. a) The modified work must itself be a software library.
  3045. b) You must cause the files modified to carry prominent notices
  3046. stating that you changed the files and the date of any change.
  3047. c) You must cause the whole of the work to be licensed at no
  3048. charge to all third parties under the terms of this License.
  3049. d) If a facility in the modified Library refers to a function or a
  3050. table of data to be supplied by an application program that uses
  3051. the facility, other than as an argument passed when the facility
  3052. is invoked, then you must make a good faith effort to ensure that,
  3053. in the event an application does not supply such function or
  3054. table, the facility still operates, and performs whatever part of
  3055. its purpose remains meaningful.
  3056. (For example, a function in a library to compute square roots has
  3057. a purpose that is entirely well-defined independent of the
  3058. application. Therefore, Subsection 2d requires that any
  3059. application-supplied function or table used by this function must
  3060. be optional: if the application does not supply it, the square
  3061. root function must still compute square roots.)
  3062. These requirements apply to the modified work as a whole. If
  3063. identifiable sections of that work are not derived from the Library,
  3064. and can be reasonably considered independent and separate works in
  3065. themselves, then this License, and its terms, do not apply to those
  3066. sections when you distribute them as separate works. But when you
  3067. distribute the same sections as part of a whole which is a work based
  3068. on the Library, the distribution of the whole must be on the terms of
  3069. this License, whose permissions for other licensees extend to the
  3070. entire whole, and thus to each and every part regardless of who wrote
  3071. it.
  3072. Thus, it is not the intent of this section to claim rights or contest
  3073. your rights to work written entirely by you; rather, the intent is to
  3074. exercise the right to control the distribution of derivative or
  3075. collective works based on the Library.
  3076. In addition, mere aggregation of another work not based on the Library
  3077. with the Library (or with a work based on the Library) on a volume of
  3078. a storage or distribution medium does not bring the other work under
  3079. the scope of this License.
  3080. 3. You may opt to apply the terms of the ordinary GNU General Public
  3081. License instead of this License to a given copy of the Library. To do
  3082. this, you must alter all the notices that refer to this License, so
  3083. that they refer to the ordinary GNU General Public License, version 2,
  3084. instead of to this License. (If a newer version than version 2 of the
  3085. ordinary GNU General Public License has appeared, then you can specify
  3086. that version instead if you wish.) Do not make any other change in
  3087. these notices.
  3088. Once this change is made in a given copy, it is irreversible for
  3089. that copy, so the ordinary GNU General Public License applies to all
  3090. subsequent copies and derivative works made from that copy.
  3091. This option is useful when you wish to copy part of the code of
  3092. the Library into a program that is not a library.
  3093. 4. You may copy and distribute the Library (or a portion or
  3094. derivative of it, under Section 2) in object code or executable form
  3095. under the terms of Sections 1 and 2 above provided that you accompany
  3096. it with the complete corresponding machine-readable source code, which
  3097. must be distributed under the terms of Sections 1 and 2 above on a
  3098. medium customarily used for software interchange.
  3099. If distribution of object code is made by offering access to copy
  3100. from a designated place, then offering equivalent access to copy the
  3101. source code from the same place satisfies the requirement to
  3102. distribute the source code, even though third parties are not
  3103. compelled to copy the source along with the object code.
  3104. 5. A program that contains no derivative of any portion of the
  3105. Library, but is designed to work with the Library by being compiled or
  3106. linked with it, is called a "work that uses the Library". Such a
  3107. work, in isolation, is not a derivative work of the Library, and
  3108. therefore falls outside the scope of this License.
  3109. However, linking a "work that uses the Library" with the Library
  3110. creates an executable that is a derivative of the Library (because it
  3111. contains portions of the Library), rather than a "work that uses the
  3112. library". The executable is therefore covered by this License.
  3113. Section 6 states terms for distribution of such executables.
  3114. When a "work that uses the Library" uses material from a header file
  3115. that is part of the Library, the object code for the work may be a
  3116. derivative work of the Library even though the source code is not.
  3117. Whether this is true is especially significant if the work can be
  3118. linked without the Library, or if the work is itself a library. The
  3119. threshold for this to be true is not precisely defined by law.
  3120. If such an object file uses only numerical parameters, data
  3121. structure layouts and accessors, and small macros and small inline
  3122. functions (ten lines or less in length), then the use of the object
  3123. file is unrestricted, regardless of whether it is legally a derivative
  3124. work. (Executables containing this object code plus portions of the
  3125. Library will still fall under Section 6.)
  3126. Otherwise, if the work is a derivative of the Library, you may
  3127. distribute the object code for the work under the terms of Section 6.
  3128. Any executables containing that work also fall under Section 6,
  3129. whether or not they are linked directly with the Library itself.
  3130. 6. As an exception to the Sections above, you may also combine or
  3131. link a "work that uses the Library" with the Library to produce a
  3132. work containing portions of the Library, and distribute that work
  3133. under terms of your choice, provided that the terms permit
  3134. modification of the work for the customer's own use and reverse
  3135. engineering for debugging such modifications.
  3136. You must give prominent notice with each copy of the work that the
  3137. Library is used in it and that the Library and its use are covered by
  3138. this License. You must supply a copy of this License. If the work
  3139. during execution displays copyright notices, you must include the
  3140. copyright notice for the Library among them, as well as a reference
  3141. directing the user to the copy of this License. Also, you must do one
  3142. of these things:
  3143. a) Accompany the work with the complete corresponding
  3144. machine-readable source code for the Library including whatever
  3145. changes were used in the work (which must be distributed under
  3146. Sections 1 and 2 above); and, if the work is an executable linked
  3147. with the Library, with the complete machine-readable "work that
  3148. uses the Library", as object code and/or source code, so that the
  3149. user can modify the Library and then relink to produce a modified
  3150. executable containing the modified Library. (It is understood
  3151. that the user who changes the contents of definitions files in the
  3152. Library will not necessarily be able to recompile the application
  3153. to use the modified definitions.)
  3154. b) Use a suitable shared library mechanism for linking with the
  3155. Library. A suitable mechanism is one that (1) uses at run time a
  3156. copy of the library already present on the user's computer system,
  3157. rather than copying library functions into the executable, and (2)
  3158. will operate properly with a modified version of the library, if
  3159. the user installs one, as long as the modified version is
  3160. interface-compatible with the version that the work was made with.
  3161. c) Accompany the work with a written offer, valid for at
  3162. least three years, to give the same user the materials
  3163. specified in Subsection 6a, above, for a charge no more
  3164. than the cost of performing this distribution.
  3165. d) If distribution of the work is made by offering access to copy
  3166. from a designated place, offer equivalent access to copy the above
  3167. specified materials from the same place.
  3168. e) Verify that the user has already received a copy of these
  3169. materials or that you have already sent this user a copy.
  3170. For an executable, the required form of the "work that uses the
  3171. Library" must include any data and utility programs needed for
  3172. reproducing the executable from it. However, as a special exception,
  3173. the materials to be distributed need not include anything that is
  3174. normally distributed (in either source or binary form) with the major
  3175. components (compiler, kernel, and so on) of the operating system on
  3176. which the executable runs, unless that component itself accompanies
  3177. the executable.
  3178. It may happen that this requirement contradicts the license
  3179. restrictions of other proprietary libraries that do not normally
  3180. accompany the operating system. Such a contradiction means you cannot
  3181. use both them and the Library together in an executable that you
  3182. distribute.
  3183. 7. You may place library facilities that are a work based on the
  3184. Library side-by-side in a single library together with other library
  3185. facilities not covered by this License, and distribute such a combined
  3186. library, provided that the separate distribution of the work based on
  3187. the Library and of the other library facilities is otherwise
  3188. permitted, and provided that you do these two things:
  3189. a) Accompany the combined library with a copy of the same work
  3190. based on the Library, uncombined with any other library
  3191. facilities. This must be distributed under the terms of the
  3192. Sections above.
  3193. b) Give prominent notice with the combined library of the fact
  3194. that part of it is a work based on the Library, and explaining
  3195. where to find the accompanying uncombined form of the same work.
  3196. 8. You may not copy, modify, sublicense, link with, or distribute
  3197. the Library except as expressly provided under this License. Any
  3198. attempt otherwise to copy, modify, sublicense, link with, or
  3199. distribute the Library is void, and will automatically terminate your
  3200. rights under this License. However, parties who have received copies,
  3201. or rights, from you under this License will not have their licenses
  3202. terminated so long as such parties remain in full compliance.
  3203. 9. You are not required to accept this License, since you have not
  3204. signed it. However, nothing else grants you permission to modify or
  3205. distribute the Library or its derivative works. These actions are
  3206. prohibited by law if you do not accept this License. Therefore, by
  3207. modifying or distributing the Library (or any work based on the
  3208. Library), you indicate your acceptance of this License to do so, and
  3209. all its terms and conditions for copying, distributing or modifying
  3210. the Library or works based on it.
  3211. 10. Each time you redistribute the Library (or any work based on the
  3212. Library), the recipient automatically receives a license from the
  3213. original licensor to copy, distribute, link with or modify the Library
  3214. subject to these terms and conditions. You may not impose any further
  3215. restrictions on the recipients' exercise of the rights granted herein.
  3216. You are not responsible for enforcing compliance by third parties with
  3217. this License.
  3218. 11. If, as a consequence of a court judgment or allegation of patent
  3219. infringement or for any other reason (not limited to patent issues),
  3220. conditions are imposed on you (whether by court order, agreement or
  3221. otherwise) that contradict the conditions of this License, they do not
  3222. excuse you from the conditions of this License. If you cannot
  3223. distribute so as to satisfy simultaneously your obligations under this
  3224. License and any other pertinent obligations, then as a consequence you
  3225. may not distribute the Library at all. For example, if a patent
  3226. license would not permit royalty-free redistribution of the Library by
  3227. all those who receive copies directly or indirectly through you, then
  3228. the only way you could satisfy both it and this License would be to
  3229. refrain entirely from distribution of the Library.
  3230. If any portion of this section is held invalid or unenforceable under any
  3231. particular circumstance, the balance of the section is intended to apply,
  3232. and the section as a whole is intended to apply in other circumstances.
  3233. It is not the purpose of this section to induce you to infringe any
  3234. patents or other property right claims or to contest validity of any
  3235. such claims; this section has the sole purpose of protecting the
  3236. integrity of the free software distribution system which is
  3237. implemented by public license practices. Many people have made
  3238. generous contributions to the wide range of software distributed
  3239. through that system in reliance on consistent application of that
  3240. system; it is up to the author/donor to decide if he or she is willing
  3241. to distribute software through any other system and a licensee cannot
  3242. impose that choice.
  3243. This section is intended to make thoroughly clear what is believed to
  3244. be a consequence of the rest of this License.
  3245. 12. If the distribution and/or use of the Library is restricted in
  3246. certain countries either by patents or by copyrighted interfaces, the
  3247. original copyright holder who places the Library under this License may add
  3248. an explicit geographical distribution limitation excluding those countries,
  3249. so that distribution is permitted only in or among countries not thus
  3250. excluded. In such case, this License incorporates the limitation as if
  3251. written in the body of this License.
  3252. 13. The Free Software Foundation may publish revised and/or new
  3253. versions of the Lesser General Public License from time to time.
  3254. Such new versions will be similar in spirit to the present version,
  3255. but may differ in detail to address new problems or concerns.
  3256. Each version is given a distinguishing version number. If the Library
  3257. specifies a version number of this License which applies to it and
  3258. "any later version", you have the option of following the terms and
  3259. conditions either of that version or of any later version published by
  3260. the Free Software Foundation. If the Library does not specify a
  3261. license version number, you may choose any version ever published by
  3262. the Free Software Foundation.
  3263. 14. If you wish to incorporate parts of the Library into other free
  3264. programs whose distribution conditions are incompatible with these,
  3265. write to the author to ask for permission. For software which is
  3266. copyrighted by the Free Software Foundation, write to the Free
  3267. Software Foundation; we sometimes make exceptions for this. Our
  3268. decision will be guided by the two goals of preserving the free status
  3269. of all derivatives of our free software and of promoting the sharing
  3270. and reuse of software generally.
  3271. NO WARRANTY
  3272. 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO
  3273. WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.
  3274. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR
  3275. OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY
  3276. KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE
  3277. IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  3278. PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE
  3279. LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME
  3280. THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
  3281. 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
  3282. WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY
  3283. AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU
  3284. FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR
  3285. CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE
  3286. LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING
  3287. RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
  3288. FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF
  3289. SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
  3290. DAMAGES.
  3291. END OF TERMS AND CONDITIONS
  3292. How to Apply These Terms to Your New Libraries
  3293. If you develop a new library, and you want it to be of the greatest
  3294. possible use to the public, we recommend making it free software that
  3295. everyone can redistribute and change. You can do so by permitting
  3296. redistribution under these terms (or, alternatively, under the terms of the
  3297. ordinary General Public License).
  3298. To apply these terms, attach the following notices to the library. It is
  3299. safest to attach them to the start of each source file to most effectively
  3300. convey the exclusion of warranty; and each file should have at least the
  3301. "copyright" line and a pointer to where the full notice is found.
  3302. <one line to give the library's name and a brief idea of what it does.>
  3303. Copyright (C) <year> <name of author>
  3304. This library is free software; you can redistribute it and/or
  3305. modify it under the terms of the GNU Lesser General Public
  3306. License as published by the Free Software Foundation; either
  3307. version 2.1 of the License, or (at your option) any later version.
  3308. This library is distributed in the hope that it will be useful,
  3309. but WITHOUT ANY WARRANTY; without even the implied warranty of
  3310. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  3311. Lesser General Public License for more details.
  3312. You should have received a copy of the GNU Lesser General Public
  3313. License along with this library; if not, write to the Free Software
  3314. Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  3315. Also add information on how to contact you by electronic and paper mail.
  3316. You should also get your employer (if you work as a programmer) or your
  3317. school, if any, to sign a "copyright disclaimer" for the library, if
  3318. necessary. Here is a sample; alter the names:
  3319. Yoyodyne, Inc., hereby disclaims all copyright interest in the
  3320. library `Frob' (a library for tweaking knobs) written by James Random Hacker.
  3321. <signature of Ty Coon>, 1 April 1990
  3322. Ty Coon, President of Vice
  3323. That's all there is to it!
  3324. ****************************
  3325. icu
  3326. ****************************
  3327. ICU
  3328. There are two licenses here:
  3329. - ICU license
  3330. - Unicode Terms of Use
  3331. ------------------------------------------------------------------------------
  3332. ICU License - ICU 1.8.1 and later
  3333. From http://source.icu-project.org/repos/icu/icu/trunk/license.html
  3334. X License (old version). For license pedigree see the
  3335. ICU FAQ at http://icu-project.org/userguide/icufaq.html
  3336. COPYRIGHT AND PERMISSION NOTICE
  3337. Copyright (c) 1995-2006 International Business Machines Corporation and others
  3338. All rights reserved.
  3339. Permission is hereby granted, free of charge, to any person obtaining a copy
  3340. of this software and associated documentation files (the "Software"), to deal
  3341. in the Software without restriction, including without limitation the rights
  3342. to use, copy, modify, merge, publish, distribute, and/or sell copies of the
  3343. Software, and to permit persons to whom the Software is furnished to do so,
  3344. provided that the above copyright notice(s) and this permission notice appear
  3345. in all copies of the Software and that both the above copyright notice(s) and
  3346. this permission notice appear in supporting documentation.
  3347. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  3348. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  3349. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS.
  3350. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE
  3351. LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY
  3352. DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  3353. ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
  3354. CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  3355. Except as contained in this notice, the name of a copyright holder shall not
  3356. be used in advertising or otherwise to promote the sale, use or other dealings
  3357. in this Software without prior written authorization of the copyright holder.
  3358. All trademarks and registered trademarks mentioned herein are the property of their respective owners.
  3359. ------------------------------------------------------------------------------
  3360. Unicode Terms of Use, from http://www.unicode.org/copyright.html
  3361. For the general privacy policy governing access to this site, see the
  3362. Unicode Privacy Policy. For trademark usage, see the Unicode Consortium
  3363. Trademarks and Logo Policy.
  3364. Notice to End User: Terms of Use
  3365. Carefully read the following legal agreement ("Agreement"). Use or copying
  3366. of the software and/or codes provided with this agreement (The "Software")
  3367. constitutes your acceptance of these terms
  3368. 1. Unicode Copyright.
  3369. 1. Copyright 1991-2007 Unicode, Inc. All rights reserved.
  3370. 2. Certain documents and files on this website contain a legend
  3371. indicating that "Modification is permitted." Any person is hereby authorized,
  3372. without fee, to modify such documents and files to create derivative works
  3373. conforming to the Unicode Standard, subject to Terms and Conditions herein.
  3374. 3. Any person is hereby authorized, without fee, to view, use,
  3375. reproduce, and distribute all documents and files solely for informational
  3376. purposes in the creation of products supporting the Unicode Standard, subject
  3377. to the Terms and Conditions herein.
  3378. 4. Further specifications of rights and restrictions pertaining
  3379. to the use of the particular set of data files known as the "Unicode Character
  3380. Database" can be found in Exhibit 1.
  3381. 5. Each version of the Unicode Standard has further specifications
  3382. of rights and restrictions of use. For the book editions, these are found on
  3383. the back of the title page. For the online edition, certain files (such as the
  3384. PDF files for book chapters and code charts) carry specific restrictions. All
  3385. other files are covered under these general Terms of Use. To request a
  3386. permission to reproduce any part of the Unicode Standard, please contact the
  3387. Unicode Consortium.
  3388. 6. No license is granted to "mirror" the Unicode website where a
  3389. fee is charged for access to the "mirror" site.
  3390. 7. Modification is not permitted with respect to this document.
  3391. All copies of this document must be verbatim.
  3392. 2. Restricted Rights Legend. Any technical data or software which is
  3393. licensed to the United States of America, its agencies and/or instrumentalities
  3394. under this Agreement is commercial technical data or commercial computer
  3395. software developed exclusively at private expense as defined in FAR 2.101, or
  3396. DFARS 252.227-7014 (June 1995), as applicable. For technical data, use,
  3397. duplication, or disclosure by the Government is subject to restrictions as set
  3398. forth in DFARS 202.227-7015 Technical Data, Commercial and Items (Nov 1995)
  3399. and this Agreement. For Software, in accordance with FAR 12-212 or
  3400. DFARS 227-7202, as applicable, use, duplication or disclosure by the Government
  3401. is subject to the restrictions set forth in this Agreement.
  3402. 3. Warranties and Disclaimers.
  3403. 1. This publication and/or website may include technical or
  3404. typographical errors or other inaccuracies . Changes are periodically added to
  3405. the information herein; these changes will be incorporated in new editions of
  3406. the publication and/or website. Unicode may make improvements and/or changes
  3407. in the product(s) and/or program(s) described in this publication and/or
  3408. website at any time.
  3409. 2. If this file has been purchased on magnetic or optical media
  3410. from Unicode, Inc. the sole and exclusive remedy for any claim will be exchange
  3411. of the defective media within ninety (90) days of original purchase.
  3412. 3. EXCEPT AS PROVIDED IN SECTION C.2, THIS PUBLICATION AND/OR
  3413. SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND EITHER EXPRESS,
  3414. IMPLIED, OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, ANY WARRANTIES OF
  3415. MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT.
  3416. UNICODE AND ITS LICENSORS ASSUME NO RESPONSIBILITY FOR ERRORS OR OMISSIONS IN
  3417. THIS PUBLICATION AND/OR SOFTWARE OR OTHER DOCUMENTS WHICH ARE REFERENCED BY OR
  3418. LINKED TO THIS PUBLICATION OR THE UNICODE WEBSITE.
  3419. 4. Waiver of Damages. In no event shall Unicode or its licensors be
  3420. liable for any special, incidental, indirect or consequential damages of any
  3421. kind, or any damages whatsoever, whether or not Unicode was advised of the
  3422. possibility of the damage, including, without limitation, those resulting from
  3423. the following: loss of use, data or profits, in connection with the use,
  3424. modification or distribution of this information or its derivatives.
  3425. 5. Trademarks.
  3426. 1. Unicode and the Unicode logo are registered trademarks of
  3427. Unicode, Inc.
  3428. 2. This site contains product names and corporate names of other
  3429. companies. All product names and company names and logos mentioned herein are
  3430. the trademarks or registered trademarks of their respective owners. Other
  3431. products and corporate names mentioned herein which are trademarks of a third
  3432. party are used only for explanation and for the owners' benefit and with no
  3433. intent to infringe.
  3434. 3. Use of third party products or information referred to herein
  3435. is at the user\x{2019}s risk.
  3436. 6. Miscellaneous.
  3437. 1. Jurisdiction and Venue. This server is operated from a location
  3438. in the State of California, United States of America. Unicode makes no
  3439. representation that the materials are appropriate for use in other locations.
  3440. If you access this server from other locations, you are responsible for
  3441. compliance with local laws. This Agreement, all use of this site and any
  3442. claims and damages resulting from use of this site are governed solely by the
  3443. laws of the State of California without regard to any principles which would
  3444. apply the laws of a different jurisdiction. The user agrees that any disputes
  3445. regarding this site shall be resolved solely in the courts located in Santa
  3446. Clara County, California. The user agrees said courts have personal
  3447. jurisdiction and agree to waive any right to transfer the dispute to any other
  3448. forum.
  3449. 2. Modification by Unicode Unicode shall have the right to modify
  3450. this Agreement at any time by posting it to this site. The user may not assign
  3451. any part of this Agreement without Unicode\x{2019}s prior written consent.
  3452. 3. Taxes. The user agrees to pay any taxes arising from access to
  3453. this website or use of the information herein, except for those based on
  3454. Unicode\x{2019}s net income.
  3455. 4. Severability. If any provision of this Agreement is declared
  3456. invalid or unenforceable, the remaining provisions of this Agreement shall
  3457. remain in effect.
  3458. 5. Entire Agreement. This Agreement constitutes the entire
  3459. agreement between the parties.
  3460. EXHIBIT 1
  3461. UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE
  3462. Unicode Data Files include all data files under the directories
  3463. http://www.unicode.org/Public/, http://www.unicode.org/reports/, and
  3464. http://www.unicode.org/cldr/data/ . Unicode Software includes any source code
  3465. published in the Unicode Standard or under the directories
  3466. http://www.unicode.org/Public/, http://www.unicode.org/reports/, and
  3467. http://www.unicode.org/cldr/data/.
  3468. NOTICE TO USER: Carefully read the following legal agreement. BY
  3469. DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE INC.'S DATA FILES
  3470. ("DATA FILES"), AND/OR SOFTWARE ("SOFTWARE"), YOU UNEQUIVOCALLY ACCEPT, AND
  3471. AGREE TO BE BOUND BY, ALL OF THE TERMS AND CONDITIONS OF THIS AGREEMENT. IF
  3472. YOU DO NOT AGREE, DO NOT DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE THE DATA
  3473. FILES OR SOFTWARE.
  3474. COPYRIGHT AND PERMISSION NOTICE
  3475. Copyright 1991-2007 Unicode, Inc. All rights reserved. Distributed under
  3476. the Terms of Use in http://www.unicode.org/copyright.html.
  3477. Permission is hereby granted, free of charge, to any person obtaining a
  3478. copy of the Unicode data files and any associated documentation (the "Data
  3479. Files") or Unicode software and any associated documentation (the "Software")
  3480. to deal in the Data Files or Software without restriction, including without
  3481. limitation the rights to use, copy, modify, merge, publish, distribute, and/or
  3482. sell copies of the Data Files or Software, and to permit persons to whom the
  3483. Data Files or Software are furnished to do so, provided that (a) the above
  3484. copyright notice(s) and this permission notice appear with all copies of the
  3485. Data Files or Software, (b) both the above copyright notice(s) and this
  3486. permission notice appear in associated documentation, and (c) there is clear
  3487. notice in each modified Data File or in the Software as well as in the
  3488. documentation associated with the Data File(s) or Software that the data or
  3489. software has been modified.
  3490. THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
  3491. KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  3492. MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD
  3493. PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN
  3494. THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL
  3495. DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  3496. WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
  3497. OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THE DATA FILES OR
  3498. SOFTWARE.
  3499. Except as contained in this notice, the name of a copyright holder shall
  3500. not be used in advertising or otherwise to promote the sale, use or other
  3501. dealings in these Data Files or Software without prior written authorization
  3502. of the copyright holder.
  3503. Unicode and the Unicode logo are trademarks of Unicode, Inc., and may be
  3504. registered in some jurisdictions. All other trademarks and registered
  3505. trademarks mentioned herein are the property of their respective owners.
  3506. ****************************
  3507. icu
  3508. ****************************
  3509. ICU
  3510. There are two licenses here:
  3511. - ICU license
  3512. - Unicode Terms of Use
  3513. ------------------------------------------------------------------------------
  3514. ICU License - ICU 1.8.1 and later
  3515. From http://source.icu-project.org/repos/icu/icu/trunk/license.html
  3516. X License (old version). For license pedigree see the
  3517. ICU FAQ at http://icu-project.org/userguide/icufaq.html
  3518. COPYRIGHT AND PERMISSION NOTICE
  3519. Copyright (c) 1995-2006 International Business Machines Corporation and others
  3520. All rights reserved.
  3521. Permission is hereby granted, free of charge, to any person obtaining a copy
  3522. of this software and associated documentation files (the "Software"), to deal
  3523. in the Software without restriction, including without limitation the rights
  3524. to use, copy, modify, merge, publish, distribute, and/or sell copies of the
  3525. Software, and to permit persons to whom the Software is furnished to do so,
  3526. provided that the above copyright notice(s) and this permission notice appear
  3527. in all copies of the Software and that both the above copyright notice(s) and
  3528. this permission notice appear in supporting documentation.
  3529. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  3530. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  3531. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS.
  3532. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE
  3533. LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY
  3534. DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  3535. ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
  3536. CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  3537. Except as contained in this notice, the name of a copyright holder shall not
  3538. be used in advertising or otherwise to promote the sale, use or other dealings
  3539. in this Software without prior written authorization of the copyright holder.
  3540. All trademarks and registered trademarks mentioned herein are the property of their respective owners.
  3541. ------------------------------------------------------------------------------
  3542. Unicode Terms of Use, from http://www.unicode.org/copyright.html
  3543. For the general privacy policy governing access to this site, see the
  3544. Unicode Privacy Policy. For trademark usage, see the Unicode Consortium
  3545. Trademarks and Logo Policy.
  3546. Notice to End User: Terms of Use
  3547. Carefully read the following legal agreement ("Agreement"). Use or copying
  3548. of the software and/or codes provided with this agreement (The "Software")
  3549. constitutes your acceptance of these terms
  3550. 1. Unicode Copyright.
  3551. 1. Copyright 1991-2007 Unicode, Inc. All rights reserved.
  3552. 2. Certain documents and files on this website contain a legend
  3553. indicating that "Modification is permitted." Any person is hereby authorized,
  3554. without fee, to modify such documents and files to create derivative works
  3555. conforming to the Unicode Standard, subject to Terms and Conditions herein.
  3556. 3. Any person is hereby authorized, without fee, to view, use,
  3557. reproduce, and distribute all documents and files solely for informational
  3558. purposes in the creation of products supporting the Unicode Standard, subject
  3559. to the Terms and Conditions herein.
  3560. 4. Further specifications of rights and restrictions pertaining
  3561. to the use of the particular set of data files known as the "Unicode Character
  3562. Database" can be found in Exhibit 1.
  3563. 5. Each version of the Unicode Standard has further specifications
  3564. of rights and restrictions of use. For the book editions, these are found on
  3565. the back of the title page. For the online edition, certain files (such as the
  3566. PDF files for book chapters and code charts) carry specific restrictions. All
  3567. other files are covered under these general Terms of Use. To request a
  3568. permission to reproduce any part of the Unicode Standard, please contact the
  3569. Unicode Consortium.
  3570. 6. No license is granted to "mirror" the Unicode website where a
  3571. fee is charged for access to the "mirror" site.
  3572. 7. Modification is not permitted with respect to this document.
  3573. All copies of this document must be verbatim.
  3574. 2. Restricted Rights Legend. Any technical data or software which is
  3575. licensed to the United States of America, its agencies and/or instrumentalities
  3576. under this Agreement is commercial technical data or commercial computer
  3577. software developed exclusively at private expense as defined in FAR 2.101, or
  3578. DFARS 252.227-7014 (June 1995), as applicable. For technical data, use,
  3579. duplication, or disclosure by the Government is subject to restrictions as set
  3580. forth in DFARS 202.227-7015 Technical Data, Commercial and Items (Nov 1995)
  3581. and this Agreement. For Software, in accordance with FAR 12-212 or
  3582. DFARS 227-7202, as applicable, use, duplication or disclosure by the Government
  3583. is subject to the restrictions set forth in this Agreement.
  3584. 3. Warranties and Disclaimers.
  3585. 1. This publication and/or website may include technical or
  3586. typographical errors or other inaccuracies . Changes are periodically added to
  3587. the information herein; these changes will be incorporated in new editions of
  3588. the publication and/or website. Unicode may make improvements and/or changes
  3589. in the product(s) and/or program(s) described in this publication and/or
  3590. website at any time.
  3591. 2. If this file has been purchased on magnetic or optical media
  3592. from Unicode, Inc. the sole and exclusive remedy for any claim will be exchange
  3593. of the defective media within ninety (90) days of original purchase.
  3594. 3. EXCEPT AS PROVIDED IN SECTION C.2, THIS PUBLICATION AND/OR
  3595. SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND EITHER EXPRESS,
  3596. IMPLIED, OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, ANY WARRANTIES OF
  3597. MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT.
  3598. UNICODE AND ITS LICENSORS ASSUME NO RESPONSIBILITY FOR ERRORS OR OMISSIONS IN
  3599. THIS PUBLICATION AND/OR SOFTWARE OR OTHER DOCUMENTS WHICH ARE REFERENCED BY OR
  3600. LINKED TO THIS PUBLICATION OR THE UNICODE WEBSITE.
  3601. 4. Waiver of Damages. In no event shall Unicode or its licensors be
  3602. liable for any special, incidental, indirect or consequential damages of any
  3603. kind, or any damages whatsoever, whether or not Unicode was advised of the
  3604. possibility of the damage, including, without limitation, those resulting from
  3605. the following: loss of use, data or profits, in connection with the use,
  3606. modification or distribution of this information or its derivatives.
  3607. 5. Trademarks.
  3608. 1. Unicode and the Unicode logo are registered trademarks of
  3609. Unicode, Inc.
  3610. 2. This site contains product names and corporate names of other
  3611. companies. All product names and company names and logos mentioned herein are
  3612. the trademarks or registered trademarks of their respective owners. Other
  3613. products and corporate names mentioned herein which are trademarks of a third
  3614. party are used only for explanation and for the owners' benefit and with no
  3615. intent to infringe.
  3616. 3. Use of third party products or information referred to herein
  3617. is at the user\x{2019}s risk.
  3618. 6. Miscellaneous.
  3619. 1. Jurisdiction and Venue. This server is operated from a location
  3620. in the State of California, United States of America. Unicode makes no
  3621. representation that the materials are appropriate for use in other locations.
  3622. If you access this server from other locations, you are responsible for
  3623. compliance with local laws. This Agreement, all use of this site and any
  3624. claims and damages resulting from use of this site are governed solely by the
  3625. laws of the State of California without regard to any principles which would
  3626. apply the laws of a different jurisdiction. The user agrees that any disputes
  3627. regarding this site shall be resolved solely in the courts located in Santa
  3628. Clara County, California. The user agrees said courts have personal
  3629. jurisdiction and agree to waive any right to transfer the dispute to any other
  3630. forum.
  3631. 2. Modification by Unicode Unicode shall have the right to modify
  3632. this Agreement at any time by posting it to this site. The user may not assign
  3633. any part of this Agreement without Unicode\x{2019}s prior written consent.
  3634. 3. Taxes. The user agrees to pay any taxes arising from access to
  3635. this website or use of the information herein, except for those based on
  3636. Unicode\x{2019}s net income.
  3637. 4. Severability. If any provision of this Agreement is declared
  3638. invalid or unenforceable, the remaining provisions of this Agreement shall
  3639. remain in effect.
  3640. 5. Entire Agreement. This Agreement constitutes the entire
  3641. agreement between the parties.
  3642. EXHIBIT 1
  3643. UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE
  3644. Unicode Data Files include all data files under the directories
  3645. http://www.unicode.org/Public/, http://www.unicode.org/reports/, and
  3646. http://www.unicode.org/cldr/data/ . Unicode Software includes any source code
  3647. published in the Unicode Standard or under the directories
  3648. http://www.unicode.org/Public/, http://www.unicode.org/reports/, and
  3649. http://www.unicode.org/cldr/data/.
  3650. NOTICE TO USER: Carefully read the following legal agreement. BY
  3651. DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE INC.'S DATA FILES
  3652. ("DATA FILES"), AND/OR SOFTWARE ("SOFTWARE"), YOU UNEQUIVOCALLY ACCEPT, AND
  3653. AGREE TO BE BOUND BY, ALL OF THE TERMS AND CONDITIONS OF THIS AGREEMENT. IF
  3654. YOU DO NOT AGREE, DO NOT DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE THE DATA
  3655. FILES OR SOFTWARE.
  3656. COPYRIGHT AND PERMISSION NOTICE
  3657. Copyright 1991-2007 Unicode, Inc. All rights reserved. Distributed under
  3658. the Terms of Use in http://www.unicode.org/copyright.html.
  3659. Permission is hereby granted, free of charge, to any person obtaining a
  3660. copy of the Unicode data files and any associated documentation (the "Data
  3661. Files") or Unicode software and any associated documentation (the "Software")
  3662. to deal in the Data Files or Software without restriction, including without
  3663. limitation the rights to use, copy, modify, merge, publish, distribute, and/or
  3664. sell copies of the Data Files or Software, and to permit persons to whom the
  3665. Data Files or Software are furnished to do so, provided that (a) the above
  3666. copyright notice(s) and this permission notice appear with all copies of the
  3667. Data Files or Software, (b) both the above copyright notice(s) and this
  3668. permission notice appear in associated documentation, and (c) there is clear
  3669. notice in each modified Data File or in the Software as well as in the
  3670. documentation associated with the Data File(s) or Software that the data or
  3671. software has been modified.
  3672. THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
  3673. KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  3674. MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD
  3675. PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN
  3676. THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL
  3677. DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  3678. WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
  3679. OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THE DATA FILES OR
  3680. SOFTWARE.
  3681. Except as contained in this notice, the name of a copyright holder shall
  3682. not be used in advertising or otherwise to promote the sale, use or other
  3683. dealings in these Data Files or Software without prior written authorization
  3684. of the copyright holder.
  3685. Unicode and the Unicode logo are trademarks of Unicode, Inc., and may be
  3686. registered in some jurisdictions. All other trademarks and registered
  3687. trademarks mentioned herein are the property of their respective owners.
  3688. ****************************
  3689. java/android_libs/exoplayer
  3690. ****************************
  3691. Apache License
  3692. Version 2.0, January 2004
  3693. http://www.apache.org/licenses/
  3694. TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
  3695. 1. Definitions.
  3696. "License" shall mean the terms and conditions for use, reproduction,
  3697. and distribution as defined by Sections 1 through 9 of this document.
  3698. "Licensor" shall mean the copyright owner or entity authorized by
  3699. the copyright owner that is granting the License.
  3700. "Legal Entity" shall mean the union of the acting entity and all
  3701. other entities that control, are controlled by, or are under common
  3702. control with that entity. For the purposes of this definition,
  3703. "control" means (i) the power, direct or indirect, to cause the
  3704. direction or management of such entity, whether by contract or
  3705. otherwise, or (ii) ownership of fifty percent (50%) or more of the
  3706. outstanding shares, or (iii) beneficial ownership of such entity.
  3707. "You" (or "Your") shall mean an individual or Legal Entity
  3708. exercising permissions granted by this License.
  3709. "Source" form shall mean the preferred form for making modifications,
  3710. including but not limited to software source code, documentation
  3711. source, and configuration files.
  3712. "Object" form shall mean any form resulting from mechanical
  3713. transformation or translation of a Source form, including but
  3714. not limited to compiled object code, generated documentation,
  3715. and conversions to other media types.
  3716. "Work" shall mean the work of authorship, whether in Source or
  3717. Object form, made available under the License, as indicated by a
  3718. copyright notice that is included in or attached to the work
  3719. (an example is provided in the Appendix below).
  3720. "Derivative Works" shall mean any work, whether in Source or Object
  3721. form, that is based on (or derived from) the Work and for which the
  3722. editorial revisions, annotations, elaborations, or other modifications
  3723. represent, as a whole, an original work of authorship. For the purposes
  3724. of this License, Derivative Works shall not include works that remain
  3725. separable from, or merely link (or bind by name) to the interfaces of,
  3726. the Work and Derivative Works thereof.
  3727. "Contribution" shall mean any work of authorship, including
  3728. the original version of the Work and any modifications or additions
  3729. to that Work or Derivative Works thereof, that is intentionally
  3730. submitted to Licensor for inclusion in the Work by the copyright owner
  3731. or by an individual or Legal Entity authorized to submit on behalf of
  3732. the copyright owner. For the purposes of this definition, "submitted"
  3733. means any form of electronic, verbal, or written communication sent
  3734. to the Licensor or its representatives, including but not limited to
  3735. communication on electronic mailing lists, source code control systems,
  3736. and issue tracking systems that are managed by, or on behalf of, the
  3737. Licensor for the purpose of discussing and improving the Work, but
  3738. excluding communication that is conspicuously marked or otherwise
  3739. designated in writing by the copyright owner as "Not a Contribution."
  3740. "Contributor" shall mean Licensor and any individual or Legal Entity
  3741. on behalf of whom a Contribution has been received by Licensor and
  3742. subsequently incorporated within the Work.
  3743. 2. Grant of Copyright License. Subject to the terms and conditions of
  3744. this License, each Contributor hereby grants to You a perpetual,
  3745. worldwide, non-exclusive, no-charge, royalty-free, irrevocable
  3746. copyright license to reproduce, prepare Derivative Works of,
  3747. publicly display, publicly perform, sublicense, and distribute the
  3748. Work and such Derivative Works in Source or Object form.
  3749. 3. Grant of Patent License. Subject to the terms and conditions of
  3750. this License, each Contributor hereby grants to You a perpetual,
  3751. worldwide, non-exclusive, no-charge, royalty-free, irrevocable
  3752. (except as stated in this section) patent license to make, have made,
  3753. use, offer to sell, sell, import, and otherwise transfer the Work,
  3754. where such license applies only to those patent claims licensable
  3755. by such Contributor that are necessarily infringed by their
  3756. Contribution(s) alone or by combination of their Contribution(s)
  3757. with the Work to which such Contribution(s) was submitted. If You
  3758. institute patent litigation against any entity (including a
  3759. cross-claim or counterclaim in a lawsuit) alleging that the Work
  3760. or a Contribution incorporated within the Work constitutes direct
  3761. or contributory patent infringement, then any patent licenses
  3762. granted to You under this License for that Work shall terminate
  3763. as of the date such litigation is filed.
  3764. 4. Redistribution. You may reproduce and distribute copies of the
  3765. Work or Derivative Works thereof in any medium, with or without
  3766. modifications, and in Source or Object form, provided that You
  3767. meet the following conditions:
  3768. (a) You must give any other recipients of the Work or
  3769. Derivative Works a copy of this License; and
  3770. (b) You must cause any modified files to carry prominent notices
  3771. stating that You changed the files; and
  3772. (c) You must retain, in the Source form of any Derivative Works
  3773. that You distribute, all copyright, patent, trademark, and
  3774. attribution notices from the Source form of the Work,
  3775. excluding those notices that do not pertain to any part of
  3776. the Derivative Works; and
  3777. (d) If the Work includes a "NOTICE" text file as part of its
  3778. distribution, then any Derivative Works that You distribute must
  3779. include a readable copy of the attribution notices contained
  3780. within such NOTICE file, excluding those notices that do not
  3781. pertain to any part of the Derivative Works, in at least one
  3782. of the following places: within a NOTICE text file distributed
  3783. as part of the Derivative Works; within the Source form or
  3784. documentation, if provided along with the Derivative Works; or,
  3785. within a display generated by the Derivative Works, if and
  3786. wherever such third-party notices normally appear. The contents
  3787. of the NOTICE file are for informational purposes only and
  3788. do not modify the License. You may add Your own attribution
  3789. notices within Derivative Works that You distribute, alongside
  3790. or as an addendum to the NOTICE text from the Work, provided
  3791. that such additional attribution notices cannot be construed
  3792. as modifying the License.
  3793. You may add Your own copyright statement to Your modifications and
  3794. may provide additional or different license terms and conditions
  3795. for use, reproduction, or distribution of Your modifications, or
  3796. for any such Derivative Works as a whole, provided Your use,
  3797. reproduction, and distribution of the Work otherwise complies with
  3798. the conditions stated in this License.
  3799. 5. Submission of Contributions. Unless You explicitly state otherwise,
  3800. any Contribution intentionally submitted for inclusion in the Work
  3801. by You to the Licensor shall be under the terms and conditions of
  3802. this License, without any additional terms or conditions.
  3803. Notwithstanding the above, nothing herein shall supersede or modify
  3804. the terms of any separate license agreement you may have executed
  3805. with Licensor regarding such Contributions.
  3806. 6. Trademarks. This License does not grant permission to use the trade
  3807. names, trademarks, service marks, or product names of the Licensor,
  3808. except as required for reasonable and customary use in describing the
  3809. origin of the Work and reproducing the content of the NOTICE file.
  3810. 7. Disclaimer of Warranty. Unless required by applicable law or
  3811. agreed to in writing, Licensor provides the Work (and each
  3812. Contributor provides its Contributions) on an "AS IS" BASIS,
  3813. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
  3814. implied, including, without limitation, any warranties or conditions
  3815. of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
  3816. PARTICULAR PURPOSE. You are solely responsible for determining the
  3817. appropriateness of using or redistributing the Work and assume any
  3818. risks associated with Your exercise of permissions under this License.
  3819. 8. Limitation of Liability. In no event and under no legal theory,
  3820. whether in tort (including negligence), contract, or otherwise,
  3821. unless required by applicable law (such as deliberate and grossly
  3822. negligent acts) or agreed to in writing, shall any Contributor be
  3823. liable to You for damages, including any direct, indirect, special,
  3824. incidental, or consequential damages of any character arising as a
  3825. result of this License or out of the use or inability to use the
  3826. Work (including but not limited to damages for loss of goodwill,
  3827. work stoppage, computer failure or malfunction, or any and all
  3828. other commercial damages or losses), even if such Contributor
  3829. has been advised of the possibility of such damages.
  3830. 9. Accepting Warranty or Additional Liability. While redistributing
  3831. the Work or Derivative Works thereof, You may choose to offer,
  3832. and charge a fee for, acceptance of support, warranty, indemnity,
  3833. or other liability obligations and/or rights consistent with this
  3834. License. However, in accepting such obligations, You may act only
  3835. on Your own behalf and on Your sole responsibility, not on behalf
  3836. of any other Contributor, and only if You agree to indemnify,
  3837. defend, and hold each Contributor harmless for any liability
  3838. incurred by, or claims asserted against, such Contributor by reason
  3839. of your accepting any such warranty or additional liability.
  3840. END OF TERMS AND CONDITIONS
  3841. APPENDIX: How to apply the Apache License to your work.
  3842. To apply the Apache License to your work, attach the following
  3843. boilerplate notice, with the fields enclosed by brackets "[]"
  3844. replaced with your own identifying information. (Don't include
  3845. the brackets!) The text should be enclosed in the appropriate
  3846. comment syntax for the file format. We also recommend that a
  3847. file or class name and description of purpose be included on the
  3848. same "printed page" as the copyright notice for easier
  3849. identification within third-party archives.
  3850. Copyright [yyyy] [name of copyright owner]
  3851. Licensed under the Apache License, Version 2.0 (the "License");
  3852. you may not use this file except in compliance with the License.
  3853. You may obtain a copy of the License at
  3854. http://www.apache.org/licenses/LICENSE-2.0
  3855. Unless required by applicable law or agreed to in writing, software
  3856. distributed under the License is distributed on an "AS IS" BASIS,
  3857. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  3858. See the License for the specific language governing permissions and
  3859. limitations under the License.
  3860. ****************************
  3861. java/android_libs/protobuf_nano
  3862. ****************************
  3863. Copyright 2008, Google Inc.
  3864. All rights reserved.
  3865. Redistribution and use in source and binary forms, with or without
  3866. modification, are permitted provided that the following conditions are
  3867. met:
  3868. * Redistributions of source code must retain the above copyright
  3869. notice, this list of conditions and the following disclaimer.
  3870. * Redistributions in binary form must reproduce the above
  3871. copyright notice, this list of conditions and the following disclaimer
  3872. in the documentation and/or other materials provided with the
  3873. distribution.
  3874. * Neither the name of Google Inc. nor the names of its
  3875. contributors may be used to endorse or promote products derived from
  3876. this software without specific prior written permission.
  3877. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  3878. "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  3879. LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  3880. A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  3881. OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  3882. SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  3883. LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  3884. DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  3885. THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  3886. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  3887. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  3888. Code generated by the Protocol Buffer compiler is owned by the owner
  3889. of the input file used when generating it. This code is not
  3890. standalone and requires a support library to be linked with it. This
  3891. support library is itself covered by the above license.
  3892. ****************************
  3893. javascript/jquery_ui
  3894. ****************************
  3895. The MIT License (MIT)
  3896. Copyright (c) 2015 jQuery Foundation and other contributors
  3897. Permission is hereby granted, free of charge, to any person obtaining a copy of
  3898. this software and associated documentation files (the "Software"), to deal in
  3899. the Software without restriction, including without limitation the rights to
  3900. use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
  3901. the Software, and to permit persons to whom the Software is furnished to do so,
  3902. subject to the following conditions:
  3903. The above copyright notice and this permission notice shall be included in all
  3904. copies or substantial portions of the Software.
  3905. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  3906. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
  3907. FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
  3908. COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
  3909. IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  3910. CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  3911. ****************************
  3912. javascript/jquery/v2_0_1
  3913. ****************************
  3914. Copyright 2013 jQuery Foundation and other contributors
  3915. http://jquery.com/
  3916. https://github.com/jquery/jquery/blob/master/MIT-LICENSE.txt
  3917. https://github.com/jquery/sizzle/blob/master/LICENSE
  3918. jQuery and Sizzle are released under MIT Licence.
  3919. The text is provided below.
  3920. MIT License
  3921. ----
  3922. Copyright 2013 jQuery Foundation and other contributors
  3923. http://jquery.com/
  3924. Permission is hereby granted, free of charge, to any person obtaining
  3925. a copy of this software and associated documentation files (the
  3926. "Software"), to deal in the Software without restriction, including
  3927. without limitation the rights to use, copy, modify, merge, publish,
  3928. distribute, sublicense, and/or sell copies of the Software, and to
  3929. permit persons to whom the Software is furnished to do so, subject to
  3930. the following conditions:
  3931. The above copyright notice and this permission notice shall be
  3932. included in all copies or substantial portions of the Software.
  3933. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  3934. EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  3935. MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  3936. NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
  3937. LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  3938. OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  3939. WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  3940. ****************************
  3941. javascript/tracing_framework
  3942. ****************************
  3943. Copyright 2012, Google Inc.
  3944. All rights reserved.
  3945. Redistribution and use in source and binary forms, with or without
  3946. modification, are permitted provided that the following conditions are
  3947. met:
  3948. * Redistributions of source code must retain the above copyright
  3949. notice, this list of conditions and the following disclaimer.
  3950. * Redistributions in binary form must reproduce the above
  3951. copyright notice, this list of conditions and the following disclaimer
  3952. in the documentation and/or other materials provided with the
  3953. distribution.
  3954. * Neither the name of Google Inc. nor the names of its
  3955. contributors may be used to endorse or promote products derived from
  3956. this software without specific prior written permission.
  3957. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  3958. "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  3959. LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  3960. A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  3961. OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  3962. SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  3963. LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  3964. DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  3965. THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  3966. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  3967. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  3968. ****************************
  3969. java_src/android_libs/exoplayer
  3970. ****************************
  3971. Apache License
  3972. Version 2.0, January 2004
  3973. http://www.apache.org/licenses/
  3974. TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
  3975. 1. Definitions.
  3976. "License" shall mean the terms and conditions for use, reproduction,
  3977. and distribution as defined by Sections 1 through 9 of this document.
  3978. "Licensor" shall mean the copyright owner or entity authorized by
  3979. the copyright owner that is granting the License.
  3980. "Legal Entity" shall mean the union of the acting entity and all
  3981. other entities that control, are controlled by, or are under common
  3982. control with that entity. For the purposes of this definition,
  3983. "control" means (i) the power, direct or indirect, to cause the
  3984. direction or management of such entity, whether by contract or
  3985. otherwise, or (ii) ownership of fifty percent (50%) or more of the
  3986. outstanding shares, or (iii) beneficial ownership of such entity.
  3987. "You" (or "Your") shall mean an individual or Legal Entity
  3988. exercising permissions granted by this License.
  3989. "Source" form shall mean the preferred form for making modifications,
  3990. including but not limited to software source code, documentation
  3991. source, and configuration files.
  3992. "Object" form shall mean any form resulting from mechanical
  3993. transformation or translation of a Source form, including but
  3994. not limited to compiled object code, generated documentation,
  3995. and conversions to other media types.
  3996. "Work" shall mean the work of authorship, whether in Source or
  3997. Object form, made available under the License, as indicated by a
  3998. copyright notice that is included in or attached to the work
  3999. (an example is provided in the Appendix below).
  4000. "Derivative Works" shall mean any work, whether in Source or Object
  4001. form, that is based on (or derived from) the Work and for which the
  4002. editorial revisions, annotations, elaborations, or other modifications
  4003. represent, as a whole, an original work of authorship. For the purposes
  4004. of this License, Derivative Works shall not include works that remain
  4005. separable from, or merely link (or bind by name) to the interfaces of,
  4006. the Work and Derivative Works thereof.
  4007. "Contribution" shall mean any work of authorship, including
  4008. the original version of the Work and any modifications or additions
  4009. to that Work or Derivative Works thereof, that is intentionally
  4010. submitted to Licensor for inclusion in the Work by the copyright owner
  4011. or by an individual or Legal Entity authorized to submit on behalf of
  4012. the copyright owner. For the purposes of this definition, "submitted"
  4013. means any form of electronic, verbal, or written communication sent
  4014. to the Licensor or its representatives, including but not limited to
  4015. communication on electronic mailing lists, source code control systems,
  4016. and issue tracking systems that are managed by, or on behalf of, the
  4017. Licensor for the purpose of discussing and improving the Work, but
  4018. excluding communication that is conspicuously marked or otherwise
  4019. designated in writing by the copyright owner as "Not a Contribution."
  4020. "Contributor" shall mean Licensor and any individual or Legal Entity
  4021. on behalf of whom a Contribution has been received by Licensor and
  4022. subsequently incorporated within the Work.
  4023. 2. Grant of Copyright License. Subject to the terms and conditions of
  4024. this License, each Contributor hereby grants to You a perpetual,
  4025. worldwide, non-exclusive, no-charge, royalty-free, irrevocable
  4026. copyright license to reproduce, prepare Derivative Works of,
  4027. publicly display, publicly perform, sublicense, and distribute the
  4028. Work and such Derivative Works in Source or Object form.
  4029. 3. Grant of Patent License. Subject to the terms and conditions of
  4030. this License, each Contributor hereby grants to You a perpetual,
  4031. worldwide, non-exclusive, no-charge, royalty-free, irrevocable
  4032. (except as stated in this section) patent license to make, have made,
  4033. use, offer to sell, sell, import, and otherwise transfer the Work,
  4034. where such license applies only to those patent claims licensable
  4035. by such Contributor that are necessarily infringed by their
  4036. Contribution(s) alone or by combination of their Contribution(s)
  4037. with the Work to which such Contribution(s) was submitted. If You
  4038. institute patent litigation against any entity (including a
  4039. cross-claim or counterclaim in a lawsuit) alleging that the Work
  4040. or a Contribution incorporated within the Work constitutes direct
  4041. or contributory patent infringement, then any patent licenses
  4042. granted to You under this License for that Work shall terminate
  4043. as of the date such litigation is filed.
  4044. 4. Redistribution. You may reproduce and distribute copies of the
  4045. Work or Derivative Works thereof in any medium, with or without
  4046. modifications, and in Source or Object form, provided that You
  4047. meet the following conditions:
  4048. (a) You must give any other recipients of the Work or
  4049. Derivative Works a copy of this License; and
  4050. (b) You must cause any modified files to carry prominent notices
  4051. stating that You changed the files; and
  4052. (c) You must retain, in the Source form of any Derivative Works
  4053. that You distribute, all copyright, patent, trademark, and
  4054. attribution notices from the Source form of the Work,
  4055. excluding those notices that do not pertain to any part of
  4056. the Derivative Works; and
  4057. (d) If the Work includes a "NOTICE" text file as part of its
  4058. distribution, then any Derivative Works that You distribute must
  4059. include a readable copy of the attribution notices contained
  4060. within such NOTICE file, excluding those notices that do not
  4061. pertain to any part of the Derivative Works, in at least one
  4062. of the following places: within a NOTICE text file distributed
  4063. as part of the Derivative Works; within the Source form or
  4064. documentation, if provided along with the Derivative Works; or,
  4065. within a display generated by the Derivative Works, if and
  4066. wherever such third-party notices normally appear. The contents
  4067. of the NOTICE file are for informational purposes only and
  4068. do not modify the License. You may add Your own attribution
  4069. notices within Derivative Works that You distribute, alongside
  4070. or as an addendum to the NOTICE text from the Work, provided
  4071. that such additional attribution notices cannot be construed
  4072. as modifying the License.
  4073. You may add Your own copyright statement to Your modifications and
  4074. may provide additional or different license terms and conditions
  4075. for use, reproduction, or distribution of Your modifications, or
  4076. for any such Derivative Works as a whole, provided Your use,
  4077. reproduction, and distribution of the Work otherwise complies with
  4078. the conditions stated in this License.
  4079. 5. Submission of Contributions. Unless You explicitly state otherwise,
  4080. any Contribution intentionally submitted for inclusion in the Work
  4081. by You to the Licensor shall be under the terms and conditions of
  4082. this License, without any additional terms or conditions.
  4083. Notwithstanding the above, nothing herein shall supersede or modify
  4084. the terms of any separate license agreement you may have executed
  4085. with Licensor regarding such Contributions.
  4086. 6. Trademarks. This License does not grant permission to use the trade
  4087. names, trademarks, service marks, or product names of the Licensor,
  4088. except as required for reasonable and customary use in describing the
  4089. origin of the Work and reproducing the content of the NOTICE file.
  4090. 7. Disclaimer of Warranty. Unless required by applicable law or
  4091. agreed to in writing, Licensor provides the Work (and each
  4092. Contributor provides its Contributions) on an "AS IS" BASIS,
  4093. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
  4094. implied, including, without limitation, any warranties or conditions
  4095. of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
  4096. PARTICULAR PURPOSE. You are solely responsible for determining the
  4097. appropriateness of using or redistributing the Work and assume any
  4098. risks associated with Your exercise of permissions under this License.
  4099. 8. Limitation of Liability. In no event and under no legal theory,
  4100. whether in tort (including negligence), contract, or otherwise,
  4101. unless required by applicable law (such as deliberate and grossly
  4102. negligent acts) or agreed to in writing, shall any Contributor be
  4103. liable to You for damages, including any direct, indirect, special,
  4104. incidental, or consequential damages of any character arising as a
  4105. result of this License or out of the use or inability to use the
  4106. Work (including but not limited to damages for loss of goodwill,
  4107. work stoppage, computer failure or malfunction, or any and all
  4108. other commercial damages or losses), even if such Contributor
  4109. has been advised of the possibility of such damages.
  4110. 9. Accepting Warranty or Additional Liability. While redistributing
  4111. the Work or Derivative Works thereof, You may choose to offer,
  4112. and charge a fee for, acceptance of support, warranty, indemnity,
  4113. or other liability obligations and/or rights consistent with this
  4114. License. However, in accepting such obligations, You may act only
  4115. on Your own behalf and on Your sole responsibility, not on behalf
  4116. of any other Contributor, and only if You agree to indemnify,
  4117. defend, and hold each Contributor harmless for any liability
  4118. incurred by, or claims asserted against, such Contributor by reason
  4119. of your accepting any such warranty or additional liability.
  4120. END OF TERMS AND CONDITIONS
  4121. APPENDIX: How to apply the Apache License to your work.
  4122. To apply the Apache License to your work, attach the following
  4123. boilerplate notice, with the fields enclosed by brackets "[]"
  4124. replaced with your own identifying information. (Don't include
  4125. the brackets!) The text should be enclosed in the appropriate
  4126. comment syntax for the file format. We also recommend that a
  4127. file or class name and description of purpose be included on the
  4128. same "printed page" as the copyright notice for easier
  4129. identification within third-party archives.
  4130. Copyright [yyyy] [name of copyright owner]
  4131. Licensed under the Apache License, Version 2.0 (the "License");
  4132. you may not use this file except in compliance with the License.
  4133. You may obtain a copy of the License at
  4134. http://www.apache.org/licenses/LICENSE-2.0
  4135. Unless required by applicable law or agreed to in writing, software
  4136. distributed under the License is distributed on an "AS IS" BASIS,
  4137. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  4138. See the License for the specific language governing permissions and
  4139. limitations under the License.
  4140. ****************************
  4141. java_src/android_libs/protobuf_nano/v2
  4142. ****************************
  4143. Copyright 2008, Google Inc.
  4144. All rights reserved.
  4145. Redistribution and use in source and binary forms, with or without
  4146. modification, are permitted provided that the following conditions are
  4147. met:
  4148. * Redistributions of source code must retain the above copyright
  4149. notice, this list of conditions and the following disclaimer.
  4150. * Redistributions in binary form must reproduce the above
  4151. copyright notice, this list of conditions and the following disclaimer
  4152. in the documentation and/or other materials provided with the
  4153. distribution.
  4154. * Neither the name of Google Inc. nor the names of its
  4155. contributors may be used to endorse or promote products derived from
  4156. this software without specific prior written permission.
  4157. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  4158. "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  4159. LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  4160. A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  4161. OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  4162. SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  4163. LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  4164. DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  4165. THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  4166. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  4167. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  4168. Code generated by the Protocol Buffer compiler is owned by the owner
  4169. of the input file used when generating it. This code is not
  4170. standalone and requires a support library to be linked with it. This
  4171. support library is itself covered by the above license.
  4172. ****************************
  4173. jpeg
  4174. ****************************
  4175. (extracted from src/README)
  4176. LEGAL ISSUES
  4177. ============
  4178. In plain English:
  4179. 1. We don't promise that this software works. (But if you find any bugs,
  4180. please let us know!)
  4181. 2. You can use this software for whatever you want. You don't have to pay us.
  4182. 3. You may not pretend that you wrote this software. If you use it in a
  4183. program, you must acknowledge somewhere in your documentation that
  4184. you've used the IJG code.
  4185. In legalese:
  4186. The authors make NO WARRANTY or representation, either express or implied,
  4187. with respect to this software, its quality, accuracy, merchantability, or
  4188. fitness for a particular purpose. This software is provided "AS IS", and you,
  4189. its user, assume the entire risk as to its quality and accuracy.
  4190. This software is copyright (C) 1991-1998, Thomas G. Lane.
  4191. All Rights Reserved except as specified below.
  4192. Permission is hereby granted to use, copy, modify, and distribute this
  4193. software (or portions thereof) for any purpose, without fee, subject to these
  4194. conditions:
  4195. (1) If any part of the source code for this software is distributed, then this
  4196. README file must be included, with this copyright and no-warranty notice
  4197. unaltered; and any additions, deletions, or changes to the original files
  4198. must be clearly indicated in accompanying documentation.
  4199. (2) If only executable code is distributed, then the accompanying
  4200. documentation must state that "this software is based in part on the work of
  4201. the Independent JPEG Group".
  4202. (3) Permission for use of this software is granted only if the user accepts
  4203. full responsibility for any undesirable consequences; the authors accept
  4204. NO LIABILITY for damages of any kind.
  4205. These conditions apply to any software derived from or based on the IJG code,
  4206. not just to the unmodified library. If you use our work, you ought to
  4207. acknowledge us.
  4208. Permission is NOT granted for the use of any IJG author's name or company name
  4209. in advertising or publicity relating to this software or products derived from
  4210. it. This software may be referred to only as "the Independent JPEG Group's
  4211. software".
  4212. We specifically permit and encourage the use of this software as the basis of
  4213. commercial products, provided that all warranty or liability claims are
  4214. assumed by the product vendor.
  4215. ansi2knr.c is included in this distribution by permission of L. Peter Deutsch,
  4216. sole proprietor of its copyright holder, Aladdin Enterprises of Menlo Park, CA.
  4217. ansi2knr.c is NOT covered by the above copyright and conditions, but instead
  4218. by the usual distribution terms of the Free Software Foundation; principally,
  4219. that you must include source code if you redistribute it. (See the file
  4220. ansi2knr.c for full details.) However, since ansi2knr.c is not needed as part
  4221. of any program generated from the IJG code, this does not limit you more than
  4222. the foregoing paragraphs do.
  4223. The Unix configuration script "configure" was produced with GNU Autoconf.
  4224. It is copyright by the Free Software Foundation but is freely distributable.
  4225. The same holds for its supporting scripts (config.guess, config.sub,
  4226. ltconfig, ltmain.sh). Another support script, install-sh, is copyright
  4227. by M.I.T. but is also freely distributable.
  4228. It appears that the arithmetic coding option of the JPEG spec is covered by
  4229. patents owned by IBM, AT&T, and Mitsubishi. Hence arithmetic coding cannot
  4230. legally be used without obtaining one or more licenses. For this reason,
  4231. support for arithmetic coding has been removed from the free JPEG software.
  4232. (Since arithmetic coding provides only a marginal gain over the unpatented
  4233. Huffman mode, it is unlikely that very many implementations will support it.)
  4234. So far as we are aware, there are no patent restrictions on the remaining
  4235. code.
  4236. The IJG distribution formerly included code to read and write GIF files.
  4237. To avoid entanglement with the Unisys LZW patent, GIF reading support has
  4238. been removed altogether, and the GIF writer has been simplified to produce
  4239. "uncompressed GIFs". This technique does not use the LZW algorithm; the
  4240. resulting GIF files are larger than usual, but are readable by all standard
  4241. GIF decoders.
  4242. We are required to state that
  4243. "The Graphics Interchange Format(c) is the Copyright property of
  4244. CompuServe Incorporated. GIF(sm) is a Service Mark property of
  4245. CompuServe Incorporated."
  4246. ****************************
  4247. libogg
  4248. ****************************
  4249. Copyright (c) 2002, Xiph.org Foundation
  4250. Redistribution and use in source and binary forms, with or without
  4251. modification, are permitted provided that the following conditions
  4252. are met:
  4253. - Redistributions of source code must retain the above copyright
  4254. notice, this list of conditions and the following disclaimer.
  4255. - Redistributions in binary form must reproduce the above copyright
  4256. notice, this list of conditions and the following disclaimer in the
  4257. documentation and/or other materials provided with the distribution.
  4258. - Neither the name of the Xiph.org Foundation nor the names of its
  4259. contributors may be used to endorse or promote products derived from
  4260. this software without specific prior written permission.
  4261. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  4262. ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  4263. LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  4264. A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION
  4265. OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  4266. SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  4267. LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  4268. DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  4269. THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  4270. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  4271. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  4272. ****************************
  4273. libunwind
  4274. ****************************
  4275. Copyright (c) 2002 Hewlett-Packard Co.
  4276. Permission is hereby granted, free of charge, to any person obtaining
  4277. a copy of this software and associated documentation files (the
  4278. "Software"), to deal in the Software without restriction, including
  4279. without limitation the rights to use, copy, modify, merge, publish,
  4280. distribute, sublicense, and/or sell copies of the Software, and to
  4281. permit persons to whom the Software is furnished to do so, subject to
  4282. the following conditions:
  4283. The above copyright notice and this permission notice shall be
  4284. included in all copies or substantial portions of the Software.
  4285. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  4286. EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  4287. MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  4288. NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
  4289. LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  4290. OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  4291. WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  4292. ****************************
  4293. libvorbis
  4294. ****************************
  4295. Copyright (c) 2002-2008 Xiph.org Foundation
  4296. Redistribution and use in source and binary forms, with or without
  4297. modification, are permitted provided that the following conditions
  4298. are met:
  4299. - Redistributions of source code must retain the above copyright
  4300. notice, this list of conditions and the following disclaimer.
  4301. - Redistributions in binary form must reproduce the above copyright
  4302. notice, this list of conditions and the following disclaimer in the
  4303. documentation and/or other materials provided with the distribution.
  4304. - Neither the name of the Xiph.org Foundation nor the names of its
  4305. contributors may be used to endorse or promote products derived from
  4306. this software without specific prior written permission.
  4307. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  4308. ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  4309. LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  4310. A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION
  4311. OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  4312. SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  4313. LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  4314. DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  4315. THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  4316. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  4317. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  4318. ****************************
  4319. libxcb
  4320. ****************************
  4321. Copyright (C) 2001-2006 Bart Massey, Jamey Sharp, and Josh Triplett.
  4322. All Rights Reserved.
  4323. Permission is hereby granted, free of charge, to any person
  4324. obtaining a copy of this software and associated
  4325. documentation files (the "Software"), to deal in the
  4326. Software without restriction, including without limitation
  4327. the rights to use, copy, modify, merge, publish, distribute,
  4328. sublicense, and/or sell copies of the Software, and to
  4329. permit persons to whom the Software is furnished to do so,
  4330. subject to the following conditions:
  4331. The above copyright notice and this permission notice shall
  4332. be included in all copies or substantial portions of the
  4333. Software.
  4334. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
  4335. KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  4336. WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
  4337. PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS
  4338. BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
  4339. IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  4340. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
  4341. OTHER DEALINGS IN THE SOFTWARE.
  4342. Except as contained in this notice, the names of the authors
  4343. or their institutions shall not be used in advertising or
  4344. otherwise to promote the sale, use or other dealings in this
  4345. Software without prior written authorization from the
  4346. authors.
  4347. ****************************
  4348. libxml
  4349. ****************************
  4350. Libxml2, an XML C Parser
  4351. Except where otherwise noted in the source code (e.g. the files hash.c,
  4352. list.c and the trio files, which are covered by a similar licence but
  4353. with different Copyright notices) all the files are:
  4354. Copyright (C) 1998-2012 Daniel Veillard. All Rights Reserved.
  4355. Permission is hereby granted, free of charge, to any person obtaining a copy
  4356. of this software and associated documentation files (the "Software"), to deal
  4357. in the Software without restriction, including without limitation the rights
  4358. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  4359. copies of the Software, and to permit persons to whom the Software is fur-
  4360. nished to do so, subject to the following conditions:
  4361. The above copyright notice and this permission notice shall be included in
  4362. all copies or substantial portions of the Software.
  4363. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  4364. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FIT-
  4365. NESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  4366. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  4367. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  4368. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  4369. THE SOFTWARE.
  4370. --------------------------------------------------------------------
  4371. Copyright (C) 2000,2012 Bjorn Reese and Daniel Veillard.
  4372. Permission to use, copy, modify, and distribute this software for any
  4373. purpose with or without fee is hereby granted, provided that the above
  4374. copyright notice and this permission notice appear in all copies.
  4375. THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
  4376. WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
  4377. MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE AUTHORS AND
  4378. CONTRIBUTORS ACCEPT NO RESPONSIBILITY IN ANY CONCEIVABLE MANNER.
  4379. Author: breese@users.sourceforge.net
  4380. (taken from hash.c)
  4381. --------------------------------------------------------------------
  4382. Copyright (C) 2000 Gary Pennington and Daniel Veillard.
  4383. Permission to use, copy, modify, and distribute this software for any
  4384. purpose with or without fee is hereby granted, provided that the above
  4385. copyright notice and this permission notice appear in all copies.
  4386. THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
  4387. WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
  4388. MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE AUTHORS AND
  4389. CONTRIBUTORS ACCEPT NO RESPONSIBILITY IN ANY CONCEIVABLE MANNER.
  4390. Author: Gary.Pennington@uk.sun.com
  4391. (taken from list.c)
  4392. --------------------------------------------------------------------
  4393. Copyright (C) 1998 Bjorn Reese and Daniel Stenberg.
  4394. Permission to use, copy, modify, and distribute this software for any
  4395. purpose with or without fee is hereby granted, provided that the above
  4396. copyright notice and this permission notice appear in all copies.
  4397. THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
  4398. WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
  4399. MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE AUTHORS AND
  4400. CONTRIBUTORS ACCEPT NO RESPONSIBILITY IN ANY CONCEIVABLE MANNER.
  4401. (taken from trio.h and trio.c)
  4402. --------------------------------------------------------------------
  4403. Copyright (C) 2001 Bjorn Reese <breese@users.sourceforge.net>
  4404. Permission to use, copy, modify, and distribute this software for any
  4405. purpose with or without fee is hereby granted, provided that the above
  4406. copyright notice and this permission notice appear in all copies.
  4407. THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
  4408. WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
  4409. MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE AUTHORS AND
  4410. CONTRIBUTORS ACCEPT NO RESPONSIBILITY IN ANY CONCEIVABLE MANNER.
  4411. (taken from triodef.h, trionan.h, and trionan.c)
  4412. --------------------------------------------------------------------
  4413. Copyright (C) 2000 Bjorn Reese and Daniel Stenberg.
  4414. Permission to use, copy, modify, and distribute this software for any
  4415. purpose with or without fee is hereby granted, provided that the above
  4416. copyright notice and this permission notice appear in all copies.
  4417. THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
  4418. WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
  4419. MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE AUTHORS AND
  4420. CONTRIBUTORS ACCEPT NO RESPONSIBILITY IN ANY CONCEIVABLE MANNER.
  4421. (taken from triop.h)
  4422. --------------------------------------------------------------------
  4423. Copyright (C) 2001 Bjorn Reese and Daniel Stenberg.
  4424. Permission to use, copy, modify, and distribute this software for any
  4425. purpose with or without fee is hereby granted, provided that the above
  4426. copyright notice and this permission notice appear in all copies.
  4427. THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
  4428. WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
  4429. MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE AUTHORS AND
  4430. CONTRIBUTORS ACCEPT NO RESPONSIBILITY IN ANY CONCEIVABLE MANNER.
  4431. (taken from triostr.h and triostr.c)
  4432. *************************************************************************
  4433. http://ctrio.sourceforge.net/
  4434. *************************************************************************
  4435. ****************************
  4436. lodepng
  4437. ****************************
  4438. LodePNG
  4439. Copyright (c) 2005-2013 Lode Vandevenne
  4440. This software is provided 'as-is', without any express or implied
  4441. warranty. In no event will the authors be held liable for any damages
  4442. arising from the use of this software.
  4443. Permission is granted to anyone to use this software for any purpose,
  4444. including commercial applications, and to alter it and redistribute it
  4445. freely, subject to the following restrictions:
  4446. 1. The origin of this software must not be misrepresented; you must not
  4447. claim that you wrote the original software. If you use this software
  4448. in a product, an acknowledgment in the product documentation would be
  4449. appreciated but is not required.
  4450. 2. Altered source versions must be plainly marked as such, and must not be
  4451. misrepresented as being the original software.
  4452. 3. This notice may not be removed or altered from any source
  4453. distribution.
  4454. ****************************
  4455. minizip
  4456. ****************************
  4457. zlib
  4458. (extracted from README, except for match.S)
  4459. Copyright notice:
  4460. (C) 1995-2004 Jean-loup Gailly and Mark Adler
  4461. This software is provided 'as-is', without any express or implied
  4462. warranty. In no event will the authors be held liable for any damages
  4463. arising from the use of this software.
  4464. Permission is granted to anyone to use this software for any purpose,
  4465. including commercial applications, and to alter it and redistribute it
  4466. freely, subject to the following restrictions:
  4467. 1. The origin of this software must not be misrepresented; you must not
  4468. claim that you wrote the original software. If you use this software
  4469. in a product, an acknowledgment in the product documentation would be
  4470. appreciated but is not required.
  4471. 2. Altered source versions must be plainly marked as such, and must not be
  4472. misrepresented as being the original software.
  4473. 3. This notice may not be removed or altered from any source distribution.
  4474. Jean-loup Gailly Mark Adler
  4475. jloup@gzip.org madler@alumni.caltech.edu
  4476. (extracted from match.S, for match.S only)
  4477. Copyright (C) 1998, 2007 Brian Raiter <breadbox@muppetlabs.com>
  4478. This software is provided 'as-is', without any express or implied
  4479. warranty. In no event will the author be held liable for any damages
  4480. arising from the use of this software.
  4481. Permission is granted to anyone to use this software for any purpose,
  4482. including commercial applications, and to alter it and redistribute it
  4483. freely, subject to the following restrictions:
  4484. 1. The origin of this software must not be misrepresented; you must not
  4485. claim that you wrote the original software. If you use this software
  4486. in a product, an acknowledgment in the product documentation would be
  4487. appreciated but is not required.
  4488. 2. Altered source versions must be plainly marked as such, and must not be
  4489. misrepresented as being the original software.
  4490. 3. This notice may not be removed or altered from any source distribution.
  4491. ****************************
  4492. mongoose
  4493. ****************************
  4494. Copyright (c) 2004-2013 Sergey Lyubka
  4495. Permission is hereby granted, free of charge, to any person obtaining a copy
  4496. of this software and associated documentation files (the "Software"), to deal
  4497. in the Software without restriction, including without limitation the rights
  4498. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  4499. copies of the Software, and to permit persons to whom the Software is
  4500. furnished to do so, subject to the following conditions:
  4501. The above copyright notice and this permission notice shall be included in
  4502. all copies or substantial portions of the Software.
  4503. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  4504. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  4505. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  4506. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  4507. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  4508. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  4509. THE SOFTWARE.
  4510. ****************************
  4511. objective_c/gtm_session_fetcher
  4512. ****************************
  4513. Apache License
  4514. Version 2.0, January 2004
  4515. http://www.apache.org/licenses/
  4516. TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
  4517. 1. Definitions.
  4518. "License" shall mean the terms and conditions for use, reproduction,
  4519. and distribution as defined by Sections 1 through 9 of this document.
  4520. "Licensor" shall mean the copyright owner or entity authorized by
  4521. the copyright owner that is granting the License.
  4522. "Legal Entity" shall mean the union of the acting entity and all
  4523. other entities that control, are controlled by, or are under common
  4524. control with that entity. For the purposes of this definition,
  4525. "control" means (i) the power, direct or indirect, to cause the
  4526. direction or management of such entity, whether by contract or
  4527. otherwise, or (ii) ownership of fifty percent (50%) or more of the
  4528. outstanding shares, or (iii) beneficial ownership of such entity.
  4529. "You" (or "Your") shall mean an individual or Legal Entity
  4530. exercising permissions granted by this License.
  4531. "Source" form shall mean the preferred form for making modifications,
  4532. including but not limited to software source code, documentation
  4533. source, and configuration files.
  4534. "Object" form shall mean any form resulting from mechanical
  4535. transformation or translation of a Source form, including but
  4536. not limited to compiled object code, generated documentation,
  4537. and conversions to other media types.
  4538. "Work" shall mean the work of authorship, whether in Source or
  4539. Object form, made available under the License, as indicated by a
  4540. copyright notice that is included in or attached to the work
  4541. (an example is provided in the Appendix below).
  4542. "Derivative Works" shall mean any work, whether in Source or Object
  4543. form, that is based on (or derived from) the Work and for which the
  4544. editorial revisions, annotations, elaborations, or other modifications
  4545. represent, as a whole, an original work of authorship. For the purposes
  4546. of this License, Derivative Works shall not include works that remain
  4547. separable from, or merely link (or bind by name) to the interfaces of,
  4548. the Work and Derivative Works thereof.
  4549. "Contribution" shall mean any work of authorship, including
  4550. the original version of the Work and any modifications or additions
  4551. to that Work or Derivative Works thereof, that is intentionally
  4552. submitted to Licensor for inclusion in the Work by the copyright owner
  4553. or by an individual or Legal Entity authorized to submit on behalf of
  4554. the copyright owner. For the purposes of this definition, "submitted"
  4555. means any form of electronic, verbal, or written communication sent
  4556. to the Licensor or its representatives, including but not limited to
  4557. communication on electronic mailing lists, source code control systems,
  4558. and issue tracking systems that are managed by, or on behalf of, the
  4559. Licensor for the purpose of discussing and improving the Work, but
  4560. excluding communication that is conspicuously marked or otherwise
  4561. designated in writing by the copyright owner as "Not a Contribution."
  4562. "Contributor" shall mean Licensor and any individual or Legal Entity
  4563. on behalf of whom a Contribution has been received by Licensor and
  4564. subsequently incorporated within the Work.
  4565. 2. Grant of Copyright License. Subject to the terms and conditions of
  4566. this License, each Contributor hereby grants to You a perpetual,
  4567. worldwide, non-exclusive, no-charge, royalty-free, irrevocable
  4568. copyright license to reproduce, prepare Derivative Works of,
  4569. publicly display, publicly perform, sublicense, and distribute the
  4570. Work and such Derivative Works in Source or Object form.
  4571. 3. Grant of Patent License. Subject to the terms and conditions of
  4572. this License, each Contributor hereby grants to You a perpetual,
  4573. worldwide, non-exclusive, no-charge, royalty-free, irrevocable
  4574. (except as stated in this section) patent license to make, have made,
  4575. use, offer to sell, sell, import, and otherwise transfer the Work,
  4576. where such license applies only to those patent claims licensable
  4577. by such Contributor that are necessarily infringed by their
  4578. Contribution(s) alone or by combination of their Contribution(s)
  4579. with the Work to which such Contribution(s) was submitted. If You
  4580. institute patent litigation against any entity (including a
  4581. cross-claim or counterclaim in a lawsuit) alleging that the Work
  4582. or a Contribution incorporated within the Work constitutes direct
  4583. or contributory patent infringement, then any patent licenses
  4584. granted to You under this License for that Work shall terminate
  4585. as of the date such litigation is filed.
  4586. 4. Redistribution. You may reproduce and distribute copies of the
  4587. Work or Derivative Works thereof in any medium, with or without
  4588. modifications, and in Source or Object form, provided that You
  4589. meet the following conditions:
  4590. (a) You must give any other recipients of the Work or
  4591. Derivative Works a copy of this License; and
  4592. (b) You must cause any modified files to carry prominent notices
  4593. stating that You changed the files; and
  4594. (c) You must retain, in the Source form of any Derivative Works
  4595. that You distribute, all copyright, patent, trademark, and
  4596. attribution notices from the Source form of the Work,
  4597. excluding those notices that do not pertain to any part of
  4598. the Derivative Works; and
  4599. (d) If the Work includes a "NOTICE" text file as part of its
  4600. distribution, then any Derivative Works that You distribute must
  4601. include a readable copy of the attribution notices contained
  4602. within such NOTICE file, excluding those notices that do not
  4603. pertain to any part of the Derivative Works, in at least one
  4604. of the following places: within a NOTICE text file distributed
  4605. as part of the Derivative Works; within the Source form or
  4606. documentation, if provided along with the Derivative Works; or,
  4607. within a display generated by the Derivative Works, if and
  4608. wherever such third-party notices normally appear. The contents
  4609. of the NOTICE file are for informational purposes only and
  4610. do not modify the License. You may add Your own attribution
  4611. notices within Derivative Works that You distribute, alongside
  4612. or as an addendum to the NOTICE text from the Work, provided
  4613. that such additional attribution notices cannot be construed
  4614. as modifying the License.
  4615. You may add Your own copyright statement to Your modifications and
  4616. may provide additional or different license terms and conditions
  4617. for use, reproduction, or distribution of Your modifications, or
  4618. for any such Derivative Works as a whole, provided Your use,
  4619. reproduction, and distribution of the Work otherwise complies with
  4620. the conditions stated in this License.
  4621. 5. Submission of Contributions. Unless You explicitly state otherwise,
  4622. any Contribution intentionally submitted for inclusion in the Work
  4623. by You to the Licensor shall be under the terms and conditions of
  4624. this License, without any additional terms or conditions.
  4625. Notwithstanding the above, nothing herein shall supersede or modify
  4626. the terms of any separate license agreement you may have executed
  4627. with Licensor regarding such Contributions.
  4628. 6. Trademarks. This License does not grant permission to use the trade
  4629. names, trademarks, service marks, or product names of the Licensor,
  4630. except as required for reasonable and customary use in describing the
  4631. origin of the Work and reproducing the content of the NOTICE file.
  4632. 7. Disclaimer of Warranty. Unless required by applicable law or
  4633. agreed to in writing, Licensor provides the Work (and each
  4634. Contributor provides its Contributions) on an "AS IS" BASIS,
  4635. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
  4636. implied, including, without limitation, any warranties or conditions
  4637. of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
  4638. PARTICULAR PURPOSE. You are solely responsible for determining the
  4639. appropriateness of using or redistributing the Work and assume any
  4640. risks associated with Your exercise of permissions under this License.
  4641. 8. Limitation of Liability. In no event and under no legal theory,
  4642. whether in tort (including negligence), contract, or otherwise,
  4643. unless required by applicable law (such as deliberate and grossly
  4644. negligent acts) or agreed to in writing, shall any Contributor be
  4645. liable to You for damages, including any direct, indirect, special,
  4646. incidental, or consequential damages of any character arising as a
  4647. result of this License or out of the use or inability to use the
  4648. Work (including but not limited to damages for loss of goodwill,
  4649. work stoppage, computer failure or malfunction, or any and all
  4650. other commercial damages or losses), even if such Contributor
  4651. has been advised of the possibility of such damages.
  4652. 9. Accepting Warranty or Additional Liability. While redistributing
  4653. the Work or Derivative Works thereof, You may choose to offer,
  4654. and charge a fee for, acceptance of support, warranty, indemnity,
  4655. or other liability obligations and/or rights consistent with this
  4656. License. However, in accepting such obligations, You may act only
  4657. on Your own behalf and on Your sole responsibility, not on behalf
  4658. of any other Contributor, and only if You agree to indemnify,
  4659. defend, and hold each Contributor harmless for any liability
  4660. incurred by, or claims asserted against, such Contributor by reason
  4661. of your accepting any such warranty or additional liability.
  4662. END OF TERMS AND CONDITIONS
  4663. APPENDIX: How to apply the Apache License to your work.
  4664. To apply the Apache License to your work, attach the following
  4665. boilerplate notice, with the fields enclosed by brackets "[]"
  4666. replaced with your own identifying information. (Don't include
  4667. the brackets!) The text should be enclosed in the appropriate
  4668. comment syntax for the file format. We also recommend that a
  4669. file or class name and description of purpose be included on the
  4670. same "printed page" as the copyright notice for easier
  4671. identification within third-party archives.
  4672. Copyright [yyyy] [name of copyright owner]
  4673. Licensed under the Apache License, Version 2.0 (the "License");
  4674. you may not use this file except in compliance with the License.
  4675. You may obtain a copy of the License at
  4676. http://www.apache.org/licenses/LICENSE-2.0
  4677. Unless required by applicable law or agreed to in writing, software
  4678. distributed under the License is distributed on an "AS IS" BASIS,
  4679. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  4680. See the License for the specific language governing permissions and
  4681. limitations under the License.
  4682. ****************************
  4683. openctm
  4684. ****************************
  4685. Copyright (c) 2009-2010 Marcus Geelnard
  4686. This software is provided 'as-is', without any express or implied
  4687. warranty. In no event will the authors be held liable for any damages
  4688. arising from the use of this software.
  4689. Permission is granted to anyone to use this software for any purpose,
  4690. including commercial applications, and to alter it and redistribute it
  4691. freely, subject to the following restrictions:
  4692. 1. The origin of this software must not be misrepresented; you must not
  4693. claim that you wrote the original software. If you use this software
  4694. in a product, an acknowledgment in the product documentation would be
  4695. appreciated but is not required.
  4696. 2. Altered source versions must be plainly marked as such, and must not
  4697. be misrepresented as being the original software.
  4698. 3. This notice may not be removed or altered from any source
  4699. distribution.
  4700. ****************************
  4701. OpenCV
  4702. ****************************
  4703. IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING.
  4704. By downloading, copying, installing or using the software you agree to this license.
  4705. If you do not agree to this license, do not download, install,
  4706. copy or use the software.
  4707. Intel License Agreement
  4708. For Open Source Computer Vision Library
  4709. Copyright (C) 2000, 2001, Intel Corporation, all rights reserved.
  4710. Copyright (C) 2013, OpenCV Foundation, all rights reserved.
  4711. Third party copyrights are property of their respective owners.
  4712. Redistribution and use in source and binary forms, with or without modification,
  4713. are permitted provided that the following conditions are met:
  4714. * Redistribution's of source code must retain the above copyright notice,
  4715. this list of conditions and the following disclaimer.
  4716. * Redistribution's in binary form must reproduce the above copyright notice,
  4717. this list of conditions and the following disclaimer in the documentation
  4718. and/or other materials provided with the distribution.
  4719. * The name of Intel Corporation may not be used to endorse or promote products
  4720. derived from this software without specific prior written permission.
  4721. This software is provided by the copyright holders and contributors "as is" and
  4722. any express or implied warranties, including, but not limited to, the implied
  4723. warranties of merchantability and fitness for a particular purpose are disclaimed.
  4724. In no event shall the Intel Corporation or contributors be liable for any direct,
  4725. indirect, incidental, special, exemplary, or consequential damages
  4726. (including, but not limited to, procurement of substitute goods or services;
  4727. loss of use, data, or profits; or business interruption) however caused
  4728. and on any theory of liability, whether in contract, strict liability,
  4729. or tort (including negligence or otherwise) arising in any way out of
  4730. the use of this software, even if advised of the possibility of such damage.
  4731. ****************************
  4732. openssl
  4733. ****************************
  4734. BoringSSL is a fork of OpenSSL. As such, large parts of it fall under OpenSSL
  4735. licensing. Files that are completely new have a Google copyright and an ISC
  4736. license. This license is reproduced at the bottom of this file.
  4737. Contributors to BoringSSL are required to follow the CLA rules for Chromium:
  4738. https://cla.developers.google.com/clas
  4739. Some files from Intel are under yet another license, which is also included
  4740. underneath.
  4741. The OpenSSL toolkit stays under a dual license, i.e. both the conditions of the
  4742. OpenSSL License and the original SSLeay license apply to the toolkit. See below
  4743. for the actual license texts. Actually both licenses are BSD-style Open Source
  4744. licenses. In case of any license issues related to OpenSSL please contact
  4745. openssl-core@openssl.org.
  4746. OpenSSL License
  4747. ---------------
  4748. /* ====================================================================
  4749. * Copyright (c) 1998-2011 The OpenSSL Project. All rights reserved.
  4750. *
  4751. * Redistribution and use in source and binary forms, with or without
  4752. * modification, are permitted provided that the following conditions
  4753. * are met:
  4754. *
  4755. * 1. Redistributions of source code must retain the above copyright
  4756. * notice, this list of conditions and the following disclaimer.
  4757. *
  4758. * 2. Redistributions in binary form must reproduce the above copyright
  4759. * notice, this list of conditions and the following disclaimer in
  4760. * the documentation and/or other materials provided with the
  4761. * distribution.
  4762. *
  4763. * 3. All advertising materials mentioning features or use of this
  4764. * software must display the following acknowledgment:
  4765. * "This product includes software developed by the OpenSSL Project
  4766. * for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
  4767. *
  4768. * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
  4769. * endorse or promote products derived from this software without
  4770. * prior written permission. For written permission, please contact
  4771. * openssl-core@openssl.org.
  4772. *
  4773. * 5. Products derived from this software may not be called "OpenSSL"
  4774. * nor may "OpenSSL" appear in their names without prior written
  4775. * permission of the OpenSSL Project.
  4776. *
  4777. * 6. Redistributions of any form whatsoever must retain the following
  4778. * acknowledgment:
  4779. * "This product includes software developed by the OpenSSL Project
  4780. * for use in the OpenSSL Toolkit (http://www.openssl.org/)"
  4781. *
  4782. * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
  4783. * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  4784. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  4785. * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
  4786. * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  4787. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  4788. * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  4789. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  4790. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  4791. * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  4792. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
  4793. * OF THE POSSIBILITY OF SUCH DAMAGE.
  4794. * ====================================================================
  4795. *
  4796. * This product includes cryptographic software written by Eric Young
  4797. * (eay@cryptsoft.com). This product includes software written by Tim
  4798. * Hudson (tjh@cryptsoft.com).
  4799. *
  4800. */
  4801. Original SSLeay License
  4802. -----------------------
  4803. /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
  4804. * All rights reserved.
  4805. *
  4806. * This package is an SSL implementation written
  4807. * by Eric Young (eay@cryptsoft.com).
  4808. * The implementation was written so as to conform with Netscapes SSL.
  4809. *
  4810. * This library is free for commercial and non-commercial use as long as
  4811. * the following conditions are aheared to. The following conditions
  4812. * apply to all code found in this distribution, be it the RC4, RSA,
  4813. * lhash, DES, etc., code; not just the SSL code. The SSL documentation
  4814. * included with this distribution is covered by the same copyright terms
  4815. * except that the holder is Tim Hudson (tjh@cryptsoft.com).
  4816. *
  4817. * Copyright remains Eric Young's, and as such any Copyright notices in
  4818. * the code are not to be removed.
  4819. * If this package is used in a product, Eric Young should be given attribution
  4820. * as the author of the parts of the library used.
  4821. * This can be in the form of a textual message at program startup or
  4822. * in documentation (online or textual) provided with the package.
  4823. *
  4824. * Redistribution and use in source and binary forms, with or without
  4825. * modification, are permitted provided that the following conditions
  4826. * are met:
  4827. * 1. Redistributions of source code must retain the copyright
  4828. * notice, this list of conditions and the following disclaimer.
  4829. * 2. Redistributions in binary form must reproduce the above copyright
  4830. * notice, this list of conditions and the following disclaimer in the
  4831. * documentation and/or other materials provided with the distribution.
  4832. * 3. All advertising materials mentioning features or use of this software
  4833. * must display the following acknowledgement:
  4834. * "This product includes cryptographic software written by
  4835. * Eric Young (eay@cryptsoft.com)"
  4836. * The word 'cryptographic' can be left out if the rouines from the library
  4837. * being used are not cryptographic related :-).
  4838. * 4. If you include any Windows specific code (or a derivative thereof) from
  4839. * the apps directory (application code) you must include an acknowledgement:
  4840. * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
  4841. *
  4842. * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
  4843. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  4844. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  4845. * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
  4846. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  4847. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  4848. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  4849. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  4850. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  4851. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  4852. * SUCH DAMAGE.
  4853. *
  4854. * The licence and distribution terms for any publically available version or
  4855. * derivative of this code cannot be changed. i.e. this code cannot simply be
  4856. * copied and put under another distribution licence
  4857. * [including the GNU Public Licence.]
  4858. */
  4859. ISC license used for completely new code in BoringSSL:
  4860. /* Copyright (c) 2015, Google Inc.
  4861. *
  4862. * Permission to use, copy, modify, and/or distribute this software for any
  4863. * purpose with or without fee is hereby granted, provided that the above
  4864. * copyright notice and this permission notice appear in all copies.
  4865. *
  4866. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
  4867. * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
  4868. * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
  4869. * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  4870. * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
  4871. * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
  4872. * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */
  4873. Some files from Intel carry the following license:
  4874. # Copyright (c) 2012, Intel Corporation
  4875. #
  4876. # All rights reserved.
  4877. #
  4878. # Redistribution and use in source and binary forms, with or without
  4879. # modification, are permitted provided that the following conditions are
  4880. # met:
  4881. #
  4882. # * Redistributions of source code must retain the above copyright
  4883. # notice, this list of conditions and the following disclaimer.
  4884. #
  4885. # * Redistributions in binary form must reproduce the above copyright
  4886. # notice, this list of conditions and the following disclaimer in the
  4887. # documentation and/or other materials provided with the
  4888. # distribution.
  4889. #
  4890. # * Neither the name of the Intel Corporation nor the names of its
  4891. # contributors may be used to endorse or promote products derived from
  4892. # this software without specific prior written permission.
  4893. #
  4894. #
  4895. # THIS SOFTWARE IS PROVIDED BY INTEL CORPORATION ""AS IS"" AND ANY
  4896. # EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  4897. # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  4898. # PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL INTEL CORPORATION OR
  4899. # CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
  4900. # EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  4901. # PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
  4902. # PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
  4903. # LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
  4904. # NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  4905. # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  4906. ****************************
  4907. openssl/boringssl
  4908. ****************************
  4909. BoringSSL is a fork of OpenSSL. As such, large parts of it fall under OpenSSL
  4910. licensing. Files that are completely new have a Google copyright and an ISC
  4911. license. This license is reproduced at the bottom of this file.
  4912. Contributors to BoringSSL are required to follow the CLA rules for Chromium:
  4913. https://cla.developers.google.com/clas
  4914. Some files from Intel are under yet another license, which is also included
  4915. underneath.
  4916. The OpenSSL toolkit stays under a dual license, i.e. both the conditions of the
  4917. OpenSSL License and the original SSLeay license apply to the toolkit. See below
  4918. for the actual license texts. Actually both licenses are BSD-style Open Source
  4919. licenses. In case of any license issues related to OpenSSL please contact
  4920. openssl-core@openssl.org.
  4921. OpenSSL License
  4922. ---------------
  4923. /* ====================================================================
  4924. * Copyright (c) 1998-2011 The OpenSSL Project. All rights reserved.
  4925. *
  4926. * Redistribution and use in source and binary forms, with or without
  4927. * modification, are permitted provided that the following conditions
  4928. * are met:
  4929. *
  4930. * 1. Redistributions of source code must retain the above copyright
  4931. * notice, this list of conditions and the following disclaimer.
  4932. *
  4933. * 2. Redistributions in binary form must reproduce the above copyright
  4934. * notice, this list of conditions and the following disclaimer in
  4935. * the documentation and/or other materials provided with the
  4936. * distribution.
  4937. *
  4938. * 3. All advertising materials mentioning features or use of this
  4939. * software must display the following acknowledgment:
  4940. * "This product includes software developed by the OpenSSL Project
  4941. * for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
  4942. *
  4943. * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
  4944. * endorse or promote products derived from this software without
  4945. * prior written permission. For written permission, please contact
  4946. * openssl-core@openssl.org.
  4947. *
  4948. * 5. Products derived from this software may not be called "OpenSSL"
  4949. * nor may "OpenSSL" appear in their names without prior written
  4950. * permission of the OpenSSL Project.
  4951. *
  4952. * 6. Redistributions of any form whatsoever must retain the following
  4953. * acknowledgment:
  4954. * "This product includes software developed by the OpenSSL Project
  4955. * for use in the OpenSSL Toolkit (http://www.openssl.org/)"
  4956. *
  4957. * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
  4958. * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  4959. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  4960. * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
  4961. * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  4962. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  4963. * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  4964. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  4965. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  4966. * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  4967. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
  4968. * OF THE POSSIBILITY OF SUCH DAMAGE.
  4969. * ====================================================================
  4970. *
  4971. * This product includes cryptographic software written by Eric Young
  4972. * (eay@cryptsoft.com). This product includes software written by Tim
  4973. * Hudson (tjh@cryptsoft.com).
  4974. *
  4975. */
  4976. Original SSLeay License
  4977. -----------------------
  4978. /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
  4979. * All rights reserved.
  4980. *
  4981. * This package is an SSL implementation written
  4982. * by Eric Young (eay@cryptsoft.com).
  4983. * The implementation was written so as to conform with Netscapes SSL.
  4984. *
  4985. * This library is free for commercial and non-commercial use as long as
  4986. * the following conditions are aheared to. The following conditions
  4987. * apply to all code found in this distribution, be it the RC4, RSA,
  4988. * lhash, DES, etc., code; not just the SSL code. The SSL documentation
  4989. * included with this distribution is covered by the same copyright terms
  4990. * except that the holder is Tim Hudson (tjh@cryptsoft.com).
  4991. *
  4992. * Copyright remains Eric Young's, and as such any Copyright notices in
  4993. * the code are not to be removed.
  4994. * If this package is used in a product, Eric Young should be given attribution
  4995. * as the author of the parts of the library used.
  4996. * This can be in the form of a textual message at program startup or
  4997. * in documentation (online or textual) provided with the package.
  4998. *
  4999. * Redistribution and use in source and binary forms, with or without
  5000. * modification, are permitted provided that the following conditions
  5001. * are met:
  5002. * 1. Redistributions of source code must retain the copyright
  5003. * notice, this list of conditions and the following disclaimer.
  5004. * 2. Redistributions in binary form must reproduce the above copyright
  5005. * notice, this list of conditions and the following disclaimer in the
  5006. * documentation and/or other materials provided with the distribution.
  5007. * 3. All advertising materials mentioning features or use of this software
  5008. * must display the following acknowledgement:
  5009. * "This product includes cryptographic software written by
  5010. * Eric Young (eay@cryptsoft.com)"
  5011. * The word 'cryptographic' can be left out if the rouines from the library
  5012. * being used are not cryptographic related :-).
  5013. * 4. If you include any Windows specific code (or a derivative thereof) from
  5014. * the apps directory (application code) you must include an acknowledgement:
  5015. * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
  5016. *
  5017. * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
  5018. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  5019. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  5020. * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
  5021. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  5022. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  5023. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  5024. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  5025. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  5026. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  5027. * SUCH DAMAGE.
  5028. *
  5029. * The licence and distribution terms for any publically available version or
  5030. * derivative of this code cannot be changed. i.e. this code cannot simply be
  5031. * copied and put under another distribution licence
  5032. * [including the GNU Public Licence.]
  5033. */
  5034. ISC license used for completely new code in BoringSSL:
  5035. /* Copyright (c) 2015, Google Inc.
  5036. *
  5037. * Permission to use, copy, modify, and/or distribute this software for any
  5038. * purpose with or without fee is hereby granted, provided that the above
  5039. * copyright notice and this permission notice appear in all copies.
  5040. *
  5041. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
  5042. * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
  5043. * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
  5044. * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  5045. * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
  5046. * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
  5047. * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */
  5048. Some files from Intel carry the following license:
  5049. # Copyright (c) 2012, Intel Corporation
  5050. #
  5051. # All rights reserved.
  5052. #
  5053. # Redistribution and use in source and binary forms, with or without
  5054. # modification, are permitted provided that the following conditions are
  5055. # met:
  5056. #
  5057. # * Redistributions of source code must retain the above copyright
  5058. # notice, this list of conditions and the following disclaimer.
  5059. #
  5060. # * Redistributions in binary form must reproduce the above copyright
  5061. # notice, this list of conditions and the following disclaimer in the
  5062. # documentation and/or other materials provided with the
  5063. # distribution.
  5064. #
  5065. # * Neither the name of the Intel Corporation nor the names of its
  5066. # contributors may be used to endorse or promote products derived from
  5067. # this software without specific prior written permission.
  5068. #
  5069. #
  5070. # THIS SOFTWARE IS PROVIDED BY INTEL CORPORATION ""AS IS"" AND ANY
  5071. # EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  5072. # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  5073. # PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL INTEL CORPORATION OR
  5074. # CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
  5075. # EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  5076. # PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
  5077. # PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
  5078. # LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
  5079. # NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  5080. # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  5081. ****************************
  5082. pcre
  5083. ****************************
  5084. PCRE LICENCE
  5085. ------------
  5086. PCRE is a library of functions to support regular expressions whose syntax
  5087. and semantics are as close as possible to those of the Perl 5 language.
  5088. Release 8 of PCRE is distributed under the terms of the "BSD" licence, as
  5089. specified below. The documentation for PCRE, supplied in the "doc"
  5090. directory, is distributed under the same terms as the software itself. The data
  5091. in the testdata directory is not copyrighted and is in the public domain.
  5092. The basic library functions are written in C and are freestanding. Also
  5093. included in the distribution is a set of C++ wrapper functions, and a
  5094. just-in-time compiler that can be used to optimize pattern matching. These
  5095. are both optional features that can be omitted when the library is built.
  5096. THE BASIC LIBRARY FUNCTIONS
  5097. ---------------------------
  5098. Written by: Philip Hazel
  5099. Email local part: ph10
  5100. Email domain: cam.ac.uk
  5101. University of Cambridge Computing Service,
  5102. Cambridge, England.
  5103. Copyright (c) 1997-2015 University of Cambridge
  5104. All rights reserved.
  5105. PCRE JUST-IN-TIME COMPILATION SUPPORT
  5106. -------------------------------------
  5107. Written by: Zoltan Herczeg
  5108. Email local part: hzmester
  5109. Emain domain: freemail.hu
  5110. Copyright(c) 2010-2015 Zoltan Herczeg
  5111. All rights reserved.
  5112. STACK-LESS JUST-IN-TIME COMPILER
  5113. --------------------------------
  5114. Written by: Zoltan Herczeg
  5115. Email local part: hzmester
  5116. Emain domain: freemail.hu
  5117. Copyright(c) 2009-2015 Zoltan Herczeg
  5118. All rights reserved.
  5119. THE C++ WRAPPER FUNCTIONS
  5120. -------------------------
  5121. Contributed by: Google Inc.
  5122. Copyright (c) 2007-2012, Google Inc.
  5123. All rights reserved.
  5124. THE "BSD" LICENCE
  5125. -----------------
  5126. Redistribution and use in source and binary forms, with or without
  5127. modification, are permitted provided that the following conditions are met:
  5128. * Redistributions of source code must retain the above copyright notice,
  5129. this list of conditions and the following disclaimer.
  5130. * Redistributions in binary form must reproduce the above copyright
  5131. notice, this list of conditions and the following disclaimer in the
  5132. documentation and/or other materials provided with the distribution.
  5133. * Neither the name of the University of Cambridge nor the name of Google
  5134. Inc. nor the names of their contributors may be used to endorse or
  5135. promote products derived from this software without specific prior
  5136. written permission.
  5137. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  5138. AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  5139. IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  5140. ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
  5141. LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  5142. CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  5143. SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  5144. INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  5145. CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  5146. ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  5147. POSSIBILITY OF SUCH DAMAGE.
  5148. End
  5149. ****************************
  5150. pffft
  5151. ****************************
  5152. Copyright (c) 2013 Julien Pommier ( pommier@modartt.com )
  5153. Based on original fortran 77 code from FFTPACKv4 from NETLIB,
  5154. authored by Dr Paul Swarztrauber of NCAR, in 1985.
  5155. As confirmed by the NCAR fftpack software curators, the following
  5156. FFTPACKv5 license applies to FFTPACKv4 sources. My changes are
  5157. released under the same terms.
  5158. FFTPACK license:
  5159. http://www.cisl.ucar.edu/css/software/fftpack5/ftpk.html
  5160. Copyright (c) 2004 the University Corporation for Atmospheric
  5161. Research ("UCAR"). All rights reserved. Developed by NCAR's
  5162. Computational and Information Systems Laboratory, UCAR,
  5163. www.cisl.ucar.edu.
  5164. Redistribution and use of the Software in source and binary forms,
  5165. with or without modification, is permitted provided that the
  5166. following conditions are met:
  5167. - Neither the names of NCAR's Computational and Information Systems
  5168. Laboratory, the University Corporation for Atmospheric Research,
  5169. nor the names of its sponsors or contributors may be used to
  5170. endorse or promote products derived from this Software without
  5171. specific prior written permission.
  5172. - Redistributions of source code must retain the above copyright
  5173. notices, this list of conditions, and the disclaimer below.
  5174. - Redistributions in binary form must reproduce the above copyright
  5175. notice, this list of conditions, and the disclaimer below in the
  5176. documentation and/or other materials provided with the
  5177. distribution.
  5178. THIS SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  5179. EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO THE WARRANTIES OF
  5180. MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  5181. NONINFRINGEMENT. IN NO EVENT SHALL THE CONTRIBUTORS OR COPYRIGHT
  5182. HOLDERS BE LIABLE FOR ANY CLAIM, INDIRECT, INCIDENTAL, SPECIAL,
  5183. EXEMPLARY, OR CONSEQUENTIAL DAMAGES OR OTHER LIABILITY, WHETHER IN AN
  5184. ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  5185. CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS WITH THE
  5186. SOFTWARE.
  5187. ****************************
  5188. png
  5189. ****************************
  5190. libpng
  5191. This copy of the libpng notices is provided for your convenience. In case of
  5192. any discrepancy between this copy and the notices in the file png.h that is
  5193. included in the libpng distribution, the latter shall prevail.
  5194. COPYRIGHT NOTICE, DISCLAIMER, and LICENSE:
  5195. If you modify libpng you may insert additional notices immediately following
  5196. this sentence.
  5197. libpng versions 1.2.6, August 15, 2004, through 1.2.27, April 29, 2008, are
  5198. Copyright (c) 2004, 2006-2008 Glenn Randers-Pehrson, and are
  5199. distributed according to the same disclaimer and license as libpng-1.2.5
  5200. with the following individual added to the list of Contributing Authors
  5201. Cosmin Truta
  5202. libpng versions 1.0.7, July 1, 2000, through 1.2.5 - October 3, 2002, are
  5203. Copyright (c) 2000-2002 Glenn Randers-Pehrson, and are
  5204. distributed according to the same disclaimer and license as libpng-1.0.6
  5205. with the following individuals added to the list of Contributing Authors
  5206. Simon-Pierre Cadieux
  5207. Eric S. Raymond
  5208. Gilles Vollant
  5209. and with the following additions to the disclaimer:
  5210. There is no warranty against interference with your enjoyment of the
  5211. library or against infringement. There is no warranty that our
  5212. efforts or the library will fulfill any of your particular purposes
  5213. or needs. This library is provided with all faults, and the entire
  5214. risk of satisfactory quality, performance, accuracy, and effort is with
  5215. the user.
  5216. libpng versions 0.97, January 1998, through 1.0.6, March 20, 2000, are
  5217. Copyright (c) 1998, 1999 Glenn Randers-Pehrson, and are
  5218. distributed according to the same disclaimer and license as libpng-0.96,
  5219. with the following individuals added to the list of Contributing Authors:
  5220. Tom Lane
  5221. Glenn Randers-Pehrson
  5222. Willem van Schaik
  5223. libpng versions 0.89, June 1996, through 0.96, May 1997, are
  5224. Copyright (c) 1996, 1997 Andreas Dilger
  5225. Distributed according to the same disclaimer and license as libpng-0.88,
  5226. with the following individuals added to the list of Contributing Authors:
  5227. John Bowler
  5228. Kevin Bracey
  5229. Sam Bushell
  5230. Magnus Holmgren
  5231. Greg Roelofs
  5232. Tom Tanner
  5233. libpng versions 0.5, May 1995, through 0.88, January 1996, are
  5234. Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.
  5235. For the purposes of this copyright and license, "Contributing Authors"
  5236. is defined as the following set of individuals:
  5237. Andreas Dilger
  5238. Dave Martindale
  5239. Guy Eric Schalnat
  5240. Paul Schmidt
  5241. Tim Wegner
  5242. The PNG Reference Library is supplied "AS IS". The Contributing Authors
  5243. and Group 42, Inc. disclaim all warranties, expressed or implied,
  5244. including, without limitation, the warranties of merchantability and of
  5245. fitness for any purpose. The Contributing Authors and Group 42, Inc.
  5246. assume no liability for direct, indirect, incidental, special, exemplary,
  5247. or consequential damages, which may result from the use of the PNG
  5248. Reference Library, even if advised of the possibility of such damage.
  5249. Permission is hereby granted to use, copy, modify, and distribute this
  5250. source code, or portions hereof, for any purpose, without fee, subject
  5251. to the following restrictions:
  5252. 1. The origin of this source code must not be misrepresented.
  5253. 2. Altered versions must be plainly marked as such and must not
  5254. be misrepresented as being the original source.
  5255. 3. This Copyright notice may not be removed or altered from any
  5256. source or altered source distribution.
  5257. The Contributing Authors and Group 42, Inc. specifically permit, without
  5258. fee, and encourage the use of this source code as a component to
  5259. supporting the PNG file format in commercial products. If you use this
  5260. source code in a product, acknowledgment is not required but would be
  5261. appreciated.
  5262. A "png_get_copyright" function is available, for convenient use in "about"
  5263. boxes and the like:
  5264. printf("%s",png_get_copyright(NULL));
  5265. Also, the PNG logo (in PNG format, of course) is supplied in the
  5266. files "pngbar.png" and "pngbar.jpg (88x31) and "pngnow.png" (98x31).
  5267. Libpng is OSI Certified Open Source Software. OSI Certified Open Source is a
  5268. certification mark of the Open Source Initiative.
  5269. Glenn Randers-Pehrson
  5270. glennrp at users.sourceforge.net
  5271. April 29, 2008
  5272. ****************************
  5273. protobuf
  5274. ****************************
  5275. Copyright 2008, Google Inc.
  5276. All rights reserved.
  5277. Redistribution and use in source and binary forms, with or without
  5278. modification, are permitted provided that the following conditions are
  5279. met:
  5280. * Redistributions of source code must retain the above copyright
  5281. notice, this list of conditions and the following disclaimer.
  5282. * Redistributions in binary form must reproduce the above
  5283. copyright notice, this list of conditions and the following disclaimer
  5284. in the documentation and/or other materials provided with the
  5285. distribution.
  5286. * Neither the name of Google Inc. nor the names of its
  5287. contributors may be used to endorse or promote products derived from
  5288. this software without specific prior written permission.
  5289. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  5290. "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  5291. LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  5292. A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  5293. OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  5294. SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  5295. LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  5296. DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  5297. THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  5298. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  5299. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  5300. Code generated by the Protocol Buffer compiler is owned by the owner
  5301. of the input file used when generating it. This code is not
  5302. standalone and requires a support library to be linked with it. This
  5303. support library is itself covered by the above license.
  5304. ****************************
  5305. re2
  5306. ****************************
  5307. // Copyright (c) 2009 The RE2 Authors. All rights reserved.
  5308. //
  5309. // Redistribution and use in source and binary forms, with or without
  5310. // modification, are permitted provided that the following conditions are
  5311. // met:
  5312. //
  5313. // * Redistributions of source code must retain the above copyright
  5314. // notice, this list of conditions and the following disclaimer.
  5315. // * Redistributions in binary form must reproduce the above
  5316. // copyright notice, this list of conditions and the following disclaimer
  5317. // in the documentation and/or other materials provided with the
  5318. // distribution.
  5319. // * Neither the name of Google Inc. nor the names of its
  5320. // contributors may be used to endorse or promote products derived from
  5321. // this software without specific prior written permission.
  5322. //
  5323. // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  5324. // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  5325. // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  5326. // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  5327. // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  5328. // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  5329. // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  5330. // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  5331. // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  5332. // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  5333. // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  5334. ****************************
  5335. stblib
  5336. ****************************
  5337. License for STBLIB - A collection of public-domain single-file C/C++
  5338. libraries, primarily aimed at game developers.
  5339. The compilation and test files are licensed under the MIT license, but the
  5340. single-file libraries themselves are in the public domain (free for use and
  5341. modification for any purpose without legal friction).
  5342. The MIT License (MIT)
  5343. Permission is hereby granted, free of charge, to any person obtaining a copy
  5344. of this software and associated documentation files (the "Software"), to deal
  5345. in the Software without restriction, including without limitation the rights
  5346. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  5347. copies of the Software, and to permit persons to whom the Software is
  5348. furnished to do so, subject to the following conditions:
  5349. The above copyright notice and this permission notice shall be included in
  5350. all copies or substantial portions of the Software.
  5351. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  5352. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  5353. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  5354. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  5355. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  5356. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  5357. THE SOFTWARE.
  5358. ****************************
  5359. stl
  5360. ****************************
  5361. SGI STL
  5362. The STL portion of GNU libstdc++ that is used with gcc3 and gcc4 is licensed
  5363. under the GPL, with the following exception:
  5364. # As a special exception, you may use this file as part of a free software
  5365. # library without restriction. Specifically, if other files instantiate
  5366. # templates or use macros or inline functions from this file, or you compile
  5367. # this file and link it with other files to produce an executable, this
  5368. # file does not by itself cause the resulting executable to be covered by
  5369. # the GNU General Public License. This exception does not however
  5370. # invalidate any other reasons why the executable file might be covered by
  5371. # the GNU General Public License.
  5372. ****************************
  5373. tinyxml
  5374. ****************************
  5375. TinyXml is released under the zlib license:
  5376. This software is provided 'as-is', without any express or implied
  5377. warranty. In no event will the authors be held liable for any
  5378. damages arising from the use of this software.
  5379. Permission is granted to anyone to use this software for any
  5380. purpose, including commercial applications, and to alter it and
  5381. redistribute it freely, subject to the following restrictions:
  5382. 1. The origin of this software must not be misrepresented; you must
  5383. not claim that you wrote the original software. If you use this
  5384. software in a product, an acknowledgment in the product documentation
  5385. would be appreciated but is not required.
  5386. 2. Altered source versions must be plainly marked as such, and
  5387. must not be misrepresented as being the original software.
  5388. 3. This notice may not be removed or altered from any source
  5389. distribution.
  5390. ****************************
  5391. tz
  5392. ****************************
  5393. With a few exceptions, all files in the tz code and data (including
  5394. this one) are in the public domain. The exceptions are tzcode's
  5395. date.c, newstrftime.3, and strftime.c, which contain material derived
  5396. from BSD and which use the BSD 3-clause license.
  5397. ****************************
  5398. utf
  5399. ****************************
  5400. UTF-8 Library
  5401. The authors of this software are Rob Pike and Ken Thompson.
  5402. Copyright (c) 1998-2002 by Lucent Technologies.
  5403. Permission to use, copy, modify, and distribute this software for any
  5404. purpose without fee is hereby granted, provided that this entire notice
  5405. is included in all copies of any software which is or includes a copy
  5406. or modification of this software and in all copies of the supporting
  5407. documentation for such software.
  5408. THIS SOFTWARE IS BEING PROVIDED "AS IS", WITHOUT ANY EXPRESS OR IMPLIED
  5409. WARRANTY. IN PARTICULAR, NEITHER THE AUTHORS NOR LUCENT TECHNOLOGIES MAKE ANY
  5410. REPRESENTATION OR WARRANTY OF ANY KIND CONCERNING THE MERCHANTABILITY
  5411. OF THIS SOFTWARE OR ITS FITNESS FOR ANY PARTICULAR PURPOSE.
  5412. ****************************
  5413. xmpmeta
  5414. ****************************
  5415. xmpmeta. A fast XMP metadata parsing and writing library.
  5416. Copyright 2016 Google Inc. All rights reserved.
  5417. Redistribution and use in source and binary forms, with or without
  5418. modification, are permitted provided that the following conditions are met:
  5419. * Redistributions of source code must retain the above copyright notice,
  5420. this list of conditions and the following disclaimer.
  5421. * Redistributions in binary form must reproduce the above copyright notice,
  5422. this list of conditions and the following disclaimer in the documentation
  5423. and/or other materials provided with the distribution.
  5424. * Neither the name of Google Inc. nor the names of its contributors may be
  5425. used to endorse or promote products derived from this software without
  5426. specific prior written permission.
  5427. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  5428. AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  5429. IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  5430. ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
  5431. LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  5432. CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  5433. SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  5434. INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  5435. CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  5436. ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  5437. POSSIBILITY OF SUCH DAMAGE.
  5438. ****************************
  5439. Xorg
  5440. ****************************
  5441. The following is the 'standard copyright' agreed upon by most contributors,
  5442. and is currently the canonical license preferred by the X.Org Foundation.
  5443. This is a slight variant of the common MIT license form published by the
  5444. Open Source Initiative at http://www.opensource.org/licenses/mit-license.php
  5445. Copyright holders of new code should use this license statement where
  5446. possible, and insert their name to this list. Please sort by surname
  5447. for people, and by the full name for other entities (e.g. Juliusz
  5448. Chroboczek sorts before Intel Corporation sorts before Daniel Stone).
  5449. See each individual source file or directory for the license that applies
  5450. to that file.
  5451. Copyright (C) 2003-2006,2008 Jamey Sharp, Josh Triplett
  5452. Copyright © 2009 Red Hat, Inc.
  5453. Copyright 1990-1992,1999,2000,2004,2009,2010 Oracle and/or its affiliates.
  5454. All rights reserved.
  5455. Permission is hereby granted, free of charge, to any person obtaining a
  5456. copy of this software and associated documentation files (the "Software"),
  5457. to deal in the Software without restriction, including without limitation
  5458. the rights to use, copy, modify, merge, publish, distribute, sublicense,
  5459. and/or sell copies of the Software, and to permit persons to whom the
  5460. Software is furnished to do so, subject to the following conditions:
  5461. The above copyright notice and this permission notice (including the next
  5462. paragraph) shall be included in all copies or substantial portions of the
  5463. Software.
  5464. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  5465. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  5466. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  5467. THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  5468. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  5469. FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
  5470. DEALINGS IN THE SOFTWARE.
  5471. ----------------------------------------------------------------------
  5472. The following licenses are 'legacy' - usually MIT/X11 licenses with the name
  5473. of the copyright holder(s) in the license statement:
  5474. Copyright 1984-1994, 1998 The Open Group
  5475. Permission to use, copy, modify, distribute, and sell this software and its
  5476. documentation for any purpose is hereby granted without fee, provided that
  5477. the above copyright notice appear in all copies and that both that
  5478. copyright notice and this permission notice appear in supporting
  5479. documentation.
  5480. The above copyright notice and this permission notice shall be included in
  5481. all copies or substantial portions of the Software.
  5482. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  5483. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  5484. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  5485. OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
  5486. AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  5487. CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  5488. Except as contained in this notice, the name of The Open Group shall not be
  5489. used in advertising or otherwise to promote the sale, use or other dealings
  5490. in this Software without prior written authorization from The Open Group.
  5491. X Window System is a trademark of The Open Group.
  5492. ----------------------------------------
  5493. Copyright 1985, 1986, 1987, 1988, 1989, 1990, 1991, 1994, 1996 X Consortium
  5494. Copyright 2000 The XFree86 Project, Inc.
  5495. Permission is hereby granted, free of charge, to any person obtaining
  5496. a copy of this software and associated documentation files (the
  5497. "Software"), to deal in the Software without restriction, including
  5498. without limitation the rights to use, copy, modify, merge, publish,
  5499. distribute, sublicense, and/or sell copies of the Software, and to
  5500. permit persons to whom the Software is furnished to do so, subject to
  5501. the following conditions:
  5502. The above copyright notice and this permission notice shall be included
  5503. in all copies or substantial portions of the Software.
  5504. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
  5505. OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  5506. MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
  5507. IN NO EVENT SHALL THE X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR
  5508. OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
  5509. ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
  5510. OTHER DEALINGS IN THE SOFTWARE.
  5511. Except as contained in this notice, the name of the X Consortium shall
  5512. not be used in advertising or otherwise to promote the sale, use or
  5513. other dealings in this Software without prior written authorization
  5514. from the X Consortium.
  5515. Copyright 1985, 1986, 1987, 1988, 1989, 1990, 1991 by
  5516. Digital Equipment Corporation
  5517. Portions Copyright 1990, 1991 by Tektronix, Inc.
  5518. Permission to use, copy, modify and distribute this documentation for
  5519. any purpose and without fee is hereby granted, provided that the above
  5520. copyright notice appears in all copies and that both that copyright notice
  5521. and this permission notice appear in all copies, and that the names of
  5522. Digital and Tektronix not be used in in advertising or publicity pertaining
  5523. to this documentation without specific, written prior permission.
  5524. Digital and Tektronix makes no representations about the suitability
  5525. of this documentation for any purpose.
  5526. It is provided ``as is'' without express or implied warranty.
  5527. ----------------------------------------
  5528. Copyright (c) 1999-2000 Free Software Foundation, Inc.
  5529. Permission is hereby granted, free of charge, to any person obtaining a copy
  5530. of this software and associated documentation files (the "Software"), to deal
  5531. in the Software without restriction, including without limitation the rights
  5532. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  5533. copies of the Software, and to permit persons to whom the Software is
  5534. furnished to do so, subject to the following conditions:
  5535. The above copyright notice and this permission notice shall be included in
  5536. all copies or substantial portions of the Software.
  5537. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  5538. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  5539. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  5540. FREE SOFTWARE FOUNDATION BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
  5541. WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
  5542. IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  5543. Except as contained in this notice, the name of the Free Software Foundation
  5544. shall not be used in advertising or otherwise to promote the sale, use or
  5545. other dealings in this Software without prior written authorization from the
  5546. Free Software Foundation.
  5547. ----------------------------------------
  5548. Code and supporting documentation (c) Copyright 1990 1991 Tektronix, Inc.
  5549. All Rights Reserved
  5550. This file is a component of an X Window System-specific implementation
  5551. of Xcms based on the TekColor Color Management System. TekColor is a
  5552. trademark of Tektronix, Inc. The term "TekHVC" designates a particular
  5553. color space that is the subject of U.S. Patent No. 4,985,853 (equivalent
  5554. foreign patents pending). Permission is hereby granted to use, copy,
  5555. modify, sell, and otherwise distribute this software and its
  5556. documentation for any purpose and without fee, provided that:
  5557. 1. This copyright, permission, and disclaimer notice is reproduced in
  5558. all copies of this software and any modification thereof and in
  5559. supporting documentation;
  5560. 2. Any color-handling application which displays TekHVC color
  5561. cooordinates identifies these as TekHVC color coordinates in any
  5562. interface that displays these coordinates and in any associated
  5563. documentation;
  5564. 3. The term "TekHVC" is always used, and is only used, in association
  5565. with the mathematical derivations of the TekHVC Color Space,
  5566. including those provided in this file and any equivalent pathways and
  5567. mathematical derivations, regardless of digital (e.g., floating point
  5568. or integer) representation.
  5569. Tektronix makes no representation about the suitability of this software
  5570. for any purpose. It is provided "as is" and with all faults.
  5571. TEKTRONIX DISCLAIMS ALL WARRANTIES APPLICABLE TO THIS SOFTWARE,
  5572. INCLUDING THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
  5573. PARTICULAR PURPOSE. IN NO EVENT SHALL TEKTRONIX BE LIABLE FOR ANY
  5574. SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER
  5575. RESULTING FROM LOSS OF USE, DATA, OR PROFITS, WHETHER IN AN ACTION OF
  5576. CONTRACT, NEGLIGENCE, OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
  5577. CONNECTION WITH THE USE OR THE PERFORMANCE OF THIS SOFTWARE.
  5578. ----------------------------------------
  5579. (c) Copyright 1995 FUJITSU LIMITED
  5580. This is source code modified by FUJITSU LIMITED under the Joint
  5581. Development Agreement for the CDE/Motif PST.
  5582. ----------------------------------------
  5583. Copyright 1992 by Oki Technosystems Laboratory, Inc.
  5584. Copyright 1992 by Fuji Xerox Co., Ltd.
  5585. Permission to use, copy, modify, distribute, and sell this software
  5586. and its documentation for any purpose is hereby granted without fee,
  5587. provided that the above copyright notice appear in all copies and
  5588. that both that copyright notice and this permission notice appear
  5589. in supporting documentation, and that the name of Oki Technosystems
  5590. Laboratory and Fuji Xerox not be used in advertising or publicity
  5591. pertaining to distribution of the software without specific, written
  5592. prior permission.
  5593. Oki Technosystems Laboratory and Fuji Xerox make no representations
  5594. about the suitability of this software for any purpose. It is provided
  5595. "as is" without express or implied warranty.
  5596. OKI TECHNOSYSTEMS LABORATORY AND FUJI XEROX DISCLAIM ALL WARRANTIES
  5597. WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF
  5598. MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL OKI TECHNOSYSTEMS
  5599. LABORATORY AND FUJI XEROX BE LIABLE FOR ANY SPECIAL, INDIRECT OR
  5600. CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
  5601. OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
  5602. OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE
  5603. OR PERFORMANCE OF THIS SOFTWARE.
  5604. ----------------------------------------
  5605. Copyright 1990, 1991, 1992, 1993, 1994 by FUJITSU LIMITED
  5606. Permission to use, copy, modify, distribute, and sell this software
  5607. and its documentation for any purpose is hereby granted without fee,
  5608. provided that the above copyright notice appear in all copies and
  5609. that both that copyright notice and this permission notice appear
  5610. in supporting documentation, and that the name of FUJITSU LIMITED
  5611. not be used in advertising or publicity pertaining to distribution
  5612. of the software without specific, written prior permission.
  5613. FUJITSU LIMITED makes no representations about the suitability of
  5614. this software for any purpose.
  5615. It is provided "as is" without express or implied warranty.
  5616. FUJITSU LIMITED DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
  5617. INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
  5618. EVENT SHALL FUJITSU LIMITED BE LIABLE FOR ANY SPECIAL, INDIRECT OR
  5619. CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
  5620. USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
  5621. OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  5622. PERFORMANCE OF THIS SOFTWARE.
  5623. ----------------------------------------
  5624. Copyright (c) 1995 David E. Wexelblat. All rights reserved
  5625. Permission is hereby granted, free of charge, to any person obtaining
  5626. a copy of this software and associated documentation files (the
  5627. "Software"), to deal in the Software without restriction, including
  5628. without limitation the rights to use, copy, modify, merge, publish,
  5629. distribute, sublicense, and/or sell copies of the Software, and to
  5630. permit persons to whom the Software is furnished to do so, subject to
  5631. the following conditions:
  5632. The above copyright notice and this permission notice shall be included
  5633. in all copies or substantial portions of the Software.
  5634. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
  5635. OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  5636. MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
  5637. IN NO EVENT SHALL DAVID E. WEXELBLAT BE LIABLE FOR ANY CLAIM, DAMAGES OR
  5638. OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
  5639. ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
  5640. OTHER DEALINGS IN THE SOFTWARE.
  5641. Except as contained in this notice, the name of David E. Wexelblat shall
  5642. not be used in advertising or otherwise to promote the sale, use or
  5643. other dealings in this Software without prior written authorization
  5644. from David E. Wexelblat.
  5645. ----------------------------------------
  5646. Copyright 1990, 1991 by OMRON Corporation
  5647. Permission to use, copy, modify, distribute, and sell this software and its
  5648. documentation for any purpose is hereby granted without fee, provided that
  5649. the above copyright notice appear in all copies and that both that
  5650. copyright notice and this permission notice appear in supporting
  5651. documentation, and that the name OMRON not be used in
  5652. advertising or publicity pertaining to distribution of the software without
  5653. specific, written prior permission. OMRON makes no representations
  5654. about the suitability of this software for any purpose. It is provided
  5655. "as is" without express or implied warranty.
  5656. OMRON DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
  5657. INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
  5658. EVENT SHALL OMRON BE LIABLE FOR ANY SPECIAL, INDIRECT OR
  5659. CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
  5660. DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  5661. TORTUOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  5662. PERFORMANCE OF THIS SOFTWARE.
  5663. ----------------------------------------
  5664. Copyright 1985, 1986, 1987, 1988, 1989, 1990, 1991 by
  5665. Digital Equipment Corporation
  5666. Portions Copyright 1990, 1991 by Tektronix, Inc
  5667. Rewritten for X.org by Chris Lee <clee@freedesktop.org>
  5668. Permission to use, copy, modify, distribute, and sell this documentation
  5669. for any purpose and without fee is hereby granted, provided that the above
  5670. copyright notice and this permission notice appear in all copies.
  5671. Chris Lee makes no representations about the suitability for any purpose
  5672. of the information in this document. It is provided \`\`as-is'' without
  5673. express or implied warranty.
  5674. ----------------------------------------
  5675. Copyright 1993 by Digital Equipment Corporation, Maynard, Massachusetts,
  5676. Copyright 1994 by FUJITSU LIMITED
  5677. Copyright 1994 by Sony Corporation
  5678. All Rights Reserved
  5679. Permission to use, copy, modify, and distribute this software and its
  5680. documentation for any purpose and without fee is hereby granted,
  5681. provided that the above copyright notice appear in all copies and that
  5682. both that copyright notice and this permission notice appear in
  5683. supporting documentation, and that the names of Digital, FUJITSU
  5684. LIMITED and Sony Corporation not be used in advertising or publicity
  5685. pertaining to distribution of the software without specific, written
  5686. prior permission.
  5687. DIGITAL, FUJITSU LIMITED AND SONY CORPORATION DISCLAIMS ALL WARRANTIES
  5688. WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF
  5689. MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL DIGITAL, FUJITSU LIMITED
  5690. AND SONY CORPORATION BE LIABLE FOR ANY SPECIAL, INDIRECT OR
  5691. CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
  5692. USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
  5693. OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  5694. PERFORMANCE OF THIS SOFTWARE.
  5695. ----------------------------------------
  5696. Copyright 1991 by the Open Software Foundation
  5697. Permission to use, copy, modify, distribute, and sell this software and its
  5698. documentation for any purpose is hereby granted without fee, provided that
  5699. the above copyright notice appear in all copies and that both that
  5700. copyright notice and this permission notice appear in supporting
  5701. documentation, and that the name of Open Software Foundation
  5702. not be used in advertising or publicity pertaining to distribution of the
  5703. software without specific, written prior permission. Open Software
  5704. Foundation makes no representations about the suitability of this
  5705. software for any purpose. It is provided "as is" without express or
  5706. implied warranty.
  5707. OPEN SOFTWARE FOUNDATION DISCLAIMS ALL WARRANTIES WITH REGARD TO
  5708. THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
  5709. FITNESS, IN NO EVENT SHALL OPEN SOFTWARE FOUNDATIONN BE
  5710. LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  5711. WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  5712. ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  5713. OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  5714. ----------------------------------------
  5715. Copyright 1990, 1991, 1992,1993, 1994 by FUJITSU LIMITED
  5716. Copyright 1993, 1994 by Sony Corporation
  5717. Permission to use, copy, modify, distribute, and sell this software and
  5718. its documentation for any purpose is hereby granted without fee, provided
  5719. that the above copyright notice appear in all copies and that both that
  5720. copyright notice and this permission notice appear in supporting
  5721. documentation, and that the name of FUJITSU LIMITED and Sony Corporation
  5722. not be used in advertising or publicity pertaining to distribution of the
  5723. software without specific, written prior permission. FUJITSU LIMITED and
  5724. Sony Corporation makes no representations about the suitability of this
  5725. software for any purpose. It is provided "as is" without express or
  5726. implied warranty.
  5727. FUJITSU LIMITED AND SONY CORPORATION DISCLAIMS ALL WARRANTIES WITH REGARD
  5728. TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
  5729. FITNESS, IN NO EVENT SHALL FUJITSU LIMITED OR SONY CORPORATION BE LIABLE
  5730. FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER
  5731. RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
  5732. NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE
  5733. USE OR PERFORMANCE OF THIS SOFTWARE.
  5734. ----------------------------------------
  5735. Copyright (c) 1993, 1995 by Silicon Graphics Computer Systems, Inc.
  5736. Permission to use, copy, modify, and distribute this
  5737. software and its documentation for any purpose and without
  5738. fee is hereby granted, provided that the above copyright
  5739. notice appear in all copies and that both that copyright
  5740. notice and this permission notice appear in supporting
  5741. documentation, and that the name of Silicon Graphics not be
  5742. used in advertising or publicity pertaining to distribution
  5743. of the software without specific prior written permission.
  5744. Silicon Graphics makes no representation about the suitability
  5745. of this software for any purpose. It is provided "as is"
  5746. without any express or implied warranty.
  5747. SILICON GRAPHICS DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS
  5748. SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
  5749. AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL SILICON
  5750. GRAPHICS BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL
  5751. DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
  5752. DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
  5753. OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH
  5754. THE USE OR PERFORMANCE OF THIS SOFTWARE.
  5755. ----------------------------------------
  5756. Copyright 1991, 1992, 1993, 1994 by FUJITSU LIMITED
  5757. Copyright 1993 by Digital Equipment Corporation
  5758. Permission to use, copy, modify, distribute, and sell this software
  5759. and its documentation for any purpose is hereby granted without fee,
  5760. provided that the above copyright notice appear in all copies and that
  5761. both that copyright notice and this permission notice appear in
  5762. supporting documentation, and that the name of FUJITSU LIMITED and
  5763. Digital Equipment Corporation not be used in advertising or publicity
  5764. pertaining to distribution of the software without specific, written
  5765. prior permission. FUJITSU LIMITED and Digital Equipment Corporation
  5766. makes no representations about the suitability of this software for
  5767. any purpose. It is provided "as is" without express or implied
  5768. warranty.
  5769. FUJITSU LIMITED AND DIGITAL EQUIPMENT CORPORATION DISCLAIM ALL
  5770. WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED
  5771. WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
  5772. FUJITSU LIMITED AND DIGITAL EQUIPMENT CORPORATION BE LIABLE FOR
  5773. ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  5774. WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER
  5775. IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
  5776. ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
  5777. THIS SOFTWARE.
  5778. ----------------------------------------
  5779. Copyright 1992, 1993 by FUJITSU LIMITED
  5780. Copyright 1993 by Fujitsu Open Systems Solutions, Inc.
  5781. Copyright 1994 by Sony Corporation
  5782. Permission to use, copy, modify, distribute and sell this software
  5783. and its documentation for any purpose is hereby granted without fee,
  5784. provided that the above copyright notice appear in all copies and
  5785. that both that copyright notice and this permission notice appear
  5786. in supporting documentation, and that the name of FUJITSU LIMITED,
  5787. Fujitsu Open Systems Solutions, Inc. and Sony Corporation not be
  5788. used in advertising or publicity pertaining to distribution of the
  5789. software without specific, written prior permission.
  5790. FUJITSU LIMITED, Fujitsu Open Systems Solutions, Inc. and
  5791. Sony Corporation make no representations about the suitability of
  5792. this software for any purpose. It is provided "as is" without
  5793. express or implied warranty.
  5794. FUJITSU LIMITED, FUJITSU OPEN SYSTEMS SOLUTIONS, INC. AND SONY
  5795. CORPORATION DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
  5796. INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS,
  5797. IN NO EVENT SHALL FUJITSU OPEN SYSTEMS SOLUTIONS, INC., FUJITSU LIMITED
  5798. AND SONY CORPORATION BE LIABLE FOR ANY SPECIAL, INDIRECT OR
  5799. CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
  5800. OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
  5801. OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE
  5802. OR PERFORMANCE OF THIS SOFTWARE.
  5803. ----------------------------------------
  5804. Copyright 1987, 1988, 1990, 1993 by Digital Equipment Corporation,
  5805. Maynard, Massachusetts,
  5806. All Rights Reserved
  5807. Permission to use, copy, modify, and distribute this software and its
  5808. documentation for any purpose and without fee is hereby granted,
  5809. provided that the above copyright notice appear in all copies and that
  5810. both that copyright notice and this permission notice appear in
  5811. supporting documentation, and that the name of Digital not be
  5812. used in advertising or publicity pertaining to distribution of the
  5813. software without specific, written prior permission.
  5814. DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
  5815. ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
  5816. DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
  5817. ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  5818. WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
  5819. ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  5820. SOFTWARE.
  5821. ----------------------------------------
  5822. Copyright 1993 by SunSoft, Inc.
  5823. Copyright 1999-2000 by Bruno Haible
  5824. Permission to use, copy, modify, distribute, and sell this software
  5825. and its documentation for any purpose is hereby granted without fee,
  5826. provided that the above copyright notice appear in all copies and
  5827. that both that copyright notice and this permission notice appear
  5828. in supporting documentation, and that the names of SunSoft, Inc. and
  5829. Bruno Haible not be used in advertising or publicity pertaining to
  5830. distribution of the software without specific, written prior
  5831. permission. SunSoft, Inc. and Bruno Haible make no representations
  5832. about the suitability of this software for any purpose. It is
  5833. provided "as is" without express or implied warranty.
  5834. SunSoft Inc. AND Bruno Haible DISCLAIM ALL WARRANTIES WITH REGARD
  5835. TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
  5836. AND FITNESS, IN NO EVENT SHALL SunSoft, Inc. OR Bruno Haible BE LIABLE
  5837. FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  5838. WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  5839. ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
  5840. OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  5841. ----------------------------------------
  5842. Copyright 1991 by the Open Software Foundation
  5843. Copyright 1993 by the TOSHIBA Corp.
  5844. Permission to use, copy, modify, distribute, and sell this software and its
  5845. documentation for any purpose is hereby granted without fee, provided that
  5846. the above copyright notice appear in all copies and that both that
  5847. copyright notice and this permission notice appear in supporting
  5848. documentation, and that the names of Open Software Foundation and TOSHIBA
  5849. not be used in advertising or publicity pertaining to distribution of the
  5850. software without specific, written prior permission. Open Software
  5851. Foundation and TOSHIBA make no representations about the suitability of this
  5852. software for any purpose. It is provided "as is" without express or
  5853. implied warranty.
  5854. OPEN SOFTWARE FOUNDATION AND TOSHIBA DISCLAIM ALL WARRANTIES WITH REGARD TO
  5855. THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
  5856. FITNESS, IN NO EVENT SHALL OPEN SOFTWARE FOUNDATIONN OR TOSHIBA BE
  5857. LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  5858. WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  5859. ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  5860. OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  5861. ----------------------------------------
  5862. Copyright 1988 by Wyse Technology, Inc., San Jose, Ca.,
  5863. All Rights Reserved
  5864. Permission to use, copy, modify, and distribute this software and its
  5865. documentation for any purpose and without fee is hereby granted,
  5866. provided that the above copyright notice appear in all copies and that
  5867. both that copyright notice and this permission notice appear in
  5868. supporting documentation, and that the name Wyse not be
  5869. used in advertising or publicity pertaining to distribution of the
  5870. software without specific, written prior permission.
  5871. WYSE DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
  5872. ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
  5873. DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
  5874. ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  5875. WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
  5876. ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  5877. SOFTWARE.
  5878. ----------------------------------------
  5879. Copyright 1991 by the Open Software Foundation
  5880. Copyright 1993, 1994 by the Sony Corporation
  5881. Permission to use, copy, modify, distribute, and sell this software and its
  5882. documentation for any purpose is hereby granted without fee, provided that
  5883. the above copyright notice appear in all copies and that both that
  5884. copyright notice and this permission notice appear in supporting
  5885. documentation, and that the names of Open Software Foundation and
  5886. Sony Corporation not be used in advertising or publicity pertaining to
  5887. distribution of the software without specific, written prior permission.
  5888. Open Software Foundation and Sony Corporation make no
  5889. representations about the suitability of this software for any purpose.
  5890. It is provided "as is" without express or implied warranty.
  5891. OPEN SOFTWARE FOUNDATION AND SONY CORPORATION DISCLAIM ALL
  5892. WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED
  5893. WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL OPEN
  5894. SOFTWARE FOUNDATIONN OR SONY CORPORATION BE LIABLE FOR ANY SPECIAL,
  5895. INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
  5896. LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
  5897. OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  5898. PERFORMANCE OF THIS SOFTWARE.
  5899. ----------------------------------------
  5900. Copyright 1992, 1993 by FUJITSU LIMITED
  5901. Copyright 1993 by Fujitsu Open Systems Solutions, Inc.
  5902. Permission to use, copy, modify, distribute and sell this software
  5903. and its documentation for any purpose is hereby granted without fee,
  5904. provided that the above copyright notice appear in all copies and
  5905. that both that copyright notice and this permission notice appear
  5906. in supporting documentation, and that the name of FUJITSU LIMITED and
  5907. Fujitsu Open Systems Solutions, Inc. not be used in advertising or
  5908. publicity pertaining to distribution of the software without specific,
  5909. written prior permission.
  5910. FUJITSU LIMITED and Fujitsu Open Systems Solutions, Inc. makes no
  5911. representations about the suitability of this software for any purpose.
  5912. It is provided "as is" without express or implied warranty.
  5913. FUJITSU LIMITED AND FUJITSU OPEN SYSTEMS SOLUTIONS, INC. DISCLAIMS ALL
  5914. WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES
  5915. OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL FUJITSU OPEN SYSTEMS
  5916. SOLUTIONS, INC. AND FUJITSU LIMITED BE LIABLE FOR ANY SPECIAL, INDIRECT
  5917. OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
  5918. USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  5919. TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
  5920. OF THIS SOFTWARE.
  5921. ----------------------------------------
  5922. Copyright 1993, 1994 by Sony Corporation
  5923. Permission to use, copy, modify, distribute, and sell this software
  5924. and its documentation for any purpose is hereby granted without fee,
  5925. provided that the above copyright notice appear in all copies and
  5926. that both that copyright notice and this permission notice appear
  5927. in supporting documentation, and that the name of Sony Corporation
  5928. not be used in advertising or publicity pertaining to distribution
  5929. of the software without specific, written prior permission.
  5930. Sony Corporation makes no representations about the suitability of
  5931. this software for any purpose. It is provided "as is" without
  5932. express or implied warranty.
  5933. SONY CORPORATION DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
  5934. INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
  5935. EVENT SHALL SONY CORPORATION BE LIABLE FOR ANY SPECIAL, INDIRECT OR
  5936. CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
  5937. USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
  5938. OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  5939. PERFORMANCE OF THIS SOFTWARE.
  5940. ----------------------------------------
  5941. Copyright 1986, 1998 The Open Group
  5942. Copyright (c) 2000 The XFree86 Project, Inc.
  5943. Permission to use, copy, modify, distribute, and sell this software and its
  5944. documentation for any purpose is hereby granted without fee, provided that
  5945. the above copyright notice appear in all copies and that both that
  5946. copyright notice and this permission notice appear in supporting
  5947. documentation.
  5948. The above copyright notice and this permission notice shall be included in
  5949. all copies or substantial portions of the Software.
  5950. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  5951. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  5952. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  5953. X CONSORTIUM OR THE XFREE86 PROJECT BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  5954. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  5955. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  5956. SOFTWARE.
  5957. Except as contained in this notice, the name of the X Consortium or of the
  5958. XFree86 Project shall not be used in advertising or otherwise to promote the
  5959. sale, use or other dealings in this Software without prior written
  5960. authorization from the X Consortium and the XFree86 Project.
  5961. ----------------------------------------
  5962. Copyright 1990, 1991 by OMRON Corporation, NTT Software Corporation,
  5963. and Nippon Telegraph and Telephone Corporation
  5964. Copyright 1991 by the Open Software Foundation
  5965. Copyright 1993 by the FUJITSU LIMITED
  5966. Permission to use, copy, modify, distribute, and sell this software and its
  5967. documentation for any purpose is hereby granted without fee, provided that
  5968. the above copyright notice appear in all copies and that both that
  5969. copyright notice and this permission notice appear in supporting
  5970. documentation, and that the names of OMRON, NTT Software, NTT, and
  5971. Open Software Foundation not be used in advertising or publicity
  5972. pertaining to distribution of the software without specific,
  5973. written prior permission. OMRON, NTT Software, NTT, and Open Software
  5974. Foundation make no representations about the suitability of this
  5975. software for any purpose. It is provided "as is" without express or
  5976. implied warranty.
  5977. OMRON, NTT SOFTWARE, NTT, AND OPEN SOFTWARE FOUNDATION
  5978. DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
  5979. ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT
  5980. SHALL OMRON, NTT SOFTWARE, NTT, OR OPEN SOFTWARE FOUNDATION BE
  5981. LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  5982. WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  5983. ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  5984. OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  5985. ----------------------------------------
  5986. Copyright 1988 by Wyse Technology, Inc., San Jose, Ca,
  5987. Copyright 1987 by Digital Equipment Corporation, Maynard, Massachusetts,
  5988. All Rights Reserved
  5989. Permission to use, copy, modify, and distribute this software and its
  5990. documentation for any purpose and without fee is hereby granted,
  5991. provided that the above copyright notice appear in all copies and that
  5992. both that copyright notice and this permission notice appear in
  5993. supporting documentation, and that the name Digital not be
  5994. used in advertising or publicity pertaining to distribution of the
  5995. software without specific, written prior permission.
  5996. DIGITAL AND WYSE DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
  5997. INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
  5998. EVENT SHALL DIGITAL OR WYSE BE LIABLE FOR ANY SPECIAL, INDIRECT OR
  5999. CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
  6000. USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
  6001. OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  6002. PERFORMANCE OF THIS SOFTWARE.
  6003. ----------------------------------------
  6004. Copyright 1991, 1992 by Fuji Xerox Co., Ltd.
  6005. Copyright 1992, 1993, 1994 by FUJITSU LIMITED
  6006. Permission to use, copy, modify, distribute, and sell this software
  6007. and its documentation for any purpose is hereby granted without fee,
  6008. provided that the above copyright notice appear in all copies and
  6009. that both that copyright notice and this permission notice appear
  6010. in supporting documentation, and that the name of Fuji Xerox,
  6011. FUJITSU LIMITED not be used in advertising or publicity pertaining
  6012. to distribution of the software without specific, written prior
  6013. permission. Fuji Xerox, FUJITSU LIMITED make no representations
  6014. about the suitability of this software for any purpose.
  6015. It is provided "as is" without express or implied warranty.
  6016. FUJI XEROX, FUJITSU LIMITED DISCLAIM ALL WARRANTIES WITH
  6017. REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF
  6018. MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL FUJI XEROX,
  6019. FUJITSU LIMITED BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL
  6020. DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA
  6021. OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  6022. TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  6023. PERFORMANCE OF THIS SOFTWARE.
  6024. ----------------------------------------
  6025. Copyright 2006 Josh Triplett
  6026. Permission is hereby granted, free of charge, to any person obtaining
  6027. a copy of this software and associated documentation files (the
  6028. "Software"), to deal in the Software without restriction, including
  6029. without limitation the rights to use, copy, modify, merge, publish,
  6030. distribute, sublicense, and/or sell copies of the Software, and to
  6031. permit persons to whom the Software is furnished to do so, subject to
  6032. the following conditions:
  6033. The above copyright notice and this permission notice shall be included
  6034. in all copies or substantial portions of the Software.
  6035. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
  6036. OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  6037. MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
  6038. IN NO EVENT SHALL THE X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR
  6039. OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
  6040. ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
  6041. OTHER DEALINGS IN THE SOFTWARE.
  6042. ----------------------------------------
  6043. (c) Copyright 1996 by Sebastien Marineau and Holger Veit
  6044. <marineau@genie.uottawa.ca>
  6045. <Holger.Veit@gmd.de>
  6046. Permission is hereby granted, free of charge, to any person obtaining a
  6047. copy of this software and associated documentation files (the "Software"),
  6048. to deal in the Software without restriction, including without limitation
  6049. the rights to use, copy, modify, merge, publish, distribute, sublicense,
  6050. and/or sell copies of the Software, and to permit persons to whom the
  6051. Software is furnished to do so, subject to the following conditions:
  6052. The above copyright notice and this permission notice shall be included in
  6053. all copies or substantial portions of the Software.
  6054. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  6055. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  6056. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  6057. HOLGER VEIT BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
  6058. WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
  6059. OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  6060. SOFTWARE.
  6061. Except as contained in this notice, the name of Sebastien Marineau or Holger Veit
  6062. shall not be used in advertising or otherwise to promote the sale, use or other
  6063. dealings in this Software without prior written authorization from Holger Veit or
  6064. Sebastien Marineau.
  6065. ----------------------------------------
  6066. Copyright 1990, 1991 by OMRON Corporation, NTT Software Corporation,
  6067. and Nippon Telegraph and Telephone Corporation
  6068. Copyright 1991 by the Open Software Foundation
  6069. Copyright 1993 by the TOSHIBA Corp.
  6070. Copyright 1993, 1994 by Sony Corporation
  6071. Copyright 1993, 1994 by the FUJITSU LIMITED
  6072. Permission to use, copy, modify, distribute, and sell this software and its
  6073. documentation for any purpose is hereby granted without fee, provided that
  6074. the above copyright notice appear in all copies and that both that
  6075. copyright notice and this permission notice appear in supporting
  6076. documentation, and that the names of OMRON, NTT Software, NTT, Open
  6077. Software Foundation, and Sony Corporation not be used in advertising
  6078. or publicity pertaining to distribution of the software without specific,
  6079. written prior permission. OMRON, NTT Software, NTT, Open Software
  6080. Foundation, and Sony Corporation make no representations about the
  6081. suitability of this software for any purpose. It is provided "as is"
  6082. without express or implied warranty.
  6083. OMRON, NTT SOFTWARE, NTT, OPEN SOFTWARE FOUNDATION, AND SONY
  6084. CORPORATION DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
  6085. ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT
  6086. SHALL OMRON, NTT SOFTWARE, NTT, OPEN SOFTWARE FOUNDATION, OR SONY
  6087. CORPORATION BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
  6088. ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER
  6089. IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
  6090. OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  6091. ----------------------------------------
  6092. Copyright 2000 by Bruno Haible
  6093. Permission to use, copy, modify, distribute, and sell this software
  6094. and its documentation for any purpose is hereby granted without fee,
  6095. provided that the above copyright notice appear in all copies and
  6096. that both that copyright notice and this permission notice appear
  6097. in supporting documentation, and that the name of Bruno Haible not
  6098. be used in advertising or publicity pertaining to distribution of the
  6099. software without specific, written prior permission. Bruno Haible
  6100. makes no representations about the suitability of this software for
  6101. any purpose. It is provided "as is" without express or implied
  6102. warranty.
  6103. Bruno Haible DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
  6104. INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN
  6105. NO EVENT SHALL Bruno Haible BE LIABLE FOR ANY SPECIAL, INDIRECT OR
  6106. CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
  6107. OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
  6108. OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE
  6109. OR PERFORMANCE OF THIS SOFTWARE.
  6110. ----------------------------------------
  6111. Copyright © 2003 Keith Packard
  6112. Permission to use, copy, modify, distribute, and sell this software and its
  6113. documentation for any purpose is hereby granted without fee, provided that
  6114. the above copyright notice appear in all copies and that both that
  6115. copyright notice and this permission notice appear in supporting
  6116. documentation, and that the name of Keith Packard not be used in
  6117. advertising or publicity pertaining to distribution of the software without
  6118. specific, written prior permission. Keith Packard makes no
  6119. representations about the suitability of this software for any purpose. It
  6120. is provided "as is" without express or implied warranty.
  6121. KEITH PACKARD DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
  6122. INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
  6123. EVENT SHALL KEITH PACKARD BE LIABLE FOR ANY SPECIAL, INDIRECT OR
  6124. CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
  6125. DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  6126. TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  6127. PERFORMANCE OF THIS SOFTWARE.
  6128. ----------------------------------------
  6129. Copyright (c) 2007-2009, Troy D. Hanson
  6130. All rights reserved.
  6131. Redistribution and use in source and binary forms, with or without
  6132. modification, are permitted provided that the following conditions are met:
  6133. Redistributions of source code must retain the above copyright
  6134. notice, this list of conditions and the following disclaimer.
  6135. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
  6136. IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
  6137. TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
  6138. PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
  6139. OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
  6140. EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  6141. PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
  6142. PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
  6143. LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
  6144. NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  6145. SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  6146. ----------------------------------------
  6147. Copyright 1992, 1993 by TOSHIBA Corp.
  6148. Permission to use, copy, modify, and distribute this software and its
  6149. documentation for any purpose and without fee is hereby granted, provided
  6150. that the above copyright notice appear in all copies and that both that
  6151. copyright notice and this permission notice appear in supporting
  6152. documentation, and that the name of TOSHIBA not be used in advertising
  6153. or publicity pertaining to distribution of the software without specific,
  6154. written prior permission. TOSHIBA make no representations about the
  6155. suitability of this software for any purpose. It is provided "as is"
  6156. without express or implied warranty.
  6157. TOSHIBA DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
  6158. ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
  6159. TOSHIBA BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
  6160. ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  6161. WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
  6162. ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  6163. SOFTWARE.
  6164. ----------------------------------------
  6165. Copyright IBM Corporation 1993
  6166. All Rights Reserved
  6167. License to use, copy, modify, and distribute this software and its
  6168. documentation for any purpose and without fee is hereby granted,
  6169. provided that the above copyright notice appear in all copies and that
  6170. both that copyright notice and this permission notice appear in
  6171. supporting documentation, and that the name of IBM not be
  6172. used in advertising or publicity pertaining to distribution of the
  6173. software without specific, written prior permission.
  6174. IBM DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
  6175. ALL IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS, AND
  6176. NONINFRINGEMENT OF THIRD PARTY RIGHTS, IN NO EVENT SHALL
  6177. IBM BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
  6178. ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  6179. WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
  6180. ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  6181. SOFTWARE.
  6182. ----------------------------------------
  6183. Copyright 1990, 1991 by OMRON Corporation, NTT Software Corporation,
  6184. and Nippon Telegraph and Telephone Corporation
  6185. Permission to use, copy, modify, distribute, and sell this software and its
  6186. documentation for any purpose is hereby granted without fee, provided that
  6187. the above copyright notice appear in all copies and that both that
  6188. copyright notice and this permission notice appear in supporting
  6189. documentation, and that the names of OMRON, NTT Software, and NTT
  6190. not be used in advertising or publicity pertaining to distribution of the
  6191. software without specific, written prior permission. OMRON, NTT Software,
  6192. and NTT make no representations about the suitability of this
  6193. software for any purpose. It is provided "as is" without express or
  6194. implied warranty.
  6195. OMRON, NTT SOFTWARE, AND NTT, DISCLAIM ALL WARRANTIES WITH REGARD
  6196. TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
  6197. AND FITNESS, IN NO EVENT SHALL OMRON, NTT SOFTWARE, OR NTT, BE
  6198. LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  6199. WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  6200. ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  6201. OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  6202. ****************************
  6203. zlib
  6204. ****************************
  6205. (extracted from README, except for match.S)
  6206. Copyright notice:
  6207. (C) 1995-2013 Jean-loup Gailly and Mark Adler
  6208. This software is provided 'as-is', without any express or implied
  6209. warranty. In no event will the authors be held liable for any damages
  6210. arising from the use of this software.
  6211. Permission is granted to anyone to use this software for any purpose,
  6212. including commercial applications, and to alter it and redistribute it
  6213. freely, subject to the following restrictions:
  6214. 1. The origin of this software must not be misrepresented; you must not
  6215. claim that you wrote the original software. If you use this software
  6216. in a product, an acknowledgment in the product documentation would be
  6217. appreciated but is not required.
  6218. 2. Altered source versions must be plainly marked as such, and must not be
  6219. misrepresented as being the original software.
  6220. 3. This notice may not be removed or altered from any source distribution.
  6221. Jean-loup Gailly Mark Adler
  6222. jloup@gzip.org madler@alumni.caltech.edu
  6223. If you use the zlib library in a product, we would appreciate *not* receiving
  6224. lengthy legal documents to sign. The sources are provided for free but without
  6225. warranty of any kind. The library has been entirely written by Jean-loup
  6226. Gailly and Mark Adler; it does not include third-party code.
  6227. If you redistribute modified sources, we would appreciate that you include in
  6228. the file ChangeLog history information documenting your changes. Please read
  6229. the FAQ for more information on the distribution of modified source versions.
  6230. (extracted from match.S, for match.S only)
  6231. Copyright (C) 1998, 2007 Brian Raiter <breadbox@muppetlabs.com>
  6232. This software is provided 'as-is', without any express or implied
  6233. warranty. In no event will the author be held liable for any damages
  6234. arising from the use of this software.
  6235. Permission is granted to anyone to use this software for any purpose,
  6236. including commercial applications, and to alter it and redistribute it
  6237. freely, subject to the following restrictions:
  6238. 1. The origin of this software must not be misrepresented; you must not
  6239. claim that you wrote the original software. If you use this software
  6240. in a product, an acknowledgment in the product documentation would be
  6241. appreciated but is not required.
  6242. 2. Altered source versions must be plainly marked as such, and must not be
  6243. misrepresented as being the original software.
  6244. 3. This notice may not be removed or altered from any source distribution.
  6245. ****************************
  6246. googleurl
  6247. ****************************
  6248. Copyright 2007, Google Inc.
  6249. All rights reserved.
  6250. Redistribution and use in source and binary forms, with or without
  6251. modification, are permitted provided that the following conditions are
  6252. met:
  6253. * Redistributions of source code must retain the above copyright
  6254. notice, this list of conditions and the following disclaimer.
  6255. * Redistributions in binary form must reproduce the above
  6256. copyright notice, this list of conditions and the following disclaimer
  6257. in the documentation and/or other materials provided with the
  6258. distribution.
  6259. * Neither the name of Google Inc. nor the names of its
  6260. contributors may be used to endorse or promote products derived from
  6261. this software without specific prior written permission.
  6262. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  6263. "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  6264. LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  6265. A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  6266. OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  6267. SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  6268. LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  6269. DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  6270. THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  6271. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  6272. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  6273. -------------------------------------------------------------------------------
  6274. The file url_parse.cc is based on nsURLParsers.cc from Mozilla. This file is
  6275. licensed separately as follows:
  6276. The contents of this file are subject to the Mozilla Public License Version
  6277. 1.1 (the "License"); you may not use this file except in compliance with
  6278. the License. You may obtain a copy of the License at
  6279. http://www.mozilla.org/MPL/
  6280. Software distributed under the License is distributed on an "AS IS" basis,
  6281. WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  6282. for the specific language governing rights and limitations under the
  6283. License.
  6284. The Original Code is mozilla.org code.
  6285. The Initial Developer of the Original Code is
  6286. Netscape Communications Corporation.
  6287. Portions created by the Initial Developer are Copyright (C) 1998
  6288. the Initial Developer. All Rights Reserved.
  6289. Contributor(s):
  6290. Darin Fisher (original author)
  6291. Alternatively, the contents of this file may be used under the terms of
  6292. either the GNU General Public License Version 2 or later (the "GPL"), or
  6293. the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  6294. in which case the provisions of the GPL or the LGPL are applicable instead
  6295. of those above. If you wish to allow use of your version of this file only
  6296. under the terms of either the GPL or the LGPL, and not to allow others to
  6297. use your version of this file under the terms of the MPL, indicate your
  6298. decision by deleting the provisions above and replace them with the notice
  6299. and other provisions required by the GPL or the LGPL. If you do not delete
  6300. the provisions above, a recipient may use your version of this file under
  6301. the terms of any one of the MPL, the GPL or the LGPL.
  6302. -------------------------------------------------------------------------------
  6303. The file icu_utf.cc is from IBM. This file is licensed separately as follows:
  6304. ICU License - ICU 1.8.1 and later
  6305. COPYRIGHT AND PERMISSION NOTICE
  6306. Copyright (c) 1995-2009 International Business Machines Corporation and others
  6307. All rights reserved.
  6308. Permission is hereby granted, free of charge, to any person obtaining
  6309. a copy of this software and associated documentation files (the
  6310. "Software"), to deal in the Software without restriction, including
  6311. without limitation the rights to use, copy, modify, merge, publish,
  6312. distribute, and/or sell copies of the Software, and to permit persons
  6313. to whom the Software is furnished to do so, provided that the above
  6314. copyright notice(s) and this permission notice appear in all copies of
  6315. the Software and that both the above copyright notice(s) and this
  6316. permission notice appear in supporting documentation.
  6317. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  6318. EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  6319. MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
  6320. OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
  6321. HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY
  6322. SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER
  6323. RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF
  6324. CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
  6325. CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  6326. Except as contained in this notice, the name of a copyright holder
  6327. shall not be used in advertising or otherwise to promote the sale, use
  6328. or other dealings in this Software without prior written authorization
  6329. of the copyright holder.
  6330. ****************************
  6331. Apache License
  6332. Version 2.0, January 2004
  6333. http://www.apache.org/licenses/
  6334. TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
  6335. 1. Definitions.
  6336. "License" shall mean the terms and conditions for use, reproduction,
  6337. and distribution as defined by Sections 1 through 9 of this document.
  6338. "Licensor" shall mean the copyright owner or entity authorized by
  6339. the copyright owner that is granting the License.
  6340. "Legal Entity" shall mean the union of the acting entity and all
  6341. other entities that control, are controlled by, or are under common
  6342. control with that entity. For the purposes of this definition,
  6343. "control" means (i) the power, direct or indirect, to cause the
  6344. direction or management of such entity, whether by contract or
  6345. otherwise, or (ii) ownership of fifty percent (50%) or more of the
  6346. outstanding shares, or (iii) beneficial ownership of such entity.
  6347. "You" (or "Your") shall mean an individual or Legal Entity
  6348. exercising permissions granted by this License.
  6349. "Source" form shall mean the preferred form for making modifications,
  6350. including but not limited to software source code, documentation
  6351. source, and configuration files.
  6352. "Object" form shall mean any form resulting from mechanical
  6353. transformation or translation of a Source form, including but
  6354. not limited to compiled object code, generated documentation,
  6355. and conversions to other media types.
  6356. "Work" shall mean the work of authorship, whether in Source or
  6357. Object form, made available under the License, as indicated by a
  6358. copyright notice that is included in or attached to the work
  6359. (an example is provided in the Appendix below).
  6360. "Derivative Works" shall mean any work, whether in Source or Object
  6361. form, that is based on (or derived from) the Work and for which the
  6362. editorial revisions, annotations, elaborations, or other modifications
  6363. represent, as a whole, an original work of authorship. For the purposes
  6364. of this License, Derivative Works shall not include works that remain
  6365. separable from, or merely link (or bind by name) to the interfaces of,
  6366. the Work and Derivative Works thereof.
  6367. "Contribution" shall mean any work of authorship, including
  6368. the original version of the Work and any modifications or additions
  6369. to that Work or Derivative Works thereof, that is intentionally
  6370. submitted to Licensor for inclusion in the Work by the copyright owner
  6371. or by an individual or Legal Entity authorized to submit on behalf of
  6372. the copyright owner. For the purposes of this definition, "submitted"
  6373. means any form of electronic, verbal, or written communication sent
  6374. to the Licensor or its representatives, including but not limited to
  6375. communication on electronic mailing lists, source code control systems,
  6376. and issue tracking systems that are managed by, or on behalf of, the
  6377. Licensor for the purpose of discussing and improving the Work, but
  6378. excluding communication that is conspicuously marked or otherwise
  6379. designated in writing by the copyright owner as "Not a Contribution."
  6380. "Contributor" shall mean Licensor and any individual or Legal Entity
  6381. on behalf of whom a Contribution has been received by Licensor and
  6382. subsequently incorporated within the Work.
  6383. 2. Grant of Copyright License. Subject to the terms and conditions of
  6384. this License, each Contributor hereby grants to You a perpetual,
  6385. worldwide, non-exclusive, no-charge, royalty-free, irrevocable
  6386. copyright license to reproduce, prepare Derivative Works of,
  6387. publicly display, publicly perform, sublicense, and distribute the
  6388. Work and such Derivative Works in Source or Object form.
  6389. 3. Grant of Patent License. Subject to the terms and conditions of
  6390. this License, each Contributor hereby grants to You a perpetual,
  6391. worldwide, non-exclusive, no-charge, royalty-free, irrevocable
  6392. (except as stated in this section) patent license to make, have made,
  6393. use, offer to sell, sell, import, and otherwise transfer the Work,
  6394. where such license applies only to those patent claims licensable
  6395. by such Contributor that are necessarily infringed by their
  6396. Contribution(s) alone or by combination of their Contribution(s)
  6397. with the Work to which such Contribution(s) was submitted. If You
  6398. institute patent litigation against any entity (including a
  6399. cross-claim or counterclaim in a lawsuit) alleging that the Work
  6400. or a Contribution incorporated within the Work constitutes direct
  6401. or contributory patent infringement, then any patent licenses
  6402. granted to You under this License for that Work shall terminate
  6403. as of the date such litigation is filed.
  6404. 4. Redistribution. You may reproduce and distribute copies of the
  6405. Work or Derivative Works thereof in any medium, with or without
  6406. modifications, and in Source or Object form, provided that You
  6407. meet the following conditions:
  6408. (a) You must give any other recipients of the Work or
  6409. Derivative Works a copy of this License; and
  6410. (b) You must cause any modified files to carry prominent notices
  6411. stating that You changed the files; and
  6412. (c) You must retain, in the Source form of any Derivative Works
  6413. that You distribute, all copyright, patent, trademark, and
  6414. attribution notices from the Source form of the Work,
  6415. excluding those notices that do not pertain to any part of
  6416. the Derivative Works; and
  6417. (d) If the Work includes a "NOTICE" text file as part of its
  6418. distribution, then any Derivative Works that You distribute must
  6419. include a readable copy of the attribution notices contained
  6420. within such NOTICE file, excluding those notices that do not
  6421. pertain to any part of the Derivative Works, in at least one
  6422. of the following places: within a NOTICE text file distributed
  6423. as part of the Derivative Works; within the Source form or
  6424. documentation, if provided along with the Derivative Works; or,
  6425. within a display generated by the Derivative Works, if and
  6426. wherever such third-party notices normally appear. The contents
  6427. of the NOTICE file are for informational purposes only and
  6428. do not modify the License. You may add Your own attribution
  6429. notices within Derivative Works that You distribute, alongside
  6430. or as an addendum to the NOTICE text from the Work, provided
  6431. that such additional attribution notices cannot be construed
  6432. as modifying the License.
  6433. You may add Your own copyright statement to Your modifications and
  6434. may provide additional or different license terms and conditions
  6435. for use, reproduction, or distribution of Your modifications, or
  6436. for any such Derivative Works as a whole, provided Your use,
  6437. reproduction, and distribution of the Work otherwise complies with
  6438. the conditions stated in this License.
  6439. 5. Submission of Contributions. Unless You explicitly state otherwise,
  6440. any Contribution intentionally submitted for inclusion in the Work
  6441. by You to the Licensor shall be under the terms and conditions of
  6442. this License, without any additional terms or conditions.
  6443. Notwithstanding the above, nothing herein shall supersede or modify
  6444. the terms of any separate license agreement you may have executed
  6445. with Licensor regarding such Contributions.
  6446. 6. Trademarks. This License does not grant permission to use the trade
  6447. names, trademarks, service marks, or product names of the Licensor,
  6448. except as required for reasonable and customary use in describing the
  6449. origin of the Work and reproducing the content of the NOTICE file.
  6450. 7. Disclaimer of Warranty. Unless required by applicable law or
  6451. agreed to in writing, Licensor provides the Work (and each
  6452. Contributor provides its Contributions) on an "AS IS" BASIS,
  6453. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
  6454. implied, including, without limitation, any warranties or conditions
  6455. of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
  6456. PARTICULAR PURPOSE. You are solely responsible for determining the
  6457. appropriateness of using or redistributing the Work and assume any
  6458. risks associated with Your exercise of permissions under this License.
  6459. 8. Limitation of Liability. In no event and under no legal theory,
  6460. whether in tort (including negligence), contract, or otherwise,
  6461. unless required by applicable law (such as deliberate and grossly
  6462. negligent acts) or agreed to in writing, shall any Contributor be
  6463. liable to You for damages, including any direct, indirect, special,
  6464. incidental, or consequential damages of any character arising as a
  6465. result of this License or out of the use or inability to use the
  6466. Work (including but not limited to damages for loss of goodwill,
  6467. work stoppage, computer failure or malfunction, or any and all
  6468. other commercial damages or losses), even if such Contributor
  6469. has been advised of the possibility of such damages.
  6470. 9. Accepting Warranty or Additional Liability. While redistributing
  6471. the Work or Derivative Works thereof, You may choose to offer,
  6472. and charge a fee for, acceptance of support, warranty, indemnity,
  6473. or other liability obligations and/or rights consistent with this
  6474. License. However, in accepting such obligations, You may act only
  6475. on Your own behalf and on Your sole responsibility, not on behalf
  6476. of any other Contributor, and only if You agree to indemnify,
  6477. defend, and hold each Contributor harmless for any liability
  6478. incurred by, or claims asserted against, such Contributor by reason
  6479. of your accepting any such warranty or additional liability.
  6480. END OF TERMS AND CONDITIONS
  6481. APPENDIX: How to apply the Apache License to your work.
  6482. To apply the Apache License to your work, attach the following
  6483. boilerplate notice, with the fields enclosed by brackets "[]"
  6484. replaced with your own identifying information. (Don't include
  6485. the brackets!) The text should be enclosed in the appropriate
  6486. comment syntax for the file format. We also recommend that a
  6487. file or class name and description of purpose be included on the
  6488. same "printed page" as the copyright notice for easier
  6489. identification within third-party archives.
  6490. Copyright [yyyy] [name of copyright owner]
  6491. Licensed under the Apache License, Version 2.0 (the "License");
  6492. you may not use this file except in compliance with the License.
  6493. You may obtain a copy of the License at
  6494. http://www.apache.org/licenses/LICENSE-2.0
  6495. Unless required by applicable law or agreed to in writing, software
  6496. distributed under the License is distributed on an "AS IS" BASIS,
  6497. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  6498. See the License for the specific language governing permissions and
  6499. limitations under the License.
  6500. ****************************
  6501. jsoncpp
  6502. ****************************
  6503. The JsonCpp library's source code, including accompanying documentation,
  6504. tests and demonstration applications, are licensed under the following
  6505. conditions...
  6506. The author (Baptiste Lepilleur) explicitly disclaims copyright in all
  6507. jurisdictions which recognize such a disclaimer. In such jurisdictions,
  6508. this software is released into the Public Domain.
  6509. In jurisdictions which do not recognize Public Domain property (e.g. Germany as of
  6510. 2010), this software is Copyright (c) 2007-2010 by Baptiste Lepilleur, and is
  6511. released under the terms of the MIT License (see below).
  6512. In jurisdictions which recognize Public Domain property, the user of this
  6513. software may choose to accept it either as 1) Public Domain, 2) under the
  6514. conditions of the MIT License (see below), or 3) under the terms of dual
  6515. Public Domain/MIT License conditions described here, as they choose.
  6516. The MIT License is about as close to Public Domain as a license can get, and is
  6517. described in clear, concise terms at:
  6518. http://en.wikipedia.org/wiki/MIT_License
  6519. The full text of the MIT License follows:
  6520. ========================================================================
  6521. Copyright (c) 2007-2010 Baptiste Lepilleur
  6522. Permission is hereby granted, free of charge, to any person
  6523. obtaining a copy of this software and associated documentation
  6524. files (the "Software"), to deal in the Software without
  6525. restriction, including without limitation the rights to use, copy,
  6526. modify, merge, publish, distribute, sublicense, and/or sell copies
  6527. of the Software, and to permit persons to whom the Software is
  6528. furnished to do so, subject to the following conditions:
  6529. The above copyright notice and this permission notice shall be
  6530. included in all copies or substantial portions of the Software.
  6531. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  6532. EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  6533. MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  6534. NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
  6535. BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
  6536. ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  6537. CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  6538. SOFTWARE.
  6539. ========================================================================
  6540. (END LICENSE TEXT)
  6541. The MIT license is compatible with both the GPL and commercial
  6542. software, affording one all of the rights of Public Domain with the
  6543. minor nuisance of being required to keep the above copyright notice
  6544. and license text in the source code. Note also that by accepting the
  6545. Public Domain "license" you can re-license your copy using whatever
  6546. license you like.
  6547. ****************************
  6548. libwebp
  6549. ****************************
  6550. Copyright (c) 2010, Google Inc. All rights reserved.
  6551. Redistribution and use in source and binary forms, with or without
  6552. modification, are permitted provided that the following conditions are
  6553. met:
  6554. * Redistributions of source code must retain the above copyright
  6555. notice, this list of conditions and the following disclaimer.
  6556. * Redistributions in binary form must reproduce the above copyright
  6557. notice, this list of conditions and the following disclaimer in
  6558. the documentation and/or other materials provided with the
  6559. distribution.
  6560. * Neither the name of Google nor the names of its contributors may
  6561. be used to endorse or promote products derived from this software
  6562. without specific prior written permission.
  6563. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  6564. "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  6565. LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  6566. A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  6567. HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  6568. SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  6569. LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  6570. DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  6571. THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  6572. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  6573. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.