jquery.min.js 171 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759
  1. /*! jQuery v1.11.3 | (c) 2005, 2015 jQuery Foundation, Inc. | jquery.org/license */
  2. !(function(a, b) {
  3. "object" == typeof module && "object" == typeof module.exports
  4. ? (module.exports = a.document
  5. ? b(a, !0)
  6. : function(a) {
  7. if (!a.document)
  8. throw new Error("jQuery requires a window with a document");
  9. return b(a);
  10. })
  11. : b(a);
  12. })("undefined" != typeof window ? window : this, function(a, b) {
  13. var c = [],
  14. d = c.slice,
  15. e = c.concat,
  16. f = c.push,
  17. g = c.indexOf,
  18. h = {},
  19. i = h.toString,
  20. j = h.hasOwnProperty,
  21. k = {},
  22. l = "1.11.3",
  23. m = function(a, b) {
  24. return new m.fn.init(a, b);
  25. },
  26. n = /^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,
  27. o = /^-ms-/,
  28. p = /-([\da-z])/gi,
  29. q = function(a, b) {
  30. return b.toUpperCase();
  31. };
  32. (m.fn = m.prototype = {
  33. jquery: l,
  34. constructor: m,
  35. selector: "",
  36. length: 0,
  37. toArray: function() {
  38. return d.call(this);
  39. },
  40. get: function(a) {
  41. return null != a
  42. ? 0 > a
  43. ? this[a + this.length]
  44. : this[a]
  45. : d.call(this);
  46. },
  47. pushStack: function(a) {
  48. var b = m.merge(this.constructor(), a);
  49. return (b.prevObject = this), (b.context = this.context), b;
  50. },
  51. each: function(a, b) {
  52. return m.each(this, a, b);
  53. },
  54. map: function(a) {
  55. return this.pushStack(
  56. m.map(this, function(b, c) {
  57. return a.call(b, c, b);
  58. })
  59. );
  60. },
  61. slice: function() {
  62. return this.pushStack(d.apply(this, arguments));
  63. },
  64. first: function() {
  65. return this.eq(0);
  66. },
  67. last: function() {
  68. return this.eq(-1);
  69. },
  70. eq: function(a) {
  71. var b = this.length,
  72. c = +a + (0 > a ? b : 0);
  73. return this.pushStack(c >= 0 && b > c ? [this[c]] : []);
  74. },
  75. end: function() {
  76. return this.prevObject || this.constructor(null);
  77. },
  78. push: f,
  79. sort: c.sort,
  80. splice: c.splice
  81. }),
  82. (m.extend = m.fn.extend = function() {
  83. var a,
  84. b,
  85. c,
  86. d,
  87. e,
  88. f,
  89. g = arguments[0] || {},
  90. h = 1,
  91. i = arguments.length,
  92. j = !1;
  93. for (
  94. "boolean" == typeof g && ((j = g), (g = arguments[h] || {}), h++),
  95. "object" == typeof g || m.isFunction(g) || (g = {}),
  96. h === i && ((g = this), h--);
  97. i > h;
  98. h++
  99. )
  100. if (null != (e = arguments[h]))
  101. for (d in e)
  102. (a = g[d]),
  103. (c = e[d]),
  104. g !== c &&
  105. (j && c && (m.isPlainObject(c) || (b = m.isArray(c)))
  106. ? (b
  107. ? ((b = !1), (f = a && m.isArray(a) ? a : []))
  108. : (f = a && m.isPlainObject(a) ? a : {}),
  109. (g[d] = m.extend(j, f, c)))
  110. : void 0 !== c && (g[d] = c));
  111. return g;
  112. }),
  113. m.extend({
  114. expando: "jQuery" + (l + Math.random()).replace(/\D/g, ""),
  115. isReady: !0,
  116. error: function(a) {
  117. throw new Error(a);
  118. },
  119. noop: function() {},
  120. isFunction: function(a) {
  121. return "function" === m.type(a);
  122. },
  123. isArray:
  124. Array.isArray ||
  125. function(a) {
  126. return "array" === m.type(a);
  127. },
  128. isWindow: function(a) {
  129. return null != a && a == a.window;
  130. },
  131. isNumeric: function(a) {
  132. return !m.isArray(a) && a - parseFloat(a) + 1 >= 0;
  133. },
  134. isEmptyObject: function(a) {
  135. var b;
  136. for (b in a) return !1;
  137. return !0;
  138. },
  139. isPlainObject: function(a) {
  140. var b;
  141. if (!a || "object" !== m.type(a) || a.nodeType || m.isWindow(a))
  142. return !1;
  143. try {
  144. if (
  145. a.constructor &&
  146. !j.call(a, "constructor") &&
  147. !j.call(a.constructor.prototype, "isPrototypeOf")
  148. )
  149. return !1;
  150. } catch (c) {
  151. return !1;
  152. }
  153. if (k.ownLast) for (b in a) return j.call(a, b);
  154. for (b in a);
  155. return void 0 === b || j.call(a, b);
  156. },
  157. type: function(a) {
  158. return null == a
  159. ? a + ""
  160. : "object" == typeof a || "function" == typeof a
  161. ? h[i.call(a)] || "object"
  162. : typeof a;
  163. },
  164. globalEval: function(b) {
  165. b &&
  166. m.trim(b) &&
  167. (a.execScript ||
  168. function(b) {
  169. a.eval.call(a, b);
  170. })(b);
  171. },
  172. camelCase: function(a) {
  173. return a.replace(o, "ms-").replace(p, q);
  174. },
  175. nodeName: function(a, b) {
  176. return a.nodeName && a.nodeName.toLowerCase() === b.toLowerCase();
  177. },
  178. each: function(a, b, c) {
  179. var d,
  180. e = 0,
  181. f = a.length,
  182. g = r(a);
  183. if (c) {
  184. if (g) {
  185. for (; f > e; e++) if (((d = b.apply(a[e], c)), d === !1)) break;
  186. } else for (e in a) if (((d = b.apply(a[e], c)), d === !1)) break;
  187. } else if (g) {
  188. for (; f > e; e++) if (((d = b.call(a[e], e, a[e])), d === !1)) break;
  189. } else for (e in a) if (((d = b.call(a[e], e, a[e])), d === !1)) break;
  190. return a;
  191. },
  192. trim: function(a) {
  193. return null == a ? "" : (a + "").replace(n, "");
  194. },
  195. makeArray: function(a, b) {
  196. var c = b || [];
  197. return (
  198. null != a &&
  199. (r(Object(a))
  200. ? m.merge(c, "string" == typeof a ? [a] : a)
  201. : f.call(c, a)),
  202. c
  203. );
  204. },
  205. inArray: function(a, b, c) {
  206. var d;
  207. if (b) {
  208. if (g) return g.call(b, a, c);
  209. for (
  210. d = b.length, c = c ? (0 > c ? Math.max(0, d + c) : c) : 0;
  211. d > c;
  212. c++
  213. )
  214. if (c in b && b[c] === a) return c;
  215. }
  216. return -1;
  217. },
  218. merge: function(a, b) {
  219. var c = +b.length,
  220. d = 0,
  221. e = a.length;
  222. while (c > d) a[e++] = b[d++];
  223. if (c !== c) while (void 0 !== b[d]) a[e++] = b[d++];
  224. return (a.length = e), a;
  225. },
  226. grep: function(a, b, c) {
  227. for (var d, e = [], f = 0, g = a.length, h = !c; g > f; f++)
  228. (d = !b(a[f], f)), d !== h && e.push(a[f]);
  229. return e;
  230. },
  231. map: function(a, b, c) {
  232. var d,
  233. f = 0,
  234. g = a.length,
  235. h = r(a),
  236. i = [];
  237. if (h) for (; g > f; f++) (d = b(a[f], f, c)), null != d && i.push(d);
  238. else for (f in a) (d = b(a[f], f, c)), null != d && i.push(d);
  239. return e.apply([], i);
  240. },
  241. guid: 1,
  242. proxy: function(a, b) {
  243. var c, e, f;
  244. return (
  245. "string" == typeof b && ((f = a[b]), (b = a), (a = f)),
  246. m.isFunction(a)
  247. ? ((c = d.call(arguments, 2)),
  248. (e = function() {
  249. return a.apply(b || this, c.concat(d.call(arguments)));
  250. }),
  251. (e.guid = a.guid = a.guid || m.guid++),
  252. e)
  253. : void 0
  254. );
  255. },
  256. now: function() {
  257. return +new Date();
  258. },
  259. support: k
  260. }),
  261. m.each(
  262. "Boolean Number String Function Array Date RegExp Object Error".split(
  263. " "
  264. ),
  265. function(a, b) {
  266. h["[object " + b + "]"] = b.toLowerCase();
  267. }
  268. );
  269. function r(a) {
  270. var b = "length" in a && a.length,
  271. c = m.type(a);
  272. return "function" === c || m.isWindow(a)
  273. ? !1
  274. : 1 === a.nodeType && b
  275. ? !0
  276. : "array" === c ||
  277. 0 === b ||
  278. ("number" == typeof b && b > 0 && b - 1 in a);
  279. }
  280. var s = (function(a) {
  281. var b,
  282. c,
  283. d,
  284. e,
  285. f,
  286. g,
  287. h,
  288. i,
  289. j,
  290. k,
  291. l,
  292. m,
  293. n,
  294. o,
  295. p,
  296. q,
  297. r,
  298. s,
  299. t,
  300. u = "sizzle" + 1 * new Date(),
  301. v = a.document,
  302. w = 0,
  303. x = 0,
  304. y = ha(),
  305. z = ha(),
  306. A = ha(),
  307. B = function(a, b) {
  308. return a === b && (l = !0), 0;
  309. },
  310. C = 1 << 31,
  311. D = {}.hasOwnProperty,
  312. E = [],
  313. F = E.pop,
  314. G = E.push,
  315. H = E.push,
  316. I = E.slice,
  317. J = function(a, b) {
  318. for (var c = 0, d = a.length; d > c; c++) if (a[c] === b) return c;
  319. return -1;
  320. },
  321. K =
  322. "checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",
  323. L = "[\\x20\\t\\r\\n\\f]",
  324. M = "(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",
  325. N = M.replace("w", "w#"),
  326. O =
  327. "\\[" +
  328. L +
  329. "*(" +
  330. M +
  331. ")(?:" +
  332. L +
  333. "*([*^$|!~]?=)" +
  334. L +
  335. "*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|(" +
  336. N +
  337. "))|)" +
  338. L +
  339. "*\\]",
  340. P =
  341. ":(" +
  342. M +
  343. ")(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|" +
  344. O +
  345. ")*)|.*)\\)|)",
  346. Q = new RegExp(L + "+", "g"),
  347. R = new RegExp("^" + L + "+|((?:^|[^\\\\])(?:\\\\.)*)" + L + "+$", "g"),
  348. S = new RegExp("^" + L + "*," + L + "*"),
  349. T = new RegExp("^" + L + "*([>+~]|" + L + ")" + L + "*"),
  350. U = new RegExp("=" + L + "*([^\\]'\"]*?)" + L + "*\\]", "g"),
  351. V = new RegExp(P),
  352. W = new RegExp("^" + N + "$"),
  353. X = {
  354. ID: new RegExp("^#(" + M + ")"),
  355. CLASS: new RegExp("^\\.(" + M + ")"),
  356. TAG: new RegExp("^(" + M.replace("w", "w*") + ")"),
  357. ATTR: new RegExp("^" + O),
  358. PSEUDO: new RegExp("^" + P),
  359. CHILD: new RegExp(
  360. "^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\(" +
  361. L +
  362. "*(even|odd|(([+-]|)(\\d*)n|)" +
  363. L +
  364. "*(?:([+-]|)" +
  365. L +
  366. "*(\\d+)|))" +
  367. L +
  368. "*\\)|)",
  369. "i"
  370. ),
  371. bool: new RegExp("^(?:" + K + ")$", "i"),
  372. needsContext: new RegExp(
  373. "^" +
  374. L +
  375. "*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\(" +
  376. L +
  377. "*((?:-\\d)?\\d*)" +
  378. L +
  379. "*\\)|)(?=[^-]|$)",
  380. "i"
  381. )
  382. },
  383. Y = /^(?:input|select|textarea|button)$/i,
  384. Z = /^h\d$/i,
  385. $ = /^[^{]+\{\s*\[native \w/,
  386. _ = /^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,
  387. aa = /[+~]/,
  388. ba = /'|\\/g,
  389. ca = new RegExp("\\\\([\\da-f]{1,6}" + L + "?|(" + L + ")|.)", "ig"),
  390. da = function(a, b, c) {
  391. var d = "0x" + b - 65536;
  392. return d !== d || c
  393. ? b
  394. : 0 > d
  395. ? String.fromCharCode(d + 65536)
  396. : String.fromCharCode((d >> 10) | 55296, (1023 & d) | 56320);
  397. },
  398. ea = function() {
  399. m();
  400. };
  401. try {
  402. H.apply((E = I.call(v.childNodes)), v.childNodes),
  403. E[v.childNodes.length].nodeType;
  404. } catch (fa) {
  405. H = {
  406. apply: E.length
  407. ? function(a, b) {
  408. G.apply(a, I.call(b));
  409. }
  410. : function(a, b) {
  411. var c = a.length,
  412. d = 0;
  413. while ((a[c++] = b[d++]));
  414. a.length = c - 1;
  415. }
  416. };
  417. }
  418. function ga(a, b, d, e) {
  419. var f, h, j, k, l, o, r, s, w, x;
  420. if (
  421. ((b ? b.ownerDocument || b : v) !== n && m(b),
  422. (b = b || n),
  423. (d = d || []),
  424. (k = b.nodeType),
  425. "string" != typeof a || !a || (1 !== k && 9 !== k && 11 !== k))
  426. )
  427. return d;
  428. if (!e && p) {
  429. if (11 !== k && (f = _.exec(a)))
  430. if ((j = f[1])) {
  431. if (9 === k) {
  432. if (((h = b.getElementById(j)), !h || !h.parentNode)) return d;
  433. if (h.id === j) return d.push(h), d;
  434. } else if (
  435. b.ownerDocument &&
  436. (h = b.ownerDocument.getElementById(j)) &&
  437. t(b, h) &&
  438. h.id === j
  439. )
  440. return d.push(h), d;
  441. } else {
  442. if (f[2]) return H.apply(d, b.getElementsByTagName(a)), d;
  443. if ((j = f[3]) && c.getElementsByClassName)
  444. return H.apply(d, b.getElementsByClassName(j)), d;
  445. }
  446. if (c.qsa && (!q || !q.test(a))) {
  447. if (
  448. ((s = r = u),
  449. (w = b),
  450. (x = 1 !== k && a),
  451. 1 === k && "object" !== b.nodeName.toLowerCase())
  452. ) {
  453. (o = g(a)),
  454. (r = b.getAttribute("id"))
  455. ? (s = r.replace(ba, "\\$&"))
  456. : b.setAttribute("id", s),
  457. (s = "[id='" + s + "'] "),
  458. (l = o.length);
  459. while (l--) o[l] = s + ra(o[l]);
  460. (w = (aa.test(a) && pa(b.parentNode)) || b), (x = o.join(","));
  461. }
  462. if (x)
  463. try {
  464. return H.apply(d, w.querySelectorAll(x)), d;
  465. } catch (y) {
  466. } finally {
  467. r || b.removeAttribute("id");
  468. }
  469. }
  470. }
  471. return i(a.replace(R, "$1"), b, d, e);
  472. }
  473. function ha() {
  474. var a = [];
  475. function b(c, e) {
  476. return (
  477. a.push(c + " ") > d.cacheLength && delete b[a.shift()],
  478. (b[c + " "] = e)
  479. );
  480. }
  481. return b;
  482. }
  483. function ia(a) {
  484. return (a[u] = !0), a;
  485. }
  486. function ja(a) {
  487. var b = n.createElement("div");
  488. try {
  489. return !!a(b);
  490. } catch (c) {
  491. return !1;
  492. } finally {
  493. b.parentNode && b.parentNode.removeChild(b), (b = null);
  494. }
  495. }
  496. function ka(a, b) {
  497. var c = a.split("|"),
  498. e = a.length;
  499. while (e--) d.attrHandle[c[e]] = b;
  500. }
  501. function la(a, b) {
  502. var c = b && a,
  503. d =
  504. c &&
  505. 1 === a.nodeType &&
  506. 1 === b.nodeType &&
  507. (~b.sourceIndex || C) - (~a.sourceIndex || C);
  508. if (d) return d;
  509. if (c) while ((c = c.nextSibling)) if (c === b) return -1;
  510. return a ? 1 : -1;
  511. }
  512. function ma(a) {
  513. return function(b) {
  514. var c = b.nodeName.toLowerCase();
  515. return "input" === c && b.type === a;
  516. };
  517. }
  518. function na(a) {
  519. return function(b) {
  520. var c = b.nodeName.toLowerCase();
  521. return ("input" === c || "button" === c) && b.type === a;
  522. };
  523. }
  524. function oa(a) {
  525. return ia(function(b) {
  526. return (
  527. (b = +b),
  528. ia(function(c, d) {
  529. var e,
  530. f = a([], c.length, b),
  531. g = f.length;
  532. while (g--) c[(e = f[g])] && (c[e] = !(d[e] = c[e]));
  533. })
  534. );
  535. });
  536. }
  537. function pa(a) {
  538. return a && "undefined" != typeof a.getElementsByTagName && a;
  539. }
  540. (c = ga.support = {}),
  541. (f = ga.isXML = function(a) {
  542. var b = a && (a.ownerDocument || a).documentElement;
  543. return b ? "HTML" !== b.nodeName : !1;
  544. }),
  545. (m = ga.setDocument = function(a) {
  546. var b,
  547. e,
  548. g = a ? a.ownerDocument || a : v;
  549. return g !== n && 9 === g.nodeType && g.documentElement
  550. ? ((n = g),
  551. (o = g.documentElement),
  552. (e = g.defaultView),
  553. e &&
  554. e !== e.top &&
  555. (e.addEventListener
  556. ? e.addEventListener("unload", ea, !1)
  557. : e.attachEvent && e.attachEvent("onunload", ea)),
  558. (p = !f(g)),
  559. (c.attributes = ja(function(a) {
  560. return (a.className = "i"), !a.getAttribute("className");
  561. })),
  562. (c.getElementsByTagName = ja(function(a) {
  563. return (
  564. a.appendChild(g.createComment("")),
  565. !a.getElementsByTagName("*").length
  566. );
  567. })),
  568. (c.getElementsByClassName = $.test(g.getElementsByClassName)),
  569. (c.getById = ja(function(a) {
  570. return (
  571. (o.appendChild(a).id = u),
  572. !g.getElementsByName || !g.getElementsByName(u).length
  573. );
  574. })),
  575. c.getById
  576. ? ((d.find.ID = function(a, b) {
  577. if ("undefined" != typeof b.getElementById && p) {
  578. var c = b.getElementById(a);
  579. return c && c.parentNode ? [c] : [];
  580. }
  581. }),
  582. (d.filter.ID = function(a) {
  583. var b = a.replace(ca, da);
  584. return function(a) {
  585. return a.getAttribute("id") === b;
  586. };
  587. }))
  588. : (delete d.find.ID,
  589. (d.filter.ID = function(a) {
  590. var b = a.replace(ca, da);
  591. return function(a) {
  592. var c =
  593. "undefined" != typeof a.getAttributeNode &&
  594. a.getAttributeNode("id");
  595. return c && c.value === b;
  596. };
  597. })),
  598. (d.find.TAG = c.getElementsByTagName
  599. ? function(a, b) {
  600. return "undefined" != typeof b.getElementsByTagName
  601. ? b.getElementsByTagName(a)
  602. : c.qsa
  603. ? b.querySelectorAll(a)
  604. : void 0;
  605. }
  606. : function(a, b) {
  607. var c,
  608. d = [],
  609. e = 0,
  610. f = b.getElementsByTagName(a);
  611. if ("*" === a) {
  612. while ((c = f[e++])) 1 === c.nodeType && d.push(c);
  613. return d;
  614. }
  615. return f;
  616. }),
  617. (d.find.CLASS =
  618. c.getElementsByClassName &&
  619. function(a, b) {
  620. return p ? b.getElementsByClassName(a) : void 0;
  621. }),
  622. (r = []),
  623. (q = []),
  624. (c.qsa = $.test(g.querySelectorAll)) &&
  625. (ja(function(a) {
  626. (o.appendChild(a).innerHTML =
  627. "<a id='" +
  628. u +
  629. "'></a><select id='" +
  630. u +
  631. "-\f]' msallowcapture=''><option selected=''></option></select>"),
  632. a.querySelectorAll("[msallowcapture^='']").length &&
  633. q.push("[*^$]=" + L + "*(?:''|\"\")"),
  634. a.querySelectorAll("[selected]").length ||
  635. q.push("\\[" + L + "*(?:value|" + K + ")"),
  636. a.querySelectorAll("[id~=" + u + "-]").length || q.push("~="),
  637. a.querySelectorAll(":checked").length || q.push(":checked"),
  638. a.querySelectorAll("a#" + u + "+*").length ||
  639. q.push(".#.+[+~]");
  640. }),
  641. ja(function(a) {
  642. var b = g.createElement("input");
  643. b.setAttribute("type", "hidden"),
  644. a.appendChild(b).setAttribute("name", "D"),
  645. a.querySelectorAll("[name=d]").length &&
  646. q.push("name" + L + "*[*^$|!~]?="),
  647. a.querySelectorAll(":enabled").length ||
  648. q.push(":enabled", ":disabled"),
  649. a.querySelectorAll("*,:x"),
  650. q.push(",.*:");
  651. })),
  652. (c.matchesSelector = $.test(
  653. (s =
  654. o.matches ||
  655. o.webkitMatchesSelector ||
  656. o.mozMatchesSelector ||
  657. o.oMatchesSelector ||
  658. o.msMatchesSelector)
  659. )) &&
  660. ja(function(a) {
  661. (c.disconnectedMatch = s.call(a, "div")),
  662. s.call(a, "[s!='']:x"),
  663. r.push("!=", P);
  664. }),
  665. (q = q.length && new RegExp(q.join("|"))),
  666. (r = r.length && new RegExp(r.join("|"))),
  667. (b = $.test(o.compareDocumentPosition)),
  668. (t =
  669. b || $.test(o.contains)
  670. ? function(a, b) {
  671. var c = 9 === a.nodeType ? a.documentElement : a,
  672. d = b && b.parentNode;
  673. return (
  674. a === d ||
  675. !(
  676. !d ||
  677. 1 !== d.nodeType ||
  678. !(c.contains
  679. ? c.contains(d)
  680. : a.compareDocumentPosition &&
  681. 16 & a.compareDocumentPosition(d))
  682. )
  683. );
  684. }
  685. : function(a, b) {
  686. if (b) while ((b = b.parentNode)) if (b === a) return !0;
  687. return !1;
  688. }),
  689. (B = b
  690. ? function(a, b) {
  691. if (a === b) return (l = !0), 0;
  692. var d =
  693. !a.compareDocumentPosition - !b.compareDocumentPosition;
  694. return d
  695. ? d
  696. : ((d =
  697. (a.ownerDocument || a) === (b.ownerDocument || b)
  698. ? a.compareDocumentPosition(b)
  699. : 1),
  700. 1 & d ||
  701. (!c.sortDetached && b.compareDocumentPosition(a) === d)
  702. ? a === g || (a.ownerDocument === v && t(v, a))
  703. ? -1
  704. : b === g || (b.ownerDocument === v && t(v, b))
  705. ? 1
  706. : k
  707. ? J(k, a) - J(k, b)
  708. : 0
  709. : 4 & d
  710. ? -1
  711. : 1);
  712. }
  713. : function(a, b) {
  714. if (a === b) return (l = !0), 0;
  715. var c,
  716. d = 0,
  717. e = a.parentNode,
  718. f = b.parentNode,
  719. h = [a],
  720. i = [b];
  721. if (!e || !f)
  722. return a === g
  723. ? -1
  724. : b === g
  725. ? 1
  726. : e
  727. ? -1
  728. : f
  729. ? 1
  730. : k
  731. ? J(k, a) - J(k, b)
  732. : 0;
  733. if (e === f) return la(a, b);
  734. c = a;
  735. while ((c = c.parentNode)) h.unshift(c);
  736. c = b;
  737. while ((c = c.parentNode)) i.unshift(c);
  738. while (h[d] === i[d]) d++;
  739. return d
  740. ? la(h[d], i[d])
  741. : h[d] === v
  742. ? -1
  743. : i[d] === v
  744. ? 1
  745. : 0;
  746. }),
  747. g)
  748. : n;
  749. }),
  750. (ga.matches = function(a, b) {
  751. return ga(a, null, null, b);
  752. }),
  753. (ga.matchesSelector = function(a, b) {
  754. if (
  755. ((a.ownerDocument || a) !== n && m(a),
  756. (b = b.replace(U, "='$1']")),
  757. !(!c.matchesSelector || !p || (r && r.test(b)) || (q && q.test(b))))
  758. )
  759. try {
  760. var d = s.call(a, b);
  761. if (
  762. d ||
  763. c.disconnectedMatch ||
  764. (a.document && 11 !== a.document.nodeType)
  765. )
  766. return d;
  767. } catch (e) {}
  768. return ga(b, n, null, [a]).length > 0;
  769. }),
  770. (ga.contains = function(a, b) {
  771. return (a.ownerDocument || a) !== n && m(a), t(a, b);
  772. }),
  773. (ga.attr = function(a, b) {
  774. (a.ownerDocument || a) !== n && m(a);
  775. var e = d.attrHandle[b.toLowerCase()],
  776. f = e && D.call(d.attrHandle, b.toLowerCase()) ? e(a, b, !p) : void 0;
  777. return void 0 !== f
  778. ? f
  779. : c.attributes || !p
  780. ? a.getAttribute(b)
  781. : (f = a.getAttributeNode(b)) && f.specified
  782. ? f.value
  783. : null;
  784. }),
  785. (ga.error = function(a) {
  786. throw new Error("Syntax error, unrecognized expression: " + a);
  787. }),
  788. (ga.uniqueSort = function(a) {
  789. var b,
  790. d = [],
  791. e = 0,
  792. f = 0;
  793. if (
  794. ((l = !c.detectDuplicates),
  795. (k = !c.sortStable && a.slice(0)),
  796. a.sort(B),
  797. l)
  798. ) {
  799. while ((b = a[f++])) b === a[f] && (e = d.push(f));
  800. while (e--) a.splice(d[e], 1);
  801. }
  802. return (k = null), a;
  803. }),
  804. (e = ga.getText = function(a) {
  805. var b,
  806. c = "",
  807. d = 0,
  808. f = a.nodeType;
  809. if (f) {
  810. if (1 === f || 9 === f || 11 === f) {
  811. if ("string" == typeof a.textContent) return a.textContent;
  812. for (a = a.firstChild; a; a = a.nextSibling) c += e(a);
  813. } else if (3 === f || 4 === f) return a.nodeValue;
  814. } else while ((b = a[d++])) c += e(b);
  815. return c;
  816. }),
  817. (d = ga.selectors = {
  818. cacheLength: 50,
  819. createPseudo: ia,
  820. match: X,
  821. attrHandle: {},
  822. find: {},
  823. relative: {
  824. ">": { dir: "parentNode", first: !0 },
  825. " ": { dir: "parentNode" },
  826. "+": { dir: "previousSibling", first: !0 },
  827. "~": { dir: "previousSibling" }
  828. },
  829. preFilter: {
  830. ATTR: function(a) {
  831. return (
  832. (a[1] = a[1].replace(ca, da)),
  833. (a[3] = (a[3] || a[4] || a[5] || "").replace(ca, da)),
  834. "~=" === a[2] && (a[3] = " " + a[3] + " "),
  835. a.slice(0, 4)
  836. );
  837. },
  838. CHILD: function(a) {
  839. return (
  840. (a[1] = a[1].toLowerCase()),
  841. "nth" === a[1].slice(0, 3)
  842. ? (a[3] || ga.error(a[0]),
  843. (a[4] = +(a[4]
  844. ? a[5] + (a[6] || 1)
  845. : 2 * ("even" === a[3] || "odd" === a[3]))),
  846. (a[5] = +(a[7] + a[8] || "odd" === a[3])))
  847. : a[3] && ga.error(a[0]),
  848. a
  849. );
  850. },
  851. PSEUDO: function(a) {
  852. var b,
  853. c = !a[6] && a[2];
  854. return X.CHILD.test(a[0])
  855. ? null
  856. : (a[3]
  857. ? (a[2] = a[4] || a[5] || "")
  858. : c &&
  859. V.test(c) &&
  860. (b = g(c, !0)) &&
  861. (b = c.indexOf(")", c.length - b) - c.length) &&
  862. ((a[0] = a[0].slice(0, b)), (a[2] = c.slice(0, b))),
  863. a.slice(0, 3));
  864. }
  865. },
  866. filter: {
  867. TAG: function(a) {
  868. var b = a.replace(ca, da).toLowerCase();
  869. return "*" === a
  870. ? function() {
  871. return !0;
  872. }
  873. : function(a) {
  874. return a.nodeName && a.nodeName.toLowerCase() === b;
  875. };
  876. },
  877. CLASS: function(a) {
  878. var b = y[a + " "];
  879. return (
  880. b ||
  881. ((b = new RegExp("(^|" + L + ")" + a + "(" + L + "|$)")) &&
  882. y(a, function(a) {
  883. return b.test(
  884. ("string" == typeof a.className && a.className) ||
  885. ("undefined" != typeof a.getAttribute &&
  886. a.getAttribute("class")) ||
  887. ""
  888. );
  889. }))
  890. );
  891. },
  892. ATTR: function(a, b, c) {
  893. return function(d) {
  894. var e = ga.attr(d, a);
  895. return null == e
  896. ? "!=" === b
  897. : b
  898. ? ((e += ""),
  899. "=" === b
  900. ? e === c
  901. : "!=" === b
  902. ? e !== c
  903. : "^=" === b
  904. ? c && 0 === e.indexOf(c)
  905. : "*=" === b
  906. ? c && e.indexOf(c) > -1
  907. : "$=" === b
  908. ? c && e.slice(-c.length) === c
  909. : "~=" === b
  910. ? (" " + e.replace(Q, " ") + " ").indexOf(c) >
  911. -1
  912. : "|=" === b
  913. ? e === c ||
  914. e.slice(0, c.length + 1) === c + "-"
  915. : !1)
  916. : !0;
  917. };
  918. },
  919. CHILD: function(a, b, c, d, e) {
  920. var f = "nth" !== a.slice(0, 3),
  921. g = "last" !== a.slice(-4),
  922. h = "of-type" === b;
  923. return 1 === d && 0 === e
  924. ? function(a) {
  925. return !!a.parentNode;
  926. }
  927. : function(b, c, i) {
  928. var j,
  929. k,
  930. l,
  931. m,
  932. n,
  933. o,
  934. p = f !== g ? "nextSibling" : "previousSibling",
  935. q = b.parentNode,
  936. r = h && b.nodeName.toLowerCase(),
  937. s = !i && !h;
  938. if (q) {
  939. if (f) {
  940. while (p) {
  941. l = b;
  942. while ((l = l[p]))
  943. if (
  944. h
  945. ? l.nodeName.toLowerCase() === r
  946. : 1 === l.nodeType
  947. )
  948. return !1;
  949. o = p = "only" === a && !o && "nextSibling";
  950. }
  951. return !0;
  952. }
  953. if (((o = [g ? q.firstChild : q.lastChild]), g && s)) {
  954. (k = q[u] || (q[u] = {})),
  955. (j = k[a] || []),
  956. (n = j[0] === w && j[1]),
  957. (m = j[0] === w && j[2]),
  958. (l = n && q.childNodes[n]);
  959. while ((l = (++n && l && l[p]) || (m = n = 0) || o.pop()))
  960. if (1 === l.nodeType && ++m && l === b) {
  961. k[a] = [w, n, m];
  962. break;
  963. }
  964. } else if (
  965. s &&
  966. (j = (b[u] || (b[u] = {}))[a]) &&
  967. j[0] === w
  968. )
  969. m = j[1];
  970. else
  971. while ((l = (++n && l && l[p]) || (m = n = 0) || o.pop()))
  972. if (
  973. (h
  974. ? l.nodeName.toLowerCase() === r
  975. : 1 === l.nodeType) &&
  976. ++m &&
  977. (s && ((l[u] || (l[u] = {}))[a] = [w, m]), l === b)
  978. )
  979. break;
  980. return (m -= e), m === d || (m % d === 0 && m / d >= 0);
  981. }
  982. };
  983. },
  984. PSEUDO: function(a, b) {
  985. var c,
  986. e =
  987. d.pseudos[a] ||
  988. d.setFilters[a.toLowerCase()] ||
  989. ga.error("unsupported pseudo: " + a);
  990. return e[u]
  991. ? e(b)
  992. : e.length > 1
  993. ? ((c = [a, a, "", b]),
  994. d.setFilters.hasOwnProperty(a.toLowerCase())
  995. ? ia(function(a, c) {
  996. var d,
  997. f = e(a, b),
  998. g = f.length;
  999. while (g--) (d = J(a, f[g])), (a[d] = !(c[d] = f[g]));
  1000. })
  1001. : function(a) {
  1002. return e(a, 0, c);
  1003. })
  1004. : e;
  1005. }
  1006. },
  1007. pseudos: {
  1008. not: ia(function(a) {
  1009. var b = [],
  1010. c = [],
  1011. d = h(a.replace(R, "$1"));
  1012. return d[u]
  1013. ? ia(function(a, b, c, e) {
  1014. var f,
  1015. g = d(a, null, e, []),
  1016. h = a.length;
  1017. while (h--) (f = g[h]) && (a[h] = !(b[h] = f));
  1018. })
  1019. : function(a, e, f) {
  1020. return (b[0] = a), d(b, null, f, c), (b[0] = null), !c.pop();
  1021. };
  1022. }),
  1023. has: ia(function(a) {
  1024. return function(b) {
  1025. return ga(a, b).length > 0;
  1026. };
  1027. }),
  1028. contains: ia(function(a) {
  1029. return (
  1030. (a = a.replace(ca, da)),
  1031. function(b) {
  1032. return (b.textContent || b.innerText || e(b)).indexOf(a) > -1;
  1033. }
  1034. );
  1035. }),
  1036. lang: ia(function(a) {
  1037. return (
  1038. W.test(a || "") || ga.error("unsupported lang: " + a),
  1039. (a = a.replace(ca, da).toLowerCase()),
  1040. function(b) {
  1041. var c;
  1042. do
  1043. if (
  1044. (c = p
  1045. ? b.lang
  1046. : b.getAttribute("xml:lang") || b.getAttribute("lang"))
  1047. )
  1048. return (
  1049. (c = c.toLowerCase()), c === a || 0 === c.indexOf(a + "-")
  1050. );
  1051. while ((b = b.parentNode) && 1 === b.nodeType);
  1052. return !1;
  1053. }
  1054. );
  1055. }),
  1056. target: function(b) {
  1057. var c = a.location && a.location.hash;
  1058. return c && c.slice(1) === b.id;
  1059. },
  1060. root: function(a) {
  1061. return a === o;
  1062. },
  1063. focus: function(a) {
  1064. return (
  1065. a === n.activeElement &&
  1066. (!n.hasFocus || n.hasFocus()) &&
  1067. !!(a.type || a.href || ~a.tabIndex)
  1068. );
  1069. },
  1070. enabled: function(a) {
  1071. return a.disabled === !1;
  1072. },
  1073. disabled: function(a) {
  1074. return a.disabled === !0;
  1075. },
  1076. checked: function(a) {
  1077. var b = a.nodeName.toLowerCase();
  1078. return (
  1079. ("input" === b && !!a.checked) || ("option" === b && !!a.selected)
  1080. );
  1081. },
  1082. selected: function(a) {
  1083. return (
  1084. a.parentNode && a.parentNode.selectedIndex, a.selected === !0
  1085. );
  1086. },
  1087. empty: function(a) {
  1088. for (a = a.firstChild; a; a = a.nextSibling)
  1089. if (a.nodeType < 6) return !1;
  1090. return !0;
  1091. },
  1092. parent: function(a) {
  1093. return !d.pseudos.empty(a);
  1094. },
  1095. header: function(a) {
  1096. return Z.test(a.nodeName);
  1097. },
  1098. input: function(a) {
  1099. return Y.test(a.nodeName);
  1100. },
  1101. button: function(a) {
  1102. var b = a.nodeName.toLowerCase();
  1103. return ("input" === b && "button" === a.type) || "button" === b;
  1104. },
  1105. text: function(a) {
  1106. var b;
  1107. return (
  1108. "input" === a.nodeName.toLowerCase() &&
  1109. "text" === a.type &&
  1110. (null == (b = a.getAttribute("type")) ||
  1111. "text" === b.toLowerCase())
  1112. );
  1113. },
  1114. first: oa(function() {
  1115. return [0];
  1116. }),
  1117. last: oa(function(a, b) {
  1118. return [b - 1];
  1119. }),
  1120. eq: oa(function(a, b, c) {
  1121. return [0 > c ? c + b : c];
  1122. }),
  1123. even: oa(function(a, b) {
  1124. for (var c = 0; b > c; c += 2) a.push(c);
  1125. return a;
  1126. }),
  1127. odd: oa(function(a, b) {
  1128. for (var c = 1; b > c; c += 2) a.push(c);
  1129. return a;
  1130. }),
  1131. lt: oa(function(a, b, c) {
  1132. for (var d = 0 > c ? c + b : c; --d >= 0; ) a.push(d);
  1133. return a;
  1134. }),
  1135. gt: oa(function(a, b, c) {
  1136. for (var d = 0 > c ? c + b : c; ++d < b; ) a.push(d);
  1137. return a;
  1138. })
  1139. }
  1140. }),
  1141. (d.pseudos.nth = d.pseudos.eq);
  1142. for (b in { radio: !0, checkbox: !0, file: !0, password: !0, image: !0 })
  1143. d.pseudos[b] = ma(b);
  1144. for (b in { submit: !0, reset: !0 }) d.pseudos[b] = na(b);
  1145. function qa() {}
  1146. (qa.prototype = d.filters = d.pseudos),
  1147. (d.setFilters = new qa()),
  1148. (g = ga.tokenize = function(a, b) {
  1149. var c,
  1150. e,
  1151. f,
  1152. g,
  1153. h,
  1154. i,
  1155. j,
  1156. k = z[a + " "];
  1157. if (k) return b ? 0 : k.slice(0);
  1158. (h = a), (i = []), (j = d.preFilter);
  1159. while (h) {
  1160. (!c || (e = S.exec(h))) &&
  1161. (e && (h = h.slice(e[0].length) || h), i.push((f = []))),
  1162. (c = !1),
  1163. (e = T.exec(h)) &&
  1164. ((c = e.shift()),
  1165. f.push({ value: c, type: e[0].replace(R, " ") }),
  1166. (h = h.slice(c.length)));
  1167. for (g in d.filter)
  1168. !(e = X[g].exec(h)) ||
  1169. (j[g] && !(e = j[g](e))) ||
  1170. ((c = e.shift()),
  1171. f.push({ value: c, type: g, matches: e }),
  1172. (h = h.slice(c.length)));
  1173. if (!c) break;
  1174. }
  1175. return b ? h.length : h ? ga.error(a) : z(a, i).slice(0);
  1176. });
  1177. function ra(a) {
  1178. for (var b = 0, c = a.length, d = ""; c > b; b++) d += a[b].value;
  1179. return d;
  1180. }
  1181. function sa(a, b, c) {
  1182. var d = b.dir,
  1183. e = c && "parentNode" === d,
  1184. f = x++;
  1185. return b.first
  1186. ? function(b, c, f) {
  1187. while ((b = b[d])) if (1 === b.nodeType || e) return a(b, c, f);
  1188. }
  1189. : function(b, c, g) {
  1190. var h,
  1191. i,
  1192. j = [w, f];
  1193. if (g) {
  1194. while ((b = b[d]))
  1195. if ((1 === b.nodeType || e) && a(b, c, g)) return !0;
  1196. } else
  1197. while ((b = b[d]))
  1198. if (1 === b.nodeType || e) {
  1199. if (
  1200. ((i = b[u] || (b[u] = {})),
  1201. (h = i[d]) && h[0] === w && h[1] === f)
  1202. )
  1203. return (j[2] = h[2]);
  1204. if (((i[d] = j), (j[2] = a(b, c, g)))) return !0;
  1205. }
  1206. };
  1207. }
  1208. function ta(a) {
  1209. return a.length > 1
  1210. ? function(b, c, d) {
  1211. var e = a.length;
  1212. while (e--) if (!a[e](b, c, d)) return !1;
  1213. return !0;
  1214. }
  1215. : a[0];
  1216. }
  1217. function ua(a, b, c) {
  1218. for (var d = 0, e = b.length; e > d; d++) ga(a, b[d], c);
  1219. return c;
  1220. }
  1221. function va(a, b, c, d, e) {
  1222. for (var f, g = [], h = 0, i = a.length, j = null != b; i > h; h++)
  1223. (f = a[h]) && (!c || c(f, d, e)) && (g.push(f), j && b.push(h));
  1224. return g;
  1225. }
  1226. function wa(a, b, c, d, e, f) {
  1227. return (
  1228. d && !d[u] && (d = wa(d)),
  1229. e && !e[u] && (e = wa(e, f)),
  1230. ia(function(f, g, h, i) {
  1231. var j,
  1232. k,
  1233. l,
  1234. m = [],
  1235. n = [],
  1236. o = g.length,
  1237. p = f || ua(b || "*", h.nodeType ? [h] : h, []),
  1238. q = !a || (!f && b) ? p : va(p, m, a, h, i),
  1239. r = c ? (e || (f ? a : o || d) ? [] : g) : q;
  1240. if ((c && c(q, r, h, i), d)) {
  1241. (j = va(r, n)), d(j, [], h, i), (k = j.length);
  1242. while (k--) (l = j[k]) && (r[n[k]] = !(q[n[k]] = l));
  1243. }
  1244. if (f) {
  1245. if (e || a) {
  1246. if (e) {
  1247. (j = []), (k = r.length);
  1248. while (k--) (l = r[k]) && j.push((q[k] = l));
  1249. e(null, (r = []), j, i);
  1250. }
  1251. k = r.length;
  1252. while (k--)
  1253. (l = r[k]) &&
  1254. (j = e ? J(f, l) : m[k]) > -1 &&
  1255. (f[j] = !(g[j] = l));
  1256. }
  1257. } else (r = va(r === g ? r.splice(o, r.length) : r)), e ? e(null, g, r, i) : H.apply(g, r);
  1258. })
  1259. );
  1260. }
  1261. function xa(a) {
  1262. for (
  1263. var b,
  1264. c,
  1265. e,
  1266. f = a.length,
  1267. g = d.relative[a[0].type],
  1268. h = g || d.relative[" "],
  1269. i = g ? 1 : 0,
  1270. k = sa(
  1271. function(a) {
  1272. return a === b;
  1273. },
  1274. h,
  1275. !0
  1276. ),
  1277. l = sa(
  1278. function(a) {
  1279. return J(b, a) > -1;
  1280. },
  1281. h,
  1282. !0
  1283. ),
  1284. m = [
  1285. function(a, c, d) {
  1286. var e =
  1287. (!g && (d || c !== j)) ||
  1288. ((b = c).nodeType ? k(a, c, d) : l(a, c, d));
  1289. return (b = null), e;
  1290. }
  1291. ];
  1292. f > i;
  1293. i++
  1294. )
  1295. if ((c = d.relative[a[i].type])) m = [sa(ta(m), c)];
  1296. else {
  1297. if (((c = d.filter[a[i].type].apply(null, a[i].matches)), c[u])) {
  1298. for (e = ++i; f > e; e++) if (d.relative[a[e].type]) break;
  1299. return wa(
  1300. i > 1 && ta(m),
  1301. i > 1 &&
  1302. ra(
  1303. a
  1304. .slice(0, i - 1)
  1305. .concat({ value: " " === a[i - 2].type ? "*" : "" })
  1306. ).replace(R, "$1"),
  1307. c,
  1308. e > i && xa(a.slice(i, e)),
  1309. f > e && xa((a = a.slice(e))),
  1310. f > e && ra(a)
  1311. );
  1312. }
  1313. m.push(c);
  1314. }
  1315. return ta(m);
  1316. }
  1317. function ya(a, b) {
  1318. var c = b.length > 0,
  1319. e = a.length > 0,
  1320. f = function(f, g, h, i, k) {
  1321. var l,
  1322. m,
  1323. o,
  1324. p = 0,
  1325. q = "0",
  1326. r = f && [],
  1327. s = [],
  1328. t = j,
  1329. u = f || (e && d.find.TAG("*", k)),
  1330. v = (w += null == t ? 1 : Math.random() || 0.1),
  1331. x = u.length;
  1332. for (k && (j = g !== n && g); q !== x && null != (l = u[q]); q++) {
  1333. if (e && l) {
  1334. m = 0;
  1335. while ((o = a[m++]))
  1336. if (o(l, g, h)) {
  1337. i.push(l);
  1338. break;
  1339. }
  1340. k && (w = v);
  1341. }
  1342. c && ((l = !o && l) && p--, f && r.push(l));
  1343. }
  1344. if (((p += q), c && q !== p)) {
  1345. m = 0;
  1346. while ((o = b[m++])) o(r, s, g, h);
  1347. if (f) {
  1348. if (p > 0) while (q--) r[q] || s[q] || (s[q] = F.call(i));
  1349. s = va(s);
  1350. }
  1351. H.apply(i, s),
  1352. k && !f && s.length > 0 && p + b.length > 1 && ga.uniqueSort(i);
  1353. }
  1354. return k && ((w = v), (j = t)), r;
  1355. };
  1356. return c ? ia(f) : f;
  1357. }
  1358. return (
  1359. (h = ga.compile = function(a, b) {
  1360. var c,
  1361. d = [],
  1362. e = [],
  1363. f = A[a + " "];
  1364. if (!f) {
  1365. b || (b = g(a)), (c = b.length);
  1366. while (c--) (f = xa(b[c])), f[u] ? d.push(f) : e.push(f);
  1367. (f = A(a, ya(e, d))), (f.selector = a);
  1368. }
  1369. return f;
  1370. }),
  1371. (i = ga.select = function(a, b, e, f) {
  1372. var i,
  1373. j,
  1374. k,
  1375. l,
  1376. m,
  1377. n = "function" == typeof a && a,
  1378. o = !f && g((a = n.selector || a));
  1379. if (((e = e || []), 1 === o.length)) {
  1380. if (
  1381. ((j = o[0] = o[0].slice(0)),
  1382. j.length > 2 &&
  1383. "ID" === (k = j[0]).type &&
  1384. c.getById &&
  1385. 9 === b.nodeType &&
  1386. p &&
  1387. d.relative[j[1].type])
  1388. ) {
  1389. if (
  1390. ((b = (d.find.ID(k.matches[0].replace(ca, da), b) || [])[0]), !b)
  1391. )
  1392. return e;
  1393. n && (b = b.parentNode), (a = a.slice(j.shift().value.length));
  1394. }
  1395. i = X.needsContext.test(a) ? 0 : j.length;
  1396. while (i--) {
  1397. if (((k = j[i]), d.relative[(l = k.type)])) break;
  1398. if (
  1399. (m = d.find[l]) &&
  1400. (f = m(
  1401. k.matches[0].replace(ca, da),
  1402. (aa.test(j[0].type) && pa(b.parentNode)) || b
  1403. ))
  1404. ) {
  1405. if ((j.splice(i, 1), (a = f.length && ra(j)), !a))
  1406. return H.apply(e, f), e;
  1407. break;
  1408. }
  1409. }
  1410. }
  1411. return (
  1412. (n || h(a, o))(f, b, !p, e, (aa.test(a) && pa(b.parentNode)) || b), e
  1413. );
  1414. }),
  1415. (c.sortStable =
  1416. u
  1417. .split("")
  1418. .sort(B)
  1419. .join("") === u),
  1420. (c.detectDuplicates = !!l),
  1421. m(),
  1422. (c.sortDetached = ja(function(a) {
  1423. return 1 & a.compareDocumentPosition(n.createElement("div"));
  1424. })),
  1425. ja(function(a) {
  1426. return (
  1427. (a.innerHTML = "<a href='#'></a>"),
  1428. "#" === a.firstChild.getAttribute("href")
  1429. );
  1430. }) ||
  1431. ka("type|href|height|width", function(a, b, c) {
  1432. return c
  1433. ? void 0
  1434. : a.getAttribute(b, "type" === b.toLowerCase() ? 1 : 2);
  1435. }),
  1436. (c.attributes &&
  1437. ja(function(a) {
  1438. return (
  1439. (a.innerHTML = "<input/>"),
  1440. a.firstChild.setAttribute("value", ""),
  1441. "" === a.firstChild.getAttribute("value")
  1442. );
  1443. })) ||
  1444. ka("value", function(a, b, c) {
  1445. return c || "input" !== a.nodeName.toLowerCase()
  1446. ? void 0
  1447. : a.defaultValue;
  1448. }),
  1449. ja(function(a) {
  1450. return null == a.getAttribute("disabled");
  1451. }) ||
  1452. ka(K, function(a, b, c) {
  1453. var d;
  1454. return c
  1455. ? void 0
  1456. : a[b] === !0
  1457. ? b.toLowerCase()
  1458. : (d = a.getAttributeNode(b)) && d.specified
  1459. ? d.value
  1460. : null;
  1461. }),
  1462. ga
  1463. );
  1464. })(a);
  1465. (m.find = s),
  1466. (m.expr = s.selectors),
  1467. (m.expr[":"] = m.expr.pseudos),
  1468. (m.unique = s.uniqueSort),
  1469. (m.text = s.getText),
  1470. (m.isXMLDoc = s.isXML),
  1471. (m.contains = s.contains);
  1472. var t = m.expr.match.needsContext,
  1473. u = /^<(\w+)\s*\/?>(?:<\/\1>|)$/,
  1474. v = /^.[^:#\[\.,]*$/;
  1475. function w(a, b, c) {
  1476. if (m.isFunction(b))
  1477. return m.grep(a, function(a, d) {
  1478. return !!b.call(a, d, a) !== c;
  1479. });
  1480. if (b.nodeType)
  1481. return m.grep(a, function(a) {
  1482. return (a === b) !== c;
  1483. });
  1484. if ("string" == typeof b) {
  1485. if (v.test(b)) return m.filter(b, a, c);
  1486. b = m.filter(b, a);
  1487. }
  1488. return m.grep(a, function(a) {
  1489. return m.inArray(a, b) >= 0 !== c;
  1490. });
  1491. }
  1492. (m.filter = function(a, b, c) {
  1493. var d = b[0];
  1494. return (
  1495. c && (a = ":not(" + a + ")"),
  1496. 1 === b.length && 1 === d.nodeType
  1497. ? m.find.matchesSelector(d, a)
  1498. ? [d]
  1499. : []
  1500. : m.find.matches(
  1501. a,
  1502. m.grep(b, function(a) {
  1503. return 1 === a.nodeType;
  1504. })
  1505. )
  1506. );
  1507. }),
  1508. m.fn.extend({
  1509. find: function(a) {
  1510. var b,
  1511. c = [],
  1512. d = this,
  1513. e = d.length;
  1514. if ("string" != typeof a)
  1515. return this.pushStack(
  1516. m(a).filter(function() {
  1517. for (b = 0; e > b; b++) if (m.contains(d[b], this)) return !0;
  1518. })
  1519. );
  1520. for (b = 0; e > b; b++) m.find(a, d[b], c);
  1521. return (
  1522. (c = this.pushStack(e > 1 ? m.unique(c) : c)),
  1523. (c.selector = this.selector ? this.selector + " " + a : a),
  1524. c
  1525. );
  1526. },
  1527. filter: function(a) {
  1528. return this.pushStack(w(this, a || [], !1));
  1529. },
  1530. not: function(a) {
  1531. return this.pushStack(w(this, a || [], !0));
  1532. },
  1533. is: function(a) {
  1534. return !!w(this, "string" == typeof a && t.test(a) ? m(a) : a || [], !1)
  1535. .length;
  1536. }
  1537. });
  1538. var x,
  1539. y = a.document,
  1540. z = /^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/,
  1541. A = (m.fn.init = function(a, b) {
  1542. var c, d;
  1543. if (!a) return this;
  1544. if ("string" == typeof a) {
  1545. if (
  1546. ((c =
  1547. "<" === a.charAt(0) &&
  1548. ">" === a.charAt(a.length - 1) &&
  1549. a.length >= 3
  1550. ? [null, a, null]
  1551. : z.exec(a)),
  1552. !c || (!c[1] && b))
  1553. )
  1554. return !b || b.jquery
  1555. ? (b || x).find(a)
  1556. : this.constructor(b).find(a);
  1557. if (c[1]) {
  1558. if (
  1559. ((b = b instanceof m ? b[0] : b),
  1560. m.merge(
  1561. this,
  1562. m.parseHTML(c[1], b && b.nodeType ? b.ownerDocument || b : y, !0)
  1563. ),
  1564. u.test(c[1]) && m.isPlainObject(b))
  1565. )
  1566. for (c in b)
  1567. m.isFunction(this[c]) ? this[c](b[c]) : this.attr(c, b[c]);
  1568. return this;
  1569. }
  1570. if (((d = y.getElementById(c[2])), d && d.parentNode)) {
  1571. if (d.id !== c[2]) return x.find(a);
  1572. (this.length = 1), (this[0] = d);
  1573. }
  1574. return (this.context = y), (this.selector = a), this;
  1575. }
  1576. return a.nodeType
  1577. ? ((this.context = this[0] = a), (this.length = 1), this)
  1578. : m.isFunction(a)
  1579. ? "undefined" != typeof x.ready
  1580. ? x.ready(a)
  1581. : a(m)
  1582. : (void 0 !== a.selector &&
  1583. ((this.selector = a.selector), (this.context = a.context)),
  1584. m.makeArray(a, this));
  1585. });
  1586. (A.prototype = m.fn), (x = m(y));
  1587. var B = /^(?:parents|prev(?:Until|All))/,
  1588. C = { children: !0, contents: !0, next: !0, prev: !0 };
  1589. m.extend({
  1590. dir: function(a, b, c) {
  1591. var d = [],
  1592. e = a[b];
  1593. while (
  1594. e &&
  1595. 9 !== e.nodeType &&
  1596. (void 0 === c || 1 !== e.nodeType || !m(e).is(c))
  1597. )
  1598. 1 === e.nodeType && d.push(e), (e = e[b]);
  1599. return d;
  1600. },
  1601. sibling: function(a, b) {
  1602. for (var c = []; a; a = a.nextSibling)
  1603. 1 === a.nodeType && a !== b && c.push(a);
  1604. return c;
  1605. }
  1606. }),
  1607. m.fn.extend({
  1608. has: function(a) {
  1609. var b,
  1610. c = m(a, this),
  1611. d = c.length;
  1612. return this.filter(function() {
  1613. for (b = 0; d > b; b++) if (m.contains(this, c[b])) return !0;
  1614. });
  1615. },
  1616. closest: function(a, b) {
  1617. for (
  1618. var c,
  1619. d = 0,
  1620. e = this.length,
  1621. f = [],
  1622. g = t.test(a) || "string" != typeof a ? m(a, b || this.context) : 0;
  1623. e > d;
  1624. d++
  1625. )
  1626. for (c = this[d]; c && c !== b; c = c.parentNode)
  1627. if (
  1628. c.nodeType < 11 &&
  1629. (g
  1630. ? g.index(c) > -1
  1631. : 1 === c.nodeType && m.find.matchesSelector(c, a))
  1632. ) {
  1633. f.push(c);
  1634. break;
  1635. }
  1636. return this.pushStack(f.length > 1 ? m.unique(f) : f);
  1637. },
  1638. index: function(a) {
  1639. return a
  1640. ? "string" == typeof a
  1641. ? m.inArray(this[0], m(a))
  1642. : m.inArray(a.jquery ? a[0] : a, this)
  1643. : this[0] && this[0].parentNode
  1644. ? this.first().prevAll().length
  1645. : -1;
  1646. },
  1647. add: function(a, b) {
  1648. return this.pushStack(m.unique(m.merge(this.get(), m(a, b))));
  1649. },
  1650. addBack: function(a) {
  1651. return this.add(
  1652. null == a ? this.prevObject : this.prevObject.filter(a)
  1653. );
  1654. }
  1655. });
  1656. function D(a, b) {
  1657. do a = a[b];
  1658. while (a && 1 !== a.nodeType);
  1659. return a;
  1660. }
  1661. m.each(
  1662. {
  1663. parent: function(a) {
  1664. var b = a.parentNode;
  1665. return b && 11 !== b.nodeType ? b : null;
  1666. },
  1667. parents: function(a) {
  1668. return m.dir(a, "parentNode");
  1669. },
  1670. parentsUntil: function(a, b, c) {
  1671. return m.dir(a, "parentNode", c);
  1672. },
  1673. next: function(a) {
  1674. return D(a, "nextSibling");
  1675. },
  1676. prev: function(a) {
  1677. return D(a, "previousSibling");
  1678. },
  1679. nextAll: function(a) {
  1680. return m.dir(a, "nextSibling");
  1681. },
  1682. prevAll: function(a) {
  1683. return m.dir(a, "previousSibling");
  1684. },
  1685. nextUntil: function(a, b, c) {
  1686. return m.dir(a, "nextSibling", c);
  1687. },
  1688. prevUntil: function(a, b, c) {
  1689. return m.dir(a, "previousSibling", c);
  1690. },
  1691. siblings: function(a) {
  1692. return m.sibling((a.parentNode || {}).firstChild, a);
  1693. },
  1694. children: function(a) {
  1695. return m.sibling(a.firstChild);
  1696. },
  1697. contents: function(a) {
  1698. return m.nodeName(a, "iframe")
  1699. ? a.contentDocument || a.contentWindow.document
  1700. : m.merge([], a.childNodes);
  1701. }
  1702. },
  1703. function(a, b) {
  1704. m.fn[a] = function(c, d) {
  1705. var e = m.map(this, b, c);
  1706. return (
  1707. "Until" !== a.slice(-5) && (d = c),
  1708. d && "string" == typeof d && (e = m.filter(d, e)),
  1709. this.length > 1 &&
  1710. (C[a] || (e = m.unique(e)), B.test(a) && (e = e.reverse())),
  1711. this.pushStack(e)
  1712. );
  1713. };
  1714. }
  1715. );
  1716. var E = /\S+/g,
  1717. F = {};
  1718. function G(a) {
  1719. var b = (F[a] = {});
  1720. return (
  1721. m.each(a.match(E) || [], function(a, c) {
  1722. b[c] = !0;
  1723. }),
  1724. b
  1725. );
  1726. }
  1727. (m.Callbacks = function(a) {
  1728. a = "string" == typeof a ? F[a] || G(a) : m.extend({}, a);
  1729. var b,
  1730. c,
  1731. d,
  1732. e,
  1733. f,
  1734. g,
  1735. h = [],
  1736. i = !a.once && [],
  1737. j = function(l) {
  1738. for (
  1739. c = a.memory && l, d = !0, f = g || 0, g = 0, e = h.length, b = !0;
  1740. h && e > f;
  1741. f++
  1742. )
  1743. if (h[f].apply(l[0], l[1]) === !1 && a.stopOnFalse) {
  1744. c = !1;
  1745. break;
  1746. }
  1747. (b = !1),
  1748. h && (i ? i.length && j(i.shift()) : c ? (h = []) : k.disable());
  1749. },
  1750. k = {
  1751. add: function() {
  1752. if (h) {
  1753. var d = h.length;
  1754. !(function f(b) {
  1755. m.each(b, function(b, c) {
  1756. var d = m.type(c);
  1757. "function" === d
  1758. ? (a.unique && k.has(c)) || h.push(c)
  1759. : c && c.length && "string" !== d && f(c);
  1760. });
  1761. })(arguments),
  1762. b ? (e = h.length) : c && ((g = d), j(c));
  1763. }
  1764. return this;
  1765. },
  1766. remove: function() {
  1767. return (
  1768. h &&
  1769. m.each(arguments, function(a, c) {
  1770. var d;
  1771. while ((d = m.inArray(c, h, d)) > -1)
  1772. h.splice(d, 1), b && (e >= d && e--, f >= d && f--);
  1773. }),
  1774. this
  1775. );
  1776. },
  1777. has: function(a) {
  1778. return a ? m.inArray(a, h) > -1 : !(!h || !h.length);
  1779. },
  1780. empty: function() {
  1781. return (h = []), (e = 0), this;
  1782. },
  1783. disable: function() {
  1784. return (h = i = c = void 0), this;
  1785. },
  1786. disabled: function() {
  1787. return !h;
  1788. },
  1789. lock: function() {
  1790. return (i = void 0), c || k.disable(), this;
  1791. },
  1792. locked: function() {
  1793. return !i;
  1794. },
  1795. fireWith: function(a, c) {
  1796. return (
  1797. !h ||
  1798. (d && !i) ||
  1799. ((c = c || []),
  1800. (c = [a, c.slice ? c.slice() : c]),
  1801. b ? i.push(c) : j(c)),
  1802. this
  1803. );
  1804. },
  1805. fire: function() {
  1806. return k.fireWith(this, arguments), this;
  1807. },
  1808. fired: function() {
  1809. return !!d;
  1810. }
  1811. };
  1812. return k;
  1813. }),
  1814. m.extend({
  1815. Deferred: function(a) {
  1816. var b = [
  1817. ["resolve", "done", m.Callbacks("once memory"), "resolved"],
  1818. ["reject", "fail", m.Callbacks("once memory"), "rejected"],
  1819. ["notify", "progress", m.Callbacks("memory")]
  1820. ],
  1821. c = "pending",
  1822. d = {
  1823. state: function() {
  1824. return c;
  1825. },
  1826. always: function() {
  1827. return e.done(arguments).fail(arguments), this;
  1828. },
  1829. then: function() {
  1830. var a = arguments;
  1831. return m
  1832. .Deferred(function(c) {
  1833. m.each(b, function(b, f) {
  1834. var g = m.isFunction(a[b]) && a[b];
  1835. e[f[1]](function() {
  1836. var a = g && g.apply(this, arguments);
  1837. a && m.isFunction(a.promise)
  1838. ? a
  1839. .promise()
  1840. .done(c.resolve)
  1841. .fail(c.reject)
  1842. .progress(c.notify)
  1843. : c[f[0] + "With"](
  1844. this === d ? c.promise() : this,
  1845. g ? [a] : arguments
  1846. );
  1847. });
  1848. }),
  1849. (a = null);
  1850. })
  1851. .promise();
  1852. },
  1853. promise: function(a) {
  1854. return null != a ? m.extend(a, d) : d;
  1855. }
  1856. },
  1857. e = {};
  1858. return (
  1859. (d.pipe = d.then),
  1860. m.each(b, function(a, f) {
  1861. var g = f[2],
  1862. h = f[3];
  1863. (d[f[1]] = g.add),
  1864. h &&
  1865. g.add(
  1866. function() {
  1867. c = h;
  1868. },
  1869. b[1 ^ a][2].disable,
  1870. b[2][2].lock
  1871. ),
  1872. (e[f[0]] = function() {
  1873. return e[f[0] + "With"](this === e ? d : this, arguments), this;
  1874. }),
  1875. (e[f[0] + "With"] = g.fireWith);
  1876. }),
  1877. d.promise(e),
  1878. a && a.call(e, e),
  1879. e
  1880. );
  1881. },
  1882. when: function(a) {
  1883. var b = 0,
  1884. c = d.call(arguments),
  1885. e = c.length,
  1886. f = 1 !== e || (a && m.isFunction(a.promise)) ? e : 0,
  1887. g = 1 === f ? a : m.Deferred(),
  1888. h = function(a, b, c) {
  1889. return function(e) {
  1890. (b[a] = this),
  1891. (c[a] = arguments.length > 1 ? d.call(arguments) : e),
  1892. c === i ? g.notifyWith(b, c) : --f || g.resolveWith(b, c);
  1893. };
  1894. },
  1895. i,
  1896. j,
  1897. k;
  1898. if (e > 1)
  1899. for (i = new Array(e), j = new Array(e), k = new Array(e); e > b; b++)
  1900. c[b] && m.isFunction(c[b].promise)
  1901. ? c[b]
  1902. .promise()
  1903. .done(h(b, k, c))
  1904. .fail(g.reject)
  1905. .progress(h(b, j, i))
  1906. : --f;
  1907. return f || g.resolveWith(k, c), g.promise();
  1908. }
  1909. });
  1910. var H;
  1911. (m.fn.ready = function(a) {
  1912. return m.ready.promise().done(a), this;
  1913. }),
  1914. m.extend({
  1915. isReady: !1,
  1916. readyWait: 1,
  1917. holdReady: function(a) {
  1918. a ? m.readyWait++ : m.ready(!0);
  1919. },
  1920. ready: function(a) {
  1921. if (a === !0 ? !--m.readyWait : !m.isReady) {
  1922. if (!y.body) return setTimeout(m.ready);
  1923. (m.isReady = !0),
  1924. (a !== !0 && --m.readyWait > 0) ||
  1925. (H.resolveWith(y, [m]),
  1926. m.fn.triggerHandler &&
  1927. (m(y).triggerHandler("ready"), m(y).off("ready")));
  1928. }
  1929. }
  1930. });
  1931. function I() {
  1932. y.addEventListener
  1933. ? (y.removeEventListener("DOMContentLoaded", J, !1),
  1934. a.removeEventListener("load", J, !1))
  1935. : (y.detachEvent("onreadystatechange", J), a.detachEvent("onload", J));
  1936. }
  1937. function J() {
  1938. (y.addEventListener ||
  1939. "load" === event.type ||
  1940. "complete" === y.readyState) &&
  1941. (I(), m.ready());
  1942. }
  1943. m.ready.promise = function(b) {
  1944. if (!H)
  1945. if (((H = m.Deferred()), "complete" === y.readyState))
  1946. setTimeout(m.ready);
  1947. else if (y.addEventListener)
  1948. y.addEventListener("DOMContentLoaded", J, !1),
  1949. a.addEventListener("load", J, !1);
  1950. else {
  1951. y.attachEvent("onreadystatechange", J), a.attachEvent("onload", J);
  1952. var c = !1;
  1953. try {
  1954. c = null == a.frameElement && y.documentElement;
  1955. } catch (d) {}
  1956. c &&
  1957. c.doScroll &&
  1958. !(function e() {
  1959. if (!m.isReady) {
  1960. try {
  1961. c.doScroll("left");
  1962. } catch (a) {
  1963. return setTimeout(e, 50);
  1964. }
  1965. I(), m.ready();
  1966. }
  1967. })();
  1968. }
  1969. return H.promise(b);
  1970. };
  1971. var K = "undefined",
  1972. L;
  1973. for (L in m(k)) break;
  1974. (k.ownLast = "0" !== L),
  1975. (k.inlineBlockNeedsLayout = !1),
  1976. m(function() {
  1977. var a, b, c, d;
  1978. (c = y.getElementsByTagName("body")[0]),
  1979. c &&
  1980. c.style &&
  1981. ((b = y.createElement("div")),
  1982. (d = y.createElement("div")),
  1983. (d.style.cssText =
  1984. "position:absolute;border:0;width:0;height:0;top:0;left:-9999px"),
  1985. c.appendChild(d).appendChild(b),
  1986. typeof b.style.zoom !== K &&
  1987. ((b.style.cssText =
  1988. "display:inline;margin:0;border:0;padding:1px;width:1px;zoom:1"),
  1989. (k.inlineBlockNeedsLayout = a = 3 === b.offsetWidth),
  1990. a && (c.style.zoom = 1)),
  1991. c.removeChild(d));
  1992. }),
  1993. (function() {
  1994. var a = y.createElement("div");
  1995. if (null == k.deleteExpando) {
  1996. k.deleteExpando = !0;
  1997. try {
  1998. delete a.test;
  1999. } catch (b) {
  2000. k.deleteExpando = !1;
  2001. }
  2002. }
  2003. a = null;
  2004. })(),
  2005. (m.acceptData = function(a) {
  2006. var b = m.noData[(a.nodeName + " ").toLowerCase()],
  2007. c = +a.nodeType || 1;
  2008. return 1 !== c && 9 !== c
  2009. ? !1
  2010. : !b || (b !== !0 && a.getAttribute("classid") === b);
  2011. });
  2012. var M = /^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,
  2013. N = /([A-Z])/g;
  2014. function O(a, b, c) {
  2015. if (void 0 === c && 1 === a.nodeType) {
  2016. var d = "data-" + b.replace(N, "-$1").toLowerCase();
  2017. if (((c = a.getAttribute(d)), "string" == typeof c)) {
  2018. try {
  2019. c =
  2020. "true" === c
  2021. ? !0
  2022. : "false" === c
  2023. ? !1
  2024. : "null" === c
  2025. ? null
  2026. : +c + "" === c
  2027. ? +c
  2028. : M.test(c)
  2029. ? m.parseJSON(c)
  2030. : c;
  2031. } catch (e) {}
  2032. m.data(a, b, c);
  2033. } else c = void 0;
  2034. }
  2035. return c;
  2036. }
  2037. function P(a) {
  2038. var b;
  2039. for (b in a)
  2040. if (("data" !== b || !m.isEmptyObject(a[b])) && "toJSON" !== b) return !1;
  2041. return !0;
  2042. }
  2043. function Q(a, b, d, e) {
  2044. if (m.acceptData(a)) {
  2045. var f,
  2046. g,
  2047. h = m.expando,
  2048. i = a.nodeType,
  2049. j = i ? m.cache : a,
  2050. k = i ? a[h] : a[h] && h;
  2051. if (
  2052. (k && j[k] && (e || j[k].data)) ||
  2053. void 0 !== d ||
  2054. "string" != typeof b
  2055. )
  2056. return (
  2057. k || (k = i ? (a[h] = c.pop() || m.guid++) : h),
  2058. j[k] || (j[k] = i ? {} : { toJSON: m.noop }),
  2059. ("object" == typeof b || "function" == typeof b) &&
  2060. (e
  2061. ? (j[k] = m.extend(j[k], b))
  2062. : (j[k].data = m.extend(j[k].data, b))),
  2063. (g = j[k]),
  2064. e || (g.data || (g.data = {}), (g = g.data)),
  2065. void 0 !== d && (g[m.camelCase(b)] = d),
  2066. "string" == typeof b
  2067. ? ((f = g[b]), null == f && (f = g[m.camelCase(b)]))
  2068. : (f = g),
  2069. f
  2070. );
  2071. }
  2072. }
  2073. function R(a, b, c) {
  2074. if (m.acceptData(a)) {
  2075. var d,
  2076. e,
  2077. f = a.nodeType,
  2078. g = f ? m.cache : a,
  2079. h = f ? a[m.expando] : m.expando;
  2080. if (g[h]) {
  2081. if (b && (d = c ? g[h] : g[h].data)) {
  2082. m.isArray(b)
  2083. ? (b = b.concat(m.map(b, m.camelCase)))
  2084. : b in d
  2085. ? (b = [b])
  2086. : ((b = m.camelCase(b)), (b = b in d ? [b] : b.split(" "))),
  2087. (e = b.length);
  2088. while (e--) delete d[b[e]];
  2089. if (c ? !P(d) : !m.isEmptyObject(d)) return;
  2090. }
  2091. (c || (delete g[h].data, P(g[h]))) &&
  2092. (f
  2093. ? m.cleanData([a], !0)
  2094. : k.deleteExpando || g != g.window
  2095. ? delete g[h]
  2096. : (g[h] = null));
  2097. }
  2098. }
  2099. }
  2100. m.extend({
  2101. cache: {},
  2102. noData: {
  2103. "applet ": !0,
  2104. "embed ": !0,
  2105. "object ": "clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
  2106. },
  2107. hasData: function(a) {
  2108. return (
  2109. (a = a.nodeType ? m.cache[a[m.expando]] : a[m.expando]), !!a && !P(a)
  2110. );
  2111. },
  2112. data: function(a, b, c) {
  2113. return Q(a, b, c);
  2114. },
  2115. removeData: function(a, b) {
  2116. return R(a, b);
  2117. },
  2118. _data: function(a, b, c) {
  2119. return Q(a, b, c, !0);
  2120. },
  2121. _removeData: function(a, b) {
  2122. return R(a, b, !0);
  2123. }
  2124. }),
  2125. m.fn.extend({
  2126. data: function(a, b) {
  2127. var c,
  2128. d,
  2129. e,
  2130. f = this[0],
  2131. g = f && f.attributes;
  2132. if (void 0 === a) {
  2133. if (
  2134. this.length &&
  2135. ((e = m.data(f)), 1 === f.nodeType && !m._data(f, "parsedAttrs"))
  2136. ) {
  2137. c = g.length;
  2138. while (c--)
  2139. g[c] &&
  2140. ((d = g[c].name),
  2141. 0 === d.indexOf("data-") &&
  2142. ((d = m.camelCase(d.slice(5))), O(f, d, e[d])));
  2143. m._data(f, "parsedAttrs", !0);
  2144. }
  2145. return e;
  2146. }
  2147. return "object" == typeof a
  2148. ? this.each(function() {
  2149. m.data(this, a);
  2150. })
  2151. : arguments.length > 1
  2152. ? this.each(function() {
  2153. m.data(this, a, b);
  2154. })
  2155. : f
  2156. ? O(f, a, m.data(f, a))
  2157. : void 0;
  2158. },
  2159. removeData: function(a) {
  2160. return this.each(function() {
  2161. m.removeData(this, a);
  2162. });
  2163. }
  2164. }),
  2165. m.extend({
  2166. queue: function(a, b, c) {
  2167. var d;
  2168. return a
  2169. ? ((b = (b || "fx") + "queue"),
  2170. (d = m._data(a, b)),
  2171. c &&
  2172. (!d || m.isArray(c)
  2173. ? (d = m._data(a, b, m.makeArray(c)))
  2174. : d.push(c)),
  2175. d || [])
  2176. : void 0;
  2177. },
  2178. dequeue: function(a, b) {
  2179. b = b || "fx";
  2180. var c = m.queue(a, b),
  2181. d = c.length,
  2182. e = c.shift(),
  2183. f = m._queueHooks(a, b),
  2184. g = function() {
  2185. m.dequeue(a, b);
  2186. };
  2187. "inprogress" === e && ((e = c.shift()), d--),
  2188. e &&
  2189. ("fx" === b && c.unshift("inprogress"),
  2190. delete f.stop,
  2191. e.call(a, g, f)),
  2192. !d && f && f.empty.fire();
  2193. },
  2194. _queueHooks: function(a, b) {
  2195. var c = b + "queueHooks";
  2196. return (
  2197. m._data(a, c) ||
  2198. m._data(a, c, {
  2199. empty: m.Callbacks("once memory").add(function() {
  2200. m._removeData(a, b + "queue"), m._removeData(a, c);
  2201. })
  2202. })
  2203. );
  2204. }
  2205. }),
  2206. m.fn.extend({
  2207. queue: function(a, b) {
  2208. var c = 2;
  2209. return (
  2210. "string" != typeof a && ((b = a), (a = "fx"), c--),
  2211. arguments.length < c
  2212. ? m.queue(this[0], a)
  2213. : void 0 === b
  2214. ? this
  2215. : this.each(function() {
  2216. var c = m.queue(this, a, b);
  2217. m._queueHooks(this, a),
  2218. "fx" === a && "inprogress" !== c[0] && m.dequeue(this, a);
  2219. })
  2220. );
  2221. },
  2222. dequeue: function(a) {
  2223. return this.each(function() {
  2224. m.dequeue(this, a);
  2225. });
  2226. },
  2227. clearQueue: function(a) {
  2228. return this.queue(a || "fx", []);
  2229. },
  2230. promise: function(a, b) {
  2231. var c,
  2232. d = 1,
  2233. e = m.Deferred(),
  2234. f = this,
  2235. g = this.length,
  2236. h = function() {
  2237. --d || e.resolveWith(f, [f]);
  2238. };
  2239. "string" != typeof a && ((b = a), (a = void 0)), (a = a || "fx");
  2240. while (g--)
  2241. (c = m._data(f[g], a + "queueHooks")),
  2242. c && c.empty && (d++, c.empty.add(h));
  2243. return h(), e.promise(b);
  2244. }
  2245. });
  2246. var S = /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source,
  2247. T = ["Top", "Right", "Bottom", "Left"],
  2248. U = function(a, b) {
  2249. return (
  2250. (a = b || a),
  2251. "none" === m.css(a, "display") || !m.contains(a.ownerDocument, a)
  2252. );
  2253. },
  2254. V = (m.access = function(a, b, c, d, e, f, g) {
  2255. var h = 0,
  2256. i = a.length,
  2257. j = null == c;
  2258. if ("object" === m.type(c)) {
  2259. e = !0;
  2260. for (h in c) m.access(a, b, h, c[h], !0, f, g);
  2261. } else if (
  2262. void 0 !== d &&
  2263. ((e = !0),
  2264. m.isFunction(d) || (g = !0),
  2265. j &&
  2266. (g
  2267. ? (b.call(a, d), (b = null))
  2268. : ((j = b),
  2269. (b = function(a, b, c) {
  2270. return j.call(m(a), c);
  2271. }))),
  2272. b)
  2273. )
  2274. for (; i > h; h++) b(a[h], c, g ? d : d.call(a[h], h, b(a[h], c)));
  2275. return e ? a : j ? b.call(a) : i ? b(a[0], c) : f;
  2276. }),
  2277. W = /^(?:checkbox|radio)$/i;
  2278. !(function() {
  2279. var a = y.createElement("input"),
  2280. b = y.createElement("div"),
  2281. c = y.createDocumentFragment();
  2282. if (
  2283. ((b.innerHTML =
  2284. " <link/><table></table><a href='/a'>a</a><input type='checkbox'/>"),
  2285. (k.leadingWhitespace = 3 === b.firstChild.nodeType),
  2286. (k.tbody = !b.getElementsByTagName("tbody").length),
  2287. (k.htmlSerialize = !!b.getElementsByTagName("link").length),
  2288. (k.html5Clone =
  2289. "<:nav></:nav>" !== y.createElement("nav").cloneNode(!0).outerHTML),
  2290. (a.type = "checkbox"),
  2291. (a.checked = !0),
  2292. c.appendChild(a),
  2293. (k.appendChecked = a.checked),
  2294. (b.innerHTML = "<textarea>x</textarea>"),
  2295. (k.noCloneChecked = !!b.cloneNode(!0).lastChild.defaultValue),
  2296. c.appendChild(b),
  2297. (b.innerHTML = "<input type='radio' checked='checked' name='t'/>"),
  2298. (k.checkClone = b.cloneNode(!0).cloneNode(!0).lastChild.checked),
  2299. (k.noCloneEvent = !0),
  2300. b.attachEvent &&
  2301. (b.attachEvent("onclick", function() {
  2302. k.noCloneEvent = !1;
  2303. }),
  2304. b.cloneNode(!0).click()),
  2305. null == k.deleteExpando)
  2306. ) {
  2307. k.deleteExpando = !0;
  2308. try {
  2309. delete b.test;
  2310. } catch (d) {
  2311. k.deleteExpando = !1;
  2312. }
  2313. }
  2314. })(),
  2315. (function() {
  2316. var b,
  2317. c,
  2318. d = y.createElement("div");
  2319. for (b in { submit: !0, change: !0, focusin: !0 })
  2320. (c = "on" + b),
  2321. (k[b + "Bubbles"] = c in a) ||
  2322. (d.setAttribute(c, "t"),
  2323. (k[b + "Bubbles"] = d.attributes[c].expando === !1));
  2324. d = null;
  2325. })();
  2326. var X = /^(?:input|select|textarea)$/i,
  2327. Y = /^key/,
  2328. Z = /^(?:mouse|pointer|contextmenu)|click/,
  2329. $ = /^(?:focusinfocus|focusoutblur)$/,
  2330. _ = /^([^.]*)(?:\.(.+)|)$/;
  2331. function aa() {
  2332. return !0;
  2333. }
  2334. function ba() {
  2335. return !1;
  2336. }
  2337. function ca() {
  2338. try {
  2339. return y.activeElement;
  2340. } catch (a) {}
  2341. }
  2342. (m.event = {
  2343. global: {},
  2344. add: function(a, b, c, d, e) {
  2345. var f,
  2346. g,
  2347. h,
  2348. i,
  2349. j,
  2350. k,
  2351. l,
  2352. n,
  2353. o,
  2354. p,
  2355. q,
  2356. r = m._data(a);
  2357. if (r) {
  2358. c.handler && ((i = c), (c = i.handler), (e = i.selector)),
  2359. c.guid || (c.guid = m.guid++),
  2360. (g = r.events) || (g = r.events = {}),
  2361. (k = r.handle) ||
  2362. ((k = r.handle = function(a) {
  2363. return typeof m === K || (a && m.event.triggered === a.type)
  2364. ? void 0
  2365. : m.event.dispatch.apply(k.elem, arguments);
  2366. }),
  2367. (k.elem = a)),
  2368. (b = (b || "").match(E) || [""]),
  2369. (h = b.length);
  2370. while (h--)
  2371. (f = _.exec(b[h]) || []),
  2372. (o = q = f[1]),
  2373. (p = (f[2] || "").split(".").sort()),
  2374. o &&
  2375. ((j = m.event.special[o] || {}),
  2376. (o = (e ? j.delegateType : j.bindType) || o),
  2377. (j = m.event.special[o] || {}),
  2378. (l = m.extend(
  2379. {
  2380. type: o,
  2381. origType: q,
  2382. data: d,
  2383. handler: c,
  2384. guid: c.guid,
  2385. selector: e,
  2386. needsContext: e && m.expr.match.needsContext.test(e),
  2387. namespace: p.join(".")
  2388. },
  2389. i
  2390. )),
  2391. (n = g[o]) ||
  2392. ((n = g[o] = []),
  2393. (n.delegateCount = 0),
  2394. (j.setup && j.setup.call(a, d, p, k) !== !1) ||
  2395. (a.addEventListener
  2396. ? a.addEventListener(o, k, !1)
  2397. : a.attachEvent && a.attachEvent("on" + o, k))),
  2398. j.add &&
  2399. (j.add.call(a, l), l.handler.guid || (l.handler.guid = c.guid)),
  2400. e ? n.splice(n.delegateCount++, 0, l) : n.push(l),
  2401. (m.event.global[o] = !0));
  2402. a = null;
  2403. }
  2404. },
  2405. remove: function(a, b, c, d, e) {
  2406. var f,
  2407. g,
  2408. h,
  2409. i,
  2410. j,
  2411. k,
  2412. l,
  2413. n,
  2414. o,
  2415. p,
  2416. q,
  2417. r = m.hasData(a) && m._data(a);
  2418. if (r && (k = r.events)) {
  2419. (b = (b || "").match(E) || [""]), (j = b.length);
  2420. while (j--)
  2421. if (
  2422. ((h = _.exec(b[j]) || []),
  2423. (o = q = h[1]),
  2424. (p = (h[2] || "").split(".").sort()),
  2425. o)
  2426. ) {
  2427. (l = m.event.special[o] || {}),
  2428. (o = (d ? l.delegateType : l.bindType) || o),
  2429. (n = k[o] || []),
  2430. (h =
  2431. h[2] &&
  2432. new RegExp("(^|\\.)" + p.join("\\.(?:.*\\.|)") + "(\\.|$)")),
  2433. (i = f = n.length);
  2434. while (f--)
  2435. (g = n[f]),
  2436. (!e && q !== g.origType) ||
  2437. (c && c.guid !== g.guid) ||
  2438. (h && !h.test(g.namespace)) ||
  2439. (d && d !== g.selector && ("**" !== d || !g.selector)) ||
  2440. (n.splice(f, 1),
  2441. g.selector && n.delegateCount--,
  2442. l.remove && l.remove.call(a, g));
  2443. i &&
  2444. !n.length &&
  2445. ((l.teardown && l.teardown.call(a, p, r.handle) !== !1) ||
  2446. m.removeEvent(a, o, r.handle),
  2447. delete k[o]);
  2448. } else for (o in k) m.event.remove(a, o + b[j], c, d, !0);
  2449. m.isEmptyObject(k) && (delete r.handle, m._removeData(a, "events"));
  2450. }
  2451. },
  2452. trigger: function(b, c, d, e) {
  2453. var f,
  2454. g,
  2455. h,
  2456. i,
  2457. k,
  2458. l,
  2459. n,
  2460. o = [d || y],
  2461. p = j.call(b, "type") ? b.type : b,
  2462. q = j.call(b, "namespace") ? b.namespace.split(".") : [];
  2463. if (
  2464. ((h = l = d = d || y),
  2465. 3 !== d.nodeType &&
  2466. 8 !== d.nodeType &&
  2467. !$.test(p + m.event.triggered) &&
  2468. (p.indexOf(".") >= 0 &&
  2469. ((q = p.split(".")), (p = q.shift()), q.sort()),
  2470. (g = p.indexOf(":") < 0 && "on" + p),
  2471. (b = b[m.expando] ? b : new m.Event(p, "object" == typeof b && b)),
  2472. (b.isTrigger = e ? 2 : 3),
  2473. (b.namespace = q.join(".")),
  2474. (b.namespace_re = b.namespace
  2475. ? new RegExp("(^|\\.)" + q.join("\\.(?:.*\\.|)") + "(\\.|$)")
  2476. : null),
  2477. (b.result = void 0),
  2478. b.target || (b.target = d),
  2479. (c = null == c ? [b] : m.makeArray(c, [b])),
  2480. (k = m.event.special[p] || {}),
  2481. e || !k.trigger || k.trigger.apply(d, c) !== !1))
  2482. ) {
  2483. if (!e && !k.noBubble && !m.isWindow(d)) {
  2484. for (
  2485. i = k.delegateType || p, $.test(i + p) || (h = h.parentNode);
  2486. h;
  2487. h = h.parentNode
  2488. )
  2489. o.push(h), (l = h);
  2490. l === (d.ownerDocument || y) &&
  2491. o.push(l.defaultView || l.parentWindow || a);
  2492. }
  2493. n = 0;
  2494. while ((h = o[n++]) && !b.isPropagationStopped())
  2495. (b.type = n > 1 ? i : k.bindType || p),
  2496. (f = (m._data(h, "events") || {})[b.type] && m._data(h, "handle")),
  2497. f && f.apply(h, c),
  2498. (f = g && h[g]),
  2499. f &&
  2500. f.apply &&
  2501. m.acceptData(h) &&
  2502. ((b.result = f.apply(h, c)),
  2503. b.result === !1 && b.preventDefault());
  2504. if (
  2505. ((b.type = p),
  2506. !e &&
  2507. !b.isDefaultPrevented() &&
  2508. (!k._default || k._default.apply(o.pop(), c) === !1) &&
  2509. m.acceptData(d) &&
  2510. g &&
  2511. d[p] &&
  2512. !m.isWindow(d))
  2513. ) {
  2514. (l = d[g]), l && (d[g] = null), (m.event.triggered = p);
  2515. try {
  2516. d[p]();
  2517. } catch (r) {}
  2518. (m.event.triggered = void 0), l && (d[g] = l);
  2519. }
  2520. return b.result;
  2521. }
  2522. },
  2523. dispatch: function(a) {
  2524. a = m.event.fix(a);
  2525. var b,
  2526. c,
  2527. e,
  2528. f,
  2529. g,
  2530. h = [],
  2531. i = d.call(arguments),
  2532. j = (m._data(this, "events") || {})[a.type] || [],
  2533. k = m.event.special[a.type] || {};
  2534. if (
  2535. ((i[0] = a),
  2536. (a.delegateTarget = this),
  2537. !k.preDispatch || k.preDispatch.call(this, a) !== !1)
  2538. ) {
  2539. (h = m.event.handlers.call(this, a, j)), (b = 0);
  2540. while ((f = h[b++]) && !a.isPropagationStopped()) {
  2541. (a.currentTarget = f.elem), (g = 0);
  2542. while ((e = f.handlers[g++]) && !a.isImmediatePropagationStopped())
  2543. (!a.namespace_re || a.namespace_re.test(e.namespace)) &&
  2544. ((a.handleObj = e),
  2545. (a.data = e.data),
  2546. (c = (
  2547. (m.event.special[e.origType] || {}).handle || e.handler
  2548. ).apply(f.elem, i)),
  2549. void 0 !== c &&
  2550. (a.result = c) === !1 &&
  2551. (a.preventDefault(), a.stopPropagation()));
  2552. }
  2553. return k.postDispatch && k.postDispatch.call(this, a), a.result;
  2554. }
  2555. },
  2556. handlers: function(a, b) {
  2557. var c,
  2558. d,
  2559. e,
  2560. f,
  2561. g = [],
  2562. h = b.delegateCount,
  2563. i = a.target;
  2564. if (h && i.nodeType && (!a.button || "click" !== a.type))
  2565. for (; i != this; i = i.parentNode || this)
  2566. if (1 === i.nodeType && (i.disabled !== !0 || "click" !== a.type)) {
  2567. for (e = [], f = 0; h > f; f++)
  2568. (d = b[f]),
  2569. (c = d.selector + " "),
  2570. void 0 === e[c] &&
  2571. (e[c] = d.needsContext
  2572. ? m(c, this).index(i) >= 0
  2573. : m.find(c, this, null, [i]).length),
  2574. e[c] && e.push(d);
  2575. e.length && g.push({ elem: i, handlers: e });
  2576. }
  2577. return h < b.length && g.push({ elem: this, handlers: b.slice(h) }), g;
  2578. },
  2579. fix: function(a) {
  2580. if (a[m.expando]) return a;
  2581. var b,
  2582. c,
  2583. d,
  2584. e = a.type,
  2585. f = a,
  2586. g = this.fixHooks[e];
  2587. g ||
  2588. (this.fixHooks[e] = g = Z.test(e)
  2589. ? this.mouseHooks
  2590. : Y.test(e)
  2591. ? this.keyHooks
  2592. : {}),
  2593. (d = g.props ? this.props.concat(g.props) : this.props),
  2594. (a = new m.Event(f)),
  2595. (b = d.length);
  2596. while (b--) (c = d[b]), (a[c] = f[c]);
  2597. return (
  2598. a.target || (a.target = f.srcElement || y),
  2599. 3 === a.target.nodeType && (a.target = a.target.parentNode),
  2600. (a.metaKey = !!a.metaKey),
  2601. g.filter ? g.filter(a, f) : a
  2602. );
  2603. },
  2604. props: "altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(
  2605. " "
  2606. ),
  2607. fixHooks: {},
  2608. keyHooks: {
  2609. props: "char charCode key keyCode".split(" "),
  2610. filter: function(a, b) {
  2611. return (
  2612. null == a.which &&
  2613. (a.which = null != b.charCode ? b.charCode : b.keyCode),
  2614. a
  2615. );
  2616. }
  2617. },
  2618. mouseHooks: {
  2619. props: "button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(
  2620. " "
  2621. ),
  2622. filter: function(a, b) {
  2623. var c,
  2624. d,
  2625. e,
  2626. f = b.button,
  2627. g = b.fromElement;
  2628. return (
  2629. null == a.pageX &&
  2630. null != b.clientX &&
  2631. ((d = a.target.ownerDocument || y),
  2632. (e = d.documentElement),
  2633. (c = d.body),
  2634. (a.pageX =
  2635. b.clientX +
  2636. ((e && e.scrollLeft) || (c && c.scrollLeft) || 0) -
  2637. ((e && e.clientLeft) || (c && c.clientLeft) || 0)),
  2638. (a.pageY =
  2639. b.clientY +
  2640. ((e && e.scrollTop) || (c && c.scrollTop) || 0) -
  2641. ((e && e.clientTop) || (c && c.clientTop) || 0))),
  2642. !a.relatedTarget &&
  2643. g &&
  2644. (a.relatedTarget = g === a.target ? b.toElement : g),
  2645. a.which ||
  2646. void 0 === f ||
  2647. (a.which = 1 & f ? 1 : 2 & f ? 3 : 4 & f ? 2 : 0),
  2648. a
  2649. );
  2650. }
  2651. },
  2652. special: {
  2653. load: { noBubble: !0 },
  2654. focus: {
  2655. trigger: function() {
  2656. if (this !== ca() && this.focus)
  2657. try {
  2658. return this.focus(), !1;
  2659. } catch (a) {}
  2660. },
  2661. delegateType: "focusin"
  2662. },
  2663. blur: {
  2664. trigger: function() {
  2665. return this === ca() && this.blur ? (this.blur(), !1) : void 0;
  2666. },
  2667. delegateType: "focusout"
  2668. },
  2669. click: {
  2670. trigger: function() {
  2671. return m.nodeName(this, "input") &&
  2672. "checkbox" === this.type &&
  2673. this.click
  2674. ? (this.click(), !1)
  2675. : void 0;
  2676. },
  2677. _default: function(a) {
  2678. return m.nodeName(a.target, "a");
  2679. }
  2680. },
  2681. beforeunload: {
  2682. postDispatch: function(a) {
  2683. void 0 !== a.result &&
  2684. a.originalEvent &&
  2685. (a.originalEvent.returnValue = a.result);
  2686. }
  2687. }
  2688. },
  2689. simulate: function(a, b, c, d) {
  2690. var e = m.extend(new m.Event(), c, {
  2691. type: a,
  2692. isSimulated: !0,
  2693. originalEvent: {}
  2694. });
  2695. d ? m.event.trigger(e, null, b) : m.event.dispatch.call(b, e),
  2696. e.isDefaultPrevented() && c.preventDefault();
  2697. }
  2698. }),
  2699. (m.removeEvent = y.removeEventListener
  2700. ? function(a, b, c) {
  2701. a.removeEventListener && a.removeEventListener(b, c, !1);
  2702. }
  2703. : function(a, b, c) {
  2704. var d = "on" + b;
  2705. a.detachEvent &&
  2706. (typeof a[d] === K && (a[d] = null), a.detachEvent(d, c));
  2707. }),
  2708. (m.Event = function(a, b) {
  2709. return this instanceof m.Event
  2710. ? (a && a.type
  2711. ? ((this.originalEvent = a),
  2712. (this.type = a.type),
  2713. (this.isDefaultPrevented =
  2714. a.defaultPrevented ||
  2715. (void 0 === a.defaultPrevented && a.returnValue === !1)
  2716. ? aa
  2717. : ba))
  2718. : (this.type = a),
  2719. b && m.extend(this, b),
  2720. (this.timeStamp = (a && a.timeStamp) || m.now()),
  2721. void (this[m.expando] = !0))
  2722. : new m.Event(a, b);
  2723. }),
  2724. (m.Event.prototype = {
  2725. isDefaultPrevented: ba,
  2726. isPropagationStopped: ba,
  2727. isImmediatePropagationStopped: ba,
  2728. preventDefault: function() {
  2729. var a = this.originalEvent;
  2730. (this.isDefaultPrevented = aa),
  2731. a && (a.preventDefault ? a.preventDefault() : (a.returnValue = !1));
  2732. },
  2733. stopPropagation: function() {
  2734. var a = this.originalEvent;
  2735. (this.isPropagationStopped = aa),
  2736. a &&
  2737. (a.stopPropagation && a.stopPropagation(), (a.cancelBubble = !0));
  2738. },
  2739. stopImmediatePropagation: function() {
  2740. var a = this.originalEvent;
  2741. (this.isImmediatePropagationStopped = aa),
  2742. a && a.stopImmediatePropagation && a.stopImmediatePropagation(),
  2743. this.stopPropagation();
  2744. }
  2745. }),
  2746. m.each(
  2747. {
  2748. mouseenter: "mouseover",
  2749. mouseleave: "mouseout",
  2750. pointerenter: "pointerover",
  2751. pointerleave: "pointerout"
  2752. },
  2753. function(a, b) {
  2754. m.event.special[a] = {
  2755. delegateType: b,
  2756. bindType: b,
  2757. handle: function(a) {
  2758. var c,
  2759. d = this,
  2760. e = a.relatedTarget,
  2761. f = a.handleObj;
  2762. return (
  2763. (!e || (e !== d && !m.contains(d, e))) &&
  2764. ((a.type = f.origType),
  2765. (c = f.handler.apply(this, arguments)),
  2766. (a.type = b)),
  2767. c
  2768. );
  2769. }
  2770. };
  2771. }
  2772. ),
  2773. k.submitBubbles ||
  2774. (m.event.special.submit = {
  2775. setup: function() {
  2776. return m.nodeName(this, "form")
  2777. ? !1
  2778. : void m.event.add(this, "click._submit keypress._submit", function(
  2779. a
  2780. ) {
  2781. var b = a.target,
  2782. c =
  2783. m.nodeName(b, "input") || m.nodeName(b, "button")
  2784. ? b.form
  2785. : void 0;
  2786. c &&
  2787. !m._data(c, "submitBubbles") &&
  2788. (m.event.add(c, "submit._submit", function(a) {
  2789. a._submit_bubble = !0;
  2790. }),
  2791. m._data(c, "submitBubbles", !0));
  2792. });
  2793. },
  2794. postDispatch: function(a) {
  2795. a._submit_bubble &&
  2796. (delete a._submit_bubble,
  2797. this.parentNode &&
  2798. !a.isTrigger &&
  2799. m.event.simulate("submit", this.parentNode, a, !0));
  2800. },
  2801. teardown: function() {
  2802. return m.nodeName(this, "form")
  2803. ? !1
  2804. : void m.event.remove(this, "._submit");
  2805. }
  2806. }),
  2807. k.changeBubbles ||
  2808. (m.event.special.change = {
  2809. setup: function() {
  2810. return X.test(this.nodeName)
  2811. ? (("checkbox" === this.type || "radio" === this.type) &&
  2812. (m.event.add(this, "propertychange._change", function(a) {
  2813. "checked" === a.originalEvent.propertyName &&
  2814. (this._just_changed = !0);
  2815. }),
  2816. m.event.add(this, "click._change", function(a) {
  2817. this._just_changed &&
  2818. !a.isTrigger &&
  2819. (this._just_changed = !1),
  2820. m.event.simulate("change", this, a, !0);
  2821. })),
  2822. !1)
  2823. : void m.event.add(this, "beforeactivate._change", function(a) {
  2824. var b = a.target;
  2825. X.test(b.nodeName) &&
  2826. !m._data(b, "changeBubbles") &&
  2827. (m.event.add(b, "change._change", function(a) {
  2828. !this.parentNode ||
  2829. a.isSimulated ||
  2830. a.isTrigger ||
  2831. m.event.simulate("change", this.parentNode, a, !0);
  2832. }),
  2833. m._data(b, "changeBubbles", !0));
  2834. });
  2835. },
  2836. handle: function(a) {
  2837. var b = a.target;
  2838. return this !== b ||
  2839. a.isSimulated ||
  2840. a.isTrigger ||
  2841. ("radio" !== b.type && "checkbox" !== b.type)
  2842. ? a.handleObj.handler.apply(this, arguments)
  2843. : void 0;
  2844. },
  2845. teardown: function() {
  2846. return m.event.remove(this, "._change"), !X.test(this.nodeName);
  2847. }
  2848. }),
  2849. k.focusinBubbles ||
  2850. m.each({ focus: "focusin", blur: "focusout" }, function(a, b) {
  2851. var c = function(a) {
  2852. m.event.simulate(b, a.target, m.event.fix(a), !0);
  2853. };
  2854. m.event.special[b] = {
  2855. setup: function() {
  2856. var d = this.ownerDocument || this,
  2857. e = m._data(d, b);
  2858. e || d.addEventListener(a, c, !0), m._data(d, b, (e || 0) + 1);
  2859. },
  2860. teardown: function() {
  2861. var d = this.ownerDocument || this,
  2862. e = m._data(d, b) - 1;
  2863. e
  2864. ? m._data(d, b, e)
  2865. : (d.removeEventListener(a, c, !0), m._removeData(d, b));
  2866. }
  2867. };
  2868. }),
  2869. m.fn.extend({
  2870. on: function(a, b, c, d, e) {
  2871. var f, g;
  2872. if ("object" == typeof a) {
  2873. "string" != typeof b && ((c = c || b), (b = void 0));
  2874. for (f in a) this.on(f, b, c, a[f], e);
  2875. return this;
  2876. }
  2877. if (
  2878. (null == c && null == d
  2879. ? ((d = b), (c = b = void 0))
  2880. : null == d &&
  2881. ("string" == typeof b
  2882. ? ((d = c), (c = void 0))
  2883. : ((d = c), (c = b), (b = void 0))),
  2884. d === !1)
  2885. )
  2886. d = ba;
  2887. else if (!d) return this;
  2888. return (
  2889. 1 === e &&
  2890. ((g = d),
  2891. (d = function(a) {
  2892. return m().off(a), g.apply(this, arguments);
  2893. }),
  2894. (d.guid = g.guid || (g.guid = m.guid++))),
  2895. this.each(function() {
  2896. m.event.add(this, a, d, c, b);
  2897. })
  2898. );
  2899. },
  2900. one: function(a, b, c, d) {
  2901. return this.on(a, b, c, d, 1);
  2902. },
  2903. off: function(a, b, c) {
  2904. var d, e;
  2905. if (a && a.preventDefault && a.handleObj)
  2906. return (
  2907. (d = a.handleObj),
  2908. m(a.delegateTarget).off(
  2909. d.namespace ? d.origType + "." + d.namespace : d.origType,
  2910. d.selector,
  2911. d.handler
  2912. ),
  2913. this
  2914. );
  2915. if ("object" == typeof a) {
  2916. for (e in a) this.off(e, b, a[e]);
  2917. return this;
  2918. }
  2919. return (
  2920. (b === !1 || "function" == typeof b) && ((c = b), (b = void 0)),
  2921. c === !1 && (c = ba),
  2922. this.each(function() {
  2923. m.event.remove(this, a, c, b);
  2924. })
  2925. );
  2926. },
  2927. trigger: function(a, b) {
  2928. return this.each(function() {
  2929. m.event.trigger(a, b, this);
  2930. });
  2931. },
  2932. triggerHandler: function(a, b) {
  2933. var c = this[0];
  2934. return c ? m.event.trigger(a, b, c, !0) : void 0;
  2935. }
  2936. });
  2937. function da(a) {
  2938. var b = ea.split("|"),
  2939. c = a.createDocumentFragment();
  2940. if (c.createElement) while (b.length) c.createElement(b.pop());
  2941. return c;
  2942. }
  2943. var ea =
  2944. "abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",
  2945. fa = / jQuery\d+="(?:null|\d+)"/g,
  2946. ga = new RegExp("<(?:" + ea + ")[\\s/>]", "i"),
  2947. ha = /^\s+/,
  2948. ia = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,
  2949. ja = /<([\w:]+)/,
  2950. ka = /<tbody/i,
  2951. la = /<|&#?\w+;/,
  2952. ma = /<(?:script|style|link)/i,
  2953. na = /checked\s*(?:[^=]|=\s*.checked.)/i,
  2954. oa = /^$|\/(?:java|ecma)script/i,
  2955. pa = /^true\/(.*)/,
  2956. qa = /^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g,
  2957. ra = {
  2958. option: [1, "<select multiple='multiple'>", "</select>"],
  2959. legend: [1, "<fieldset>", "</fieldset>"],
  2960. area: [1, "<map>", "</map>"],
  2961. param: [1, "<object>", "</object>"],
  2962. thead: [1, "<table>", "</table>"],
  2963. tr: [2, "<table><tbody>", "</tbody></table>"],
  2964. col: [2, "<table><tbody></tbody><colgroup>", "</colgroup></table>"],
  2965. td: [3, "<table><tbody><tr>", "</tr></tbody></table>"],
  2966. _default: k.htmlSerialize ? [0, "", ""] : [1, "X<div>", "</div>"]
  2967. },
  2968. sa = da(y),
  2969. ta = sa.appendChild(y.createElement("div"));
  2970. (ra.optgroup = ra.option),
  2971. (ra.tbody = ra.tfoot = ra.colgroup = ra.caption = ra.thead),
  2972. (ra.th = ra.td);
  2973. function ua(a, b) {
  2974. var c,
  2975. d,
  2976. e = 0,
  2977. f =
  2978. typeof a.getElementsByTagName !== K
  2979. ? a.getElementsByTagName(b || "*")
  2980. : typeof a.querySelectorAll !== K
  2981. ? a.querySelectorAll(b || "*")
  2982. : void 0;
  2983. if (!f)
  2984. for (f = [], c = a.childNodes || a; null != (d = c[e]); e++)
  2985. !b || m.nodeName(d, b) ? f.push(d) : m.merge(f, ua(d, b));
  2986. return void 0 === b || (b && m.nodeName(a, b)) ? m.merge([a], f) : f;
  2987. }
  2988. function va(a) {
  2989. W.test(a.type) && (a.defaultChecked = a.checked);
  2990. }
  2991. function wa(a, b) {
  2992. return m.nodeName(a, "table") &&
  2993. m.nodeName(11 !== b.nodeType ? b : b.firstChild, "tr")
  2994. ? a.getElementsByTagName("tbody")[0] ||
  2995. a.appendChild(a.ownerDocument.createElement("tbody"))
  2996. : a;
  2997. }
  2998. function xa(a) {
  2999. return (a.type = (null !== m.find.attr(a, "type")) + "/" + a.type), a;
  3000. }
  3001. function ya(a) {
  3002. var b = pa.exec(a.type);
  3003. return b ? (a.type = b[1]) : a.removeAttribute("type"), a;
  3004. }
  3005. function za(a, b) {
  3006. for (var c, d = 0; null != (c = a[d]); d++)
  3007. m._data(c, "globalEval", !b || m._data(b[d], "globalEval"));
  3008. }
  3009. function Aa(a, b) {
  3010. if (1 === b.nodeType && m.hasData(a)) {
  3011. var c,
  3012. d,
  3013. e,
  3014. f = m._data(a),
  3015. g = m._data(b, f),
  3016. h = f.events;
  3017. if (h) {
  3018. delete g.handle, (g.events = {});
  3019. for (c in h)
  3020. for (d = 0, e = h[c].length; e > d; d++) m.event.add(b, c, h[c][d]);
  3021. }
  3022. g.data && (g.data = m.extend({}, g.data));
  3023. }
  3024. }
  3025. function Ba(a, b) {
  3026. var c, d, e;
  3027. if (1 === b.nodeType) {
  3028. if (((c = b.nodeName.toLowerCase()), !k.noCloneEvent && b[m.expando])) {
  3029. e = m._data(b);
  3030. for (d in e.events) m.removeEvent(b, d, e.handle);
  3031. b.removeAttribute(m.expando);
  3032. }
  3033. "script" === c && b.text !== a.text
  3034. ? ((xa(b).text = a.text), ya(b))
  3035. : "object" === c
  3036. ? (b.parentNode && (b.outerHTML = a.outerHTML),
  3037. k.html5Clone &&
  3038. a.innerHTML &&
  3039. !m.trim(b.innerHTML) &&
  3040. (b.innerHTML = a.innerHTML))
  3041. : "input" === c && W.test(a.type)
  3042. ? ((b.defaultChecked = b.checked = a.checked),
  3043. b.value !== a.value && (b.value = a.value))
  3044. : "option" === c
  3045. ? (b.defaultSelected = b.selected = a.defaultSelected)
  3046. : ("input" === c || "textarea" === c) &&
  3047. (b.defaultValue = a.defaultValue);
  3048. }
  3049. }
  3050. m.extend({
  3051. clone: function(a, b, c) {
  3052. var d,
  3053. e,
  3054. f,
  3055. g,
  3056. h,
  3057. i = m.contains(a.ownerDocument, a);
  3058. if (
  3059. (k.html5Clone || m.isXMLDoc(a) || !ga.test("<" + a.nodeName + ">")
  3060. ? (f = a.cloneNode(!0))
  3061. : ((ta.innerHTML = a.outerHTML), ta.removeChild((f = ta.firstChild))),
  3062. !(
  3063. (k.noCloneEvent && k.noCloneChecked) ||
  3064. (1 !== a.nodeType && 11 !== a.nodeType) ||
  3065. m.isXMLDoc(a)
  3066. ))
  3067. )
  3068. for (d = ua(f), h = ua(a), g = 0; null != (e = h[g]); ++g)
  3069. d[g] && Ba(e, d[g]);
  3070. if (b)
  3071. if (c)
  3072. for (h = h || ua(a), d = d || ua(f), g = 0; null != (e = h[g]); g++)
  3073. Aa(e, d[g]);
  3074. else Aa(a, f);
  3075. return (
  3076. (d = ua(f, "script")),
  3077. d.length > 0 && za(d, !i && ua(a, "script")),
  3078. (d = h = e = null),
  3079. f
  3080. );
  3081. },
  3082. buildFragment: function(a, b, c, d) {
  3083. for (
  3084. var e, f, g, h, i, j, l, n = a.length, o = da(b), p = [], q = 0;
  3085. n > q;
  3086. q++
  3087. )
  3088. if (((f = a[q]), f || 0 === f))
  3089. if ("object" === m.type(f)) m.merge(p, f.nodeType ? [f] : f);
  3090. else if (la.test(f)) {
  3091. (h = h || o.appendChild(b.createElement("div"))),
  3092. (i = (ja.exec(f) || ["", ""])[1].toLowerCase()),
  3093. (l = ra[i] || ra._default),
  3094. (h.innerHTML = l[1] + f.replace(ia, "<$1></$2>") + l[2]),
  3095. (e = l[0]);
  3096. while (e--) h = h.lastChild;
  3097. if (
  3098. (!k.leadingWhitespace &&
  3099. ha.test(f) &&
  3100. p.push(b.createTextNode(ha.exec(f)[0])),
  3101. !k.tbody)
  3102. ) {
  3103. (f =
  3104. "table" !== i || ka.test(f)
  3105. ? "<table>" !== l[1] || ka.test(f)
  3106. ? 0
  3107. : h
  3108. : h.firstChild),
  3109. (e = f && f.childNodes.length);
  3110. while (e--)
  3111. m.nodeName((j = f.childNodes[e]), "tbody") &&
  3112. !j.childNodes.length &&
  3113. f.removeChild(j);
  3114. }
  3115. m.merge(p, h.childNodes), (h.textContent = "");
  3116. while (h.firstChild) h.removeChild(h.firstChild);
  3117. h = o.lastChild;
  3118. } else p.push(b.createTextNode(f));
  3119. h && o.removeChild(h),
  3120. k.appendChecked || m.grep(ua(p, "input"), va),
  3121. (q = 0);
  3122. while ((f = p[q++]))
  3123. if (
  3124. (!d || -1 === m.inArray(f, d)) &&
  3125. ((g = m.contains(f.ownerDocument, f)),
  3126. (h = ua(o.appendChild(f), "script")),
  3127. g && za(h),
  3128. c)
  3129. ) {
  3130. e = 0;
  3131. while ((f = h[e++])) oa.test(f.type || "") && c.push(f);
  3132. }
  3133. return (h = null), o;
  3134. },
  3135. cleanData: function(a, b) {
  3136. for (
  3137. var d,
  3138. e,
  3139. f,
  3140. g,
  3141. h = 0,
  3142. i = m.expando,
  3143. j = m.cache,
  3144. l = k.deleteExpando,
  3145. n = m.event.special;
  3146. null != (d = a[h]);
  3147. h++
  3148. )
  3149. if ((b || m.acceptData(d)) && ((f = d[i]), (g = f && j[f]))) {
  3150. if (g.events)
  3151. for (e in g.events)
  3152. n[e] ? m.event.remove(d, e) : m.removeEvent(d, e, g.handle);
  3153. j[f] &&
  3154. (delete j[f],
  3155. l
  3156. ? delete d[i]
  3157. : typeof d.removeAttribute !== K
  3158. ? d.removeAttribute(i)
  3159. : (d[i] = null),
  3160. c.push(f));
  3161. }
  3162. }
  3163. }),
  3164. m.fn.extend({
  3165. text: function(a) {
  3166. return V(
  3167. this,
  3168. function(a) {
  3169. return void 0 === a
  3170. ? m.text(this)
  3171. : this.empty().append(
  3172. ((this[0] && this[0].ownerDocument) || y).createTextNode(a)
  3173. );
  3174. },
  3175. null,
  3176. a,
  3177. arguments.length
  3178. );
  3179. },
  3180. append: function() {
  3181. return this.domManip(arguments, function(a) {
  3182. if (
  3183. 1 === this.nodeType ||
  3184. 11 === this.nodeType ||
  3185. 9 === this.nodeType
  3186. ) {
  3187. var b = wa(this, a);
  3188. b.appendChild(a);
  3189. }
  3190. });
  3191. },
  3192. prepend: function() {
  3193. return this.domManip(arguments, function(a) {
  3194. if (
  3195. 1 === this.nodeType ||
  3196. 11 === this.nodeType ||
  3197. 9 === this.nodeType
  3198. ) {
  3199. var b = wa(this, a);
  3200. b.insertBefore(a, b.firstChild);
  3201. }
  3202. });
  3203. },
  3204. before: function() {
  3205. return this.domManip(arguments, function(a) {
  3206. this.parentNode && this.parentNode.insertBefore(a, this);
  3207. });
  3208. },
  3209. after: function() {
  3210. return this.domManip(arguments, function(a) {
  3211. this.parentNode && this.parentNode.insertBefore(a, this.nextSibling);
  3212. });
  3213. },
  3214. remove: function(a, b) {
  3215. for (
  3216. var c, d = a ? m.filter(a, this) : this, e = 0;
  3217. null != (c = d[e]);
  3218. e++
  3219. )
  3220. b || 1 !== c.nodeType || m.cleanData(ua(c)),
  3221. c.parentNode &&
  3222. (b && m.contains(c.ownerDocument, c) && za(ua(c, "script")),
  3223. c.parentNode.removeChild(c));
  3224. return this;
  3225. },
  3226. empty: function() {
  3227. for (var a, b = 0; null != (a = this[b]); b++) {
  3228. 1 === a.nodeType && m.cleanData(ua(a, !1));
  3229. while (a.firstChild) a.removeChild(a.firstChild);
  3230. a.options && m.nodeName(a, "select") && (a.options.length = 0);
  3231. }
  3232. return this;
  3233. },
  3234. clone: function(a, b) {
  3235. return (
  3236. (a = null == a ? !1 : a),
  3237. (b = null == b ? a : b),
  3238. this.map(function() {
  3239. return m.clone(this, a, b);
  3240. })
  3241. );
  3242. },
  3243. html: function(a) {
  3244. return V(
  3245. this,
  3246. function(a) {
  3247. var b = this[0] || {},
  3248. c = 0,
  3249. d = this.length;
  3250. if (void 0 === a)
  3251. return 1 === b.nodeType ? b.innerHTML.replace(fa, "") : void 0;
  3252. if (
  3253. !(
  3254. "string" != typeof a ||
  3255. ma.test(a) ||
  3256. (!k.htmlSerialize && ga.test(a)) ||
  3257. (!k.leadingWhitespace && ha.test(a)) ||
  3258. ra[(ja.exec(a) || ["", ""])[1].toLowerCase()]
  3259. )
  3260. ) {
  3261. a = a.replace(ia, "<$1></$2>");
  3262. try {
  3263. for (; d > c; c++)
  3264. (b = this[c] || {}),
  3265. 1 === b.nodeType &&
  3266. (m.cleanData(ua(b, !1)), (b.innerHTML = a));
  3267. b = 0;
  3268. } catch (e) {}
  3269. }
  3270. b && this.empty().append(a);
  3271. },
  3272. null,
  3273. a,
  3274. arguments.length
  3275. );
  3276. },
  3277. replaceWith: function() {
  3278. var a = arguments[0];
  3279. return (
  3280. this.domManip(arguments, function(b) {
  3281. (a = this.parentNode),
  3282. m.cleanData(ua(this)),
  3283. a && a.replaceChild(b, this);
  3284. }),
  3285. a && (a.length || a.nodeType) ? this : this.remove()
  3286. );
  3287. },
  3288. detach: function(a) {
  3289. return this.remove(a, !0);
  3290. },
  3291. domManip: function(a, b) {
  3292. a = e.apply([], a);
  3293. var c,
  3294. d,
  3295. f,
  3296. g,
  3297. h,
  3298. i,
  3299. j = 0,
  3300. l = this.length,
  3301. n = this,
  3302. o = l - 1,
  3303. p = a[0],
  3304. q = m.isFunction(p);
  3305. if (q || (l > 1 && "string" == typeof p && !k.checkClone && na.test(p)))
  3306. return this.each(function(c) {
  3307. var d = n.eq(c);
  3308. q && (a[0] = p.call(this, c, d.html())), d.domManip(a, b);
  3309. });
  3310. if (
  3311. l &&
  3312. ((i = m.buildFragment(a, this[0].ownerDocument, !1, this)),
  3313. (c = i.firstChild),
  3314. 1 === i.childNodes.length && (i = c),
  3315. c)
  3316. ) {
  3317. for (g = m.map(ua(i, "script"), xa), f = g.length; l > j; j++)
  3318. (d = i),
  3319. j !== o &&
  3320. ((d = m.clone(d, !0, !0)), f && m.merge(g, ua(d, "script"))),
  3321. b.call(this[j], d, j);
  3322. if (f)
  3323. for (
  3324. h = g[g.length - 1].ownerDocument, m.map(g, ya), j = 0;
  3325. f > j;
  3326. j++
  3327. )
  3328. (d = g[j]),
  3329. oa.test(d.type || "") &&
  3330. !m._data(d, "globalEval") &&
  3331. m.contains(h, d) &&
  3332. (d.src
  3333. ? m._evalUrl && m._evalUrl(d.src)
  3334. : m.globalEval(
  3335. (d.text || d.textContent || d.innerHTML || "").replace(
  3336. qa,
  3337. ""
  3338. )
  3339. ));
  3340. i = c = null;
  3341. }
  3342. return this;
  3343. }
  3344. }),
  3345. m.each(
  3346. {
  3347. appendTo: "append",
  3348. prependTo: "prepend",
  3349. insertBefore: "before",
  3350. insertAfter: "after",
  3351. replaceAll: "replaceWith"
  3352. },
  3353. function(a, b) {
  3354. m.fn[a] = function(a) {
  3355. for (var c, d = 0, e = [], g = m(a), h = g.length - 1; h >= d; d++)
  3356. (c = d === h ? this : this.clone(!0)),
  3357. m(g[d])[b](c),
  3358. f.apply(e, c.get());
  3359. return this.pushStack(e);
  3360. };
  3361. }
  3362. );
  3363. var Ca,
  3364. Da = {};
  3365. function Ea(b, c) {
  3366. var d,
  3367. e = m(c.createElement(b)).appendTo(c.body),
  3368. f =
  3369. a.getDefaultComputedStyle && (d = a.getDefaultComputedStyle(e[0]))
  3370. ? d.display
  3371. : m.css(e[0], "display");
  3372. return e.detach(), f;
  3373. }
  3374. function Fa(a) {
  3375. var b = y,
  3376. c = Da[a];
  3377. return (
  3378. c ||
  3379. ((c = Ea(a, b)),
  3380. ("none" !== c && c) ||
  3381. ((Ca = (
  3382. Ca || m("<iframe frameborder='0' width='0' height='0'/>")
  3383. ).appendTo(b.documentElement)),
  3384. (b = (Ca[0].contentWindow || Ca[0].contentDocument).document),
  3385. b.write(),
  3386. b.close(),
  3387. (c = Ea(a, b)),
  3388. Ca.detach()),
  3389. (Da[a] = c)),
  3390. c
  3391. );
  3392. }
  3393. !(function() {
  3394. var a;
  3395. k.shrinkWrapBlocks = function() {
  3396. if (null != a) return a;
  3397. a = !1;
  3398. var b, c, d;
  3399. return (
  3400. (c = y.getElementsByTagName("body")[0]),
  3401. c && c.style
  3402. ? ((b = y.createElement("div")),
  3403. (d = y.createElement("div")),
  3404. (d.style.cssText =
  3405. "position:absolute;border:0;width:0;height:0;top:0;left:-9999px"),
  3406. c.appendChild(d).appendChild(b),
  3407. typeof b.style.zoom !== K &&
  3408. ((b.style.cssText =
  3409. "-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;display:block;margin:0;border:0;padding:1px;width:1px;zoom:1"),
  3410. (b.appendChild(y.createElement("div")).style.width = "5px"),
  3411. (a = 3 !== b.offsetWidth)),
  3412. c.removeChild(d),
  3413. a)
  3414. : void 0
  3415. );
  3416. };
  3417. })();
  3418. var Ga = /^margin/,
  3419. Ha = new RegExp("^(" + S + ")(?!px)[a-z%]+$", "i"),
  3420. Ia,
  3421. Ja,
  3422. Ka = /^(top|right|bottom|left)$/;
  3423. a.getComputedStyle
  3424. ? ((Ia = function(b) {
  3425. return b.ownerDocument.defaultView.opener
  3426. ? b.ownerDocument.defaultView.getComputedStyle(b, null)
  3427. : a.getComputedStyle(b, null);
  3428. }),
  3429. (Ja = function(a, b, c) {
  3430. var d,
  3431. e,
  3432. f,
  3433. g,
  3434. h = a.style;
  3435. return (
  3436. (c = c || Ia(a)),
  3437. (g = c ? c.getPropertyValue(b) || c[b] : void 0),
  3438. c &&
  3439. ("" !== g || m.contains(a.ownerDocument, a) || (g = m.style(a, b)),
  3440. Ha.test(g) &&
  3441. Ga.test(b) &&
  3442. ((d = h.width),
  3443. (e = h.minWidth),
  3444. (f = h.maxWidth),
  3445. (h.minWidth = h.maxWidth = h.width = g),
  3446. (g = c.width),
  3447. (h.width = d),
  3448. (h.minWidth = e),
  3449. (h.maxWidth = f))),
  3450. void 0 === g ? g : g + ""
  3451. );
  3452. }))
  3453. : y.documentElement.currentStyle &&
  3454. ((Ia = function(a) {
  3455. return a.currentStyle;
  3456. }),
  3457. (Ja = function(a, b, c) {
  3458. var d,
  3459. e,
  3460. f,
  3461. g,
  3462. h = a.style;
  3463. return (
  3464. (c = c || Ia(a)),
  3465. (g = c ? c[b] : void 0),
  3466. null == g && h && h[b] && (g = h[b]),
  3467. Ha.test(g) &&
  3468. !Ka.test(b) &&
  3469. ((d = h.left),
  3470. (e = a.runtimeStyle),
  3471. (f = e && e.left),
  3472. f && (e.left = a.currentStyle.left),
  3473. (h.left = "fontSize" === b ? "1em" : g),
  3474. (g = h.pixelLeft + "px"),
  3475. (h.left = d),
  3476. f && (e.left = f)),
  3477. void 0 === g ? g : g + "" || "auto"
  3478. );
  3479. }));
  3480. function La(a, b) {
  3481. return {
  3482. get: function() {
  3483. var c = a();
  3484. if (null != c)
  3485. return c
  3486. ? void delete this.get
  3487. : (this.get = b).apply(this, arguments);
  3488. }
  3489. };
  3490. }
  3491. !(function() {
  3492. var b, c, d, e, f, g, h;
  3493. if (
  3494. ((b = y.createElement("div")),
  3495. (b.innerHTML =
  3496. " <link/><table></table><a href='/a'>a</a><input type='checkbox'/>"),
  3497. (d = b.getElementsByTagName("a")[0]),
  3498. (c = d && d.style))
  3499. ) {
  3500. (c.cssText = "float:left;opacity:.5"),
  3501. (k.opacity = "0.5" === c.opacity),
  3502. (k.cssFloat = !!c.cssFloat),
  3503. (b.style.backgroundClip = "content-box"),
  3504. (b.cloneNode(!0).style.backgroundClip = ""),
  3505. (k.clearCloneStyle = "content-box" === b.style.backgroundClip),
  3506. (k.boxSizing =
  3507. "" === c.boxSizing ||
  3508. "" === c.MozBoxSizing ||
  3509. "" === c.WebkitBoxSizing),
  3510. m.extend(k, {
  3511. reliableHiddenOffsets: function() {
  3512. return null == g && i(), g;
  3513. },
  3514. boxSizingReliable: function() {
  3515. return null == f && i(), f;
  3516. },
  3517. pixelPosition: function() {
  3518. return null == e && i(), e;
  3519. },
  3520. reliableMarginRight: function() {
  3521. return null == h && i(), h;
  3522. }
  3523. });
  3524. function i() {
  3525. var b, c, d, i;
  3526. (c = y.getElementsByTagName("body")[0]),
  3527. c &&
  3528. c.style &&
  3529. ((b = y.createElement("div")),
  3530. (d = y.createElement("div")),
  3531. (d.style.cssText =
  3532. "position:absolute;border:0;width:0;height:0;top:0;left:-9999px"),
  3533. c.appendChild(d).appendChild(b),
  3534. (b.style.cssText =
  3535. "-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;display:block;margin-top:1%;top:1%;border:1px;padding:1px;width:4px;position:absolute"),
  3536. (e = f = !1),
  3537. (h = !0),
  3538. a.getComputedStyle &&
  3539. ((e = "1%" !== (a.getComputedStyle(b, null) || {}).top),
  3540. (f =
  3541. "4px" ===
  3542. (a.getComputedStyle(b, null) || { width: "4px" }).width),
  3543. (i = b.appendChild(y.createElement("div"))),
  3544. (i.style.cssText = b.style.cssText =
  3545. "-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;display:block;margin:0;border:0;padding:0"),
  3546. (i.style.marginRight = i.style.width = "0"),
  3547. (b.style.width = "1px"),
  3548. (h = !parseFloat(
  3549. (a.getComputedStyle(i, null) || {}).marginRight
  3550. )),
  3551. b.removeChild(i)),
  3552. (b.innerHTML = "<table><tr><td></td><td>t</td></tr></table>"),
  3553. (i = b.getElementsByTagName("td")),
  3554. (i[0].style.cssText = "margin:0;border:0;padding:0;display:none"),
  3555. (g = 0 === i[0].offsetHeight),
  3556. g &&
  3557. ((i[0].style.display = ""),
  3558. (i[1].style.display = "none"),
  3559. (g = 0 === i[0].offsetHeight)),
  3560. c.removeChild(d));
  3561. }
  3562. }
  3563. })(),
  3564. (m.swap = function(a, b, c, d) {
  3565. var e,
  3566. f,
  3567. g = {};
  3568. for (f in b) (g[f] = a.style[f]), (a.style[f] = b[f]);
  3569. e = c.apply(a, d || []);
  3570. for (f in b) a.style[f] = g[f];
  3571. return e;
  3572. });
  3573. var Ma = /alpha\([^)]*\)/i,
  3574. Na = /opacity\s*=\s*([^)]*)/,
  3575. Oa = /^(none|table(?!-c[ea]).+)/,
  3576. Pa = new RegExp("^(" + S + ")(.*)$", "i"),
  3577. Qa = new RegExp("^([+-])=(" + S + ")", "i"),
  3578. Ra = { position: "absolute", visibility: "hidden", display: "block" },
  3579. Sa = { letterSpacing: "0", fontWeight: "400" },
  3580. Ta = ["Webkit", "O", "Moz", "ms"];
  3581. function Ua(a, b) {
  3582. if (b in a) return b;
  3583. var c = b.charAt(0).toUpperCase() + b.slice(1),
  3584. d = b,
  3585. e = Ta.length;
  3586. while (e--) if (((b = Ta[e] + c), b in a)) return b;
  3587. return d;
  3588. }
  3589. function Va(a, b) {
  3590. for (var c, d, e, f = [], g = 0, h = a.length; h > g; g++)
  3591. (d = a[g]),
  3592. d.style &&
  3593. ((f[g] = m._data(d, "olddisplay")),
  3594. (c = d.style.display),
  3595. b
  3596. ? (f[g] || "none" !== c || (d.style.display = ""),
  3597. "" === d.style.display &&
  3598. U(d) &&
  3599. (f[g] = m._data(d, "olddisplay", Fa(d.nodeName))))
  3600. : ((e = U(d)),
  3601. ((c && "none" !== c) || !e) &&
  3602. m._data(d, "olddisplay", e ? c : m.css(d, "display"))));
  3603. for (g = 0; h > g; g++)
  3604. (d = a[g]),
  3605. d.style &&
  3606. ((b && "none" !== d.style.display && "" !== d.style.display) ||
  3607. (d.style.display = b ? f[g] || "" : "none"));
  3608. return a;
  3609. }
  3610. function Wa(a, b, c) {
  3611. var d = Pa.exec(b);
  3612. return d ? Math.max(0, d[1] - (c || 0)) + (d[2] || "px") : b;
  3613. }
  3614. function Xa(a, b, c, d, e) {
  3615. for (
  3616. var f = c === (d ? "border" : "content") ? 4 : "width" === b ? 1 : 0,
  3617. g = 0;
  3618. 4 > f;
  3619. f += 2
  3620. )
  3621. "margin" === c && (g += m.css(a, c + T[f], !0, e)),
  3622. d
  3623. ? ("content" === c && (g -= m.css(a, "padding" + T[f], !0, e)),
  3624. "margin" !== c && (g -= m.css(a, "border" + T[f] + "Width", !0, e)))
  3625. : ((g += m.css(a, "padding" + T[f], !0, e)),
  3626. "padding" !== c &&
  3627. (g += m.css(a, "border" + T[f] + "Width", !0, e)));
  3628. return g;
  3629. }
  3630. function Ya(a, b, c) {
  3631. var d = !0,
  3632. e = "width" === b ? a.offsetWidth : a.offsetHeight,
  3633. f = Ia(a),
  3634. g = k.boxSizing && "border-box" === m.css(a, "boxSizing", !1, f);
  3635. if (0 >= e || null == e) {
  3636. if (
  3637. ((e = Ja(a, b, f)),
  3638. (0 > e || null == e) && (e = a.style[b]),
  3639. Ha.test(e))
  3640. )
  3641. return e;
  3642. (d = g && (k.boxSizingReliable() || e === a.style[b])),
  3643. (e = parseFloat(e) || 0);
  3644. }
  3645. return e + Xa(a, b, c || (g ? "border" : "content"), d, f) + "px";
  3646. }
  3647. m.extend({
  3648. cssHooks: {
  3649. opacity: {
  3650. get: function(a, b) {
  3651. if (b) {
  3652. var c = Ja(a, "opacity");
  3653. return "" === c ? "1" : c;
  3654. }
  3655. }
  3656. }
  3657. },
  3658. cssNumber: {
  3659. columnCount: !0,
  3660. fillOpacity: !0,
  3661. flexGrow: !0,
  3662. flexShrink: !0,
  3663. fontWeight: !0,
  3664. lineHeight: !0,
  3665. opacity: !0,
  3666. order: !0,
  3667. orphans: !0,
  3668. widows: !0,
  3669. zIndex: !0,
  3670. zoom: !0
  3671. },
  3672. cssProps: { float: k.cssFloat ? "cssFloat" : "styleFloat" },
  3673. style: function(a, b, c, d) {
  3674. if (a && 3 !== a.nodeType && 8 !== a.nodeType && a.style) {
  3675. var e,
  3676. f,
  3677. g,
  3678. h = m.camelCase(b),
  3679. i = a.style;
  3680. if (
  3681. ((b = m.cssProps[h] || (m.cssProps[h] = Ua(i, h))),
  3682. (g = m.cssHooks[b] || m.cssHooks[h]),
  3683. void 0 === c)
  3684. )
  3685. return g && "get" in g && void 0 !== (e = g.get(a, !1, d)) ? e : i[b];
  3686. if (
  3687. ((f = typeof c),
  3688. "string" === f &&
  3689. (e = Qa.exec(c)) &&
  3690. ((c = (e[1] + 1) * e[2] + parseFloat(m.css(a, b))), (f = "number")),
  3691. null != c &&
  3692. c === c &&
  3693. ("number" !== f || m.cssNumber[h] || (c += "px"),
  3694. k.clearCloneStyle ||
  3695. "" !== c ||
  3696. 0 !== b.indexOf("background") ||
  3697. (i[b] = "inherit"),
  3698. !(g && "set" in g && void 0 === (c = g.set(a, c, d)))))
  3699. )
  3700. try {
  3701. i[b] = c;
  3702. } catch (j) {}
  3703. }
  3704. },
  3705. css: function(a, b, c, d) {
  3706. var e,
  3707. f,
  3708. g,
  3709. h = m.camelCase(b);
  3710. return (
  3711. (b = m.cssProps[h] || (m.cssProps[h] = Ua(a.style, h))),
  3712. (g = m.cssHooks[b] || m.cssHooks[h]),
  3713. g && "get" in g && (f = g.get(a, !0, c)),
  3714. void 0 === f && (f = Ja(a, b, d)),
  3715. "normal" === f && b in Sa && (f = Sa[b]),
  3716. "" === c || c
  3717. ? ((e = parseFloat(f)), c === !0 || m.isNumeric(e) ? e || 0 : f)
  3718. : f
  3719. );
  3720. }
  3721. }),
  3722. m.each(["height", "width"], function(a, b) {
  3723. m.cssHooks[b] = {
  3724. get: function(a, c, d) {
  3725. return c
  3726. ? Oa.test(m.css(a, "display")) && 0 === a.offsetWidth
  3727. ? m.swap(a, Ra, function() {
  3728. return Ya(a, b, d);
  3729. })
  3730. : Ya(a, b, d)
  3731. : void 0;
  3732. },
  3733. set: function(a, c, d) {
  3734. var e = d && Ia(a);
  3735. return Wa(
  3736. a,
  3737. c,
  3738. d
  3739. ? Xa(
  3740. a,
  3741. b,
  3742. d,
  3743. k.boxSizing && "border-box" === m.css(a, "boxSizing", !1, e),
  3744. e
  3745. )
  3746. : 0
  3747. );
  3748. }
  3749. };
  3750. }),
  3751. k.opacity ||
  3752. (m.cssHooks.opacity = {
  3753. get: function(a, b) {
  3754. return Na.test(
  3755. (b && a.currentStyle ? a.currentStyle.filter : a.style.filter) || ""
  3756. )
  3757. ? 0.01 * parseFloat(RegExp.$1) + ""
  3758. : b
  3759. ? "1"
  3760. : "";
  3761. },
  3762. set: function(a, b) {
  3763. var c = a.style,
  3764. d = a.currentStyle,
  3765. e = m.isNumeric(b) ? "alpha(opacity=" + 100 * b + ")" : "",
  3766. f = (d && d.filter) || c.filter || "";
  3767. (c.zoom = 1),
  3768. ((b >= 1 || "" === b) &&
  3769. "" === m.trim(f.replace(Ma, "")) &&
  3770. c.removeAttribute &&
  3771. (c.removeAttribute("filter"), "" === b || (d && !d.filter))) ||
  3772. (c.filter = Ma.test(f) ? f.replace(Ma, e) : f + " " + e);
  3773. }
  3774. }),
  3775. (m.cssHooks.marginRight = La(k.reliableMarginRight, function(a, b) {
  3776. return b
  3777. ? m.swap(a, { display: "inline-block" }, Ja, [a, "marginRight"])
  3778. : void 0;
  3779. })),
  3780. m.each({ margin: "", padding: "", border: "Width" }, function(a, b) {
  3781. (m.cssHooks[a + b] = {
  3782. expand: function(c) {
  3783. for (
  3784. var d = 0, e = {}, f = "string" == typeof c ? c.split(" ") : [c];
  3785. 4 > d;
  3786. d++
  3787. )
  3788. e[a + T[d] + b] = f[d] || f[d - 2] || f[0];
  3789. return e;
  3790. }
  3791. }),
  3792. Ga.test(a) || (m.cssHooks[a + b].set = Wa);
  3793. }),
  3794. m.fn.extend({
  3795. css: function(a, b) {
  3796. return V(
  3797. this,
  3798. function(a, b, c) {
  3799. var d,
  3800. e,
  3801. f = {},
  3802. g = 0;
  3803. if (m.isArray(b)) {
  3804. for (d = Ia(a), e = b.length; e > g; g++)
  3805. f[b[g]] = m.css(a, b[g], !1, d);
  3806. return f;
  3807. }
  3808. return void 0 !== c ? m.style(a, b, c) : m.css(a, b);
  3809. },
  3810. a,
  3811. b,
  3812. arguments.length > 1
  3813. );
  3814. },
  3815. show: function() {
  3816. return Va(this, !0);
  3817. },
  3818. hide: function() {
  3819. return Va(this);
  3820. },
  3821. toggle: function(a) {
  3822. return "boolean" == typeof a
  3823. ? a
  3824. ? this.show()
  3825. : this.hide()
  3826. : this.each(function() {
  3827. U(this) ? m(this).show() : m(this).hide();
  3828. });
  3829. }
  3830. });
  3831. function Za(a, b, c, d, e) {
  3832. return new Za.prototype.init(a, b, c, d, e);
  3833. }
  3834. (m.Tween = Za),
  3835. (Za.prototype = {
  3836. constructor: Za,
  3837. init: function(a, b, c, d, e, f) {
  3838. (this.elem = a),
  3839. (this.prop = c),
  3840. (this.easing = e || "swing"),
  3841. (this.options = b),
  3842. (this.start = this.now = this.cur()),
  3843. (this.end = d),
  3844. (this.unit = f || (m.cssNumber[c] ? "" : "px"));
  3845. },
  3846. cur: function() {
  3847. var a = Za.propHooks[this.prop];
  3848. return a && a.get ? a.get(this) : Za.propHooks._default.get(this);
  3849. },
  3850. run: function(a) {
  3851. var b,
  3852. c = Za.propHooks[this.prop];
  3853. return (
  3854. this.options.duration
  3855. ? (this.pos = b = m.easing[this.easing](
  3856. a,
  3857. this.options.duration * a,
  3858. 0,
  3859. 1,
  3860. this.options.duration
  3861. ))
  3862. : (this.pos = b = a),
  3863. (this.now = (this.end - this.start) * b + this.start),
  3864. this.options.step &&
  3865. this.options.step.call(this.elem, this.now, this),
  3866. c && c.set ? c.set(this) : Za.propHooks._default.set(this),
  3867. this
  3868. );
  3869. }
  3870. }),
  3871. (Za.prototype.init.prototype = Za.prototype),
  3872. (Za.propHooks = {
  3873. _default: {
  3874. get: function(a) {
  3875. var b;
  3876. return null == a.elem[a.prop] ||
  3877. (a.elem.style && null != a.elem.style[a.prop])
  3878. ? ((b = m.css(a.elem, a.prop, "")), b && "auto" !== b ? b : 0)
  3879. : a.elem[a.prop];
  3880. },
  3881. set: function(a) {
  3882. m.fx.step[a.prop]
  3883. ? m.fx.step[a.prop](a)
  3884. : a.elem.style &&
  3885. (null != a.elem.style[m.cssProps[a.prop]] || m.cssHooks[a.prop])
  3886. ? m.style(a.elem, a.prop, a.now + a.unit)
  3887. : (a.elem[a.prop] = a.now);
  3888. }
  3889. }
  3890. }),
  3891. (Za.propHooks.scrollTop = Za.propHooks.scrollLeft = {
  3892. set: function(a) {
  3893. a.elem.nodeType && a.elem.parentNode && (a.elem[a.prop] = a.now);
  3894. }
  3895. }),
  3896. (m.easing = {
  3897. linear: function(a) {
  3898. return a;
  3899. },
  3900. swing: function(a) {
  3901. return 0.5 - Math.cos(a * Math.PI) / 2;
  3902. }
  3903. }),
  3904. (m.fx = Za.prototype.init),
  3905. (m.fx.step = {});
  3906. var $a,
  3907. _a,
  3908. ab = /^(?:toggle|show|hide)$/,
  3909. bb = new RegExp("^(?:([+-])=|)(" + S + ")([a-z%]*)$", "i"),
  3910. cb = /queueHooks$/,
  3911. db = [ib],
  3912. eb = {
  3913. "*": [
  3914. function(a, b) {
  3915. var c = this.createTween(a, b),
  3916. d = c.cur(),
  3917. e = bb.exec(b),
  3918. f = (e && e[3]) || (m.cssNumber[a] ? "" : "px"),
  3919. g =
  3920. (m.cssNumber[a] || ("px" !== f && +d)) &&
  3921. bb.exec(m.css(c.elem, a)),
  3922. h = 1,
  3923. i = 20;
  3924. if (g && g[3] !== f) {
  3925. (f = f || g[3]), (e = e || []), (g = +d || 1);
  3926. do (h = h || ".5"), (g /= h), m.style(c.elem, a, g + f);
  3927. while (h !== (h = c.cur() / d) && 1 !== h && --i);
  3928. }
  3929. return (
  3930. e &&
  3931. ((g = c.start = +g || +d || 0),
  3932. (c.unit = f),
  3933. (c.end = e[1] ? g + (e[1] + 1) * e[2] : +e[2])),
  3934. c
  3935. );
  3936. }
  3937. ]
  3938. };
  3939. function fb() {
  3940. return (
  3941. setTimeout(function() {
  3942. $a = void 0;
  3943. }),
  3944. ($a = m.now())
  3945. );
  3946. }
  3947. function gb(a, b) {
  3948. var c,
  3949. d = { height: a },
  3950. e = 0;
  3951. for (b = b ? 1 : 0; 4 > e; e += 2 - b)
  3952. (c = T[e]), (d["margin" + c] = d["padding" + c] = a);
  3953. return b && (d.opacity = d.width = a), d;
  3954. }
  3955. function hb(a, b, c) {
  3956. for (
  3957. var d, e = (eb[b] || []).concat(eb["*"]), f = 0, g = e.length;
  3958. g > f;
  3959. f++
  3960. )
  3961. if ((d = e[f].call(c, b, a))) return d;
  3962. }
  3963. function ib(a, b, c) {
  3964. var d,
  3965. e,
  3966. f,
  3967. g,
  3968. h,
  3969. i,
  3970. j,
  3971. l,
  3972. n = this,
  3973. o = {},
  3974. p = a.style,
  3975. q = a.nodeType && U(a),
  3976. r = m._data(a, "fxshow");
  3977. c.queue ||
  3978. ((h = m._queueHooks(a, "fx")),
  3979. null == h.unqueued &&
  3980. ((h.unqueued = 0),
  3981. (i = h.empty.fire),
  3982. (h.empty.fire = function() {
  3983. h.unqueued || i();
  3984. })),
  3985. h.unqueued++,
  3986. n.always(function() {
  3987. n.always(function() {
  3988. h.unqueued--, m.queue(a, "fx").length || h.empty.fire();
  3989. });
  3990. })),
  3991. 1 === a.nodeType &&
  3992. ("height" in b || "width" in b) &&
  3993. ((c.overflow = [p.overflow, p.overflowX, p.overflowY]),
  3994. (j = m.css(a, "display")),
  3995. (l = "none" === j ? m._data(a, "olddisplay") || Fa(a.nodeName) : j),
  3996. "inline" === l &&
  3997. "none" === m.css(a, "float") &&
  3998. (k.inlineBlockNeedsLayout && "inline" !== Fa(a.nodeName)
  3999. ? (p.zoom = 1)
  4000. : (p.display = "inline-block"))),
  4001. c.overflow &&
  4002. ((p.overflow = "hidden"),
  4003. k.shrinkWrapBlocks() ||
  4004. n.always(function() {
  4005. (p.overflow = c.overflow[0]),
  4006. (p.overflowX = c.overflow[1]),
  4007. (p.overflowY = c.overflow[2]);
  4008. }));
  4009. for (d in b)
  4010. if (((e = b[d]), ab.exec(e))) {
  4011. if (
  4012. (delete b[d], (f = f || "toggle" === e), e === (q ? "hide" : "show"))
  4013. ) {
  4014. if ("show" !== e || !r || void 0 === r[d]) continue;
  4015. q = !0;
  4016. }
  4017. o[d] = (r && r[d]) || m.style(a, d);
  4018. } else j = void 0;
  4019. if (m.isEmptyObject(o))
  4020. "inline" === ("none" === j ? Fa(a.nodeName) : j) && (p.display = j);
  4021. else {
  4022. r ? "hidden" in r && (q = r.hidden) : (r = m._data(a, "fxshow", {})),
  4023. f && (r.hidden = !q),
  4024. q
  4025. ? m(a).show()
  4026. : n.done(function() {
  4027. m(a).hide();
  4028. }),
  4029. n.done(function() {
  4030. var b;
  4031. m._removeData(a, "fxshow");
  4032. for (b in o) m.style(a, b, o[b]);
  4033. });
  4034. for (d in o)
  4035. (g = hb(q ? r[d] : 0, d, n)),
  4036. d in r ||
  4037. ((r[d] = g.start),
  4038. q &&
  4039. ((g.end = g.start),
  4040. (g.start = "width" === d || "height" === d ? 1 : 0)));
  4041. }
  4042. }
  4043. function jb(a, b) {
  4044. var c, d, e, f, g;
  4045. for (c in a)
  4046. if (
  4047. ((d = m.camelCase(c)),
  4048. (e = b[d]),
  4049. (f = a[c]),
  4050. m.isArray(f) && ((e = f[1]), (f = a[c] = f[0])),
  4051. c !== d && ((a[d] = f), delete a[c]),
  4052. (g = m.cssHooks[d]),
  4053. g && "expand" in g)
  4054. ) {
  4055. (f = g.expand(f)), delete a[d];
  4056. for (c in f) c in a || ((a[c] = f[c]), (b[c] = e));
  4057. } else b[d] = e;
  4058. }
  4059. function kb(a, b, c) {
  4060. var d,
  4061. e,
  4062. f = 0,
  4063. g = db.length,
  4064. h = m.Deferred().always(function() {
  4065. delete i.elem;
  4066. }),
  4067. i = function() {
  4068. if (e) return !1;
  4069. for (
  4070. var b = $a || fb(),
  4071. c = Math.max(0, j.startTime + j.duration - b),
  4072. d = c / j.duration || 0,
  4073. f = 1 - d,
  4074. g = 0,
  4075. i = j.tweens.length;
  4076. i > g;
  4077. g++
  4078. )
  4079. j.tweens[g].run(f);
  4080. return (
  4081. h.notifyWith(a, [j, f, c]),
  4082. 1 > f && i ? c : (h.resolveWith(a, [j]), !1)
  4083. );
  4084. },
  4085. j = h.promise({
  4086. elem: a,
  4087. props: m.extend({}, b),
  4088. opts: m.extend(!0, { specialEasing: {} }, c),
  4089. originalProperties: b,
  4090. originalOptions: c,
  4091. startTime: $a || fb(),
  4092. duration: c.duration,
  4093. tweens: [],
  4094. createTween: function(b, c) {
  4095. var d = m.Tween(
  4096. a,
  4097. j.opts,
  4098. b,
  4099. c,
  4100. j.opts.specialEasing[b] || j.opts.easing
  4101. );
  4102. return j.tweens.push(d), d;
  4103. },
  4104. stop: function(b) {
  4105. var c = 0,
  4106. d = b ? j.tweens.length : 0;
  4107. if (e) return this;
  4108. for (e = !0; d > c; c++) j.tweens[c].run(1);
  4109. return b ? h.resolveWith(a, [j, b]) : h.rejectWith(a, [j, b]), this;
  4110. }
  4111. }),
  4112. k = j.props;
  4113. for (jb(k, j.opts.specialEasing); g > f; f++)
  4114. if ((d = db[f].call(j, a, k, j.opts))) return d;
  4115. return (
  4116. m.map(k, hb, j),
  4117. m.isFunction(j.opts.start) && j.opts.start.call(a, j),
  4118. m.fx.timer(m.extend(i, { elem: a, anim: j, queue: j.opts.queue })),
  4119. j
  4120. .progress(j.opts.progress)
  4121. .done(j.opts.done, j.opts.complete)
  4122. .fail(j.opts.fail)
  4123. .always(j.opts.always)
  4124. );
  4125. }
  4126. (m.Animation = m.extend(kb, {
  4127. tweener: function(a, b) {
  4128. m.isFunction(a) ? ((b = a), (a = ["*"])) : (a = a.split(" "));
  4129. for (var c, d = 0, e = a.length; e > d; d++)
  4130. (c = a[d]), (eb[c] = eb[c] || []), eb[c].unshift(b);
  4131. },
  4132. prefilter: function(a, b) {
  4133. b ? db.unshift(a) : db.push(a);
  4134. }
  4135. })),
  4136. (m.speed = function(a, b, c) {
  4137. var d =
  4138. a && "object" == typeof a
  4139. ? m.extend({}, a)
  4140. : {
  4141. complete: c || (!c && b) || (m.isFunction(a) && a),
  4142. duration: a,
  4143. easing: (c && b) || (b && !m.isFunction(b) && b)
  4144. };
  4145. return (
  4146. (d.duration = m.fx.off
  4147. ? 0
  4148. : "number" == typeof d.duration
  4149. ? d.duration
  4150. : d.duration in m.fx.speeds
  4151. ? m.fx.speeds[d.duration]
  4152. : m.fx.speeds._default),
  4153. (null == d.queue || d.queue === !0) && (d.queue = "fx"),
  4154. (d.old = d.complete),
  4155. (d.complete = function() {
  4156. m.isFunction(d.old) && d.old.call(this),
  4157. d.queue && m.dequeue(this, d.queue);
  4158. }),
  4159. d
  4160. );
  4161. }),
  4162. m.fn.extend({
  4163. fadeTo: function(a, b, c, d) {
  4164. return this.filter(U)
  4165. .css("opacity", 0)
  4166. .show()
  4167. .end()
  4168. .animate({ opacity: b }, a, c, d);
  4169. },
  4170. animate: function(a, b, c, d) {
  4171. var e = m.isEmptyObject(a),
  4172. f = m.speed(b, c, d),
  4173. g = function() {
  4174. var b = kb(this, m.extend({}, a), f);
  4175. (e || m._data(this, "finish")) && b.stop(!0);
  4176. };
  4177. return (
  4178. (g.finish = g),
  4179. e || f.queue === !1 ? this.each(g) : this.queue(f.queue, g)
  4180. );
  4181. },
  4182. stop: function(a, b, c) {
  4183. var d = function(a) {
  4184. var b = a.stop;
  4185. delete a.stop, b(c);
  4186. };
  4187. return (
  4188. "string" != typeof a && ((c = b), (b = a), (a = void 0)),
  4189. b && a !== !1 && this.queue(a || "fx", []),
  4190. this.each(function() {
  4191. var b = !0,
  4192. e = null != a && a + "queueHooks",
  4193. f = m.timers,
  4194. g = m._data(this);
  4195. if (e) g[e] && g[e].stop && d(g[e]);
  4196. else for (e in g) g[e] && g[e].stop && cb.test(e) && d(g[e]);
  4197. for (e = f.length; e--; )
  4198. f[e].elem !== this ||
  4199. (null != a && f[e].queue !== a) ||
  4200. (f[e].anim.stop(c), (b = !1), f.splice(e, 1));
  4201. (b || !c) && m.dequeue(this, a);
  4202. })
  4203. );
  4204. },
  4205. finish: function(a) {
  4206. return (
  4207. a !== !1 && (a = a || "fx"),
  4208. this.each(function() {
  4209. var b,
  4210. c = m._data(this),
  4211. d = c[a + "queue"],
  4212. e = c[a + "queueHooks"],
  4213. f = m.timers,
  4214. g = d ? d.length : 0;
  4215. for (
  4216. c.finish = !0,
  4217. m.queue(this, a, []),
  4218. e && e.stop && e.stop.call(this, !0),
  4219. b = f.length;
  4220. b--;
  4221. )
  4222. f[b].elem === this &&
  4223. f[b].queue === a &&
  4224. (f[b].anim.stop(!0), f.splice(b, 1));
  4225. for (b = 0; g > b; b++)
  4226. d[b] && d[b].finish && d[b].finish.call(this);
  4227. delete c.finish;
  4228. })
  4229. );
  4230. }
  4231. }),
  4232. m.each(["toggle", "show", "hide"], function(a, b) {
  4233. var c = m.fn[b];
  4234. m.fn[b] = function(a, d, e) {
  4235. return null == a || "boolean" == typeof a
  4236. ? c.apply(this, arguments)
  4237. : this.animate(gb(b, !0), a, d, e);
  4238. };
  4239. }),
  4240. m.each(
  4241. {
  4242. slideDown: gb("show"),
  4243. slideUp: gb("hide"),
  4244. slideToggle: gb("toggle"),
  4245. fadeIn: { opacity: "show" },
  4246. fadeOut: { opacity: "hide" },
  4247. fadeToggle: { opacity: "toggle" }
  4248. },
  4249. function(a, b) {
  4250. m.fn[a] = function(a, c, d) {
  4251. return this.animate(b, a, c, d);
  4252. };
  4253. }
  4254. ),
  4255. (m.timers = []),
  4256. (m.fx.tick = function() {
  4257. var a,
  4258. b = m.timers,
  4259. c = 0;
  4260. for ($a = m.now(); c < b.length; c++)
  4261. (a = b[c]), a() || b[c] !== a || b.splice(c--, 1);
  4262. b.length || m.fx.stop(), ($a = void 0);
  4263. }),
  4264. (m.fx.timer = function(a) {
  4265. m.timers.push(a), a() ? m.fx.start() : m.timers.pop();
  4266. }),
  4267. (m.fx.interval = 13),
  4268. (m.fx.start = function() {
  4269. _a || (_a = setInterval(m.fx.tick, m.fx.interval));
  4270. }),
  4271. (m.fx.stop = function() {
  4272. clearInterval(_a), (_a = null);
  4273. }),
  4274. (m.fx.speeds = { slow: 600, fast: 200, _default: 400 }),
  4275. (m.fn.delay = function(a, b) {
  4276. return (
  4277. (a = m.fx ? m.fx.speeds[a] || a : a),
  4278. (b = b || "fx"),
  4279. this.queue(b, function(b, c) {
  4280. var d = setTimeout(b, a);
  4281. c.stop = function() {
  4282. clearTimeout(d);
  4283. };
  4284. })
  4285. );
  4286. }),
  4287. (function() {
  4288. var a, b, c, d, e;
  4289. (b = y.createElement("div")),
  4290. b.setAttribute("className", "t"),
  4291. (b.innerHTML =
  4292. " <link/><table></table><a href='/a'>a</a><input type='checkbox'/>"),
  4293. (d = b.getElementsByTagName("a")[0]),
  4294. (c = y.createElement("select")),
  4295. (e = c.appendChild(y.createElement("option"))),
  4296. (a = b.getElementsByTagName("input")[0]),
  4297. (d.style.cssText = "top:1px"),
  4298. (k.getSetAttribute = "t" !== b.className),
  4299. (k.style = /top/.test(d.getAttribute("style"))),
  4300. (k.hrefNormalized = "/a" === d.getAttribute("href")),
  4301. (k.checkOn = !!a.value),
  4302. (k.optSelected = e.selected),
  4303. (k.enctype = !!y.createElement("form").enctype),
  4304. (c.disabled = !0),
  4305. (k.optDisabled = !e.disabled),
  4306. (a = y.createElement("input")),
  4307. a.setAttribute("value", ""),
  4308. (k.input = "" === a.getAttribute("value")),
  4309. (a.value = "t"),
  4310. a.setAttribute("type", "radio"),
  4311. (k.radioValue = "t" === a.value);
  4312. })();
  4313. var lb = /\r/g;
  4314. m.fn.extend({
  4315. val: function(a) {
  4316. var b,
  4317. c,
  4318. d,
  4319. e = this[0];
  4320. {
  4321. if (arguments.length)
  4322. return (
  4323. (d = m.isFunction(a)),
  4324. this.each(function(c) {
  4325. var e;
  4326. 1 === this.nodeType &&
  4327. ((e = d ? a.call(this, c, m(this).val()) : a),
  4328. null == e
  4329. ? (e = "")
  4330. : "number" == typeof e
  4331. ? (e += "")
  4332. : m.isArray(e) &&
  4333. (e = m.map(e, function(a) {
  4334. return null == a ? "" : a + "";
  4335. })),
  4336. (b =
  4337. m.valHooks[this.type] ||
  4338. m.valHooks[this.nodeName.toLowerCase()]),
  4339. (b && "set" in b && void 0 !== b.set(this, e, "value")) ||
  4340. (this.value = e));
  4341. })
  4342. );
  4343. if (e)
  4344. return (
  4345. (b = m.valHooks[e.type] || m.valHooks[e.nodeName.toLowerCase()]),
  4346. b && "get" in b && void 0 !== (c = b.get(e, "value"))
  4347. ? c
  4348. : ((c = e.value),
  4349. "string" == typeof c ? c.replace(lb, "") : null == c ? "" : c)
  4350. );
  4351. }
  4352. }
  4353. }),
  4354. m.extend({
  4355. valHooks: {
  4356. option: {
  4357. get: function(a) {
  4358. var b = m.find.attr(a, "value");
  4359. return null != b ? b : m.trim(m.text(a));
  4360. }
  4361. },
  4362. select: {
  4363. get: function(a) {
  4364. for (
  4365. var b,
  4366. c,
  4367. d = a.options,
  4368. e = a.selectedIndex,
  4369. f = "select-one" === a.type || 0 > e,
  4370. g = f ? null : [],
  4371. h = f ? e + 1 : d.length,
  4372. i = 0 > e ? h : f ? e : 0;
  4373. h > i;
  4374. i++
  4375. )
  4376. if (
  4377. ((c = d[i]),
  4378. !(
  4379. (!c.selected && i !== e) ||
  4380. (k.optDisabled
  4381. ? c.disabled
  4382. : null !== c.getAttribute("disabled")) ||
  4383. (c.parentNode.disabled &&
  4384. m.nodeName(c.parentNode, "optgroup"))
  4385. ))
  4386. ) {
  4387. if (((b = m(c).val()), f)) return b;
  4388. g.push(b);
  4389. }
  4390. return g;
  4391. },
  4392. set: function(a, b) {
  4393. var c,
  4394. d,
  4395. e = a.options,
  4396. f = m.makeArray(b),
  4397. g = e.length;
  4398. while (g--)
  4399. if (((d = e[g]), m.inArray(m.valHooks.option.get(d), f) >= 0))
  4400. try {
  4401. d.selected = c = !0;
  4402. } catch (h) {
  4403. d.scrollHeight;
  4404. }
  4405. else d.selected = !1;
  4406. return c || (a.selectedIndex = -1), e;
  4407. }
  4408. }
  4409. }
  4410. }),
  4411. m.each(["radio", "checkbox"], function() {
  4412. (m.valHooks[this] = {
  4413. set: function(a, b) {
  4414. return m.isArray(b)
  4415. ? (a.checked = m.inArray(m(a).val(), b) >= 0)
  4416. : void 0;
  4417. }
  4418. }),
  4419. k.checkOn ||
  4420. (m.valHooks[this].get = function(a) {
  4421. return null === a.getAttribute("value") ? "on" : a.value;
  4422. });
  4423. });
  4424. var mb,
  4425. nb,
  4426. ob = m.expr.attrHandle,
  4427. pb = /^(?:checked|selected)$/i,
  4428. qb = k.getSetAttribute,
  4429. rb = k.input;
  4430. m.fn.extend({
  4431. attr: function(a, b) {
  4432. return V(this, m.attr, a, b, arguments.length > 1);
  4433. },
  4434. removeAttr: function(a) {
  4435. return this.each(function() {
  4436. m.removeAttr(this, a);
  4437. });
  4438. }
  4439. }),
  4440. m.extend({
  4441. attr: function(a, b, c) {
  4442. var d,
  4443. e,
  4444. f = a.nodeType;
  4445. if (a && 3 !== f && 8 !== f && 2 !== f)
  4446. return typeof a.getAttribute === K
  4447. ? m.prop(a, b, c)
  4448. : ((1 === f && m.isXMLDoc(a)) ||
  4449. ((b = b.toLowerCase()),
  4450. (d = m.attrHooks[b] || (m.expr.match.bool.test(b) ? nb : mb))),
  4451. void 0 === c
  4452. ? d && "get" in d && null !== (e = d.get(a, b))
  4453. ? e
  4454. : ((e = m.find.attr(a, b)), null == e ? void 0 : e)
  4455. : null !== c
  4456. ? d && "set" in d && void 0 !== (e = d.set(a, c, b))
  4457. ? e
  4458. : (a.setAttribute(b, c + ""), c)
  4459. : void m.removeAttr(a, b));
  4460. },
  4461. removeAttr: function(a, b) {
  4462. var c,
  4463. d,
  4464. e = 0,
  4465. f = b && b.match(E);
  4466. if (f && 1 === a.nodeType)
  4467. while ((c = f[e++]))
  4468. (d = m.propFix[c] || c),
  4469. m.expr.match.bool.test(c)
  4470. ? (rb && qb) || !pb.test(c)
  4471. ? (a[d] = !1)
  4472. : (a[m.camelCase("default-" + c)] = a[d] = !1)
  4473. : m.attr(a, c, ""),
  4474. a.removeAttribute(qb ? c : d);
  4475. },
  4476. attrHooks: {
  4477. type: {
  4478. set: function(a, b) {
  4479. if (!k.radioValue && "radio" === b && m.nodeName(a, "input")) {
  4480. var c = a.value;
  4481. return a.setAttribute("type", b), c && (a.value = c), b;
  4482. }
  4483. }
  4484. }
  4485. }
  4486. }),
  4487. (nb = {
  4488. set: function(a, b, c) {
  4489. return (
  4490. b === !1
  4491. ? m.removeAttr(a, c)
  4492. : (rb && qb) || !pb.test(c)
  4493. ? a.setAttribute((!qb && m.propFix[c]) || c, c)
  4494. : (a[m.camelCase("default-" + c)] = a[c] = !0),
  4495. c
  4496. );
  4497. }
  4498. }),
  4499. m.each(m.expr.match.bool.source.match(/\w+/g), function(a, b) {
  4500. var c = ob[b] || m.find.attr;
  4501. ob[b] =
  4502. (rb && qb) || !pb.test(b)
  4503. ? function(a, b, d) {
  4504. var e, f;
  4505. return (
  4506. d ||
  4507. ((f = ob[b]),
  4508. (ob[b] = e),
  4509. (e = null != c(a, b, d) ? b.toLowerCase() : null),
  4510. (ob[b] = f)),
  4511. e
  4512. );
  4513. }
  4514. : function(a, b, c) {
  4515. return c
  4516. ? void 0
  4517. : a[m.camelCase("default-" + b)]
  4518. ? b.toLowerCase()
  4519. : null;
  4520. };
  4521. }),
  4522. (rb && qb) ||
  4523. (m.attrHooks.value = {
  4524. set: function(a, b, c) {
  4525. return m.nodeName(a, "input")
  4526. ? void (a.defaultValue = b)
  4527. : mb && mb.set(a, b, c);
  4528. }
  4529. }),
  4530. qb ||
  4531. ((mb = {
  4532. set: function(a, b, c) {
  4533. var d = a.getAttributeNode(c);
  4534. return (
  4535. d || a.setAttributeNode((d = a.ownerDocument.createAttribute(c))),
  4536. (d.value = b += ""),
  4537. "value" === c || b === a.getAttribute(c) ? b : void 0
  4538. );
  4539. }
  4540. }),
  4541. (ob.id = ob.name = ob.coords = function(a, b, c) {
  4542. var d;
  4543. return c
  4544. ? void 0
  4545. : (d = a.getAttributeNode(b)) && "" !== d.value
  4546. ? d.value
  4547. : null;
  4548. }),
  4549. (m.valHooks.button = {
  4550. get: function(a, b) {
  4551. var c = a.getAttributeNode(b);
  4552. return c && c.specified ? c.value : void 0;
  4553. },
  4554. set: mb.set
  4555. }),
  4556. (m.attrHooks.contenteditable = {
  4557. set: function(a, b, c) {
  4558. mb.set(a, "" === b ? !1 : b, c);
  4559. }
  4560. }),
  4561. m.each(["width", "height"], function(a, b) {
  4562. m.attrHooks[b] = {
  4563. set: function(a, c) {
  4564. return "" === c ? (a.setAttribute(b, "auto"), c) : void 0;
  4565. }
  4566. };
  4567. })),
  4568. k.style ||
  4569. (m.attrHooks.style = {
  4570. get: function(a) {
  4571. return a.style.cssText || void 0;
  4572. },
  4573. set: function(a, b) {
  4574. return (a.style.cssText = b + "");
  4575. }
  4576. });
  4577. var sb = /^(?:input|select|textarea|button|object)$/i,
  4578. tb = /^(?:a|area)$/i;
  4579. m.fn.extend({
  4580. prop: function(a, b) {
  4581. return V(this, m.prop, a, b, arguments.length > 1);
  4582. },
  4583. removeProp: function(a) {
  4584. return (
  4585. (a = m.propFix[a] || a),
  4586. this.each(function() {
  4587. try {
  4588. (this[a] = void 0), delete this[a];
  4589. } catch (b) {}
  4590. })
  4591. );
  4592. }
  4593. }),
  4594. m.extend({
  4595. propFix: { for: "htmlFor", class: "className" },
  4596. prop: function(a, b, c) {
  4597. var d,
  4598. e,
  4599. f,
  4600. g = a.nodeType;
  4601. if (a && 3 !== g && 8 !== g && 2 !== g)
  4602. return (
  4603. (f = 1 !== g || !m.isXMLDoc(a)),
  4604. f && ((b = m.propFix[b] || b), (e = m.propHooks[b])),
  4605. void 0 !== c
  4606. ? e && "set" in e && void 0 !== (d = e.set(a, c, b))
  4607. ? d
  4608. : (a[b] = c)
  4609. : e && "get" in e && null !== (d = e.get(a, b))
  4610. ? d
  4611. : a[b]
  4612. );
  4613. },
  4614. propHooks: {
  4615. tabIndex: {
  4616. get: function(a) {
  4617. var b = m.find.attr(a, "tabindex");
  4618. return b
  4619. ? parseInt(b, 10)
  4620. : sb.test(a.nodeName) || (tb.test(a.nodeName) && a.href)
  4621. ? 0
  4622. : -1;
  4623. }
  4624. }
  4625. }
  4626. }),
  4627. k.hrefNormalized ||
  4628. m.each(["href", "src"], function(a, b) {
  4629. m.propHooks[b] = {
  4630. get: function(a) {
  4631. return a.getAttribute(b, 4);
  4632. }
  4633. };
  4634. }),
  4635. k.optSelected ||
  4636. (m.propHooks.selected = {
  4637. get: function(a) {
  4638. var b = a.parentNode;
  4639. return (
  4640. b && (b.selectedIndex, b.parentNode && b.parentNode.selectedIndex),
  4641. null
  4642. );
  4643. }
  4644. }),
  4645. m.each(
  4646. [
  4647. "tabIndex",
  4648. "readOnly",
  4649. "maxLength",
  4650. "cellSpacing",
  4651. "cellPadding",
  4652. "rowSpan",
  4653. "colSpan",
  4654. "useMap",
  4655. "frameBorder",
  4656. "contentEditable"
  4657. ],
  4658. function() {
  4659. m.propFix[this.toLowerCase()] = this;
  4660. }
  4661. ),
  4662. k.enctype || (m.propFix.enctype = "encoding");
  4663. var ub = /[\t\r\n\f]/g;
  4664. m.fn.extend({
  4665. addClass: function(a) {
  4666. var b,
  4667. c,
  4668. d,
  4669. e,
  4670. f,
  4671. g,
  4672. h = 0,
  4673. i = this.length,
  4674. j = "string" == typeof a && a;
  4675. if (m.isFunction(a))
  4676. return this.each(function(b) {
  4677. m(this).addClass(a.call(this, b, this.className));
  4678. });
  4679. if (j)
  4680. for (b = (a || "").match(E) || []; i > h; h++)
  4681. if (
  4682. ((c = this[h]),
  4683. (d =
  4684. 1 === c.nodeType &&
  4685. (c.className ? (" " + c.className + " ").replace(ub, " ") : " ")))
  4686. ) {
  4687. f = 0;
  4688. while ((e = b[f++])) d.indexOf(" " + e + " ") < 0 && (d += e + " ");
  4689. (g = m.trim(d)), c.className !== g && (c.className = g);
  4690. }
  4691. return this;
  4692. },
  4693. removeClass: function(a) {
  4694. var b,
  4695. c,
  4696. d,
  4697. e,
  4698. f,
  4699. g,
  4700. h = 0,
  4701. i = this.length,
  4702. j = 0 === arguments.length || ("string" == typeof a && a);
  4703. if (m.isFunction(a))
  4704. return this.each(function(b) {
  4705. m(this).removeClass(a.call(this, b, this.className));
  4706. });
  4707. if (j)
  4708. for (b = (a || "").match(E) || []; i > h; h++)
  4709. if (
  4710. ((c = this[h]),
  4711. (d =
  4712. 1 === c.nodeType &&
  4713. (c.className ? (" " + c.className + " ").replace(ub, " ") : "")))
  4714. ) {
  4715. f = 0;
  4716. while ((e = b[f++]))
  4717. while (d.indexOf(" " + e + " ") >= 0)
  4718. d = d.replace(" " + e + " ", " ");
  4719. (g = a ? m.trim(d) : ""), c.className !== g && (c.className = g);
  4720. }
  4721. return this;
  4722. },
  4723. toggleClass: function(a, b) {
  4724. var c = typeof a;
  4725. return "boolean" == typeof b && "string" === c
  4726. ? b
  4727. ? this.addClass(a)
  4728. : this.removeClass(a)
  4729. : this.each(
  4730. m.isFunction(a)
  4731. ? function(c) {
  4732. m(this).toggleClass(a.call(this, c, this.className, b), b);
  4733. }
  4734. : function() {
  4735. if ("string" === c) {
  4736. var b,
  4737. d = 0,
  4738. e = m(this),
  4739. f = a.match(E) || [];
  4740. while ((b = f[d++]))
  4741. e.hasClass(b) ? e.removeClass(b) : e.addClass(b);
  4742. } else
  4743. (c === K || "boolean" === c) &&
  4744. (this.className &&
  4745. m._data(this, "__className__", this.className),
  4746. (this.className =
  4747. this.className || a === !1
  4748. ? ""
  4749. : m._data(this, "__className__") || ""));
  4750. }
  4751. );
  4752. },
  4753. hasClass: function(a) {
  4754. for (var b = " " + a + " ", c = 0, d = this.length; d > c; c++)
  4755. if (
  4756. 1 === this[c].nodeType &&
  4757. (" " + this[c].className + " ").replace(ub, " ").indexOf(b) >= 0
  4758. )
  4759. return !0;
  4760. return !1;
  4761. }
  4762. }),
  4763. m.each(
  4764. "blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error contextmenu".split(
  4765. " "
  4766. ),
  4767. function(a, b) {
  4768. m.fn[b] = function(a, c) {
  4769. return arguments.length > 0
  4770. ? this.on(b, null, a, c)
  4771. : this.trigger(b);
  4772. };
  4773. }
  4774. ),
  4775. m.fn.extend({
  4776. hover: function(a, b) {
  4777. return this.mouseenter(a).mouseleave(b || a);
  4778. },
  4779. bind: function(a, b, c) {
  4780. return this.on(a, null, b, c);
  4781. },
  4782. unbind: function(a, b) {
  4783. return this.off(a, null, b);
  4784. },
  4785. delegate: function(a, b, c, d) {
  4786. return this.on(b, a, c, d);
  4787. },
  4788. undelegate: function(a, b, c) {
  4789. return 1 === arguments.length
  4790. ? this.off(a, "**")
  4791. : this.off(b, a || "**", c);
  4792. }
  4793. });
  4794. var vb = m.now(),
  4795. wb = /\?/,
  4796. xb = /(,)|(\[|{)|(}|])|"(?:[^"\\\r\n]|\\["\\\/bfnrt]|\\u[\da-fA-F]{4})*"\s*:?|true|false|null|-?(?!0\d)\d+(?:\.\d+|)(?:[eE][+-]?\d+|)/g;
  4797. (m.parseJSON = function(b) {
  4798. if (a.JSON && a.JSON.parse) return a.JSON.parse(b + "");
  4799. var c,
  4800. d = null,
  4801. e = m.trim(b + "");
  4802. return e &&
  4803. !m.trim(
  4804. e.replace(xb, function(a, b, e, f) {
  4805. return (
  4806. c && b && (d = 0), 0 === d ? a : ((c = e || b), (d += !f - !e), "")
  4807. );
  4808. })
  4809. )
  4810. ? Function("return " + e)()
  4811. : m.error("Invalid JSON: " + b);
  4812. }),
  4813. (m.parseXML = function(b) {
  4814. var c, d;
  4815. if (!b || "string" != typeof b) return null;
  4816. try {
  4817. a.DOMParser
  4818. ? ((d = new DOMParser()), (c = d.parseFromString(b, "text/xml")))
  4819. : ((c = new ActiveXObject("Microsoft.XMLDOM")),
  4820. (c.async = "false"),
  4821. c.loadXML(b));
  4822. } catch (e) {
  4823. c = void 0;
  4824. }
  4825. return (
  4826. (c &&
  4827. c.documentElement &&
  4828. !c.getElementsByTagName("parsererror").length) ||
  4829. m.error("Invalid XML: " + b),
  4830. c
  4831. );
  4832. });
  4833. var yb,
  4834. zb,
  4835. Ab = /#.*$/,
  4836. Bb = /([?&])_=[^&]*/,
  4837. Cb = /^(.*?):[ \t]*([^\r\n]*)\r?$/gm,
  4838. Db = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/,
  4839. Eb = /^(?:GET|HEAD)$/,
  4840. Fb = /^\/\//,
  4841. Gb = /^([\w.+-]+:)(?:\/\/(?:[^\/?#]*@|)([^\/?#:]*)(?::(\d+)|)|)/,
  4842. Hb = {},
  4843. Ib = {},
  4844. Jb = "*/".concat("*");
  4845. try {
  4846. zb = location.href;
  4847. } catch (Kb) {
  4848. (zb = y.createElement("a")), (zb.href = ""), (zb = zb.href);
  4849. }
  4850. yb = Gb.exec(zb.toLowerCase()) || [];
  4851. function Lb(a) {
  4852. return function(b, c) {
  4853. "string" != typeof b && ((c = b), (b = "*"));
  4854. var d,
  4855. e = 0,
  4856. f = b.toLowerCase().match(E) || [];
  4857. if (m.isFunction(c))
  4858. while ((d = f[e++]))
  4859. "+" === d.charAt(0)
  4860. ? ((d = d.slice(1) || "*"), (a[d] = a[d] || []).unshift(c))
  4861. : (a[d] = a[d] || []).push(c);
  4862. };
  4863. }
  4864. function Mb(a, b, c, d) {
  4865. var e = {},
  4866. f = a === Ib;
  4867. function g(h) {
  4868. var i;
  4869. return (
  4870. (e[h] = !0),
  4871. m.each(a[h] || [], function(a, h) {
  4872. var j = h(b, c, d);
  4873. return "string" != typeof j || f || e[j]
  4874. ? f
  4875. ? !(i = j)
  4876. : void 0
  4877. : (b.dataTypes.unshift(j), g(j), !1);
  4878. }),
  4879. i
  4880. );
  4881. }
  4882. return g(b.dataTypes[0]) || (!e["*"] && g("*"));
  4883. }
  4884. function Nb(a, b) {
  4885. var c,
  4886. d,
  4887. e = m.ajaxSettings.flatOptions || {};
  4888. for (d in b) void 0 !== b[d] && ((e[d] ? a : c || (c = {}))[d] = b[d]);
  4889. return c && m.extend(!0, a, c), a;
  4890. }
  4891. function Ob(a, b, c) {
  4892. var d,
  4893. e,
  4894. f,
  4895. g,
  4896. h = a.contents,
  4897. i = a.dataTypes;
  4898. while ("*" === i[0])
  4899. i.shift(),
  4900. void 0 === e && (e = a.mimeType || b.getResponseHeader("Content-Type"));
  4901. if (e)
  4902. for (g in h)
  4903. if (h[g] && h[g].test(e)) {
  4904. i.unshift(g);
  4905. break;
  4906. }
  4907. if (i[0] in c) f = i[0];
  4908. else {
  4909. for (g in c) {
  4910. if (!i[0] || a.converters[g + " " + i[0]]) {
  4911. f = g;
  4912. break;
  4913. }
  4914. d || (d = g);
  4915. }
  4916. f = f || d;
  4917. }
  4918. return f ? (f !== i[0] && i.unshift(f), c[f]) : void 0;
  4919. }
  4920. function Pb(a, b, c, d) {
  4921. var e,
  4922. f,
  4923. g,
  4924. h,
  4925. i,
  4926. j = {},
  4927. k = a.dataTypes.slice();
  4928. if (k[1]) for (g in a.converters) j[g.toLowerCase()] = a.converters[g];
  4929. f = k.shift();
  4930. while (f)
  4931. if (
  4932. (a.responseFields[f] && (c[a.responseFields[f]] = b),
  4933. !i && d && a.dataFilter && (b = a.dataFilter(b, a.dataType)),
  4934. (i = f),
  4935. (f = k.shift()))
  4936. )
  4937. if ("*" === f) f = i;
  4938. else if ("*" !== i && i !== f) {
  4939. if (((g = j[i + " " + f] || j["* " + f]), !g))
  4940. for (e in j)
  4941. if (
  4942. ((h = e.split(" ")),
  4943. h[1] === f && (g = j[i + " " + h[0]] || j["* " + h[0]]))
  4944. ) {
  4945. g === !0
  4946. ? (g = j[e])
  4947. : j[e] !== !0 && ((f = h[0]), k.unshift(h[1]));
  4948. break;
  4949. }
  4950. if (g !== !0)
  4951. if (g && a["throws"]) b = g(b);
  4952. else
  4953. try {
  4954. b = g(b);
  4955. } catch (l) {
  4956. return {
  4957. state: "parsererror",
  4958. error: g ? l : "No conversion from " + i + " to " + f
  4959. };
  4960. }
  4961. }
  4962. return { state: "success", data: b };
  4963. }
  4964. m.extend({
  4965. active: 0,
  4966. lastModified: {},
  4967. etag: {},
  4968. ajaxSettings: {
  4969. url: zb,
  4970. type: "GET",
  4971. isLocal: Db.test(yb[1]),
  4972. global: !0,
  4973. processData: !0,
  4974. async: !0,
  4975. contentType: "application/x-www-form-urlencoded; charset=UTF-8",
  4976. accepts: {
  4977. "*": Jb,
  4978. text: "text/plain",
  4979. html: "text/html",
  4980. xml: "application/xml, text/xml",
  4981. json: "application/json, text/javascript"
  4982. },
  4983. contents: { xml: /xml/, html: /html/, json: /json/ },
  4984. responseFields: {
  4985. xml: "responseXML",
  4986. text: "responseText",
  4987. json: "responseJSON"
  4988. },
  4989. converters: {
  4990. "* text": String,
  4991. "text html": !0,
  4992. "text json": m.parseJSON,
  4993. "text xml": m.parseXML
  4994. },
  4995. flatOptions: { url: !0, context: !0 }
  4996. },
  4997. ajaxSetup: function(a, b) {
  4998. return b ? Nb(Nb(a, m.ajaxSettings), b) : Nb(m.ajaxSettings, a);
  4999. },
  5000. ajaxPrefilter: Lb(Hb),
  5001. ajaxTransport: Lb(Ib),
  5002. ajax: function(a, b) {
  5003. "object" == typeof a && ((b = a), (a = void 0)), (b = b || {});
  5004. var c,
  5005. d,
  5006. e,
  5007. f,
  5008. g,
  5009. h,
  5010. i,
  5011. j,
  5012. k = m.ajaxSetup({}, b),
  5013. l = k.context || k,
  5014. n = k.context && (l.nodeType || l.jquery) ? m(l) : m.event,
  5015. o = m.Deferred(),
  5016. p = m.Callbacks("once memory"),
  5017. q = k.statusCode || {},
  5018. r = {},
  5019. s = {},
  5020. t = 0,
  5021. u = "canceled",
  5022. v = {
  5023. readyState: 0,
  5024. getResponseHeader: function(a) {
  5025. var b;
  5026. if (2 === t) {
  5027. if (!j) {
  5028. j = {};
  5029. while ((b = Cb.exec(f))) j[b[1].toLowerCase()] = b[2];
  5030. }
  5031. b = j[a.toLowerCase()];
  5032. }
  5033. return null == b ? null : b;
  5034. },
  5035. getAllResponseHeaders: function() {
  5036. return 2 === t ? f : null;
  5037. },
  5038. setRequestHeader: function(a, b) {
  5039. var c = a.toLowerCase();
  5040. return t || ((a = s[c] = s[c] || a), (r[a] = b)), this;
  5041. },
  5042. overrideMimeType: function(a) {
  5043. return t || (k.mimeType = a), this;
  5044. },
  5045. statusCode: function(a) {
  5046. var b;
  5047. if (a)
  5048. if (2 > t) for (b in a) q[b] = [q[b], a[b]];
  5049. else v.always(a[v.status]);
  5050. return this;
  5051. },
  5052. abort: function(a) {
  5053. var b = a || u;
  5054. return i && i.abort(b), x(0, b), this;
  5055. }
  5056. };
  5057. if (
  5058. ((o.promise(v).complete = p.add),
  5059. (v.success = v.done),
  5060. (v.error = v.fail),
  5061. (k.url = ((a || k.url || zb) + "")
  5062. .replace(Ab, "")
  5063. .replace(Fb, yb[1] + "//")),
  5064. (k.type = b.method || b.type || k.method || k.type),
  5065. (k.dataTypes = m
  5066. .trim(k.dataType || "*")
  5067. .toLowerCase()
  5068. .match(E) || [""]),
  5069. null == k.crossDomain &&
  5070. ((c = Gb.exec(k.url.toLowerCase())),
  5071. (k.crossDomain = !(
  5072. !c ||
  5073. (c[1] === yb[1] &&
  5074. c[2] === yb[2] &&
  5075. (c[3] || ("http:" === c[1] ? "80" : "443")) ===
  5076. (yb[3] || ("http:" === yb[1] ? "80" : "443")))
  5077. ))),
  5078. k.data &&
  5079. k.processData &&
  5080. "string" != typeof k.data &&
  5081. (k.data = m.param(k.data, k.traditional)),
  5082. Mb(Hb, k, b, v),
  5083. 2 === t)
  5084. )
  5085. return v;
  5086. (h = m.event && k.global),
  5087. h && 0 === m.active++ && m.event.trigger("ajaxStart"),
  5088. (k.type = k.type.toUpperCase()),
  5089. (k.hasContent = !Eb.test(k.type)),
  5090. (e = k.url),
  5091. k.hasContent ||
  5092. (k.data &&
  5093. ((e = k.url += (wb.test(e) ? "&" : "?") + k.data), delete k.data),
  5094. k.cache === !1 &&
  5095. (k.url = Bb.test(e)
  5096. ? e.replace(Bb, "$1_=" + vb++)
  5097. : e + (wb.test(e) ? "&" : "?") + "_=" + vb++)),
  5098. k.ifModified &&
  5099. (m.lastModified[e] &&
  5100. v.setRequestHeader("If-Modified-Since", m.lastModified[e]),
  5101. m.etag[e] && v.setRequestHeader("If-None-Match", m.etag[e])),
  5102. ((k.data && k.hasContent && k.contentType !== !1) || b.contentType) &&
  5103. v.setRequestHeader("Content-Type", k.contentType),
  5104. v.setRequestHeader(
  5105. "Accept",
  5106. k.dataTypes[0] && k.accepts[k.dataTypes[0]]
  5107. ? k.accepts[k.dataTypes[0]] +
  5108. ("*" !== k.dataTypes[0] ? ", " + Jb + "; q=0.01" : "")
  5109. : k.accepts["*"]
  5110. );
  5111. for (d in k.headers) v.setRequestHeader(d, k.headers[d]);
  5112. if (k.beforeSend && (k.beforeSend.call(l, v, k) === !1 || 2 === t))
  5113. return v.abort();
  5114. u = "abort";
  5115. for (d in { success: 1, error: 1, complete: 1 }) v[d](k[d]);
  5116. if ((i = Mb(Ib, k, b, v))) {
  5117. (v.readyState = 1),
  5118. h && n.trigger("ajaxSend", [v, k]),
  5119. k.async &&
  5120. k.timeout > 0 &&
  5121. (g = setTimeout(function() {
  5122. v.abort("timeout");
  5123. }, k.timeout));
  5124. try {
  5125. (t = 1), i.send(r, x);
  5126. } catch (w) {
  5127. if (!(2 > t)) throw w;
  5128. x(-1, w);
  5129. }
  5130. } else x(-1, "No Transport");
  5131. function x(a, b, c, d) {
  5132. var j,
  5133. r,
  5134. s,
  5135. u,
  5136. w,
  5137. x = b;
  5138. 2 !== t &&
  5139. ((t = 2),
  5140. g && clearTimeout(g),
  5141. (i = void 0),
  5142. (f = d || ""),
  5143. (v.readyState = a > 0 ? 4 : 0),
  5144. (j = (a >= 200 && 300 > a) || 304 === a),
  5145. c && (u = Ob(k, v, c)),
  5146. (u = Pb(k, u, v, j)),
  5147. j
  5148. ? (k.ifModified &&
  5149. ((w = v.getResponseHeader("Last-Modified")),
  5150. w && (m.lastModified[e] = w),
  5151. (w = v.getResponseHeader("etag")),
  5152. w && (m.etag[e] = w)),
  5153. 204 === a || "HEAD" === k.type
  5154. ? (x = "nocontent")
  5155. : 304 === a
  5156. ? (x = "notmodified")
  5157. : ((x = u.state), (r = u.data), (s = u.error), (j = !s)))
  5158. : ((s = x), (a || !x) && ((x = "error"), 0 > a && (a = 0))),
  5159. (v.status = a),
  5160. (v.statusText = (b || x) + ""),
  5161. j ? o.resolveWith(l, [r, x, v]) : o.rejectWith(l, [v, x, s]),
  5162. v.statusCode(q),
  5163. (q = void 0),
  5164. h && n.trigger(j ? "ajaxSuccess" : "ajaxError", [v, k, j ? r : s]),
  5165. p.fireWith(l, [v, x]),
  5166. h &&
  5167. (n.trigger("ajaxComplete", [v, k]),
  5168. --m.active || m.event.trigger("ajaxStop")));
  5169. }
  5170. return v;
  5171. },
  5172. getJSON: function(a, b, c) {
  5173. return m.get(a, b, c, "json");
  5174. },
  5175. getScript: function(a, b) {
  5176. return m.get(a, void 0, b, "script");
  5177. }
  5178. }),
  5179. m.each(["get", "post"], function(a, b) {
  5180. m[b] = function(a, c, d, e) {
  5181. return (
  5182. m.isFunction(c) && ((e = e || d), (d = c), (c = void 0)),
  5183. m.ajax({ url: a, type: b, dataType: e, data: c, success: d })
  5184. );
  5185. };
  5186. }),
  5187. (m._evalUrl = function(a) {
  5188. return m.ajax({
  5189. url: a,
  5190. type: "GET",
  5191. dataType: "script",
  5192. async: !1,
  5193. global: !1,
  5194. throws: !0
  5195. });
  5196. }),
  5197. m.fn.extend({
  5198. wrapAll: function(a) {
  5199. if (m.isFunction(a))
  5200. return this.each(function(b) {
  5201. m(this).wrapAll(a.call(this, b));
  5202. });
  5203. if (this[0]) {
  5204. var b = m(a, this[0].ownerDocument)
  5205. .eq(0)
  5206. .clone(!0);
  5207. this[0].parentNode && b.insertBefore(this[0]),
  5208. b
  5209. .map(function() {
  5210. var a = this;
  5211. while (a.firstChild && 1 === a.firstChild.nodeType)
  5212. a = a.firstChild;
  5213. return a;
  5214. })
  5215. .append(this);
  5216. }
  5217. return this;
  5218. },
  5219. wrapInner: function(a) {
  5220. return this.each(
  5221. m.isFunction(a)
  5222. ? function(b) {
  5223. m(this).wrapInner(a.call(this, b));
  5224. }
  5225. : function() {
  5226. var b = m(this),
  5227. c = b.contents();
  5228. c.length ? c.wrapAll(a) : b.append(a);
  5229. }
  5230. );
  5231. },
  5232. wrap: function(a) {
  5233. var b = m.isFunction(a);
  5234. return this.each(function(c) {
  5235. m(this).wrapAll(b ? a.call(this, c) : a);
  5236. });
  5237. },
  5238. unwrap: function() {
  5239. return this.parent()
  5240. .each(function() {
  5241. m.nodeName(this, "body") || m(this).replaceWith(this.childNodes);
  5242. })
  5243. .end();
  5244. }
  5245. }),
  5246. (m.expr.filters.hidden = function(a) {
  5247. return (
  5248. (a.offsetWidth <= 0 && a.offsetHeight <= 0) ||
  5249. (!k.reliableHiddenOffsets() &&
  5250. "none" === ((a.style && a.style.display) || m.css(a, "display")))
  5251. );
  5252. }),
  5253. (m.expr.filters.visible = function(a) {
  5254. return !m.expr.filters.hidden(a);
  5255. });
  5256. var Qb = /%20/g,
  5257. Rb = /\[\]$/,
  5258. Sb = /\r?\n/g,
  5259. Tb = /^(?:submit|button|image|reset|file)$/i,
  5260. Ub = /^(?:input|select|textarea|keygen)/i;
  5261. function Vb(a, b, c, d) {
  5262. var e;
  5263. if (m.isArray(b))
  5264. m.each(b, function(b, e) {
  5265. c || Rb.test(a)
  5266. ? d(a, e)
  5267. : Vb(a + "[" + ("object" == typeof e ? b : "") + "]", e, c, d);
  5268. });
  5269. else if (c || "object" !== m.type(b)) d(a, b);
  5270. else for (e in b) Vb(a + "[" + e + "]", b[e], c, d);
  5271. }
  5272. (m.param = function(a, b) {
  5273. var c,
  5274. d = [],
  5275. e = function(a, b) {
  5276. (b = m.isFunction(b) ? b() : null == b ? "" : b),
  5277. (d[d.length] = encodeURIComponent(a) + "=" + encodeURIComponent(b));
  5278. };
  5279. if (
  5280. (void 0 === b && (b = m.ajaxSettings && m.ajaxSettings.traditional),
  5281. m.isArray(a) || (a.jquery && !m.isPlainObject(a)))
  5282. )
  5283. m.each(a, function() {
  5284. e(this.name, this.value);
  5285. });
  5286. else for (c in a) Vb(c, a[c], b, e);
  5287. return d.join("&").replace(Qb, "+");
  5288. }),
  5289. m.fn.extend({
  5290. serialize: function() {
  5291. return m.param(this.serializeArray());
  5292. },
  5293. serializeArray: function() {
  5294. return this.map(function() {
  5295. var a = m.prop(this, "elements");
  5296. return a ? m.makeArray(a) : this;
  5297. })
  5298. .filter(function() {
  5299. var a = this.type;
  5300. return (
  5301. this.name &&
  5302. !m(this).is(":disabled") &&
  5303. Ub.test(this.nodeName) &&
  5304. !Tb.test(a) &&
  5305. (this.checked || !W.test(a))
  5306. );
  5307. })
  5308. .map(function(a, b) {
  5309. var c = m(this).val();
  5310. return null == c
  5311. ? null
  5312. : m.isArray(c)
  5313. ? m.map(c, function(a) {
  5314. return { name: b.name, value: a.replace(Sb, "\r\n") };
  5315. })
  5316. : { name: b.name, value: c.replace(Sb, "\r\n") };
  5317. })
  5318. .get();
  5319. }
  5320. }),
  5321. (m.ajaxSettings.xhr =
  5322. void 0 !== a.ActiveXObject
  5323. ? function() {
  5324. return (
  5325. (!this.isLocal &&
  5326. /^(get|post|head|put|delete|options)$/i.test(this.type) &&
  5327. Zb()) ||
  5328. $b()
  5329. );
  5330. }
  5331. : Zb);
  5332. var Wb = 0,
  5333. Xb = {},
  5334. Yb = m.ajaxSettings.xhr();
  5335. a.attachEvent &&
  5336. a.attachEvent("onunload", function() {
  5337. for (var a in Xb) Xb[a](void 0, !0);
  5338. }),
  5339. (k.cors = !!Yb && "withCredentials" in Yb),
  5340. (Yb = k.ajax = !!Yb),
  5341. Yb &&
  5342. m.ajaxTransport(function(a) {
  5343. if (!a.crossDomain || k.cors) {
  5344. var b;
  5345. return {
  5346. send: function(c, d) {
  5347. var e,
  5348. f = a.xhr(),
  5349. g = ++Wb;
  5350. if (
  5351. (f.open(a.type, a.url, a.async, a.username, a.password),
  5352. a.xhrFields)
  5353. )
  5354. for (e in a.xhrFields) f[e] = a.xhrFields[e];
  5355. a.mimeType &&
  5356. f.overrideMimeType &&
  5357. f.overrideMimeType(a.mimeType),
  5358. a.crossDomain ||
  5359. c["X-Requested-With"] ||
  5360. (c["X-Requested-With"] = "XMLHttpRequest");
  5361. for (e in c) void 0 !== c[e] && f.setRequestHeader(e, c[e] + "");
  5362. f.send((a.hasContent && a.data) || null),
  5363. (b = function(c, e) {
  5364. var h, i, j;
  5365. if (b && (e || 4 === f.readyState))
  5366. if (
  5367. (delete Xb[g],
  5368. (b = void 0),
  5369. (f.onreadystatechange = m.noop),
  5370. e)
  5371. )
  5372. 4 !== f.readyState && f.abort();
  5373. else {
  5374. (j = {}),
  5375. (h = f.status),
  5376. "string" == typeof f.responseText &&
  5377. (j.text = f.responseText);
  5378. try {
  5379. i = f.statusText;
  5380. } catch (k) {
  5381. i = "";
  5382. }
  5383. h || !a.isLocal || a.crossDomain
  5384. ? 1223 === h && (h = 204)
  5385. : (h = j.text ? 200 : 404);
  5386. }
  5387. j && d(h, i, j, f.getAllResponseHeaders());
  5388. }),
  5389. a.async
  5390. ? 4 === f.readyState
  5391. ? setTimeout(b)
  5392. : (f.onreadystatechange = Xb[g] = b)
  5393. : b();
  5394. },
  5395. abort: function() {
  5396. b && b(void 0, !0);
  5397. }
  5398. };
  5399. }
  5400. });
  5401. function Zb() {
  5402. try {
  5403. return new a.XMLHttpRequest();
  5404. } catch (b) {}
  5405. }
  5406. function $b() {
  5407. try {
  5408. return new a.ActiveXObject("Microsoft.XMLHTTP");
  5409. } catch (b) {}
  5410. }
  5411. m.ajaxSetup({
  5412. accepts: {
  5413. script:
  5414. "text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"
  5415. },
  5416. contents: { script: /(?:java|ecma)script/ },
  5417. converters: {
  5418. "text script": function(a) {
  5419. return m.globalEval(a), a;
  5420. }
  5421. }
  5422. }),
  5423. m.ajaxPrefilter("script", function(a) {
  5424. void 0 === a.cache && (a.cache = !1),
  5425. a.crossDomain && ((a.type = "GET"), (a.global = !1));
  5426. }),
  5427. m.ajaxTransport("script", function(a) {
  5428. if (a.crossDomain) {
  5429. var b,
  5430. c = y.head || m("head")[0] || y.documentElement;
  5431. return {
  5432. send: function(d, e) {
  5433. (b = y.createElement("script")),
  5434. (b.async = !0),
  5435. a.scriptCharset && (b.charset = a.scriptCharset),
  5436. (b.src = a.url),
  5437. (b.onload = b.onreadystatechange = function(a, c) {
  5438. (c || !b.readyState || /loaded|complete/.test(b.readyState)) &&
  5439. ((b.onload = b.onreadystatechange = null),
  5440. b.parentNode && b.parentNode.removeChild(b),
  5441. (b = null),
  5442. c || e(200, "success"));
  5443. }),
  5444. c.insertBefore(b, c.firstChild);
  5445. },
  5446. abort: function() {
  5447. b && b.onload(void 0, !0);
  5448. }
  5449. };
  5450. }
  5451. });
  5452. var _b = [],
  5453. ac = /(=)\?(?=&|$)|\?\?/;
  5454. m.ajaxSetup({
  5455. jsonp: "callback",
  5456. jsonpCallback: function() {
  5457. var a = _b.pop() || m.expando + "_" + vb++;
  5458. return (this[a] = !0), a;
  5459. }
  5460. }),
  5461. m.ajaxPrefilter("json jsonp", function(b, c, d) {
  5462. var e,
  5463. f,
  5464. g,
  5465. h =
  5466. b.jsonp !== !1 &&
  5467. (ac.test(b.url)
  5468. ? "url"
  5469. : "string" == typeof b.data &&
  5470. !(b.contentType || "").indexOf(
  5471. "application/x-www-form-urlencoded"
  5472. ) &&
  5473. ac.test(b.data) &&
  5474. "data");
  5475. return h || "jsonp" === b.dataTypes[0]
  5476. ? ((e = b.jsonpCallback = m.isFunction(b.jsonpCallback)
  5477. ? b.jsonpCallback()
  5478. : b.jsonpCallback),
  5479. h
  5480. ? (b[h] = b[h].replace(ac, "$1" + e))
  5481. : b.jsonp !== !1 &&
  5482. (b.url += (wb.test(b.url) ? "&" : "?") + b.jsonp + "=" + e),
  5483. (b.converters["script json"] = function() {
  5484. return g || m.error(e + " was not called"), g[0];
  5485. }),
  5486. (b.dataTypes[0] = "json"),
  5487. (f = a[e]),
  5488. (a[e] = function() {
  5489. g = arguments;
  5490. }),
  5491. d.always(function() {
  5492. (a[e] = f),
  5493. b[e] && ((b.jsonpCallback = c.jsonpCallback), _b.push(e)),
  5494. g && m.isFunction(f) && f(g[0]),
  5495. (g = f = void 0);
  5496. }),
  5497. "script")
  5498. : void 0;
  5499. }),
  5500. (m.parseHTML = function(a, b, c) {
  5501. if (!a || "string" != typeof a) return null;
  5502. "boolean" == typeof b && ((c = b), (b = !1)), (b = b || y);
  5503. var d = u.exec(a),
  5504. e = !c && [];
  5505. return d
  5506. ? [b.createElement(d[1])]
  5507. : ((d = m.buildFragment([a], b, e)),
  5508. e && e.length && m(e).remove(),
  5509. m.merge([], d.childNodes));
  5510. });
  5511. var bc = m.fn.load;
  5512. (m.fn.load = function(a, b, c) {
  5513. if ("string" != typeof a && bc) return bc.apply(this, arguments);
  5514. var d,
  5515. e,
  5516. f,
  5517. g = this,
  5518. h = a.indexOf(" ");
  5519. return (
  5520. h >= 0 && ((d = m.trim(a.slice(h, a.length))), (a = a.slice(0, h))),
  5521. m.isFunction(b)
  5522. ? ((c = b), (b = void 0))
  5523. : b && "object" == typeof b && (f = "POST"),
  5524. g.length > 0 &&
  5525. m
  5526. .ajax({ url: a, type: f, dataType: "html", data: b })
  5527. .done(function(a) {
  5528. (e = arguments),
  5529. g.html(
  5530. d
  5531. ? m("<div>")
  5532. .append(m.parseHTML(a))
  5533. .find(d)
  5534. : a
  5535. );
  5536. })
  5537. .complete(
  5538. c &&
  5539. function(a, b) {
  5540. g.each(c, e || [a.responseText, b, a]);
  5541. }
  5542. ),
  5543. this
  5544. );
  5545. }),
  5546. m.each(
  5547. [
  5548. "ajaxStart",
  5549. "ajaxStop",
  5550. "ajaxComplete",
  5551. "ajaxError",
  5552. "ajaxSuccess",
  5553. "ajaxSend"
  5554. ],
  5555. function(a, b) {
  5556. m.fn[b] = function(a) {
  5557. return this.on(b, a);
  5558. };
  5559. }
  5560. ),
  5561. (m.expr.filters.animated = function(a) {
  5562. return m.grep(m.timers, function(b) {
  5563. return a === b.elem;
  5564. }).length;
  5565. });
  5566. var cc = a.document.documentElement;
  5567. function dc(a) {
  5568. return m.isWindow(a)
  5569. ? a
  5570. : 9 === a.nodeType
  5571. ? a.defaultView || a.parentWindow
  5572. : !1;
  5573. }
  5574. (m.offset = {
  5575. setOffset: function(a, b, c) {
  5576. var d,
  5577. e,
  5578. f,
  5579. g,
  5580. h,
  5581. i,
  5582. j,
  5583. k = m.css(a, "position"),
  5584. l = m(a),
  5585. n = {};
  5586. "static" === k && (a.style.position = "relative"),
  5587. (h = l.offset()),
  5588. (f = m.css(a, "top")),
  5589. (i = m.css(a, "left")),
  5590. (j =
  5591. ("absolute" === k || "fixed" === k) &&
  5592. m.inArray("auto", [f, i]) > -1),
  5593. j
  5594. ? ((d = l.position()), (g = d.top), (e = d.left))
  5595. : ((g = parseFloat(f) || 0), (e = parseFloat(i) || 0)),
  5596. m.isFunction(b) && (b = b.call(a, c, h)),
  5597. null != b.top && (n.top = b.top - h.top + g),
  5598. null != b.left && (n.left = b.left - h.left + e),
  5599. "using" in b ? b.using.call(a, n) : l.css(n);
  5600. }
  5601. }),
  5602. m.fn.extend({
  5603. offset: function(a) {
  5604. if (arguments.length)
  5605. return void 0 === a
  5606. ? this
  5607. : this.each(function(b) {
  5608. m.offset.setOffset(this, a, b);
  5609. });
  5610. var b,
  5611. c,
  5612. d = { top: 0, left: 0 },
  5613. e = this[0],
  5614. f = e && e.ownerDocument;
  5615. if (f)
  5616. return (
  5617. (b = f.documentElement),
  5618. m.contains(b, e)
  5619. ? (typeof e.getBoundingClientRect !== K &&
  5620. (d = e.getBoundingClientRect()),
  5621. (c = dc(f)),
  5622. {
  5623. top:
  5624. d.top + (c.pageYOffset || b.scrollTop) - (b.clientTop || 0),
  5625. left:
  5626. d.left +
  5627. (c.pageXOffset || b.scrollLeft) -
  5628. (b.clientLeft || 0)
  5629. })
  5630. : d
  5631. );
  5632. },
  5633. position: function() {
  5634. if (this[0]) {
  5635. var a,
  5636. b,
  5637. c = { top: 0, left: 0 },
  5638. d = this[0];
  5639. return (
  5640. "fixed" === m.css(d, "position")
  5641. ? (b = d.getBoundingClientRect())
  5642. : ((a = this.offsetParent()),
  5643. (b = this.offset()),
  5644. m.nodeName(a[0], "html") || (c = a.offset()),
  5645. (c.top += m.css(a[0], "borderTopWidth", !0)),
  5646. (c.left += m.css(a[0], "borderLeftWidth", !0))),
  5647. {
  5648. top: b.top - c.top - m.css(d, "marginTop", !0),
  5649. left: b.left - c.left - m.css(d, "marginLeft", !0)
  5650. }
  5651. );
  5652. }
  5653. },
  5654. offsetParent: function() {
  5655. return this.map(function() {
  5656. var a = this.offsetParent || cc;
  5657. while (
  5658. a &&
  5659. !m.nodeName(a, "html") &&
  5660. "static" === m.css(a, "position")
  5661. )
  5662. a = a.offsetParent;
  5663. return a || cc;
  5664. });
  5665. }
  5666. }),
  5667. m.each({ scrollLeft: "pageXOffset", scrollTop: "pageYOffset" }, function(
  5668. a,
  5669. b
  5670. ) {
  5671. var c = /Y/.test(b);
  5672. m.fn[a] = function(d) {
  5673. return V(
  5674. this,
  5675. function(a, d, e) {
  5676. var f = dc(a);
  5677. return void 0 === e
  5678. ? f
  5679. ? b in f
  5680. ? f[b]
  5681. : f.document.documentElement[d]
  5682. : a[d]
  5683. : void (f
  5684. ? f.scrollTo(
  5685. c ? m(f).scrollLeft() : e,
  5686. c ? e : m(f).scrollTop()
  5687. )
  5688. : (a[d] = e));
  5689. },
  5690. a,
  5691. d,
  5692. arguments.length,
  5693. null
  5694. );
  5695. };
  5696. }),
  5697. m.each(["top", "left"], function(a, b) {
  5698. m.cssHooks[b] = La(k.pixelPosition, function(a, c) {
  5699. return c
  5700. ? ((c = Ja(a, b)), Ha.test(c) ? m(a).position()[b] + "px" : c)
  5701. : void 0;
  5702. });
  5703. }),
  5704. m.each({ Height: "height", Width: "width" }, function(a, b) {
  5705. m.each({ padding: "inner" + a, content: b, "": "outer" + a }, function(
  5706. c,
  5707. d
  5708. ) {
  5709. m.fn[d] = function(d, e) {
  5710. var f = arguments.length && (c || "boolean" != typeof d),
  5711. g = c || (d === !0 || e === !0 ? "margin" : "border");
  5712. return V(
  5713. this,
  5714. function(b, c, d) {
  5715. var e;
  5716. return m.isWindow(b)
  5717. ? b.document.documentElement["client" + a]
  5718. : 9 === b.nodeType
  5719. ? ((e = b.documentElement),
  5720. Math.max(
  5721. b.body["scroll" + a],
  5722. e["scroll" + a],
  5723. b.body["offset" + a],
  5724. e["offset" + a],
  5725. e["client" + a]
  5726. ))
  5727. : void 0 === d
  5728. ? m.css(b, c, g)
  5729. : m.style(b, c, d, g);
  5730. },
  5731. b,
  5732. f ? d : void 0,
  5733. f,
  5734. null
  5735. );
  5736. };
  5737. });
  5738. }),
  5739. (m.fn.size = function() {
  5740. return this.length;
  5741. }),
  5742. (m.fn.andSelf = m.fn.addBack),
  5743. "function" == typeof define &&
  5744. define.amd &&
  5745. define("jquery", [], function() {
  5746. return m;
  5747. });
  5748. var ec = a.jQuery,
  5749. fc = a.$;
  5750. return (
  5751. (m.noConflict = function(b) {
  5752. return a.$ === m && (a.$ = fc), b && a.jQuery === m && (a.jQuery = ec), m;
  5753. }),
  5754. typeof b === K && (a.jQuery = a.$ = m),
  5755. m
  5756. );
  5757. });