snm.xml 527 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346123471234812349123501235112352123531235412355123561235712358123591236012361123621236312364123651236612367123681236912370123711237212373123741237512376123771237812379123801238112382123831238412385123861238712388123891239012391123921239312394123951239612397123981239912400124011240212403124041240512406124071240812409124101241112412124131241412415124161241712418124191242012421124221242312424124251242612427124281242912430124311243212433124341243512436124371243812439124401244112442124431244412445124461244712448124491245012451124521245312454124551245612457124581245912460124611246212463124641246512466124671246812469124701247112472124731247412475124761247712478124791248012481124821248312484124851248612487124881248912490124911249212493124941249512496124971249812499125001250112502125031250412505125061250712508125091251012511125121251312514125151251612517125181251912520125211252212523125241252512526125271252812529125301253112532125331253412535125361253712538125391254012541125421254312544125451254612547125481254912550125511255212553125541255512556125571255812559125601256112562125631256412565125661256712568125691257012571125721257312574125751257612577125781257912580125811258212583125841258512586125871258812589125901259112592125931259412595125961259712598125991260012601126021260312604126051260612607126081260912610126111261212613126141261512616126171261812619126201262112622126231262412625126261262712628126291263012631126321263312634126351263612637126381263912640126411264212643126441264512646126471264812649126501265112652126531265412655126561265712658126591266012661126621266312664126651266612667126681266912670126711267212673126741267512676126771267812679126801268112682126831268412685126861268712688126891269012691126921269312694126951269612697126981269912700127011270212703127041270512706127071270812709127101271112712127131271412715127161271712718127191272012721127221272312724127251272612727127281272912730127311273212733127341273512736127371273812739127401274112742127431274412745127461274712748127491275012751127521275312754127551275612757127581275912760127611276212763127641276512766127671276812769127701277112772127731277412775127761277712778127791278012781127821278312784127851278612787127881278912790127911279212793127941279512796127971279812799128001280112802128031280412805128061280712808128091281012811128121281312814128151281612817128181281912820128211282212823128241282512826128271282812829128301283112832128331283412835128361283712838128391284012841128421284312844128451284612847128481284912850128511285212853128541285512856128571285812859128601286112862128631286412865128661286712868128691287012871128721287312874128751287612877128781287912880128811288212883128841288512886128871288812889128901289112892128931289412895128961289712898128991290012901129021290312904129051290612907129081290912910129111291212913129141291512916129171291812919129201292112922129231292412925129261292712928129291293012931129321293312934129351293612937129381293912940129411294212943129441294512946129471294812949129501295112952129531295412955129561295712958129591296012961129621296312964129651296612967129681296912970129711297212973129741297512976129771297812979129801298112982129831298412985129861298712988129891299012991129921299312994129951299612997129981299913000130011300213003130041300513006130071300813009130101301113012130131301413015130161301713018130191302013021130221302313024130251302613027130281302913030130311303213033130341303513036130371303813039130401304113042130431304413045130461304713048130491305013051130521305313054130551305613057130581305913060130611306213063130641306513066130671306813069130701307113072130731307413075130761307713078130791308013081130821308313084130851308613087130881308913090130911309213093130941309513096130971309813099131001310113102131031310413105131061310713108131091311013111131121311313114131151311613117131181311913120131211312213123131241312513126131271312813129131301313113132131331313413135131361313713138131391314013141131421314313144131451314613147131481314913150131511315213153131541315513156131571315813159131601316113162131631316413165131661316713168131691317013171131721317313174131751317613177131781317913180131811318213183131841318513186131871318813189131901319113192131931319413195131961319713198131991320013201132021320313204132051320613207132081320913210132111321213213132141321513216132171321813219132201322113222132231322413225132261322713228132291323013231132321323313234132351323613237132381323913240132411324213243132441324513246132471324813249132501325113252132531325413255132561325713258132591326013261132621326313264132651326613267132681326913270132711327213273132741327513276132771327813279132801328113282132831328413285132861328713288132891329013291132921329313294132951329613297132981329913300133011330213303133041330513306133071330813309133101331113312133131331413315133161331713318133191332013321133221332313324133251332613327133281332913330133311333213333133341333513336133371333813339133401334113342133431334413345133461334713348133491335013351133521335313354133551335613357133581335913360133611336213363133641336513366133671336813369133701337113372133731337413375133761337713378133791338013381133821338313384133851338613387133881338913390133911339213393133941339513396133971339813399134001340113402134031340413405134061340713408134091341013411134121341313414134151341613417134181341913420134211342213423134241342513426134271342813429134301343113432134331343413435134361343713438134391344013441134421344313444134451344613447134481344913450134511345213453134541345513456134571345813459134601346113462134631346413465134661346713468134691347013471134721347313474134751347613477134781347913480134811348213483134841348513486134871348813489134901349113492134931349413495134961349713498134991350013501135021350313504135051350613507135081350913510135111351213513135141351513516135171351813519135201352113522135231352413525135261352713528135291353013531135321353313534135351353613537135381353913540135411354213543135441354513546135471354813549135501355113552135531355413555135561355713558135591356013561135621356313564135651356613567135681356913570135711357213573135741357513576135771357813579135801358113582135831358413585135861358713588135891359013591135921359313594135951359613597135981359913600136011360213603136041360513606136071360813609136101361113612136131361413615136161361713618136191362013621136221362313624136251362613627136281362913630136311363213633136341363513636136371363813639136401364113642136431364413645136461364713648136491365013651136521365313654136551365613657136581365913660136611366213663136641366513666136671366813669136701367113672136731367413675136761367713678136791368013681136821368313684136851368613687136881368913690136911369213693136941369513696136971369813699137001370113702137031370413705137061370713708137091371013711137121371313714137151371613717137181371913720137211372213723137241372513726137271372813729137301373113732137331373413735137361373713738137391374013741137421374313744137451374613747137481374913750137511375213753137541375513756137571375813759137601376113762137631376413765137661376713768137691377013771137721377313774137751377613777137781377913780137811378213783137841378513786137871378813789137901379113792137931379413795137961379713798137991380013801138021380313804138051380613807138081380913810138111381213813138141381513816138171381813819138201382113822138231382413825138261382713828138291383013831138321383313834138351383613837138381383913840138411384213843138441384513846138471384813849138501385113852138531385413855138561385713858138591386013861138621386313864138651386613867138681386913870138711387213873138741387513876138771387813879138801388113882138831388413885138861388713888138891389013891138921389313894138951389613897138981389913900139011390213903139041390513906139071390813909139101391113912139131391413915139161391713918139191392013921139221392313924139251392613927139281392913930139311393213933139341393513936139371393813939139401394113942139431394413945139461394713948139491395013951139521395313954139551395613957139581395913960139611396213963139641396513966139671396813969139701397113972139731397413975139761397713978139791398013981139821398313984139851398613987139881398913990139911399213993139941399513996139971399813999140001400114002140031400414005140061400714008140091401014011140121401314014140151401614017140181401914020140211402214023140241402514026140271402814029140301403114032140331403414035140361403714038140391404014041140421404314044140451404614047140481404914050140511405214053140541405514056140571405814059140601406114062140631406414065140661406714068140691407014071140721407314074140751407614077140781407914080140811408214083140841408514086140871408814089140901409114092140931409414095140961409714098140991410014101141021410314104141051410614107141081410914110141111411214113141141411514116141171411814119141201412114122141231412414125141261412714128141291413014131141321413314134141351413614137141381413914140141411414214143141441414514146141471414814149141501415114152141531415414155141561415714158141591416014161141621416314164141651416614167141681416914170141711417214173141741417514176141771417814179141801418114182141831418414185141861418714188141891419014191141921419314194141951419614197141981419914200142011420214203142041420514206142071420814209142101421114212142131421414215142161421714218142191422014221142221422314224142251422614227142281422914230142311423214233142341423514236142371423814239142401424114242142431424414245142461424714248142491425014251142521425314254142551425614257142581425914260142611426214263142641426514266142671426814269142701427114272142731427414275142761427714278142791428014281142821428314284142851428614287142881428914290142911429214293142941429514296142971429814299143001430114302143031430414305143061430714308143091431014311143121431314314143151431614317143181431914320143211432214323143241432514326143271432814329143301433114332143331433414335143361433714338143391434014341143421434314344143451434614347143481434914350143511435214353143541435514356143571435814359143601436114362143631436414365143661436714368143691437014371143721437314374143751437614377143781437914380143811438214383143841438514386143871438814389143901439114392143931439414395143961439714398143991440014401144021440314404144051440614407144081440914410144111441214413144141441514416144171441814419144201442114422144231442414425144261442714428144291443014431144321443314434144351443614437144381443914440144411444214443144441444514446144471444814449144501445114452144531445414455144561445714458144591446014461144621446314464144651446614467144681446914470144711447214473144741447514476144771447814479144801448114482
  1. <?xml version="1.0" encoding="UTF-8" standalone="no" ?>
  2. <sna xmlns="http://www.sena.com/sna" date="20260194" appVer="2.14" iosAppVer="2.14" central="1" withoutPhone="1">
  3. <tu url="https://www.sena.com/terms-of-use/?webview=true"
  4. />
  5. <pp url="https://www.sena.com/privacy?webview=true"
  6. />
  7. <warranty url="https://www.sena.com/support/warranty/?webview=true"
  8. />
  9. <profile url=""
  10. />
  11. <wa url="https://firmware.sena.com/senabluetoothmanager/UserGuide_WiFi_Charging_Cable_1.0.2_en_250212.pdf"
  12. />
  13. <wc url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_WiFi_Sync_Cable_2.0.0_en_220906.pdf"
  14. />
  15. <wds url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_WiFi_Docking_Station_2.0.0_en_220906.pdf"
  16. />
  17. <wim url="https://firmware.sena.com/senabluetoothmanager/UserGuide_IMPULSE_Firmware_Update_1.0.0_en_250212.pdf"
  18. />
  19. <wst url="https://firmware.sena.com/senabluetoothmanager/UserGuide_STRYKER_Firmware_Update_1.0.0_en_250211.pdf"
  20. />
  21. <support url=""
  22. />
  23. <forum url=""
  24. />
  25. <sip url="https://community.sena.com/hc/en-us"
  26. />
  27. <productKeys>
  28. <productKey id="4210"
  29. userPSKey="5"
  30. valueLength="1"
  31. />
  32. <productKey id="4230"
  33. userPSKey="5"
  34. valueLength="1"
  35. />
  36. </productKeys>
  37. <!--
  38. <menus>
  39. <menu id="protocol" />
  40. <menu id="alexa" />
  41. <menu id="ota" />
  42. <menu id="wa" />
  43. <menu id="manager" />
  44. <menu id="sip" />
  45. <menu id="meshIntercom" />
  46. <menu id="bluetoothIntercom" />
  47. <menu id="music" />
  48. <menu id="musicSharing" />
  49. <menu id="fmradio" />
  50. <menu id="phone" />
  51. <menu id="led" />
  52. <menu id="volume" />
  53. <menu id="battery" />
  54. <menu id="deviceSetting" />
  55. <menu id="quickGuide" />
  56. <menu id="userGuide" />
  57. </menus>
  58. -->
  59. <serieses>
  60. <series id="60"
  61. name="60 Series"
  62. show="1"
  63. />
  64. <series id="50"
  65. name="50 Series"
  66. show="1"
  67. />
  68. <series id="Helmet"
  69. name="Smart Helmet"
  70. show="1"
  71. />
  72. <series id="30"
  73. name="30 Series"
  74. show="1"
  75. />
  76. <series id="SF"
  77. name="SF Series"
  78. show="1"
  79. />
  80. <series id="SPIDER"
  81. name="SPIDER Series"
  82. show="1"
  83. />
  84. <series id="APEX"
  85. name="APEX Series"
  86. show="1"
  87. />
  88. <series id="VORTEX"
  89. name="VORTEX Series"
  90. show="1"
  91. />
  92. <series id="20"
  93. name="20 Series"
  94. show="1"
  95. />
  96. <series id="SRL"
  97. name="SRL Series"
  98. show="1"
  99. />
  100. <series id="ACS"
  101. name="ACS Series"
  102. show="1"
  103. />
  104. <series id="10"
  105. name="10 Series"
  106. show="1"
  107. />
  108. <series id="5"
  109. name="5 Series"
  110. show="1"
  111. />
  112. <series id="3"
  113. name="3 Series"
  114. show="1"
  115. />
  116. <series id="R"
  117. name="R Series"
  118. show="1"
  119. />
  120. <series id="C"
  121. name="C Series"
  122. show="1"
  123. />
  124. <series id="Other"
  125. name="Other"
  126. show="1"
  127. />
  128. <!--
  129. <series id="smh"
  130. name="SMH"
  131. />
  132. <series id="cavalry"
  133. name="CAVALRY"
  134. show="0"
  135. />
  136. -->
  137. </serieses>
  138. <products>
  139. <product id="60SPRO"
  140. name="60S PRO"
  141. series="60"
  142. latestVersion="0.1"
  143. latestVersionMesh="0.19"
  144. latestVersionVoicePrompt="1.2"
  145. show = "-1" >
  146. <productMenu id="protocol"
  147. type="2" >
  148. </productMenu>
  149. <productMenu id="ota"
  150. type="0" >
  151. <otaLanguages>
  152. <otaLanguage
  153. id="0"
  154. name="English"
  155. package="0"
  156. />
  157. <otaLanguage
  158. id="0"
  159. name="French"
  160. package="1"
  161. />
  162. <otaLanguage
  163. id="0"
  164. name="Spanish"
  165. package="2"
  166. />
  167. <otaLanguage
  168. id="0"
  169. name="Italian"
  170. package="3"
  171. />
  172. <otaLanguage
  173. id="0"
  174. name="German"
  175. package="4"
  176. />
  177. <otaLanguage
  178. id="0"
  179. name="Dutch"
  180. package="5"
  181. />
  182. <otaLanguage
  183. id="0"
  184. name="Russian"
  185. package="6"
  186. />
  187. <otaLanguage
  188. id="0"
  189. name="Chinese"
  190. package="7"
  191. />
  192. <otaLanguage
  193. id="0"
  194. name="Korean"
  195. package="8"
  196. />
  197. <otaLanguage
  198. id="0"
  199. name="Japanese"
  200. package="9"
  201. />
  202. <otaLanguage
  203. id="0"
  204. name="Finnish"
  205. package="10"
  206. />
  207. <otaLanguage
  208. id="0"
  209. name="Polish"
  210. package="11"
  211. />
  212. </otaLanguages>
  213. <otaPackages>
  214. <package
  215. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1.img"
  216. size="5183988"
  217. />
  218. <package
  219. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-fr-FR.img"
  220. size="5183988"
  221. />
  222. <package
  223. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-es-ES.img"
  224. size="5183988"
  225. />
  226. <package
  227. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-it-IT.img"
  228. size="5183988"
  229. />
  230. <package
  231. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-de-DE.img"
  232. size="5183988"
  233. />
  234. <package
  235. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-nl-NL.img"
  236. size="5183988"
  237. />
  238. <package
  239. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-ru-RU.img"
  240. size="5183988"
  241. />
  242. <package
  243. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-cmn-CN.img"
  244. size="5183988"
  245. />
  246. <package
  247. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-ko-KR.img"
  248. size="5183988"
  249. />
  250. <package
  251. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-ja-JP.img"
  252. size="5183988"
  253. />
  254. <package
  255. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-fi-FI.img"
  256. size="5183988"
  257. />
  258. <package
  259. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-pl-PL.img"
  260. size="5183988"
  261. />
  262. </otaPackages>
  263. </productMenu>
  264. <productMenu id="sip"
  265. type="1" >
  266. </productMenu>
  267. <productMenu id="illusion"
  268. type="1" >
  269. </productMenu>
  270. <productMenu id="meshIntercom"
  271. type="30" >
  272. </productMenu>
  273. <productMenu id="meshIntercom+"
  274. type="3"
  275. url="2" >
  276. </productMenu>
  277. <productMenu id="waveIntercom"
  278. type="1" >
  279. </productMenu>
  280. <productMenu id="bluetoothIntercom"
  281. type="1"
  282. url="2" >
  283. </productMenu>
  284. <productMenu id="bluetoothIntercomGrouping"
  285. type="0" >
  286. </productMenu>
  287. <productMenu id="fmradio"
  288. type="1"
  289. url="1" >
  290. </productMenu>
  291. <productMenu id="phone"
  292. type="1" >
  293. </productMenu>
  294. <productMenu id="music"
  295. type="1" >
  296. </productMenu>
  297. <productMenu id="musicSharing"
  298. type="0" >
  299. </productMenu>
  300. <productMenu id="deviceSetting"
  301. type="1"
  302. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_03.xml" >
  303. </productMenu>
  304. <productMenu id="quickGuide"
  305. type="0"
  306. url=""
  307. size="1.12MB" >
  308. </productMenu>
  309. <productMenu id="userGuide"
  310. type="1"
  311. url=""
  312. size="2.0MB" >
  313. </productMenu>
  314. <productMenu id="videoGuide"
  315. type="0"
  316. url=""
  317. size="3.41MB" >
  318. </productMenu>
  319. <productMenu id="connectGuide"
  320. type="0"
  321. url=""
  322. size="1.12MB" >
  323. </productMenu>
  324. <productMenu id="volume"
  325. type="16" >
  326. </productMenu>
  327. <productMenu id="soundMode"
  328. type="1" >
  329. </productMenu>
  330. <productMenu id="battery"
  331. type="1" >
  332. </productMenu>
  333. <productID id="6A1A"
  334. />
  335. <productGroupable type="0"
  336. />
  337. </product>
  338. <product id="60SEVO"
  339. name="60S EVO"
  340. series="60"
  341. latestVersion="1.0.3"
  342. latestVersionMesh="0.19"
  343. latestVersionVoicePrompt="1.8"
  344. show = "1" >
  345. <productMenu id="protocol"
  346. type="2" >
  347. </productMenu>
  348. <productMenu id="warranty"
  349. type="1" >
  350. </productMenu>
  351. <productMenu id="serialNumber"
  352. type="1" >
  353. </productMenu>
  354. <productMenu id="ota"
  355. type="2" >
  356. <otaLanguages>
  357. <otaLanguage
  358. id="0"
  359. name="English"
  360. package="0"
  361. />
  362. <otaLanguage
  363. id="0"
  364. name="French"
  365. package="1"
  366. />
  367. <otaLanguage
  368. id="0"
  369. name="Spanish"
  370. package="2"
  371. />
  372. <otaLanguage
  373. id="0"
  374. name="Italian"
  375. package="3"
  376. />
  377. <otaLanguage
  378. id="0"
  379. name="German"
  380. package="4"
  381. />
  382. <otaLanguage
  383. id="0"
  384. name="Dutch"
  385. package="5"
  386. />
  387. <otaLanguage
  388. id="0"
  389. name="Russian"
  390. package="6"
  391. />
  392. <otaLanguage
  393. id="0"
  394. name="Chinese"
  395. package="7"
  396. />
  397. <otaLanguage
  398. id="0"
  399. name="Korean"
  400. package="8"
  401. />
  402. <otaLanguage
  403. id="0"
  404. name="Japanese"
  405. package="9"
  406. />
  407. <otaLanguage
  408. id="0"
  409. name="Finnish"
  410. package="10"
  411. />
  412. <otaLanguage
  413. id="0"
  414. name="Polish"
  415. package="11"
  416. />
  417. </otaLanguages>
  418. <otaPackages>
  419. <package
  420. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.3-build1.img"
  421. size="5183988"
  422. />
  423. <package
  424. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.3-build1-fr-FR.img"
  425. size="5183988"
  426. />
  427. <package
  428. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.3-build1-es-ES.img"
  429. size="5183988"
  430. />
  431. <package
  432. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.3-build1-it-IT.img"
  433. size="5183988"
  434. />
  435. <package
  436. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.3-build1-de-DE.img"
  437. size="5183988"
  438. />
  439. <package
  440. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.3-build1-nl-NL.img"
  441. size="5183988"
  442. />
  443. <package
  444. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.3-build1-ru-RU.img"
  445. size="5183988"
  446. />
  447. <package
  448. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.3-build1-cmn-CN.img"
  449. size="5183988"
  450. />
  451. <package
  452. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.3-build1-ko-KR.img"
  453. size="5183988"
  454. />
  455. <package
  456. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.3-build1-ja-JP.img"
  457. size="5183988"
  458. />
  459. <package
  460. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.3-build1-fi-FI.img"
  461. size="5183988"
  462. />
  463. <package
  464. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.3-build1-pl-PL.img"
  465. size="5183988"
  466. />
  467. </otaPackages>
  468. </productMenu>
  469. <productMenu id="sip"
  470. type="1" >
  471. </productMenu>
  472. <productMenu id="illusion"
  473. type="1" >
  474. </productMenu>
  475. <productMenu id="meshIntercom"
  476. type="30" >
  477. </productMenu>
  478. <productMenu id="meshIntercom+"
  479. type="3"
  480. url="2" >
  481. </productMenu>
  482. <productMenu id="waveIntercom"
  483. type="1" >
  484. </productMenu>
  485. <productMenu id="bluetoothIntercom"
  486. type="1"
  487. url="2" >
  488. </productMenu>
  489. <productMenu id="bluetoothIntercomGrouping"
  490. type="0" >
  491. </productMenu>
  492. <productMenu id="fmradio"
  493. type="1"
  494. url="1" >
  495. </productMenu>
  496. <productMenu id="phone"
  497. type="1" >
  498. </productMenu>
  499. <productMenu id="music"
  500. type="1" >
  501. </productMenu>
  502. <productMenu id="musicSharing"
  503. type="0" >
  504. </productMenu>
  505. <productMenu id="deviceSetting"
  506. type="1"
  507. url="https://api.sena.com/support/SenaNeoApp/60SEVO/NS_60SEVO_01.xml" >
  508. <productMenuURL version="1.0.2"
  509. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_06_Auto.xml"
  510. />
  511. </productMenu>
  512. <productMenu id="quickGuide"
  513. type="0"
  514. url=""
  515. size="1.12MB" >
  516. </productMenu>
  517. <productMenu id="userGuide"
  518. type="1"
  519. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_EVO_1.1.0_en_260630.pdf"
  520. size="2.0MB" >
  521. </productMenu>
  522. <productMenu id="videoGuide"
  523. type="0"
  524. url=""
  525. size="3.41MB" >
  526. </productMenu>
  527. <productMenu id="connectGuide"
  528. type="1"
  529. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_60sevo.json"
  530. size="1.12MB" >
  531. </productMenu>
  532. <productMenu id="volume"
  533. type="16" >
  534. </productMenu>
  535. <productMenu id="volume+"
  536. type="2"
  537. url="0x6004" >
  538. </productMenu>
  539. <productMenu id="soundMode"
  540. type="1" >
  541. </productMenu>
  542. <productMenu id="appearance"
  543. type="1"
  544. url="1|white,silver,black,glossy_black" >
  545. </productMenu>
  546. <productMenu id="battery"
  547. type="1" >
  548. </productMenu>
  549. <productID id="6A15"
  550. />
  551. <productGroupable type="0"
  552. />
  553. </product>
  554. <product id="60S"
  555. name="60S"
  556. series="60"
  557. latestVersion="1.2.11"
  558. latestVersionMesh="1.2"
  559. latestVersionVoicePrompt="1.8"
  560. show = "1" >
  561. <productMenu id="protocol"
  562. type="2" >
  563. </productMenu>
  564. <productMenu id="ota"
  565. type="2" >
  566. <otaLanguages>
  567. <otaLanguage
  568. id="0"
  569. name="English"
  570. package="0"
  571. />
  572. <otaLanguage
  573. id="0"
  574. name="French"
  575. package="1"
  576. />
  577. <otaLanguage
  578. id="0"
  579. name="Spanish"
  580. package="2"
  581. />
  582. <otaLanguage
  583. id="0"
  584. name="Italian"
  585. package="3"
  586. />
  587. <otaLanguage
  588. id="0"
  589. name="German"
  590. package="4"
  591. />
  592. <otaLanguage
  593. id="0"
  594. name="Dutch"
  595. package="5"
  596. />
  597. <otaLanguage
  598. id="0"
  599. name="Russian"
  600. package="6"
  601. />
  602. <otaLanguage
  603. id="0"
  604. name="Chinese"
  605. package="7"
  606. />
  607. <otaLanguage
  608. id="0"
  609. name="Korean"
  610. package="8"
  611. />
  612. <otaLanguage
  613. id="0"
  614. name="Japanese"
  615. package="9"
  616. />
  617. <otaLanguage
  618. id="0"
  619. name="Finnish"
  620. package="10"
  621. />
  622. <otaLanguage
  623. id="0"
  624. name="Polish"
  625. package="11"
  626. />
  627. </otaLanguages>
  628. <otaPackages>
  629. <package
  630. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.11-build1.img"
  631. size="5183988"
  632. />
  633. <package
  634. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.11-build1-fr-FR.img"
  635. size="5183988"
  636. />
  637. <package
  638. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.11-build1-es-ES.img"
  639. size="5183988"
  640. />
  641. <package
  642. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.11-build1-it-IT.img"
  643. size="5183988"
  644. />
  645. <package
  646. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.11-build1-de-DE.img"
  647. size="5183988"
  648. />
  649. <package
  650. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.11-build1-nl-NL.img"
  651. size="5183988"
  652. />
  653. <package
  654. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.11-build1-ru-RU.img"
  655. size="5183988"
  656. />
  657. <package
  658. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.11-build1-cmn-CN.img"
  659. size="5183988"
  660. />
  661. <package
  662. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.11-build1-ko-KR.img"
  663. size="5183988"
  664. />
  665. <package
  666. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.11-build1-ja-JP.img"
  667. size="5183988"
  668. />
  669. <package
  670. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.11-build1-fi-FI.img"
  671. size="5183988"
  672. />
  673. <package
  674. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.11-build1-pl-PL.img"
  675. size="5183988"
  676. />
  677. </otaPackages>
  678. </productMenu>
  679. <productMenu id="sip"
  680. type="1" >
  681. </productMenu>
  682. <productMenu id="illusion"
  683. type="1" >
  684. </productMenu>
  685. <productMenu id="meshIntercom"
  686. type="30" >
  687. </productMenu>
  688. <productMenu id="meshIntercom+"
  689. type="3"
  690. url="2" >
  691. </productMenu>
  692. <productMenu id="waveIntercom"
  693. type="1" >
  694. </productMenu>
  695. <productMenu id="bluetoothIntercom"
  696. type="1"
  697. url="2" >
  698. </productMenu>
  699. <productMenu id="bluetoothIntercomGrouping"
  700. type="0" >
  701. </productMenu>
  702. <productMenu id="fmradio"
  703. type="1"
  704. url="1" >
  705. </productMenu>
  706. <productMenu id="phone"
  707. type="1" >
  708. </productMenu>
  709. <productMenu id="music"
  710. type="1" >
  711. </productMenu>
  712. <productMenu id="musicSharing"
  713. type="0" >
  714. </productMenu>
  715. <productMenu id="deviceSetting"
  716. type="1"
  717. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_12.xml" >
  718. <productMenuURL version="1.2.10"
  719. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_09.xml"
  720. />
  721. <productMenuURL version="1.2.6"
  722. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_06.xml"
  723. />
  724. <productMenuURL version="1.2.3"
  725. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml"
  726. />
  727. </productMenu>
  728. <productMenu id="quickGuide"
  729. type="0"
  730. url=""
  731. size="1.12MB" >
  732. </productMenu>
  733. <productMenu id="userGuide"
  734. type="1"
  735. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.2.1_en_251015.pdf"
  736. size="2.0MB" >
  737. </productMenu>
  738. <productMenu id="videoGuide"
  739. type="0"
  740. url=""
  741. size="3.41MB" >
  742. </productMenu>
  743. <productMenu id="connectGuide"
  744. type="1"
  745. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_60s.json"
  746. size="1.12MB" >
  747. </productMenu>
  748. <productMenu id="volume"
  749. type="16" >
  750. </productMenu>
  751. <productMenu id="volume+"
  752. type="2"
  753. url="0x6004" >
  754. <productMenuURL version="1.2.3"
  755. url="0x6004"
  756. />
  757. </productMenu>
  758. <productMenu id="soundMode"
  759. type="0" >
  760. </productMenu>
  761. <productMenu id="appearance"
  762. type="1"
  763. url="2|white,silver,chrome,black" >
  764. </productMenu>
  765. <productMenu id="battery"
  766. type="1" >
  767. </productMenu>
  768. <productID id="6A0D"
  769. />
  770. <productGroupable type="0"
  771. />
  772. </product>
  773. <product id="60S"
  774. name="60S"
  775. series="60"
  776. latestVersion="1.2.11"
  777. latestVersionMesh="1.2"
  778. latestVersionVoicePrompt="1.8"
  779. show = "-1" >
  780. <productMenu id="protocol"
  781. type="2" >
  782. </productMenu>
  783. <productMenu id="ota"
  784. type="2" >
  785. <otaLanguages>
  786. <otaLanguage
  787. id="0"
  788. name="English"
  789. package="0"
  790. />
  791. <otaLanguage
  792. id="0"
  793. name="French"
  794. package="1"
  795. />
  796. <otaLanguage
  797. id="0"
  798. name="Spanish"
  799. package="2"
  800. />
  801. <otaLanguage
  802. id="0"
  803. name="Italian"
  804. package="3"
  805. />
  806. <otaLanguage
  807. id="0"
  808. name="German"
  809. package="4"
  810. />
  811. <otaLanguage
  812. id="0"
  813. name="Dutch"
  814. package="5"
  815. />
  816. <otaLanguage
  817. id="0"
  818. name="Russian"
  819. package="6"
  820. />
  821. <otaLanguage
  822. id="0"
  823. name="Chinese"
  824. package="7"
  825. />
  826. <otaLanguage
  827. id="0"
  828. name="Korean"
  829. package="8"
  830. />
  831. <otaLanguage
  832. id="0"
  833. name="Japanese"
  834. package="9"
  835. />
  836. <otaLanguage
  837. id="0"
  838. name="Finnish"
  839. package="10"
  840. />
  841. <otaLanguage
  842. id="0"
  843. name="Polish"
  844. package="11"
  845. />
  846. </otaLanguages>
  847. <otaPackages>
  848. <package
  849. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.11-build1.img"
  850. size="5183988"
  851. />
  852. <package
  853. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.11-build1-fr-FR.img"
  854. size="5183988"
  855. />
  856. <package
  857. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.11-build1-es-ES.img"
  858. size="5183988"
  859. />
  860. <package
  861. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.11-build1-it-IT.img"
  862. size="5183988"
  863. />
  864. <package
  865. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.11-build1-de-DE.img"
  866. size="5183988"
  867. />
  868. <package
  869. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.11-build1-nl-NL.img"
  870. size="5183988"
  871. />
  872. <package
  873. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.11-build1-ru-RU.img"
  874. size="5183988"
  875. />
  876. <package
  877. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.11-build1-cmn-CN.img"
  878. size="5183988"
  879. />
  880. <package
  881. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.11-build1-ko-KR.img"
  882. size="5183988"
  883. />
  884. <package
  885. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.11-build1-ja-JP.img"
  886. size="5183988"
  887. />
  888. <package
  889. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.11-build1-fi-FI.img"
  890. size="5183988"
  891. />
  892. <package
  893. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.11-build1-pl-PL.img"
  894. size="5183988"
  895. />
  896. </otaPackages>
  897. </productMenu>
  898. <productMenu id="wa"
  899. type="0" >
  900. </productMenu>
  901. <productMenu id="sip"
  902. type="1" >
  903. </productMenu>
  904. <productMenu id="led"
  905. type="0" >
  906. </productMenu>
  907. <productMenu id="illusion"
  908. type="1" >
  909. </productMenu>
  910. <productMenu id="meshIntercom"
  911. type="30" >
  912. </productMenu>
  913. <productMenu id="meshIntercom+"
  914. type="3"
  915. url="2" >
  916. <productMenuURL version="1.0.2"
  917. url="10"
  918. />
  919. </productMenu>
  920. <productMenu id="waveIntercom"
  921. type="1" >
  922. <productMenuType version="1.0.9"
  923. type="0"
  924. />
  925. </productMenu>
  926. <productMenu id="bluetoothIntercom"
  927. type="1"
  928. url="2" >
  929. </productMenu>
  930. <productMenu id="bluetoothIntercomGrouping"
  931. type="0" >
  932. </productMenu>
  933. <productMenu id="fmradio"
  934. type="1"
  935. url="1" >
  936. </productMenu>
  937. <productMenu id="phone"
  938. type="1" >
  939. </productMenu>
  940. <productMenu id="music"
  941. type="1" >
  942. </productMenu>
  943. <productMenu id="musicSharing"
  944. type="0" >
  945. </productMenu>
  946. <productMenu id="deviceSetting"
  947. type="1"
  948. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_12.xml" >
  949. <productMenuURL version="1.2.10"
  950. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_09.xml"
  951. />
  952. <productMenuURL version="1.2.6"
  953. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_06.xml"
  954. />
  955. <productMenuURL version="1.2.3"
  956. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml"
  957. />
  958. <productMenuURL version="1.0.2"
  959. url="https://api.sena.com/support/SenaNeoApp/60/NS_60.xml"
  960. />
  961. <productMenuURL version="1.0"
  962. url="https://api.sena.com/support/test/xml/NS_60_Test_13.xml"
  963. />
  964. <productMenuURL version="0.9.11"
  965. url="https://api.sena.com/support/test/xml/NS_60_Test_05.xml"
  966. />
  967. </productMenu>
  968. <productMenu id="quickGuide"
  969. type="0"
  970. url=""
  971. size="1.12MB" >
  972. </productMenu>
  973. <productMenu id="userGuide"
  974. type="1"
  975. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.2.1_en_251015.pdf"
  976. size="2.0MB" >
  977. </productMenu>
  978. <productMenu id="videoGuide"
  979. type="0"
  980. url=""
  981. size="3.41MB" >
  982. </productMenu>
  983. <productMenu id="connectGuide"
  984. type="1"
  985. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_60s.json"
  986. size="1.12MB" >
  987. </productMenu>
  988. <productMenu id="volume"
  989. type="16" >
  990. <productMenuType version="0.9.11"
  991. type="13"
  992. />
  993. </productMenu>
  994. <productMenu id="volume+"
  995. type="2"
  996. url="0x6004" >
  997. <productMenuURL version="1.2.3"
  998. url="0x6004"
  999. />
  1000. </productMenu>
  1001. <productMenu id="soundMode"
  1002. type="0" >
  1003. <productMenuType version="0.9.11"
  1004. type="0"
  1005. />
  1006. </productMenu>
  1007. <productMenu id="appearance"
  1008. type="1"
  1009. url="2|white,silver,chrome,black" >
  1010. </productMenu>
  1011. <productMenu id="battery"
  1012. type="1" >
  1013. </productMenu>
  1014. <productID id="6A02"
  1015. />
  1016. <productGroupable type="0"
  1017. />
  1018. </product>
  1019. <product id="60X"
  1020. name="60X"
  1021. series="60"
  1022. latestVersion="1.0.1"
  1023. latestVersionMesh="0.19"
  1024. latestVersionVoicePrompt="1.8"
  1025. show = "1" >
  1026. <productMenu id="protocol"
  1027. type="2" >
  1028. </productMenu>
  1029. <productMenu id="warranty"
  1030. type="1" >
  1031. </productMenu>
  1032. <productMenu id="serialNumber"
  1033. type="1" >
  1034. </productMenu>
  1035. <productMenu id="ota"
  1036. type="2" >
  1037. <otaLanguages>
  1038. <otaLanguage
  1039. id="0"
  1040. name="English"
  1041. package="0"
  1042. />
  1043. <otaLanguage
  1044. id="0"
  1045. name="French"
  1046. package="1"
  1047. />
  1048. <otaLanguage
  1049. id="0"
  1050. name="Spanish"
  1051. package="2"
  1052. />
  1053. <otaLanguage
  1054. id="0"
  1055. name="Italian"
  1056. package="3"
  1057. />
  1058. <otaLanguage
  1059. id="0"
  1060. name="German"
  1061. package="4"
  1062. />
  1063. <otaLanguage
  1064. id="0"
  1065. name="Dutch"
  1066. package="5"
  1067. />
  1068. <otaLanguage
  1069. id="0"
  1070. name="Russian"
  1071. package="6"
  1072. />
  1073. <otaLanguage
  1074. id="0"
  1075. name="Chinese"
  1076. package="7"
  1077. />
  1078. <otaLanguage
  1079. id="0"
  1080. name="Korean"
  1081. package="8"
  1082. />
  1083. <otaLanguage
  1084. id="0"
  1085. name="Japanese"
  1086. package="9"
  1087. />
  1088. <otaLanguage
  1089. id="0"
  1090. name="Finnish"
  1091. package="10"
  1092. />
  1093. <otaLanguage
  1094. id="0"
  1095. name="Polish"
  1096. package="11"
  1097. />
  1098. </otaLanguages>
  1099. <otaPackages>
  1100. <package
  1101. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0.1-build1.img"
  1102. size="5183988"
  1103. />
  1104. <package
  1105. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0.1-build1-fr-FR.img"
  1106. size="5183988"
  1107. />
  1108. <package
  1109. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0.1-build1-es-ES.img"
  1110. size="5183988"
  1111. />
  1112. <package
  1113. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0.1-build1-it-IT.img"
  1114. size="5183988"
  1115. />
  1116. <package
  1117. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0.1-build1-de-DE.img"
  1118. size="5183988"
  1119. />
  1120. <package
  1121. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0.1-build1-nl-NL.img"
  1122. size="5183988"
  1123. />
  1124. <package
  1125. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0.1-build1-ru-RU.img"
  1126. size="5183988"
  1127. />
  1128. <package
  1129. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0.1-build1-cmn-CN.img"
  1130. size="5183988"
  1131. />
  1132. <package
  1133. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0.1-build1-ko-KR.img"
  1134. size="5183988"
  1135. />
  1136. <package
  1137. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0.1-build1-ja-JP.img"
  1138. size="5183988"
  1139. />
  1140. <package
  1141. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0.1-build1-fi-FI.img"
  1142. size="5183988"
  1143. />
  1144. <package
  1145. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0.1-build1-pl-PL.img"
  1146. size="5183988"
  1147. />
  1148. </otaPackages>
  1149. </productMenu>
  1150. <productMenu id="wa"
  1151. type="0" >
  1152. </productMenu>
  1153. <productMenu id="sip"
  1154. type="1" >
  1155. </productMenu>
  1156. <productMenu id="led"
  1157. type="1" >
  1158. </productMenu>
  1159. <productMenu id="illusion"
  1160. type="1" >
  1161. </productMenu>
  1162. <productMenu id="meshIntercom"
  1163. type="30" >
  1164. </productMenu>
  1165. <productMenu id="meshIntercom+"
  1166. type="3"
  1167. url="2" >
  1168. </productMenu>
  1169. <productMenu id="waveIntercom"
  1170. type="1" >
  1171. </productMenu>
  1172. <productMenu id="bluetoothIntercom"
  1173. type="1" >
  1174. </productMenu>
  1175. <productMenu id="fmradio"
  1176. type="1"
  1177. url="1" >
  1178. </productMenu>
  1179. <productMenu id="mic"
  1180. type="0" >
  1181. </productMenu>
  1182. <productMenu id="phone"
  1183. type="1" >
  1184. </productMenu>
  1185. <productMenu id="music"
  1186. type="1" >
  1187. </productMenu>
  1188. <productMenu id="musicSharing"
  1189. type="0" >
  1190. </productMenu>
  1191. <productMenu id="deviceSetting"
  1192. type="1"
  1193. url="https://api.sena.com/support/SenaNeoApp/60X/NS_60X_01.xml" >
  1194. <productMenuURL version="1.0"
  1195. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml"
  1196. />
  1197. </productMenu>
  1198. <productMenu id="quickGuide"
  1199. type="0"
  1200. url=""
  1201. size="1.12MB" >
  1202. </productMenu>
  1203. <productMenu id="userGuide"
  1204. type="1"
  1205. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60X_1.0.2_en_260811.pdf"
  1206. size="2.0MB" >
  1207. </productMenu>
  1208. <productMenu id="videoGuide"
  1209. type="0"
  1210. url=""
  1211. size="3.41MB" >
  1212. </productMenu>
  1213. <productMenu id="connectGuide"
  1214. type="1"
  1215. url="https://api.sena.com/support/ConnectGuide/joyphone_phone5_init_60x.json"
  1216. size="1.12MB" >
  1217. </productMenu>
  1218. <productMenu id="keySettings"
  1219. type="1"
  1220. url="0|https://api.sena.com/support/Common/CustomButton/60x_key_info_20260427.json" >
  1221. </productMenu>
  1222. <productMenu id="volume"
  1223. type="13" >
  1224. </productMenu>
  1225. <productMenu id="volume+"
  1226. type="2"
  1227. url="0x6004" >
  1228. </productMenu>
  1229. <productMenu id="appearance"
  1230. type="1"
  1231. url="1|white,silver,black,glossy_black" >
  1232. </productMenu>
  1233. <productMenu id="battery"
  1234. type="1" >
  1235. </productMenu>
  1236. <productID id="6A03"
  1237. />
  1238. <productGroupable type="0"
  1239. />
  1240. </product>
  1241. <product id="R35"
  1242. name="R35"
  1243. series="R"
  1244. latestVersion="1.1.2"
  1245. latestVersionVoicePrompt="1.5"
  1246. show = "1" >
  1247. <productMenu id="protocol"
  1248. type="2" >
  1249. </productMenu>
  1250. <productMenu id="ota"
  1251. type="2" >
  1252. <otaLanguages>
  1253. <otaLanguage
  1254. id="0"
  1255. name="English"
  1256. package="0"
  1257. />
  1258. <otaLanguage
  1259. id="0"
  1260. name="Chinese"
  1261. package="1"
  1262. />
  1263. <otaLanguage
  1264. id="0"
  1265. name="Chinese Singapore"
  1266. package="2"
  1267. />
  1268. <otaLanguage
  1269. id="0"
  1270. name="Filipino"
  1271. package="3"
  1272. />
  1273. <otaLanguage
  1274. id="0"
  1275. name="Hebrew"
  1276. package="4"
  1277. />
  1278. <otaLanguage
  1279. id="0"
  1280. name="Hindi"
  1281. package="5"
  1282. />
  1283. <otaLanguage
  1284. id="0"
  1285. name="Indonesian"
  1286. package="6"
  1287. />
  1288. <otaLanguage
  1289. id="0"
  1290. name="Japanese"
  1291. package="7"
  1292. />
  1293. <otaLanguage
  1294. id="0"
  1295. name="Korean"
  1296. package="8"
  1297. />
  1298. <otaLanguage
  1299. id="0"
  1300. name="Malay"
  1301. package="9"
  1302. />
  1303. <otaLanguage
  1304. id="0"
  1305. name="Modern Standard Arabic"
  1306. package="10"
  1307. />
  1308. <otaLanguage
  1309. id="0"
  1310. name="Taiwanese"
  1311. package="11"
  1312. />
  1313. <otaLanguage
  1314. id="0"
  1315. name="Tamil"
  1316. package="12"
  1317. />
  1318. <otaLanguage
  1319. id="0"
  1320. name="Thai"
  1321. package="13"
  1322. />
  1323. <otaLanguage
  1324. id="0"
  1325. name="东北话"
  1326. package="14"
  1327. />
  1328. <otaLanguage
  1329. id="0"
  1330. name="广东话"
  1331. package="15"
  1332. />
  1333. <otaLanguage
  1334. id="0"
  1335. name="江浙沪"
  1336. package="16"
  1337. />
  1338. <otaLanguage
  1339. id="0"
  1340. name="四川话"
  1341. package="17"
  1342. />
  1343. <otaLanguage
  1344. id="0"
  1345. name="陕西话"
  1346. package="18"
  1347. />
  1348. </otaLanguages>
  1349. <otaPackages>
  1350. <package
  1351. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1.img"
  1352. size="5183988"
  1353. />
  1354. <package
  1355. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-cmn-CN.img"
  1356. size="5183988"
  1357. />
  1358. <package
  1359. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-cmn-SG.img"
  1360. size="5183988"
  1361. />
  1362. <package
  1363. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-tl-PH.img"
  1364. size="5183988"
  1365. />
  1366. <package
  1367. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-he-IL.img"
  1368. size="5183988"
  1369. />
  1370. <package
  1371. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-hi-IN.img"
  1372. size="5183988"
  1373. />
  1374. <package
  1375. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-id-ID.img"
  1376. size="5183988"
  1377. />
  1378. <package
  1379. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-ja-JP.img"
  1380. size="5183988"
  1381. />
  1382. <package
  1383. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-ko-KR.img"
  1384. size="5183988"
  1385. />
  1386. <package
  1387. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-ms-MY.img"
  1388. size="5183988"
  1389. />
  1390. <package
  1391. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-ar-XA.img"
  1392. size="5183988"
  1393. />
  1394. <package
  1395. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-nan-TW.img"
  1396. size="5183988"
  1397. />
  1398. <package
  1399. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-ta-IN.img"
  1400. size="5183988"
  1401. />
  1402. <package
  1403. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-th-TH.img"
  1404. size="5183988"
  1405. />
  1406. <package
  1407. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-zdb-CN.img"
  1408. size="5183988"
  1409. />
  1410. <package
  1411. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-yue-CN.img"
  1412. size="5183988"
  1413. />
  1414. <package
  1415. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-wuu-CN.img"
  1416. size="5183988"
  1417. />
  1418. <package
  1419. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-zsc-CN.img"
  1420. size="5183988"
  1421. />
  1422. <package
  1423. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-zsn-CN.img"
  1424. size="5183988"
  1425. />
  1426. </otaPackages>
  1427. </productMenu>
  1428. <productMenu id="sip"
  1429. type="1" >
  1430. </productMenu>
  1431. <productMenu id="illusion"
  1432. type="1" >
  1433. </productMenu>
  1434. <productMenu id="meshIntercom"
  1435. type="30" >
  1436. </productMenu>
  1437. <productMenu id="meshIntercom+"
  1438. type="3"
  1439. url="2" >
  1440. </productMenu>
  1441. <productMenu id="waveIntercom"
  1442. type="1" >
  1443. </productMenu>
  1444. <productMenu id="phone"
  1445. type="1" >
  1446. </productMenu>
  1447. <productMenu id="music"
  1448. type="1" >
  1449. </productMenu>
  1450. <productMenu id="musicSharing"
  1451. type="0" >
  1452. </productMenu>
  1453. <productMenu id="deviceSetting"
  1454. type="1"
  1455. url="https://api.sena.com/support/SenaNeoApp/R35/NS_R35_02.xml" >
  1456. <productMenuURL version="1.1.1"
  1457. url="https://api.sena.com/support/SenaNeoApp/R35/NS_R35_01.xml"
  1458. />
  1459. <productMenuURL version="1.0.3"
  1460. url="https://api.sena.com/support/SenaNeoApp/R35/NS_R35.xml"
  1461. />
  1462. </productMenu>
  1463. <productMenu id="quickGuide"
  1464. type="0"
  1465. url=""
  1466. size="1.12MB" >
  1467. </productMenu>
  1468. <productMenu id="userGuide"
  1469. type="1"
  1470. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_R35_1.1.1_en_260226.pdf"
  1471. size="2.0MB" >
  1472. </productMenu>
  1473. <productMenu id="videoGuide"
  1474. type="0"
  1475. url=""
  1476. size="3.41MB" >
  1477. </productMenu>
  1478. <productMenu id="connectGuide"
  1479. type="1"
  1480. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_r35.json"
  1481. size="1.12MB" >
  1482. </productMenu>
  1483. <productMenu id="volume"
  1484. type="16" >
  1485. </productMenu>
  1486. <productMenu id="volume+"
  1487. type="2"
  1488. url="0x6004" >
  1489. </productMenu>
  1490. <productMenu id="soundMode"
  1491. type="0" >
  1492. </productMenu>
  1493. <productMenu id="appearance"
  1494. type="1"
  1495. url="1|white,silver,chrome,black" >
  1496. </productMenu>
  1497. <productMenu id="battery"
  1498. type="1" >
  1499. </productMenu>
  1500. <productID id="6A06"
  1501. />
  1502. <productGroupable type="0"
  1503. />
  1504. </product>
  1505. <product id="COM60X"
  1506. name="BMW MOTORRAD COM 60X"
  1507. series="60"
  1508. latestVersion="0.1.1"
  1509. latestVersionMesh="0.19"
  1510. latestVersionVoicePrompt="1.8"
  1511. show = "-1" >
  1512. <productMenu id="protocol"
  1513. type="2" >
  1514. </productMenu>
  1515. <productMenu id="ota"
  1516. type="2" >
  1517. <otaLanguages>
  1518. <otaLanguage
  1519. id="0"
  1520. name="English"
  1521. package="0"
  1522. />
  1523. <otaLanguage
  1524. id="0"
  1525. name="French"
  1526. package="1"
  1527. />
  1528. <otaLanguage
  1529. id="0"
  1530. name="Spanish"
  1531. package="2"
  1532. />
  1533. <otaLanguage
  1534. id="0"
  1535. name="Italian"
  1536. package="3"
  1537. />
  1538. <otaLanguage
  1539. id="0"
  1540. name="German"
  1541. package="4"
  1542. />
  1543. <otaLanguage
  1544. id="0"
  1545. name="Dutch"
  1546. package="5"
  1547. />
  1548. <otaLanguage
  1549. id="0"
  1550. name="Russian"
  1551. package="6"
  1552. />
  1553. <otaLanguage
  1554. id="0"
  1555. name="Chinese"
  1556. package="7"
  1557. />
  1558. <otaLanguage
  1559. id="0"
  1560. name="Korean"
  1561. package="8"
  1562. />
  1563. <otaLanguage
  1564. id="0"
  1565. name="Japanese"
  1566. package="9"
  1567. />
  1568. <otaLanguage
  1569. id="0"
  1570. name="Finnish"
  1571. package="10"
  1572. />
  1573. <otaLanguage
  1574. id="0"
  1575. name="Polish"
  1576. package="11"
  1577. />
  1578. </otaLanguages>
  1579. <otaPackages>
  1580. <package
  1581. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/BMWCOM60X/BMW_MOTORRAD_COM_60X-v0.1.1-build0.img"
  1582. size="5183988"
  1583. />
  1584. <package
  1585. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/BMWCOM60X/BMW_MOTORRAD_COM_60X-v0.1.1-build0-fr-FR.img"
  1586. size="5183988"
  1587. />
  1588. <package
  1589. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/BMWCOM60X/BMW_MOTORRAD_COM_60X-v0.1.1-build0-es-ES.img"
  1590. size="5183988"
  1591. />
  1592. <package
  1593. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/BMWCOM60X/BMW_MOTORRAD_COM_60X-v0.1.1-build0-it-IT.img"
  1594. size="5183988"
  1595. />
  1596. <package
  1597. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/BMWCOM60X/BMW_MOTORRAD_COM_60X-v0.1.1-build0-de-DE.img"
  1598. size="5183988"
  1599. />
  1600. <package
  1601. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/BMWCOM60X/BMW_MOTORRAD_COM_60X-v0.1.1-build0-nl-NL.img"
  1602. size="5183988"
  1603. />
  1604. <package
  1605. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/BMWCOM60X/BMW_MOTORRAD_COM_60X-v0.1.1-build0-ru-RU.img"
  1606. size="5183988"
  1607. />
  1608. <package
  1609. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/BMWCOM60X/BMW_MOTORRAD_COM_60X-v0.1.1-build0-cmn-CN.img"
  1610. size="5183988"
  1611. />
  1612. <package
  1613. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/BMWCOM60X/BMW_MOTORRAD_COM_60X-v0.1.1-build0-ko-KR.img"
  1614. size="5183988"
  1615. />
  1616. <package
  1617. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/BMWCOM60X/BMW_MOTORRAD_COM_60X-v0.1.1-build0-ja-JP.img"
  1618. size="5183988"
  1619. />
  1620. <package
  1621. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/BMWCOM60X/BMW_MOTORRAD_COM_60X-v0.1.1-build0-fi-FI.img"
  1622. size="5183988"
  1623. />
  1624. <package
  1625. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/BMWCOM60X/BMW_MOTORRAD_COM_60X-v0.1.1-build0-pl-PL.img"
  1626. size="5183988"
  1627. />
  1628. </otaPackages>
  1629. </productMenu>
  1630. <productMenu id="wa"
  1631. type="0" >
  1632. </productMenu>
  1633. <productMenu id="sip"
  1634. type="1" >
  1635. </productMenu>
  1636. <productMenu id="led"
  1637. type="1" >
  1638. </productMenu>
  1639. <productMenu id="illusion"
  1640. type="1" >
  1641. </productMenu>
  1642. <productMenu id="meshIntercom"
  1643. type="30" >
  1644. </productMenu>
  1645. <productMenu id="meshIntercom+"
  1646. type="3"
  1647. url="2" >
  1648. </productMenu>
  1649. <productMenu id="bluetoothIntercom"
  1650. type="1" >
  1651. </productMenu>
  1652. <productMenu id="fmradio"
  1653. type="1"
  1654. url="1" >
  1655. </productMenu>
  1656. <productMenu id="mic"
  1657. type="0" >
  1658. </productMenu>
  1659. <productMenu id="phone"
  1660. type="1" >
  1661. </productMenu>
  1662. <productMenu id="music"
  1663. type="1" >
  1664. </productMenu>
  1665. <productMenu id="musicSharing"
  1666. type="0" >
  1667. </productMenu>
  1668. <productMenu id="deviceSetting"
  1669. type="1"
  1670. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml" >
  1671. </productMenu>
  1672. <productMenu id="quickGuide"
  1673. type="0"
  1674. url=""
  1675. size="1.12MB" >
  1676. </productMenu>
  1677. <productMenu id="userGuide"
  1678. type="1"
  1679. url=""
  1680. size="2.0MB" >
  1681. </productMenu>
  1682. <productMenu id="videoGuide"
  1683. type="0"
  1684. url=""
  1685. size="3.41MB" >
  1686. </productMenu>
  1687. <productMenu id="keySettings"
  1688. type="1"
  1689. url="0|https://api.sena.com/support/Common/CustomButton/60x_key_info_20260427.json" >
  1690. </productMenu>
  1691. <productMenu id="volume"
  1692. type="13" >
  1693. </productMenu>
  1694. <productMenu id="volume+"
  1695. type="2"
  1696. url="0x6004" >
  1697. </productMenu>
  1698. <productMenu id="battery"
  1699. type="1" >
  1700. </productMenu>
  1701. <productID id="6A1B"
  1702. />
  1703. <productGroupable type="0"
  1704. />
  1705. </product>
  1706. <product id="COMP1"
  1707. name="BMW COM P1"
  1708. series="60"
  1709. latestVersion="1.2"
  1710. latestVersionMesh="0.19"
  1711. latestVersionVoicePrompt="1.0"
  1712. show = "-1" >
  1713. <productMenu id="protocol"
  1714. type="2" >
  1715. </productMenu>
  1716. <productMenu id="ota"
  1717. type="2" >
  1718. <otaLanguages>
  1719. <otaLanguage
  1720. id="0"
  1721. name="English"
  1722. package="0"
  1723. />
  1724. <otaLanguage
  1725. id="0"
  1726. name="French"
  1727. package="1"
  1728. />
  1729. <otaLanguage
  1730. id="0"
  1731. name="Spanish"
  1732. package="2"
  1733. />
  1734. <otaLanguage
  1735. id="0"
  1736. name="Italian"
  1737. package="3"
  1738. />
  1739. <otaLanguage
  1740. id="0"
  1741. name="German"
  1742. package="4"
  1743. />
  1744. <otaLanguage
  1745. id="0"
  1746. name="Dutch"
  1747. package="5"
  1748. />
  1749. <otaLanguage
  1750. id="0"
  1751. name="Russian"
  1752. package="6"
  1753. />
  1754. <otaLanguage
  1755. id="0"
  1756. name="Chinese"
  1757. package="7"
  1758. />
  1759. <otaLanguage
  1760. id="0"
  1761. name="Korean"
  1762. package="8"
  1763. />
  1764. <otaLanguage
  1765. id="0"
  1766. name="Japanese"
  1767. package="9"
  1768. />
  1769. <otaLanguage
  1770. id="0"
  1771. name="Finnish"
  1772. package="10"
  1773. />
  1774. </otaLanguages>
  1775. <otaPackages>
  1776. <package
  1777. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0.img"
  1778. size="5183988"
  1779. />
  1780. <package
  1781. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-fr-FR.img"
  1782. size="5183988"
  1783. />
  1784. <package
  1785. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-es-ES.img"
  1786. size="5183988"
  1787. />
  1788. <package
  1789. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-it-IT.img"
  1790. size="5183988"
  1791. />
  1792. <package
  1793. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-de-DE.img"
  1794. size="5183988"
  1795. />
  1796. <package
  1797. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-nl-NL.img"
  1798. size="5183988"
  1799. />
  1800. <package
  1801. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-ru-RU.img"
  1802. size="5183988"
  1803. />
  1804. <package
  1805. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-cmn-CN.img"
  1806. size="5183988"
  1807. />
  1808. <package
  1809. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-ko-KR.img"
  1810. size="5183988"
  1811. />
  1812. <package
  1813. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-ja-JP.img"
  1814. size="5183988"
  1815. />
  1816. <package
  1817. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-fi-FI.img"
  1818. size="5183988"
  1819. />
  1820. </otaPackages>
  1821. </productMenu>
  1822. <productMenu id="wa"
  1823. type="0" >
  1824. </productMenu>
  1825. <productMenu id="sip"
  1826. type="1" >
  1827. </productMenu>
  1828. <productMenu id="led"
  1829. type="0" >
  1830. </productMenu>
  1831. <productMenu id="illusion"
  1832. type="0" >
  1833. </productMenu>
  1834. <productMenu id="meshIntercom"
  1835. type="30" >
  1836. </productMenu>
  1837. <productMenu id="bluetoothIntercom"
  1838. type="1" >
  1839. </productMenu>
  1840. <productMenu id="bluetoothIntercomGrouping"
  1841. type="0" >
  1842. </productMenu>
  1843. <productMenu id="fmradio"
  1844. type="0" >
  1845. </productMenu>
  1846. <productMenu id="phone"
  1847. type="1" >
  1848. </productMenu>
  1849. <productMenu id="music"
  1850. type="1" >
  1851. </productMenu>
  1852. <productMenu id="musicSharing"
  1853. type="0" >
  1854. </productMenu>
  1855. <productMenu id="deviceSetting"
  1856. type="1"
  1857. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml" >
  1858. </productMenu>
  1859. <productMenu id="quickGuide"
  1860. type="0"
  1861. url=""
  1862. size="1.12MB" >
  1863. </productMenu>
  1864. <productMenu id="userGuide"
  1865. type="0"
  1866. url=""
  1867. size="2.0MB" >
  1868. </productMenu>
  1869. <productMenu id="videoGuide"
  1870. type="0"
  1871. url=""
  1872. size="3.41MB" >
  1873. </productMenu>
  1874. <productMenu id="volume"
  1875. type="16" >
  1876. </productMenu>
  1877. <productMenu id="battery"
  1878. type="1" >
  1879. </productMenu>
  1880. <productID id="6A80"
  1881. />
  1882. <productGroupable type="0"
  1883. />
  1884. </product>
  1885. <product id="50S"
  1886. name="50S"
  1887. series="50"
  1888. latestVersion="2.7.2"
  1889. show = "1" >
  1890. <productMenu id="protocol"
  1891. type="2" >
  1892. </productMenu>
  1893. <productMenu id="alexa"
  1894. type="0" >
  1895. </productMenu>
  1896. <productMenu id="ota"
  1897. type="0"
  1898. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  1899. size="1150234" >
  1900. </productMenu>
  1901. <productMenu id="wa"
  1902. type="1" >
  1903. </productMenu>
  1904. <productMenu id="sip"
  1905. type="1" >
  1906. </productMenu>
  1907. <productMenu id="meshIntercom"
  1908. type="30" >
  1909. <productMenuType version="2.1.1"
  1910. type="20"
  1911. />
  1912. </productMenu>
  1913. <productMenu id="meshIntercom+"
  1914. type="3"
  1915. url="2" >
  1916. <productMenuType version="2.5.9"
  1917. type="2"
  1918. />
  1919. <productMenuURL version="2.1.1"
  1920. url="0"
  1921. />
  1922. </productMenu>
  1923. <productMenu id="waveIntercom"
  1924. type="1" >
  1925. <productMenuType version="2.6"
  1926. type="0"
  1927. />
  1928. </productMenu>
  1929. <productMenu id="bluetoothIntercom"
  1930. type="1" >
  1931. </productMenu>
  1932. <productMenu id="phone"
  1933. type="1" >
  1934. </productMenu>
  1935. <productMenu id="music"
  1936. type="1" >
  1937. </productMenu>
  1938. <productMenu id="fmradio"
  1939. type="1" >
  1940. </productMenu>
  1941. <productMenu id="deviceSetting"
  1942. type="1"
  1943. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_11.xml" >
  1944. <productMenuURL version="2.5.9"
  1945. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  1946. />
  1947. <productMenuURL version="2.1.1"
  1948. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  1949. />
  1950. <productMenuURL version="2.0.3"
  1951. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  1952. />
  1953. </productMenu>
  1954. <productMenu id="quickGuide"
  1955. type="0"
  1956. url=""
  1957. size="934KB" >
  1958. </productMenu>
  1959. <productMenu id="userGuide"
  1960. type="1"
  1961. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50S_2.8.1_en_250731.pdf"
  1962. size="1.14MB" >
  1963. </productMenu>
  1964. <productMenu id="videoGuide"
  1965. type="1"
  1966. url="https://www.youtube.com/watch?v=Uj1X00cwHlM&amp;list=PLXyK8lf8nIEymkdmRiz-OUBcPn1cxi9rx"
  1967. size="3.41MB" >
  1968. </productMenu>
  1969. <productMenu id="connectGuide"
  1970. type="1"
  1971. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_50s.json"
  1972. size="1.12MB" >
  1973. </productMenu>
  1974. <productMenu id="volume"
  1975. type="11" >
  1976. </productMenu>
  1977. <productMenu id="battery"
  1978. type="1" >
  1979. </productMenu>
  1980. <productID id="3210"
  1981. />
  1982. <productGroupable type="0"
  1983. />
  1984. </product>
  1985. <product id="50S"
  1986. name="50S"
  1987. series="50"
  1988. latestVersion="1.5.1"
  1989. show = "-1" >
  1990. <productMenu id="protocol"
  1991. type="2" >
  1992. </productMenu>
  1993. <productMenu id="alexa"
  1994. type="0" >
  1995. </productMenu>
  1996. <productMenu id="wa"
  1997. type="1" >
  1998. </productMenu>
  1999. <productMenu id="sip"
  2000. type="1" >
  2001. </productMenu>
  2002. <productMenu id="meshIntercom"
  2003. type="30" >
  2004. <productMenuType version="1.2.2"
  2005. type="20"
  2006. />
  2007. </productMenu>
  2008. <productMenu id="meshIntercom+"
  2009. type="3"
  2010. url="2" >
  2011. <productMenuType version="1.4.9"
  2012. type="2"
  2013. />
  2014. <productMenuURL version="1.2.2"
  2015. url="0"
  2016. />
  2017. </productMenu>
  2018. <productMenu id="waveIntercom"
  2019. type="1" >
  2020. <productMenuType version="1.3.9"
  2021. type="0"
  2022. />
  2023. </productMenu>
  2024. <productMenu id="bluetoothIntercom"
  2025. type="1" >
  2026. </productMenu>
  2027. <productMenu id="phone"
  2028. type="1" >
  2029. </productMenu>
  2030. <productMenu id="music"
  2031. type="1" >
  2032. </productMenu>
  2033. <productMenu id="fmradio"
  2034. type="1" >
  2035. </productMenu>
  2036. <productMenu id="deviceSetting"
  2037. type="1"
  2038. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  2039. <productMenuURL version="1.4.9"
  2040. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_13.xml"
  2041. />
  2042. <productMenuURL version="1.3.9"
  2043. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  2044. />
  2045. <productMenuURL version="1.2.2"
  2046. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2047. />
  2048. <productMenuURL version="1.1.1"
  2049. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2050. />
  2051. </productMenu>
  2052. <productMenu id="quickGuide"
  2053. type="0"
  2054. url=""
  2055. size="934KB" >
  2056. </productMenu>
  2057. <productMenu id="userGuide"
  2058. type="1"
  2059. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50S_1.9.2_en_250731.pdf"
  2060. size="1.14MB" >
  2061. </productMenu>
  2062. <productMenu id="videoGuide"
  2063. type="1"
  2064. url="https://www.youtube.com/watch?v=Uj1X00cwHlM&amp;list=PLXyK8lf8nIEymkdmRiz-OUBcPn1cxi9rx"
  2065. size="3.41MB" >
  2066. </productMenu>
  2067. <productMenu id="volume"
  2068. type="11" >
  2069. </productMenu>
  2070. <productMenu id="battery"
  2071. type="1" >
  2072. </productMenu>
  2073. <productID id="3132"
  2074. />
  2075. <productGroupable type="0"
  2076. />
  2077. </product>
  2078. <product id="50R"
  2079. name="50R"
  2080. series="50"
  2081. latestVersion="2.7.1"
  2082. show = "1" >
  2083. <productMenu id="protocol"
  2084. type="2" >
  2085. </productMenu>
  2086. <productMenu id="alexa"
  2087. type="0" >
  2088. </productMenu>
  2089. <productMenu id="ota"
  2090. type="0"
  2091. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  2092. size="1150234" >
  2093. </productMenu>
  2094. <productMenu id="wa"
  2095. type="1" >
  2096. </productMenu>
  2097. <productMenu id="sip"
  2098. type="1" >
  2099. </productMenu>
  2100. <productMenu id="meshIntercom"
  2101. type="30" >
  2102. <productMenuType version="2.1.1"
  2103. type="20"
  2104. />
  2105. </productMenu>
  2106. <productMenu id="meshIntercom+"
  2107. type="3"
  2108. url="2" >
  2109. <productMenuType version="2.5.9"
  2110. type="2"
  2111. />
  2112. <productMenuURL version="2.1.1"
  2113. url="0"
  2114. />
  2115. </productMenu>
  2116. <productMenu id="waveIntercom"
  2117. type="1" >
  2118. <productMenuType version="2.6"
  2119. type="0"
  2120. />
  2121. </productMenu>
  2122. <productMenu id="bluetoothIntercom"
  2123. type="1" >
  2124. </productMenu>
  2125. <productMenu id="phone"
  2126. type="1" >
  2127. </productMenu>
  2128. <productMenu id="music"
  2129. type="1" >
  2130. </productMenu>
  2131. <productMenu id="fmradio"
  2132. type="1" >
  2133. </productMenu>
  2134. <productMenu id="deviceSetting"
  2135. type="1"
  2136. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_11.xml" >
  2137. <productMenuURL version="2.5.9"
  2138. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  2139. />
  2140. <productMenuURL version="2.1.1"
  2141. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2142. />
  2143. <productMenuURL version="2.0"
  2144. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2145. />
  2146. </productMenu>
  2147. <productMenu id="quickGuide"
  2148. type="0"
  2149. url=""
  2150. size="344KB" >
  2151. </productMenu>
  2152. <productMenu id="userGuide"
  2153. type="1"
  2154. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50R_2.7.1_en_250731.pdf"
  2155. size="3.41MB" >
  2156. </productMenu>
  2157. <productMenu id="videoGuide"
  2158. type="1"
  2159. url="https://www.youtube.com/watch?v=bFqh5uCWzvY&amp;list=PLXyK8lf8nIEy9n9EILQwosdM3MzyldB3u"
  2160. size="3.41MB" >
  2161. </productMenu>
  2162. <productMenu id="connectGuide"
  2163. type="1"
  2164. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init_50r_250807.json"
  2165. size="1.12MB" >
  2166. </productMenu>
  2167. <productMenu id="volume"
  2168. type="11" >
  2169. </productMenu>
  2170. <productMenu id="battery"
  2171. type="1" >
  2172. </productMenu>
  2173. <productID id="3218"
  2174. />
  2175. <productGroupable type="0"
  2176. />
  2177. </product>
  2178. <product id="50R"
  2179. name="50R"
  2180. series="50"
  2181. latestVersion="1.5.1"
  2182. show = "-1" >
  2183. <productMenu id="protocol"
  2184. type="2" >
  2185. </productMenu>
  2186. <productMenu id="alexa"
  2187. type="0" >
  2188. </productMenu>
  2189. <productMenu id="wa"
  2190. type="1" >
  2191. </productMenu>
  2192. <productMenu id="sip"
  2193. type="1" >
  2194. </productMenu>
  2195. <productMenu id="meshIntercom"
  2196. type="30" >
  2197. <productMenuType version="1.2.2"
  2198. type="20"
  2199. />
  2200. </productMenu>
  2201. <productMenu id="meshIntercom+"
  2202. type="3"
  2203. url="2" >
  2204. <productMenuType version="1.4.9"
  2205. type="2"
  2206. />
  2207. <productMenuURL version="1.2.2"
  2208. url="0"
  2209. />
  2210. </productMenu>
  2211. <productMenu id="waveIntercom"
  2212. type="1" >
  2213. <productMenuType version="1.3.9"
  2214. type="0"
  2215. />
  2216. </productMenu>
  2217. <productMenu id="bluetoothIntercom"
  2218. type="1" >
  2219. </productMenu>
  2220. <productMenu id="phone"
  2221. type="1" >
  2222. </productMenu>
  2223. <productMenu id="music"
  2224. type="1" >
  2225. </productMenu>
  2226. <productMenu id="fmradio"
  2227. type="1" >
  2228. </productMenu>
  2229. <productMenu id="deviceSetting"
  2230. type="1"
  2231. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  2232. <productMenuURL version="1.4.9"
  2233. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_13.xml"
  2234. />
  2235. <productMenuURL version="1.3.9"
  2236. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  2237. />
  2238. <productMenuURL version="1.2.2"
  2239. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2240. />
  2241. <productMenuURL version="1.1.1"
  2242. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2243. />
  2244. </productMenu>
  2245. <productMenu id="quickGuide"
  2246. type="0"
  2247. url=""
  2248. size="344KB" >
  2249. </productMenu>
  2250. <productMenu id="userGuide"
  2251. type="1"
  2252. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50R_1.9.2_en_250731.pdf"
  2253. size="3.41MB" >
  2254. </productMenu>
  2255. <productMenu id="videoGuide"
  2256. type="1"
  2257. url="https://www.youtube.com/watch?v=bFqh5uCWzvY&amp;list=PLXyK8lf8nIEy9n9EILQwosdM3MzyldB3u"
  2258. size="3.41MB" >
  2259. </productMenu>
  2260. <productMenu id="volume"
  2261. type="11" >
  2262. </productMenu>
  2263. <productMenu id="battery"
  2264. type="1" >
  2265. </productMenu>
  2266. <productID id="3134"
  2267. />
  2268. <productGroupable type="0"
  2269. />
  2270. </product>
  2271. <product id="50C"
  2272. name="50C"
  2273. series="50"
  2274. latestVersion="1.4.3"
  2275. show = "1" >
  2276. <productMenu id="protocol"
  2277. type="2" >
  2278. </productMenu>
  2279. <productMenu id="ota"
  2280. type="0" >
  2281. </productMenu>
  2282. <productMenu id="wa"
  2283. type="1" >
  2284. </productMenu>
  2285. <productMenu id="sip"
  2286. type="1" >
  2287. </productMenu>
  2288. <productMenu id="meshIntercom"
  2289. type="30" >
  2290. <productMenuType version="1.1.1"
  2291. type="20"
  2292. />
  2293. </productMenu>
  2294. <productMenu id="meshIntercom+"
  2295. type="3"
  2296. url="2" >
  2297. <productMenuType version="1.3.9"
  2298. type="2"
  2299. />
  2300. <productMenuURL version="1.1.1"
  2301. url="0"
  2302. />
  2303. </productMenu>
  2304. <productMenu id="waveIntercom"
  2305. type="1" >
  2306. <productMenuType version="1.2.9"
  2307. type="0"
  2308. />
  2309. </productMenu>
  2310. <productMenu id="bluetoothIntercom"
  2311. type="1" >
  2312. </productMenu>
  2313. <productMenu id="phone"
  2314. type="1" >
  2315. </productMenu>
  2316. <productMenu id="music"
  2317. type="1" >
  2318. </productMenu>
  2319. <productMenu id="fmradio"
  2320. type="1" >
  2321. </productMenu>
  2322. <productMenu id="deviceSetting"
  2323. type="1"
  2324. url="https://api.sena.com/support/SenaNeoApp/50C/NS_50C_04.xml" >
  2325. <productMenuURL version="1.3.9"
  2326. url="https://api.sena.com/support/SenaNeoApp/50C/NS_50C_02.xml"
  2327. />
  2328. <productMenuURL version="1.1.1"
  2329. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2330. />
  2331. <productMenuURL version="1.0.1"
  2332. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2333. />
  2334. </productMenu>
  2335. <productMenu id="quickGuide"
  2336. type="0"
  2337. url=""
  2338. size="344KB" >
  2339. </productMenu>
  2340. <productMenu id="userGuide"
  2341. type="1"
  2342. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50C_1.6.1_en_250508.pdf"
  2343. size="3.41MB" >
  2344. </productMenu>
  2345. <productMenu id="connectGuide"
  2346. type="1"
  2347. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_50c.json"
  2348. size="1.12MB" >
  2349. </productMenu>
  2350. <productMenu id="volume"
  2351. type="11" >
  2352. </productMenu>
  2353. <productMenu id="battery"
  2354. type="1" >
  2355. </productMenu>
  2356. <productID id="3232"
  2357. />
  2358. <productGroupable type="0"
  2359. />
  2360. </product>
  2361. <product id="PHANTOMXB"
  2362. name="PHANTOM XB"
  2363. series="Helmet"
  2364. latestVersion="1.2.9"
  2365. latestVersionVoicePrompt="1.6"
  2366. show = "-1" >
  2367. <productMenu id="protocol"
  2368. type="2" >
  2369. </productMenu>
  2370. <productMenu id="ota"
  2371. type="2" >
  2372. <otaLanguages>
  2373. <otaLanguage
  2374. id="0"
  2375. name="English"
  2376. package="0"
  2377. />
  2378. <otaLanguage
  2379. id="0"
  2380. name="French"
  2381. package="1"
  2382. />
  2383. <otaLanguage
  2384. id="0"
  2385. name="Spanish"
  2386. package="2"
  2387. />
  2388. <otaLanguage
  2389. id="0"
  2390. name="Italian"
  2391. package="3"
  2392. />
  2393. <otaLanguage
  2394. id="0"
  2395. name="German"
  2396. package="4"
  2397. />
  2398. <otaLanguage
  2399. id="0"
  2400. name="Dutch"
  2401. package="5"
  2402. />
  2403. <otaLanguage
  2404. id="0"
  2405. name="Russian"
  2406. package="6"
  2407. />
  2408. <otaLanguage
  2409. id="0"
  2410. name="Chinese"
  2411. package="7"
  2412. />
  2413. <otaLanguage
  2414. id="0"
  2415. name="Korean"
  2416. package="8"
  2417. />
  2418. <otaLanguage
  2419. id="0"
  2420. name="Japanese"
  2421. package="9"
  2422. />
  2423. <otaLanguage
  2424. id="0"
  2425. name="Finnish"
  2426. package="10"
  2427. />
  2428. <otaLanguage
  2429. id="0"
  2430. name="Polish"
  2431. package="11"
  2432. />
  2433. </otaLanguages>
  2434. <otaPackages>
  2435. <package
  2436. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0.img"
  2437. size="5183988"
  2438. />
  2439. <package
  2440. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-fr-FR.img"
  2441. size="5183988"
  2442. />
  2443. <package
  2444. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-es-ES.img"
  2445. size="5183988"
  2446. />
  2447. <package
  2448. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-it-IT.img"
  2449. size="5183988"
  2450. />
  2451. <package
  2452. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-de-DE.img"
  2453. size="5183988"
  2454. />
  2455. <package
  2456. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-nl-NL.img"
  2457. size="5183988"
  2458. />
  2459. <package
  2460. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-ru-RU.img"
  2461. size="5183988"
  2462. />
  2463. <package
  2464. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-cmn-CN.img"
  2465. size="5183988"
  2466. />
  2467. <package
  2468. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-ko-KR.img"
  2469. size="5183988"
  2470. />
  2471. <package
  2472. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-ja-JP.img"
  2473. size="5183988"
  2474. />
  2475. <package
  2476. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-fi-FI.img"
  2477. size="5183988"
  2478. />
  2479. <package
  2480. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-pl-PL.img"
  2481. size="5183988"
  2482. />
  2483. </otaPackages>
  2484. </productMenu>
  2485. <productMenu id="wa"
  2486. type="0" >
  2487. </productMenu>
  2488. <productMenu id="led"
  2489. type="5" >
  2490. </productMenu>
  2491. <productMenu id="led+"
  2492. type="2"
  2493. url="1" >
  2494. </productMenu>
  2495. <productMenu id="meshIntercom"
  2496. type="30" >
  2497. </productMenu>
  2498. <productMenu id="meshIntercom+"
  2499. type="3"
  2500. url="2" >
  2501. </productMenu>
  2502. <productMenu id="waveIntercom"
  2503. type="1" >
  2504. </productMenu>
  2505. <productMenu id="fmradio"
  2506. type="0" >
  2507. </productMenu>
  2508. <productMenu id="phone"
  2509. type="1" >
  2510. </productMenu>
  2511. <productMenu id="music"
  2512. type="1" >
  2513. </productMenu>
  2514. <productMenu id="musicSharing"
  2515. type="0" >
  2516. </productMenu>
  2517. <productMenu id="deviceSetting"
  2518. type="1"
  2519. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_12.xml" >
  2520. <productMenuURL version="1.2.10"
  2521. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml"
  2522. />
  2523. <productMenuURL version="1.2.4"
  2524. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  2525. />
  2526. </productMenu>
  2527. <productMenu id="quickGuide"
  2528. type="0"
  2529. url=""
  2530. size="1.12MB" >
  2531. </productMenu>
  2532. <productMenu id="userGuide"
  2533. type="1"
  2534. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Family_1.3.0_en_260723.pdf"
  2535. size="2.0MB" >
  2536. </productMenu>
  2537. <productMenu id="videoGuide"
  2538. type="0"
  2539. url=""
  2540. size="3.41MB" >
  2541. </productMenu>
  2542. <productMenu id="volume"
  2543. type="16" >
  2544. </productMenu>
  2545. <productMenu id="volume+"
  2546. type="2"
  2547. url="0x6004" >
  2548. </productMenu>
  2549. <productMenu id="battery"
  2550. type="1" >
  2551. </productMenu>
  2552. <productID id="6A0F"
  2553. />
  2554. <productGroupable type="0"
  2555. />
  2556. </product>
  2557. <product id="PHANTOMXB"
  2558. name="PHANTOM XB"
  2559. series="Helmet"
  2560. latestVersion="1.2.9"
  2561. latestVersionVoicePrompt="1.6"
  2562. show = "-1" >
  2563. <productMenu id="protocol"
  2564. type="2" >
  2565. </productMenu>
  2566. <productMenu id="ota"
  2567. type="2" >
  2568. <otaLanguages>
  2569. <otaLanguage
  2570. id="0"
  2571. name="English"
  2572. package="0"
  2573. />
  2574. <otaLanguage
  2575. id="0"
  2576. name="French"
  2577. package="1"
  2578. />
  2579. <otaLanguage
  2580. id="0"
  2581. name="Spanish"
  2582. package="2"
  2583. />
  2584. <otaLanguage
  2585. id="0"
  2586. name="Italian"
  2587. package="3"
  2588. />
  2589. <otaLanguage
  2590. id="0"
  2591. name="German"
  2592. package="4"
  2593. />
  2594. <otaLanguage
  2595. id="0"
  2596. name="Dutch"
  2597. package="5"
  2598. />
  2599. <otaLanguage
  2600. id="0"
  2601. name="Russian"
  2602. package="6"
  2603. />
  2604. <otaLanguage
  2605. id="0"
  2606. name="Chinese"
  2607. package="7"
  2608. />
  2609. <otaLanguage
  2610. id="0"
  2611. name="Korean"
  2612. package="8"
  2613. />
  2614. <otaLanguage
  2615. id="0"
  2616. name="Japanese"
  2617. package="9"
  2618. />
  2619. <otaLanguage
  2620. id="0"
  2621. name="Finnish"
  2622. package="10"
  2623. />
  2624. <otaLanguage
  2625. id="0"
  2626. name="Polish"
  2627. package="11"
  2628. />
  2629. </otaLanguages>
  2630. <otaPackages>
  2631. <package
  2632. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0.img"
  2633. size="5183988"
  2634. />
  2635. <package
  2636. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-fr-FR.img"
  2637. size="5183988"
  2638. />
  2639. <package
  2640. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-es-ES.img"
  2641. size="5183988"
  2642. />
  2643. <package
  2644. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-it-IT.img"
  2645. size="5183988"
  2646. />
  2647. <package
  2648. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-de-DE.img"
  2649. size="5183988"
  2650. />
  2651. <package
  2652. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-nl-NL.img"
  2653. size="5183988"
  2654. />
  2655. <package
  2656. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-ru-RU.img"
  2657. size="5183988"
  2658. />
  2659. <package
  2660. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-cmn-CN.img"
  2661. size="5183988"
  2662. />
  2663. <package
  2664. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-ko-KR.img"
  2665. size="5183988"
  2666. />
  2667. <package
  2668. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-ja-JP.img"
  2669. size="5183988"
  2670. />
  2671. <package
  2672. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-fi-FI.img"
  2673. size="5183988"
  2674. />
  2675. <package
  2676. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-pl-PL.img"
  2677. size="5183988"
  2678. />
  2679. </otaPackages>
  2680. </productMenu>
  2681. <productMenu id="wa"
  2682. type="0" >
  2683. </productMenu>
  2684. <productMenu id="led"
  2685. type="5" >
  2686. </productMenu>
  2687. <productMenu id="led+"
  2688. type="2"
  2689. url="1" >
  2690. </productMenu>
  2691. <productMenu id="meshIntercom"
  2692. type="30" >
  2693. </productMenu>
  2694. <productMenu id="meshIntercom+"
  2695. type="3"
  2696. url="2" >
  2697. </productMenu>
  2698. <productMenu id="waveIntercom"
  2699. type="1" >
  2700. </productMenu>
  2701. <productMenu id="fmradio"
  2702. type="0" >
  2703. </productMenu>
  2704. <productMenu id="phone"
  2705. type="1" >
  2706. </productMenu>
  2707. <productMenu id="music"
  2708. type="1" >
  2709. </productMenu>
  2710. <productMenu id="musicSharing"
  2711. type="0" >
  2712. </productMenu>
  2713. <productMenu id="deviceSetting"
  2714. type="1"
  2715. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_12.xml" >
  2716. <productMenuURL version="1.2.10"
  2717. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml"
  2718. />
  2719. <productMenuURL version="1.2.4"
  2720. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  2721. />
  2722. <productMenuURL version="1.2.1"
  2723. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  2724. />
  2725. </productMenu>
  2726. <productMenu id="quickGuide"
  2727. type="0"
  2728. url=""
  2729. size="1.12MB" >
  2730. </productMenu>
  2731. <productMenu id="userGuide"
  2732. type="1"
  2733. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Family_1.3.0_en_260723.pdf"
  2734. size="2.0MB" >
  2735. </productMenu>
  2736. <productMenu id="videoGuide"
  2737. type="0"
  2738. url=""
  2739. size="3.41MB" >
  2740. </productMenu>
  2741. <productMenu id="volume"
  2742. type="16" >
  2743. </productMenu>
  2744. <productMenu id="volume+"
  2745. type="2"
  2746. url="0x6004" >
  2747. </productMenu>
  2748. <productMenu id="battery"
  2749. type="1" >
  2750. </productMenu>
  2751. <productID id="6A0C"
  2752. />
  2753. <productGroupable type="0"
  2754. />
  2755. </product>
  2756. <product id="PHANTOMKV"
  2757. name="PHANTOM KV"
  2758. series="Helmet"
  2759. latestVersion="1.2.10"
  2760. latestVersionVoicePrompt="1.7"
  2761. show = "1" >
  2762. <productMenu id="protocol"
  2763. type="2" >
  2764. </productMenu>
  2765. <productMenu id="ota"
  2766. type="2" >
  2767. <otaLanguages>
  2768. <otaLanguage
  2769. id="0"
  2770. name="English"
  2771. package="0"
  2772. />
  2773. <otaLanguage
  2774. id="0"
  2775. name="French"
  2776. package="1"
  2777. />
  2778. <otaLanguage
  2779. id="0"
  2780. name="Spanish"
  2781. package="2"
  2782. />
  2783. <otaLanguage
  2784. id="0"
  2785. name="Italian"
  2786. package="3"
  2787. />
  2788. <otaLanguage
  2789. id="0"
  2790. name="German"
  2791. package="4"
  2792. />
  2793. <otaLanguage
  2794. id="0"
  2795. name="Dutch"
  2796. package="5"
  2797. />
  2798. <otaLanguage
  2799. id="0"
  2800. name="Russian"
  2801. package="6"
  2802. />
  2803. <otaLanguage
  2804. id="0"
  2805. name="Chinese"
  2806. package="7"
  2807. />
  2808. <otaLanguage
  2809. id="0"
  2810. name="Korean"
  2811. package="8"
  2812. />
  2813. <otaLanguage
  2814. id="0"
  2815. name="Japanese"
  2816. package="9"
  2817. />
  2818. <otaLanguage
  2819. id="0"
  2820. name="Finnish"
  2821. package="10"
  2822. />
  2823. <otaLanguage
  2824. id="0"
  2825. name="Polish"
  2826. package="11"
  2827. />
  2828. </otaLanguages>
  2829. <otaPackages>
  2830. <package
  2831. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0.img"
  2832. size="5183988"
  2833. />
  2834. <package
  2835. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-fr-FR.img"
  2836. size="5183988"
  2837. />
  2838. <package
  2839. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-es-ES.img"
  2840. size="5183988"
  2841. />
  2842. <package
  2843. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-it-IT.img"
  2844. size="5183988"
  2845. />
  2846. <package
  2847. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-de-DE.img"
  2848. size="5183988"
  2849. />
  2850. <package
  2851. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-nl-NL.img"
  2852. size="5183988"
  2853. />
  2854. <package
  2855. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-ru-RU.img"
  2856. size="5183988"
  2857. />
  2858. <package
  2859. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-cmn-CN.img"
  2860. size="5183988"
  2861. />
  2862. <package
  2863. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-ko-KR.img"
  2864. size="5183988"
  2865. />
  2866. <package
  2867. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-ja-JP.img"
  2868. size="5183988"
  2869. />
  2870. <package
  2871. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-fi-FI.img"
  2872. size="5183988"
  2873. />
  2874. <package
  2875. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-pl-PL.img"
  2876. size="5183988"
  2877. />
  2878. </otaPackages>
  2879. </productMenu>
  2880. <productMenu id="wa"
  2881. type="0" >
  2882. </productMenu>
  2883. <productMenu id="led"
  2884. type="5" >
  2885. </productMenu>
  2886. <productMenu id="led+"
  2887. type="2"
  2888. url="1" >
  2889. </productMenu>
  2890. <productMenu id="meshIntercom"
  2891. type="30" >
  2892. </productMenu>
  2893. <productMenu id="meshIntercom+"
  2894. type="3"
  2895. url="2" >
  2896. </productMenu>
  2897. <productMenu id="waveIntercom"
  2898. type="1" >
  2899. </productMenu>
  2900. <productMenu id="fmradio"
  2901. type="0" >
  2902. </productMenu>
  2903. <productMenu id="phone"
  2904. type="1" >
  2905. </productMenu>
  2906. <productMenu id="music"
  2907. type="1" >
  2908. </productMenu>
  2909. <productMenu id="musicSharing"
  2910. type="0" >
  2911. </productMenu>
  2912. <productMenu id="deviceSetting"
  2913. type="1"
  2914. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_12.xml" >
  2915. <productMenuURL version="1.2.10"
  2916. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml"
  2917. />
  2918. <productMenuURL version="1.2.4"
  2919. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  2920. />
  2921. </productMenu>
  2922. <productMenu id="quickGuide"
  2923. type="0"
  2924. url=""
  2925. size="1.12MB" >
  2926. </productMenu>
  2927. <productMenu id="userGuide"
  2928. type="1"
  2929. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Family_1.3.0_en_260723.pdf"
  2930. size="2.0MB" >
  2931. </productMenu>
  2932. <productMenu id="videoGuide"
  2933. type="0"
  2934. url=""
  2935. size="3.41MB" >
  2936. </productMenu>
  2937. <productMenu id="connectGuide"
  2938. type="1"
  2939. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  2940. size="1.1MB" >
  2941. </productMenu>
  2942. <productMenu id="volume"
  2943. type="16" >
  2944. </productMenu>
  2945. <productMenu id="volume+"
  2946. type="2"
  2947. url="0x6004" >
  2948. </productMenu>
  2949. <productMenu id="soundMode"
  2950. type="1" >
  2951. </productMenu>
  2952. <productMenu id="battery"
  2953. type="1" >
  2954. </productMenu>
  2955. <productID id="6A13"
  2956. />
  2957. <productGroupable type="0"
  2958. />
  2959. </product>
  2960. <product id="PHANTOMCamera"
  2961. name="PHANTOM Camera"
  2962. series="Helmet"
  2963. latestVersion="1.2.10"
  2964. latestVersionVoicePrompt="1.7"
  2965. show = "1" >
  2966. <productMenu id="protocol"
  2967. type="2" >
  2968. </productMenu>
  2969. <productMenu id="ota"
  2970. type="3" >
  2971. <otaLanguages>
  2972. <otaLanguage
  2973. id="0"
  2974. name="English"
  2975. package="0"
  2976. />
  2977. <otaLanguage
  2978. id="0"
  2979. name="French"
  2980. package="1"
  2981. />
  2982. <otaLanguage
  2983. id="0"
  2984. name="Spanish"
  2985. package="2"
  2986. />
  2987. <otaLanguage
  2988. id="0"
  2989. name="Italian"
  2990. package="3"
  2991. />
  2992. <otaLanguage
  2993. id="0"
  2994. name="German"
  2995. package="4"
  2996. />
  2997. <otaLanguage
  2998. id="0"
  2999. name="Dutch"
  3000. package="5"
  3001. />
  3002. <otaLanguage
  3003. id="0"
  3004. name="Russian"
  3005. package="6"
  3006. />
  3007. <otaLanguage
  3008. id="0"
  3009. name="Chinese"
  3010. package="7"
  3011. />
  3012. <otaLanguage
  3013. id="0"
  3014. name="Korean"
  3015. package="8"
  3016. />
  3017. <otaLanguage
  3018. id="0"
  3019. name="Japanese"
  3020. package="9"
  3021. />
  3022. <otaLanguage
  3023. id="0"
  3024. name="Finnish"
  3025. package="10"
  3026. />
  3027. <otaLanguage
  3028. id="0"
  3029. name="Polish"
  3030. package="11"
  3031. />
  3032. </otaLanguages>
  3033. <otaPackages>
  3034. <package
  3035. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0.img"
  3036. size="5183988"
  3037. />
  3038. <package
  3039. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-fr-FR.img"
  3040. size="5183988"
  3041. />
  3042. <package
  3043. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-es-ES.img"
  3044. size="5183988"
  3045. />
  3046. <package
  3047. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-it-IT.img"
  3048. size="5183988"
  3049. />
  3050. <package
  3051. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-de-DE.img"
  3052. size="5183988"
  3053. />
  3054. <package
  3055. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-nl-NL.img"
  3056. size="5183988"
  3057. />
  3058. <package
  3059. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-ru-RU.img"
  3060. size="5183988"
  3061. />
  3062. <package
  3063. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-cmn-CN.img"
  3064. size="5183988"
  3065. />
  3066. <package
  3067. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-ko-KR.img"
  3068. size="5183988"
  3069. />
  3070. <package
  3071. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-ja-JP.img"
  3072. size="5183988"
  3073. />
  3074. <package
  3075. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-fi-FI.img"
  3076. size="5183988"
  3077. />
  3078. <package
  3079. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-pl-PL.img"
  3080. size="5183988"
  3081. />
  3082. </otaPackages>
  3083. </productMenu>
  3084. <productMenu id="wa"
  3085. type="0" >
  3086. </productMenu>
  3087. <productMenu id="led"
  3088. type="5" >
  3089. </productMenu>
  3090. <productMenu id="led+"
  3091. type="2"
  3092. url="1" >
  3093. </productMenu>
  3094. <productMenu id="meshIntercom"
  3095. type="30" >
  3096. </productMenu>
  3097. <productMenu id="meshIntercom+"
  3098. type="3"
  3099. url="2" >
  3100. </productMenu>
  3101. <productMenu id="waveIntercom"
  3102. type="1" >
  3103. </productMenu>
  3104. <productMenu id="fmradio"
  3105. type="0" >
  3106. </productMenu>
  3107. <productMenu id="phone"
  3108. type="1" >
  3109. </productMenu>
  3110. <productMenu id="music"
  3111. type="1" >
  3112. </productMenu>
  3113. <productMenu id="musicSharing"
  3114. type="0" >
  3115. </productMenu>
  3116. <productMenu id="deviceSetting"
  3117. type="1"
  3118. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml" >
  3119. </productMenu>
  3120. <productMenu id="quickGuide"
  3121. type="0"
  3122. url=""
  3123. size="1.12MB" >
  3124. </productMenu>
  3125. <productMenu id="userGuide"
  3126. type="1"
  3127. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Family_1.3.0_en_260723.pdf"
  3128. size="2.0MB" >
  3129. </productMenu>
  3130. <productMenu id="videoGuide"
  3131. type="0"
  3132. url=""
  3133. size="3.41MB" >
  3134. </productMenu>
  3135. <productMenu id="volume"
  3136. type="16" >
  3137. </productMenu>
  3138. <productMenu id="battery"
  3139. type="1" >
  3140. </productMenu>
  3141. <productID id="6A10"
  3142. />
  3143. <productGroupable type="0"
  3144. />
  3145. </product>
  3146. <product id="PHANTOMCamera"
  3147. name="PHANTOM Camera"
  3148. series="Helmet"
  3149. latestVersion="1.2.10"
  3150. latestVersionVoicePrompt="1.7"
  3151. show = "-1" >
  3152. <productMenu id="protocol"
  3153. type="2" >
  3154. </productMenu>
  3155. <productMenu id="ota"
  3156. type="3" >
  3157. <otaLanguages>
  3158. <otaLanguage
  3159. id="0"
  3160. name="English"
  3161. package="0"
  3162. />
  3163. <otaLanguage
  3164. id="0"
  3165. name="French"
  3166. package="1"
  3167. />
  3168. <otaLanguage
  3169. id="0"
  3170. name="Spanish"
  3171. package="2"
  3172. />
  3173. <otaLanguage
  3174. id="0"
  3175. name="Italian"
  3176. package="3"
  3177. />
  3178. <otaLanguage
  3179. id="0"
  3180. name="German"
  3181. package="4"
  3182. />
  3183. <otaLanguage
  3184. id="0"
  3185. name="Dutch"
  3186. package="5"
  3187. />
  3188. <otaLanguage
  3189. id="0"
  3190. name="Russian"
  3191. package="6"
  3192. />
  3193. <otaLanguage
  3194. id="0"
  3195. name="Chinese"
  3196. package="7"
  3197. />
  3198. <otaLanguage
  3199. id="0"
  3200. name="Korean"
  3201. package="8"
  3202. />
  3203. <otaLanguage
  3204. id="0"
  3205. name="Japanese"
  3206. package="9"
  3207. />
  3208. <otaLanguage
  3209. id="0"
  3210. name="Finnish"
  3211. package="10"
  3212. />
  3213. <otaLanguage
  3214. id="0"
  3215. name="Polish"
  3216. package="11"
  3217. />
  3218. </otaLanguages>
  3219. <otaPackages>
  3220. <package
  3221. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0.img"
  3222. size="5183988"
  3223. />
  3224. <package
  3225. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-fr-FR.img"
  3226. size="5183988"
  3227. />
  3228. <package
  3229. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-es-ES.img"
  3230. size="5183988"
  3231. />
  3232. <package
  3233. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-it-IT.img"
  3234. size="5183988"
  3235. />
  3236. <package
  3237. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-de-DE.img"
  3238. size="5183988"
  3239. />
  3240. <package
  3241. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-nl-NL.img"
  3242. size="5183988"
  3243. />
  3244. <package
  3245. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-ru-RU.img"
  3246. size="5183988"
  3247. />
  3248. <package
  3249. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-cmn-CN.img"
  3250. size="5183988"
  3251. />
  3252. <package
  3253. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-ko-KR.img"
  3254. size="5183988"
  3255. />
  3256. <package
  3257. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-ja-JP.img"
  3258. size="5183988"
  3259. />
  3260. <package
  3261. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-fi-FI.img"
  3262. size="5183988"
  3263. />
  3264. <package
  3265. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-pl-PL.img"
  3266. size="5183988"
  3267. />
  3268. </otaPackages>
  3269. </productMenu>
  3270. <productMenu id="wa"
  3271. type="0" >
  3272. </productMenu>
  3273. <productMenu id="led"
  3274. type="5" >
  3275. </productMenu>
  3276. <productMenu id="led+"
  3277. type="2"
  3278. url="1" >
  3279. </productMenu>
  3280. <productMenu id="meshIntercom"
  3281. type="30" >
  3282. </productMenu>
  3283. <productMenu id="meshIntercom+"
  3284. type="3"
  3285. url="2" >
  3286. </productMenu>
  3287. <productMenu id="waveIntercom"
  3288. type="1" >
  3289. </productMenu>
  3290. <productMenu id="fmradio"
  3291. type="0" >
  3292. </productMenu>
  3293. <productMenu id="phone"
  3294. type="1" >
  3295. </productMenu>
  3296. <productMenu id="music"
  3297. type="1" >
  3298. </productMenu>
  3299. <productMenu id="musicSharing"
  3300. type="0" >
  3301. </productMenu>
  3302. <productMenu id="deviceSetting"
  3303. type="1"
  3304. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml" >
  3305. </productMenu>
  3306. <productMenu id="quickGuide"
  3307. type="0"
  3308. url=""
  3309. size="1.12MB" >
  3310. </productMenu>
  3311. <productMenu id="userGuide"
  3312. type="1"
  3313. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Family_1.3.0_en_260723.pdf"
  3314. size="2.0MB" >
  3315. </productMenu>
  3316. <productMenu id="videoGuide"
  3317. type="0"
  3318. url=""
  3319. size="3.41MB" >
  3320. </productMenu>
  3321. <productMenu id="volume"
  3322. type="16" >
  3323. </productMenu>
  3324. <productMenu id="battery"
  3325. type="1" >
  3326. </productMenu>
  3327. <productID id="6A09"
  3328. />
  3329. <productGroupable type="0"
  3330. />
  3331. </product>
  3332. <product id="PHANTOM"
  3333. name="PHANTOM ANC"
  3334. series="Helmet"
  3335. latestVersion="1.2.9"
  3336. latestVersionVoicePrompt="1.7"
  3337. show = "1" >
  3338. <productMenu id="protocol"
  3339. type="2" >
  3340. </productMenu>
  3341. <productMenu id="ota"
  3342. type="2" >
  3343. <productMenuType version="0.6.9"
  3344. type="0"
  3345. />
  3346. <otaLanguages>
  3347. <otaLanguage
  3348. id="0"
  3349. name="English"
  3350. package="0"
  3351. />
  3352. <otaLanguage
  3353. id="0"
  3354. name="French"
  3355. package="1"
  3356. />
  3357. <otaLanguage
  3358. id="0"
  3359. name="Spanish"
  3360. package="2"
  3361. />
  3362. <otaLanguage
  3363. id="0"
  3364. name="Italian"
  3365. package="3"
  3366. />
  3367. <otaLanguage
  3368. id="0"
  3369. name="German"
  3370. package="4"
  3371. />
  3372. <otaLanguage
  3373. id="0"
  3374. name="Dutch"
  3375. package="5"
  3376. />
  3377. <otaLanguage
  3378. id="0"
  3379. name="Russian"
  3380. package="6"
  3381. />
  3382. <otaLanguage
  3383. id="0"
  3384. name="Chinese"
  3385. package="7"
  3386. />
  3387. <otaLanguage
  3388. id="0"
  3389. name="Korean"
  3390. package="8"
  3391. />
  3392. <otaLanguage
  3393. id="0"
  3394. name="Japanese"
  3395. package="9"
  3396. />
  3397. <otaLanguage
  3398. id="0"
  3399. name="Finnish"
  3400. package="10"
  3401. />
  3402. <otaLanguage
  3403. id="0"
  3404. name="Polish"
  3405. package="11"
  3406. />
  3407. </otaLanguages>
  3408. <otaPackages>
  3409. <package
  3410. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0.img"
  3411. size="5183988"
  3412. />
  3413. <package
  3414. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-fr-FR.img"
  3415. size="5183988"
  3416. />
  3417. <package
  3418. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-es-ES.img"
  3419. size="5183988"
  3420. />
  3421. <package
  3422. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-it-IT.img"
  3423. size="5183988"
  3424. />
  3425. <package
  3426. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-de-DE.img"
  3427. size="5183988"
  3428. />
  3429. <package
  3430. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-nl-NL.img"
  3431. size="5183988"
  3432. />
  3433. <package
  3434. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-ru-RU.img"
  3435. size="5183988"
  3436. />
  3437. <package
  3438. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-cmn-CN.img"
  3439. size="5183988"
  3440. />
  3441. <package
  3442. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-ko-KR.img"
  3443. size="5183988"
  3444. />
  3445. <package
  3446. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-ja-JP.img"
  3447. size="5183988"
  3448. />
  3449. <package
  3450. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-fi-FI.img"
  3451. size="5183988"
  3452. />
  3453. <package
  3454. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-pl-PL.img"
  3455. size="5183988"
  3456. />
  3457. </otaPackages>
  3458. </productMenu>
  3459. <productMenu id="wa"
  3460. type="0" >
  3461. </productMenu>
  3462. <productMenu id="led"
  3463. type="5" >
  3464. </productMenu>
  3465. <productMenu id="led+"
  3466. type="2"
  3467. url="1" >
  3468. </productMenu>
  3469. <productMenu id="meshIntercom"
  3470. type="30" >
  3471. </productMenu>
  3472. <productMenu id="meshIntercom+"
  3473. type="3"
  3474. url="2" >
  3475. <productMenuURL version="1.0.4"
  3476. url="10"
  3477. />
  3478. </productMenu>
  3479. <productMenu id="waveIntercom"
  3480. type="1" >
  3481. <productMenuType version="1.0.9"
  3482. type="0"
  3483. />
  3484. </productMenu>
  3485. <productMenu id="fmradio"
  3486. type="0" >
  3487. </productMenu>
  3488. <productMenu id="phone"
  3489. type="1" >
  3490. </productMenu>
  3491. <productMenu id="music"
  3492. type="1" >
  3493. </productMenu>
  3494. <productMenu id="musicSharing"
  3495. type="0" >
  3496. </productMenu>
  3497. <productMenu id="deviceSetting"
  3498. type="1"
  3499. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_12.xml" >
  3500. <productMenuURL version="1.2.10"
  3501. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml"
  3502. />
  3503. <productMenuURL version="1.2.4"
  3504. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  3505. />
  3506. <productMenuURL version="1.2.1"
  3507. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  3508. />
  3509. <productMenuURL version="1.1.2"
  3510. url="https://api.sena.com/support/SenaNeoApp/PHANTOMANC/NS_PHANTOM_ANC_05.xml"
  3511. />
  3512. <productMenuURL version="1.0.4"
  3513. url="https://api.sena.com/support/SenaNeoApp/PHANTOMANC/NS_PHANTOM_ANC_01.xml"
  3514. />
  3515. </productMenu>
  3516. <productMenu id="quickGuide"
  3517. type="0"
  3518. url=""
  3519. size="1.12MB" >
  3520. </productMenu>
  3521. <productMenu id="userGuide"
  3522. type="1"
  3523. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Family_1.3.0_en_260723.pdf"
  3524. size="2.0MB" >
  3525. </productMenu>
  3526. <productMenu id="videoGuide"
  3527. type="0"
  3528. url=""
  3529. size="3.41MB" >
  3530. </productMenu>
  3531. <productMenu id="connectGuide"
  3532. type="1"
  3533. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  3534. size="1.1MB" >
  3535. </productMenu>
  3536. <productMenu id="volume"
  3537. type="16" >
  3538. </productMenu>
  3539. <productMenu id="volume+"
  3540. type="2"
  3541. url="0x6004" >
  3542. </productMenu>
  3543. <productMenu id="soundMode"
  3544. type="1" >
  3545. <productMenuType version="0.9.11"
  3546. type="0"
  3547. />
  3548. </productMenu>
  3549. <productMenu id="battery"
  3550. type="1" >
  3551. </productMenu>
  3552. <productID id="6A01"
  3553. />
  3554. <productGroupable type="0"
  3555. />
  3556. </product>
  3557. <product id="PHANTOM"
  3558. name="PHANTOM ANC"
  3559. series="Helmet"
  3560. latestVersion="1.2.9"
  3561. latestVersionVoicePrompt="1.7"
  3562. show = "-1" >
  3563. <productMenu id="protocol"
  3564. type="2" >
  3565. </productMenu>
  3566. <productMenu id="ota"
  3567. type="2" >
  3568. <otaLanguages>
  3569. <otaLanguage
  3570. id="0"
  3571. name="English"
  3572. package="0"
  3573. />
  3574. <otaLanguage
  3575. id="0"
  3576. name="French"
  3577. package="1"
  3578. />
  3579. <otaLanguage
  3580. id="0"
  3581. name="Spanish"
  3582. package="2"
  3583. />
  3584. <otaLanguage
  3585. id="0"
  3586. name="Italian"
  3587. package="3"
  3588. />
  3589. <otaLanguage
  3590. id="0"
  3591. name="German"
  3592. package="4"
  3593. />
  3594. <otaLanguage
  3595. id="0"
  3596. name="Dutch"
  3597. package="5"
  3598. />
  3599. <otaLanguage
  3600. id="0"
  3601. name="Russian"
  3602. package="6"
  3603. />
  3604. <otaLanguage
  3605. id="0"
  3606. name="Chinese"
  3607. package="7"
  3608. />
  3609. <otaLanguage
  3610. id="0"
  3611. name="Korean"
  3612. package="8"
  3613. />
  3614. <otaLanguage
  3615. id="0"
  3616. name="Japanese"
  3617. package="9"
  3618. />
  3619. <otaLanguage
  3620. id="0"
  3621. name="Finnish"
  3622. package="10"
  3623. />
  3624. <otaLanguage
  3625. id="0"
  3626. name="Polish"
  3627. package="11"
  3628. />
  3629. </otaLanguages>
  3630. <otaPackages>
  3631. <package
  3632. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0.img"
  3633. size="5183988"
  3634. />
  3635. <package
  3636. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-fr-FR.img"
  3637. size="5183988"
  3638. />
  3639. <package
  3640. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-es-ES.img"
  3641. size="5183988"
  3642. />
  3643. <package
  3644. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-it-IT.img"
  3645. size="5183988"
  3646. />
  3647. <package
  3648. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-de-DE.img"
  3649. size="5183988"
  3650. />
  3651. <package
  3652. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-nl-NL.img"
  3653. size="5183988"
  3654. />
  3655. <package
  3656. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-ru-RU.img"
  3657. size="5183988"
  3658. />
  3659. <package
  3660. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-cmn-CN.img"
  3661. size="5183988"
  3662. />
  3663. <package
  3664. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-ko-KR.img"
  3665. size="5183988"
  3666. />
  3667. <package
  3668. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-ja-JP.img"
  3669. size="5183988"
  3670. />
  3671. <package
  3672. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-fi-FI.img"
  3673. size="5183988"
  3674. />
  3675. <package
  3676. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-pl-PL.img"
  3677. size="5183988"
  3678. />
  3679. </otaPackages>
  3680. </productMenu>
  3681. <productMenu id="led"
  3682. type="5" >
  3683. </productMenu>
  3684. <productMenu id="led+"
  3685. type="2"
  3686. url="1" >
  3687. </productMenu>
  3688. <productMenu id="meshIntercom"
  3689. type="30" >
  3690. </productMenu>
  3691. <productMenu id="meshIntercom+"
  3692. type="3"
  3693. url="2" >
  3694. </productMenu>
  3695. <productMenu id="waveIntercom"
  3696. type="1" >
  3697. </productMenu>
  3698. <productMenu id="fmradio"
  3699. type="0" >
  3700. </productMenu>
  3701. <productMenu id="phone"
  3702. type="1" >
  3703. </productMenu>
  3704. <productMenu id="music"
  3705. type="1" >
  3706. </productMenu>
  3707. <productMenu id="musicSharing"
  3708. type="0" >
  3709. </productMenu>
  3710. <productMenu id="deviceSetting"
  3711. type="1"
  3712. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_12.xml" >
  3713. <productMenuURL version="1.2.10"
  3714. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml"
  3715. />
  3716. <productMenuURL version="1.2.4"
  3717. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  3718. />
  3719. </productMenu>
  3720. <productMenu id="quickGuide"
  3721. type="0"
  3722. url=""
  3723. size="1.12MB" >
  3724. </productMenu>
  3725. <productMenu id="userGuide"
  3726. type="1"
  3727. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Family_1.3.0_en_260723.pdf"
  3728. size="2.0MB" >
  3729. </productMenu>
  3730. <productMenu id="videoGuide"
  3731. type="0"
  3732. url=""
  3733. size="3.41MB" >
  3734. </productMenu>
  3735. <productMenu id="connectGuide"
  3736. type="1"
  3737. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  3738. size="1.1MB" >
  3739. </productMenu>
  3740. <productMenu id="volume"
  3741. type="16" >
  3742. </productMenu>
  3743. <productMenu id="volume+"
  3744. type="2"
  3745. url="0x6004" >
  3746. </productMenu>
  3747. <productMenu id="soundMode"
  3748. type="1" >
  3749. </productMenu>
  3750. <productMenu id="battery"
  3751. type="1" >
  3752. </productMenu>
  3753. <productID id="6A19"
  3754. />
  3755. <productGroupable type="0"
  3756. />
  3757. </product>
  3758. <product id="PHANTOM"
  3759. name="PHANTOM"
  3760. series="Helmet"
  3761. latestVersion="1.2.9"
  3762. latestVersionVoicePrompt="1.7"
  3763. show = "-1" >
  3764. <productMenu id="protocol"
  3765. type="2" >
  3766. </productMenu>
  3767. <productMenu id="ota"
  3768. type="2" >
  3769. <otaLanguages>
  3770. <otaLanguage
  3771. id="0"
  3772. name="English"
  3773. package="0"
  3774. />
  3775. <otaLanguage
  3776. id="0"
  3777. name="French"
  3778. package="1"
  3779. />
  3780. <otaLanguage
  3781. id="0"
  3782. name="Spanish"
  3783. package="2"
  3784. />
  3785. <otaLanguage
  3786. id="0"
  3787. name="Italian"
  3788. package="3"
  3789. />
  3790. <otaLanguage
  3791. id="0"
  3792. name="German"
  3793. package="4"
  3794. />
  3795. <otaLanguage
  3796. id="0"
  3797. name="Dutch"
  3798. package="5"
  3799. />
  3800. <otaLanguage
  3801. id="0"
  3802. name="Russian"
  3803. package="6"
  3804. />
  3805. <otaLanguage
  3806. id="0"
  3807. name="Chinese"
  3808. package="7"
  3809. />
  3810. <otaLanguage
  3811. id="0"
  3812. name="Korean"
  3813. package="8"
  3814. />
  3815. <otaLanguage
  3816. id="0"
  3817. name="Japanese"
  3818. package="9"
  3819. />
  3820. <otaLanguage
  3821. id="0"
  3822. name="Finnish"
  3823. package="10"
  3824. />
  3825. <otaLanguage
  3826. id="0"
  3827. name="Polish"
  3828. package="11"
  3829. />
  3830. </otaLanguages>
  3831. <otaPackages>
  3832. <package
  3833. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0.img"
  3834. size="5183988"
  3835. />
  3836. <package
  3837. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-fr-FR.img"
  3838. size="5183988"
  3839. />
  3840. <package
  3841. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-es-ES.img"
  3842. size="5183988"
  3843. />
  3844. <package
  3845. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-it-IT.img"
  3846. size="5183988"
  3847. />
  3848. <package
  3849. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-de-DE.img"
  3850. size="5183988"
  3851. />
  3852. <package
  3853. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-nl-NL.img"
  3854. size="5183988"
  3855. />
  3856. <package
  3857. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-ru-RU.img"
  3858. size="5183988"
  3859. />
  3860. <package
  3861. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-cmn-CN.img"
  3862. size="5183988"
  3863. />
  3864. <package
  3865. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-ko-KR.img"
  3866. size="5183988"
  3867. />
  3868. <package
  3869. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-ja-JP.img"
  3870. size="5183988"
  3871. />
  3872. <package
  3873. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-fi-FI.img"
  3874. size="5183988"
  3875. />
  3876. <package
  3877. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-pl-PL.img"
  3878. size="5183988"
  3879. />
  3880. </otaPackages>
  3881. </productMenu>
  3882. <productMenu id="wa"
  3883. type="0" >
  3884. </productMenu>
  3885. <productMenu id="led"
  3886. type="5" >
  3887. </productMenu>
  3888. <productMenu id="led+"
  3889. type="2"
  3890. url="1" >
  3891. </productMenu>
  3892. <productMenu id="meshIntercom"
  3893. type="30" >
  3894. </productMenu>
  3895. <productMenu id="meshIntercom+"
  3896. type="3"
  3897. url="2" >
  3898. </productMenu>
  3899. <productMenu id="waveIntercom"
  3900. type="1" >
  3901. </productMenu>
  3902. <productMenu id="fmradio"
  3903. type="0" >
  3904. </productMenu>
  3905. <productMenu id="phone"
  3906. type="1" >
  3907. </productMenu>
  3908. <productMenu id="music"
  3909. type="1" >
  3910. </productMenu>
  3911. <productMenu id="musicSharing"
  3912. type="0" >
  3913. </productMenu>
  3914. <productMenu id="deviceSetting"
  3915. type="1"
  3916. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_12.xml" >
  3917. <productMenuURL version="1.2.10"
  3918. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml"
  3919. />
  3920. <productMenuURL version="1.2.4"
  3921. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  3922. />
  3923. </productMenu>
  3924. <productMenu id="quickGuide"
  3925. type="0"
  3926. url=""
  3927. size="1.52MB" >
  3928. </productMenu>
  3929. <productMenu id="userGuide"
  3930. type="1"
  3931. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Family_1.3.0_en_260723.pdf"
  3932. size="2.01MB" >
  3933. </productMenu>
  3934. <productMenu id="videoGuide"
  3935. type="0"
  3936. url=""
  3937. size="3.46MB" >
  3938. </productMenu>
  3939. <productMenu id="connectGuide"
  3940. type="1"
  3941. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  3942. size="1.1MB" >
  3943. </productMenu>
  3944. <productMenu id="volume"
  3945. type="16" >
  3946. </productMenu>
  3947. <productMenu id="volume+"
  3948. type="2"
  3949. url="0x6004" >
  3950. </productMenu>
  3951. <productMenu id="battery"
  3952. type="1" >
  3953. </productMenu>
  3954. <productID id="6A0E"
  3955. />
  3956. <productGroupable type="0"
  3957. />
  3958. </product>
  3959. <product id="PHANTOM"
  3960. name="PHANTOM"
  3961. series="Helmet"
  3962. latestVersion="1.2.9"
  3963. latestVersionVoicePrompt="1.7"
  3964. show = "1" >
  3965. <productMenu id="protocol"
  3966. type="2" >
  3967. </productMenu>
  3968. <productMenu id="ota"
  3969. type="2" >
  3970. <otaLanguages>
  3971. <otaLanguage
  3972. id="0"
  3973. name="English"
  3974. package="0"
  3975. />
  3976. <otaLanguage
  3977. id="0"
  3978. name="French"
  3979. package="1"
  3980. />
  3981. <otaLanguage
  3982. id="0"
  3983. name="Spanish"
  3984. package="2"
  3985. />
  3986. <otaLanguage
  3987. id="0"
  3988. name="Italian"
  3989. package="3"
  3990. />
  3991. <otaLanguage
  3992. id="0"
  3993. name="German"
  3994. package="4"
  3995. />
  3996. <otaLanguage
  3997. id="0"
  3998. name="Dutch"
  3999. package="5"
  4000. />
  4001. <otaLanguage
  4002. id="0"
  4003. name="Russian"
  4004. package="6"
  4005. />
  4006. <otaLanguage
  4007. id="0"
  4008. name="Chinese"
  4009. package="7"
  4010. />
  4011. <otaLanguage
  4012. id="0"
  4013. name="Korean"
  4014. package="8"
  4015. />
  4016. <otaLanguage
  4017. id="0"
  4018. name="Japanese"
  4019. package="9"
  4020. />
  4021. <otaLanguage
  4022. id="0"
  4023. name="Finnish"
  4024. package="10"
  4025. />
  4026. <otaLanguage
  4027. id="0"
  4028. name="Polish"
  4029. package="11"
  4030. />
  4031. </otaLanguages>
  4032. <otaPackages>
  4033. <package
  4034. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0.img"
  4035. size="5183988"
  4036. />
  4037. <package
  4038. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-fr-FR.img"
  4039. size="5183988"
  4040. />
  4041. <package
  4042. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-es-ES.img"
  4043. size="5183988"
  4044. />
  4045. <package
  4046. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-it-IT.img"
  4047. size="5183988"
  4048. />
  4049. <package
  4050. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-de-DE.img"
  4051. size="5183988"
  4052. />
  4053. <package
  4054. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-nl-NL.img"
  4055. size="5183988"
  4056. />
  4057. <package
  4058. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-ru-RU.img"
  4059. size="5183988"
  4060. />
  4061. <package
  4062. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-cmn-CN.img"
  4063. size="5183988"
  4064. />
  4065. <package
  4066. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-ko-KR.img"
  4067. size="5183988"
  4068. />
  4069. <package
  4070. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-ja-JP.img"
  4071. size="5183988"
  4072. />
  4073. <package
  4074. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-fi-FI.img"
  4075. size="5183988"
  4076. />
  4077. <package
  4078. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-pl-PL.img"
  4079. size="5183988"
  4080. />
  4081. </otaPackages>
  4082. </productMenu>
  4083. <productMenu id="wa"
  4084. type="0" >
  4085. </productMenu>
  4086. <productMenu id="led"
  4087. type="5" >
  4088. <productMenuType version="1.0.1"
  4089. type="4"
  4090. />
  4091. </productMenu>
  4092. <productMenu id="led+"
  4093. type="2"
  4094. url="1" >
  4095. <productMenuType version="1.0.1"
  4096. type="-1"
  4097. />
  4098. </productMenu>
  4099. <productMenu id="meshIntercom"
  4100. type="30" >
  4101. </productMenu>
  4102. <productMenu id="meshIntercom+"
  4103. type="3"
  4104. url="2" >
  4105. <productMenuURL version="1.0.4"
  4106. url="10"
  4107. />
  4108. </productMenu>
  4109. <productMenu id="waveIntercom"
  4110. type="1" >
  4111. <productMenuType version="1.0.9"
  4112. type="0"
  4113. />
  4114. </productMenu>
  4115. <productMenu id="fmradio"
  4116. type="0" >
  4117. </productMenu>
  4118. <productMenu id="phone"
  4119. type="1" >
  4120. </productMenu>
  4121. <productMenu id="music"
  4122. type="1" >
  4123. </productMenu>
  4124. <productMenu id="musicSharing"
  4125. type="0" >
  4126. </productMenu>
  4127. <productMenu id="deviceSetting"
  4128. type="1"
  4129. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_12.xml" >
  4130. <productMenuURL version="1.2.10"
  4131. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml"
  4132. />
  4133. <productMenuURL version="1.2.4"
  4134. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  4135. />
  4136. <productMenuURL version="1.2.1"
  4137. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  4138. />
  4139. <productMenuURL version="1.0.4"
  4140. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_02.xml"
  4141. />
  4142. <productMenuURL version="1.0.1"
  4143. url="https://api.sena.com/support/test/xml/NS_PHANTOM_Test_11.xml"
  4144. />
  4145. </productMenu>
  4146. <productMenu id="quickGuide"
  4147. type="0"
  4148. url=""
  4149. size="1.12MB" >
  4150. </productMenu>
  4151. <productMenu id="userGuide"
  4152. type="1"
  4153. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Family_1.3.0_en_260723.pdf"
  4154. size="2.0MB" >
  4155. </productMenu>
  4156. <productMenu id="videoGuide"
  4157. type="0"
  4158. url=""
  4159. size="3.41MB" >
  4160. </productMenu>
  4161. <productMenu id="connectGuide"
  4162. type="1"
  4163. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  4164. size="1.12MB" >
  4165. </productMenu>
  4166. <productMenu id="volume"
  4167. type="16" >
  4168. <productMenuType version="1.0"
  4169. type="13"
  4170. />
  4171. </productMenu>
  4172. <productMenu id="volume+"
  4173. type="2"
  4174. url="0x6004" >
  4175. </productMenu>
  4176. <productMenu id="battery"
  4177. type="1" >
  4178. </productMenu>
  4179. <productID id="6A04"
  4180. />
  4181. <productGroupable type="0"
  4182. />
  4183. </product>
  4184. <product id="PHANTOMEasyLink"
  4185. name="PHANTOM EasyLink"
  4186. series="Helmet"
  4187. latestVersion="0.1"
  4188. latestVersionVoicePrompt="1.2"
  4189. show = "-1" >
  4190. <productMenu id="protocol"
  4191. type="2" >
  4192. </productMenu>
  4193. <productMenu id="ota"
  4194. type="0" >
  4195. <otaLanguages>
  4196. <otaLanguage
  4197. id="0"
  4198. name="English"
  4199. package="0"
  4200. />
  4201. <otaLanguage
  4202. id="0"
  4203. name="French"
  4204. package="1"
  4205. />
  4206. <otaLanguage
  4207. id="0"
  4208. name="Spanish"
  4209. package="2"
  4210. />
  4211. <otaLanguage
  4212. id="0"
  4213. name="Italian"
  4214. package="3"
  4215. />
  4216. <otaLanguage
  4217. id="0"
  4218. name="German"
  4219. package="4"
  4220. />
  4221. <otaLanguage
  4222. id="0"
  4223. name="Dutch"
  4224. package="5"
  4225. />
  4226. <otaLanguage
  4227. id="0"
  4228. name="Russian"
  4229. package="6"
  4230. />
  4231. <otaLanguage
  4232. id="0"
  4233. name="Chinese"
  4234. package="7"
  4235. />
  4236. <otaLanguage
  4237. id="0"
  4238. name="Korean"
  4239. package="8"
  4240. />
  4241. <otaLanguage
  4242. id="0"
  4243. name="Japanese"
  4244. package="9"
  4245. />
  4246. <otaLanguage
  4247. id="0"
  4248. name="Finnish"
  4249. package="10"
  4250. />
  4251. <otaLanguage
  4252. id="0"
  4253. name="Polish"
  4254. package="11"
  4255. />
  4256. </otaLanguages>
  4257. <otaPackages>
  4258. <package
  4259. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1.img"
  4260. size="5183988"
  4261. />
  4262. <package
  4263. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-fr-FR.img"
  4264. size="5183988"
  4265. />
  4266. <package
  4267. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-es-ES.img"
  4268. size="5183988"
  4269. />
  4270. <package
  4271. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-it-IT.img"
  4272. size="5183988"
  4273. />
  4274. <package
  4275. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-de-DE.img"
  4276. size="5183988"
  4277. />
  4278. <package
  4279. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-nl-NL.img"
  4280. size="5183988"
  4281. />
  4282. <package
  4283. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ru-RU.img"
  4284. size="5183988"
  4285. />
  4286. <package
  4287. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-cmn-CN.img"
  4288. size="5183988"
  4289. />
  4290. <package
  4291. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ko-KR.img"
  4292. size="5183988"
  4293. />
  4294. <package
  4295. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ja-JP.img"
  4296. size="5183988"
  4297. />
  4298. <package
  4299. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-fi-FI.img"
  4300. size="5183988"
  4301. />
  4302. <package
  4303. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-pl-PL.img"
  4304. size="5183988"
  4305. />
  4306. </otaPackages>
  4307. </productMenu>
  4308. <productMenu id="meshIntercom"
  4309. type="30" >
  4310. </productMenu>
  4311. <productMenu id="meshIntercom+"
  4312. type="3"
  4313. url="2" >
  4314. </productMenu>
  4315. <productMenu id="waveIntercom"
  4316. type="1" >
  4317. </productMenu>
  4318. <productMenu id="fmradio"
  4319. type="0" >
  4320. </productMenu>
  4321. <productMenu id="phone"
  4322. type="1" >
  4323. </productMenu>
  4324. <productMenu id="music"
  4325. type="1" >
  4326. </productMenu>
  4327. <productMenu id="musicSharing"
  4328. type="0" >
  4329. </productMenu>
  4330. <productMenu id="deviceSetting"
  4331. type="1"
  4332. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml" >
  4333. </productMenu>
  4334. <productMenu id="quickGuide"
  4335. type="0"
  4336. url=""
  4337. size="1.12MB" >
  4338. </productMenu>
  4339. <productMenu id="userGuide"
  4340. type="1"
  4341. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Family_1.3.0_en_260723.pdf"
  4342. size="2.0MB" >
  4343. </productMenu>
  4344. <productMenu id="videoGuide"
  4345. type="0"
  4346. url=""
  4347. size="3.41MB" >
  4348. </productMenu>
  4349. <productMenu id="connectGuide"
  4350. type="0"
  4351. url=""
  4352. size="1.12MB" >
  4353. </productMenu>
  4354. <productMenu id="volume"
  4355. type="16" >
  4356. </productMenu>
  4357. <productMenu id="battery"
  4358. type="1" >
  4359. </productMenu>
  4360. <productID id="6A18"
  4361. />
  4362. <productGroupable type="0"
  4363. />
  4364. </product>
  4365. <product id="SPIDERX"
  4366. name="SPIDER X"
  4367. series="SPIDER"
  4368. latestVersion="1.0.1"
  4369. latestVersionMesh="0.19"
  4370. latestVersionVoicePrompt="1.8"
  4371. show="-1" >
  4372. <productMenu id="protocol"
  4373. type="2" >
  4374. </productMenu>
  4375. <productMenu id="warranty"
  4376. type="1" >
  4377. </productMenu>
  4378. <productMenu id="serialNumber"
  4379. type="1" >
  4380. </productMenu>
  4381. <productMenu id="ota"
  4382. type="0" >
  4383. <otaLanguages>
  4384. <otaLanguage
  4385. id="0"
  4386. name="English"
  4387. package="0"
  4388. />
  4389. <otaLanguage
  4390. id="0"
  4391. name="French"
  4392. package="1"
  4393. />
  4394. <otaLanguage
  4395. id="0"
  4396. name="Spanish"
  4397. package="2"
  4398. />
  4399. <otaLanguage
  4400. id="0"
  4401. name="Italian"
  4402. package="3"
  4403. />
  4404. <otaLanguage
  4405. id="0"
  4406. name="German"
  4407. package="4"
  4408. />
  4409. <otaLanguage
  4410. id="0"
  4411. name="Dutch"
  4412. package="5"
  4413. />
  4414. <otaLanguage
  4415. id="0"
  4416. name="Russian"
  4417. package="6"
  4418. />
  4419. <otaLanguage
  4420. id="0"
  4421. name="Chinese"
  4422. package="7"
  4423. />
  4424. <otaLanguage
  4425. id="0"
  4426. name="Korean"
  4427. package="8"
  4428. />
  4429. <otaLanguage
  4430. id="0"
  4431. name="Japanese"
  4432. package="9"
  4433. />
  4434. <otaLanguage
  4435. id="0"
  4436. name="Finnish"
  4437. package="10"
  4438. />
  4439. <otaLanguage
  4440. id="0"
  4441. name="Polish"
  4442. package="11"
  4443. />
  4444. </otaLanguages>
  4445. <otaPackages>
  4446. <package
  4447. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERX/SPIDERX-v1.0-build0.img"
  4448. size="5183988"
  4449. />
  4450. <package
  4451. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERX/SPIDERX-v1.0-build0-fr-FR.img"
  4452. size="5183988"
  4453. />
  4454. <package
  4455. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERX/SPIDERX-v1.0-build0-es-ES.img"
  4456. size="5183988"
  4457. />
  4458. <package
  4459. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERX/SPIDERX-v1.0-build0-it-IT.img"
  4460. size="5183988"
  4461. />
  4462. <package
  4463. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERX/SPIDERX-v1.0-build0-de-DE.img"
  4464. size="5183988"
  4465. />
  4466. <package
  4467. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERX/SPIDERX-v1.0-build0-nl-NL.img"
  4468. size="5183988"
  4469. />
  4470. <package
  4471. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERX/SPIDERX-v1.0-build0-ru-RU.img"
  4472. size="5183988"
  4473. />
  4474. <package
  4475. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERX/SPIDERX-v1.0-build0-cmn-CN.img"
  4476. size="5183988"
  4477. />
  4478. <package
  4479. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERX/SPIDERX-v1.0-build0-ko-KR.img"
  4480. size="5183988"
  4481. />
  4482. <package
  4483. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERX/SPIDERX-v1.0-build0-ja-JP.img"
  4484. size="5183988"
  4485. />
  4486. <package
  4487. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERX/SPIDERX-v1.0-build0-fi-FI.img"
  4488. size="5183988"
  4489. />
  4490. <package
  4491. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERX/SPIDERX-v1.0-build0-pl-PL.img"
  4492. size="5183988"
  4493. />
  4494. </otaPackages>
  4495. </productMenu>
  4496. <productMenu id="meshIntercom+"
  4497. type="3"
  4498. url="2" >
  4499. </productMenu>
  4500. <productMenu id="waveIntercom"
  4501. type="1" >
  4502. </productMenu>
  4503. <productMenu id="fmradio"
  4504. type="1"
  4505. url="1" >
  4506. </productMenu>
  4507. <productMenu id="mic"
  4508. type="0" >
  4509. </productMenu>
  4510. <productMenu id="phone"
  4511. type="1" >
  4512. </productMenu>
  4513. <productMenu id="music"
  4514. type="1" >
  4515. </productMenu>
  4516. <productMenu id="musicSharing"
  4517. type="0" >
  4518. </productMenu>
  4519. <productMenu id="deviceSetting"
  4520. type="1"
  4521. url="https://api.sena.com/support/SenaNeoApp/60X/NS_60X_01.xml" >
  4522. </productMenu>
  4523. <productMenu id="quickGuide"
  4524. type="0"
  4525. url=""
  4526. size="1.12MB" >
  4527. </productMenu>
  4528. <productMenu id="userGuide"
  4529. type="1"
  4530. url=""
  4531. size="2.0MB" >
  4532. </productMenu>
  4533. <productMenu id="videoGuide"
  4534. type="0"
  4535. url=""
  4536. size="3.41MB" >
  4537. </productMenu>
  4538. <productMenu id="connectGuide"
  4539. type="1"
  4540. url=""
  4541. size="1.12MB" >
  4542. </productMenu>
  4543. <productMenu id="keySettings"
  4544. type="0"
  4545. url="" >
  4546. </productMenu>
  4547. <productMenu id="volume"
  4548. type="13" >
  4549. </productMenu>
  4550. <productMenu id="volume+"
  4551. type="2"
  4552. url="0x6004" >
  4553. </productMenu>
  4554. <productMenu id="appearance"
  4555. type="0"
  4556. url="" >
  4557. </productMenu>
  4558. <productMenu id="battery"
  4559. type="1" >
  4560. </productMenu>
  4561. <productID id="6A20"
  4562. />
  4563. <productGroupable type="0"
  4564. />
  4565. </product>
  4566. <product id="SPIDERXSlim"
  4567. name="SPIDER X Slim"
  4568. series="SPIDER"
  4569. latestVersion="1.0.1"
  4570. latestVersionVoicePrompt="1.8"
  4571. show = "1" >
  4572. <productMenu id="protocol"
  4573. type="2" >
  4574. </productMenu>
  4575. <productMenu id="warranty"
  4576. type="1" >
  4577. </productMenu>
  4578. <productMenu id="serialNumber"
  4579. type="1" >
  4580. </productMenu>
  4581. <productMenu id="ota"
  4582. type="2" >
  4583. <otaLanguages>
  4584. <otaLanguage
  4585. id="0"
  4586. name="English"
  4587. package="0"
  4588. />
  4589. <otaLanguage
  4590. id="0"
  4591. name="French"
  4592. package="1"
  4593. />
  4594. <otaLanguage
  4595. id="0"
  4596. name="Spanish"
  4597. package="2"
  4598. />
  4599. <otaLanguage
  4600. id="0"
  4601. name="Italian"
  4602. package="3"
  4603. />
  4604. <otaLanguage
  4605. id="0"
  4606. name="German"
  4607. package="4"
  4608. />
  4609. <otaLanguage
  4610. id="0"
  4611. name="Dutch"
  4612. package="5"
  4613. />
  4614. <otaLanguage
  4615. id="0"
  4616. name="Russian"
  4617. package="6"
  4618. />
  4619. <otaLanguage
  4620. id="0"
  4621. name="Chinese"
  4622. package="7"
  4623. />
  4624. <otaLanguage
  4625. id="0"
  4626. name="Korean"
  4627. package="8"
  4628. />
  4629. <otaLanguage
  4630. id="0"
  4631. name="Japanese"
  4632. package="9"
  4633. />
  4634. <otaLanguage
  4635. id="0"
  4636. name="Finnish"
  4637. package="10"
  4638. />
  4639. <otaLanguage
  4640. id="0"
  4641. name="Polish"
  4642. package="11"
  4643. />
  4644. </otaLanguages>
  4645. <otaPackages>
  4646. <package
  4647. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0.1-build1.img"
  4648. size="5183988"
  4649. />
  4650. <package
  4651. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0.1-build1-fr-FR.img"
  4652. size="5183988"
  4653. />
  4654. <package
  4655. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0.1-build1-es-ES.img"
  4656. size="5183988"
  4657. />
  4658. <package
  4659. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0.1-build1-it-IT.img"
  4660. size="5183988"
  4661. />
  4662. <package
  4663. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0.1-build1-de-DE.img"
  4664. size="5183988"
  4665. />
  4666. <package
  4667. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0.1-build1-nl-NL.img"
  4668. size="5183988"
  4669. />
  4670. <package
  4671. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0.1-build1-ru-RU.img"
  4672. size="5183988"
  4673. />
  4674. <package
  4675. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0.1-build1-cmn-CN.img"
  4676. size="5183988"
  4677. />
  4678. <package
  4679. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0.1-build1-ko-KR.img"
  4680. size="5183988"
  4681. />
  4682. <package
  4683. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0.1-build1-ja-JP.img"
  4684. size="5183988"
  4685. />
  4686. <package
  4687. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0.1-build1-fi-FI.img"
  4688. size="5183988"
  4689. />
  4690. <package
  4691. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0.1-build1-pl-PL.img"
  4692. size="5183988"
  4693. />
  4694. </otaPackages>
  4695. </productMenu>
  4696. <productMenu id="meshIntercom"
  4697. type="30" >
  4698. </productMenu>
  4699. <productMenu id="meshIntercom+"
  4700. type="3"
  4701. url="2" >
  4702. </productMenu>
  4703. <productMenu id="waveIntercom"
  4704. type="1" >
  4705. </productMenu>
  4706. <productMenu id="fmradio"
  4707. type="1"
  4708. url="1" >
  4709. </productMenu>
  4710. <productMenu id="phone"
  4711. type="1" >
  4712. </productMenu>
  4713. <productMenu id="music"
  4714. type="1" >
  4715. </productMenu>
  4716. <productMenu id="musicSharing"
  4717. type="0" >
  4718. </productMenu>
  4719. <productMenu id="deviceSetting"
  4720. type="1"
  4721. url="https://api.sena.com/support/SenaNeoApp/SPIDERSlim/NS_SPIDERSlim_03.xml" >
  4722. <productMenuURL version="1.0"
  4723. url="https://api.sena.com/support/SenaNeoApp/SPIDERSlim/NS_SPIDERSlim_01.xml"
  4724. />
  4725. </productMenu>
  4726. <productMenu id="quickGuide"
  4727. type="0"
  4728. url=""
  4729. size="1.12MB" >
  4730. </productMenu>
  4731. <productMenu id="userGuide"
  4732. type="1"
  4733. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_X_Slim_1.0.0_en_260629.pdf"
  4734. size="2.0MB" >
  4735. </productMenu>
  4736. <productMenu id="videoGuide"
  4737. type="0"
  4738. url=""
  4739. size="3.41MB" >
  4740. </productMenu>
  4741. <productMenu id="connectGuide"
  4742. type="1"
  4743. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_spiderxslim.json"
  4744. size="1.12MB" >
  4745. </productMenu>
  4746. <productMenu id="volume"
  4747. type="16" >
  4748. </productMenu>
  4749. <productMenu id="volume+"
  4750. type="2"
  4751. url="0x6004" >
  4752. </productMenu>
  4753. <productMenu id="appearance"
  4754. type="1"
  4755. url="2|white,silver,chrome,black" >
  4756. </productMenu>
  4757. <productMenu id="battery"
  4758. type="1" >
  4759. </productMenu>
  4760. <productID id="6A07"
  4761. />
  4762. <productGroupable type="0"
  4763. />
  4764. </product>
  4765. <product id="LS2SPECTRUMPRO"
  4766. name="LS2 SPECTRUM PRO"
  4767. series="SPIDER"
  4768. latestVersion="1.0.1"
  4769. latestVersionVoicePrompt="1.8"
  4770. show = "-1" >
  4771. <productMenu id="protocol"
  4772. type="2" >
  4773. </productMenu>
  4774. <productMenu id="warranty"
  4775. type="0" >
  4776. </productMenu>
  4777. <productMenu id="serialNumber"
  4778. type="0" >
  4779. </productMenu>
  4780. <productMenu id="ota"
  4781. type="0" >
  4782. <otaLanguages>
  4783. <otaLanguage
  4784. id="0"
  4785. name="English"
  4786. package="0"
  4787. />
  4788. <otaLanguage
  4789. id="0"
  4790. name="French"
  4791. package="1"
  4792. />
  4793. <otaLanguage
  4794. id="0"
  4795. name="Spanish"
  4796. package="2"
  4797. />
  4798. <otaLanguage
  4799. id="0"
  4800. name="Italian"
  4801. package="3"
  4802. />
  4803. <otaLanguage
  4804. id="0"
  4805. name="German"
  4806. package="4"
  4807. />
  4808. <otaLanguage
  4809. id="0"
  4810. name="Dutch"
  4811. package="5"
  4812. />
  4813. <otaLanguage
  4814. id="0"
  4815. name="Russian"
  4816. package="6"
  4817. />
  4818. <otaLanguage
  4819. id="0"
  4820. name="Chinese"
  4821. package="7"
  4822. />
  4823. <otaLanguage
  4824. id="0"
  4825. name="Korean"
  4826. package="8"
  4827. />
  4828. <otaLanguage
  4829. id="0"
  4830. name="Japanese"
  4831. package="9"
  4832. />
  4833. <otaLanguage
  4834. id="0"
  4835. name="Finnish"
  4836. package="10"
  4837. />
  4838. <otaLanguage
  4839. id="0"
  4840. name="Polish"
  4841. package="11"
  4842. />
  4843. </otaLanguages>
  4844. <otaPackages>
  4845. <package
  4846. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/LS2SPECTRUMPRO-v1.0.1-build1.img"
  4847. size="5183988"
  4848. />
  4849. <package
  4850. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/LS2SPECTRUMPRO-v1.0.1-build1-fr-FR.img"
  4851. size="5183988"
  4852. />
  4853. <package
  4854. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/LS2SPECTRUMPRO-v1.0.1-build1-es-ES.img"
  4855. size="5183988"
  4856. />
  4857. <package
  4858. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/LS2SPECTRUMPRO-v1.0.1-build1-it-IT.img"
  4859. size="5183988"
  4860. />
  4861. <package
  4862. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/LS2SPECTRUMPRO-v1.0.1-build1-de-DE.img"
  4863. size="5183988"
  4864. />
  4865. <package
  4866. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/LS2SPECTRUMPRO-v1.0.1-build1-nl-NL.img"
  4867. size="5183988"
  4868. />
  4869. <package
  4870. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/LS2SPECTRUMPRO-v1.0.1-build1-ru-RU.img"
  4871. size="5183988"
  4872. />
  4873. <package
  4874. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/LS2SPECTRUMPRO-v1.0.1-build1-cmn-CN.img"
  4875. size="5183988"
  4876. />
  4877. <package
  4878. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/LS2SPECTRUMPRO-v1.0.1-build1-ko-KR.img"
  4879. size="5183988"
  4880. />
  4881. <package
  4882. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/LS2SPECTRUMPRO-v1.0.1-build1-ja-JP.img"
  4883. size="5183988"
  4884. />
  4885. <package
  4886. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/LS2SPECTRUMPRO-v1.0.1-build1-fi-FI.img"
  4887. size="5183988"
  4888. />
  4889. <package
  4890. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/LS2SPECTRUMPRO-v1.0.1-build1-pl-PL.img"
  4891. size="5183988"
  4892. />
  4893. </otaPackages>
  4894. </productMenu>
  4895. <productMenu id="meshIntercom"
  4896. type="30" >
  4897. </productMenu>
  4898. <productMenu id="meshIntercom+"
  4899. type="3"
  4900. url="2" >
  4901. </productMenu>
  4902. <productMenu id="waveIntercom"
  4903. type="1" >
  4904. </productMenu>
  4905. <productMenu id="fmradio"
  4906. type="1"
  4907. url="1" >
  4908. </productMenu>
  4909. <productMenu id="phone"
  4910. type="1" >
  4911. </productMenu>
  4912. <productMenu id="music"
  4913. type="1" >
  4914. </productMenu>
  4915. <productMenu id="musicSharing"
  4916. type="0" >
  4917. </productMenu>
  4918. <productMenu id="deviceSetting"
  4919. type="1"
  4920. url="https://api.sena.com/support/SenaNeoApp/SPIDERSlim/NS_SPIDERSlim_03.xml" >
  4921. </productMenu>
  4922. <productMenu id="quickGuide"
  4923. type="0"
  4924. url=""
  4925. size="1.12MB" >
  4926. </productMenu>
  4927. <productMenu id="userGuide"
  4928. type="1"
  4929. url=""
  4930. size="2.0MB" >
  4931. </productMenu>
  4932. <productMenu id="videoGuide"
  4933. type="0"
  4934. url=""
  4935. size="3.41MB" >
  4936. </productMenu>
  4937. <productMenu id="connectGuide"
  4938. type="1"
  4939. url=""
  4940. size="1.12MB" >
  4941. </productMenu>
  4942. <productMenu id="volume"
  4943. type="16" >
  4944. </productMenu>
  4945. <productMenu id="volume+"
  4946. type="2"
  4947. url="0x6004" >
  4948. </productMenu>
  4949. <productMenu id="appearance"
  4950. type="0"
  4951. url="2|white,silver,chrome,black" >
  4952. </productMenu>
  4953. <productMenu id="battery"
  4954. type="1" >
  4955. </productMenu>
  4956. <productID id="6A22"
  4957. />
  4958. <productGroupable type="0"
  4959. />
  4960. </product>
  4961. <product id="XFITM"
  4962. name="X-FIT M"
  4963. series="SPIDER"
  4964. latestVersion="0.1.11"
  4965. latestVersionVoicePrompt="1.1"
  4966. show = "-1" >
  4967. <productMenu id="protocol"
  4968. type="2" >
  4969. </productMenu>
  4970. <productMenu id="ota"
  4971. type="0" >
  4972. <otaLanguages>
  4973. <otaLanguage
  4974. id="0"
  4975. name="English"
  4976. package="0"
  4977. />
  4978. <otaLanguage
  4979. id="0"
  4980. name="French"
  4981. package="1"
  4982. />
  4983. <otaLanguage
  4984. id="0"
  4985. name="Spanish"
  4986. package="2"
  4987. />
  4988. <otaLanguage
  4989. id="0"
  4990. name="Italian"
  4991. package="3"
  4992. />
  4993. <otaLanguage
  4994. id="0"
  4995. name="German"
  4996. package="4"
  4997. />
  4998. <otaLanguage
  4999. id="0"
  5000. name="Dutch"
  5001. package="5"
  5002. />
  5003. <otaLanguage
  5004. id="0"
  5005. name="Russian"
  5006. package="6"
  5007. />
  5008. <otaLanguage
  5009. id="0"
  5010. name="Chinese"
  5011. package="7"
  5012. />
  5013. <otaLanguage
  5014. id="0"
  5015. name="Korean"
  5016. package="8"
  5017. />
  5018. <otaLanguage
  5019. id="0"
  5020. name="Japanese"
  5021. package="9"
  5022. />
  5023. <otaLanguage
  5024. id="0"
  5025. name="Finnish"
  5026. package="10"
  5027. />
  5028. <otaLanguage
  5029. id="0"
  5030. name="Polish"
  5031. package="11"
  5032. />
  5033. </otaLanguages>
  5034. <otaPackages>
  5035. <package
  5036. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0.img"
  5037. size="5183988"
  5038. />
  5039. <package
  5040. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-fr-FR.img"
  5041. size="5183988"
  5042. />
  5043. <package
  5044. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-es-ES.img"
  5045. size="5183988"
  5046. />
  5047. <package
  5048. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-it-IT.img"
  5049. size="5183988"
  5050. />
  5051. <package
  5052. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-de-DE.img"
  5053. size="5183988"
  5054. />
  5055. <package
  5056. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-nl-NL.img"
  5057. size="5183988"
  5058. />
  5059. <package
  5060. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-ru-RU.img"
  5061. size="5183988"
  5062. />
  5063. <package
  5064. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-cmn-CN.img"
  5065. size="5183988"
  5066. />
  5067. <package
  5068. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-ko-KR.img"
  5069. size="5183988"
  5070. />
  5071. <package
  5072. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-ja-JP.img"
  5073. size="5183988"
  5074. />
  5075. <package
  5076. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-fi-FI.img"
  5077. size="5183988"
  5078. />
  5079. <package
  5080. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-pl-PL.img"
  5081. size="5183988"
  5082. />
  5083. </otaPackages>
  5084. </productMenu>
  5085. <productMenu id="meshIntercom"
  5086. type="30" >
  5087. </productMenu>
  5088. <productMenu id="meshIntercom+"
  5089. type="3"
  5090. url="2" >
  5091. </productMenu>
  5092. <productMenu id="waveIntercom"
  5093. type="1" >
  5094. </productMenu>
  5095. <productMenu id="fmradio"
  5096. type="1"
  5097. url="1" >
  5098. </productMenu>
  5099. <productMenu id="phone"
  5100. type="1" >
  5101. </productMenu>
  5102. <productMenu id="music"
  5103. type="1" >
  5104. </productMenu>
  5105. <productMenu id="musicSharing"
  5106. type="0" >
  5107. </productMenu>
  5108. <productMenu id="deviceSetting"
  5109. type="1"
  5110. url="https://api.sena.com/support/SenaNeoApp/SPIDERSlim/NS_SPIDERSlim_01.xml" >
  5111. </productMenu>
  5112. <productMenu id="quickGuide"
  5113. type="0"
  5114. url=""
  5115. size="1.12MB" >
  5116. </productMenu>
  5117. <productMenu id="userGuide"
  5118. type="1"
  5119. url=""
  5120. size="2.0MB" >
  5121. </productMenu>
  5122. <productMenu id="videoGuide"
  5123. type="0"
  5124. url=""
  5125. size="3.41MB" >
  5126. </productMenu>
  5127. <productMenu id="volume"
  5128. type="16" >
  5129. </productMenu>
  5130. <productMenu id="volume+"
  5131. type="2"
  5132. url="0x6004" >
  5133. </productMenu>
  5134. <productMenu id="battery"
  5135. type="1" >
  5136. </productMenu>
  5137. <productID id="6A17"
  5138. />
  5139. <productGroupable type="0"
  5140. />
  5141. </product>
  5142. <product id="VORTEXMESH"
  5143. name="VORTEX MESH"
  5144. series="Helmet"
  5145. latestVersion="0.1.11"
  5146. latestVersionVoicePrompt="1.1"
  5147. show = "-1" >
  5148. <productMenu id="protocol"
  5149. type="2" >
  5150. </productMenu>
  5151. <productMenu id="ota"
  5152. type="0" >
  5153. <otaLanguages>
  5154. <otaLanguage
  5155. id="0"
  5156. name="English"
  5157. package="0"
  5158. />
  5159. <otaLanguage
  5160. id="0"
  5161. name="French"
  5162. package="1"
  5163. />
  5164. <otaLanguage
  5165. id="0"
  5166. name="Spanish"
  5167. package="2"
  5168. />
  5169. <otaLanguage
  5170. id="0"
  5171. name="Italian"
  5172. package="3"
  5173. />
  5174. <otaLanguage
  5175. id="0"
  5176. name="German"
  5177. package="4"
  5178. />
  5179. <otaLanguage
  5180. id="0"
  5181. name="Dutch"
  5182. package="5"
  5183. />
  5184. <otaLanguage
  5185. id="0"
  5186. name="Russian"
  5187. package="6"
  5188. />
  5189. <otaLanguage
  5190. id="0"
  5191. name="Chinese"
  5192. package="7"
  5193. />
  5194. <otaLanguage
  5195. id="0"
  5196. name="Korean"
  5197. package="8"
  5198. />
  5199. <otaLanguage
  5200. id="0"
  5201. name="Japanese"
  5202. package="9"
  5203. />
  5204. <otaLanguage
  5205. id="0"
  5206. name="Finnish"
  5207. package="10"
  5208. />
  5209. <otaLanguage
  5210. id="0"
  5211. name="Polish"
  5212. package="11"
  5213. />
  5214. </otaLanguages>
  5215. <otaPackages>
  5216. <package
  5217. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0.img"
  5218. size="5183988"
  5219. />
  5220. <package
  5221. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-fr-FR.img"
  5222. size="5183988"
  5223. />
  5224. <package
  5225. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-es-ES.img"
  5226. size="5183988"
  5227. />
  5228. <package
  5229. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-it-IT.img"
  5230. size="5183988"
  5231. />
  5232. <package
  5233. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-de-DE.img"
  5234. size="5183988"
  5235. />
  5236. <package
  5237. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-nl-NL.img"
  5238. size="5183988"
  5239. />
  5240. <package
  5241. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ru-RU.img"
  5242. size="5183988"
  5243. />
  5244. <package
  5245. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-cmn-CN.img"
  5246. size="5183988"
  5247. />
  5248. <package
  5249. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ko-KR.img"
  5250. size="5183988"
  5251. />
  5252. <package
  5253. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ja-JP.img"
  5254. size="5183988"
  5255. />
  5256. <package
  5257. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-fi-FI.img"
  5258. size="5183988"
  5259. />
  5260. <package
  5261. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-pl-PL.img"
  5262. size="5183988"
  5263. />
  5264. </otaPackages>
  5265. </productMenu>
  5266. <productMenu id="wa"
  5267. type="0" >
  5268. </productMenu>
  5269. <productMenu id="led"
  5270. type="5" >
  5271. </productMenu>
  5272. <productMenu id="led+"
  5273. type="2"
  5274. url="1" >
  5275. </productMenu>
  5276. <productMenu id="meshIntercom"
  5277. type="30" >
  5278. </productMenu>
  5279. <productMenu id="meshIntercom+"
  5280. type="3"
  5281. url="2" >
  5282. </productMenu>
  5283. <productMenu id="waveIntercom"
  5284. type="1" >
  5285. </productMenu>
  5286. <productMenu id="fmradio"
  5287. type="0" >
  5288. </productMenu>
  5289. <productMenu id="phone"
  5290. type="1" >
  5291. </productMenu>
  5292. <productMenu id="music"
  5293. type="1" >
  5294. </productMenu>
  5295. <productMenu id="musicSharing"
  5296. type="0" >
  5297. </productMenu>
  5298. <productMenu id="deviceSetting"
  5299. type="1"
  5300. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  5301. </productMenu>
  5302. <productMenu id="quickGuide"
  5303. type="0"
  5304. url=""
  5305. size="1.12MB" >
  5306. </productMenu>
  5307. <productMenu id="userGuide"
  5308. type="1"
  5309. url=""
  5310. size="2.0MB" >
  5311. </productMenu>
  5312. <productMenu id="videoGuide"
  5313. type="0"
  5314. url=""
  5315. size="3.41MB" >
  5316. </productMenu>
  5317. <productMenu id="volume"
  5318. type="16" >
  5319. </productMenu>
  5320. <productMenu id="battery"
  5321. type="1" >
  5322. </productMenu>
  5323. <productID id="6A12"
  5324. />
  5325. <productGroupable type="0"
  5326. />
  5327. </product>
  5328. <product id="MeshOn"
  5329. name="MeshON"
  5330. series="Other"
  5331. latestVersion="1.0.1"
  5332. latestVersionVoicePrompt="0.7"
  5333. show = "1" >
  5334. <productMenu id="protocol"
  5335. type="2" >
  5336. </productMenu>
  5337. <productMenu id="ota"
  5338. type="2" >
  5339. <otaPackages>
  5340. <package
  5341. url="https://api.sena.com/support/OTA/Motorcycles/MESHON/MESH_ON-v1.0.1-build0.img"
  5342. size="2945812"
  5343. />
  5344. </otaPackages>
  5345. </productMenu>
  5346. <productMenu id="meshIntercom+"
  5347. type="3"
  5348. url="4" >
  5349. </productMenu>
  5350. <productMenu id="waveIntercom"
  5351. type="0" >
  5352. </productMenu>
  5353. <productMenu id="phone"
  5354. type="0" >
  5355. </productMenu>
  5356. <productMenu id="music"
  5357. type="0" >
  5358. </productMenu>
  5359. <productMenu id="musicSharing"
  5360. type="0" >
  5361. </productMenu>
  5362. <productMenu id="deviceSetting"
  5363. type="1"
  5364. url="https://api.sena.com/support/SenaNeoApp/MeshOn/NS_MESHON_AIROHA_02.xml" >
  5365. </productMenu>
  5366. <productMenu id="userGuide"
  5367. type="1"
  5368. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_MeshON_1.0.0_en_260720.pdf"
  5369. size="2.0MB" >
  5370. </productMenu>
  5371. <productMenu id="connectGuide"
  5372. type="1"
  5373. url="https://api.sena.com/support/ConnectGuide/meshmulti_ble_meshon.json"
  5374. size="1.12MB" >
  5375. </productMenu>
  5376. <productMenu id="bluetoothHeadset"
  5377. type="1"
  5378. url="0|https://api.sena.com/support/HeadsetPairingGuide/meshon_v1_20260102.json" >
  5379. </productMenu>
  5380. <productMenu id="volume"
  5381. type="0" >
  5382. </productMenu>
  5383. <productMenu id="battery"
  5384. type="1" >
  5385. </productMenu>
  5386. <productID id="684E"
  5387. />
  5388. <productGroupable type="0"
  5389. />
  5390. </product>
  5391. <product id="Impulse"
  5392. name="Impulse"
  5393. series="Helmet"
  5394. latestVersion="1.4.1"
  5395. show = "1" >
  5396. <productMenu id="protocol"
  5397. type="2" >
  5398. </productMenu>
  5399. <productMenu id="alexa"
  5400. type="0" >
  5401. </productMenu>
  5402. <productMenu id="ota"
  5403. type="0" >
  5404. </productMenu>
  5405. <productMenu id="wa"
  5406. type="24" >
  5407. </productMenu>
  5408. <productMenu id="manager"
  5409. type="0" >
  5410. </productMenu>
  5411. <productMenu id="sip"
  5412. type="1" >
  5413. </productMenu>
  5414. <productMenu id="led"
  5415. type="1" >
  5416. <productMenuType version="1.0.1"
  5417. type="2"
  5418. />
  5419. <productMenuType version="1.0"
  5420. type="1"
  5421. />
  5422. </productMenu>
  5423. <productMenu id="meshIntercom"
  5424. type="30" >
  5425. <productMenuType version="1.1.1"
  5426. type="20"
  5427. />
  5428. </productMenu>
  5429. <productMenu id="meshIntercom+"
  5430. type="3"
  5431. url="2" >
  5432. <productMenuType version="1.3.9"
  5433. type="2"
  5434. />
  5435. <productMenuURL version="1.1.1"
  5436. url="0"
  5437. />
  5438. </productMenu>
  5439. <productMenu id="waveIntercom"
  5440. type="1" >
  5441. <productMenuType version="1.3.9"
  5442. type="0"
  5443. />
  5444. </productMenu>
  5445. <productMenu id="bluetoothIntercom"
  5446. type="1" >
  5447. </productMenu>
  5448. <productMenu id="phone"
  5449. type="1" >
  5450. </productMenu>
  5451. <productMenu id="music"
  5452. type="1" >
  5453. </productMenu>
  5454. <productMenu id="fmradio"
  5455. type="1" >
  5456. </productMenu>
  5457. <productMenu id="deviceSetting"
  5458. type="1"
  5459. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_06.xml" >
  5460. <productMenuURL version="1.3.9"
  5461. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_05.xml"
  5462. />
  5463. <productMenuURL version="1.1.1"
  5464. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml"
  5465. />
  5466. <productMenuURL version="1.0.4"
  5467. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_02.xml"
  5468. />
  5469. </productMenu>
  5470. <productMenu id="quickGuide"
  5471. type="0"
  5472. url=""
  5473. size="344KB" >
  5474. </productMenu>
  5475. <productMenu id="userGuide"
  5476. type="1"
  5477. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_IMPULSE_1.9.1_en_250731.pdf"
  5478. size="3.41MB" >
  5479. </productMenu>
  5480. <productMenu id="connectGuide"
  5481. type="1"
  5482. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5483. size="1.12MB" >
  5484. </productMenu>
  5485. <productMenu id="volume"
  5486. type="11" >
  5487. </productMenu>
  5488. <productMenu id="battery"
  5489. type="1" >
  5490. </productMenu>
  5491. <productID id="3148"
  5492. />
  5493. <productGroupable type="0"
  5494. />
  5495. </product>
  5496. <product id="Impulse"
  5497. name="Impulse"
  5498. series="Helmet"
  5499. latestVersion="2.0"
  5500. show = "-1" >
  5501. <productMenu id="protocol"
  5502. type="2" >
  5503. </productMenu>
  5504. <productMenu id="alexa"
  5505. type="0" >
  5506. </productMenu>
  5507. <productMenu id="ota"
  5508. type="0" >
  5509. </productMenu>
  5510. <productMenu id="wa"
  5511. type="8" >
  5512. </productMenu>
  5513. <productMenu id="manager"
  5514. type="0" >
  5515. </productMenu>
  5516. <productMenu id="sip"
  5517. type="1" >
  5518. </productMenu>
  5519. <productMenu id="led"
  5520. type="3" >
  5521. </productMenu>
  5522. <productMenu id="meshIntercom"
  5523. type="20" >
  5524. </productMenu>
  5525. <productMenu id="bluetoothIntercom"
  5526. type="1" >
  5527. </productMenu>
  5528. <productMenu id="phone"
  5529. type="1" >
  5530. </productMenu>
  5531. <productMenu id="music"
  5532. type="1" >
  5533. </productMenu>
  5534. <productMenu id="fmradio"
  5535. type="1" >
  5536. </productMenu>
  5537. <productMenu id="deviceSetting"
  5538. type="1"
  5539. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml" >
  5540. </productMenu>
  5541. <productMenu id="quickGuide"
  5542. type="1"
  5543. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_IMPULSE_1.4.0_en_230424.pdf"
  5544. size="344KB" >
  5545. </productMenu>
  5546. <productMenu id="userGuide"
  5547. type="1"
  5548. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_IMPULSE_1.7.0_en_230424.pdf"
  5549. size="3.41MB" >
  5550. </productMenu>
  5551. <productMenu id="volume"
  5552. type="11" >
  5553. </productMenu>
  5554. <productMenu id="battery"
  5555. type="1" >
  5556. </productMenu>
  5557. <productID id="3221"
  5558. />
  5559. <productGroupable type="0"
  5560. />
  5561. </product>
  5562. <product id="Stryker"
  5563. name="Stryker"
  5564. series="Helmet"
  5565. latestVersion="1.4.1"
  5566. show = "1" >
  5567. <productMenu id="protocol"
  5568. type="2" >
  5569. </productMenu>
  5570. <productMenu id="alexa"
  5571. type="0" >
  5572. </productMenu>
  5573. <productMenu id="ota"
  5574. type="0" >
  5575. </productMenu>
  5576. <productMenu id="wa"
  5577. type="40" >
  5578. </productMenu>
  5579. <productMenu id="manager"
  5580. type="0" >
  5581. </productMenu>
  5582. <productMenu id="sip"
  5583. type="1" >
  5584. </productMenu>
  5585. <productMenu id="led"
  5586. type="1" >
  5587. <productMenuType version="1.0.1"
  5588. type="2"
  5589. />
  5590. <productMenuType version="1.0"
  5591. type="1"
  5592. />
  5593. </productMenu>
  5594. <productMenu id="meshIntercom"
  5595. type="30" >
  5596. <productMenuType version="1.1.1"
  5597. type="20"
  5598. />
  5599. </productMenu>
  5600. <productMenu id="meshIntercom+"
  5601. type="3"
  5602. url="2" >
  5603. <productMenuType version="1.3.9"
  5604. type="2"
  5605. />
  5606. <productMenuURL version="1.1.1"
  5607. url="0"
  5608. />
  5609. </productMenu>
  5610. <productMenu id="waveIntercom"
  5611. type="1" >
  5612. <productMenuType version="1.2.9"
  5613. type="0"
  5614. />
  5615. </productMenu>
  5616. <productMenu id="bluetoothIntercom"
  5617. type="1" >
  5618. </productMenu>
  5619. <productMenu id="phone"
  5620. type="1" >
  5621. </productMenu>
  5622. <productMenu id="music"
  5623. type="1" >
  5624. </productMenu>
  5625. <productMenu id="fmradio"
  5626. type="1" >
  5627. </productMenu>
  5628. <productMenu id="deviceSetting"
  5629. type="1"
  5630. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_06.xml" >
  5631. <productMenuURL version="1.3.9"
  5632. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_05.xml"
  5633. />
  5634. <productMenuURL version="1.1.1"
  5635. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml"
  5636. />
  5637. <productMenuURL version="1.0.4"
  5638. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_02.xml"
  5639. />
  5640. </productMenu>
  5641. <productMenu id="quickGuide"
  5642. type="0"
  5643. url=""
  5644. size="344KB" >
  5645. </productMenu>
  5646. <productMenu id="userGuide"
  5647. type="1"
  5648. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_STRYKER_1.7.1_en_250731.pdf"
  5649. size="3.41MB" >
  5650. </productMenu>
  5651. <productMenu id="connectGuide"
  5652. type="1"
  5653. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5654. size="1.12MB" >
  5655. </productMenu>
  5656. <productMenu id="volume"
  5657. type="11" >
  5658. </productMenu>
  5659. <productMenu id="battery"
  5660. type="1" >
  5661. </productMenu>
  5662. <productID id="3154"
  5663. />
  5664. <productGroupable type="0"
  5665. />
  5666. </product>
  5667. <product id="SRL3Plus"
  5668. name="SRL3 Plus"
  5669. series="60"
  5670. latestVersion="0.9.14"
  5671. latestVersionMesh="0.19"
  5672. latestVersionVoicePrompt="1.8"
  5673. show = "-1" >
  5674. <productMenu id="protocol"
  5675. type="2" >
  5676. </productMenu>
  5677. <productMenu id="ota"
  5678. type="0" >
  5679. <otaLanguages>
  5680. <otaLanguage
  5681. id="0"
  5682. name="English"
  5683. package="0"
  5684. />
  5685. <otaLanguage
  5686. id="0"
  5687. name="French"
  5688. package="1"
  5689. />
  5690. <otaLanguage
  5691. id="0"
  5692. name="Spanish"
  5693. package="2"
  5694. />
  5695. <otaLanguage
  5696. id="0"
  5697. name="Italian"
  5698. package="3"
  5699. />
  5700. <otaLanguage
  5701. id="0"
  5702. name="German"
  5703. package="4"
  5704. />
  5705. <otaLanguage
  5706. id="0"
  5707. name="Dutch"
  5708. package="5"
  5709. />
  5710. <otaLanguage
  5711. id="0"
  5712. name="Russian"
  5713. package="6"
  5714. />
  5715. <otaLanguage
  5716. id="0"
  5717. name="Chinese"
  5718. package="7"
  5719. />
  5720. <otaLanguage
  5721. id="0"
  5722. name="Korean"
  5723. package="8"
  5724. />
  5725. <otaLanguage
  5726. id="0"
  5727. name="Japanese"
  5728. package="9"
  5729. />
  5730. <otaLanguage
  5731. id="0"
  5732. name="Finnish"
  5733. package="10"
  5734. />
  5735. <otaLanguage
  5736. id="0"
  5737. name="Polish"
  5738. package="11"
  5739. />
  5740. </otaLanguages>
  5741. <otaPackages>
  5742. <package
  5743. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0.img"
  5744. size="5183988"
  5745. />
  5746. <package
  5747. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-fr-FR.img"
  5748. size="5183988"
  5749. />
  5750. <package
  5751. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-es-ES.img"
  5752. size="5183988"
  5753. />
  5754. <package
  5755. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-it-IT.img"
  5756. size="5183988"
  5757. />
  5758. <package
  5759. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-de-DE.img"
  5760. size="5183988"
  5761. />
  5762. <package
  5763. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-nl-NL.img"
  5764. size="5183988"
  5765. />
  5766. <package
  5767. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-ru-RU.img"
  5768. size="5183988"
  5769. />
  5770. <package
  5771. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-cmn-CN.img"
  5772. size="5183988"
  5773. />
  5774. <package
  5775. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-ko-KR.img"
  5776. size="5183988"
  5777. />
  5778. <package
  5779. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-ja-JP.img"
  5780. size="5183988"
  5781. />
  5782. <package
  5783. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-fi-FI.img"
  5784. size="5183988"
  5785. />
  5786. <package
  5787. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-pl-PL.img"
  5788. size="5183988"
  5789. />
  5790. </otaPackages>
  5791. </productMenu>
  5792. <productMenu id="sip"
  5793. type="1" >
  5794. </productMenu>
  5795. <productMenu id="meshIntercom+"
  5796. type="3"
  5797. url="2" >
  5798. </productMenu>
  5799. <productMenu id="waveIntercom"
  5800. type="1" >
  5801. </productMenu>
  5802. <productMenu id="bluetoothIntercom"
  5803. type="1"
  5804. url="2" >
  5805. </productMenu>
  5806. <productMenu id="bluetoothIntercomGrouping"
  5807. type="0" >
  5808. </productMenu>
  5809. <productMenu id="fmradio"
  5810. type="1"
  5811. url="1" >
  5812. </productMenu>
  5813. <productMenu id="phone"
  5814. type="1" >
  5815. </productMenu>
  5816. <productMenu id="music"
  5817. type="1" >
  5818. </productMenu>
  5819. <productMenu id="musicSharing"
  5820. type="0" >
  5821. </productMenu>
  5822. <productMenu id="deviceSetting"
  5823. type="1"
  5824. url="https://api.sena.com/support/SenaNeoApp/SRL3Plus/NS_SRL3Plus_01.xml" >
  5825. </productMenu>
  5826. <productMenu id="quickGuide"
  5827. type="0"
  5828. url=""
  5829. size="1.12MB" >
  5830. </productMenu>
  5831. <productMenu id="userGuide"
  5832. type="0"
  5833. url=""
  5834. size="2.0MB" >
  5835. </productMenu>
  5836. <productMenu id="videoGuide"
  5837. type="0"
  5838. url=""
  5839. size="3.41MB" >
  5840. </productMenu>
  5841. <productMenu id="volume"
  5842. type="16" >
  5843. </productMenu>
  5844. <productMenu id="soundMode"
  5845. type="0" >
  5846. </productMenu>
  5847. <productMenu id="battery"
  5848. type="1" >
  5849. </productMenu>
  5850. <productID id="6A08"
  5851. />
  5852. <productGroupable type="0"
  5853. />
  5854. </product>
  5855. <product id="SRL3"
  5856. name="SRL3"
  5857. series="SRL"
  5858. latestVersion="1.5"
  5859. show = "1" >
  5860. <productMenu id="protocol"
  5861. type="2" >
  5862. </productMenu>
  5863. <productMenu id="alexa"
  5864. type="0" >
  5865. </productMenu>
  5866. <productMenu id="ota"
  5867. type="0" >
  5868. </productMenu>
  5869. <productMenu id="wa"
  5870. type="1" >
  5871. </productMenu>
  5872. <productMenu id="sip"
  5873. type="1" >
  5874. </productMenu>
  5875. <productMenu id="meshIntercom"
  5876. type="30" >
  5877. </productMenu>
  5878. <productMenu id="meshIntercom+"
  5879. type="3"
  5880. url="2" >
  5881. <productMenuType version="1.3.9"
  5882. type="2"
  5883. />
  5884. </productMenu>
  5885. <productMenu id="waveIntercom"
  5886. type="1" >
  5887. <productMenuType version="1.4.9"
  5888. type="0"
  5889. />
  5890. </productMenu>
  5891. <productMenu id="bluetoothIntercom"
  5892. type="1" >
  5893. </productMenu>
  5894. <productMenu id="phone"
  5895. type="1" >
  5896. </productMenu>
  5897. <productMenu id="music"
  5898. type="1" >
  5899. </productMenu>
  5900. <productMenu id="fmradio"
  5901. type="1" >
  5902. </productMenu>
  5903. <productMenu id="deviceSetting"
  5904. type="1"
  5905. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  5906. <productMenuURL version="1.3"
  5907. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  5908. />
  5909. </productMenu>
  5910. <productMenu id="quickGuide"
  5911. type="0"
  5912. url=""
  5913. size="344KB" >
  5914. </productMenu>
  5915. <productMenu id="userGuide"
  5916. type="1"
  5917. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL3_1.4.1_en_260831.pdf"
  5918. size="3.41MB" >
  5919. </productMenu>
  5920. <productMenu id="connectGuide"
  5921. type="1"
  5922. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5923. size="1.12MB" >
  5924. </productMenu>
  5925. <productMenu id="volume"
  5926. type="11" >
  5927. </productMenu>
  5928. <productMenu id="battery"
  5929. type="1" >
  5930. </productMenu>
  5931. <productID id="3219"
  5932. />
  5933. <productGroupable type="0"
  5934. />
  5935. </product>
  5936. <product id="SRL_Mesh"
  5937. name="SRL-Mesh"
  5938. series="SRL"
  5939. latestVersion="1.7.1"
  5940. show = "1" >
  5941. <productMenu id="protocol"
  5942. type="2" >
  5943. </productMenu>
  5944. <productMenu id="alexa"
  5945. type="0" >
  5946. </productMenu>
  5947. <productMenu id="ota"
  5948. type="0" >
  5949. </productMenu>
  5950. <productMenu id="wa"
  5951. type="1" >
  5952. </productMenu>
  5953. <productMenu id="sip"
  5954. type="1" >
  5955. </productMenu>
  5956. <productMenu id="meshIntercom"
  5957. type="30" >
  5958. <productMenuType version="1.1.1"
  5959. type="20"
  5960. />
  5961. </productMenu>
  5962. <productMenu id="meshIntercom+"
  5963. type="3"
  5964. url="2" >
  5965. <productMenuType version="1.5.9"
  5966. type="2"
  5967. />
  5968. <productMenuURL version="1.1.1"
  5969. url="0"
  5970. />
  5971. </productMenu>
  5972. <productMenu id="waveIntercom"
  5973. type="1" >
  5974. <productMenuType version="1.6.9"
  5975. type="0"
  5976. />
  5977. </productMenu>
  5978. <productMenu id="bluetoothIntercom"
  5979. type="1" >
  5980. </productMenu>
  5981. <productMenu id="phone"
  5982. type="1" >
  5983. </productMenu>
  5984. <productMenu id="music"
  5985. type="1" >
  5986. </productMenu>
  5987. <productMenu id="fmradio"
  5988. type="1" >
  5989. </productMenu>
  5990. <productMenu id="deviceSetting"
  5991. type="1"
  5992. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  5993. <productMenuURL version="1.5"
  5994. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  5995. />
  5996. <productMenuURL version="1.1.1"
  5997. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  5998. />
  5999. <productMenuURL version="1.0.3"
  6000. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  6001. />
  6002. </productMenu>
  6003. <productMenu id="quickGuide"
  6004. type="0"
  6005. url=""
  6006. size="344KB" >
  6007. </productMenu>
  6008. <productMenu id="userGuide"
  6009. type="1"
  6010. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL-Mesh_1.6.0_en_250822.pdf"
  6011. size="3.41MB" >
  6012. </productMenu>
  6013. <productMenu id="connectGuide"
  6014. type="1"
  6015. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  6016. size="1.12MB" >
  6017. </productMenu>
  6018. <productMenu id="volume"
  6019. type="11" >
  6020. </productMenu>
  6021. <productMenu id="battery"
  6022. type="1" >
  6023. </productMenu>
  6024. <productID id="3216"
  6025. />
  6026. <productGroupable type="0"
  6027. />
  6028. </product>
  6029. <product id="SRL_EXT"
  6030. name="SRL-EXT"
  6031. series="SRL"
  6032. latestVersion="1.7.1"
  6033. show = "1" >
  6034. <productMenu id="protocol"
  6035. type="2" >
  6036. </productMenu>
  6037. <productMenu id="alexa"
  6038. type="0" >
  6039. </productMenu>
  6040. <productMenu id="ota"
  6041. type="0" >
  6042. </productMenu>
  6043. <productMenu id="wa"
  6044. type="0" >
  6045. </productMenu>
  6046. <productMenu id="sip"
  6047. type="1" >
  6048. </productMenu>
  6049. <productMenu id="meshIntercom"
  6050. type="30" >
  6051. <productMenuType version="1.1.1"
  6052. type="20"
  6053. />
  6054. </productMenu>
  6055. <productMenu id="meshIntercom+"
  6056. type="3"
  6057. url="2" >
  6058. <productMenuType version="1.5.9"
  6059. type="2"
  6060. />
  6061. <productMenuURL version="1.1.1"
  6062. url="0"
  6063. />
  6064. </productMenu>
  6065. <productMenu id="waveIntercom"
  6066. type="1" >
  6067. <productMenuType version="1.6.9"
  6068. type="0"
  6069. />
  6070. </productMenu>
  6071. <productMenu id="bluetoothIntercom"
  6072. type="1" >
  6073. </productMenu>
  6074. <productMenu id="phone"
  6075. type="1" >
  6076. </productMenu>
  6077. <productMenu id="music"
  6078. type="1" >
  6079. </productMenu>
  6080. <productMenu id="fmradio"
  6081. type="1" >
  6082. </productMenu>
  6083. <productMenu id="deviceSetting"
  6084. type="1"
  6085. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  6086. <productMenuURL version="1.5"
  6087. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  6088. />
  6089. <productMenuURL version="1.1.1"
  6090. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  6091. />
  6092. <productMenuURL version="1.0.3"
  6093. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  6094. />
  6095. </productMenu>
  6096. <productMenu id="quickGuide"
  6097. type="0"
  6098. url=""
  6099. size="344KB" >
  6100. </productMenu>
  6101. <productMenu id="userGuide"
  6102. type="1"
  6103. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL-EXT_1.6.0_en_250822.pdf"
  6104. size="3.41MB" >
  6105. </productMenu>
  6106. <productMenu id="connectGuide"
  6107. type="1"
  6108. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  6109. size="1.12MB" >
  6110. </productMenu>
  6111. <productMenu id="volume"
  6112. type="11" >
  6113. </productMenu>
  6114. <productMenu id="battery"
  6115. type="1" >
  6116. </productMenu>
  6117. <productID id="3212"
  6118. />
  6119. <productGroupable type="0"
  6120. />
  6121. </product>
  6122. <product id="SRL2"
  6123. name="SRL2"
  6124. series="SRL"
  6125. latestVersion="1.0.9"
  6126. show = "1" >
  6127. <productMenu id="protocol"
  6128. type="0">
  6129. </productMenu>
  6130. <productMenu id="sip"
  6131. type="1" >
  6132. </productMenu>
  6133. <productMenu id="bluetoothIntercom"
  6134. type="1" >
  6135. </productMenu>
  6136. <productMenu id="intercomSetting"
  6137. type="1" >
  6138. </productMenu>
  6139. <productMenu id="phone"
  6140. type="2" >
  6141. </productMenu>
  6142. <productMenu id="fmradio"
  6143. type="3" >
  6144. </productMenu>
  6145. <productMenu id="deviceSetting"
  6146. type="1"
  6147. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  6148. </productMenu>
  6149. <productMenu id="quickGuide"
  6150. type="1"
  6151. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SRL2_1.2.0_en_240207.pdf"
  6152. size="846KB" >
  6153. </productMenu>
  6154. <productMenu id="userGuide"
  6155. type="1"
  6156. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SRL2_1.1.0_en_220922.pdf"
  6157. size="1.18MB" >
  6158. </productMenu>
  6159. <productMenu id="connectGuide"
  6160. type="1"
  6161. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6162. size="1.12MB" >
  6163. </productMenu>
  6164. <productID id="4530"
  6165. />
  6166. <productGroupable type="1"
  6167. />
  6168. </product>
  6169. <product id="Neotec2"
  6170. name="SRL Neotec2"
  6171. series="SRL"
  6172. latestVersion="1.1.5"
  6173. show = "1" >
  6174. <productMenu id="protocol"
  6175. type="0">
  6176. </productMenu>
  6177. <productMenu id="sip"
  6178. type="1" >
  6179. </productMenu>
  6180. <productMenu id="bluetoothIntercom"
  6181. type="1" >
  6182. </productMenu>
  6183. <productMenu id="intercomSetting"
  6184. type="1" >
  6185. </productMenu>
  6186. <productMenu id="phone"
  6187. type="2" >
  6188. </productMenu>
  6189. <productMenu id="fmradio"
  6190. type="3" >
  6191. </productMenu>
  6192. <productMenu id="deviceSetting"
  6193. type="1"
  6194. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  6195. </productMenu>
  6196. <productMenu id="quickGuide"
  6197. type="0"
  6198. url=""
  6199. size="796KB" >
  6200. </productMenu>
  6201. <productMenu id="userGuide"
  6202. type="1"
  6203. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SRL_for_Shoei_Neotec2_1.1.1_en_250227.pdf"
  6204. size="1.90MB" >
  6205. </productMenu>
  6206. <productMenu id="connectGuide"
  6207. type="1"
  6208. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6209. size="1.12MB" >
  6210. </productMenu>
  6211. <productID id="4510"
  6212. />
  6213. <productGroupable type="1"
  6214. />
  6215. </product>
  6216. <product id="MultiComNeo"
  6217. name="MultiCom Neo"
  6218. series="MultiCom"
  6219. latestVersion="1.0"
  6220. latestVersionVoicePrompt="1.6"
  6221. show = "-1" >
  6222. <productMenu id="protocol"
  6223. type="2" >
  6224. </productMenu>
  6225. <productMenu id="ota"
  6226. type="0" >
  6227. <otaPackages>
  6228. <package
  6229. url="https://api.sena.com/support/OTA/Motorcycles/MultiComNeo/MultiComNeo-v1.0-build0.img"
  6230. size="2945812"
  6231. />
  6232. </otaPackages>
  6233. </productMenu>
  6234. <productMenu id="meshIntercom+"
  6235. type="3"
  6236. url="2" >
  6237. </productMenu>
  6238. <productMenu id="waveIntercom"
  6239. type="1" >
  6240. </productMenu>
  6241. <productMenu id="phone"
  6242. type="1" >
  6243. </productMenu>
  6244. <productMenu id="music"
  6245. type="1" >
  6246. </productMenu>
  6247. <productMenu id="musicSharing"
  6248. type="0" >
  6249. </productMenu>
  6250. <productMenu id="deviceSetting"
  6251. type="1"
  6252. url="https://api.sena.com/support/SenaNeoApp/MultiComNeo/NS_MultiComNeo.xml" >
  6253. </productMenu>
  6254. <productMenu id="quickGuide"
  6255. type="0"
  6256. url=""
  6257. size="1.12MB" >
  6258. </productMenu>
  6259. <productMenu id="userGuide"
  6260. type="1"
  6261. url=""
  6262. size="2.0MB" >
  6263. </productMenu>
  6264. <productMenu id="videoGuide"
  6265. type="0"
  6266. url=""
  6267. size="3.41MB" >
  6268. </productMenu>
  6269. <productMenu id="connectGuide"
  6270. type="0"
  6271. url=""
  6272. size="1.12MB" >
  6273. </productMenu>
  6274. <productMenu id="volume"
  6275. type="12" >
  6276. </productMenu>
  6277. <productMenu id="volume+"
  6278. type="2"
  6279. url="0x2000" >
  6280. </productMenu>
  6281. <productMenu id="battery"
  6282. type="1" >
  6283. </productMenu>
  6284. <productID id="685F"
  6285. />
  6286. <productGroupable type="0"
  6287. />
  6288. </product>
  6289. <product id="SPIDERST2ANC"
  6290. name="SPIDER ST2 ANC"
  6291. series="SPIDER"
  6292. latestVersion="0.5.1"
  6293. latestVersionVoicePrompt="0.2"
  6294. latestVersionMesh="0.8"
  6295. show = "-1" >
  6296. <productMenu id="protocol"
  6297. type="2" >
  6298. </productMenu>
  6299. <productMenu id="ota"
  6300. type="0" >
  6301. <otaPackages>
  6302. <package
  6303. url="https://api.sena.com/support/test/60R-v0.5.1-build0_OTA.img"
  6304. size="2945812"
  6305. />
  6306. </otaPackages>
  6307. </productMenu>
  6308. <productMenu id="wa"
  6309. type="0" >
  6310. </productMenu>
  6311. <productMenu id="led"
  6312. type="1" >
  6313. </productMenu>
  6314. <productMenu id="meshIntercom"
  6315. type="30" >
  6316. </productMenu>
  6317. <productMenu id="fmradio"
  6318. type="1" >
  6319. </productMenu>
  6320. <productMenu id="phone"
  6321. type="1" >
  6322. </productMenu>
  6323. <productMenu id="music"
  6324. type="1" >
  6325. </productMenu>
  6326. <productMenu id="musicSharing"
  6327. type="0" >
  6328. </productMenu>
  6329. <productMenu id="deviceSetting"
  6330. type="1"
  6331. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_10.xml" >
  6332. </productMenu>
  6333. <productMenu id="quickGuide"
  6334. type="1"
  6335. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SPIDER_ST1_2.3.0_en_231205.pdf"
  6336. size="1.12MB" >
  6337. </productMenu>
  6338. <productMenu id="userGuide"
  6339. type="1"
  6340. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_ST1_2.5.0_en_231204.pdf"
  6341. size="2.0MB" >
  6342. </productMenu>
  6343. <productMenu id="videoGuide"
  6344. type="1"
  6345. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  6346. size="3.41MB" >
  6347. </productMenu>
  6348. <productMenu id="volume"
  6349. type="12" >
  6350. </productMenu>
  6351. <productMenu id="battery"
  6352. type="1" >
  6353. </productMenu>
  6354. <productID id="6A00"
  6355. />
  6356. <productGroupable type="0"
  6357. />
  6358. </product>
  6359. <product id="SPIDER_ST1"
  6360. name="SPIDER ST1"
  6361. series="SPIDER"
  6362. latestVersion="2.5.3"
  6363. latestVersionVoicePrompt="1.6"
  6364. show = "1" >
  6365. <productMenu id="protocol"
  6366. type="2" >
  6367. </productMenu>
  6368. <productMenu id="alexa"
  6369. type="0" >
  6370. </productMenu>
  6371. <productMenu id="ota"
  6372. type="2" >
  6373. <productMenuType version="2.1.9"
  6374. type="0"
  6375. />
  6376. <otaPackages>
  6377. <package
  6378. url="https://api.sena.com/support/OTA/Motorcycles/SPIDER/SPIDER_ST1-v2.5.3-build0.img"
  6379. size="2945812"
  6380. />
  6381. </otaPackages>
  6382. </productMenu>
  6383. <productMenu id="wa"
  6384. type="0" >
  6385. </productMenu>
  6386. <productMenu id="meshIntercom"
  6387. type="30" >
  6388. <productMenuType version="2.1.1"
  6389. type="20"
  6390. />
  6391. </productMenu>
  6392. <productMenu id="meshIntercom+"
  6393. type="3"
  6394. url="2" >
  6395. <productMenuType version="2.2.9"
  6396. type="2"
  6397. />
  6398. <productMenuURL version="2.1.1"
  6399. url="0"
  6400. />
  6401. </productMenu>
  6402. <productMenu id="waveIntercom"
  6403. type="1" >
  6404. <productMenuType version="2.3.9"
  6405. type="0"
  6406. />
  6407. </productMenu>
  6408. <productMenu id="phone"
  6409. type="1" >
  6410. </productMenu>
  6411. <productMenu id="music"
  6412. type="1" >
  6413. </productMenu>
  6414. <productMenu id="musicSharing"
  6415. type="0" >
  6416. </productMenu>
  6417. <productMenu id="deviceSetting"
  6418. type="1"
  6419. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_06.xml" >
  6420. <productMenuURL version="2.4.9"
  6421. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_04.xml"
  6422. />
  6423. <productMenuURL version="2.2.2"
  6424. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  6425. />
  6426. <productMenuURL version="2.1.1"
  6427. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_01.xml"
  6428. />
  6429. </productMenu>
  6430. <productMenu id="quickGuide"
  6431. type="0"
  6432. url=""
  6433. size="1.12MB" >
  6434. </productMenu>
  6435. <productMenu id="userGuide"
  6436. type="1"
  6437. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_ST1_2.7.2_en_250327.pdf"
  6438. size="2.0MB" >
  6439. </productMenu>
  6440. <productMenu id="videoGuide"
  6441. type="1"
  6442. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  6443. size="3.41MB" >
  6444. </productMenu>
  6445. <productMenu id="connectGuide"
  6446. type="1"
  6447. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  6448. size="1.12MB" >
  6449. </productMenu>
  6450. <productMenu id="volume"
  6451. type="12" >
  6452. </productMenu>
  6453. <productMenu id="volume+"
  6454. type="2"
  6455. url="0x2000" >
  6456. </productMenu>
  6457. <productMenu id="battery"
  6458. type="1" >
  6459. </productMenu>
  6460. <productID id="6800"
  6461. />
  6462. <productGroupable type="0"
  6463. />
  6464. </product>
  6465. <product id="SPIDER_ST1"
  6466. name="SPIDER ST1"
  6467. series="SPIDER"
  6468. latestVersion="1.2.2"
  6469. show = "-1" >
  6470. <productMenu id="protocol"
  6471. type="2" >
  6472. </productMenu>
  6473. <productMenu id="alexa"
  6474. type="0" >
  6475. </productMenu>
  6476. <productMenu id="ota"
  6477. type="0" >
  6478. </productMenu>
  6479. <productMenu id="wa"
  6480. type="0" >
  6481. </productMenu>
  6482. <productMenu id="meshIntercom"
  6483. type="20" >
  6484. </productMenu>
  6485. <productMenu id="phone"
  6486. type="1" >
  6487. </productMenu>
  6488. <productMenu id="music"
  6489. type="1" >
  6490. </productMenu>
  6491. <productMenu id="deviceSetting"
  6492. type="1"
  6493. url="https://api.sena.com/support/SenaNeoApp/50/NS_SPIDER_02.xml" >
  6494. </productMenu>
  6495. <productMenu id="quickGuide"
  6496. type="0"
  6497. url=""
  6498. size="1.12MB" >
  6499. </productMenu>
  6500. <productMenu id="userGuide"
  6501. type="1"
  6502. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_ST1_1.3.0_en_250326.pdf"
  6503. size="2.0MB" >
  6504. </productMenu>
  6505. <productMenu id="videoGuide"
  6506. type="1"
  6507. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  6508. size="3.41MB" >
  6509. </productMenu>
  6510. <productMenu id="volume"
  6511. type="13" >
  6512. <productMenuType version="1.1.6"
  6513. type="14"/>
  6514. </productMenu>
  6515. <productMenu id="battery"
  6516. type="1" >
  6517. </productMenu>
  6518. <productID id="6510"
  6519. />
  6520. <productGroupable type="0"
  6521. />
  6522. </product>
  6523. <product id="SPIDER_RT1"
  6524. name="SPIDER RT1"
  6525. series="SPIDER"
  6526. latestVersion="2.5.3"
  6527. latestVersionVoicePrompt="1.6"
  6528. show = "1" >
  6529. <productMenu id="protocol"
  6530. type="2" >
  6531. </productMenu>
  6532. <productMenu id="alexa"
  6533. type="0" >
  6534. </productMenu>
  6535. <productMenu id="ota"
  6536. type="2" >
  6537. <productMenuType version="2.1.9"
  6538. type="0"
  6539. />
  6540. <otaPackages>
  6541. <package
  6542. url="https://api.sena.com/support/OTA/Motorcycles/SPIDER/SPIDER_RT1-v2.5.3-build0.img"
  6543. size="2945812"
  6544. />
  6545. </otaPackages>
  6546. </productMenu>
  6547. <productMenu id="wa"
  6548. type="0" >
  6549. </productMenu>
  6550. <productMenu id="meshIntercom"
  6551. type="30" >
  6552. <productMenuType version="2.1.1"
  6553. type="20"
  6554. />
  6555. </productMenu>
  6556. <productMenu id="meshIntercom+"
  6557. type="3"
  6558. url="2" >
  6559. <productMenuType version="2.2.9"
  6560. type="2"
  6561. />
  6562. <productMenuURL version="2.1.1"
  6563. url="0"
  6564. />
  6565. </productMenu>
  6566. <productMenu id="waveIntercom"
  6567. type="1" >
  6568. <productMenuType version="2.3.9"
  6569. type="0"
  6570. />
  6571. </productMenu>
  6572. <productMenu id="phone"
  6573. type="1" >
  6574. </productMenu>
  6575. <productMenu id="music"
  6576. type="1" >
  6577. </productMenu>
  6578. <productMenu id="musicSharing"
  6579. type="0" >
  6580. </productMenu>
  6581. <productMenu id="deviceSetting"
  6582. type="1"
  6583. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_06.xml" >
  6584. <productMenuURL version="2.4.9"
  6585. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_04.xml"
  6586. />
  6587. <productMenuURL version="2.2.2"
  6588. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  6589. />
  6590. <productMenuURL version="2.1.1"
  6591. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_01.xml"
  6592. />
  6593. </productMenu>
  6594. <productMenu id="quickGuide"
  6595. type="0"
  6596. url=""
  6597. size="1.12MB" >
  6598. </productMenu>
  6599. <productMenu id="userGuide"
  6600. type="1"
  6601. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_RT1_2.6.2_en_250325.pdf"
  6602. size="2.0MB" >
  6603. </productMenu>
  6604. <productMenu id="videoGuide"
  6605. type="1"
  6606. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  6607. size="3.41MB" >
  6608. </productMenu>
  6609. <productMenu id="connectGuide"
  6610. type="1"
  6611. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init.json"
  6612. size="1.12MB" >
  6613. </productMenu>
  6614. <productMenu id="volume"
  6615. type="12" >
  6616. </productMenu>
  6617. <productMenu id="volume+"
  6618. type="2"
  6619. url="0x2000" >
  6620. </productMenu>
  6621. <productMenu id="battery"
  6622. type="1" >
  6623. </productMenu>
  6624. <productID id="6810"
  6625. />
  6626. <productGroupable type="0"
  6627. />
  6628. </product>
  6629. <product id="SPIDER_RT1"
  6630. name="SPIDER RT1"
  6631. series="SPIDER"
  6632. latestVersion="1.2.2"
  6633. show = "-1" >
  6634. <productMenu id="protocol"
  6635. type="2" >
  6636. </productMenu>
  6637. <productMenu id="alexa"
  6638. type="0" >
  6639. </productMenu>
  6640. <productMenu id="ota"
  6641. type="0" >
  6642. </productMenu>
  6643. <productMenu id="wa"
  6644. type="0" >
  6645. </productMenu>
  6646. <productMenu id="meshIntercom"
  6647. type="20" >
  6648. </productMenu>
  6649. <productMenu id="phone"
  6650. type="1" >
  6651. </productMenu>
  6652. <productMenu id="music"
  6653. type="1" >
  6654. </productMenu>
  6655. <productMenu id="deviceSetting"
  6656. type="1"
  6657. url="https://api.sena.com/support/SenaNeoApp/50/NS_SPIDER_02.xml" >
  6658. </productMenu>
  6659. <productMenu id="quickGuide"
  6660. type="0"
  6661. url=""
  6662. size="1.32MB" >
  6663. </productMenu>
  6664. <productMenu id="userGuide"
  6665. type="1"
  6666. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_RT1_1.3.0_en_250324.pdf"
  6667. size="1.79MB" >
  6668. </productMenu>
  6669. <productMenu id="videoGuide"
  6670. type="1"
  6671. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  6672. size="3.41MB" >
  6673. </productMenu>
  6674. <productMenu id="volume"
  6675. type="13" >
  6676. <productMenuType version="1.1.6"
  6677. type="14"/>
  6678. </productMenu>
  6679. <productMenu id="battery"
  6680. type="1" >
  6681. </productMenu>
  6682. <productID id="6500"
  6683. />
  6684. <productGroupable type="0"
  6685. />
  6686. </product>
  6687. <product id="30K"
  6688. name="30K"
  6689. series="30"
  6690. latestVersion="4.5.1"
  6691. show = "1" >
  6692. <productMenu id="protocol"
  6693. type="2" >
  6694. </productMenu>
  6695. <productMenu id="alexa"
  6696. type="0" >
  6697. </productMenu>
  6698. <productMenu id="wa"
  6699. type="1" >
  6700. </productMenu>
  6701. <productMenu id="sip"
  6702. type="1" >
  6703. </productMenu>
  6704. <productMenu id="meshIntercom"
  6705. type="30" >
  6706. <productMenuType version="4.0.4"
  6707. type="20"
  6708. />
  6709. </productMenu>
  6710. <productMenu id="meshIntercom+"
  6711. type="3"
  6712. url="2" >
  6713. <productMenuType version="4.3.9"
  6714. type="2"
  6715. />
  6716. <productMenuURL version="4.0.4"
  6717. url="0"
  6718. />
  6719. </productMenu>
  6720. <productMenu id="waveIntercom"
  6721. type="1" >
  6722. <productMenuType version="4.4.9"
  6723. type="0"
  6724. />
  6725. </productMenu>
  6726. <productMenu id="bluetoothIntercom"
  6727. type="1" >
  6728. </productMenu>
  6729. <productMenu id="phone"
  6730. type="1" >
  6731. </productMenu>
  6732. <productMenu id="music"
  6733. type="1" >
  6734. </productMenu>
  6735. <productMenu id="fmradio"
  6736. type="1" >
  6737. </productMenu>
  6738. <productMenu id="deviceSetting"
  6739. type="1"
  6740. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_04.xml" >
  6741. <productMenuURL version="4.3"
  6742. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_03.xml"
  6743. />
  6744. <productMenuURL version="4.2"
  6745. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_02.xml"
  6746. />
  6747. <productMenuURL version="4.0.4"
  6748. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2.xml"
  6749. />
  6750. </productMenu>
  6751. <productMenu id="quickGuide"
  6752. type="0"
  6753. url=""
  6754. size="934KB" >
  6755. </productMenu>
  6756. <productMenu id="userGuide"
  6757. type="1"
  6758. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_30K_4.4.1_en_250331.pdf"
  6759. size="1.14MB" >
  6760. </productMenu>
  6761. <productMenu id="connectGuide"
  6762. type="1"
  6763. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  6764. size="1.12MB" >
  6765. </productMenu>
  6766. <productMenu id="volume"
  6767. type="11" >
  6768. </productMenu>
  6769. <productMenu id="battery"
  6770. type="1" >
  6771. </productMenu>
  6772. <productID id="3211"
  6773. />
  6774. <productGroupable type="0"
  6775. />
  6776. </product>
  6777. <product id="30K"
  6778. name="30K"
  6779. series="30"
  6780. latestVersion="3.5"
  6781. show = "-1" >
  6782. <productMenu id="protocol"
  6783. type="1"
  6784. url="0">
  6785. </productMenu>
  6786. <productMenu id="wa"
  6787. type="7" >
  6788. </productMenu>
  6789. <productMenu id="sip"
  6790. type="1" >
  6791. </productMenu>
  6792. <productMenu id="meshIntercom"
  6793. type="20" >
  6794. <productMenuType version="2.9.9"
  6795. type="10"
  6796. />
  6797. </productMenu>
  6798. <productMenu id="meshIntercom+"
  6799. type="3"
  6800. url="2" >
  6801. <productMenuType version="3.4.9"
  6802. type="2"
  6803. />
  6804. <productMenuType version="2.9.9"
  6805. type="1"
  6806. />
  6807. <productMenuURL version="3.3.1"
  6808. url="0"
  6809. />
  6810. </productMenu>
  6811. <productMenu id="bluetoothIntercom"
  6812. type="1" >
  6813. </productMenu>
  6814. <productMenu id="phone"
  6815. type="1" >
  6816. </productMenu>
  6817. <productMenu id="music"
  6818. type="1" >
  6819. </productMenu>
  6820. <productMenu id="fmradio"
  6821. type="1" >
  6822. </productMenu>
  6823. <productMenu id="deviceSetting"
  6824. type="1"
  6825. url="https://api.sena.com/support/SenaNeoApp/30K/DSup_30K_04.xml">
  6826. <productMenuURL version="3.4.9"
  6827. url="https://api.sena.com/support/SenaNeoApp/30K/DSup_30K_01.xml"
  6828. />
  6829. <productMenuURL version="3.3.1"
  6830. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_HS_v0302fm.xml"
  6831. />
  6832. <productMenuURL version="3.0.1"
  6833. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0204.xml"
  6834. />
  6835. <productMenuURL version="2.3.1"
  6836. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0201.xml"
  6837. />
  6838. <productMenuURL version="2.0"
  6839. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  6840. />
  6841. <productMenuURL version="1.0.3"
  6842. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K.xml"
  6843. />
  6844. </productMenu>
  6845. <productMenu id="quickGuide"
  6846. type="0"
  6847. url=""
  6848. size="1.06MB" >
  6849. </productMenu>
  6850. <productMenu id="userGuide"
  6851. type="1"
  6852. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_30K_3.4.1_en_250328.pdf"
  6853. size="3.15MB" >
  6854. </productMenu>
  6855. <productMenu id="volume"
  6856. type="1" >
  6857. </productMenu>
  6858. <productID id="3110"
  6859. />
  6860. <productGroupable type="0"
  6861. />
  6862. </product>
  6863. <product id="FURY"
  6864. name="FURY"
  6865. series="Helmet"
  6866. latestVersion="1.0"
  6867. show = "-1" >
  6868. <productMenu id="protocol"
  6869. type="2" >
  6870. </productMenu>
  6871. <productMenu id="alexa"
  6872. type="0" >
  6873. </productMenu>
  6874. <productMenu id="ota"
  6875. type="0" >
  6876. </productMenu>
  6877. <productMenu id="wa"
  6878. type="0" >
  6879. </productMenu>
  6880. <productMenu id="meshIntercom"
  6881. type="20" >
  6882. </productMenu>
  6883. <productMenu id="phone"
  6884. type="1" >
  6885. </productMenu>
  6886. <productMenu id="music"
  6887. type="1" >
  6888. </productMenu>
  6889. <productMenu id="fmradio"
  6890. type="1" >
  6891. </productMenu>
  6892. <productMenu id="deviceSetting"
  6893. type="1"
  6894. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_01.xml" >
  6895. </productMenu>
  6896. <productMenu id="quickGuide"
  6897. type="1"
  6898. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_FURY_1.0.0_en_220819.pdf"
  6899. size="1.12MB" >
  6900. </productMenu>
  6901. <productMenu id="userGuide"
  6902. type="1"
  6903. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_FURY_1.0.0_en_220822.pdf"
  6904. size="2.0MB" >
  6905. </productMenu>
  6906. <productMenu id="volume"
  6907. type="13" >
  6908. </productMenu>
  6909. <productMenu id="battery"
  6910. type="1" >
  6911. </productMenu>
  6912. <productID id="5552"
  6913. />
  6914. <productGroupable type="0"
  6915. />
  6916. </product>
  6917. <product id="MomentumM"
  6918. name="Momentum EVO"
  6919. series="Helmet"
  6920. latestVersion="2.1.2"
  6921. show = "1" >
  6922. <productMenu id="protocol"
  6923. type="1"
  6924. url="0">
  6925. </productMenu>
  6926. <productMenu id="wa"
  6927. type="3" >
  6928. </productMenu>
  6929. <productMenu id="sip"
  6930. type="1" >
  6931. </productMenu>
  6932. <productMenu id="meshIntercom"
  6933. type="20" >
  6934. <productMenuType version="1.9.9"
  6935. type="10"
  6936. />
  6937. </productMenu>
  6938. <productMenu id="bluetoothIntercom"
  6939. type="1" >
  6940. </productMenu>
  6941. <productMenu id="phone"
  6942. type="1" >
  6943. </productMenu>
  6944. <productMenu id="music"
  6945. type="1" >
  6946. </productMenu>
  6947. <productMenu id="fmradio"
  6948. type="1" >
  6949. </productMenu>
  6950. <productMenu id="deviceSetting"
  6951. type="1"
  6952. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0204.xml">
  6953. <productMenuURL version="1.0.1"
  6954. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_vp_v0201.xml"
  6955. />
  6956. </productMenu>
  6957. <productMenu id="quickGuide"
  6958. type="1"
  6959. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_MOMENTUM_EVO_2.0.1_en_200507_D00144.pdf"
  6960. size="1.06MB" >
  6961. </productMenu>
  6962. <productMenu id="userGuide"
  6963. type="1"
  6964. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_MOMENTUM_EVO_2.0.1_en_200507.pdf"
  6965. size="3.15MB" >
  6966. </productMenu>
  6967. <productMenu id="connectGuide"
  6968. type="1"
  6969. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10.json"
  6970. size="1.12MB" >
  6971. </productMenu>
  6972. <productMenu id="volume"
  6973. type="2" >
  6974. </productMenu>
  6975. <productID id="3116"
  6976. />
  6977. <productGroupable type="0"
  6978. />
  6979. </product>
  6980. <product id="Momentum"
  6981. name="Momentum"
  6982. series="Helmet"
  6983. latestVersion="1.0.9"
  6984. show = "1" >
  6985. <productMenu id="protocol"
  6986. type="0">
  6987. </productMenu>
  6988. <productMenu id="sip"
  6989. type="1" >
  6990. </productMenu>
  6991. <productMenu id="bluetoothIntercom"
  6992. type="1" >
  6993. </productMenu>
  6994. <productMenu id="intercomSetting"
  6995. type="1" >
  6996. </productMenu>
  6997. <productMenu id="phone"
  6998. type="2" >
  6999. </productMenu>
  7000. <productMenu id="fmradio"
  7001. type="3" >
  7002. </productMenu>
  7003. <productMenu id="deviceSetting"
  7004. type="1"
  7005. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  7006. </productMenu>
  7007. <productMenu id="quickGuide"
  7008. type="1"
  7009. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_02.pdf"
  7010. size="796KB" >
  7011. </productMenu>
  7012. <productMenu id="userGuide"
  7013. type="1"
  7014. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_v1.0_03.pdf"
  7015. size="1.90MB" >
  7016. </productMenu>
  7017. <productMenu id="connectGuide"
  7018. type="1"
  7019. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  7020. size="1.12MB" >
  7021. </productMenu>
  7022. <productID id="4310"
  7023. />
  7024. <productGroupable type="1"
  7025. />
  7026. </product>
  7027. <product id="Momentum_Pro"
  7028. name="Momentum Pro"
  7029. series="Helmet"
  7030. latestVersion="1.0.6"
  7031. show = "1" >
  7032. <productMenu id="protocol"
  7033. type="0">
  7034. </productMenu>
  7035. <productMenu id="sip"
  7036. type="1" >
  7037. </productMenu>
  7038. <productMenu id="bluetoothIntercom"
  7039. type="1" >
  7040. </productMenu>
  7041. <productMenu id="intercomSetting"
  7042. type="1" >
  7043. </productMenu>
  7044. <productMenu id="phone"
  7045. type="2" >
  7046. </productMenu>
  7047. <productMenu id="fmradio"
  7048. type="3" >
  7049. </productMenu>
  7050. <productMenu id="deviceSetting"
  7051. type="1"
  7052. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  7053. </productMenu>
  7054. <productMenu id="quickGuide"
  7055. type="1"
  7056. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Pro_02.pdf"
  7057. size="796KB" >
  7058. </productMenu>
  7059. <productMenu id="userGuide"
  7060. type="1"
  7061. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Pro_v1.0_03.pdf"
  7062. size="1.90MB" >
  7063. </productMenu>
  7064. <productMenu id="connectGuide"
  7065. type="1"
  7066. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  7067. size="1.12MB" >
  7068. </productMenu>
  7069. <productID id="4330"
  7070. />
  7071. <productGroupable type="1"
  7072. />
  7073. </product>
  7074. <product id="Momentum_INC"
  7075. name="Momentum INC"
  7076. series="Helmet"
  7077. latestVersion="1.0.7"
  7078. show = "1" >
  7079. <productMenu id="protocol"
  7080. type="0">
  7081. </productMenu>
  7082. <productMenu id="sip"
  7083. type="1" >
  7084. </productMenu>
  7085. <productMenu id="bluetoothIntercom"
  7086. type="1" >
  7087. </productMenu>
  7088. <productMenu id="intercomSetting"
  7089. type="1" >
  7090. </productMenu>
  7091. <productMenu id="phone"
  7092. type="2" >
  7093. </productMenu>
  7094. <productMenu id="fmradio"
  7095. type="3" >
  7096. </productMenu>
  7097. <productMenu id="deviceSetting"
  7098. type="1"
  7099. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  7100. </productMenu>
  7101. <productMenu id="quickGuide"
  7102. type="1"
  7103. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_02.pdf"
  7104. size="794KB" >
  7105. </productMenu>
  7106. <productMenu id="userGuide"
  7107. type="1"
  7108. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_v1.0_03.pdf"
  7109. size="1.53MB" >
  7110. </productMenu>
  7111. <productMenu id="connectGuide"
  7112. type="1"
  7113. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  7114. size="1.12MB" >
  7115. </productMenu>
  7116. <productID id="4410"
  7117. />
  7118. <productGroupable type="1"
  7119. />
  7120. </product>
  7121. <product id="Momentum_INCP"
  7122. name="Momentum INC Pro"
  7123. series="Helmet"
  7124. latestVersion="1.0.4"
  7125. show = "1" >
  7126. <productMenu id="protocol"
  7127. type="0">
  7128. </productMenu>
  7129. <productMenu id="sip"
  7130. type="1" >
  7131. </productMenu>
  7132. <productMenu id="bluetoothIntercom"
  7133. type="1" >
  7134. </productMenu>
  7135. <productMenu id="intercomSetting"
  7136. type="1" >
  7137. </productMenu>
  7138. <productMenu id="phone"
  7139. type="2" >
  7140. </productMenu>
  7141. <productMenu id="fmradio"
  7142. type="3" >
  7143. </productMenu>
  7144. <productMenu id="deviceSetting"
  7145. type="1"
  7146. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  7147. </productMenu>
  7148. <productMenu id="quickGuide"
  7149. type="1"
  7150. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_Pro_02.pdf"
  7151. size="794KB" >
  7152. </productMenu>
  7153. <productMenu id="userGuide"
  7154. type="1"
  7155. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_Pro_v1.0_03.pdf"
  7156. size="1.53MB" >
  7157. </productMenu>
  7158. <productMenu id="connectGuide"
  7159. type="1"
  7160. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  7161. size="1.12MB" >
  7162. </productMenu>
  7163. <productID id="4430"
  7164. />
  7165. <productGroupable type="1"
  7166. />
  7167. </product>
  7168. <product id="Momentum_Lite"
  7169. name="Momentum Lite"
  7170. series="Helmet"
  7171. latestVersion="2.0.3"
  7172. show = "1" >
  7173. <productMenu id="protocol"
  7174. type="0">
  7175. </productMenu>
  7176. <productMenu id="sip"
  7177. type="1" >
  7178. </productMenu>
  7179. <productMenu id="bluetoothIntercom"
  7180. type="1" >
  7181. </productMenu>
  7182. <productMenu id="phone"
  7183. type="2" >
  7184. </productMenu>
  7185. <productMenu id="fmradio"
  7186. type="3" >
  7187. </productMenu>
  7188. <productMenu id="deviceSetting"
  7189. type="1"
  7190. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  7191. <productMenuURL version="1.1"
  7192. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_Lite.xml"
  7193. />
  7194. </productMenu>
  7195. <productMenu id="quickGuide"
  7196. type="1"
  7197. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Lite_02.pdf"
  7198. size="790KB" >
  7199. </productMenu>
  7200. <productMenu id="userGuide"
  7201. type="1"
  7202. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Lite_v2.0_01.pdf"
  7203. size="1.42MB" >
  7204. </productMenu>
  7205. <productMenu id="connectGuide"
  7206. type="1"
  7207. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  7208. size="1.12MB" >
  7209. </productMenu>
  7210. <productID id="5526"
  7211. />
  7212. <productGroupable type="0"
  7213. />
  7214. </product>
  7215. <product id="OUTRUSHM"
  7216. name="OUTRUSH M"
  7217. series="Helmet"
  7218. latestVersion="1.0"
  7219. show = "-1" >
  7220. <productMenu id="protocol"
  7221. type="2" >
  7222. </productMenu>
  7223. <productMenu id="alexa"
  7224. type="0" >
  7225. </productMenu>
  7226. <productMenu id="ota"
  7227. type="0" >
  7228. </productMenu>
  7229. <productMenu id="wa"
  7230. type="0" >
  7231. </productMenu>
  7232. <productMenu id="meshIntercom"
  7233. type="30" >
  7234. </productMenu>
  7235. <productMenu id="phone"
  7236. type="1" >
  7237. </productMenu>
  7238. <productMenu id="music"
  7239. type="1" >
  7240. </productMenu>
  7241. <productMenu id="fmradio"
  7242. type="1" >
  7243. </productMenu>
  7244. <productMenu id="deviceSetting"
  7245. type="1"
  7246. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHM/NS_OUTRUSHM_01.xml" >
  7247. </productMenu>
  7248. <productMenu id="quickGuide"
  7249. type="1"
  7250. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_FURY_1.0.0_en_220819.pdf"
  7251. size="1.12MB" >
  7252. </productMenu>
  7253. <productMenu id="userGuide"
  7254. type="1"
  7255. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_FURY_1.0.0_en_220822.pdf"
  7256. size="2.0MB" >
  7257. </productMenu>
  7258. <productMenu id="volume"
  7259. type="13" >
  7260. </productMenu>
  7261. <productMenu id="battery"
  7262. type="1" >
  7263. </productMenu>
  7264. <productID id="5600"
  7265. />
  7266. <productGroupable type="0"
  7267. />
  7268. </product>
  7269. <product id="ProRideEVO"
  7270. name="ProRide EVO"
  7271. series="Helmet"
  7272. latestVersion="1.1.2"
  7273. show = "1" >
  7274. <productMenu id="protocol"
  7275. type="0">
  7276. </productMenu>
  7277. <productMenu id="sip"
  7278. type="1" >
  7279. </productMenu>
  7280. <productMenu id="bluetoothIntercom"
  7281. type="1" >
  7282. </productMenu>
  7283. <productMenu id="phone"
  7284. type="2" >
  7285. </productMenu>
  7286. <productMenu id="fmradio"
  7287. type="3" >
  7288. </productMenu>
  7289. <productMenu id="deviceSetting"
  7290. type="1"
  7291. url="https://api.sena.com/support/SenaUtility/ProRide/DS_ProRideEVO_fm.xml" >
  7292. </productMenu>
  7293. <productMenu id="userGuide"
  7294. type="1"
  7295. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ProRide_EVO_1.0.0_kr_LK03(App).pdf"
  7296. size="778KB" >
  7297. </productMenu>
  7298. <productMenu id="connectGuide"
  7299. type="1"
  7300. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  7301. size="1.12MB" >
  7302. </productMenu>
  7303. <productID id="5426"
  7304. />
  7305. <productGroupable type="0"
  7306. />
  7307. </product>
  7308. <product id="OUTRUSHR"
  7309. name="OUTRUSH R"
  7310. series="Helmet"
  7311. latestVersion="2.1"
  7312. show = "1" >
  7313. <productMenu id="protocol"
  7314. type="3" >
  7315. </productMenu>
  7316. <productMenu id="sip"
  7317. type="1" >
  7318. </productMenu>
  7319. <productMenu id="bluetoothIntercom"
  7320. type="1" >
  7321. </productMenu>
  7322. <productMenu id="phone"
  7323. type="1" >
  7324. </productMenu>
  7325. <productMenu id="fmradio"
  7326. type="0" >
  7327. </productMenu>
  7328. <productMenu id="deviceSetting"
  7329. type="1"
  7330. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  7331. </productMenu>
  7332. <productMenu id="userGuide"
  7333. type="1"
  7334. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_2.0.0_en_250116.pdf"
  7335. size="1.14MB" >
  7336. </productMenu>
  7337. <productMenu id="connectGuide"
  7338. type="1"
  7339. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  7340. size="1.12MB" >
  7341. </productMenu>
  7342. <productID id="5440"
  7343. />
  7344. <productGroupable type="0"
  7345. />
  7346. </product>
  7347. <product id="OUTRUSHR"
  7348. name="OUTRUSH R"
  7349. series="Helmet"
  7350. latestVersion="1.1.4"
  7351. show = "-1" >
  7352. <productMenu id="protocol"
  7353. type="0">
  7354. </productMenu>
  7355. <productMenu id="sip"
  7356. type="1" >
  7357. </productMenu>
  7358. <productMenu id="bluetoothIntercom"
  7359. type="1" >
  7360. </productMenu>
  7361. <productMenu id="phone"
  7362. type="2" >
  7363. </productMenu>
  7364. <productMenu id="fmradio"
  7365. type="3" >
  7366. </productMenu>
  7367. <productMenu id="deviceSetting"
  7368. type="1"
  7369. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  7370. </productMenu>
  7371. <productMenu id="userGuide"
  7372. type="1"
  7373. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_1.3.0_en_250120.pdf"
  7374. size="660KB" >
  7375. </productMenu>
  7376. <productMenu id="connectGuide"
  7377. type="1"
  7378. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  7379. size="1.12MB" >
  7380. </productMenu>
  7381. <productID id="5424"
  7382. />
  7383. <productGroupable type="0"
  7384. />
  7385. </product>
  7386. <product id="OUTSTARS"
  7387. name="OUTSTAR S"
  7388. series="Helmet"
  7389. latestVersion="2.0.1"
  7390. show = "-1" >
  7391. <productMenu id="protocol"
  7392. type="3" >
  7393. </productMenu>
  7394. <productMenu id="sip"
  7395. type="1" >
  7396. </productMenu>
  7397. <productMenu id="bluetoothIntercom"
  7398. type="1" >
  7399. </productMenu>
  7400. <productMenu id="phone"
  7401. type="1" >
  7402. </productMenu>
  7403. <productMenu id="fmradio"
  7404. type="0" >
  7405. </productMenu>
  7406. <productMenu id="deviceSetting"
  7407. type="1"
  7408. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  7409. </productMenu>
  7410. <productMenu id="userGuide"
  7411. type="0"
  7412. url=""
  7413. size="1.14MB" >
  7414. </productMenu>
  7415. <productID id="5443"
  7416. />
  7417. <productGroupable type="0"
  7418. />
  7419. </product>
  7420. <product id="OUTSTARS"
  7421. name="OUTSTAR S"
  7422. series="Helmet"
  7423. latestVersion="1.1.4"
  7424. show = "1" >
  7425. <productMenu id="protocol"
  7426. type="0">
  7427. </productMenu>
  7428. <productMenu id="sip"
  7429. type="1" >
  7430. </productMenu>
  7431. <productMenu id="bluetoothIntercom"
  7432. type="1" >
  7433. </productMenu>
  7434. <productMenu id="phone"
  7435. type="2" >
  7436. </productMenu>
  7437. <productMenu id="fmradio"
  7438. type="3" >
  7439. </productMenu>
  7440. <productMenu id="deviceSetting"
  7441. type="1"
  7442. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  7443. </productMenu>
  7444. <productMenu id="quickGuide"
  7445. type="1"
  7446. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTSTAR_S_1.2.0_en_230704.pdf"
  7447. size="643KB" >
  7448. </productMenu>
  7449. <productMenu id="userGuide"
  7450. type="1"
  7451. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTSTAR_S_1.2.0_en_230704.pdf"
  7452. size="1.15MB" >
  7453. </productMenu>
  7454. <productMenu id="connectGuide"
  7455. type="1"
  7456. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  7457. size="1.12MB" >
  7458. </productMenu>
  7459. <productID id="5428"
  7460. />
  7461. <productGroupable type="0"
  7462. />
  7463. </product>
  7464. <product id="OUTRIDE"
  7465. name="OUTRIDE"
  7466. series="Helmet"
  7467. latestVersion="1.0.1"
  7468. show = "1" >
  7469. <productMenu id="protocol"
  7470. type="0">
  7471. </productMenu>
  7472. <productMenu id="sip"
  7473. type="1" >
  7474. </productMenu>
  7475. <productMenu id="bluetoothIntercom"
  7476. type="1" >
  7477. </productMenu>
  7478. <productMenu id="phone"
  7479. type="2" >
  7480. </productMenu>
  7481. <productMenu id="fmradio"
  7482. type="3" >
  7483. </productMenu>
  7484. <productMenu id="deviceSetting"
  7485. type="1"
  7486. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  7487. </productMenu>
  7488. <productMenu id="quickGuide"
  7489. type="1"
  7490. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTRIDE_1.1.1_en_240524.pdf"
  7491. size="643KB" >
  7492. </productMenu>
  7493. <productMenu id="userGuide"
  7494. type="1"
  7495. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRIDE_1.1.1_en_240524.pdf"
  7496. size="660KB" >
  7497. </productMenu>
  7498. <productMenu id="connectGuide"
  7499. type="1"
  7500. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  7501. size="1.12MB" >
  7502. </productMenu>
  7503. <productID id="5432"
  7504. />
  7505. <productGroupable type="0"
  7506. />
  7507. </product>
  7508. <product id="OUTFORCE"
  7509. name="OUTFORCE"
  7510. series="Helmet"
  7511. latestVersion="1.0.1"
  7512. show = "1" >
  7513. <productMenu id="protocol"
  7514. type="0">
  7515. </productMenu>
  7516. <productMenu id="sip"
  7517. type="1" >
  7518. </productMenu>
  7519. <productMenu id="bluetoothIntercom"
  7520. type="1" >
  7521. </productMenu>
  7522. <productMenu id="phone"
  7523. type="2" >
  7524. </productMenu>
  7525. <productMenu id="fmradio"
  7526. type="3" >
  7527. </productMenu>
  7528. <productMenu id="deviceSetting"
  7529. type="1"
  7530. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  7531. </productMenu>
  7532. <productMenu id="quickGuide"
  7533. type="1"
  7534. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTFORCE_1.1.1_en_240524.pdf"
  7535. size="643KB" >
  7536. </productMenu>
  7537. <productMenu id="userGuide"
  7538. type="1"
  7539. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTFORCE_1.1.1_en_240524.pdf"
  7540. size="660KB" >
  7541. </productMenu>
  7542. <productMenu id="connectGuide"
  7543. type="1"
  7544. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  7545. size="1.12MB" >
  7546. </productMenu>
  7547. <productID id="5430"
  7548. />
  7549. <productGroupable type="0"
  7550. />
  7551. </product>
  7552. <product id="Rumba"
  7553. name="Rumba"
  7554. series="30"
  7555. latestVersion="2.0"
  7556. show = "-1" >
  7557. <productMenu id="protocol"
  7558. type="3" >
  7559. </productMenu>
  7560. <productMenu id="sip"
  7561. type="1" >
  7562. </productMenu>
  7563. <productMenu id="bluetoothIntercom"
  7564. type="1" >
  7565. </productMenu>
  7566. <productMenu id="deviceSetting"
  7567. type="1"
  7568. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml" >
  7569. </productMenu>
  7570. <productMenu id="quickGuide"
  7571. type="1"
  7572. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_RUMBA_1.0.0_en_201006.pdf"
  7573. size="344KB" >
  7574. </productMenu>
  7575. <productMenu id="userGuide"
  7576. type="1"
  7577. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Rumba_1.0.0_en_201007.pdf"
  7578. size="1.14MB" >
  7579. </productMenu>
  7580. <productID id="6322"
  7581. />
  7582. <productGroupable type="0"
  7583. />
  7584. </product>
  7585. <product id="Savage"
  7586. name="Savage"
  7587. series="Helmet"
  7588. latestVersion="1.2.2"
  7589. show = "1" >
  7590. <productMenu id="protocol"
  7591. type="0">
  7592. </productMenu>
  7593. <productMenu id="sip"
  7594. type="1" >
  7595. </productMenu>
  7596. <productMenu id="bluetoothIntercom"
  7597. type="1" >
  7598. </productMenu>
  7599. <productMenu id="phone"
  7600. type="2" >
  7601. </productMenu>
  7602. <productMenu id="fmradio"
  7603. type="3" >
  7604. </productMenu>
  7605. <productMenu id="deviceSetting"
  7606. type="1"
  7607. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0200.xml" >
  7608. <productMenuURL version="1.9"
  7609. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0102.xml"
  7610. />
  7611. <productMenuURL version="1.1"
  7612. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage.xml"
  7613. />
  7614. </productMenu>
  7615. <productMenu id="quickGuide"
  7616. type="1"
  7617. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Savage_01.pdf"
  7618. size="796KB" >
  7619. </productMenu>
  7620. <productMenu id="userGuide"
  7621. type="1"
  7622. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_Savage_v1.2_01.pdf"
  7623. size="910KB" >
  7624. </productMenu>
  7625. <productMenu id="connectGuide"
  7626. type="1"
  7627. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  7628. size="1.12MB" >
  7629. </productMenu>
  7630. <productID id="5550"
  7631. />
  7632. <productGroupable type="0"
  7633. />
  7634. </product>
  7635. <product id="RECON"
  7636. name="RECON"
  7637. series="Helmet"
  7638. latestVersion="1.0"
  7639. latestVersionVoicePrompt="1.8"
  7640. show = "-1" >
  7641. <productMenu id="protocol"
  7642. type="2" >
  7643. </productMenu>
  7644. <productMenu id="ota"
  7645. type="2" >
  7646. <otaLanguages>
  7647. <otaLanguage
  7648. id="0"
  7649. name="English"
  7650. package="0"
  7651. />
  7652. <otaLanguage
  7653. id="0"
  7654. name="French"
  7655. package="1"
  7656. />
  7657. <otaLanguage
  7658. id="0"
  7659. name="Spanish"
  7660. package="2"
  7661. />
  7662. <otaLanguage
  7663. id="0"
  7664. name="Italian"
  7665. package="3"
  7666. />
  7667. <otaLanguage
  7668. id="0"
  7669. name="German"
  7670. package="4"
  7671. />
  7672. <otaLanguage
  7673. id="0"
  7674. name="Dutch"
  7675. package="5"
  7676. />
  7677. <otaLanguage
  7678. id="0"
  7679. name="Russian"
  7680. package="6"
  7681. />
  7682. <otaLanguage
  7683. id="0"
  7684. name="Chinese"
  7685. package="7"
  7686. />
  7687. <otaLanguage
  7688. id="0"
  7689. name="Korean"
  7690. package="8"
  7691. />
  7692. <otaLanguage
  7693. id="0"
  7694. name="Japanese"
  7695. package="9"
  7696. />
  7697. <otaLanguage
  7698. id="0"
  7699. name="Finnish"
  7700. package="10"
  7701. />
  7702. <otaLanguage
  7703. id="0"
  7704. name="Polish"
  7705. package="11"
  7706. />
  7707. </otaLanguages>
  7708. <otaPackages>
  7709. <package
  7710. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4.img"
  7711. size="5183988"
  7712. />
  7713. <package
  7714. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-fr-FR.img"
  7715. size="5183988"
  7716. />
  7717. <package
  7718. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-es-ES.img"
  7719. size="5183988"
  7720. />
  7721. <package
  7722. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-it-IT.img"
  7723. size="5183988"
  7724. />
  7725. <package
  7726. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-de-DE.img"
  7727. size="5183988"
  7728. />
  7729. <package
  7730. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-nl-NL.img"
  7731. size="5183988"
  7732. />
  7733. <package
  7734. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-ru-RU.img"
  7735. size="5183988"
  7736. />
  7737. <package
  7738. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-cmn-CN.img"
  7739. size="5183988"
  7740. />
  7741. <package
  7742. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-ko-KR.img"
  7743. size="5183988"
  7744. />
  7745. <package
  7746. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-ja-JP.img"
  7747. size="5183988"
  7748. />
  7749. <package
  7750. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-fi-FI.img"
  7751. size="5183988"
  7752. />
  7753. <package
  7754. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-pl-PL.img"
  7755. size="5183988"
  7756. />
  7757. </otaPackages>
  7758. </productMenu>
  7759. <productMenu id="wa"
  7760. type="0" >
  7761. </productMenu>
  7762. <productMenu id="led"
  7763. type="5" >
  7764. </productMenu>
  7765. <productMenu id="led+"
  7766. type="2"
  7767. url="1" >
  7768. </productMenu>
  7769. <productMenu id="meshIntercom+"
  7770. type="3"
  7771. url="2" >
  7772. </productMenu>
  7773. <productMenu id="waveIntercom"
  7774. type="1" >
  7775. </productMenu>
  7776. <productMenu id="fmradio"
  7777. type="0" >
  7778. </productMenu>
  7779. <productMenu id="phone"
  7780. type="1" >
  7781. </productMenu>
  7782. <productMenu id="music"
  7783. type="1" >
  7784. </productMenu>
  7785. <productMenu id="musicSharing"
  7786. type="0" >
  7787. </productMenu>
  7788. <productMenu id="deviceSetting"
  7789. type="1"
  7790. url="https://api.sena.com/support/SenaNeoApp/RECON/NS_RECON_01.xml" >
  7791. </productMenu>
  7792. <productMenu id="quickGuide"
  7793. type="0"
  7794. url=""
  7795. size="1.12MB" >
  7796. </productMenu>
  7797. <productMenu id="userGuide"
  7798. type="1"
  7799. url=""
  7800. size="2.28MB" >
  7801. </productMenu>
  7802. <productMenu id="videoGuide"
  7803. type="0"
  7804. url=""
  7805. size="3.41MB" >
  7806. </productMenu>
  7807. <productMenu id="volume"
  7808. type="16" >
  7809. </productMenu>
  7810. <productMenu id="volume+"
  7811. type="2"
  7812. url="0x6004" >
  7813. </productMenu>
  7814. <productMenu id="battery"
  7815. type="1" >
  7816. </productMenu>
  7817. <productID id="6A1D"
  7818. />
  7819. <productGroupable type="0"
  7820. />
  7821. </product>
  7822. <product id="SPECTER"
  7823. name="SPECTER"
  7824. series="Helmet"
  7825. latestVersion="1.0.9"
  7826. latestVersionVoicePrompt="1.7"
  7827. show = "1" >
  7828. <productMenu id="protocol"
  7829. type="2" >
  7830. </productMenu>
  7831. <productMenu id="ota"
  7832. type="2" >
  7833. <otaLanguages>
  7834. <otaLanguage
  7835. id="0"
  7836. name="English"
  7837. package="0"
  7838. />
  7839. <otaLanguage
  7840. id="0"
  7841. name="French"
  7842. package="1"
  7843. />
  7844. <otaLanguage
  7845. id="0"
  7846. name="Spanish"
  7847. package="2"
  7848. />
  7849. <otaLanguage
  7850. id="0"
  7851. name="Italian"
  7852. package="3"
  7853. />
  7854. <otaLanguage
  7855. id="0"
  7856. name="German"
  7857. package="4"
  7858. />
  7859. <otaLanguage
  7860. id="0"
  7861. name="Dutch"
  7862. package="5"
  7863. />
  7864. <otaLanguage
  7865. id="0"
  7866. name="Russian"
  7867. package="6"
  7868. />
  7869. <otaLanguage
  7870. id="0"
  7871. name="Chinese"
  7872. package="7"
  7873. />
  7874. <otaLanguage
  7875. id="0"
  7876. name="Korean"
  7877. package="8"
  7878. />
  7879. <otaLanguage
  7880. id="0"
  7881. name="Japanese"
  7882. package="9"
  7883. />
  7884. <otaLanguage
  7885. id="0"
  7886. name="Finnish"
  7887. package="10"
  7888. />
  7889. <otaLanguage
  7890. id="0"
  7891. name="Polish"
  7892. package="11"
  7893. />
  7894. </otaLanguages>
  7895. <otaPackages>
  7896. <package
  7897. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0.img"
  7898. size="5183988"
  7899. />
  7900. <package
  7901. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-fr-FR.img"
  7902. size="5183988"
  7903. />
  7904. <package
  7905. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-es-ES.img"
  7906. size="5183988"
  7907. />
  7908. <package
  7909. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-it-IT.img"
  7910. size="5183988"
  7911. />
  7912. <package
  7913. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-de-DE.img"
  7914. size="5183988"
  7915. />
  7916. <package
  7917. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-nl-NL.img"
  7918. size="5183988"
  7919. />
  7920. <package
  7921. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-ru-RU.img"
  7922. size="5183988"
  7923. />
  7924. <package
  7925. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-cmn-CN.img"
  7926. size="5183988"
  7927. />
  7928. <package
  7929. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-ko-KR.img"
  7930. size="5183988"
  7931. />
  7932. <package
  7933. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-ja-JP.img"
  7934. size="5183988"
  7935. />
  7936. <package
  7937. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-fi-FI.img"
  7938. size="5183988"
  7939. />
  7940. <package
  7941. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-pl-PL.img"
  7942. size="5183988"
  7943. />
  7944. </otaPackages>
  7945. </productMenu>
  7946. <productMenu id="wa"
  7947. type="0" >
  7948. </productMenu>
  7949. <productMenu id="led"
  7950. type="5" >
  7951. </productMenu>
  7952. <productMenu id="led+"
  7953. type="2"
  7954. url="1" >
  7955. </productMenu>
  7956. <productMenu id="meshIntercom+"
  7957. type="3"
  7958. url="2" >
  7959. </productMenu>
  7960. <productMenu id="waveIntercom"
  7961. type="1" >
  7962. </productMenu>
  7963. <productMenu id="fmradio"
  7964. type="0" >
  7965. </productMenu>
  7966. <productMenu id="phone"
  7967. type="1" >
  7968. </productMenu>
  7969. <productMenu id="music"
  7970. type="1" >
  7971. </productMenu>
  7972. <productMenu id="musicSharing"
  7973. type="0" >
  7974. </productMenu>
  7975. <productMenu id="deviceSetting"
  7976. type="1"
  7977. url="https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_02.xml" >
  7978. <productMenuURL version="1.0.10"
  7979. url="https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_01.xml"
  7980. />
  7981. <productMenuURL version="1.0.4"
  7982. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  7983. />
  7984. </productMenu>
  7985. <productMenu id="quickGuide"
  7986. type="0"
  7987. url=""
  7988. size="1.12MB" >
  7989. </productMenu>
  7990. <productMenu id="userGuide"
  7991. type="1"
  7992. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPECTER_1.0.0_en_251201.pdf"
  7993. size="2.0MB" >
  7994. </productMenu>
  7995. <productMenu id="videoGuide"
  7996. type="0"
  7997. url=""
  7998. size="3.41MB" >
  7999. </productMenu>
  8000. <productMenu id="connectGuide"
  8001. type="1"
  8002. url="https://api.sena.com/support/ConnectGuide/joymulti_joy5_init_specter.json"
  8003. size="1.12MB" >
  8004. </productMenu>
  8005. <productMenu id="volume"
  8006. type="16" >
  8007. </productMenu>
  8008. <productMenu id="volume+"
  8009. type="2"
  8010. url="0x6004" >
  8011. </productMenu>
  8012. <productMenu id="battery"
  8013. type="1" >
  8014. </productMenu>
  8015. <productID id="6A11"
  8016. />
  8017. <productGroupable type="0"
  8018. />
  8019. </product>
  8020. <product id="SPECTER"
  8021. name="SPECTER"
  8022. series="Helmet"
  8023. latestVersion="1.0.9"
  8024. latestVersionVoicePrompt="1.7"
  8025. show = "-1" >
  8026. <productMenu id="protocol"
  8027. type="2" >
  8028. </productMenu>
  8029. <productMenu id="ota"
  8030. type="2" >
  8031. <otaLanguages>
  8032. <otaLanguage
  8033. id="0"
  8034. name="English"
  8035. package="0"
  8036. />
  8037. <otaLanguage
  8038. id="0"
  8039. name="French"
  8040. package="1"
  8041. />
  8042. <otaLanguage
  8043. id="0"
  8044. name="Spanish"
  8045. package="2"
  8046. />
  8047. <otaLanguage
  8048. id="0"
  8049. name="Italian"
  8050. package="3"
  8051. />
  8052. <otaLanguage
  8053. id="0"
  8054. name="German"
  8055. package="4"
  8056. />
  8057. <otaLanguage
  8058. id="0"
  8059. name="Dutch"
  8060. package="5"
  8061. />
  8062. <otaLanguage
  8063. id="0"
  8064. name="Russian"
  8065. package="6"
  8066. />
  8067. <otaLanguage
  8068. id="0"
  8069. name="Chinese"
  8070. package="7"
  8071. />
  8072. <otaLanguage
  8073. id="0"
  8074. name="Korean"
  8075. package="8"
  8076. />
  8077. <otaLanguage
  8078. id="0"
  8079. name="Japanese"
  8080. package="9"
  8081. />
  8082. <otaLanguage
  8083. id="0"
  8084. name="Finnish"
  8085. package="10"
  8086. />
  8087. <otaLanguage
  8088. id="0"
  8089. name="Polish"
  8090. package="11"
  8091. />
  8092. </otaLanguages>
  8093. <otaPackages>
  8094. <package
  8095. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0.img"
  8096. size="5183988"
  8097. />
  8098. <package
  8099. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-fr-FR.img"
  8100. size="5183988"
  8101. />
  8102. <package
  8103. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-es-ES.img"
  8104. size="5183988"
  8105. />
  8106. <package
  8107. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-it-IT.img"
  8108. size="5183988"
  8109. />
  8110. <package
  8111. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-de-DE.img"
  8112. size="5183988"
  8113. />
  8114. <package
  8115. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-nl-NL.img"
  8116. size="5183988"
  8117. />
  8118. <package
  8119. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-ru-RU.img"
  8120. size="5183988"
  8121. />
  8122. <package
  8123. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-cmn-CN.img"
  8124. size="5183988"
  8125. />
  8126. <package
  8127. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-ko-KR.img"
  8128. size="5183988"
  8129. />
  8130. <package
  8131. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-ja-JP.img"
  8132. size="5183988"
  8133. />
  8134. <package
  8135. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-fi-FI.img"
  8136. size="5183988"
  8137. />
  8138. <package
  8139. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-pl-PL.img"
  8140. size="5183988"
  8141. />
  8142. </otaPackages>
  8143. </productMenu>
  8144. <productMenu id="wa"
  8145. type="0" >
  8146. </productMenu>
  8147. <productMenu id="led"
  8148. type="5" >
  8149. </productMenu>
  8150. <productMenu id="led+"
  8151. type="2"
  8152. url="1" >
  8153. </productMenu>
  8154. <productMenu id="meshIntercom+"
  8155. type="3"
  8156. url="2" >
  8157. </productMenu>
  8158. <productMenu id="waveIntercom"
  8159. type="1" >
  8160. </productMenu>
  8161. <productMenu id="fmradio"
  8162. type="0" >
  8163. </productMenu>
  8164. <productMenu id="phone"
  8165. type="1" >
  8166. </productMenu>
  8167. <productMenu id="music"
  8168. type="1" >
  8169. </productMenu>
  8170. <productMenu id="musicSharing"
  8171. type="0" >
  8172. </productMenu>
  8173. <productMenu id="deviceSetting"
  8174. type="1"
  8175. url="https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_02.xml" ><!--https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_01-->
  8176. <productMenuURL version="1.0.10"
  8177. url="https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_01.xml"
  8178. />
  8179. <productMenuURL version="1.0.4"
  8180. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  8181. />
  8182. <productMenuURL version="1.0"
  8183. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  8184. />
  8185. </productMenu>
  8186. <productMenu id="quickGuide"
  8187. type="0"
  8188. url=""
  8189. size="1.12MB" >
  8190. </productMenu>
  8191. <productMenu id="userGuide"
  8192. type="1"
  8193. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPECTER_1.0.0_en_251201.pdf"
  8194. size="2.0MB" >
  8195. </productMenu>
  8196. <productMenu id="videoGuide"
  8197. type="0"
  8198. url=""
  8199. size="3.41MB" >
  8200. </productMenu>
  8201. <productMenu id="connectGuide"
  8202. type="1"
  8203. url="https://api.sena.com/support/ConnectGuide/joymulti_joy5_init_specter.json"
  8204. size="1.12MB" >
  8205. </productMenu>
  8206. <productMenu id="volume"
  8207. type="16" >
  8208. </productMenu>
  8209. <productMenu id="volume+"
  8210. type="2"
  8211. url="0x6004" >
  8212. </productMenu>
  8213. <productMenu id="battery"
  8214. type="1" >
  8215. </productMenu>
  8216. <productID id="6A0A"
  8217. />
  8218. <productGroupable type="0"
  8219. />
  8220. </product>
  8221. <product id="OUTLANDER"
  8222. name="OUTLANDER"
  8223. series="Helmet"
  8224. latestVersion="1.0.9"
  8225. latestVersionVoicePrompt="1.7"
  8226. show = "1" >
  8227. <productMenu id="protocol"
  8228. type="2" >
  8229. </productMenu>
  8230. <productMenu id="ota"
  8231. type="2" >
  8232. <otaLanguages>
  8233. <otaLanguage
  8234. id="0"
  8235. name="English"
  8236. package="0"
  8237. />
  8238. <otaLanguage
  8239. id="0"
  8240. name="French"
  8241. package="1"
  8242. />
  8243. <otaLanguage
  8244. id="0"
  8245. name="Spanish"
  8246. package="2"
  8247. />
  8248. <otaLanguage
  8249. id="0"
  8250. name="Italian"
  8251. package="3"
  8252. />
  8253. <otaLanguage
  8254. id="0"
  8255. name="German"
  8256. package="4"
  8257. />
  8258. <otaLanguage
  8259. id="0"
  8260. name="Dutch"
  8261. package="5"
  8262. />
  8263. <otaLanguage
  8264. id="0"
  8265. name="Russian"
  8266. package="6"
  8267. />
  8268. <otaLanguage
  8269. id="0"
  8270. name="Chinese"
  8271. package="7"
  8272. />
  8273. <otaLanguage
  8274. id="0"
  8275. name="Korean"
  8276. package="8"
  8277. />
  8278. <otaLanguage
  8279. id="0"
  8280. name="Japanese"
  8281. package="9"
  8282. />
  8283. <otaLanguage
  8284. id="0"
  8285. name="Finnish"
  8286. package="10"
  8287. />
  8288. <otaLanguage
  8289. id="0"
  8290. name="Polish"
  8291. package="11"
  8292. />
  8293. </otaLanguages>
  8294. <otaPackages>
  8295. <package
  8296. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0.img"
  8297. size="5183988"
  8298. />
  8299. <package
  8300. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-fr-FR.img"
  8301. size="5183988"
  8302. />
  8303. <package
  8304. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-es-ES.img"
  8305. size="5183988"
  8306. />
  8307. <package
  8308. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-it-IT.img"
  8309. size="5183988"
  8310. />
  8311. <package
  8312. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-de-DE.img"
  8313. size="5183988"
  8314. />
  8315. <package
  8316. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-nl-NL.img"
  8317. size="5183988"
  8318. />
  8319. <package
  8320. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-ru-RU.img"
  8321. size="5183988"
  8322. />
  8323. <package
  8324. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-cmn-CN.img"
  8325. size="5183988"
  8326. />
  8327. <package
  8328. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-ko-KR.img"
  8329. size="5183988"
  8330. />
  8331. <package
  8332. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-ja-JP.img"
  8333. size="5183988"
  8334. />
  8335. <package
  8336. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-fi-FI.img"
  8337. size="5183988"
  8338. />
  8339. <package
  8340. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-pl-PL.img"
  8341. size="5183988"
  8342. />
  8343. </otaPackages>
  8344. </productMenu>
  8345. <productMenu id="wa"
  8346. type="0" >
  8347. </productMenu>
  8348. <productMenu id="led"
  8349. type="5" >
  8350. </productMenu>
  8351. <productMenu id="led+"
  8352. type="2"
  8353. url="1" >
  8354. </productMenu>
  8355. <productMenu id="meshIntercom+"
  8356. type="3"
  8357. url="2" >
  8358. </productMenu>
  8359. <productMenu id="waveIntercom"
  8360. type="1" >
  8361. </productMenu>
  8362. <productMenu id="fmradio"
  8363. type="0" >
  8364. </productMenu>
  8365. <productMenu id="phone"
  8366. type="1" >
  8367. </productMenu>
  8368. <productMenu id="music"
  8369. type="1" >
  8370. </productMenu>
  8371. <productMenu id="musicSharing"
  8372. type="0" >
  8373. </productMenu>
  8374. <productMenu id="deviceSetting"
  8375. type="1"
  8376. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_06.xml" >
  8377. <productMenuURL version="1.0.10"
  8378. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_05.xml"
  8379. />
  8380. <productMenuURL version="1.0.4"
  8381. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml"
  8382. />
  8383. </productMenu>
  8384. <productMenu id="quickGuide"
  8385. type="0"
  8386. url=""
  8387. size="1.12MB" >
  8388. </productMenu>
  8389. <productMenu id="userGuide"
  8390. type="1"
  8391. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTLANDER_1.0.0_en_251210.pdf"
  8392. size="2.0MB" >
  8393. </productMenu>
  8394. <productMenu id="connectGuide"
  8395. type="1"
  8396. url="https://api.sena.com/support/ConnectGuide/joymulti_joy5_init_outlander.json"
  8397. size="1.12MB" >
  8398. </productMenu>
  8399. <productMenu id="videoGuide"
  8400. type="0"
  8401. url=""
  8402. size="3.41MB" >
  8403. </productMenu>
  8404. <productMenu id="volume"
  8405. type="16" >
  8406. </productMenu>
  8407. <productMenu id="volume+"
  8408. type="2"
  8409. url="0x6004" >
  8410. </productMenu>
  8411. <productMenu id="battery"
  8412. type="1" >
  8413. </productMenu>
  8414. <productID id="6A05"
  8415. />
  8416. <productGroupable type="0"
  8417. />
  8418. </product>
  8419. <product id="OUTRUSH2"
  8420. name="OUTRUSH 2"
  8421. series="Helmet"
  8422. latestVersion="1.0.3"
  8423. latestVersionVoicePrompt="1.6"
  8424. show = "1" >
  8425. <productMenu id="protocol"
  8426. type="2" >
  8427. </productMenu>
  8428. <productMenu id="alexa"
  8429. type="0" >
  8430. </productMenu>
  8431. <productMenu id="ota"
  8432. type="2" >
  8433. <otaPackages>
  8434. <package
  8435. url="https://api.sena.com/support/OTA/Motorcycles/OUTRUSH2/OUTRUSH_2-v1.0.3-build0.img"
  8436. size="2945812"
  8437. />
  8438. </otaPackages>
  8439. </productMenu>
  8440. <productMenu id="meshIntercom+"
  8441. type="3"
  8442. url="2" >
  8443. </productMenu>
  8444. <productMenu id="waveIntercom"
  8445. type="1" >
  8446. </productMenu>
  8447. <productMenu id="phone"
  8448. type="1" >
  8449. </productMenu>
  8450. <productMenu id="music"
  8451. type="1" >
  8452. </productMenu>
  8453. <productMenu id="musicSharing"
  8454. type="0" >
  8455. </productMenu>
  8456. <productMenu id="deviceSetting"
  8457. type="1"
  8458. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_03.xml" >
  8459. <productMenuURL version="1.0"
  8460. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_01.xml"
  8461. />
  8462. </productMenu>
  8463. <productMenu id="quickGuide"
  8464. type="0"
  8465. url=""
  8466. size="1.12MB" >
  8467. </productMenu>
  8468. <productMenu id="userGuide"
  8469. type="1"
  8470. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_2_1.0.1_en_260414.pdf"
  8471. size="2.0MB" >
  8472. </productMenu>
  8473. <productMenu id="connectGuide"
  8474. type="1"
  8475. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_outrush2.json"
  8476. size="1.12MB" >
  8477. </productMenu>
  8478. <productMenu id="volume"
  8479. type="12" >
  8480. </productMenu>
  8481. <productMenu id="battery"
  8482. type="1" >
  8483. </productMenu>
  8484. <productID id="684A"
  8485. />
  8486. <productGroupable type="0"
  8487. />
  8488. </product>
  8489. <product id="OUTSTAR2"
  8490. name="OUTSTAR 2"
  8491. series="Helmet"
  8492. latestVersion="1.0.2"
  8493. latestVersionVoicePrompt="1.6"
  8494. show = "1" >
  8495. <productMenu id="protocol"
  8496. type="2" >
  8497. </productMenu>
  8498. <productMenu id="alexa"
  8499. type="0" >
  8500. </productMenu>
  8501. <productMenu id="ota"
  8502. type="2" >
  8503. <otaPackages>
  8504. <package
  8505. url="https://api.sena.com/support/OTA/Motorcycles/OUTSTAR2/OUTSTAR_2-v1.0.2-build0.img"
  8506. size="2945812"
  8507. />
  8508. </otaPackages>
  8509. </productMenu>
  8510. <productMenu id="meshIntercom+"
  8511. type="3"
  8512. url="2" >
  8513. </productMenu>
  8514. <productMenu id="waveIntercom"
  8515. type="1" >
  8516. </productMenu>
  8517. <productMenu id="phone"
  8518. type="1" >
  8519. </productMenu>
  8520. <productMenu id="music"
  8521. type="1" >
  8522. </productMenu>
  8523. <productMenu id="musicSharing"
  8524. type="0" >
  8525. </productMenu>
  8526. <productMenu id="deviceSetting"
  8527. type="1"
  8528. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_03.xml" >
  8529. </productMenu>
  8530. <productMenu id="quickGuide"
  8531. type="0"
  8532. url=""
  8533. size="1.12MB" >
  8534. </productMenu>
  8535. <productMenu id="userGuide"
  8536. type="1"
  8537. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTSTAR_2_1.0.1_en_260416.pdf"
  8538. size="2.0MB" >
  8539. </productMenu>
  8540. <productMenu id="connectGuide"
  8541. type="1"
  8542. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_outstar2.json"
  8543. size="1.12MB" >
  8544. </productMenu>
  8545. <productMenu id="volume"
  8546. type="12" >
  8547. </productMenu>
  8548. <productMenu id="battery"
  8549. type="1" >
  8550. </productMenu>
  8551. <productID id="684B"
  8552. />
  8553. <productGroupable type="0"
  8554. />
  8555. </product>
  8556. <product id="SURGE"
  8557. name="SURGE"
  8558. series="Helmet"
  8559. latestVersion="1.2"
  8560. latestVersionVoicePrompt="1.3"
  8561. show = "1" >
  8562. <productMenu id="protocol"
  8563. type="2" >
  8564. </productMenu>
  8565. <productMenu id="alexa"
  8566. type="0" >
  8567. </productMenu>
  8568. <productMenu id="ota"
  8569. type="2" >
  8570. <otaPackages>
  8571. <package
  8572. url="https://api.sena.com/support/OTA/SURGE/SURGE-v1.2-build0.img"
  8573. size="2945812"
  8574. />
  8575. </otaPackages>
  8576. </productMenu>
  8577. <productMenu id="meshIntercom"
  8578. type="30" >
  8579. </productMenu>
  8580. <productMenu id="meshIntercom+"
  8581. type="3"
  8582. url="2" >
  8583. <productMenuType version="1.0.1"
  8584. type="2"
  8585. />
  8586. </productMenu>
  8587. <productMenu id="waveIntercom"
  8588. type="1" >
  8589. <productMenuType version="1.0.9"
  8590. type="0"
  8591. />
  8592. </productMenu>
  8593. <productMenu id="phone"
  8594. type="1" >
  8595. </productMenu>
  8596. <productMenu id="music"
  8597. type="1" >
  8598. </productMenu>
  8599. <productMenu id="musicSharing"
  8600. type="0" >
  8601. </productMenu>
  8602. <productMenu id="deviceSetting"
  8603. type="1"
  8604. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA_02.xml" >
  8605. <productMenuURL version="1.1.9"
  8606. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA.xml"
  8607. />
  8608. <productMenuURL version="1.0.1"
  8609. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  8610. />
  8611. </productMenu>
  8612. <productMenu id="quickGuide"
  8613. type="0"
  8614. url=""
  8615. size="1.12MB" >
  8616. </productMenu>
  8617. <productMenu id="userGuide"
  8618. type="1"
  8619. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SURGE_1.1.1_en_251014.pdf"
  8620. size="2.0MB" >
  8621. </productMenu>
  8622. <productMenu id="volume"
  8623. type="12" >
  8624. </productMenu>
  8625. <productMenu id="battery"
  8626. type="1" >
  8627. </productMenu>
  8628. <productID id="6840"
  8629. />
  8630. <productGroupable type="0"
  8631. />
  8632. </product>
  8633. <product id="Cavalry2"
  8634. name="Cavalry 2"
  8635. series="Helmet"
  8636. latestVersion="1.2"
  8637. latestVersionVoicePrompt="1.3"
  8638. show = "1" >
  8639. <productMenu id="protocol"
  8640. type="2" >
  8641. </productMenu>
  8642. <productMenu id="alexa"
  8643. type="0" >
  8644. </productMenu>
  8645. <productMenu id="ota"
  8646. type="2" >
  8647. <otaPackages>
  8648. <package
  8649. url="https://api.sena.com/support/OTA/Cavalry2/CAVALRY_2-v1.2-build0.img"
  8650. size="3144148"
  8651. />
  8652. </otaPackages>
  8653. </productMenu>
  8654. <productMenu id="wa"
  8655. type="0" >
  8656. </productMenu>
  8657. <productMenu id="meshIntercom"
  8658. type="30" >
  8659. </productMenu>
  8660. <productMenu id="meshIntercom+"
  8661. type="3"
  8662. url="2" >
  8663. <productMenuType version="1.0"
  8664. type="2"
  8665. />
  8666. </productMenu>
  8667. <productMenu id="waveIntercom"
  8668. type="1" >
  8669. <productMenuType version="1.0.9"
  8670. type="0"
  8671. />
  8672. </productMenu>
  8673. <productMenu id="phone"
  8674. type="1" >
  8675. </productMenu>
  8676. <productMenu id="music"
  8677. type="1" >
  8678. </productMenu>
  8679. <productMenu id="musicSharing"
  8680. type="0" >
  8681. </productMenu>
  8682. <productMenu id="deviceSetting"
  8683. type="1"
  8684. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA_05.xml" >
  8685. <productMenuURL version="1.1.9"
  8686. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA_03.xml"
  8687. />
  8688. <productMenuURL version="1.0"
  8689. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA.xml"
  8690. />
  8691. </productMenu>
  8692. <productMenu id="quickGuide"
  8693. type="0"
  8694. url=""
  8695. size="1.12MB" >
  8696. </productMenu>
  8697. <productMenu id="userGuide"
  8698. type="1"
  8699. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_CAVALRY_2_1.2.1_en_251013.pdf"
  8700. size="2.0MB" >
  8701. </productMenu>
  8702. <productMenu id="connectGuide"
  8703. type="1"
  8704. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init.json"
  8705. size="1.12MB" >
  8706. </productMenu>
  8707. <productMenu id="volume"
  8708. type="12" >
  8709. </productMenu>
  8710. <productMenu id="battery"
  8711. type="1" >
  8712. </productMenu>
  8713. <productID id="6839"
  8714. />
  8715. <productGroupable type="0"
  8716. />
  8717. </product>
  8718. <product id="Cavalry"
  8719. name="Cavalry"
  8720. series="Helmet"
  8721. latestVersion="1.2.2"
  8722. show = "1" >
  8723. <productMenu id="protocol"
  8724. type="0">
  8725. </productMenu>
  8726. <productMenu id="sip"
  8727. type="1" >
  8728. </productMenu>
  8729. <productMenu id="bluetoothIntercom"
  8730. type="1" >
  8731. </productMenu>
  8732. <productMenu id="phone"
  8733. type="2" >
  8734. </productMenu>
  8735. <productMenu id="fmradio"
  8736. type="3" >
  8737. </productMenu>
  8738. <productMenu id="deviceSetting"
  8739. type="1"
  8740. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry_v0200.xml" >
  8741. <productMenuURL version="1.9"
  8742. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml"
  8743. />
  8744. <productMenuURL version="1.0.1"
  8745. url="https://api.sena.com/support/SenaUtility/Cavalry/DeviceSetting_Cavalry.xml"
  8746. />
  8747. </productMenu>
  8748. <productMenu id="quickGuide"
  8749. type="1"
  8750. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Cavalry_01.pdf"
  8751. size="795KB" >
  8752. </productMenu>
  8753. <productMenu id="userGuide"
  8754. type="1"
  8755. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_v1.1_01.pdf"
  8756. size="1.87MB" >
  8757. </productMenu>
  8758. <productMenu id="connectGuide"
  8759. type="1"
  8760. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  8761. size="1.12MB" >
  8762. </productMenu>
  8763. <productID id="5524"
  8764. />
  8765. <productGroupable type="0"
  8766. />
  8767. </product>
  8768. <product id="Cavalry_Lite"
  8769. name="Cavalry Lite"
  8770. series="Helmet"
  8771. latestVersion="1.0.2"
  8772. show = "1" >
  8773. <productMenu id="protocol"
  8774. type="0">
  8775. </productMenu>
  8776. <productMenu id="sip"
  8777. type="1" >
  8778. </productMenu>
  8779. <productMenu id="bluetoothIntercom"
  8780. type="1" >
  8781. </productMenu>
  8782. <productMenu id="phone"
  8783. type="2" >
  8784. </productMenu>
  8785. <productMenu id="fmradio"
  8786. type="3" >
  8787. </productMenu>
  8788. <productMenu id="deviceSetting"
  8789. type="1"
  8790. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  8791. </productMenu>
  8792. <productMenu id="userGuide"
  8793. type="1"
  8794. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_Lite_v1.0_01.pdf"
  8795. size="1.74MB" >
  8796. </productMenu>
  8797. <productMenu id="connectGuide"
  8798. type="1"
  8799. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  8800. size="1.12MB" >
  8801. </productMenu>
  8802. <productID id="5536"
  8803. />
  8804. <productGroupable type="0"
  8805. />
  8806. </product>
  8807. <product id="VORTEX"
  8808. name="VORTEX"
  8809. series="VORTEX"
  8810. latestVersion="1.0.2"
  8811. latestVersionVoicePrompt="1.0"
  8812. show = "1" >
  8813. <productMenu id="protocol"
  8814. type="2" >
  8815. </productMenu>
  8816. <productMenu id="warranty"
  8817. type="1" >
  8818. </productMenu>
  8819. <productMenu id="serialNumber"
  8820. type="1" >
  8821. </productMenu>
  8822. <productMenu id="ota"
  8823. type="2" >
  8824. <otaLanguages>
  8825. <otaLanguage
  8826. id="0"
  8827. name="English"
  8828. package="0"
  8829. />
  8830. <otaLanguage
  8831. id="0"
  8832. name="French"
  8833. package="1"
  8834. />
  8835. <otaLanguage
  8836. id="0"
  8837. name="Spanish"
  8838. package="2"
  8839. />
  8840. <otaLanguage
  8841. id="0"
  8842. name="Italian"
  8843. package="3"
  8844. />
  8845. <otaLanguage
  8846. id="0"
  8847. name="German"
  8848. package="4"
  8849. />
  8850. <otaLanguage
  8851. id="0"
  8852. name="Dutch"
  8853. package="5"
  8854. />
  8855. <otaLanguage
  8856. id="0"
  8857. name="Russian"
  8858. package="6"
  8859. />
  8860. <otaLanguage
  8861. id="0"
  8862. name="Chinese"
  8863. package="7"
  8864. />
  8865. <otaLanguage
  8866. id="0"
  8867. name="Korean"
  8868. package="8"
  8869. />
  8870. <otaLanguage
  8871. id="0"
  8872. name="Japanese"
  8873. package="9"
  8874. />
  8875. <otaLanguage
  8876. id="0"
  8877. name="Finnish"
  8878. package="10"
  8879. />
  8880. <otaLanguage
  8881. id="0"
  8882. name="Polish"
  8883. package="11"
  8884. />
  8885. </otaLanguages>
  8886. <otaPackages>
  8887. <package
  8888. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1.img"
  8889. size="5183988"
  8890. />
  8891. <package
  8892. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-fr-FR.img"
  8893. size="5183988"
  8894. />
  8895. <package
  8896. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-es-ES.img"
  8897. size="5183988"
  8898. />
  8899. <package
  8900. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-it-IT.img"
  8901. size="5183988"
  8902. />
  8903. <package
  8904. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-de-DE.img"
  8905. size="5183988"
  8906. />
  8907. <package
  8908. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-nl-NL.img"
  8909. size="5183988"
  8910. />
  8911. <package
  8912. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-ru-RU.img"
  8913. size="5183988"
  8914. />
  8915. <package
  8916. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-cmn-CN.img"
  8917. size="5183988"
  8918. />
  8919. <package
  8920. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-ko-KR.img"
  8921. size="5183988"
  8922. />
  8923. <package
  8924. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-ja-JP.img"
  8925. size="5183988"
  8926. />
  8927. <package
  8928. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-fi-FI.img"
  8929. size="5183988"
  8930. />
  8931. <package
  8932. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-pl-PL.img"
  8933. size="5183988"
  8934. />
  8935. </otaPackages>
  8936. </productMenu>
  8937. <productMenu id="sip"
  8938. type="1" >
  8939. </productMenu>
  8940. <productMenu id="bluetoothIntercom"
  8941. type="1" >
  8942. </productMenu>
  8943. <productMenu id="phone"
  8944. type="1" >
  8945. </productMenu>
  8946. <productMenu id="music"
  8947. type="1" >
  8948. </productMenu>
  8949. <productMenu id="fmradio"
  8950. type="1"
  8951. url="1" >
  8952. </productMenu>
  8953. <productMenu id="deviceSetting"
  8954. type="1"
  8955. url="https://api.sena.com/support/SenaNeoApp/VORTEX/NS_VORTEX_02.xml" >
  8956. </productMenu>
  8957. <productMenu id="quickGuide"
  8958. type="0"
  8959. url=""
  8960. size="934KB" >
  8961. </productMenu>
  8962. <productMenu id="userGuide"
  8963. type="1"
  8964. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_VORTEX_1.0.1_en_260824.pdf"
  8965. size="1.14MB" >
  8966. </productMenu>
  8967. <productMenu id="connectGuide"
  8968. type="1"
  8969. url="https://api.sena.com/support/ConnectGuide/multiphone_phone5_init_vortex.json"
  8970. size="1.12MB" >
  8971. </productMenu>
  8972. <productMenu id="volume"
  8973. type="15" >
  8974. </productMenu>
  8975. <productMenu id="volume+"
  8976. type="2"
  8977. url="0x0018" >
  8978. </productMenu>
  8979. <productMenu id="appearance"
  8980. type="1"
  8981. url="1|white,silver,black" >
  8982. </productMenu>
  8983. <productID id="3451"
  8984. />
  8985. <productGroupable type="0"
  8986. />
  8987. </product>
  8988. <product id="SF4"
  8989. name="SF4"
  8990. series="SF"
  8991. latestVersion="1.1.5"
  8992. show = "-1" >
  8993. <productMenu id="protocol"
  8994. type="1"
  8995. url="3">
  8996. </productMenu>
  8997. <productMenu id="sip"
  8998. type="1" >
  8999. </productMenu>
  9000. <productMenu id="bluetoothIntercom"
  9001. type="1" >
  9002. </productMenu>
  9003. <productMenu id="phone"
  9004. type="1" >
  9005. </productMenu>
  9006. <productMenu id="music"
  9007. type="1" >
  9008. </productMenu>
  9009. <productMenu id="fmradio"
  9010. type="1" >
  9011. </productMenu>
  9012. <productMenu id="deviceSetting"
  9013. type="1"
  9014. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  9015. <productMenuURL version="1.0.1"
  9016. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  9017. />
  9018. </productMenu>
  9019. <productMenu id="quickGuide"
  9020. type="1"
  9021. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF4_1.2.0_en_230704.pdf"
  9022. size="607KB" >
  9023. </productMenu>
  9024. <productMenu id="userGuide"
  9025. type="1"
  9026. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  9027. size="1.91MB" >
  9028. </productMenu>
  9029. <productMenu id="volume"
  9030. type="4" >
  9031. </productMenu>
  9032. <productID id="5414"
  9033. />
  9034. <productGroupable type="0"
  9035. />
  9036. </product>
  9037. <product id="SF4"
  9038. name="SF4"
  9039. series="SF"
  9040. latestVersion="3.4.4"
  9041. show = "1" >
  9042. <productMenu id="protocol"
  9043. type="2" >
  9044. </productMenu>
  9045. <productMenu id="sip"
  9046. type="1" >
  9047. </productMenu>
  9048. <productMenu id="bluetoothIntercom"
  9049. type="1" >
  9050. </productMenu>
  9051. <productMenu id="phone"
  9052. type="1" >
  9053. </productMenu>
  9054. <productMenu id="music"
  9055. type="1" >
  9056. </productMenu>
  9057. <productMenu id="fmradio"
  9058. type="1" >
  9059. </productMenu>
  9060. <productMenu id="deviceSetting"
  9061. type="1"
  9062. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF4_01.xml" >
  9063. <productMenuURL version="3.0"
  9064. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF4_BY.xml"
  9065. />
  9066. </productMenu>
  9067. <productMenu id="quickGuide"
  9068. type="0"
  9069. url=""
  9070. size="934KB" >
  9071. </productMenu>
  9072. <productMenu id="userGuide"
  9073. type="1"
  9074. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  9075. size="1.14MB" >
  9076. </productMenu>
  9077. <productMenu id="connectGuide"
  9078. type="1"
  9079. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  9080. size="1.12MB" >
  9081. </productMenu>
  9082. <productMenu id="volume"
  9083. type="15" >
  9084. </productMenu>
  9085. <productID id="3370"
  9086. />
  9087. <productGroupable type="0"
  9088. />
  9089. </product>
  9090. <product id="SF2"
  9091. name="SF2"
  9092. series="SF"
  9093. latestVersion="1.2.1"
  9094. show = "-1" >
  9095. <productMenu id="protocol"
  9096. type="1"
  9097. url="2">
  9098. </productMenu>
  9099. <productMenu id="sip"
  9100. type="1" >
  9101. </productMenu>
  9102. <productMenu id="bluetoothIntercom"
  9103. type="1" >
  9104. </productMenu>
  9105. <productMenu id="phone"
  9106. type="1" >
  9107. </productMenu>
  9108. <productMenu id="music"
  9109. type="1" >
  9110. </productMenu>
  9111. <productMenu id="fmradio"
  9112. type="1" >
  9113. </productMenu>
  9114. <productMenu id="deviceSetting"
  9115. type="1"
  9116. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  9117. <productMenuURL version="1.0.1"
  9118. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  9119. />
  9120. </productMenu>
  9121. <productMenu id="quickGuide"
  9122. type="1"
  9123. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF2_1.3.0_en_230704.pdf"
  9124. size="607KB" >
  9125. </productMenu>
  9126. <productMenu id="userGuide"
  9127. type="1"
  9128. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  9129. size="1.91MB" >
  9130. </productMenu>
  9131. <productMenu id="volume"
  9132. type="4" >
  9133. </productMenu>
  9134. <productID id="5412"
  9135. />
  9136. <productGroupable type="0"
  9137. />
  9138. </product>
  9139. <product id="SF2"
  9140. name="SF2"
  9141. series="SF"
  9142. latestVersion="3.3.4"
  9143. show = "1" >
  9144. <productMenu id="protocol"
  9145. type="2" >
  9146. </productMenu>
  9147. <productMenu id="sip"
  9148. type="1" >
  9149. </productMenu>
  9150. <productMenu id="bluetoothIntercom"
  9151. type="1" >
  9152. </productMenu>
  9153. <productMenu id="phone"
  9154. type="1" >
  9155. </productMenu>
  9156. <productMenu id="music"
  9157. type="1" >
  9158. </productMenu>
  9159. <productMenu id="fmradio"
  9160. type="0" >
  9161. </productMenu>
  9162. <productMenu id="deviceSetting"
  9163. type="1"
  9164. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_01.xml" >
  9165. <productMenuURL version="3.0"
  9166. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_BY.xml"
  9167. />
  9168. </productMenu>
  9169. <productMenu id="quickGuide"
  9170. type="0"
  9171. url=""
  9172. size="934KB" >
  9173. </productMenu>
  9174. <productMenu id="userGuide"
  9175. type="1"
  9176. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  9177. size="1.14MB" >
  9178. </productMenu>
  9179. <productMenu id="connectGuide"
  9180. type="1"
  9181. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  9182. size="1.12MB" >
  9183. </productMenu>
  9184. <productMenu id="volume"
  9185. type="15" >
  9186. </productMenu>
  9187. <productID id="3360"
  9188. />
  9189. <productGroupable type="0"
  9190. />
  9191. </product>
  9192. <product id="SF1"
  9193. name="SF1"
  9194. series="SF"
  9195. latestVersion="2.0.5"
  9196. show = "-1" >
  9197. <productMenu id="protocol"
  9198. type="1"
  9199. url="1">
  9200. </productMenu>
  9201. <productMenu id="sip"
  9202. type="1" >
  9203. </productMenu>
  9204. <productMenu id="bluetoothIntercom"
  9205. type="1" >
  9206. <productMenuType version="1.1"
  9207. type="0"
  9208. />
  9209. </productMenu>
  9210. <productMenu id="phone"
  9211. type="1" >
  9212. </productMenu>
  9213. <productMenu id="music"
  9214. type="1" >
  9215. </productMenu>
  9216. <productMenu id="deviceSetting"
  9217. type="1"
  9218. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0200.xml">
  9219. <productMenuURL version="1.1"
  9220. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0101n.xml"
  9221. />
  9222. <productMenuURL version="1.0"
  9223. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1.xml"
  9224. />
  9225. </productMenu>
  9226. <productMenu id="quickGuide"
  9227. type="1"
  9228. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF1_2.2.0_en_230704.pdf"
  9229. size="401KB" >
  9230. </productMenu>
  9231. <productMenu id="userGuide"
  9232. type="1"
  9233. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  9234. size="1.91MB" >
  9235. </productMenu>
  9236. <productMenu id="volume"
  9237. type="3" >
  9238. </productMenu>
  9239. <productID id="5410"
  9240. />
  9241. <productGroupable type="0"
  9242. />
  9243. </product>
  9244. <product id="SF1"
  9245. name="SF1"
  9246. series="SF"
  9247. latestVersion="3.3.4"
  9248. show = "1" >
  9249. <productMenu id="protocol"
  9250. type="2" >
  9251. </productMenu>
  9252. <productMenu id="sip"
  9253. type="1" >
  9254. </productMenu>
  9255. <productMenu id="bluetoothIntercom"
  9256. type="1" >
  9257. </productMenu>
  9258. <productMenu id="phone"
  9259. type="1" >
  9260. </productMenu>
  9261. <productMenu id="music"
  9262. type="1" >
  9263. </productMenu>
  9264. <productMenu id="fmradio"
  9265. type="0" >
  9266. </productMenu>
  9267. <productMenu id="deviceSetting"
  9268. type="1"
  9269. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_01.xml" >
  9270. <productMenuURL version="3.0"
  9271. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_BY.xml"
  9272. />
  9273. </productMenu>
  9274. <productMenu id="quickGuide"
  9275. type="0"
  9276. url=""
  9277. size="934KB" >
  9278. </productMenu>
  9279. <productMenu id="userGuide"
  9280. type="1"
  9281. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  9282. size="1.14MB" >
  9283. </productMenu>
  9284. <productMenu id="connectGuide"
  9285. type="1"
  9286. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  9287. size="1.12MB" >
  9288. </productMenu>
  9289. <productMenu id="volume"
  9290. type="15" >
  9291. </productMenu>
  9292. <productID id="3350"
  9293. />
  9294. <productGroupable type="0"
  9295. />
  9296. </product>
  9297. <product id="SFR"
  9298. name="SFR"
  9299. series="SF"
  9300. latestVersion="1.1.1"
  9301. show = "1" >
  9302. <productMenu id="protocol"
  9303. type="1"
  9304. url="3">
  9305. </productMenu>
  9306. <productMenu id="sip"
  9307. type="1" >
  9308. </productMenu>
  9309. <productMenu id="bluetoothIntercom"
  9310. type="1" >
  9311. </productMenu>
  9312. <productMenu id="phone"
  9313. type="1" >
  9314. </productMenu>
  9315. <productMenu id="music"
  9316. type="1" >
  9317. </productMenu>
  9318. <productMenu id="fmradio"
  9319. type="1" >
  9320. </productMenu>
  9321. <productMenu id="deviceSetting"
  9322. type="1"
  9323. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  9324. </productMenu>
  9325. <productMenu id="quickGuide"
  9326. type="1"
  9327. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SFR_1.3.0_en_230710.pdf"
  9328. size="607KB" >
  9329. </productMenu>
  9330. <productMenu id="userGuide"
  9331. type="1"
  9332. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SFR_1.3.0_en_230710.pdf"
  9333. size="1.91MB" >
  9334. </productMenu>
  9335. <productMenu id="volume"
  9336. type="4" >
  9337. </productMenu>
  9338. <productID id="5418"
  9339. />
  9340. <productGroupable type="0"
  9341. />
  9342. </product>
  9343. <product id="20S"
  9344. name="20S"
  9345. series="20"
  9346. latestVersion="2.2.3"
  9347. show = "1" >
  9348. <productMenu id="protocol"
  9349. type="0">
  9350. </productMenu>
  9351. <productMenu id="wa"
  9352. type="5" >
  9353. </productMenu>
  9354. <productMenu id="sip"
  9355. type="1" >
  9356. <productMenuType version="1.0"
  9357. type="0"
  9358. />
  9359. </productMenu>
  9360. <productMenu id="bluetoothIntercom"
  9361. type="1" >
  9362. <productMenuType version="1.0"
  9363. type="0"
  9364. />
  9365. </productMenu>
  9366. <productMenu id="intercomSetting"
  9367. type="1" >
  9368. </productMenu>
  9369. <productMenu id="phone"
  9370. type="2" >
  9371. </productMenu>
  9372. <productMenu id="fmradio"
  9373. type="3" >
  9374. </productMenu>
  9375. <productMenu id="deviceSetting"
  9376. type="1"
  9377. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  9378. <productMenuURL version="2.0.2"
  9379. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  9380. />
  9381. <productMenuURL version="1.5"
  9382. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  9383. />
  9384. <productMenuURL version="1.4.1"
  9385. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  9386. />
  9387. <productMenuURL version="1.1"
  9388. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  9389. />
  9390. <productMenuURL version="1.0"
  9391. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  9392. />
  9393. </productMenu>
  9394. <productMenu id="quickGuide"
  9395. type="0"
  9396. url=""
  9397. size="264KB" >
  9398. </productMenu>
  9399. <productMenu id="userGuide"
  9400. type="1"
  9401. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.2_en_250123.pdf"
  9402. size="3.09MB" >
  9403. </productMenu>
  9404. <productMenu id="connectGuide"
  9405. type="1"
  9406. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  9407. size="1.12MB" >
  9408. </productMenu>
  9409. <productID id="4210"
  9410. />
  9411. <productGroupable type="1"
  9412. />
  9413. </product>
  9414. <product id="20S_EVO"
  9415. name="20S EVO"
  9416. series="20"
  9417. latestVersion="2.2.3"
  9418. show = "1" >
  9419. <productMenu id="protocol"
  9420. type="0">
  9421. </productMenu>
  9422. <productMenu id="wa"
  9423. type="5" >
  9424. </productMenu>
  9425. <productMenu id="sip"
  9426. type="1" >
  9427. <productMenuType version="1.0"
  9428. type="0"
  9429. />
  9430. </productMenu>
  9431. <productMenu id="bluetoothIntercom"
  9432. type="1" >
  9433. <productMenuType version="1.0"
  9434. type="0"
  9435. />
  9436. </productMenu>
  9437. <productMenu id="intercomSetting"
  9438. type="1" >
  9439. </productMenu>
  9440. <productMenu id="phone"
  9441. type="2" >
  9442. </productMenu>
  9443. <productMenu id="fmradio"
  9444. type="3" >
  9445. </productMenu>
  9446. <productMenu id="deviceSetting"
  9447. type="1"
  9448. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  9449. <productMenuURL version="2.0.2"
  9450. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  9451. />
  9452. <productMenuURL version="1.5"
  9453. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  9454. />
  9455. <productMenuURL version="1.4.1"
  9456. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  9457. />
  9458. <productMenuURL version="1.1"
  9459. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  9460. />
  9461. <productMenuURL version="1.0"
  9462. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  9463. />
  9464. </productMenu>
  9465. <productMenu id="quickGuide"
  9466. type="0"
  9467. url=""
  9468. size="264KB" >
  9469. </productMenu>
  9470. <productMenu id="userGuide"
  9471. type="1"
  9472. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.2_en_250123.pdf"
  9473. size="3.09MB" >
  9474. </productMenu>
  9475. <productMenu id="connectGuide"
  9476. type="1"
  9477. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  9478. size="1.12MB" >
  9479. </productMenu>
  9480. <productID id="4210"
  9481. />
  9482. <productProductKey key="16"
  9483. />
  9484. <productGroupable type="1"
  9485. />
  9486. </product>
  9487. <product id="10S"
  9488. name="10S"
  9489. series="10"
  9490. latestVersion="3.0.2"
  9491. show = "1" >
  9492. <productMenu id="protocol"
  9493. type="3" >
  9494. </productMenu>
  9495. <productMenu id="sip"
  9496. type="1" >
  9497. </productMenu>
  9498. <productMenu id="bluetoothIntercom"
  9499. type="1" >
  9500. </productMenu>
  9501. <productMenu id="phone"
  9502. type="1" >
  9503. </productMenu>
  9504. <productMenu id="deviceSetting"
  9505. type="1"
  9506. url="https://api.sena.com/support/SenaNeoApp/QCC10S/NS_QCCS10S.xml" >
  9507. </productMenu>
  9508. <productMenu id="quickGuide"
  9509. type="1"
  9510. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_2.0.0_en_230623.pdf"
  9511. size="934KB" >
  9512. </productMenu>
  9513. <productMenu id="userGuide"
  9514. type="1"
  9515. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_3.1.0_en_250103.pdf"
  9516. size="1.14MB" >
  9517. </productMenu>
  9518. <productMenu id="connectGuide"
  9519. type="1"
  9520. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  9521. size="1.12MB" >
  9522. </productMenu>
  9523. <productID id="3380"
  9524. />
  9525. <productGroupable type="0"
  9526. />
  9527. </product>
  9528. <product id="10S"
  9529. name="10S"
  9530. series="10"
  9531. latestVersion="2.1.1"
  9532. show = "-1" >
  9533. <productMenu id="protocol"
  9534. type="0">
  9535. </productMenu>
  9536. <productMenu id="sip"
  9537. type="1" >
  9538. </productMenu>
  9539. <productMenu id="bluetoothIntercom"
  9540. type="1" >
  9541. </productMenu>
  9542. <productMenu id="phone"
  9543. type="2" >
  9544. </productMenu>
  9545. <productMenu id="fmradio"
  9546. type="3" >
  9547. </productMenu>
  9548. <productMenu id="deviceSetting"
  9549. type="1"
  9550. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0200fm.xml" >
  9551. <productMenuURL version="1.5"
  9552. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml"
  9553. />
  9554. <productMenuURL version="1.3.1"
  9555. url="https://api.sena.com/support/SenaUtility/10S/DeviceSetting_10S.xml"
  9556. />
  9557. </productMenu>
  9558. <productMenu id="quickGuide"
  9559. type="1"
  9560. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_1.4.0_en_230623.pdf"
  9561. size="310KB" >
  9562. </productMenu>
  9563. <productMenu id="userGuide"
  9564. type="1"
  9565. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_2.4.0_en_250103.pdf"
  9566. size="1.57MB" >
  9567. </productMenu>
  9568. <productID id="5530"
  9569. />
  9570. <productGroupable type="0"
  9571. />
  9572. </product>
  9573. <product id="Apex"
  9574. name="Apex"
  9575. series="APEX"
  9576. latestVersion="1.0.1"
  9577. latestVersionVoicePrompt="0.2"
  9578. show = "1" >
  9579. <productMenu id="protocol"
  9580. type="2" >
  9581. </productMenu>
  9582. <productMenu id="warranty"
  9583. type="1" >
  9584. </productMenu>
  9585. <productMenu id="serialNumber"
  9586. type="1" >
  9587. </productMenu>
  9588. <productMenu id="ota"
  9589. type="2" >
  9590. <otaLanguages>
  9591. <otaLanguage
  9592. id="0"
  9593. name="English"
  9594. package="0"
  9595. />
  9596. <otaLanguage
  9597. id="0"
  9598. name="French"
  9599. package="1"
  9600. />
  9601. <otaLanguage
  9602. id="0"
  9603. name="Spanish"
  9604. package="2"
  9605. />
  9606. <otaLanguage
  9607. id="0"
  9608. name="Italian"
  9609. package="3"
  9610. />
  9611. <otaLanguage
  9612. id="0"
  9613. name="German"
  9614. package="4"
  9615. />
  9616. <otaLanguage
  9617. id="0"
  9618. name="Dutch"
  9619. package="5"
  9620. />
  9621. <otaLanguage
  9622. id="0"
  9623. name="Russian"
  9624. package="6"
  9625. />
  9626. <otaLanguage
  9627. id="0"
  9628. name="Chinese"
  9629. package="7"
  9630. />
  9631. <otaLanguage
  9632. id="0"
  9633. name="Korean"
  9634. package="8"
  9635. />
  9636. <otaLanguage
  9637. id="0"
  9638. name="Japanese"
  9639. package="9"
  9640. />
  9641. <otaLanguage
  9642. id="0"
  9643. name="Finnish"
  9644. package="10"
  9645. />
  9646. <otaLanguage
  9647. id="0"
  9648. name="Polish"
  9649. package="11"
  9650. />
  9651. </otaLanguages>
  9652. <otaPackages>
  9653. <package
  9654. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0.1-build3.img"
  9655. size="5183988"
  9656. />
  9657. <package
  9658. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0.1-build3-fr-FR.img"
  9659. size="5183988"
  9660. />
  9661. <package
  9662. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0.1-build3-es-ES.img"
  9663. size="5183988"
  9664. />
  9665. <package
  9666. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0.1-build3-it-IT.img"
  9667. size="5183988"
  9668. />
  9669. <package
  9670. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0.1-build3-de-DE.img"
  9671. size="5183988"
  9672. />
  9673. <package
  9674. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0.1-build3-nl-NL.img"
  9675. size="5183988"
  9676. />
  9677. <package
  9678. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0.1-build3-ru-RU.img"
  9679. size="5183988"
  9680. />
  9681. <package
  9682. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0.1-build3-cmn-CN.img"
  9683. size="5183988"
  9684. />
  9685. <package
  9686. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0.1-build3-ko-KR.img"
  9687. size="5183988"
  9688. />
  9689. <package
  9690. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0.1-build3-ja-JP.img"
  9691. size="5183988"
  9692. />
  9693. <package
  9694. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0.1-build3-fi-FI.img"
  9695. size="5183988"
  9696. />
  9697. <package
  9698. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0.1-build3-pl-PL.img"
  9699. size="5183988"
  9700. />
  9701. </otaPackages>
  9702. </productMenu>
  9703. <productMenu id="sip"
  9704. type="1" >
  9705. </productMenu>
  9706. <productMenu id="bluetoothIntercom"
  9707. type="1" >
  9708. </productMenu>
  9709. <productMenu id="phone"
  9710. type="1" >
  9711. </productMenu>
  9712. <productMenu id="music"
  9713. type="1" >
  9714. </productMenu>
  9715. <productMenu id="fmradio"
  9716. type="1"
  9717. url="1" >
  9718. </productMenu>
  9719. <productMenu id="deviceSetting"
  9720. type="1"
  9721. url="https://api.sena.com/support/SenaNeoApp/Apex/NS_Apex_02.xml" >
  9722. <productMenuURL version="1.0"
  9723. url="https://api.sena.com/support/SenaNeoApp/Apex/NS_Apex.xml"
  9724. />
  9725. </productMenu>
  9726. <productMenu id="quickGuide"
  9727. type="0"
  9728. url=""
  9729. size="934KB" >
  9730. </productMenu>
  9731. <productMenu id="userGuide"
  9732. type="1"
  9733. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_APEX_Series_1.0.0_en_260810.pdf"
  9734. size="1.14MB" >
  9735. </productMenu>
  9736. <productMenu id="connectGuide"
  9737. type="1"
  9738. url="https://api.sena.com/support/ConnectGuide/phonethumb_phone5_init_apex.json"
  9739. size="1.12MB" >
  9740. </productMenu>
  9741. <productMenu id="volume+"
  9742. type="2"
  9743. url="0x0004" >
  9744. </productMenu>
  9745. <productMenu id="appearance"
  9746. type="1"
  9747. url="1|white,silver,black" >
  9748. </productMenu>
  9749. <productMenu id="battery"
  9750. type="1" >
  9751. </productMenu>
  9752. <productID id="3452"
  9753. />
  9754. <productGroupable type="0"
  9755. />
  9756. </product>
  9757. <product id="ApexPlus"
  9758. name="Apex Plus"
  9759. series="APEX"
  9760. latestVersion="1.0.1"
  9761. latestVersionVoicePrompt="0.2"
  9762. show = "1" >
  9763. <productMenu id="protocol"
  9764. type="2" >
  9765. </productMenu>
  9766. <productMenu id="warranty"
  9767. type="1" >
  9768. </productMenu>
  9769. <productMenu id="serialNumber"
  9770. type="1" >
  9771. </productMenu>
  9772. <productMenu id="ota"
  9773. type="2" >
  9774. <otaLanguages>
  9775. <otaLanguage
  9776. id="0"
  9777. name="English"
  9778. package="0"
  9779. />
  9780. <otaLanguage
  9781. id="0"
  9782. name="French"
  9783. package="1"
  9784. />
  9785. <otaLanguage
  9786. id="0"
  9787. name="Spanish"
  9788. package="2"
  9789. />
  9790. <otaLanguage
  9791. id="0"
  9792. name="Italian"
  9793. package="3"
  9794. />
  9795. <otaLanguage
  9796. id="0"
  9797. name="German"
  9798. package="4"
  9799. />
  9800. <otaLanguage
  9801. id="0"
  9802. name="Dutch"
  9803. package="5"
  9804. />
  9805. <otaLanguage
  9806. id="0"
  9807. name="Russian"
  9808. package="6"
  9809. />
  9810. <otaLanguage
  9811. id="0"
  9812. name="Chinese"
  9813. package="7"
  9814. />
  9815. <otaLanguage
  9816. id="0"
  9817. name="Korean"
  9818. package="8"
  9819. />
  9820. <otaLanguage
  9821. id="0"
  9822. name="Japanese"
  9823. package="9"
  9824. />
  9825. <otaLanguage
  9826. id="0"
  9827. name="Finnish"
  9828. package="10"
  9829. />
  9830. <otaLanguage
  9831. id="0"
  9832. name="Polish"
  9833. package="11"
  9834. />
  9835. </otaLanguages>
  9836. <otaPackages>
  9837. <package
  9838. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0.1-build3.img"
  9839. size="5183988"
  9840. />
  9841. <package
  9842. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0.1-build3-fr-FR.img"
  9843. size="5183988"
  9844. />
  9845. <package
  9846. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0.1-build3-es-ES.img"
  9847. size="5183988"
  9848. />
  9849. <package
  9850. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0.1-build3-it-IT.img"
  9851. size="5183988"
  9852. />
  9853. <package
  9854. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0.1-build3-de-DE.img"
  9855. size="5183988"
  9856. />
  9857. <package
  9858. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0.1-build3-nl-NL.img"
  9859. size="5183988"
  9860. />
  9861. <package
  9862. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0.1-build3-ru-RU.img"
  9863. size="5183988"
  9864. />
  9865. <package
  9866. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0.1-build3-cmn-CN.img"
  9867. size="5183988"
  9868. />
  9869. <package
  9870. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0.1-build3-ko-KR.img"
  9871. size="5183988"
  9872. />
  9873. <package
  9874. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0.1-build3-ja-JP.img"
  9875. size="5183988"
  9876. />
  9877. <package
  9878. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0.1-build3-fi-FI.img"
  9879. size="5183988"
  9880. />
  9881. <package
  9882. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0.1-build3-pl-PL.img"
  9883. size="5183988"
  9884. />
  9885. </otaPackages>
  9886. </productMenu>
  9887. <productMenu id="sip"
  9888. type="1" >
  9889. </productMenu>
  9890. <productMenu id="bluetoothIntercom"
  9891. type="1" >
  9892. </productMenu>
  9893. <productMenu id="phone"
  9894. type="1" >
  9895. </productMenu>
  9896. <productMenu id="music"
  9897. type="1" >
  9898. </productMenu>
  9899. <productMenu id="fmradio"
  9900. type="1"
  9901. url="1" >
  9902. </productMenu>
  9903. <productMenu id="deviceSetting"
  9904. type="1"
  9905. url="https://api.sena.com/support/SenaNeoApp/Apex/NS_Apex_02.xml" >
  9906. <productMenuURL version="1.0"
  9907. url="https://api.sena.com/support/SenaNeoApp/Apex/NS_Apex.xml"
  9908. />
  9909. </productMenu>
  9910. <productMenu id="quickGuide"
  9911. type="0"
  9912. url=""
  9913. size="934KB" >
  9914. </productMenu>
  9915. <productMenu id="userGuide"
  9916. type="1"
  9917. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_APEX_Series_1.0.0_en_260810.pdf"
  9918. size="1.14MB" >
  9919. </productMenu>
  9920. <productMenu id="connectGuide"
  9921. type="1"
  9922. url="https://api.sena.com/support/ConnectGuide/phonethumb_phone5_init_apexplus.json"
  9923. size="1.12MB" >
  9924. </productMenu>
  9925. <productMenu id="volume+"
  9926. type="2"
  9927. url="0x0004" >
  9928. </productMenu>
  9929. <productMenu id="appearance"
  9930. type="1"
  9931. url="1|white,silver,black" >
  9932. </productMenu>
  9933. <productMenu id="battery"
  9934. type="1" >
  9935. </productMenu>
  9936. <productID id="3453"
  9937. />
  9938. <productGroupable type="0"
  9939. />
  9940. </product>
  9941. <product id="10R2"
  9942. name="10R 2"
  9943. series="10"
  9944. latestVersion="0.9"
  9945. latestVersionVoicePrompt="1.1"
  9946. show = "-1" >
  9947. <productMenu id="protocol"
  9948. type="2" >
  9949. </productMenu>
  9950. <productMenu id="ota"
  9951. type="2" >
  9952. <otaPackages>
  9953. <package
  9954. url="https://api.sena.com/support/test/10R_2-v0.9-build0.img"
  9955. size="2945812"
  9956. />
  9957. </otaPackages>
  9958. </productMenu>
  9959. <productMenu id="sip"
  9960. type="1" >
  9961. </productMenu>
  9962. <productMenu id="bluetoothIntercom"
  9963. type="1" >
  9964. </productMenu>
  9965. <productMenu id="phone"
  9966. type="1" >
  9967. </productMenu>
  9968. <productMenu id="music"
  9969. type="1" >
  9970. </productMenu>
  9971. <productMenu id="fmradio"
  9972. type="1"
  9973. url="1" >
  9974. </productMenu>
  9975. <productMenu id="deviceSetting"
  9976. type="1"
  9977. url="https://api.sena.com/support/test/xml/NS_10R2_Onlytest.xml" >
  9978. </productMenu>
  9979. <productMenu id="quickGuide"
  9980. type="1"
  9981. url=""
  9982. size="934KB" >
  9983. </productMenu>
  9984. <productMenu id="userGuide"
  9985. type="0"
  9986. url=""
  9987. size="1.14MB" >
  9988. </productMenu>
  9989. <productMenu id="volume"
  9990. type="15" >
  9991. </productMenu>
  9992. <productID id="4000"
  9993. />
  9994. <productGroupable type="0"
  9995. />
  9996. </product>
  9997. <product id="10R"
  9998. name="10R"
  9999. series="10"
  10000. latestVersion="2.1.1"
  10001. show = "1" >
  10002. <productMenu id="protocol"
  10003. type="0">
  10004. </productMenu>
  10005. <productMenu id="sip"
  10006. type="1" >
  10007. <productMenuType version="1.0.2"
  10008. type="0"
  10009. />
  10010. </productMenu>
  10011. <productMenu id="bluetoothIntercom"
  10012. type="1" >
  10013. <productMenuType version="1.0.2"
  10014. type="0"
  10015. />
  10016. </productMenu>
  10017. <productMenu id="phone"
  10018. type="2" >
  10019. </productMenu>
  10020. <productMenu id="fmradio"
  10021. type="3" >
  10022. </productMenu>
  10023. <productMenu id="deviceSetting"
  10024. type="1"
  10025. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  10026. <productMenuURL version="1.4"
  10027. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0103.xml"
  10028. />
  10029. <productMenuURL version="1.2.1"
  10030. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0101.xml"
  10031. />
  10032. <productMenuURL version="1.0.2"
  10033. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0100_1.xml"
  10034. />
  10035. <productMenuURL version="1.0"
  10036. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R.xml"
  10037. />
  10038. </productMenu>
  10039. <productMenu id="quickGuide"
  10040. type="1"
  10041. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10R_no_HR_1.4.0_en_221006.pdf"
  10042. size="400KB" >
  10043. </productMenu>
  10044. <productMenu id="userGuide"
  10045. type="1"
  10046. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10R_no_HR_2.2.0_en_221006.pdf"
  10047. size="2.75MB" >
  10048. </productMenu>
  10049. <productMenu id="connectGuide"
  10050. type="1"
  10051. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  10052. size="1.12MB" >
  10053. </productMenu>
  10054. <productID id="5520"
  10055. />
  10056. <productGroupable type="0"
  10057. />
  10058. </product>
  10059. <product id="10C_EVO"
  10060. name="10C EVO"
  10061. series="10"
  10062. latestVersion="1.7"
  10063. show = "1" >
  10064. <productMenu id="protocol"
  10065. type="0">
  10066. </productMenu>
  10067. <productMenu id="sip"
  10068. type="1" >
  10069. </productMenu>
  10070. <productMenu id="bluetoothIntercom"
  10071. type="1" >
  10072. </productMenu>
  10073. <productMenu id="phone"
  10074. type="2" >
  10075. </productMenu>
  10076. <productMenu id="fmradio"
  10077. type="3" >
  10078. </productMenu>
  10079. <productMenu id="deviceSetting"
  10080. type="1"
  10081. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_EVO_v0105fm.xml" >
  10082. <productMenuURL version="1.3.1"
  10083. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  10084. />
  10085. </productMenu>
  10086. <productMenu id="quickGuide"
  10087. type="1"
  10088. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10C_EVO_1.3.0_en_221020.pdf"
  10089. size="1.32MB" >
  10090. </productMenu>
  10091. <productMenu id="userGuide"
  10092. type="1"
  10093. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10C_EVO_1.4.0_en_221020.pdf"
  10094. size="1.68MB" >
  10095. </productMenu>
  10096. <productMenu id="connectGuide"
  10097. type="1"
  10098. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  10099. size="1.12MB" >
  10100. </productMenu>
  10101. <productID id="5570"
  10102. />
  10103. <productGroupable type="0"
  10104. />
  10105. </product>
  10106. <product id="10C_Pro"
  10107. name="10C Pro"
  10108. series="10"
  10109. latestVersion="2.7.1"
  10110. show = "1" >
  10111. <productMenu id="protocol"
  10112. type="0">
  10113. </productMenu>
  10114. <productMenu id="sip"
  10115. type="1" >
  10116. </productMenu>
  10117. <productMenu id="bluetoothIntercom"
  10118. type="1" >
  10119. </productMenu>
  10120. <productMenu id="phone"
  10121. type="2" >
  10122. </productMenu>
  10123. <productMenu id="fmradio"
  10124. type="3" >
  10125. </productMenu>
  10126. <productMenu id="deviceSetting"
  10127. type="1"
  10128. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0205.xml" >
  10129. <productMenuURL version="2.5.1"
  10130. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  10131. />
  10132. <productMenuURL version="1.0"
  10133. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro.xml"
  10134. />
  10135. </productMenu>
  10136. <productMenu id="quickGuide"
  10137. type="1"
  10138. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_Pro_02.pdf"
  10139. size="651KB" >
  10140. </productMenu>
  10141. <productMenu id="userGuide"
  10142. type="1"
  10143. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_Pro_v2.1_01.pdf"
  10144. size="2.34MB" >
  10145. </productMenu>
  10146. <productMenu id="connectGuide"
  10147. type="1"
  10148. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  10149. size="1.12MB" >
  10150. </productMenu>
  10151. <productID id="5580"
  10152. />
  10153. <productGroupable type="0"
  10154. />
  10155. </product>
  10156. <product id="10C"
  10157. name="10C"
  10158. series="10"
  10159. latestVersion="3.0.4"
  10160. show = "1" >
  10161. <productMenu id="protocol"
  10162. type="0">
  10163. </productMenu>
  10164. <productMenu id="sip"
  10165. type="1" >
  10166. <productMenuType version="1.0.4"
  10167. type="0"
  10168. />
  10169. </productMenu>
  10170. <productMenu id="bluetoothIntercom"
  10171. type="1" >
  10172. <productMenuType version="1.0.4"
  10173. type="0"
  10174. />
  10175. </productMenu>
  10176. <productMenu id="phone"
  10177. type="2" >
  10178. </productMenu>
  10179. <productMenu id="fmradio"
  10180. type="3" >
  10181. </productMenu>
  10182. <productMenu id="deviceSetting"
  10183. type="1"
  10184. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0300_2.xml" >
  10185. <productMenuURL version="2.3"
  10186. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0202.xml"
  10187. />
  10188. <productMenuURL version="2.1.1"
  10189. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0200.xml"
  10190. />
  10191. <productMenuURL version="1.0.4"
  10192. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0100_3.xml"
  10193. />
  10194. <productMenuURL version="1.0.2"
  10195. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C.xml"
  10196. />
  10197. </productMenu>
  10198. <productMenu id="quickGuide"
  10199. type="1"
  10200. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_04.pdf"
  10201. size="935KB" >
  10202. </productMenu>
  10203. <productMenu id="userGuide"
  10204. type="1"
  10205. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_v3.0_01.pdf"
  10206. size="2.82MB" >
  10207. </productMenu>
  10208. <productMenu id="connectGuide"
  10209. type="1"
  10210. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  10211. size="1.12MB" >
  10212. </productMenu>
  10213. <productID id="5510"
  10214. />
  10215. <productGroupable type="0"
  10216. />
  10217. </product>
  10218. <product id="10U_GT_AIR"
  10219. name="10U GT-Air"
  10220. series="10"
  10221. latestVersion="2.0.4"
  10222. show = "1" >
  10223. <productMenu id="protocol"
  10224. type="0">
  10225. </productMenu>
  10226. <productMenu id="sip"
  10227. type="1" >
  10228. <productMenuType version="1.0.2"
  10229. type="0"
  10230. />
  10231. </productMenu>
  10232. <productMenu id="bluetoothIntercom"
  10233. type="1" >
  10234. <productMenuType version="1.0.2"
  10235. type="0"
  10236. />
  10237. </productMenu>
  10238. <productMenu id="phone"
  10239. type="2" >
  10240. </productMenu>
  10241. <productMenu id="fmradio"
  10242. type="3" >
  10243. </productMenu>
  10244. <productMenu id="deviceSetting"
  10245. type="1"
  10246. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  10247. <productMenuURL version="1.3.2"
  10248. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  10249. />
  10250. <productMenuURL version="1.0.2"
  10251. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  10252. />
  10253. </productMenu>
  10254. <productMenu id="quickGuide"
  10255. type="1"
  10256. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_GT-Air_04.pdf"
  10257. size="685KB" >
  10258. </productMenu>
  10259. <productMenu id="userGuide"
  10260. type="1"
  10261. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  10262. size="684KB" >
  10263. </productMenu>
  10264. <productMenu id="connectGuide"
  10265. type="1"
  10266. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  10267. size="1.12MB" >
  10268. </productMenu>
  10269. <productID id="5610"
  10270. />
  10271. <productGroupable type="0"
  10272. />
  10273. </product>
  10274. <product id="10U_NEOTEC"
  10275. name="10U Neotec"
  10276. series="10"
  10277. latestVersion="2.0.4"
  10278. show = "1" >
  10279. <productMenu id="protocol"
  10280. type="0">
  10281. </productMenu>
  10282. <productMenu id="sip"
  10283. type="1" >
  10284. <productMenuType version="1.0.2"
  10285. type="0"
  10286. />
  10287. </productMenu>
  10288. <productMenu id="bluetoothIntercom"
  10289. type="1" >
  10290. <productMenuType version="1.0.2"
  10291. type="0"
  10292. />
  10293. </productMenu>
  10294. <productMenu id="phone"
  10295. type="2" >
  10296. </productMenu>
  10297. <productMenu id="fmradio"
  10298. type="3" >
  10299. </productMenu>
  10300. <productMenu id="deviceSetting"
  10301. type="1"
  10302. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  10303. <productMenuURL version="1.3.2"
  10304. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  10305. />
  10306. <productMenuURL version="1.0.2"
  10307. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  10308. />
  10309. </productMenu>
  10310. <productMenu id="quickGuide"
  10311. type="1"
  10312. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_Neotec_04.pdf"
  10313. size="689KB" >
  10314. </productMenu>
  10315. <productMenu id="userGuide"
  10316. type="1"
  10317. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  10318. size="684KB" >
  10319. </productMenu>
  10320. <productMenu id="connectGuide"
  10321. type="1"
  10322. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  10323. size="1.12MB" >
  10324. </productMenu>
  10325. <productID id="5611"
  10326. />
  10327. <productGroupable type="0"
  10328. />
  10329. </product>
  10330. <product id="10U_J_CRUISE"
  10331. name="10U J-Cruise"
  10332. series="10"
  10333. latestVersion="2.0.4"
  10334. show = "1" >
  10335. <productMenu id="protocol"
  10336. type="0">
  10337. </productMenu>
  10338. <productMenu id="sip"
  10339. type="1" >
  10340. <productMenuType version="1.0.2"
  10341. type="0"
  10342. />
  10343. </productMenu>
  10344. <productMenu id="bluetoothIntercom"
  10345. type="1" >
  10346. <productMenuType version="1.0.2"
  10347. type="0"
  10348. />
  10349. </productMenu>
  10350. <productMenu id="phone"
  10351. type="2" >
  10352. </productMenu>
  10353. <productMenu id="fmradio"
  10354. type="3" >
  10355. </productMenu>
  10356. <productMenu id="deviceSetting"
  10357. type="1"
  10358. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  10359. <productMenuURL version="1.3.2"
  10360. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  10361. />
  10362. <productMenuURL version="1.0.2"
  10363. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  10364. />
  10365. </productMenu>
  10366. <productMenu id="quickGuide"
  10367. type="1"
  10368. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_J-Cruise_04.pdf"
  10369. size="686KB" >
  10370. </productMenu>
  10371. <productMenu id="userGuide"
  10372. type="1"
  10373. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  10374. size="684KB" >
  10375. </productMenu>
  10376. <productMenu id="connectGuide"
  10377. type="1"
  10378. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  10379. size="1.12MB" >
  10380. </productMenu>
  10381. <productID id="5612"
  10382. />
  10383. <productGroupable type="0"
  10384. />
  10385. </product>
  10386. <product id="10U_C3"
  10387. name="10U C3/C3Pro"
  10388. series="10"
  10389. latestVersion="2.0.4"
  10390. show = "1" >
  10391. <productMenu id="protocol"
  10392. type="0">
  10393. </productMenu>
  10394. <productMenu id="sip"
  10395. type="1" >
  10396. <productMenuType version="1.0.2"
  10397. type="0"
  10398. />
  10399. </productMenu>
  10400. <productMenu id="bluetoothIntercom"
  10401. type="1" >
  10402. <productMenuType version="1.0.2"
  10403. type="0"
  10404. />
  10405. </productMenu>
  10406. <productMenu id="phone"
  10407. type="2" >
  10408. </productMenu>
  10409. <productMenu id="fmradio"
  10410. type="3" >
  10411. </productMenu>
  10412. <productMenu id="deviceSetting"
  10413. type="1"
  10414. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  10415. <productMenuURL version="1.3.2"
  10416. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  10417. />
  10418. <productMenuURL version="1.0.2"
  10419. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  10420. />
  10421. </productMenu>
  10422. <productMenu id="quickGuide"
  10423. type="1"
  10424. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Schuberth_C3_or_C3Pro_03.pdf"
  10425. size="199KB" >
  10426. </productMenu>
  10427. <productMenu id="userGuide"
  10428. type="1"
  10429. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  10430. size="684KB" >
  10431. </productMenu>
  10432. <productMenu id="connectGuide"
  10433. type="1"
  10434. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  10435. size="1.12MB" >
  10436. </productMenu>
  10437. <productID id="5620"
  10438. />
  10439. <productGroupable type="0"
  10440. />
  10441. </product>
  10442. <product id="10U_ARAI"
  10443. name="10U Arai"
  10444. series="10"
  10445. latestVersion="2.0.4"
  10446. show = "1" >
  10447. <productMenu id="protocol"
  10448. type="0">
  10449. </productMenu>
  10450. <productMenu id="sip"
  10451. type="1" >
  10452. <productMenuType version="1.0.2"
  10453. type="0"
  10454. />
  10455. </productMenu>
  10456. <productMenu id="bluetoothIntercom"
  10457. type="1" >
  10458. <productMenuType version="1.0.2"
  10459. type="0"
  10460. />
  10461. </productMenu>
  10462. <productMenu id="phone"
  10463. type="2" >
  10464. </productMenu>
  10465. <productMenu id="fmradio"
  10466. type="3" >
  10467. </productMenu>
  10468. <productMenu id="deviceSetting"
  10469. type="1"
  10470. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  10471. <productMenuURL version="1.3.2"
  10472. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  10473. />
  10474. <productMenuURL version="1.0.2"
  10475. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  10476. />
  10477. </productMenu>
  10478. <productMenu id="quickGuide"
  10479. type="1"
  10480. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10U_for_Arai(RC4)_2.1.0_en_221020.pdf"
  10481. size="689KB" >
  10482. </productMenu>
  10483. <productMenu id="userGuide"
  10484. type="1"
  10485. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  10486. size="684KB" >
  10487. </productMenu>
  10488. <productMenu id="connectGuide"
  10489. type="1"
  10490. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  10491. size="1.12MB" >
  10492. </productMenu>
  10493. <productID id="5621"
  10494. />
  10495. <productGroupable type="0"
  10496. />
  10497. </product>
  10498. <product id="10Upad"
  10499. name="10Upad"
  10500. series="10"
  10501. latestVersion="2.0.3"
  10502. show = "1" >
  10503. <productMenu id="protocol"
  10504. type="0">
  10505. </productMenu>
  10506. <productMenu id="sip"
  10507. type="1" >
  10508. </productMenu>
  10509. <productMenu id="bluetoothIntercom"
  10510. type="1" >
  10511. </productMenu>
  10512. <productMenu id="phone"
  10513. type="2" >
  10514. </productMenu>
  10515. <productMenu id="fmradio"
  10516. type="3" >
  10517. </productMenu>
  10518. <productMenu id="deviceSetting"
  10519. type="1"
  10520. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad_v0200.xml" >
  10521. <productMenuURL version="1.0.3"
  10522. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad.xml"
  10523. />
  10524. </productMenu>
  10525. <productMenu id="quickGuide"
  10526. type="1"
  10527. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10Upad_03.pdf"
  10528. size="615KB" >
  10529. </productMenu>
  10530. <productMenu id="userGuide"
  10531. type="1"
  10532. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10Upad_v2.0_01.pdf"
  10533. size="0.99MB" >
  10534. </productMenu>
  10535. <productMenu id="connectGuide"
  10536. type="1"
  10537. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  10538. size="1.12MB" >
  10539. </productMenu>
  10540. <productID id="6210"
  10541. />
  10542. <productGroupable type="0"
  10543. />
  10544. </product>
  10545. <product id="5S"
  10546. name="5S"
  10547. series="5"
  10548. latestVersion="2.3.1"
  10549. show = "1" >
  10550. <productMenu id="protocol"
  10551. type="3" >
  10552. </productMenu>
  10553. <productMenu id="sip"
  10554. type="1" >
  10555. </productMenu>
  10556. <productMenu id="bluetoothIntercom"
  10557. type="1" >
  10558. </productMenu>
  10559. <productMenu id="phone"
  10560. type="1" >
  10561. </productMenu>
  10562. <productMenu id="fmradio"
  10563. type="0" >
  10564. </productMenu>
  10565. <productMenu id="deviceSetting"
  10566. type="1"
  10567. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  10568. </productMenu>
  10569. <productMenu id="quickGuide"
  10570. type="0"
  10571. url=""
  10572. size="934KB" >
  10573. </productMenu>
  10574. <productMenu id="userGuide"
  10575. type="1"
  10576. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_2.3.0_en_250114.pdf"
  10577. size="1.14MB" >
  10578. </productMenu>
  10579. <productMenu id="connectGuide"
  10580. type="1"
  10581. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_lcd_init.json"
  10582. size="1.12MB" >
  10583. </productMenu>
  10584. <productID id="5590"
  10585. />
  10586. <productGroupable type="0"
  10587. />
  10588. </product>
  10589. <product id="5S"
  10590. name="5S"
  10591. series="5"
  10592. latestVersion="1.2"
  10593. show = "-1" >
  10594. <productMenu id="protocol"
  10595. type="0">
  10596. </productMenu>
  10597. <productMenu id="sip"
  10598. type="1" >
  10599. </productMenu>
  10600. <productMenu id="bluetoothIntercom"
  10601. type="1" >
  10602. </productMenu>
  10603. <productMenu id="phone"
  10604. type="2" >
  10605. </productMenu>
  10606. <productMenu id="fmradio"
  10607. type="3" >
  10608. </productMenu>
  10609. <productMenu id="deviceSetting"
  10610. type="1"
  10611. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_fm_01.xml" >
  10612. </productMenu>
  10613. <productMenu id="quickGuide"
  10614. type="0"
  10615. url=""
  10616. size="970KB" >
  10617. </productMenu>
  10618. <productMenu id="userGuide"
  10619. type="1"
  10620. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_1.3.0_en_250114.pdf"
  10621. size="1.26MB" >
  10622. </productMenu>
  10623. <productID id="5534"
  10624. />
  10625. <productGroupable type="0"
  10626. />
  10627. </product>
  10628. <product id="5S"
  10629. name="5S"
  10630. series="5"
  10631. latestVersion="3.0.1"
  10632. show = "-1" >
  10633. <productMenu id="protocol"
  10634. type="0">
  10635. </productMenu>
  10636. <productMenu id="sip"
  10637. type="1" >
  10638. </productMenu>
  10639. <productMenu id="bluetoothIntercom"
  10640. type="1" >
  10641. </productMenu>
  10642. <productMenu id="phone"
  10643. type="2" >
  10644. </productMenu>
  10645. <productMenu id="fmradio"
  10646. type="0" >
  10647. </productMenu>
  10648. <productMenu id="deviceSetting"
  10649. type="1"
  10650. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_v30.xml" >
  10651. </productMenu>
  10652. <productMenu id="quickGuide"
  10653. type="0"
  10654. url=""
  10655. size="970KB" >
  10656. </productMenu>
  10657. <productMenu id="userGuide"
  10658. type="1"
  10659. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_3.1.0_en_250114.pdf"
  10660. size="1.26MB" >
  10661. </productMenu>
  10662. <productID id="5538"
  10663. />
  10664. <productGroupable type="0"
  10665. />
  10666. </product>
  10667. <product id="3SPLUS"
  10668. name="3S PLUS"
  10669. series="3"
  10670. latestVersion="2.2"
  10671. show = "1" >
  10672. <productMenu id="protocol"
  10673. type="3" >
  10674. </productMenu>
  10675. <productMenu id="sip"
  10676. type="1" >
  10677. </productMenu>
  10678. <productMenu id="bluetoothIntercom"
  10679. type="1" >
  10680. </productMenu>
  10681. <productMenu id="deviceSetting"
  10682. type="1"
  10683. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S_02.xml" >
  10684. <productMenuURL version="2.2.1"
  10685. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml"
  10686. />
  10687. </productMenu>
  10688. <productMenu id="quickGuide"
  10689. type="1"
  10690. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  10691. size="344KB" >
  10692. </productMenu>
  10693. <productMenu id="userGuide"
  10694. type="1"
  10695. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_2.4.0_en_241224.pdf"
  10696. size="1.14MB" >
  10697. </productMenu>
  10698. <productMenu id="connectGuide"
  10699. type="1"
  10700. url="https://api.sena.com/support/ConnectGuide/plusminus_plus5_init.json"
  10701. size="1.12MB" >
  10702. </productMenu>
  10703. <productID id="4023"
  10704. />
  10705. <productGroupable type="0"
  10706. />
  10707. </product>
  10708. <product id="3SPLUS"
  10709. name="3S PLUS"
  10710. series="3"
  10711. latestVersion="1.1"
  10712. show = "-1" >
  10713. <productMenu id="protocol"
  10714. type="0">
  10715. </productMenu>
  10716. <productMenu id="sip"
  10717. type="1" >
  10718. </productMenu>
  10719. <productMenu id="bluetoothIntercom"
  10720. type="1" >
  10721. </productMenu>
  10722. <productMenu id="deviceSetting"
  10723. type="1"
  10724. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  10725. </productMenu>
  10726. <productMenu id="quickGuide"
  10727. type="1"
  10728. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  10729. size="842KB" >
  10730. </productMenu>
  10731. <productMenu id="userGuide"
  10732. type="1"
  10733. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_1.2.0_en_241226.pdf"
  10734. size="1.02MB" >
  10735. </productMenu>
  10736. <productID id="6320"
  10737. />
  10738. <productGroupable type="0"
  10739. />
  10740. </product>
  10741. <product id="AConnect"
  10742. name="Alpinestars A-Connect"
  10743. series="60"
  10744. latestVersion="1.0.2"
  10745. latestVersionMesh="0.19"
  10746. latestVersionVoicePrompt="1.6"
  10747. show = "-1" >
  10748. <productMenu id="protocol"
  10749. type="2" >
  10750. </productMenu>
  10751. <productMenu id="ota"
  10752. type="2" >
  10753. <otaLanguages>
  10754. <otaLanguage
  10755. id="0"
  10756. name="English"
  10757. package="0"
  10758. />
  10759. <otaLanguage
  10760. id="0"
  10761. name="French"
  10762. package="1"
  10763. />
  10764. <otaLanguage
  10765. id="0"
  10766. name="Spanish"
  10767. package="2"
  10768. />
  10769. <otaLanguage
  10770. id="0"
  10771. name="Italian"
  10772. package="3"
  10773. />
  10774. <otaLanguage
  10775. id="0"
  10776. name="German"
  10777. package="4"
  10778. />
  10779. <otaLanguage
  10780. id="0"
  10781. name="Dutch"
  10782. package="5"
  10783. />
  10784. <otaLanguage
  10785. id="0"
  10786. name="Russian"
  10787. package="6"
  10788. />
  10789. <otaLanguage
  10790. id="0"
  10791. name="Chinese"
  10792. package="7"
  10793. />
  10794. <otaLanguage
  10795. id="0"
  10796. name="Korean"
  10797. package="8"
  10798. />
  10799. <otaLanguage
  10800. id="0"
  10801. name="Japanese"
  10802. package="9"
  10803. />
  10804. <otaLanguage
  10805. id="0"
  10806. name="Finnish"
  10807. package="10"
  10808. />
  10809. <otaLanguage
  10810. id="0"
  10811. name="Polish"
  10812. package="11"
  10813. />
  10814. </otaLanguages>
  10815. <otaPackages>
  10816. <package
  10817. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2.img"
  10818. size="5183988"
  10819. />
  10820. <package
  10821. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-fr-FR.img"
  10822. size="5183988"
  10823. />
  10824. <package
  10825. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-es-ES.img"
  10826. size="5183988"
  10827. />
  10828. <package
  10829. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-it-IT.img"
  10830. size="5183988"
  10831. />
  10832. <package
  10833. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-de-DE.img"
  10834. size="5183988"
  10835. />
  10836. <package
  10837. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-nl-NL.img"
  10838. size="5183988"
  10839. />
  10840. <package
  10841. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-ru-RU.img"
  10842. size="5183988"
  10843. />
  10844. <package
  10845. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-cmn-CN.img"
  10846. size="5183988"
  10847. />
  10848. <package
  10849. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-ko-KR.img"
  10850. size="5183988"
  10851. />
  10852. <package
  10853. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-ja-JP.img"
  10854. size="5183988"
  10855. />
  10856. <package
  10857. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-fi-FI.img"
  10858. size="5183988"
  10859. />
  10860. <package
  10861. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-pl-PL.img"
  10862. size="5183988"
  10863. />
  10864. </otaPackages>
  10865. </productMenu>
  10866. <productMenu id="sip"
  10867. type="1" >
  10868. </productMenu>
  10869. <productMenu id="illusion"
  10870. type="0" >
  10871. </productMenu>
  10872. <productMenu id="meshIntercom+"
  10873. type="3"
  10874. url="2" >
  10875. </productMenu>
  10876. <productMenu id="waveIntercom"
  10877. type="1" >
  10878. </productMenu>
  10879. <productMenu id="bluetoothIntercom"
  10880. type="1"
  10881. url="2" >
  10882. </productMenu>
  10883. <productMenu id="bluetoothIntercomGrouping"
  10884. type="0" >
  10885. </productMenu>
  10886. <productMenu id="fmradio"
  10887. type="1"
  10888. url="1" >
  10889. </productMenu>
  10890. <productMenu id="phone"
  10891. type="1" >
  10892. </productMenu>
  10893. <productMenu id="music"
  10894. type="1" >
  10895. </productMenu>
  10896. <productMenu id="musicSharing"
  10897. type="0" >
  10898. </productMenu>
  10899. <productMenu id="deviceSetting"
  10900. type="1"
  10901. url="https://api.sena.com/support/SenaNeoApp/SRL3Plus/NS_SRL3Plus_01.xml" >
  10902. <productMenuURL version="1.0.3"
  10903. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml"
  10904. />
  10905. </productMenu>
  10906. <productMenu id="quickGuide"
  10907. type="0"
  10908. url=""
  10909. size="1.12MB" >
  10910. </productMenu>
  10911. <productMenu id="userGuide"
  10912. type="1"
  10913. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_A-CONNECT_1.0.0_en_260528.pdf"
  10914. size="2.0MB" >
  10915. </productMenu>
  10916. <productMenu id="videoGuide"
  10917. type="0"
  10918. url=""
  10919. size="3.41MB" >
  10920. </productMenu>
  10921. <productMenu id="volume"
  10922. type="16" >
  10923. </productMenu>
  10924. <productMenu id="volume+"
  10925. type="2"
  10926. url="0x6004" >
  10927. </productMenu>
  10928. <productMenu id="soundMode"
  10929. type="0" >
  10930. </productMenu>
  10931. <productMenu id="battery"
  10932. type="1" >
  10933. </productMenu>
  10934. <productID id="6A82"
  10935. />
  10936. <productGroupable type="0"
  10937. />
  10938. </product>
  10939. <product id="iCon"
  10940. name="iCon"
  10941. series="50"
  10942. latestVersion="1.2"
  10943. show = "0" >
  10944. <productMenu id="protocol"
  10945. type="2" >
  10946. </productMenu>
  10947. <productMenu id="alexa"
  10948. type="0" >
  10949. </productMenu>
  10950. <productMenu id="wa"
  10951. type="0" >
  10952. </productMenu>
  10953. <productMenu id="sip"
  10954. type="1" >
  10955. </productMenu>
  10956. <productMenu id="led"
  10957. type="3" >
  10958. </productMenu>
  10959. <productMenu id="meshIntercom"
  10960. type="20" >
  10961. </productMenu>
  10962. <productMenu id="meshIntercom+"
  10963. type="3"
  10964. url="0" >
  10965. <productMenuType version="1.0.9"
  10966. type="2"
  10967. />
  10968. </productMenu>
  10969. <productMenu id="bluetoothIntercom"
  10970. type="1" >
  10971. </productMenu>
  10972. <productMenu id="phone"
  10973. type="1" >
  10974. </productMenu>
  10975. <productMenu id="music"
  10976. type="1" >
  10977. </productMenu>
  10978. <productMenu id="fmradio"
  10979. type="1" >
  10980. </productMenu>
  10981. <productMenu id="deviceSetting"
  10982. type="1"
  10983. url="https://api.sena.com/support/SenaNeoApp/ICON/NS_ICON.xml" >
  10984. <productMenuURL version="1.0.9"
  10985. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  10986. />
  10987. </productMenu>
  10988. <productMenu id="quickGuide"
  10989. type="1"
  10990. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_HelmLink_1.0.0_en_220830.pdf"
  10991. size="344KB" >
  10992. </productMenu>
  10993. <productMenu id="userGuide"
  10994. type="1"
  10995. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_HelmLink_1.1.0_en_250915.pdf"
  10996. size="3.41MB" >
  10997. </productMenu>
  10998. <productMenu id="volume"
  10999. type="11" >
  11000. </productMenu>
  11001. <productMenu id="battery"
  11002. type="1" >
  11003. </productMenu>
  11004. <productID id="3900"
  11005. />
  11006. <productGroupable type="0"
  11007. />
  11008. </product>
  11009. <product id="ICONHelmLinkSL"
  11010. name="ICON HelmLink SL"
  11011. series="50"
  11012. latestVersion="1.0"
  11013. latestVersionVoicePrompt="1.6"
  11014. show = "-1" >
  11015. <productMenu id="protocol"
  11016. type="2" >
  11017. </productMenu>
  11018. <productMenu id="alexa"
  11019. type="0" >
  11020. </productMenu>
  11021. <productMenu id="ota"
  11022. type="2" >
  11023. <otaPackages>
  11024. <package
  11025. url="https://api.sena.com/support/OTA/Motorcycles/HELMLINKSL/ICON_HELMLINK_SL-v1.0-build1.img"
  11026. size="2945812"
  11027. />
  11028. </otaPackages>
  11029. </productMenu>
  11030. <productMenu id="wa"
  11031. type="0" >
  11032. </productMenu>
  11033. <productMenu id="meshIntercom"
  11034. type="30" >
  11035. </productMenu>
  11036. <productMenu id="meshIntercom+"
  11037. type="3"
  11038. url="2" >
  11039. </productMenu>
  11040. <productMenu id="waveIntercom"
  11041. type="1" >
  11042. </productMenu>
  11043. <productMenu id="phone"
  11044. type="1" >
  11045. </productMenu>
  11046. <productMenu id="music"
  11047. type="1" >
  11048. </productMenu>
  11049. <productMenu id="musicSharing"
  11050. type="0" >
  11051. </productMenu>
  11052. <productMenu id="deviceSetting"
  11053. type="1"
  11054. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA_02.xml" >
  11055. </productMenu>
  11056. <productMenu id="quickGuide"
  11057. type="0"
  11058. url=""
  11059. size="1.12MB" >
  11060. </productMenu>
  11061. <productMenu id="userGuide"
  11062. type="1"
  11063. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_HelmLink_SL_1.0.0_en_260604.pdf"
  11064. size="2.0MB" >
  11065. </productMenu>
  11066. <productMenu id="volume"
  11067. type="12" >
  11068. </productMenu>
  11069. <productMenu id="battery"
  11070. type="1" >
  11071. </productMenu>
  11072. <productID id="6842"
  11073. />
  11074. <productGroupable type="0"
  11075. />
  11076. </product>
  11077. <product id="HD50S"
  11078. name="H-D Audio 50S"
  11079. series="50"
  11080. latestVersion="1.0.1"
  11081. show = "-1" >
  11082. <productMenu id="protocol"
  11083. type="2" >
  11084. </productMenu>
  11085. <productMenu id="alexa"
  11086. type="0" >
  11087. </productMenu>
  11088. <productMenu id="ota"
  11089. type="0"
  11090. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  11091. size="1150234" >
  11092. </productMenu>
  11093. <productMenu id="wa"
  11094. type="1" >
  11095. </productMenu>
  11096. <productMenu id="sip"
  11097. type="1" >
  11098. </productMenu>
  11099. <productMenu id="meshIntercom"
  11100. type="20" >
  11101. </productMenu>
  11102. <productMenu id="meshIntercom+"
  11103. type="3"
  11104. url="0" >
  11105. <productMenuType version="1.0.9"
  11106. type="2"
  11107. />
  11108. </productMenu>
  11109. <productMenu id="bluetoothIntercom"
  11110. type="1" >
  11111. </productMenu>
  11112. <productMenu id="phone"
  11113. type="1" >
  11114. </productMenu>
  11115. <productMenu id="music"
  11116. type="1" >
  11117. </productMenu>
  11118. <productMenu id="fmradio"
  11119. type="1" >
  11120. </productMenu>
  11121. <productMenu id="deviceSetting"
  11122. type="1"
  11123. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  11124. <productMenuURL version="1.0.9"
  11125. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  11126. />
  11127. </productMenu>
  11128. <productMenu id="quickGuide"
  11129. type="1"
  11130. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Harley-Davidson_Audio_50S_1.1.0_en_220509.pdf"
  11131. size="934KB" >
  11132. </productMenu>
  11133. <productMenu id="userGuide"
  11134. type="1"
  11135. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Harley-Davidson_Audio_50S_1.1.0_en_220509.pdf"
  11136. size="1.14MB" >
  11137. </productMenu>
  11138. <productMenu id="volume"
  11139. type="11" >
  11140. </productMenu>
  11141. <productMenu id="battery"
  11142. type="1" >
  11143. </productMenu>
  11144. <productID id="3156"
  11145. />
  11146. <productGroupable type="0"
  11147. />
  11148. </product>
  11149. <product id="HD50S"
  11150. name="H-D Audio 50S"
  11151. series="50"
  11152. latestVersion="2.0.2"
  11153. show = "0" >
  11154. <productMenu id="protocol"
  11155. type="2" >
  11156. </productMenu>
  11157. <productMenu id="alexa"
  11158. type="0" >
  11159. </productMenu>
  11160. <productMenu id="ota"
  11161. type="0"
  11162. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  11163. size="1150234" >
  11164. </productMenu>
  11165. <productMenu id="wa"
  11166. type="1" >
  11167. </productMenu>
  11168. <productMenu id="sip"
  11169. type="1" >
  11170. </productMenu>
  11171. <productMenu id="meshIntercom"
  11172. type="20" >
  11173. </productMenu>
  11174. <productMenu id="meshIntercom+"
  11175. type="3"
  11176. url="0" >
  11177. <productMenuType version="2.0.9"
  11178. type="2"
  11179. />
  11180. </productMenu>
  11181. <productMenu id="bluetoothIntercom"
  11182. type="1" >
  11183. </productMenu>
  11184. <productMenu id="phone"
  11185. type="1" >
  11186. </productMenu>
  11187. <productMenu id="music"
  11188. type="1" >
  11189. </productMenu>
  11190. <productMenu id="fmradio"
  11191. type="1" >
  11192. </productMenu>
  11193. <productMenu id="deviceSetting"
  11194. type="1"
  11195. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  11196. <productMenuURL version="2.0.9"
  11197. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  11198. />
  11199. </productMenu>
  11200. <productMenu id="quickGuide"
  11201. type="1"
  11202. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Harley-Davidson_Audio_50S_2.0.0_en_220701.pdf"
  11203. size="934KB" >
  11204. </productMenu>
  11205. <productMenu id="userGuide"
  11206. type="1"
  11207. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Harley-Davidson_Audio_50S_2.0.0_en_220701.pdf"
  11208. size="1.14MB" >
  11209. </productMenu>
  11210. <productMenu id="volume"
  11211. type="11" >
  11212. </productMenu>
  11213. <productMenu id="battery"
  11214. type="1" >
  11215. </productMenu>
  11216. <productID id="3213"
  11217. />
  11218. <productGroupable type="0"
  11219. />
  11220. </product>
  11221. <product id="HD50C"
  11222. name="H-D Audio 50C"
  11223. series="50"
  11224. latestVersion="1.0.1"
  11225. show = "0" >
  11226. <productMenu id="protocol"
  11227. type="2" >
  11228. </productMenu>
  11229. <productMenu id="ota"
  11230. type="0" >
  11231. </productMenu>
  11232. <productMenu id="wa"
  11233. type="1" >
  11234. </productMenu>
  11235. <productMenu id="sip"
  11236. type="1" >
  11237. </productMenu>
  11238. <productMenu id="meshIntercom"
  11239. type="20" >
  11240. </productMenu>
  11241. <productMenu id="meshIntercom+"
  11242. type="3"
  11243. url="0" >
  11244. <productMenuType version="1.0.9"
  11245. type="2"
  11246. />
  11247. </productMenu>
  11248. <productMenu id="bluetoothIntercom"
  11249. type="1" >
  11250. </productMenu>
  11251. <productMenu id="phone"
  11252. type="1" >
  11253. </productMenu>
  11254. <productMenu id="music"
  11255. type="1" >
  11256. </productMenu>
  11257. <productMenu id="fmradio"
  11258. type="1" >
  11259. </productMenu>
  11260. <productMenu id="deviceSetting"
  11261. type="1"
  11262. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  11263. <productMenuURL version="1.0.9"
  11264. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  11265. />
  11266. </productMenu>
  11267. <productMenu id="quickGuide"
  11268. type="1"
  11269. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Harley-Davidson_Audio_50C_1.1.0_en_220329.pdf"
  11270. size="344KB" >
  11271. </productMenu>
  11272. <productMenu id="userGuide"
  11273. type="1"
  11274. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Harley-Davidson_Audio_50C_1.1.0_en_220329.pdf"
  11275. size="3.41MB" >
  11276. </productMenu>
  11277. <productMenu id="volume"
  11278. type="11" >
  11279. </productMenu>
  11280. <productMenu id="battery"
  11281. type="1" >
  11282. </productMenu>
  11283. <productID id="3240"
  11284. />
  11285. <productGroupable type="0"
  11286. />
  11287. </product>
  11288. <product id="HD50S"
  11289. name="FURY N04"
  11290. series="Helmet"
  11291. latestVersion="1.0"
  11292. show = "0" >
  11293. <productMenu id="protocol"
  11294. type="2" >
  11295. </productMenu>
  11296. <productMenu id="alexa"
  11297. type="0" >
  11298. </productMenu>
  11299. <productMenu id="ota"
  11300. type="0" >
  11301. </productMenu>
  11302. <productMenu id="wa"
  11303. type="0" >
  11304. </productMenu>
  11305. <productMenu id="meshIntercom"
  11306. type="20" >
  11307. </productMenu>
  11308. <productMenu id="meshIntercom+"
  11309. type="3"
  11310. url="0" >
  11311. <productMenuType version="1.0.9"
  11312. type="2"
  11313. />
  11314. </productMenu>
  11315. <productMenu id="phone"
  11316. type="1" >
  11317. </productMenu>
  11318. <productMenu id="music"
  11319. type="1" >
  11320. </productMenu>
  11321. <productMenu id="fmradio"
  11322. type="1" >
  11323. </productMenu>
  11324. <productMenu id="deviceSetting"
  11325. type="1"
  11326. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_02.xml" >
  11327. <productMenuURL version="1.0.9"
  11328. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_01.xml"
  11329. />
  11330. </productMenu>
  11331. <productMenu id="quickGuide"
  11332. type="1"
  11333. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_FURY_N04_1.0.1_en_230712.pdf"
  11334. size="1.12MB" >
  11335. </productMenu>
  11336. <productMenu id="userGuide"
  11337. type="1"
  11338. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_FURY_N04_1.0.0_en_220907.pdf"
  11339. size="2.0MB" >
  11340. </productMenu>
  11341. <productMenu id="volume"
  11342. type="13" >
  11343. </productMenu>
  11344. <productMenu id="battery"
  11345. type="1" >
  11346. </productMenu>
  11347. <productID id="5553"
  11348. />
  11349. <productGroupable type="0"
  11350. />
  11351. </product>
  11352. <product id="XCOM3Pro"
  11353. name="X-COM3 Pro"
  11354. series="50"
  11355. latestVersion="1.1"
  11356. show = "0" >
  11357. <productMenu id="protocol"
  11358. type="2" >
  11359. </productMenu>
  11360. <productMenu id="alexa"
  11361. type="0" >
  11362. </productMenu>
  11363. <productMenu id="ota"
  11364. type="0" >
  11365. </productMenu>
  11366. <productMenu id="wa"
  11367. type="0" >
  11368. </productMenu>
  11369. <productMenu id="sip"
  11370. type="1" >
  11371. </productMenu>
  11372. <productMenu id="meshIntercom"
  11373. type="30" >
  11374. </productMenu>
  11375. <productMenu id="meshIntercom+"
  11376. type="3"
  11377. url="2" >
  11378. <productMenuType version="1.1"
  11379. type="2"
  11380. />
  11381. </productMenu>
  11382. <productMenu id="waveIntercom"
  11383. type="1" >
  11384. <productMenuType version="1.1"
  11385. type="0"
  11386. />
  11387. </productMenu>
  11388. <productMenu id="bluetoothIntercom"
  11389. type="1" >
  11390. </productMenu>
  11391. <productMenu id="phone"
  11392. type="1" >
  11393. </productMenu>
  11394. <productMenu id="music"
  11395. type="1" >
  11396. </productMenu>
  11397. <productMenu id="fmradio"
  11398. type="1" >
  11399. </productMenu>
  11400. <productMenu id="deviceSetting"
  11401. type="1"
  11402. url="https://api.sena.com/support/SenaNeoApp/XCOM3PRO/NS_XCOM3PRO_06.xml" >
  11403. <productMenuURL version="1.1"
  11404. url="https://api.sena.com/support/SenaNeoApp/XCOM3PRO/NS_XCOM3PRO_03.xml"
  11405. />
  11406. </productMenu>
  11407. <productMenu id="quickGuide"
  11408. type="0"
  11409. url=""
  11410. size="344KB" >
  11411. </productMenu>
  11412. <productMenu id="userGuide"
  11413. type="1"
  11414. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_X-Com_3_Pro_1.1.0_en_240819.pdf"
  11415. size="3.41MB" >
  11416. </productMenu>
  11417. <productMenu id="volume"
  11418. type="11" >
  11419. </productMenu>
  11420. <productMenu id="battery"
  11421. type="1" >
  11422. </productMenu>
  11423. <productID id="321A"
  11424. />
  11425. <productGroupable type="0"
  11426. />
  11427. </product>
  11428. <product id="XCOM3"
  11429. name="X-COM3"
  11430. series="20"
  11431. latestVersion="1.0"
  11432. show = "0" >
  11433. <productMenu id="protocol"
  11434. type="2" >
  11435. </productMenu>
  11436. <productMenu id="sip"
  11437. type="1" >
  11438. </productMenu>
  11439. <productMenu id="bluetoothIntercom"
  11440. type="1" >
  11441. </productMenu>
  11442. <productMenu id="phone"
  11443. type="1" >
  11444. </productMenu>
  11445. <productMenu id="music"
  11446. type="1" >
  11447. </productMenu>
  11448. <productMenu id="fmradio"
  11449. type="1" >
  11450. </productMenu>
  11451. <productMenu id="deviceSetting"
  11452. type="1"
  11453. url="https://api.sena.com/support/SenaNeoApp/XCOM3/NS_QCCXCOM3.xml" >
  11454. </productMenu>
  11455. <productMenu id="quickGuide"
  11456. type="0"
  11457. url=""
  11458. size="934KB" >
  11459. </productMenu>
  11460. <productMenu id="userGuide"
  11461. type="1"
  11462. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_X-Com_3_1.0.0_en_231229.pdf"
  11463. size="1.14MB" >
  11464. </productMenu>
  11465. <productMenu id="volume"
  11466. type="15" >
  11467. </productMenu>
  11468. <productID id="3410"
  11469. />
  11470. <productGroupable type="0"
  11471. />
  11472. </product>
  11473. <product id="X-COM2"
  11474. name="X-COM2"
  11475. series="20"
  11476. latestVersion="1.0.5"
  11477. show = "0" >
  11478. <productMenu id="protocol"
  11479. type="0">
  11480. </productMenu>
  11481. <productMenu id="sip"
  11482. type="1" >
  11483. </productMenu>
  11484. <productMenu id="bluetoothIntercom"
  11485. type="1" >
  11486. </productMenu>
  11487. <productMenu id="intercomSetting"
  11488. type="1" >
  11489. </productMenu>
  11490. <productMenu id="phone"
  11491. type="2" >
  11492. </productMenu>
  11493. <productMenu id="fmradio"
  11494. type="3" >
  11495. </productMenu>
  11496. <productMenu id="deviceSetting"
  11497. type="1"
  11498. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  11499. </productMenu>
  11500. <productMenu id="quickGuide"
  11501. type="1"
  11502. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Nexx_X-COM2_02.pdf"
  11503. size="796KB" >
  11504. </productMenu>
  11505. <productMenu id="userGuide"
  11506. type="1"
  11507. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Nexx_X-COM2_v1.0_02.pdf"
  11508. size="1.90MB" >
  11509. </productMenu>
  11510. <productID id="2030"
  11511. />
  11512. <productGroupable type="1"
  11513. />
  11514. </product>
  11515. <product id="AVAABC"
  11516. name="AVA ABC"
  11517. series="SPIDER"
  11518. latestVersion="1.1"
  11519. show = "0" >
  11520. <productMenu id="protocol"
  11521. type="2" >
  11522. </productMenu>
  11523. <productMenu id="alexa"
  11524. type="0" >
  11525. </productMenu>
  11526. <productMenu id="ota"
  11527. type="0" >
  11528. <productMenuType version="1.0"
  11529. type="0"
  11530. />
  11531. <otaPackages>
  11532. <package
  11533. url="https://api.sena.com/support/OTA/"
  11534. size="2945812"
  11535. />
  11536. </otaPackages>
  11537. </productMenu>
  11538. <productMenu id="wa"
  11539. type="0" >
  11540. </productMenu>
  11541. <productMenu id="meshIntercom"
  11542. type="30" >
  11543. <productMenuType version="1.0"
  11544. type="20"
  11545. />
  11546. </productMenu>
  11547. <productMenu id="meshIntercom+"
  11548. type="3"
  11549. url="2" >
  11550. <productMenuType version="1.0"
  11551. type="2"
  11552. />
  11553. <productMenuURL version="1.0"
  11554. url="0"
  11555. />
  11556. </productMenu>
  11557. <productMenu id="waveIntercom"
  11558. type="1" >
  11559. <productMenuType version="1.0"
  11560. type="0"
  11561. />
  11562. </productMenu>
  11563. <productMenu id="phone"
  11564. type="1" >
  11565. </productMenu>
  11566. <productMenu id="music"
  11567. type="1" >
  11568. </productMenu>
  11569. <productMenu id="musicSharing"
  11570. type="0" >
  11571. </productMenu>
  11572. <productMenu id="deviceSetting"
  11573. type="1"
  11574. url="https://api.sena.com/support/SenaNeoApp/AVA/NS_AVA_AIROHA_02.xml" >
  11575. <productMenuURL version="1.0"
  11576. url="https://api.sena.com/support/SenaNeoApp/AVA/NS_AVA_AIROHA.xml"
  11577. />
  11578. </productMenu>
  11579. <productMenu id="quickGuide"
  11580. type="1"
  11581. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ABC_1.0.0_en_230315.pdf"
  11582. size="1.12MB" >
  11583. </productMenu>
  11584. <productMenu id="userGuide"
  11585. type="1"
  11586. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_ABC_1.1.0_en_260508.pdf"
  11587. size="2.0MB" >
  11588. </productMenu>
  11589. <productMenu id="volume"
  11590. type="12" >
  11591. </productMenu>
  11592. <productMenu id="battery"
  11593. type="1" >
  11594. </productMenu>
  11595. <productID id="6808"
  11596. />
  11597. <productGroupable type="0"
  11598. />
  11599. </product>
  11600. <product id="ADVANCEProCOM2"
  11601. name="ADVANCE ProCOM 2"
  11602. series="Helmet"
  11603. latestVersion="0.5"
  11604. latestVersionVoicePrompt="0.3"
  11605. show = "-1" >
  11606. <productMenu id="protocol"
  11607. type="2" >
  11608. </productMenu>
  11609. <productMenu id="ota"
  11610. type="2" >
  11611. <otaLanguages>
  11612. <otaLanguage
  11613. id="0"
  11614. name="English"
  11615. package="0"
  11616. />
  11617. <otaLanguage
  11618. id="0"
  11619. name="French"
  11620. package="1"
  11621. />
  11622. <otaLanguage
  11623. id="0"
  11624. name="Spanish"
  11625. package="2"
  11626. />
  11627. <otaLanguage
  11628. id="0"
  11629. name="Italian"
  11630. package="3"
  11631. />
  11632. <otaLanguage
  11633. id="0"
  11634. name="German"
  11635. package="4"
  11636. />
  11637. <otaLanguage
  11638. id="0"
  11639. name="Dutch"
  11640. package="5"
  11641. />
  11642. <otaLanguage
  11643. id="0"
  11644. name="Russian"
  11645. package="6"
  11646. />
  11647. <otaLanguage
  11648. id="0"
  11649. name="Chinese"
  11650. package="7"
  11651. />
  11652. <otaLanguage
  11653. id="0"
  11654. name="Korean"
  11655. package="8"
  11656. />
  11657. <otaLanguage
  11658. id="0"
  11659. name="Japanese"
  11660. package="9"
  11661. />
  11662. <otaLanguage
  11663. id="0"
  11664. name="Finnish"
  11665. package="10"
  11666. />
  11667. <otaLanguage
  11668. id="0"
  11669. name="Polish"
  11670. package="11"
  11671. />
  11672. </otaLanguages>
  11673. <otaPackages>
  11674. <package
  11675. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0.img"
  11676. size="5183988"
  11677. />
  11678. <package
  11679. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-fr-FR.img"
  11680. size="5183988"
  11681. />
  11682. <package
  11683. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-es-ES.img"
  11684. size="5183988"
  11685. />
  11686. <package
  11687. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-it-IT.img"
  11688. size="5183988"
  11689. />
  11690. <package
  11691. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-de-DE.img"
  11692. size="5183988"
  11693. />
  11694. <package
  11695. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-nl-NL.img"
  11696. size="5183988"
  11697. />
  11698. <package
  11699. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-ru-RU.img"
  11700. size="5183988"
  11701. />
  11702. <package
  11703. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-cmn-CN.img"
  11704. size="5183988"
  11705. />
  11706. <package
  11707. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-ko-KR.img"
  11708. size="5183988"
  11709. />
  11710. <package
  11711. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-ja-JP.img"
  11712. size="5183988"
  11713. />
  11714. <package
  11715. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-fi-FI.img"
  11716. size="5183988"
  11717. />
  11718. <package
  11719. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-pl-PL.img"
  11720. size="5183988"
  11721. />
  11722. </otaPackages>
  11723. </productMenu>
  11724. <productMenu id="wa"
  11725. type="0" >
  11726. </productMenu>
  11727. <productMenu id="meshIntercom"
  11728. type="30" >
  11729. </productMenu>
  11730. <productMenu id="meshIntercom+"
  11731. type="3"
  11732. url="2" >
  11733. </productMenu>
  11734. <productMenu id="waveIntercom"
  11735. type="1" >
  11736. </productMenu>
  11737. <productMenu id="fmradio"
  11738. type="1" >
  11739. </productMenu>
  11740. <productMenu id="phone"
  11741. type="0" >
  11742. </productMenu>
  11743. <productMenu id="music"
  11744. type="1" >
  11745. </productMenu>
  11746. <productMenu id="musicSharing"
  11747. type="0" >
  11748. </productMenu>
  11749. <productMenu id="deviceSetting"
  11750. type="1"
  11751. url="https://api.sena.com/support/test/xml/NS_PROCOM_AIROHA_Test.xml" >
  11752. </productMenu>
  11753. <productMenu id="quickGuide"
  11754. type="0"
  11755. url=""
  11756. size="1.12MB" >
  11757. </productMenu>
  11758. <productMenu id="userGuide"
  11759. type="1"
  11760. url=""
  11761. size="2.0MB" >
  11762. </productMenu>
  11763. <productMenu id="videoGuide"
  11764. type="0"
  11765. url=""
  11766. size="3.41MB" >
  11767. </productMenu>
  11768. <productMenu id="connectGuide"
  11769. type="1"
  11770. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  11771. size="1.12MB" >
  11772. </productMenu>
  11773. <productMenu id="volume"
  11774. type="16" >
  11775. </productMenu>
  11776. <productMenu id="battery"
  11777. type="1" >
  11778. </productMenu>
  11779. <productID id="6A85"
  11780. />
  11781. <productGroupable type="0"
  11782. />
  11783. </product>
  11784. <product id="TRIUMPH60X"
  11785. name="TRIUMPH 60X"
  11786. series="60"
  11787. latestVersion="1.0"
  11788. latestVersionMesh="0.19"
  11789. latestVersionVoicePrompt="1.7"
  11790. show = "-1" >
  11791. <productMenu id="protocol"
  11792. type="2" >
  11793. </productMenu>
  11794. <productMenu id="ota"
  11795. type="0" >
  11796. <otaLanguages>
  11797. <otaLanguage
  11798. id="0"
  11799. name="English"
  11800. package="0"
  11801. />
  11802. <otaLanguage
  11803. id="0"
  11804. name="French"
  11805. package="1"
  11806. />
  11807. <otaLanguage
  11808. id="0"
  11809. name="Spanish"
  11810. package="2"
  11811. />
  11812. <otaLanguage
  11813. id="0"
  11814. name="Italian"
  11815. package="3"
  11816. />
  11817. <otaLanguage
  11818. id="0"
  11819. name="German"
  11820. package="4"
  11821. />
  11822. <otaLanguage
  11823. id="0"
  11824. name="Dutch"
  11825. package="5"
  11826. />
  11827. <otaLanguage
  11828. id="0"
  11829. name="Russian"
  11830. package="6"
  11831. />
  11832. <otaLanguage
  11833. id="0"
  11834. name="Chinese"
  11835. package="7"
  11836. />
  11837. <otaLanguage
  11838. id="0"
  11839. name="Korean"
  11840. package="8"
  11841. />
  11842. <otaLanguage
  11843. id="0"
  11844. name="Japanese"
  11845. package="9"
  11846. />
  11847. <otaLanguage
  11848. id="0"
  11849. name="Finnish"
  11850. package="10"
  11851. />
  11852. <otaLanguage
  11853. id="0"
  11854. name="Polish"
  11855. package="11"
  11856. />
  11857. </otaLanguages>
  11858. <otaPackages>
  11859. <package
  11860. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0.1-build1.img"
  11861. size="5183988"
  11862. />
  11863. <package
  11864. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0.1-build1-fr-FR.img"
  11865. size="5183988"
  11866. />
  11867. <package
  11868. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0.1-build1-es-ES.img"
  11869. size="5183988"
  11870. />
  11871. <package
  11872. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0.1-build1-it-IT.img"
  11873. size="5183988"
  11874. />
  11875. <package
  11876. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0.1-build1-de-DE.img"
  11877. size="5183988"
  11878. />
  11879. <package
  11880. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0.1-build1-nl-NL.img"
  11881. size="5183988"
  11882. />
  11883. <package
  11884. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0.1-build1-ru-RU.img"
  11885. size="5183988"
  11886. />
  11887. <package
  11888. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0.1-build1-cmn-CN.img"
  11889. size="5183988"
  11890. />
  11891. <package
  11892. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0.1-build1-ko-KR.img"
  11893. size="5183988"
  11894. />
  11895. <package
  11896. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0.1-build1-ja-JP.img"
  11897. size="5183988"
  11898. />
  11899. <package
  11900. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0.1-build1-fi-FI.img"
  11901. size="5183988"
  11902. />
  11903. <package
  11904. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0.1-build1-pl-PL.img"
  11905. size="5183988"
  11906. />
  11907. </otaPackages>
  11908. </productMenu>
  11909. <productMenu id="wa"
  11910. type="0" >
  11911. </productMenu>
  11912. <productMenu id="sip"
  11913. type="1" >
  11914. </productMenu>
  11915. <productMenu id="led"
  11916. type="1" >
  11917. </productMenu>
  11918. <productMenu id="illusion"
  11919. type="1" >
  11920. </productMenu>
  11921. <productMenu id="meshIntercom"
  11922. type="30" >
  11923. </productMenu>
  11924. <productMenu id="meshIntercom+"
  11925. type="3"
  11926. url="2" >
  11927. </productMenu>
  11928. <productMenu id="bluetoothIntercom"
  11929. type="1" >
  11930. </productMenu>
  11931. <productMenu id="fmradio"
  11932. type="1"
  11933. url="1" >
  11934. </productMenu>
  11935. <productMenu id="mic"
  11936. type="0" >
  11937. </productMenu>
  11938. <productMenu id="phone"
  11939. type="1" >
  11940. </productMenu>
  11941. <productMenu id="music"
  11942. type="1" >
  11943. </productMenu>
  11944. <productMenu id="musicSharing"
  11945. type="0" >
  11946. </productMenu>
  11947. <productMenu id="deviceSetting"
  11948. type="1"
  11949. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml" >
  11950. </productMenu>
  11951. <productMenu id="quickGuide"
  11952. type="0"
  11953. url=""
  11954. size="1.12MB" >
  11955. </productMenu>
  11956. <productMenu id="userGuide"
  11957. type="1"
  11958. url=""
  11959. size="2.0MB" >
  11960. </productMenu>
  11961. <productMenu id="videoGuide"
  11962. type="0"
  11963. url=""
  11964. size="3.41MB" >
  11965. </productMenu>
  11966. <productMenu id="keySettings"
  11967. type="1"
  11968. url="0|https://api.sena.com/support/Common/CustomButton/60x_key_info_20260427.json" >
  11969. </productMenu>
  11970. <productMenu id="volume"
  11971. type="13" >
  11972. </productMenu>
  11973. <productMenu id="volume+"
  11974. type="2"
  11975. url="0x6004" >
  11976. </productMenu>
  11977. <productMenu id="battery"
  11978. type="1" >
  11979. </productMenu>
  11980. <productID id="6A1C"
  11981. />
  11982. <productGroupable type="0"
  11983. />
  11984. </product>
  11985. <product id="Triumph_50S"
  11986. name="Triumph 50S"
  11987. series="50"
  11988. latestVersion="1.5"
  11989. show = "0" >
  11990. <productMenu id="protocol"
  11991. type="2" >
  11992. </productMenu>
  11993. <productMenu id="alexa"
  11994. type="0" >
  11995. </productMenu>
  11996. <productMenu id="ota"
  11997. type="0"
  11998. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  11999. size="1150234" >
  12000. </productMenu>
  12001. <productMenu id="wa"
  12002. type="1" >
  12003. </productMenu>
  12004. <productMenu id="sip"
  12005. type="1" >
  12006. </productMenu>
  12007. <productMenu id="meshIntercom"
  12008. type="20" >
  12009. </productMenu>
  12010. <productMenu id="bluetoothIntercom"
  12011. type="1" >
  12012. </productMenu>
  12013. <productMenu id="meshIntercom+"
  12014. type="3"
  12015. url="2" >
  12016. <productMenuType version="1.2.9"
  12017. type="2"
  12018. />
  12019. <productMenuURL version="1.2.9"
  12020. url="0"
  12021. />
  12022. </productMenu>
  12023. <productMenu id="waveIntercom"
  12024. type="1" >
  12025. <productMenuType version="1.2.9"
  12026. type="0"
  12027. />
  12028. </productMenu>
  12029. <productMenu id="phone"
  12030. type="1" >
  12031. </productMenu>
  12032. <productMenu id="music"
  12033. type="1" >
  12034. </productMenu>
  12035. <productMenu id="fmradio"
  12036. type="1" >
  12037. </productMenu>
  12038. <productMenu id="deviceSetting"
  12039. type="1"
  12040. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  12041. <productMenuURL version="1.2.9"
  12042. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  12043. />
  12044. <productMenuURL version="1.0"
  12045. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  12046. />
  12047. </productMenu>
  12048. <productMenu id="quickGuide"
  12049. type="1"
  12050. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Triumph_50S_1.3.0_en_220111.pdf"
  12051. size="934KB" >
  12052. </productMenu>
  12053. <productMenu id="userGuide"
  12054. type="1"
  12055. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Triumph_50S_1.6.0_us_250529.pdf"
  12056. size="1.14MB" >
  12057. </productMenu>
  12058. <productMenu id="volume"
  12059. type="11" >
  12060. </productMenu>
  12061. <productMenu id="battery"
  12062. type="1" >
  12063. </productMenu>
  12064. <productID id="3264"
  12065. />
  12066. <productGroupable type="0"
  12067. />
  12068. </product>
  12069. <product id="RE50S"
  12070. name="RE 50S"
  12071. series="50"
  12072. latestVersion="2.7"
  12073. show = "0" >
  12074. <productMenu id="protocol"
  12075. type="2" >
  12076. </productMenu>
  12077. <productMenu id="alexa"
  12078. type="0" >
  12079. </productMenu>
  12080. <productMenu id="ota"
  12081. type="0"
  12082. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  12083. size="1150234" >
  12084. </productMenu>
  12085. <productMenu id="wa"
  12086. type="1" >
  12087. </productMenu>
  12088. <productMenu id="sip"
  12089. type="1" >
  12090. </productMenu>
  12091. <productMenu id="meshIntercom"
  12092. type="30" >
  12093. </productMenu>
  12094. <productMenu id="meshIntercom+"
  12095. type="3"
  12096. url="2" >
  12097. <productMenuType version="2.5"
  12098. type="2"
  12099. />
  12100. </productMenu>
  12101. <productMenu id="waveIntercom"
  12102. type="1" >
  12103. <productMenuType version="2.5"
  12104. type="0"
  12105. />
  12106. </productMenu>
  12107. <productMenu id="bluetoothIntercom"
  12108. type="1" >
  12109. </productMenu>
  12110. <productMenu id="phone"
  12111. type="1" >
  12112. </productMenu>
  12113. <productMenu id="music"
  12114. type="1" >
  12115. </productMenu>
  12116. <productMenu id="fmradio"
  12117. type="1" >
  12118. </productMenu>
  12119. <productMenu id="deviceSetting"
  12120. type="1"
  12121. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  12122. <productMenuURL version="2.5.9"
  12123. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  12124. />
  12125. </productMenu>
  12126. <productMenu id="quickGuide"
  12127. type="1"
  12128. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_RoyalEnfield_50S_2.3.0_en_240625.pdf"
  12129. size="934KB" >
  12130. </productMenu>
  12131. <productMenu id="userGuide"
  12132. type="1"
  12133. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_RoyalEnfield_50S_2.8.0_en_250522.pdf"
  12134. size="1.14MB" >
  12135. </productMenu>
  12136. <productMenu id="videoGuide"
  12137. type="0"
  12138. url=""
  12139. size="3.41MB" >
  12140. </productMenu>
  12141. <productMenu id="volume"
  12142. type="11" >
  12143. </productMenu>
  12144. <productMenu id="battery"
  12145. type="1" >
  12146. </productMenu>
  12147. <productID id="321C"
  12148. />
  12149. <productGroupable type="0"
  12150. />
  12151. </product>
  12152. <product id="BMW_HELMET_II_U1"
  12153. name="BMW HELMET II U1"
  12154. series="50"
  12155. latestVersion="1.0"
  12156. show = "0" >
  12157. <productMenu id="protocol"
  12158. type="2" >
  12159. </productMenu>
  12160. <productMenu id="alexa"
  12161. type="0" >
  12162. </productMenu>
  12163. <productMenu id="sip"
  12164. type="1" >
  12165. </productMenu>
  12166. <productMenu id="meshIntercom"
  12167. type="20" >
  12168. </productMenu>
  12169. <productMenu id="bluetoothIntercom"
  12170. type="1" >
  12171. </productMenu>
  12172. <productMenu id="bluetoothIntercom2"
  12173. type="1" >
  12174. </productMenu>
  12175. <productMenu id="phone"
  12176. type="1" >
  12177. </productMenu>
  12178. <productMenu id="music"
  12179. type="1" >
  12180. </productMenu>
  12181. <productMenu id="fmradio"
  12182. type="1" >
  12183. </productMenu>
  12184. <productMenu id="deviceSetting"
  12185. type="1"
  12186. url="https://api.sena.com/support/bmwComU1/BMW_HELMET_II_U1/NS_BMW_HELMET_II_U1.xml" >
  12187. </productMenu>
  12188. <productMenu id="quickGuide"
  12189. type="1"
  12190. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_50S_03.pdf"
  12191. size="934KB" >
  12192. </productMenu>
  12193. <productMenu id="userGuide"
  12194. type="1"
  12195. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_50S_1.2.0_en_200910.pdf"
  12196. size="1.14MB" >
  12197. </productMenu>
  12198. <productMenu id="volume"
  12199. type="11" >
  12200. </productMenu>
  12201. <productMenu id="battery"
  12202. type="1" >
  12203. </productMenu>
  12204. <productID id="3260"
  12205. />
  12206. <productGroupable type="0"
  12207. />
  12208. </product>
  12209. <product id="OUTRUSHR"
  12210. name="CX935"
  12211. series="Helmet"
  12212. latestVersion="2.1"
  12213. show = "-1" >
  12214. <productMenu id="protocol"
  12215. type="3">
  12216. </productMenu>
  12217. <productMenu id="sip"
  12218. type="1" >
  12219. </productMenu>
  12220. <productMenu id="bluetoothIntercom"
  12221. type="1" >
  12222. </productMenu>
  12223. <productMenu id="phone"
  12224. type="1" >
  12225. </productMenu>
  12226. <productMenu id="fmradio"
  12227. type="0" >
  12228. </productMenu>
  12229. <productMenu id="deviceSetting"
  12230. type="1"
  12231. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  12232. </productMenu>
  12233. <productMenu id="userGuide"
  12234. type="1"
  12235. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_1.3.0_en_250120.pdf"
  12236. size="660KB" >
  12237. </productMenu>
  12238. <productID id="5446"
  12239. />
  12240. <productGroupable type="0"
  12241. />
  12242. </product>
  12243. <product id="LSE_01"
  12244. name="LSE-01"
  12245. series="SF"
  12246. latestVersion="1.2.3"
  12247. show = "0" >
  12248. <productMenu id="protocol"
  12249. type="1"
  12250. url="3">
  12251. </productMenu>
  12252. <productMenu id="sip"
  12253. type="1" >
  12254. </productMenu>
  12255. <productMenu id="bluetoothIntercom"
  12256. type="1" >
  12257. </productMenu>
  12258. <productMenu id="phone"
  12259. type="1" >
  12260. </productMenu>
  12261. <productMenu id="music"
  12262. type="1" >
  12263. </productMenu>
  12264. <productMenu id="fmradio"
  12265. type="1" >
  12266. </productMenu>
  12267. <productMenu id="deviceSetting"
  12268. type="1"
  12269. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  12270. <productMenuURL version="1.1"
  12271. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  12272. />
  12273. <productMenuURL version="1.0"
  12274. url="https://api.sena.com/support/SenaUtility/LSE-01/DSup_LSE-01.xml"
  12275. />
  12276. </productMenu>
  12277. <productMenu id="quickGuide"
  12278. type="1"
  12279. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Louis_LSE-01_1.1.0_en_230512.pdf"
  12280. size="607KB" >
  12281. </productMenu>
  12282. <productMenu id="userGuide"
  12283. type="1"
  12284. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Louis_LSE-01_1.2.0_en_230512.pdf"
  12285. size="1.91MB" >
  12286. </productMenu>
  12287. <productMenu id="volume"
  12288. type="4" >
  12289. </productMenu>
  12290. <productID id="5416"
  12291. />
  12292. <productGroupable type="0"
  12293. />
  12294. </product>
  12295. <product id="AGV_ARK"
  12296. name="AGV ARK"
  12297. series="SF"
  12298. latestVersion="1.0.3"
  12299. show = "0" >
  12300. <productMenu id="protocol"
  12301. type="1"
  12302. url="3">
  12303. </productMenu>
  12304. <productMenu id="sip"
  12305. type="1" >
  12306. </productMenu>
  12307. <productMenu id="bluetoothIntercom"
  12308. type="1" >
  12309. </productMenu>
  12310. <productMenu id="phone"
  12311. type="1" >
  12312. </productMenu>
  12313. <productMenu id="music"
  12314. type="1" >
  12315. </productMenu>
  12316. <productMenu id="fmradio"
  12317. type="1" >
  12318. </productMenu>
  12319. <productMenu id="deviceSetting"
  12320. type="1"
  12321. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  12322. </productMenu>
  12323. <productMenu id="quickGuide"
  12324. type="1"
  12325. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ARK_1.1.0_en_230511_D00131.pdf"
  12326. size="607KB" >
  12327. </productMenu>
  12328. <productMenu id="userGuide"
  12329. type="1"
  12330. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ARK_1.1.0_en_230511.pdf"
  12331. size="1.91MB" >
  12332. </productMenu>
  12333. <productMenu id="volume"
  12334. type="4" >
  12335. </productMenu>
  12336. <productID id="5420"
  12337. />
  12338. <productGroupable type="0"
  12339. />
  12340. </product>
  12341. <product id="KLIM_KRIOS"
  12342. name="KLIM Krios"
  12343. series="10"
  12344. latestVersion="1.1.2"
  12345. show = "0" >
  12346. <productMenu id="protocol"
  12347. type="0">
  12348. </productMenu>
  12349. <productMenu id="sip"
  12350. type="1" >
  12351. </productMenu>
  12352. <productMenu id="bluetoothIntercom"
  12353. type="1" >
  12354. </productMenu>
  12355. <productMenu id="phone"
  12356. type="2" >
  12357. </productMenu>
  12358. <productMenu id="fmradio"
  12359. type="3" >
  12360. </productMenu>
  12361. <productMenu id="deviceSetting"
  12362. type="1"
  12363. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DS_KLIM_v0101.xml" >
  12364. <productMenuURL version="1.0"
  12365. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DeviceSetting_KLIM_KRIOS.xml"
  12366. />
  12367. </productMenu>
  12368. <productMenu id="quickGuide"
  12369. type="1"
  12370. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Krios_02.pdf"
  12371. size="649KB" >
  12372. </productMenu>
  12373. <productMenu id="userGuide"
  12374. type="1"
  12375. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Krios_v1.1_02.pdf"
  12376. size="1.43MB" >
  12377. </productMenu>
  12378. <productID id="5910"
  12379. />
  12380. <productGroupable type="0"
  12381. />
  12382. </product>
  12383. <product id="POLARIS_SLINGSHOT"
  12384. name="Polaris Slingshot"
  12385. series="10"
  12386. latestVersion="1.1.2"
  12387. show = "0" >
  12388. <productMenu id="protocol"
  12389. type="0">
  12390. </productMenu>
  12391. <productMenu id="sip"
  12392. type="1" >
  12393. </productMenu>
  12394. <productMenu id="bluetoothIntercom"
  12395. type="1" >
  12396. </productMenu>
  12397. <productMenu id="phone"
  12398. type="2" >
  12399. </productMenu>
  12400. <productMenu id="fmradio"
  12401. type="3" >
  12402. </productMenu>
  12403. <productMenu id="deviceSetting"
  12404. type="1"
  12405. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DS_POLARIS_v0101.xml" >
  12406. <productMenuURL version="1.0"
  12407. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DeviceSetting_POLARIS_SLINGSHOT.xml"
  12408. />
  12409. </productMenu>
  12410. <productMenu id="quickGuide"
  12411. type="1"
  12412. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Polaris_01.pdf"
  12413. size="689KB" >
  12414. </productMenu>
  12415. <productMenu id="userGuide"
  12416. type="1"
  12417. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Polaris_v1.1_01.pdf"
  12418. size="1.43MB" >
  12419. </productMenu>
  12420. <productID id="5920"
  12421. />
  12422. <productGroupable type="0"
  12423. />
  12424. </product>
  12425. <product id="DWO6"
  12426. name="SEDICI DWO6-PRO"
  12427. series="10"
  12428. latestVersion="1.0.2"
  12429. show = "0" >
  12430. <productMenu id="protocol"
  12431. type="0">
  12432. </productMenu>
  12433. <productMenu id="sip"
  12434. type="1" >
  12435. </productMenu>
  12436. <productMenu id="bluetoothIntercom"
  12437. type="1" >
  12438. </productMenu>
  12439. <productMenu id="phone"
  12440. type="2" >
  12441. </productMenu>
  12442. <productMenu id="fmradio"
  12443. type="3" >
  12444. </productMenu>
  12445. <productMenu id="deviceSetting"
  12446. type="1"
  12447. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  12448. </productMenu>
  12449. <productMenu id="quickGuide"
  12450. type="1"
  12451. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO-6_PRO_1.1.0_en_230510.pdf"
  12452. size="529KB" >
  12453. </productMenu>
  12454. <productMenu id="userGuide"
  12455. type="1"
  12456. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO-6_PRO_1.1.0_en_230510.pdf"
  12457. size="4.09MB" >
  12458. </productMenu>
  12459. <productID id="6112"
  12460. />
  12461. <productGroupable type="0"
  12462. />
  12463. </product>
  12464. <product id="DWO6A"
  12465. name="SEDICI DWO-6"
  12466. series="10"
  12467. latestVersion="1.0.2"
  12468. show = "0" >
  12469. <productMenu id="protocol"
  12470. type="0">
  12471. </productMenu>
  12472. <productMenu id="sip"
  12473. type="1" >
  12474. </productMenu>
  12475. <productMenu id="bluetoothIntercom"
  12476. type="1" >
  12477. </productMenu>
  12478. <productMenu id="phone"
  12479. type="2" >
  12480. </productMenu>
  12481. <productMenu id="fmradio"
  12482. type="3" >
  12483. </productMenu>
  12484. <productMenu id="deviceSetting"
  12485. type="1"
  12486. url="https://api.sena.com/support/SenaUtility/DWO6/DS_DWO6A.xml" >
  12487. </productMenu>
  12488. <productMenu id="quickGuide"
  12489. type="1"
  12490. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO-6_1.1.0_en_230509.pdf"
  12491. size="522KB" >
  12492. </productMenu>
  12493. <productMenu id="userGuide"
  12494. type="1"
  12495. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO-6_1.1.0_en_230504.pdf"
  12496. size="2.71MB" >
  12497. </productMenu>
  12498. <productID id="6114"
  12499. />
  12500. <productGroupable type="0"
  12501. />
  12502. </product>
  12503. <product id="3SPLUS"
  12504. name="ZILL"
  12505. series="3"
  12506. latestVersion="1.0.4"
  12507. show = "0" >
  12508. <productMenu id="protocol"
  12509. type="0">
  12510. </productMenu>
  12511. <productMenu id="sip"
  12512. type="1" >
  12513. </productMenu>
  12514. <productMenu id="bluetoothIntercom"
  12515. type="1" >
  12516. </productMenu>
  12517. <productMenu id="deviceSetting"
  12518. type="1"
  12519. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  12520. </productMenu>
  12521. <productMenu id="quickGuide"
  12522. type="1"
  12523. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  12524. size="842KB" >
  12525. </productMenu>
  12526. <productMenu id="userGuide"
  12527. type="1"
  12528. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_1.1.0_en_230623.pdf"
  12529. size="1.02MB" >
  12530. </productMenu>
  12531. <productID id="6335"
  12532. />
  12533. <productGroupable type="0"
  12534. />
  12535. </product>
  12536. <product id="HD50S"
  12537. name="Boom! Audio 30K"
  12538. series="30"
  12539. latestVersion="3.4"
  12540. show = "0" >
  12541. <productMenu id="protocol"
  12542. type="1"
  12543. url="0">
  12544. </productMenu>
  12545. <productMenu id="wa"
  12546. type="0" >
  12547. </productMenu>
  12548. <productMenu id="sip"
  12549. type="1" >
  12550. </productMenu>
  12551. <productMenu id="meshIntercom"
  12552. type="20" >
  12553. <productMenuType version="2.9.9"
  12554. type="10"
  12555. />
  12556. </productMenu>
  12557. <productMenu id="bluetoothIntercom"
  12558. type="1" >
  12559. </productMenu>
  12560. <productMenu id="phone"
  12561. type="1" >
  12562. </productMenu>
  12563. <productMenu id="music"
  12564. type="1" >
  12565. </productMenu>
  12566. <productMenu id="fmradio"
  12567. type="1" >
  12568. </productMenu>
  12569. <productMenu id="deviceSetting"
  12570. type="1"
  12571. url="https://api.sena.com/support/SenaNeoApp/30K/NS_HD30K_v0303.xml">
  12572. <productMenuURL version="3.2"
  12573. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0301.xml"
  12574. />
  12575. <productMenuURL version="3.0"
  12576. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml"
  12577. />
  12578. <productMenuURL version="2.2"
  12579. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  12580. />
  12581. </productMenu>
  12582. <productMenu id="quickGuide"
  12583. type="1"
  12584. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  12585. size="1.06MB" >
  12586. </productMenu>
  12587. <productMenu id="userGuide"
  12588. type="1"
  12589. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  12590. size="3.15MB" >
  12591. </productMenu>
  12592. <productMenu id="volume"
  12593. type="1" >
  12594. </productMenu>
  12595. <productID id="3112"
  12596. />
  12597. <productGroupable type="0"
  12598. />
  12599. </product>
  12600. <product id="HD50S"
  12601. name="Boom! Audio N02"
  12602. series="30"
  12603. latestVersion="3.1"
  12604. show = "0" >
  12605. <productMenu id="protocol"
  12606. type="1"
  12607. url="0">
  12608. </productMenu>
  12609. <productMenu id="wa"
  12610. type="2" >
  12611. </productMenu>
  12612. <productMenu id="sip"
  12613. type="1" >
  12614. </productMenu>
  12615. <productMenu id="meshIntercom"
  12616. type="20" >
  12617. <productMenuType version="2.9.9"
  12618. type="10"
  12619. />
  12620. </productMenu>
  12621. <productMenu id="bluetoothIntercom"
  12622. type="1" >
  12623. </productMenu>
  12624. <productMenu id="phone"
  12625. type="1" >
  12626. </productMenu>
  12627. <productMenu id="music"
  12628. type="1" >
  12629. </productMenu>
  12630. <productMenu id="fmradio"
  12631. type="1" >
  12632. </productMenu>
  12633. <productMenu id="deviceSetting"
  12634. type="1"
  12635. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml">
  12636. <productMenuURL version="2.2"
  12637. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  12638. />
  12639. </productMenu>
  12640. <productMenu id="quickGuide"
  12641. type="1"
  12642. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N02_2.2.0_en_220906.pdf"
  12643. size="1.06MB" >
  12644. </productMenu>
  12645. <productMenu id="userGuide"
  12646. type="1"
  12647. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N02_2.2.0_en_220906.pdf"
  12648. size="3.15MB" >
  12649. </productMenu>
  12650. <productMenu id="volume"
  12651. type="2" >
  12652. </productMenu>
  12653. <productID id="3114"
  12654. />
  12655. <productGroupable type="0"
  12656. />
  12657. </product>
  12658. <product id="HD50S"
  12659. name="Boom Audio 20S"
  12660. series="50"
  12661. latestVersion="2.5.2"
  12662. show = "0" >
  12663. <productMenu id="protocol"
  12664. type="0">
  12665. </productMenu>
  12666. <productMenu id="sip"
  12667. type="1" >
  12668. <productMenuType version="1.0"
  12669. type="0"
  12670. />
  12671. </productMenu>
  12672. <productMenu id="bluetoothIntercom"
  12673. type="1" >
  12674. <productMenuType version="1.0"
  12675. type="0"
  12676. />
  12677. </productMenu>
  12678. <productMenu id="intercomSetting"
  12679. type="1" >
  12680. </productMenu>
  12681. <productMenu id="phone"
  12682. type="2" >
  12683. </productMenu>
  12684. <productMenu id="fmradio"
  12685. type="3" >
  12686. </productMenu>
  12687. <productMenu id="deviceSetting"
  12688. type="1"
  12689. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  12690. <productMenuURL version="2.4"
  12691. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  12692. />
  12693. <productMenuURL version="1.5"
  12694. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  12695. />
  12696. <productMenuURL version="1.4.1"
  12697. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  12698. />
  12699. <productMenuURL version="1.1"
  12700. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  12701. />
  12702. <productMenuURL version="1.0"
  12703. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  12704. />
  12705. </productMenu>
  12706. <productMenu id="quickGuide"
  12707. type="1"
  12708. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  12709. size="264KB" >
  12710. </productMenu>
  12711. <productMenu id="userGuide"
  12712. type="1"
  12713. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  12714. size="3.09MB" >
  12715. </productMenu>
  12716. <productMenu id="connectGuide"
  12717. type="1"
  12718. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  12719. size="1.12MB" >
  12720. </productMenu>
  12721. <productID id="4210"
  12722. />
  12723. <productProductKey key="11"
  12724. />
  12725. <productID id="4230"
  12726. />
  12727. <productProductKey key="11"
  12728. />
  12729. <productGroupable type="1"
  12730. />
  12731. </product>
  12732. <product id="HD50S"
  12733. name="Boom Audio 20S EVO"
  12734. series="50"
  12735. latestVersion="2.5.2"
  12736. show = "0" >
  12737. <productMenu id="protocol"
  12738. type="0">
  12739. </productMenu>
  12740. <productMenu id="sip"
  12741. type="1" >
  12742. <productMenuType version="1.0"
  12743. type="0"
  12744. />
  12745. </productMenu>
  12746. <productMenu id="bluetoothIntercom"
  12747. type="1" >
  12748. <productMenuType version="1.0"
  12749. type="0"
  12750. />
  12751. </productMenu>
  12752. <productMenu id="intercomSetting"
  12753. type="1" >
  12754. </productMenu>
  12755. <productMenu id="phone"
  12756. type="2" >
  12757. </productMenu>
  12758. <productMenu id="fmradio"
  12759. type="3" >
  12760. </productMenu>
  12761. <productMenu id="deviceSetting"
  12762. type="1"
  12763. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  12764. <productMenuURL version="2.4"
  12765. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  12766. />
  12767. <productMenuURL version="1.5"
  12768. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  12769. />
  12770. <productMenuURL version="1.4.1"
  12771. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  12772. />
  12773. <productMenuURL version="1.1"
  12774. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  12775. />
  12776. <productMenuURL version="1.0"
  12777. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  12778. />
  12779. </productMenu>
  12780. <productMenu id="quickGuide"
  12781. type="1"
  12782. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  12783. size="321KB" >
  12784. </productMenu>
  12785. <productMenu id="userGuide"
  12786. type="1"
  12787. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  12788. size="2.46MB" >
  12789. </productMenu>
  12790. <productID id="4230"
  12791. />
  12792. <productProductKey key="27"
  12793. />
  12794. <productGroupable type="1"
  12795. />
  12796. </product>
  12797. <product id="HD50S"
  12798. name="Boom! Audio 10S"
  12799. series="50"
  12800. latestVersion="1.1.3"
  12801. show = "0" >
  12802. <productMenu id="protocol"
  12803. type="0">
  12804. </productMenu>
  12805. <productMenu id="sip"
  12806. type="1" >
  12807. </productMenu>
  12808. <productMenu id="bluetoothIntercom"
  12809. type="1" >
  12810. </productMenu>
  12811. <productMenu id="phone"
  12812. type="2" >
  12813. </productMenu>
  12814. <productMenu id="fmradio"
  12815. type="3" >
  12816. </productMenu>
  12817. <productMenu id="deviceSetting"
  12818. type="1"
  12819. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml" >
  12820. </productMenu>
  12821. <productMenu id="quickGuide"
  12822. type="1"
  12823. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  12824. size="538KB" >
  12825. </productMenu>
  12826. <productMenu id="userGuide"
  12827. type="1"
  12828. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  12829. size="1.55MB" >
  12830. </productMenu>
  12831. <productID id="5532"
  12832. />
  12833. <productGroupable type="0"
  12834. />
  12835. </product>
  12836. <product id="HD50S"
  12837. name="Boom! Audio N01 10R"
  12838. series="50"
  12839. latestVersion="1.1.3"
  12840. show = "0" >
  12841. <productMenu id="protocol"
  12842. type="0">
  12843. </productMenu>
  12844. <productMenu id="sip"
  12845. type="1" >
  12846. </productMenu>
  12847. <productMenu id="bluetoothIntercom"
  12848. type="1" >
  12849. </productMenu>
  12850. <productMenu id="phone"
  12851. type="2" >
  12852. </productMenu>
  12853. <productMenu id="fmradio"
  12854. type="3" >
  12855. </productMenu>
  12856. <productMenu id="deviceSetting"
  12857. type="1"
  12858. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  12859. </productMenu>
  12860. <productMenu id="quickGuide"
  12861. type="1"
  12862. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  12863. size="766KB" >
  12864. </productMenu>
  12865. <productMenu id="userGuide"
  12866. type="1"
  12867. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  12868. size="1.45MB" >
  12869. </productMenu>
  12870. <productID id="5522"
  12871. />
  12872. <productGroupable type="0"
  12873. />
  12874. </product>
  12875. <product id="HD50S"
  12876. name="OUTRUSH-R N03"
  12877. series="50"
  12878. latestVersion="1.2.1"
  12879. show = "-1" >
  12880. <productMenu id="protocol"
  12881. type="0">
  12882. </productMenu>
  12883. <productMenu id="sip"
  12884. type="1" >
  12885. </productMenu>
  12886. <productMenu id="bluetoothIntercom"
  12887. type="1" >
  12888. </productMenu>
  12889. <productMenu id="phone"
  12890. type="2" >
  12891. </productMenu>
  12892. <productMenu id="fmradio"
  12893. type="3" >
  12894. </productMenu>
  12895. <productMenu id="deviceSetting"
  12896. type="1"
  12897. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  12898. </productMenu>
  12899. <productMenu id="userGuide"
  12900. type="1"
  12901. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_1.2.0_en_220906.pdf"
  12902. size="660KB" >
  12903. </productMenu>
  12904. <productID id="5434"
  12905. />
  12906. <productGroupable type="0"
  12907. />
  12908. </product>
  12909. <product id="HD50S"
  12910. name="OUTRUSH-R N03"
  12911. series="50"
  12912. latestVersion="2.0"
  12913. show = "0" >
  12914. <productMenu id="protocol"
  12915. type="3" >
  12916. </productMenu>
  12917. <productMenu id="sip"
  12918. type="1" >
  12919. </productMenu>
  12920. <productMenu id="bluetoothIntercom"
  12921. type="1" >
  12922. </productMenu>
  12923. <productMenu id="phone"
  12924. type="1" >
  12925. </productMenu>
  12926. <productMenu id="fmradio"
  12927. type="1" >
  12928. </productMenu>
  12929. <productMenu id="deviceSetting"
  12930. type="1"
  12931. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR.xml" >
  12932. </productMenu>
  12933. <productMenu id="userGuide"
  12934. type="1"
  12935. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_2.0.0_en_230417.pdf"
  12936. size="1.14MB" >
  12937. </productMenu>
  12938. <productID id="5441"
  12939. />
  12940. <productGroupable type="0"
  12941. />
  12942. </product>
  12943. <product id="5R"
  12944. name="5R"
  12945. series="5"
  12946. latestVersion="1.0.1"
  12947. show = "1" >
  12948. <productMenu id="protocol"
  12949. type="3" >
  12950. </productMenu>
  12951. <productMenu id="sip"
  12952. type="1" >
  12953. </productMenu>
  12954. <productMenu id="bluetoothIntercom"
  12955. type="1" >
  12956. </productMenu>
  12957. <productMenu id="phone"
  12958. type="1" >
  12959. </productMenu>
  12960. <productMenu id="fmradio"
  12961. type="1" >
  12962. </productMenu>
  12963. <productMenu id="deviceSetting"
  12964. type="1"
  12965. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  12966. </productMenu>
  12967. <productMenu id="quickGuide"
  12968. type="0"
  12969. url=""
  12970. size="934KB" >
  12971. </productMenu>
  12972. <productMenu id="userGuide"
  12973. type="1"
  12974. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_1.1.1_en_250211.pdf"
  12975. size="1.14MB" >
  12976. </productMenu>
  12977. <productMenu id="connectGuide"
  12978. type="1"
  12979. url="https://api.sena.com/support/ConnectGuide/plusminus_multi10plus1_lcd_init.json"
  12980. size="1.12MB" >
  12981. </productMenu>
  12982. <productID id="5591"
  12983. />
  12984. <productGroupable type="0"
  12985. />
  12986. </product>
  12987. <product id="5R"
  12988. name="5R LITE"
  12989. series="5"
  12990. latestVersion="1.0.1"
  12991. show = "1" >
  12992. <productMenu id="protocol"
  12993. type="3" >
  12994. </productMenu>
  12995. <productMenu id="sip"
  12996. type="1" >
  12997. </productMenu>
  12998. <productMenu id="bluetoothIntercom"
  12999. type="1" >
  13000. </productMenu>
  13001. <productMenu id="phone"
  13002. type="1" >
  13003. </productMenu>
  13004. <productMenu id="fmradio"
  13005. type="1" >
  13006. </productMenu>
  13007. <productMenu id="deviceSetting"
  13008. type="1"
  13009. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE_01.xml" >
  13010. </productMenu>
  13011. <productMenu id="quickGuide"
  13012. type="0"
  13013. url=""
  13014. size="934KB" >
  13015. </productMenu>
  13016. <productMenu id="userGuide"
  13017. type="1"
  13018. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_LITE_1.1.0_en_241230.pdf"
  13019. size="1.14MB" >
  13020. </productMenu>
  13021. <productMenu id="connectGuide"
  13022. type="1"
  13023. url="https://api.sena.com/support/ConnectGuide/plusminus_multi10plus1_lcd_init.json"
  13024. size="1.12MB" >
  13025. </productMenu>
  13026. <productID id="5592"
  13027. />
  13028. <productGroupable type="0"
  13029. />
  13030. </product>
  13031. <product id="50RLE"
  13032. name="50R LE"
  13033. series="50"
  13034. latestVersion="1.1"
  13035. show = "0" >
  13036. <productMenu id="protocol"
  13037. type="2" >
  13038. </productMenu>
  13039. <productMenu id="alexa"
  13040. type="0" >
  13041. </productMenu>
  13042. <productMenu id="sip"
  13043. type="1" >
  13044. </productMenu>
  13045. <productMenu id="meshIntercom"
  13046. type="30" >
  13047. </productMenu>
  13048. <productMenu id="meshIntercom+"
  13049. type="3"
  13050. url="2" >
  13051. <productMenuType version="1.0.9"
  13052. type="2"
  13053. />
  13054. </productMenu>
  13055. <productMenu id="waveIntercom"
  13056. type="1" >
  13057. <productMenuType version="1.0.9"
  13058. type="0"
  13059. />
  13060. </productMenu>
  13061. <productMenu id="bluetoothIntercom"
  13062. type="1" >
  13063. </productMenu>
  13064. <productMenu id="phone"
  13065. type="1" >
  13066. </productMenu>
  13067. <productMenu id="music"
  13068. type="1" >
  13069. </productMenu>
  13070. <productMenu id="fmradio"
  13071. type="0" >
  13072. </productMenu>
  13073. <productMenu id="deviceSetting"
  13074. type="1"
  13075. url="https://api.sena.com/support/SenaNeoApp/50RLE/NS_50RLE_03.xml" >
  13076. <productMenuURL version="1.0.9"
  13077. url="https://api.sena.com/support/SenaNeoApp/50RLE/NS_50RLE_01.xml"
  13078. />
  13079. </productMenu>
  13080. <productMenu id="quickGuide"
  13081. type="0"
  13082. url=""
  13083. size="344KB" >
  13084. </productMenu>
  13085. <productMenu id="userGuide"
  13086. type="0"
  13087. url=""
  13088. size="3.41MB" >
  13089. </productMenu>
  13090. <productMenu id="volume"
  13091. type="11" >
  13092. </productMenu>
  13093. <productMenu id="battery"
  13094. type="1" >
  13095. </productMenu>
  13096. <productID id="3223"
  13097. />
  13098. <productGroupable type="0"
  13099. />
  13100. </product>
  13101. <product id="5RLOUIS"
  13102. name="5R LOUIS EDITION"
  13103. series="5"
  13104. latestVersion="1.0"
  13105. show = "-1" >
  13106. <productMenu id="protocol"
  13107. type="3" >
  13108. </productMenu>
  13109. <productMenu id="sip"
  13110. type="1" >
  13111. </productMenu>
  13112. <productMenu id="bluetoothIntercom"
  13113. type="1" >
  13114. </productMenu>
  13115. <productMenu id="phone"
  13116. type="1" >
  13117. </productMenu>
  13118. <productMenu id="fmradio"
  13119. type="1" >
  13120. </productMenu>
  13121. <productMenu id="deviceSetting"
  13122. type="1"
  13123. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  13124. </productMenu>
  13125. <productMenu id="quickGuide"
  13126. type="0"
  13127. url=""
  13128. size="934KB" >
  13129. </productMenu>
  13130. <productMenu id="userGuide"
  13131. type="0"
  13132. url=""
  13133. size="1.14MB" >
  13134. </productMenu>
  13135. <productID id="5597"
  13136. />
  13137. <productGroupable type="0"
  13138. />
  13139. </product>
  13140. <product id="5S"
  13141. name="Ridekont 5S"
  13142. series="5"
  13143. latestVersion="2.3"
  13144. show = "-1" >
  13145. <productMenu id="protocol"
  13146. type="3" >
  13147. </productMenu>
  13148. <productMenu id="sip"
  13149. type="1" >
  13150. </productMenu>
  13151. <productMenu id="bluetoothIntercom"
  13152. type="1" >
  13153. </productMenu>
  13154. <productMenu id="phone"
  13155. type="1" >
  13156. </productMenu>
  13157. <productMenu id="fmradio"
  13158. type="0" >
  13159. </productMenu>
  13160. <productMenu id="deviceSetting"
  13161. type="1"
  13162. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  13163. </productMenu>
  13164. <productMenu id="quickGuide"
  13165. type="0"
  13166. url=""
  13167. size="934KB" >
  13168. </productMenu>
  13169. <productMenu id="userGuide"
  13170. type="1"
  13171. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_2.3.0_en_250114.pdf"
  13172. size="1.14MB" >
  13173. </productMenu>
  13174. <productID id="5589"
  13175. />
  13176. <productGroupable type="0"
  13177. />
  13178. </product>
  13179. <product id="5R"
  13180. name="Ridekont 5R"
  13181. series="5"
  13182. latestVersion="1.0"
  13183. show = "0" >
  13184. <productMenu id="protocol"
  13185. type="3" >
  13186. </productMenu>
  13187. <productMenu id="sip"
  13188. type="1" >
  13189. </productMenu>
  13190. <productMenu id="bluetoothIntercom"
  13191. type="1" >
  13192. </productMenu>
  13193. <productMenu id="phone"
  13194. type="1" >
  13195. </productMenu>
  13196. <productMenu id="fmradio"
  13197. type="1" >
  13198. </productMenu>
  13199. <productMenu id="deviceSetting"
  13200. type="1"
  13201. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  13202. </productMenu>
  13203. <productMenu id="quickGuide"
  13204. type="1"
  13205. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_5R_1.0.0_en_220511.pdf"
  13206. size="934KB" >
  13207. </productMenu>
  13208. <productMenu id="userGuide"
  13209. type="1"
  13210. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_5R_1.0.2_en_230106.pdf"
  13211. size="1.14MB" >
  13212. </productMenu>
  13213. <productID id="5593"
  13214. />
  13215. <productGroupable type="0"
  13216. />
  13217. </product>
  13218. <product id="5R"
  13219. name="Ridekont 5R LITE"
  13220. series="5"
  13221. latestVersion="1.0"
  13222. show = "0" >
  13223. <productMenu id="protocol"
  13224. type="3" >
  13225. </productMenu>
  13226. <productMenu id="sip"
  13227. type="1" >
  13228. </productMenu>
  13229. <productMenu id="bluetoothIntercom"
  13230. type="1" >
  13231. </productMenu>
  13232. <productMenu id="phone"
  13233. type="1" >
  13234. </productMenu>
  13235. <productMenu id="fmradio"
  13236. type="1" >
  13237. </productMenu>
  13238. <productMenu id="deviceSetting"
  13239. type="1"
  13240. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE_01.xml" >
  13241. </productMenu>
  13242. <productMenu id="quickGuide"
  13243. type="0"
  13244. url=""
  13245. size="934KB" >
  13246. </productMenu>
  13247. <productMenu id="userGuide"
  13248. type="1"
  13249. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_LITE_1.1.0_en_241230.pdf"
  13250. size="1.14MB" >
  13251. </productMenu>
  13252. <productID id="5594"
  13253. />
  13254. <productGroupable type="0"
  13255. />
  13256. </product>
  13257. <product id="SA30"
  13258. name="SA30"
  13259. series="SA"
  13260. latestVersion="1.0.3"
  13261. latestVersionVoicePrompt="0.15"
  13262. show = "-1" >
  13263. <productMenu id="protocol"
  13264. type="2" >
  13265. </productMenu>
  13266. <productMenu id="ota"
  13267. type="2" >
  13268. <otaPackages>
  13269. <package
  13270. url="https://api.sena.com/support/OTA/Motorcycles/SA30/SENA_SA30-v1.0.3-build0.img"
  13271. size="3144148"
  13272. />
  13273. </otaPackages>
  13274. </productMenu>
  13275. <productMenu id="meshIntercom"
  13276. type="30" >
  13277. </productMenu>
  13278. <productMenu id="meshIntercom+"
  13279. type="3"
  13280. url="2" >
  13281. </productMenu>
  13282. <productMenu id="phone"
  13283. type="1" >
  13284. </productMenu>
  13285. <productMenu id="music"
  13286. type="1" >
  13287. </productMenu>
  13288. <productMenu id="musicSharing"
  13289. type="0" >
  13290. </productMenu>
  13291. <productMenu id="deviceSetting"
  13292. type="1"
  13293. url="https://api.sena.com/support/SenaNeoApp/SA30/NS_SA30_AIROHA.xml" >
  13294. </productMenu>
  13295. <productMenu id="quickGuide"
  13296. type="0"
  13297. url=""
  13298. size="1.12MB" >
  13299. </productMenu>
  13300. <productMenu id="userGuide"
  13301. type="1"
  13302. url=""
  13303. size="2.0MB" >
  13304. </productMenu>
  13305. <productMenu id="videoGuide"
  13306. type="0"
  13307. url=""
  13308. size="3.41MB" >
  13309. </productMenu>
  13310. <productMenu id="volume"
  13311. type="12" >
  13312. </productMenu>
  13313. <productMenu id="battery"
  13314. type="1" >
  13315. </productMenu>
  13316. <productID id="6852"
  13317. />
  13318. <productGroupable type="0"
  13319. />
  13320. </product>
  13321. <product id="I30"
  13322. name="I30"
  13323. series="I"
  13324. latestVersion="1.0.3"
  13325. latestVersionVoicePrompt="0.2"
  13326. show = "-1" >
  13327. <productMenu id="protocol"
  13328. type="2" >
  13329. </productMenu>
  13330. <productMenu id="ota"
  13331. type="2" >
  13332. <otaPackages>
  13333. <package
  13334. url="https://api.sena.com/support/OTA/Motorcycles/I30/SENA_I30-v1.0.3-build0.img"
  13335. size="3144148"
  13336. />
  13337. </otaPackages>
  13338. </productMenu>
  13339. <productMenu id="meshIntercom"
  13340. type="30" >
  13341. </productMenu>
  13342. <productMenu id="meshIntercom+"
  13343. type="3"
  13344. url="2" >
  13345. </productMenu>
  13346. <productMenu id="phone"
  13347. type="1" >
  13348. </productMenu>
  13349. <productMenu id="music"
  13350. type="1" >
  13351. </productMenu>
  13352. <productMenu id="musicSharing"
  13353. type="0" >
  13354. </productMenu>
  13355. <productMenu id="deviceSetting"
  13356. type="1"
  13357. url="https://api.sena.com/support/SenaNeoApp/I30/NS_I30_AIROHA.xml" >
  13358. </productMenu>
  13359. <productMenu id="quickGuide"
  13360. type="0"
  13361. url=""
  13362. size="1.12MB" >
  13363. </productMenu>
  13364. <productMenu id="userGuide"
  13365. type="1"
  13366. url=""
  13367. size="2.10MB" >
  13368. </productMenu>
  13369. <productMenu id="videoGuide"
  13370. type="0"
  13371. url=""
  13372. size="3.11MB" >
  13373. </productMenu>
  13374. <productMenu id="volume"
  13375. type="12" >
  13376. </productMenu>
  13377. <productMenu id="battery"
  13378. type="1" >
  13379. </productMenu>
  13380. <productID id="6853"
  13381. />
  13382. <productGroupable type="0"
  13383. />
  13384. </product>
  13385. <product id="LS2C30"
  13386. name="LS2-C30"
  13387. series="C"
  13388. latestVersion="1.0"
  13389. latestVersionVoicePrompt="0.13"
  13390. show = "-1" >
  13391. <productMenu id="protocol"
  13392. type="2" >
  13393. </productMenu>
  13394. <productMenu id="ota"
  13395. type="2" >
  13396. <otaPackages>
  13397. <package
  13398. url="https://api.sena.com/support/OTA/Motorcycles/C30/SENA_LS2-C30-v1.0-build0.img"
  13399. size="3144148"
  13400. />
  13401. </otaPackages>
  13402. </productMenu>
  13403. <productMenu id="meshIntercom+"
  13404. type="3"
  13405. url="2" >
  13406. </productMenu>
  13407. <productMenu id="waveIntercom"
  13408. type="1" >
  13409. </productMenu>
  13410. <productMenu id="phone"
  13411. type="1" >
  13412. </productMenu>
  13413. <productMenu id="music"
  13414. type="1" >
  13415. </productMenu>
  13416. <productMenu id="musicSharing"
  13417. type="0" >
  13418. </productMenu>
  13419. <productMenu id="deviceSetting"
  13420. type="1"
  13421. url="https://api.sena.com/support/SenaNeoApp/C30EVO/NS_C30EVO_AIROHA_zh_rCN.xml" >
  13422. </productMenu>
  13423. <productMenu id="quickGuide"
  13424. type="0"
  13425. url=""
  13426. size="1.17MB" >
  13427. </productMenu>
  13428. <productMenu id="userGuide"
  13429. type="1"
  13430. url=""
  13431. size="2.0MB" >
  13432. </productMenu>
  13433. <productMenu id="videoGuide"
  13434. type="0"
  13435. url=""
  13436. size="3.41MB" >
  13437. </productMenu>
  13438. <productMenu id="volume"
  13439. type="12" >
  13440. </productMenu>
  13441. <productMenu id="battery"
  13442. type="1" >
  13443. </productMenu>
  13444. <productID id="685E"
  13445. />
  13446. <productGroupable type="0"
  13447. />
  13448. </product>
  13449. <product id="C30EVO"
  13450. name="C30 EVO"
  13451. series="C"
  13452. latestVersion="1.0"
  13453. latestVersionVoicePrompt="0.13"
  13454. show = "-1" >
  13455. <productMenu id="protocol"
  13456. type="2" >
  13457. </productMenu>
  13458. <productMenu id="ota"
  13459. type="0" >
  13460. <otaPackages>
  13461. <package
  13462. url="https://api.sena.com/support/OTA/Motorcycles/C30/SENA_C30EVO-v1.2.2-build0.img"
  13463. size="3144148"
  13464. />
  13465. </otaPackages>
  13466. </productMenu>
  13467. <productMenu id="meshIntercom+"
  13468. type="3"
  13469. url="2" >
  13470. </productMenu>
  13471. <productMenu id="waveIntercom"
  13472. type="1" >
  13473. </productMenu>
  13474. <productMenu id="phone"
  13475. type="1" >
  13476. </productMenu>
  13477. <productMenu id="music"
  13478. type="1" >
  13479. </productMenu>
  13480. <productMenu id="musicSharing"
  13481. type="0" >
  13482. </productMenu>
  13483. <productMenu id="deviceSetting"
  13484. type="1"
  13485. url="https://api.sena.com/support/SenaNeoApp/C30EVO/NS_C30EVO_AIROHA_zh_rCN.xml" >
  13486. </productMenu>
  13487. <productMenu id="quickGuide"
  13488. type="0"
  13489. url=""
  13490. size="1.17MB" >
  13491. </productMenu>
  13492. <productMenu id="userGuide"
  13493. type="1"
  13494. url=""
  13495. size="2.0MB" >
  13496. </productMenu>
  13497. <productMenu id="videoGuide"
  13498. type="0"
  13499. url=""
  13500. size="3.41MB" >
  13501. </productMenu>
  13502. <productMenu id="volume"
  13503. type="12" >
  13504. </productMenu>
  13505. <productMenu id="battery"
  13506. type="1" >
  13507. </productMenu>
  13508. <productID id="685B"
  13509. />
  13510. <productGroupable type="0"
  13511. />
  13512. </product>
  13513. <product id="C30"
  13514. name="SENA C30"
  13515. series="C"
  13516. latestVersion="1.2.4"
  13517. latestVersionVoicePrompt="0.13"
  13518. show = "1" >
  13519. <productMenu id="protocol"
  13520. type="2" >
  13521. </productMenu>
  13522. <productMenu id="alexa"
  13523. type="0" >
  13524. </productMenu>
  13525. <productMenu id="ota"
  13526. type="2" >
  13527. <otaPackages>
  13528. <package
  13529. url="https://api.sena.com/support/OTA/Motorcycles/C30/SENA_C30-v1.2.4-build0.img"
  13530. size="3144148"
  13531. />
  13532. </otaPackages>
  13533. </productMenu>
  13534. <productMenu id="wa"
  13535. type="0" >
  13536. </productMenu>
  13537. <productMenu id="meshIntercom"
  13538. type="30" >
  13539. </productMenu>
  13540. <productMenu id="meshIntercom+"
  13541. type="3"
  13542. url="2" >
  13543. <productMenuType version="1.0.9"
  13544. type="2"
  13545. />
  13546. </productMenu>
  13547. <productMenu id="waveIntercom"
  13548. type="1" >
  13549. <productMenuType version="1.1.9"
  13550. type="0"
  13551. />
  13552. </productMenu>
  13553. <productMenu id="phone"
  13554. type="1" >
  13555. </productMenu>
  13556. <productMenu id="music"
  13557. type="1" >
  13558. </productMenu>
  13559. <productMenu id="musicSharing"
  13560. type="0" >
  13561. </productMenu>
  13562. <productMenu id="deviceSetting"
  13563. type="1"
  13564. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_09_zh_rCN.xml" >
  13565. <productMenuURL version="1.1.3"
  13566. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_07_zh_rCN.xml"
  13567. />
  13568. <productMenuURL version="1.0.9"
  13569. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_05_zh_rCN.xml"
  13570. />
  13571. </productMenu>
  13572. <productMenu id="quickGuide"
  13573. type="1"
  13574. url="https://firmware.sena.com/senabluetoothmanager/C30.pdf"
  13575. size="1.12MB" >
  13576. </productMenu>
  13577. <productMenu id="userGuide"
  13578. type="0"
  13579. url=""
  13580. size="2.0MB" >
  13581. </productMenu>
  13582. <productMenu id="videoGuide"
  13583. type="0"
  13584. url=""
  13585. size="3.41MB" >
  13586. </productMenu>
  13587. <productMenu id="volume"
  13588. type="12" >
  13589. </productMenu>
  13590. <productMenu id="battery"
  13591. type="1" >
  13592. </productMenu>
  13593. <productID id="683A"
  13594. />
  13595. <productGroupable type="0"
  13596. />
  13597. </product>
  13598. <product id="C20"
  13599. name="C20"
  13600. series="C"
  13601. latestVersion="1.0"
  13602. show = "1" >
  13603. <productMenu id="protocol"
  13604. type="3" >
  13605. </productMenu>
  13606. <productMenu id="sip"
  13607. type="1" >
  13608. </productMenu>
  13609. <productMenu id="bluetoothIntercom"
  13610. type="1" >
  13611. </productMenu>
  13612. <productMenu id="phone"
  13613. type="1" >
  13614. </productMenu>
  13615. <productMenu id="deviceSetting"
  13616. type="1"
  13617. url="https://api.sena.com/support/SenaNeoApp/C20/NS_QCCSC20.xml" >
  13618. </productMenu>
  13619. <productMenu id="quickGuide"
  13620. type="1"
  13621. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_C20_1.0.0_sc_231004.pdf"
  13622. size="934KB" >
  13623. </productMenu>
  13624. <productMenu id="userGuide"
  13625. type="1"
  13626. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_C20_1.0.0_sc_231004.pdf"
  13627. size="1.14MB" >
  13628. </productMenu>
  13629. <productID id="3701"
  13630. />
  13631. <productGroupable type="0"
  13632. />
  13633. </product>
  13634. <product id="C10"
  13635. name="C10"
  13636. series="C"
  13637. latestVersion="1.4.4"
  13638. show = "1" >
  13639. <productMenu id="protocol"
  13640. type="3" >
  13641. </productMenu>
  13642. <productMenu id="sip"
  13643. type="1" >
  13644. </productMenu>
  13645. <productMenu id="bluetoothIntercom"
  13646. type="1" >
  13647. </productMenu>
  13648. <productMenu id="phone"
  13649. type="1" >
  13650. </productMenu>
  13651. <productMenu id="fmradio"
  13652. type="0" >
  13653. </productMenu>
  13654. <productMenu id="deviceSetting"
  13655. type="1"
  13656. url="https://api.sena.com/support/SenaNeoApp/C10/NS_C10_01.xml" >
  13657. </productMenu>
  13658. <productMenu id="userGuide"
  13659. type="1"
  13660. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_C10_1.2.0_sc_250321.pdf"
  13661. size="1.14MB" >
  13662. </productMenu>
  13663. <productID id="5595"
  13664. />
  13665. <productGroupable type="0"
  13666. />
  13667. </product>
  13668. <product id="CA1"
  13669. name="CA1"
  13670. series="C"
  13671. latestVersion="0.2"
  13672. show = "-1" >
  13673. <productMenu id="protocol"
  13674. type="2" >
  13675. </productMenu>
  13676. <productMenu id="ota"
  13677. type="2" >
  13678. <otaPackages>
  13679. <package
  13680. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/CA1/SENA_CA1-v0.2-build1.img"
  13681. size="3144148"
  13682. />
  13683. </otaPackages>
  13684. </productMenu>
  13685. <productMenu id="phone"
  13686. type="1" >
  13687. </productMenu>
  13688. <productMenu id="music"
  13689. type="1" >
  13690. </productMenu>
  13691. <productMenu id="musicSharing"
  13692. type="0" >
  13693. </productMenu>
  13694. <productMenu id="deviceSetting"
  13695. type="1"
  13696. url="https://api.sena.com/support/SenaNeoApp/CA1/NS_CA1_AIROHA_01_zh_rCN.xml" >
  13697. </productMenu>
  13698. <productMenu id="quickGuide"
  13699. type="1"
  13700. url="https://firmware.sena.com/senabluetoothmanager/C30.pdf"
  13701. size="1.12MB" >
  13702. </productMenu>
  13703. <productMenu id="userGuide"
  13704. type="0"
  13705. url=""
  13706. size="2.0MB" >
  13707. </productMenu>
  13708. <productMenu id="videoGuide"
  13709. type="1"
  13710. url=""
  13711. size="3.41MB" >
  13712. </productMenu>
  13713. <productMenu id="volume"
  13714. type="12" >
  13715. </productMenu>
  13716. <productMenu id="battery"
  13717. type="1" >
  13718. </productMenu>
  13719. <productID id="5F01"
  13720. />
  13721. <productGroupable type="0"
  13722. />
  13723. </product>
  13724. <product id="J30"
  13725. name="J30"
  13726. series="J"
  13727. latestVersion="1.2.4"
  13728. latestVersionVoicePrompt="0.14"
  13729. show = "0" >
  13730. <productMenu id="protocol"
  13731. type="2" >
  13732. </productMenu>
  13733. <productMenu id="alexa"
  13734. type="0" >
  13735. </productMenu>
  13736. <productMenu id="ota"
  13737. type="2" >
  13738. <otaPackages>
  13739. <package
  13740. url="https://api.sena.com/support/OTA/Motorcycles/J30/SENA_J30-v1.2.4-build0.img"
  13741. size="3144148"
  13742. />
  13743. </otaPackages>
  13744. </productMenu>
  13745. <productMenu id="wa"
  13746. type="0" >
  13747. </productMenu>
  13748. <productMenu id="meshIntercom"
  13749. type="30" >
  13750. </productMenu>
  13751. <productMenu id="meshIntercom+"
  13752. type="3"
  13753. url="2" >
  13754. <productMenuType version="1.0.9"
  13755. type="2"
  13756. />
  13757. </productMenu>
  13758. <productMenu id="waveIntercom"
  13759. type="1" >
  13760. <productMenuType version="1.1.9"
  13761. type="0"
  13762. />
  13763. </productMenu>
  13764. <productMenu id="phone"
  13765. type="1" >
  13766. </productMenu>
  13767. <productMenu id="music"
  13768. type="1" >
  13769. </productMenu>
  13770. <productMenu id="musicSharing"
  13771. type="0" >
  13772. </productMenu>
  13773. <productMenu id="deviceSetting"
  13774. type="1"
  13775. url="https://api.sena.com/support/SenaNeoApp/J30/NS_J30_AIROHA_01_ja.xml" >
  13776. <productMenuURL version="1.0.9"
  13777. url="https://api.sena.com/support/SenaNeoApp/J30/NS_J30_AIROHA_ja.xml"
  13778. />
  13779. </productMenu>
  13780. <productMenu id="quickGuide"
  13781. type="0"
  13782. url=""
  13783. size="1.12MB" >
  13784. </productMenu>
  13785. <productMenu id="userGuide"
  13786. type="1"
  13787. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_J30_1.1.0_jp_250402.pdf"
  13788. size="2.0MB" >
  13789. </productMenu>
  13790. <productMenu id="videoGuide"
  13791. type="0"
  13792. url=""
  13793. size="3.41MB" >
  13794. </productMenu>
  13795. <productMenu id="volume"
  13796. type="12" >
  13797. </productMenu>
  13798. <productMenu id="battery"
  13799. type="1" >
  13800. </productMenu>
  13801. <productID id="6848"
  13802. />
  13803. <productGroupable type="0"
  13804. />
  13805. </product>
  13806. <product id="J10"
  13807. name="J10"
  13808. series="5"
  13809. latestVersion="1.1.4"
  13810. show = "0" >
  13811. <productMenu id="protocol"
  13812. type="3" >
  13813. </productMenu>
  13814. <productMenu id="sip"
  13815. type="1" >
  13816. </productMenu>
  13817. <productMenu id="bluetoothIntercom"
  13818. type="1" >
  13819. </productMenu>
  13820. <productMenu id="phone"
  13821. type="1" >
  13822. </productMenu>
  13823. <productMenu id="fmradio"
  13824. type="0" >
  13825. </productMenu>
  13826. <productMenu id="deviceSetting"
  13827. type="1"
  13828. url="https://api.sena.com/support/SenaNeoApp/C10/NS_C10_01.xml" >
  13829. </productMenu>
  13830. <productMenu id="userGuide"
  13831. type="1"
  13832. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_J10_1.1.0_jp_250320.pdf"
  13833. size="1.14MB" >
  13834. </productMenu>
  13835. <productID id="5598"
  13836. />
  13837. <productGroupable type="0"
  13838. />
  13839. </product>
  13840. <product id="B20"
  13841. name="B20"
  13842. series="B"
  13843. latestVersion="1.1.4"
  13844. latestVersionVoicePrompt="0.14"
  13845. show = "0" >
  13846. <productMenu id="protocol"
  13847. type="2" >
  13848. </productMenu>
  13849. <productMenu id="alexa"
  13850. type="0" >
  13851. </productMenu>
  13852. <productMenu id="ota"
  13853. type="2" >
  13854. <otaPackages>
  13855. <package
  13856. url="https://api.sena.com/support/OTA/Motorcycles/B20/SENA_B20-v1.1.4-build0.img"
  13857. size="3144148"
  13858. />
  13859. </otaPackages>
  13860. </productMenu>
  13861. <productMenu id="wa"
  13862. type="0" >
  13863. </productMenu>
  13864. <productMenu id="meshIntercom"
  13865. type="30" >
  13866. </productMenu>
  13867. <productMenu id="phone"
  13868. type="1" >
  13869. </productMenu>
  13870. <productMenu id="music"
  13871. type="1" >
  13872. </productMenu>
  13873. <productMenu id="musicSharing"
  13874. type="0" >
  13875. </productMenu>
  13876. <productMenu id="deviceSetting"
  13877. type="1"
  13878. url="https://api.sena.com/support/SenaNeoApp/B20/NS_B20_AIROHA_02.xml" >
  13879. <productMenuURL version="1.0.9"
  13880. url="https://api.sena.com/support/SenaNeoApp/B20/NS_B20_AIROHA_01.xml"
  13881. />
  13882. </productMenu>
  13883. <productMenu id="quickGuide"
  13884. type="0"
  13885. url=""
  13886. size="1.12MB" >
  13887. </productMenu>
  13888. <productMenu id="userGuide"
  13889. type="1"
  13890. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_B20_1.0.0_en_241213.pdf"
  13891. size="2.0MB" >
  13892. </productMenu>
  13893. <productMenu id="videoGuide"
  13894. type="0"
  13895. url=""
  13896. size="3.41MB" >
  13897. </productMenu>
  13898. <productMenu id="volume"
  13899. type="12" >
  13900. </productMenu>
  13901. <productMenu id="battery"
  13902. type="1" >
  13903. </productMenu>
  13904. <productID id="6847"
  13905. />
  13906. <productGroupable type="0"
  13907. />
  13908. </product>
  13909. <product id="B10"
  13910. name="B10"
  13911. series="5"
  13912. latestVersion="1.2.4"
  13913. show = "0" >
  13914. <productMenu id="protocol"
  13915. type="3" >
  13916. </productMenu>
  13917. <productMenu id="sip"
  13918. type="1" >
  13919. </productMenu>
  13920. <productMenu id="bluetoothIntercom"
  13921. type="1" >
  13922. </productMenu>
  13923. <productMenu id="phone"
  13924. type="1" >
  13925. </productMenu>
  13926. <productMenu id="fmradio"
  13927. type="0" >
  13928. </productMenu>
  13929. <productMenu id="deviceSetting"
  13930. type="1"
  13931. url="https://api.sena.com/support/SenaNeoApp/B10/NS_B10_01.xml" >
  13932. </productMenu>
  13933. <productMenu id="userGuide"
  13934. type="1"
  13935. url="https://firmware.sena.com/senabluetoothmanager/Indian_UserGuide_B10_1.2.0_en_250320.pdf"
  13936. size="1.14MB" >
  13937. </productMenu>
  13938. <productID id="5596"
  13939. />
  13940. <productGroupable type="0"
  13941. />
  13942. </product>
  13943. <product id="E30"
  13944. name="E30"
  13945. series="E"
  13946. latestVersion="1.1.4"
  13947. latestVersionVoicePrompt="0.14"
  13948. show = "0" >
  13949. <productMenu id="protocol"
  13950. type="2" >
  13951. </productMenu>
  13952. <productMenu id="alexa"
  13953. type="0" >
  13954. </productMenu>
  13955. <productMenu id="ota"
  13956. type="2" >
  13957. <otaPackages>
  13958. <package
  13959. url="https://api.sena.com/support/OTA/Motorcycles/E30/SENA_E30-v1.1.4-build0.img"
  13960. size="3144148"
  13961. />
  13962. </otaPackages>
  13963. </productMenu>
  13964. <productMenu id="wa"
  13965. type="0" >
  13966. </productMenu>
  13967. <productMenu id="meshIntercom"
  13968. type="30" >
  13969. </productMenu>
  13970. <productMenu id="meshIntercom+"
  13971. type="3"
  13972. url="2" >
  13973. </productMenu>
  13974. <productMenu id="waveIntercom"
  13975. type="1" >
  13976. <productMenuType version="1.0.9"
  13977. type="0"
  13978. />
  13979. </productMenu>
  13980. <productMenu id="phone"
  13981. type="1" >
  13982. </productMenu>
  13983. <productMenu id="music"
  13984. type="1" >
  13985. </productMenu>
  13986. <productMenu id="musicSharing"
  13987. type="0" >
  13988. </productMenu>
  13989. <productMenu id="deviceSetting"
  13990. type="1"
  13991. url="https://api.sena.com/support/SenaNeoApp/E30/NS_E30_AIROHA_03.xml" >
  13992. </productMenu>
  13993. <productMenu id="quickGuide"
  13994. type="0"
  13995. url=""
  13996. size="1.12MB" >
  13997. </productMenu>
  13998. <productMenu id="userGuide"
  13999. type="1"
  14000. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_E30_1.0.0_sc_250110.pdf"
  14001. size="2.0MB" >
  14002. </productMenu>
  14003. <productMenu id="videoGuide"
  14004. type="0"
  14005. url=""
  14006. size="3.41MB" >
  14007. </productMenu>
  14008. <productMenu id="volume"
  14009. type="12" >
  14010. </productMenu>
  14011. <productMenu id="battery"
  14012. type="1" >
  14013. </productMenu>
  14014. <productID id="6846"
  14015. />
  14016. <productGroupable type="0"
  14017. />
  14018. </product>
  14019. <product id="ACSRAM"
  14020. name="ACS-RAM"
  14021. series="ACS"
  14022. latestVersion="1.0.5"
  14023. show = "1" >
  14024. <productMenu id="protocol"
  14025. type="3" >
  14026. </productMenu>
  14027. <productMenu id="sip"
  14028. type="1" >
  14029. </productMenu>
  14030. <productMenu id="bluetoothIntercom"
  14031. type="1" >
  14032. </productMenu>
  14033. <productMenu id="deviceSetting"
  14034. type="1"
  14035. url="https://api.sena.com/support/SenaNeoApp/ACSRAM/NS_ACSRAM_01.xml" >
  14036. <productMenuURL version="1.0.9"
  14037. url="https://api.sena.com/support/SenaNeoApp/ACSRAM/NS_ACSRAM.xml"
  14038. />
  14039. </productMenu>
  14040. <productMenu id="quickGuide"
  14041. type="1"
  14042. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_ACS-RAM_1.0.0_en_220422.pdf"
  14043. size="344KB" >
  14044. </productMenu>
  14045. <productMenu id="userGuide"
  14046. type="1"
  14047. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_ACS-RAM_1.0.0_en_220518.pdf"
  14048. size="1.14MB" >
  14049. </productMenu>
  14050. <productMenu id="connectGuide"
  14051. type="1"
  14052. url="https://api.sena.com/support/ConnectGuide/plusminus_center10plus1_init.json"
  14053. size="1.12MB" >
  14054. </productMenu>
  14055. <productID id="3400"
  14056. />
  14057. <productGroupable type="0"
  14058. />
  14059. </product>
  14060. <product id="ACS10"
  14061. name="ACS10"
  14062. series="ACS"
  14063. latestVersion="1.0.2"
  14064. show = "1" >
  14065. <productMenu id="protocol"
  14066. type="0">
  14067. </productMenu>
  14068. <productMenu id="sip"
  14069. type="1" >
  14070. </productMenu>
  14071. <productMenu id="bluetoothIntercom"
  14072. type="1" >
  14073. </productMenu>
  14074. <productMenu id="phone"
  14075. type="2" >
  14076. </productMenu>
  14077. <productMenu id="deviceSetting"
  14078. type="1"
  14079. url="https://api.sena.com/support/SenaUtility/ACS10/DS_ACS10.xml" >
  14080. </productMenu>
  14081. <productMenu id="quickGuide"
  14082. type="1"
  14083. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ACS10_1.1.0_en_221020.pdf"
  14084. size="970KB" >
  14085. </productMenu>
  14086. <productMenu id="userGuide"
  14087. type="1"
  14088. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ACS10_1.1.0_en_221020.pdf"
  14089. size="1.26MB" >
  14090. </productMenu>
  14091. <productMenu id="connectGuide"
  14092. type="1"
  14093. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  14094. size="1.12MB" >
  14095. </productMenu>
  14096. <productID id="3300"
  14097. />
  14098. <productGroupable type="0"
  14099. />
  14100. </product>
  14101. <product id="DWO7ProMesh"
  14102. name="DWO 7 Pro Mesh"
  14103. series="50"
  14104. latestVersion="1.1"
  14105. latestVersionVoicePrompt="0.9"
  14106. show = "0" >
  14107. <productMenu id="protocol"
  14108. type="2" >
  14109. </productMenu>
  14110. <productMenu id="alexa"
  14111. type="0" >
  14112. </productMenu>
  14113. <productMenu id="ota"
  14114. type="2" >
  14115. <otaPackages>
  14116. <package
  14117. url="https://api.sena.com/support/OTA/DWO7ProMesh/SEDICI_DWO_7_PRO_MESH-v1.1-build1.img"
  14118. size="2945812"
  14119. />
  14120. </otaPackages>
  14121. </productMenu>
  14122. <productMenu id="wa"
  14123. type="0" >
  14124. </productMenu>
  14125. <productMenu id="meshIntercom"
  14126. type="20" >
  14127. </productMenu>
  14128. <productMenu id="meshIntercom+"
  14129. type="3"
  14130. url="2" >
  14131. <productMenuType version="1.0.9"
  14132. type="2"
  14133. />
  14134. <productMenuURL version="2.1.1"
  14135. url="0"
  14136. />
  14137. </productMenu>
  14138. <productMenu id="waveIntercom"
  14139. type="1" >
  14140. <productMenuType version="1.0.9"
  14141. type="0"
  14142. />
  14143. </productMenu>
  14144. <productMenu id="phone"
  14145. type="1" >
  14146. </productMenu>
  14147. <productMenu id="music"
  14148. type="1" >
  14149. </productMenu>
  14150. <productMenu id="fmradio"
  14151. type="1" >
  14152. </productMenu>
  14153. <productMenu id="musicSharing"
  14154. type="0" >
  14155. </productMenu>
  14156. <productMenu id="deviceSetting"
  14157. type="1"
  14158. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA_04.xml" >
  14159. <productMenuURL version="1.0.9"
  14160. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA.xml"
  14161. />
  14162. </productMenu>
  14163. <productMenu id="quickGuide"
  14164. type="1"
  14165. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO_7_PRO_MESH_1.3.0_en_250311.pdf"
  14166. size="1.12MB" >
  14167. </productMenu>
  14168. <productMenu id="userGuide"
  14169. type="1"
  14170. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO_7_PRO_MESH_1.3.0_en_250311.pdf"
  14171. size="2.0MB" >
  14172. </productMenu>
  14173. <productMenu id="volume"
  14174. type="12" >
  14175. </productMenu>
  14176. <productMenu id="battery"
  14177. type="1" >
  14178. </productMenu>
  14179. <productID id="6806"
  14180. />
  14181. <productGroupable type="0"
  14182. />
  14183. </product>
  14184. <product id="ERA1X"
  14185. name="ERA 1 X"
  14186. series="UCOM"
  14187. latestVersion="0.2.1"
  14188. latestVersionMesh="0.19"
  14189. latestVersionVoicePrompt="1.2"
  14190. show = "-1" >
  14191. <productMenu id="protocol"
  14192. type="2" >
  14193. </productMenu>
  14194. <productMenu id="ota"
  14195. type="2" >
  14196. <otaLanguages>
  14197. <otaLanguage
  14198. id="0"
  14199. name="English"
  14200. package="0"
  14201. />
  14202. <otaLanguage
  14203. id="0"
  14204. name="French"
  14205. package="1"
  14206. />
  14207. <otaLanguage
  14208. id="0"
  14209. name="Spanish"
  14210. package="2"
  14211. />
  14212. <otaLanguage
  14213. id="0"
  14214. name="Italian"
  14215. package="3"
  14216. />
  14217. <otaLanguage
  14218. id="0"
  14219. name="German"
  14220. package="4"
  14221. />
  14222. <otaLanguage
  14223. id="0"
  14224. name="Dutch"
  14225. package="5"
  14226. />
  14227. <otaLanguage
  14228. id="0"
  14229. name="Russian"
  14230. package="6"
  14231. />
  14232. <otaLanguage
  14233. id="0"
  14234. name="Chinese"
  14235. package="7"
  14236. />
  14237. <otaLanguage
  14238. id="0"
  14239. name="Korean"
  14240. package="8"
  14241. />
  14242. <otaLanguage
  14243. id="0"
  14244. name="Japanese"
  14245. package="9"
  14246. />
  14247. <otaLanguage
  14248. id="0"
  14249. name="Finnish"
  14250. package="10"
  14251. />
  14252. <otaLanguage
  14253. id="0"
  14254. name="Polish"
  14255. package="11"
  14256. />
  14257. <otaLanguage
  14258. id="0"
  14259. name="Czech"
  14260. package="12"
  14261. />
  14262. <otaLanguage
  14263. id="0"
  14264. name="Danish"
  14265. package="13"
  14266. />
  14267. <otaLanguage
  14268. id="0"
  14269. name="Norwegian"
  14270. package="14"
  14271. />
  14272. <otaLanguage
  14273. id="0"
  14274. name="Swedish"
  14275. package="15"
  14276. />
  14277. <otaLanguage
  14278. id="0"
  14279. name="Turkish"
  14280. package="16"
  14281. />
  14282. <otaLanguage
  14283. id="0"
  14284. name="Hungarian"
  14285. package="17"
  14286. />
  14287. <otaLanguage
  14288. id="0"
  14289. name="Portuguese"
  14290. package="18"
  14291. />
  14292. <otaLanguage
  14293. id="0"
  14294. name="Hebrew"
  14295. package="19"
  14296. />
  14297. <otaLanguage
  14298. id="0"
  14299. name="Greek"
  14300. package="20"
  14301. />
  14302. </otaLanguages>
  14303. <otaPackages>
  14304. <package
  14305. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0.img"
  14306. size="5183988"
  14307. />
  14308. <package
  14309. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-fr-FR.img"
  14310. size="5183988"
  14311. />
  14312. <package
  14313. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-es-ES.img"
  14314. size="5183988"
  14315. />
  14316. <package
  14317. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-it-IT.img"
  14318. size="5183988"
  14319. />
  14320. <package
  14321. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-de-DE.img"
  14322. size="5183988"
  14323. />
  14324. <package
  14325. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-nl-NL.img"
  14326. size="5183988"
  14327. />
  14328. <package
  14329. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-ru-RU.img"
  14330. size="5183988"
  14331. />
  14332. <package
  14333. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-cmn-CN.img"
  14334. size="5183988"
  14335. />
  14336. <package
  14337. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-ko-KR.img"
  14338. size="5183988"
  14339. />
  14340. <package
  14341. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-ja-JP.img"
  14342. size="5183988"
  14343. />
  14344. <package
  14345. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-fi-FI.img"
  14346. size="5183988"
  14347. />
  14348. <package
  14349. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-pl-PL.img"
  14350. size="5183988"
  14351. />
  14352. <package
  14353. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-cs-CZ.img"
  14354. size="5183988"
  14355. />
  14356. <package
  14357. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-da-DK.img"
  14358. size="5183988"
  14359. />
  14360. <package
  14361. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-nb-NO.img"
  14362. size="5183988"
  14363. />
  14364. <package
  14365. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-sv-SE.img"
  14366. size="5183988"
  14367. />
  14368. <package
  14369. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-tr-TR.img"
  14370. size="5183988"
  14371. />
  14372. <package
  14373. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-hu-HU.img"
  14374. size="5183988"
  14375. />
  14376. <package
  14377. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-pt-PT.img"
  14378. size="5183988"
  14379. />
  14380. <package
  14381. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-he-IL.img"
  14382. size="5183988"
  14383. />
  14384. <package
  14385. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-el-GR.img"
  14386. size="5183988"
  14387. />
  14388. </otaPackages>
  14389. </productMenu>
  14390. <productMenu id="wa"
  14391. type="0" >
  14392. </productMenu>
  14393. <productMenu id="sip"
  14394. type="1" >
  14395. </productMenu>
  14396. <productMenu id="led"
  14397. type="0" >
  14398. </productMenu>
  14399. <productMenu id="illusion"
  14400. type="1" >
  14401. </productMenu>
  14402. <productMenu id="meshIntercom"
  14403. type="30" >
  14404. </productMenu>
  14405. <productMenu id="meshIntercom+"
  14406. type="3"
  14407. url="2" >
  14408. </productMenu>
  14409. <productMenu id="waveIntercom"
  14410. type="0" >
  14411. </productMenu>
  14412. <productMenu id="bluetoothIntercom"
  14413. type="1" >
  14414. </productMenu>
  14415. <productMenu id="bluetoothIntercomGrouping"
  14416. type="0" >
  14417. </productMenu>
  14418. <productMenu id="fmradio"
  14419. type="1"
  14420. url="1" >
  14421. </productMenu>
  14422. <productMenu id="phone"
  14423. type="1" >
  14424. </productMenu>
  14425. <productMenu id="music"
  14426. type="1" >
  14427. </productMenu>
  14428. <productMenu id="musicSharing"
  14429. type="0" >
  14430. </productMenu>
  14431. <productMenu id="deviceSetting"
  14432. type="1"
  14433. url="https://api.sena.com/support/CellularlineNeoApp/ERA1X/NS_ERA1X.xml" >
  14434. </productMenu>
  14435. <productMenu id="quickGuide"
  14436. type="0"
  14437. url=""
  14438. size="1.12MB" >
  14439. </productMenu>
  14440. <productMenu id="userGuide"
  14441. type="1"
  14442. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.1.1_en_250314.pdf"
  14443. size="2.0MB" >
  14444. </productMenu>
  14445. <productMenu id="videoGuide"
  14446. type="0"
  14447. url=""
  14448. size="3.41MB" >
  14449. </productMenu>
  14450. <productMenu id="volume"
  14451. type="16" >
  14452. </productMenu>
  14453. <productMenu id="soundMode"
  14454. type="1" >
  14455. </productMenu>
  14456. <productMenu id="battery"
  14457. type="1" >
  14458. </productMenu>
  14459. <productID id="6A83"
  14460. />
  14461. <productGroupable type="0"
  14462. />
  14463. </product>
  14464. <product id="MeshStation"
  14465. name="Mesh Station"
  14466. series="50"
  14467. latestVersion="0.9"
  14468. show = "-1" >
  14469. <productMenu id="protocol"
  14470. type="2" >
  14471. </productMenu>
  14472. <productMenu id="meshIntercom"
  14473. type="20"
  14474. url="99" >
  14475. </productMenu>
  14476. <productID id="3161"
  14477. />
  14478. <productGroupable type="0"
  14479. />
  14480. </product>
  14481. </products>
  14482. </sna>