snm.xml 285 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307
  1. <?xml version="1.0" encoding="UTF-8" standalone="no" ?>
  2. <sna xmlns="http://www.sena.com/sna" date="20250182" appVer="2.14" iosAppVer="2.14" central="1">
  3. <tu url="https://www.sena.com/terms-of-use/"
  4. />
  5. <pp url="https://www.sena.com/privacy"
  6. />
  7. <profile url=""
  8. />
  9. <wa url="https://firmware.sena.com/senabluetoothmanager/UserGuide_WiFi_Charging_Cable_1.0.2_en_250212.pdf"
  10. />
  11. <wc url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_WiFi_Sync_Cable_2.0.0_en_220906.pdf"
  12. />
  13. <wds url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_WiFi_Docking_Station_2.0.0_en_220906.pdf"
  14. />
  15. <wim url="https://firmware.sena.com/senabluetoothmanager/UserGuide_IMPULSE_Firmware_Update_1.0.0_en_250212.pdf"
  16. />
  17. <wst url="https://firmware.sena.com/senabluetoothmanager/UserGuide_STRYKER_Firmware_Update_1.0.0_en_250211.pdf"
  18. />
  19. <support url="https://www.sena.com/support"
  20. />
  21. <forum url="https://community.sena.com/hc/en-us"
  22. />
  23. <sip url="https://community.sena.com/hc/en-us"
  24. />
  25. <productKeys>
  26. <productKey id="4210"
  27. userPSKey="5"
  28. valueLength="1"
  29. />
  30. <productKey id="4230"
  31. userPSKey="5"
  32. valueLength="1"
  33. />
  34. </productKeys>
  35. <!--
  36. <menus>
  37. <menu id="protocol" />
  38. <menu id="alexa" />
  39. <menu id="ota" />
  40. <menu id="wa" />
  41. <menu id="manager" />
  42. <menu id="sip" />
  43. <menu id="meshIntercom" />
  44. <menu id="bluetoothIntercom" />
  45. <menu id="music" />
  46. <menu id="musicSharing" />
  47. <menu id="fmradio" />
  48. <menu id="phone" />
  49. <menu id="led" />
  50. <menu id="volume" />
  51. <menu id="battery" />
  52. <menu id="deviceSetting" />
  53. <menu id="quickGuide" />
  54. <menu id="userGuide" />
  55. </menus>
  56. -->
  57. <serieses>
  58. <series id="60"
  59. name="60 Series"
  60. show="1"
  61. />
  62. <series id="50"
  63. name="50 Series"
  64. show="1"
  65. />
  66. <series id="Helmet"
  67. name="Smart Helmet"
  68. show="1"
  69. />
  70. <series id="30"
  71. name="30 Series"
  72. show="1"
  73. />
  74. <series id="SF"
  75. name="SF Series"
  76. show="1"
  77. />
  78. <series id="SPIDER"
  79. name="SPIDER Series"
  80. show="1"
  81. />
  82. <series id="20"
  83. name="20 Series"
  84. show="1"
  85. />
  86. <series id="SRL"
  87. name="SRL Series"
  88. show="1"
  89. />
  90. <series id="ACS"
  91. name="ACS Series"
  92. show="1"
  93. />
  94. <series id="10"
  95. name="10 Series"
  96. show="1"
  97. />
  98. <series id="5"
  99. name="5 Series"
  100. show="1"
  101. />
  102. <series id="3"
  103. name="3 Series"
  104. show="1"
  105. />
  106. <series id="C"
  107. name="C Series"
  108. show="1"
  109. />
  110. <!--
  111. <series id="smh"
  112. name="SMH"
  113. />
  114. <series id="cavalry"
  115. name="CAVALRY"
  116. show="0"
  117. />
  118. -->
  119. </serieses>
  120. <products>
  121. <product id="60S"
  122. name="60S"
  123. series="60"
  124. latestVersion="1.2"
  125. latestVersionMesh="1.2"
  126. latestVersionVoicePrompt="1.1"
  127. show = "1" >
  128. <productMenu id="protocol"
  129. type="2" >
  130. </productMenu>
  131. <productMenu id="ota"
  132. type="2" >
  133. <otaLanguages>
  134. <otaLanguage
  135. id="0"
  136. name="English"
  137. package="0"
  138. />
  139. <otaLanguage
  140. id="0"
  141. name="French"
  142. package="1"
  143. />
  144. <otaLanguage
  145. id="0"
  146. name="Spanish"
  147. package="2"
  148. />
  149. <otaLanguage
  150. id="0"
  151. name="Italian"
  152. package="3"
  153. />
  154. <otaLanguage
  155. id="0"
  156. name="German"
  157. package="4"
  158. />
  159. <otaLanguage
  160. id="0"
  161. name="Dutch"
  162. package="5"
  163. />
  164. <otaLanguage
  165. id="0"
  166. name="Russian"
  167. package="6"
  168. />
  169. <otaLanguage
  170. id="0"
  171. name="Chinese"
  172. package="7"
  173. />
  174. <otaLanguage
  175. id="0"
  176. name="Korean"
  177. package="8"
  178. />
  179. <otaLanguage
  180. id="0"
  181. name="Japanese"
  182. package="9"
  183. />
  184. <otaLanguage
  185. id="0"
  186. name="Finnish"
  187. package="10"
  188. />
  189. <otaLanguage
  190. id="0"
  191. name="Polish"
  192. package="11"
  193. />
  194. </otaLanguages>
  195. <otaPackages>
  196. <package
  197. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2.img"
  198. size="5183988"
  199. />
  200. <package
  201. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-fr-FR.img"
  202. size="5183988"
  203. />
  204. <package
  205. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-es-ES.img"
  206. size="5183988"
  207. />
  208. <package
  209. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-it-IT.img"
  210. size="5183988"
  211. />
  212. <package
  213. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-de-DE.img"
  214. size="5183988"
  215. />
  216. <package
  217. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-nl-NL.img"
  218. size="5183988"
  219. />
  220. <package
  221. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-ru-RU.img"
  222. size="5183988"
  223. />
  224. <package
  225. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-cmn-CN.img"
  226. size="5183988"
  227. />
  228. <package
  229. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-ko-KR.img"
  230. size="5183988"
  231. />
  232. <package
  233. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-ja-JP.img"
  234. size="5183988"
  235. />
  236. <package
  237. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-fi-FI.img"
  238. size="5183988"
  239. />
  240. <package
  241. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-pl-PL.img"
  242. size="5183988"
  243. />
  244. </otaPackages>
  245. </productMenu>
  246. <productMenu id="wa"
  247. type="0" >
  248. </productMenu>
  249. <productMenu id="sip"
  250. type="1" >
  251. </productMenu>
  252. <productMenu id="led"
  253. type="0" >
  254. </productMenu>
  255. <productMenu id="illusion"
  256. type="1" >
  257. </productMenu>
  258. <productMenu id="meshIntercom"
  259. type="30" >
  260. </productMenu>
  261. <productMenu id="meshIntercom+"
  262. type="3"
  263. url="2" >
  264. <productMenuURL version="1.0.2"
  265. url="10"
  266. />
  267. </productMenu>
  268. <productMenu id="waveIntercom"
  269. type="1" >
  270. <productMenuType version="1.0.9"
  271. type="0"
  272. />
  273. </productMenu>
  274. <productMenu id="bluetoothIntercom"
  275. type="1"
  276. url="2" >
  277. </productMenu>
  278. <productMenu id="bluetoothIntercomGrouping"
  279. type="0" >
  280. </productMenu>
  281. <productMenu id="fmradio"
  282. type="1"
  283. url="1" >
  284. </productMenu>
  285. <productMenu id="phone"
  286. type="1" >
  287. </productMenu>
  288. <productMenu id="music"
  289. type="1" >
  290. </productMenu>
  291. <productMenu id="musicSharing"
  292. type="0" >
  293. </productMenu>
  294. <productMenu id="deviceSetting"
  295. type="1"
  296. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml" >
  297. <productMenuURL version="1.0.2"
  298. url="https://api.sena.com/support/SenaNeoApp/60/NS_60.xml"
  299. />
  300. <productMenuURL version="1.0"
  301. url="https://api.sena.com/support/test/xml/NS_60_Test_13.xml"
  302. />
  303. <productMenuURL version="0.9.11"
  304. url="https://api.sena.com/support/test/xml/NS_60_Test_05.xml"
  305. />
  306. </productMenu>
  307. <productMenu id="quickGuide"
  308. type="0"
  309. url=""
  310. size="1.12MB" >
  311. </productMenu>
  312. <productMenu id="userGuide"
  313. type="1"
  314. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.1.2_en_250514.pdf"
  315. size="2.0MB" >
  316. </productMenu>
  317. <productMenu id="videoGuide"
  318. type="0"
  319. url=""
  320. size="3.41MB" >
  321. </productMenu>
  322. <productMenu id="connectGuide"
  323. type="1"
  324. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_60s.json"
  325. size="1.12MB" >
  326. </productMenu>
  327. <productMenu id="volume"
  328. type="16" >
  329. <productMenuType version="0.9.11"
  330. type="13"
  331. />
  332. </productMenu>
  333. <productMenu id="soundMode"
  334. type="1" >
  335. <productMenuType version="0.9.11"
  336. type="0"
  337. />
  338. </productMenu>
  339. <productMenu id="battery"
  340. type="1" >
  341. </productMenu>
  342. <productID id="6A02"
  343. />
  344. <productGroupable type="0"
  345. />
  346. </product>
  347. <product id="60R"
  348. name="60R"
  349. series="60"
  350. latestVersion="0.7"
  351. latestVersionMesh="0.8"
  352. latestVersionVoicePrompt="0.2"
  353. show = "-1" >
  354. <productMenu id="protocol"
  355. type="2" >
  356. </productMenu>
  357. <productMenu id="ota"
  358. type="0" >
  359. <otaLanguages>
  360. <otaLanguage
  361. id="0"
  362. name="English"
  363. package="0"
  364. />
  365. <otaLanguage
  366. id="0"
  367. name="Korean"
  368. package="1"
  369. />
  370. </otaLanguages>
  371. <otaPackages>
  372. <package
  373. url="https://api.sena.com/support/test/60R-v0.7-build0_en_US.img"
  374. size="5183988"
  375. />
  376. <package
  377. url="https://api.sena.com/support/test/60R-v0.6.4-build0_kr_KR.img"
  378. size="5183988"
  379. />
  380. </otaPackages>
  381. </productMenu>
  382. <productMenu id="wa"
  383. type="0" >
  384. </productMenu>
  385. <productMenu id="sip"
  386. type="1" >
  387. </productMenu>
  388. <productMenu id="led"
  389. type="1" >
  390. </productMenu>
  391. <productMenu id="illusion"
  392. type="1" >
  393. </productMenu>
  394. <productMenu id="meshIntercom"
  395. type="30" >
  396. </productMenu>
  397. <productMenu id="bluetoothIntercom"
  398. type="1" >
  399. </productMenu>
  400. <productMenu id="fmradio"
  401. type="1"
  402. url="1" >
  403. </productMenu>
  404. <productMenu id="phone"
  405. type="1" >
  406. </productMenu>
  407. <productMenu id="music"
  408. type="1" >
  409. </productMenu>
  410. <productMenu id="musicSharing"
  411. type="0" >
  412. </productMenu>
  413. <productMenu id="deviceSetting"
  414. type="1"
  415. url="https://api.sena.com/support/test/xml/NS_60_Test_05.xml" >
  416. </productMenu>
  417. <productMenu id="quickGuide"
  418. type="0"
  419. url=""
  420. size="1.12MB" >
  421. </productMenu>
  422. <productMenu id="userGuide"
  423. type="0"
  424. url=""
  425. size="2.0MB" >
  426. </productMenu>
  427. <productMenu id="videoGuide"
  428. type="0"
  429. url=""
  430. size="3.41MB" >
  431. </productMenu>
  432. <productMenu id="volume"
  433. type="13" >
  434. </productMenu>
  435. <productMenu id="battery"
  436. type="1" >
  437. </productMenu>
  438. <productID id="6A03"
  439. />
  440. <productGroupable type="0"
  441. />
  442. </product>
  443. <product id="COMP1"
  444. name="BMW COM P1"
  445. series="60"
  446. latestVersion="1.0.6"
  447. latestVersionMesh="0.19"
  448. latestVersionVoicePrompt="1.0"
  449. show = "-1" >
  450. <productMenu id="protocol"
  451. type="2" >
  452. </productMenu>
  453. <productMenu id="ota"
  454. type="2" >
  455. <otaLanguages>
  456. <otaLanguage
  457. id="0"
  458. name="English"
  459. package="0"
  460. />
  461. <otaLanguage
  462. id="0"
  463. name="French"
  464. package="1"
  465. />
  466. <otaLanguage
  467. id="0"
  468. name="Spanish"
  469. package="2"
  470. />
  471. <otaLanguage
  472. id="0"
  473. name="Italian"
  474. package="3"
  475. />
  476. <otaLanguage
  477. id="0"
  478. name="German"
  479. package="4"
  480. />
  481. <otaLanguage
  482. id="0"
  483. name="Dutch"
  484. package="5"
  485. />
  486. <otaLanguage
  487. id="0"
  488. name="Russian"
  489. package="6"
  490. />
  491. <otaLanguage
  492. id="0"
  493. name="Chinese"
  494. package="7"
  495. />
  496. <otaLanguage
  497. id="0"
  498. name="Korean"
  499. package="8"
  500. />
  501. <otaLanguage
  502. id="0"
  503. name="Japanese"
  504. package="9"
  505. />
  506. <otaLanguage
  507. id="0"
  508. name="Finnish"
  509. package="10"
  510. />
  511. </otaLanguages>
  512. <otaPackages>
  513. <package
  514. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0.img"
  515. size="5183988"
  516. />
  517. <package
  518. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-fr-FR.img"
  519. size="5183988"
  520. />
  521. <package
  522. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-es-ES.img"
  523. size="5183988"
  524. />
  525. <package
  526. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-it-IT.img"
  527. size="5183988"
  528. />
  529. <package
  530. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-de-DE.img"
  531. size="5183988"
  532. />
  533. <package
  534. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-nl-NL.img"
  535. size="5183988"
  536. />
  537. <package
  538. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-ru-RU.img"
  539. size="5183988"
  540. />
  541. <package
  542. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-cmn-CN.img"
  543. size="5183988"
  544. />
  545. <package
  546. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-ko-KR.img"
  547. size="5183988"
  548. />
  549. <package
  550. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-ja-JP.img"
  551. size="5183988"
  552. />
  553. <package
  554. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-fi-FI.img"
  555. size="5183988"
  556. />
  557. </otaPackages>
  558. </productMenu>
  559. <productMenu id="wa"
  560. type="0" >
  561. </productMenu>
  562. <productMenu id="sip"
  563. type="1" >
  564. </productMenu>
  565. <productMenu id="led"
  566. type="0" >
  567. </productMenu>
  568. <productMenu id="illusion"
  569. type="0" >
  570. </productMenu>
  571. <productMenu id="meshIntercom"
  572. type="30" >
  573. </productMenu>
  574. <productMenu id="bluetoothIntercom"
  575. type="1" >
  576. </productMenu>
  577. <productMenu id="bluetoothIntercomGrouping"
  578. type="0" >
  579. </productMenu>
  580. <productMenu id="fmradio"
  581. type="0" >
  582. </productMenu>
  583. <productMenu id="phone"
  584. type="1" >
  585. </productMenu>
  586. <productMenu id="music"
  587. type="1" >
  588. </productMenu>
  589. <productMenu id="musicSharing"
  590. type="0" >
  591. </productMenu>
  592. <productMenu id="deviceSetting"
  593. type="1"
  594. url="https://api.sena.com/support/test/xml/NS_COMP1_Test_13.xml" >
  595. </productMenu>
  596. <productMenu id="quickGuide"
  597. type="0"
  598. url=""
  599. size="1.12MB" >
  600. </productMenu>
  601. <productMenu id="userGuide"
  602. type="0"
  603. url=""
  604. size="2.0MB" >
  605. </productMenu>
  606. <productMenu id="videoGuide"
  607. type="0"
  608. url=""
  609. size="3.41MB" >
  610. </productMenu>
  611. <productMenu id="volume"
  612. type="16" >
  613. </productMenu>
  614. <productMenu id="battery"
  615. type="1" >
  616. </productMenu>
  617. <productID id="6A80"
  618. />
  619. <productGroupable type="0"
  620. />
  621. </product>
  622. <product id="50S"
  623. name="50S"
  624. series="50"
  625. latestVersion="2.7.1"
  626. show = "1" >
  627. <productMenu id="protocol"
  628. type="2" >
  629. </productMenu>
  630. <productMenu id="alexa"
  631. type="0" >
  632. </productMenu>
  633. <productMenu id="ota"
  634. type="0"
  635. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  636. size="1150234" >
  637. </productMenu>
  638. <productMenu id="wa"
  639. type="1" >
  640. </productMenu>
  641. <productMenu id="sip"
  642. type="1" >
  643. </productMenu>
  644. <productMenu id="meshIntercom"
  645. type="30" >
  646. <productMenuType version="2.1.1"
  647. type="20"
  648. />
  649. </productMenu>
  650. <productMenu id="meshIntercom+"
  651. type="3"
  652. url="2" >
  653. <productMenuType version="2.5"
  654. type="2"
  655. />
  656. <productMenuURL version="2.1.1"
  657. url="0"
  658. />
  659. </productMenu>
  660. <productMenu id="waveIntercom"
  661. type="1" >
  662. <productMenuType version="2.6"
  663. type="0"
  664. />
  665. </productMenu>
  666. <productMenu id="bluetoothIntercom"
  667. type="1" >
  668. </productMenu>
  669. <productMenu id="phone"
  670. type="1" >
  671. </productMenu>
  672. <productMenu id="music"
  673. type="1" >
  674. </productMenu>
  675. <productMenu id="fmradio"
  676. type="1" >
  677. </productMenu>
  678. <productMenu id="deviceSetting"
  679. type="1"
  680. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_11.xml" >
  681. <productMenuURL version="2.5"
  682. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  683. />
  684. <productMenuURL version="2.1.1"
  685. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  686. />
  687. <productMenuURL version="2.0.3"
  688. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  689. />
  690. </productMenu>
  691. <productMenu id="quickGuide"
  692. type="0"
  693. url=""
  694. size="934KB" >
  695. </productMenu>
  696. <productMenu id="userGuide"
  697. type="1"
  698. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50S_2.8.1_en_250731.pdf"
  699. size="1.14MB" >
  700. </productMenu>
  701. <productMenu id="videoGuide"
  702. type="1"
  703. url="https://www.youtube.com/watch?v=Uj1X00cwHlM&amp;list=PLXyK8lf8nIEymkdmRiz-OUBcPn1cxi9rx"
  704. size="3.41MB" >
  705. </productMenu>
  706. <productMenu id="connectGuide"
  707. type="1"
  708. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_50s.json"
  709. size="1.12MB" >
  710. </productMenu>
  711. <productMenu id="volume"
  712. type="11" >
  713. </productMenu>
  714. <productMenu id="battery"
  715. type="1" >
  716. </productMenu>
  717. <productID id="3210"
  718. />
  719. <productGroupable type="0"
  720. />
  721. </product>
  722. <product id="50S"
  723. name="50S"
  724. series="50"
  725. latestVersion="1.5"
  726. show = "-1" >
  727. <productMenu id="protocol"
  728. type="2" >
  729. </productMenu>
  730. <productMenu id="alexa"
  731. type="0" >
  732. </productMenu>
  733. <productMenu id="wa"
  734. type="1" >
  735. </productMenu>
  736. <productMenu id="sip"
  737. type="1" >
  738. </productMenu>
  739. <productMenu id="meshIntercom"
  740. type="30" >
  741. <productMenuType version="1.2.2"
  742. type="20"
  743. />
  744. </productMenu>
  745. <productMenu id="meshIntercom+"
  746. type="3"
  747. url="2" >
  748. <productMenuType version="1.4.9"
  749. type="2"
  750. />
  751. <productMenuURL version="1.2.2"
  752. url="0"
  753. />
  754. </productMenu>
  755. <productMenu id="waveIntercom"
  756. type="1" >
  757. <productMenuType version="1.3.9"
  758. type="0"
  759. />
  760. </productMenu>
  761. <productMenu id="bluetoothIntercom"
  762. type="1" >
  763. </productMenu>
  764. <productMenu id="phone"
  765. type="1" >
  766. </productMenu>
  767. <productMenu id="music"
  768. type="1" >
  769. </productMenu>
  770. <productMenu id="fmradio"
  771. type="1" >
  772. </productMenu>
  773. <productMenu id="deviceSetting"
  774. type="1"
  775. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  776. <productMenuURL version="1.4.9"
  777. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_13.xml"
  778. />
  779. <productMenuURL version="1.3.9"
  780. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  781. />
  782. <productMenuURL version="1.2.2"
  783. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  784. />
  785. <productMenuURL version="1.1.1"
  786. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  787. />
  788. </productMenu>
  789. <productMenu id="quickGuide"
  790. type="0"
  791. url=""
  792. size="934KB" >
  793. </productMenu>
  794. <productMenu id="userGuide"
  795. type="1"
  796. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50S_1.9.2_en_250731.pdf"
  797. size="1.14MB" >
  798. </productMenu>
  799. <productMenu id="videoGuide"
  800. type="1"
  801. url="https://www.youtube.com/watch?v=Uj1X00cwHlM&amp;list=PLXyK8lf8nIEymkdmRiz-OUBcPn1cxi9rx"
  802. size="3.41MB" >
  803. </productMenu>
  804. <productMenu id="volume"
  805. type="11" >
  806. </productMenu>
  807. <productMenu id="battery"
  808. type="1" >
  809. </productMenu>
  810. <productID id="3132"
  811. />
  812. <productGroupable type="0"
  813. />
  814. </product>
  815. <product id="50R"
  816. name="50R"
  817. series="50"
  818. latestVersion="2.7"
  819. show = "1" >
  820. <productMenu id="protocol"
  821. type="2" >
  822. </productMenu>
  823. <productMenu id="alexa"
  824. type="0" >
  825. </productMenu>
  826. <productMenu id="ota"
  827. type="0"
  828. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  829. size="1150234" >
  830. </productMenu>
  831. <productMenu id="wa"
  832. type="1" >
  833. </productMenu>
  834. <productMenu id="sip"
  835. type="1" >
  836. </productMenu>
  837. <productMenu id="meshIntercom"
  838. type="30" >
  839. <productMenuType version="2.1.1"
  840. type="20"
  841. />
  842. </productMenu>
  843. <productMenu id="meshIntercom+"
  844. type="3"
  845. url="2" >
  846. <productMenuType version="2.5"
  847. type="2"
  848. />
  849. <productMenuURL version="2.1.1"
  850. url="0"
  851. />
  852. </productMenu>
  853. <productMenu id="bluetoothIntercom"
  854. type="1" >
  855. </productMenu>
  856. <productMenu id="phone"
  857. type="1" >
  858. </productMenu>
  859. <productMenu id="music"
  860. type="1" >
  861. </productMenu>
  862. <productMenu id="fmradio"
  863. type="1" >
  864. </productMenu>
  865. <productMenu id="deviceSetting"
  866. type="1"
  867. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_11.xml" >
  868. <productMenuURL version="2.5"
  869. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  870. />
  871. <productMenuURL version="2.1.1"
  872. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  873. />
  874. <productMenuURL version="2.0"
  875. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  876. />
  877. </productMenu>
  878. <productMenu id="quickGuide"
  879. type="0"
  880. url=""
  881. size="344KB" >
  882. </productMenu>
  883. <productMenu id="userGuide"
  884. type="1"
  885. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50R_2.7.1_en_250731.pdf"
  886. size="3.41MB" >
  887. </productMenu>
  888. <productMenu id="videoGuide"
  889. type="1"
  890. url="https://www.youtube.com/watch?v=bFqh5uCWzvY&amp;list=PLXyK8lf8nIEy9n9EILQwosdM3MzyldB3u"
  891. size="3.41MB" >
  892. </productMenu>
  893. <productMenu id="connectGuide"
  894. type="1"
  895. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init_50r.json"
  896. size="1.12MB" >
  897. </productMenu>
  898. <productMenu id="volume"
  899. type="11" >
  900. </productMenu>
  901. <productMenu id="battery"
  902. type="1" >
  903. </productMenu>
  904. <productID id="3218"
  905. />
  906. <productGroupable type="0"
  907. />
  908. </product>
  909. <product id="50R"
  910. name="50R"
  911. series="50"
  912. latestVersion="1.5"
  913. show = "-1" >
  914. <productMenu id="protocol"
  915. type="2" >
  916. </productMenu>
  917. <productMenu id="alexa"
  918. type="0" >
  919. </productMenu>
  920. <productMenu id="wa"
  921. type="1" >
  922. </productMenu>
  923. <productMenu id="sip"
  924. type="1" >
  925. </productMenu>
  926. <productMenu id="meshIntercom"
  927. type="30" >
  928. <productMenuType version="1.2.2"
  929. type="20"
  930. />
  931. </productMenu>
  932. <productMenu id="meshIntercom+"
  933. type="3"
  934. url="2" >
  935. <productMenuType version="1.4.9"
  936. type="2"
  937. />
  938. <productMenuURL version="1.2.2"
  939. url="0"
  940. />
  941. </productMenu>
  942. <productMenu id="waveIntercom"
  943. type="1" >
  944. <productMenuType version="1.3.9"
  945. type="0"
  946. />
  947. </productMenu>
  948. <productMenu id="bluetoothIntercom"
  949. type="1" >
  950. </productMenu>
  951. <productMenu id="phone"
  952. type="1" >
  953. </productMenu>
  954. <productMenu id="music"
  955. type="1" >
  956. </productMenu>
  957. <productMenu id="fmradio"
  958. type="1" >
  959. </productMenu>
  960. <productMenu id="deviceSetting"
  961. type="1"
  962. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  963. <productMenuURL version="1.4.9"
  964. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_13.xml"
  965. />
  966. <productMenuURL version="1.3.9"
  967. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  968. />
  969. <productMenuURL version="1.2.2"
  970. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  971. />
  972. <productMenuURL version="1.1.1"
  973. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  974. />
  975. </productMenu>
  976. <productMenu id="quickGuide"
  977. type="0"
  978. url=""
  979. size="344KB" >
  980. </productMenu>
  981. <productMenu id="userGuide"
  982. type="1"
  983. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50R_1.9.2_en_250731.pdf"
  984. size="3.41MB" >
  985. </productMenu>
  986. <productMenu id="videoGuide"
  987. type="1"
  988. url="https://www.youtube.com/watch?v=bFqh5uCWzvY&amp;list=PLXyK8lf8nIEy9n9EILQwosdM3MzyldB3u"
  989. size="3.41MB" >
  990. </productMenu>
  991. <productMenu id="volume"
  992. type="11" >
  993. </productMenu>
  994. <productMenu id="battery"
  995. type="1" >
  996. </productMenu>
  997. <productID id="3134"
  998. />
  999. <productGroupable type="0"
  1000. />
  1001. </product>
  1002. <product id="50C"
  1003. name="50C"
  1004. series="50"
  1005. latestVersion="1.4.2"
  1006. show = "1" >
  1007. <productMenu id="protocol"
  1008. type="2" >
  1009. </productMenu>
  1010. <productMenu id="ota"
  1011. type="0" >
  1012. </productMenu>
  1013. <productMenu id="wa"
  1014. type="1" >
  1015. </productMenu>
  1016. <productMenu id="sip"
  1017. type="1" >
  1018. </productMenu>
  1019. <productMenu id="meshIntercom"
  1020. type="30" >
  1021. <productMenuType version="1.1.1"
  1022. type="20"
  1023. />
  1024. </productMenu>
  1025. <productMenu id="meshIntercom+"
  1026. type="3"
  1027. url="2" >
  1028. <productMenuType version="1.3.9"
  1029. type="2"
  1030. />
  1031. <productMenuURL version="1.1.1"
  1032. url="0"
  1033. />
  1034. </productMenu>
  1035. <productMenu id="waveIntercom"
  1036. type="1" >
  1037. <productMenuType version="1.2.9"
  1038. type="0"
  1039. />
  1040. </productMenu>
  1041. <productMenu id="bluetoothIntercom"
  1042. type="1" >
  1043. </productMenu>
  1044. <productMenu id="phone"
  1045. type="1" >
  1046. </productMenu>
  1047. <productMenu id="music"
  1048. type="1" >
  1049. </productMenu>
  1050. <productMenu id="fmradio"
  1051. type="1" >
  1052. </productMenu>
  1053. <productMenu id="deviceSetting"
  1054. type="1"
  1055. url="https://api.sena.com/support/SenaNeoApp/50C/NS_50C_04.xml" >
  1056. <productMenuURL version="1.3.9"
  1057. url="https://api.sena.com/support/SenaNeoApp/50C/NS_50C_02.xml"
  1058. />
  1059. <productMenuURL version="1.1.1"
  1060. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  1061. />
  1062. <productMenuURL version="1.0.1"
  1063. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  1064. />
  1065. </productMenu>
  1066. <productMenu id="quickGuide"
  1067. type="0"
  1068. url=""
  1069. size="344KB" >
  1070. </productMenu>
  1071. <productMenu id="userGuide"
  1072. type="1"
  1073. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50C_1.6.1_en_250508.pdf"
  1074. size="3.41MB" >
  1075. </productMenu>
  1076. <productMenu id="connectGuide"
  1077. type="1"
  1078. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_50c.json"
  1079. size="1.12MB" >
  1080. </productMenu>
  1081. <productMenu id="volume"
  1082. type="11" >
  1083. </productMenu>
  1084. <productMenu id="battery"
  1085. type="1" >
  1086. </productMenu>
  1087. <productID id="3232"
  1088. />
  1089. <productGroupable type="0"
  1090. />
  1091. </product>
  1092. <product id="PHANTOMXB"
  1093. name="PHANTOM XB"
  1094. series="Helmet"
  1095. latestVersion="0.1"
  1096. latestVersionVoicePrompt="1.0"
  1097. show = "-1" >
  1098. <productMenu id="protocol"
  1099. type="2" >
  1100. </productMenu>
  1101. <productMenu id="ota"
  1102. type="0" >
  1103. <otaLanguages>
  1104. <otaLanguage
  1105. id="0"
  1106. name="English"
  1107. package="0"
  1108. />
  1109. <otaLanguage
  1110. id="0"
  1111. name="French"
  1112. package="1"
  1113. />
  1114. <otaLanguage
  1115. id="0"
  1116. name="Spanish"
  1117. package="2"
  1118. />
  1119. <otaLanguage
  1120. id="0"
  1121. name="Italian"
  1122. package="3"
  1123. />
  1124. <otaLanguage
  1125. id="0"
  1126. name="German"
  1127. package="4"
  1128. />
  1129. <otaLanguage
  1130. id="0"
  1131. name="Dutch"
  1132. package="5"
  1133. />
  1134. <otaLanguage
  1135. id="0"
  1136. name="Russian"
  1137. package="6"
  1138. />
  1139. <otaLanguage
  1140. id="0"
  1141. name="Chinese"
  1142. package="7"
  1143. />
  1144. <otaLanguage
  1145. id="0"
  1146. name="Korean"
  1147. package="8"
  1148. />
  1149. <otaLanguage
  1150. id="0"
  1151. name="Japanese"
  1152. package="9"
  1153. />
  1154. <otaLanguage
  1155. id="0"
  1156. name="Finnish"
  1157. package="10"
  1158. />
  1159. <otaLanguage
  1160. id="0"
  1161. name="Polish"
  1162. package="11"
  1163. />
  1164. </otaLanguages>
  1165. <otaPackages>
  1166. <package
  1167. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0.img"
  1168. size="5183988"
  1169. />
  1170. <package
  1171. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-fr-FR.img"
  1172. size="5183988"
  1173. />
  1174. <package
  1175. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-es-ES.img"
  1176. size="5183988"
  1177. />
  1178. <package
  1179. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-it-IT.img"
  1180. size="5183988"
  1181. />
  1182. <package
  1183. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-de-DE.img"
  1184. size="5183988"
  1185. />
  1186. <package
  1187. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-nl-NL.img"
  1188. size="5183988"
  1189. />
  1190. <package
  1191. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-ru-RU.img"
  1192. size="5183988"
  1193. />
  1194. <package
  1195. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-cmn-CN.img"
  1196. size="5183988"
  1197. />
  1198. <package
  1199. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-ko-KR.img"
  1200. size="5183988"
  1201. />
  1202. <package
  1203. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-ja-JP.img"
  1204. size="5183988"
  1205. />
  1206. <package
  1207. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-fi-FI.img"
  1208. size="5183988"
  1209. />
  1210. <package
  1211. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-pl-PL.img"
  1212. size="5183988"
  1213. />
  1214. </otaPackages>
  1215. </productMenu>
  1216. <productMenu id="wa"
  1217. type="0" >
  1218. </productMenu>
  1219. <productMenu id="led"
  1220. type="5" >
  1221. </productMenu>
  1222. <productMenu id="led+"
  1223. type="2"
  1224. url="1" >
  1225. </productMenu>
  1226. <productMenu id="meshIntercom"
  1227. type="30" >
  1228. </productMenu>
  1229. <productMenu id="meshIntercom+"
  1230. type="3"
  1231. url="2" >
  1232. </productMenu>
  1233. <productMenu id="waveIntercom"
  1234. type="1" >
  1235. </productMenu>
  1236. <productMenu id="fmradio"
  1237. type="0" >
  1238. </productMenu>
  1239. <productMenu id="phone"
  1240. type="1" >
  1241. </productMenu>
  1242. <productMenu id="music"
  1243. type="1" >
  1244. </productMenu>
  1245. <productMenu id="musicSharing"
  1246. type="0" >
  1247. </productMenu>
  1248. <productMenu id="deviceSetting"
  1249. type="1"
  1250. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml" >
  1251. </productMenu>
  1252. <productMenu id="quickGuide"
  1253. type="0"
  1254. url=""
  1255. size="1.12MB" >
  1256. </productMenu>
  1257. <productMenu id="userGuide"
  1258. type="1"
  1259. url=""
  1260. size="2.0MB" >
  1261. </productMenu>
  1262. <productMenu id="videoGuide"
  1263. type="0"
  1264. url=""
  1265. size="3.41MB" >
  1266. </productMenu>
  1267. <productMenu id="volume"
  1268. type="16" >
  1269. </productMenu>
  1270. <productMenu id="battery"
  1271. type="1" >
  1272. </productMenu>
  1273. <productID id="6A0C"
  1274. />
  1275. <productGroupable type="0"
  1276. />
  1277. </product>
  1278. <product id="PHANTOM"
  1279. name="PHANTOM ANC"
  1280. series="Helmet"
  1281. latestVersion="1.1.2"
  1282. latestVersionVoicePrompt="1.0"
  1283. show = "1" >
  1284. <productMenu id="protocol"
  1285. type="2" >
  1286. </productMenu>
  1287. <productMenu id="ota"
  1288. type="2" >
  1289. <productMenuType version="0.6.9"
  1290. type="0"
  1291. />
  1292. <otaLanguages>
  1293. <otaLanguage
  1294. id="0"
  1295. name="English"
  1296. package="0"
  1297. />
  1298. <otaLanguage
  1299. id="0"
  1300. name="French"
  1301. package="1"
  1302. />
  1303. <otaLanguage
  1304. id="0"
  1305. name="Spanish"
  1306. package="2"
  1307. />
  1308. <otaLanguage
  1309. id="0"
  1310. name="Italian"
  1311. package="3"
  1312. />
  1313. <otaLanguage
  1314. id="0"
  1315. name="German"
  1316. package="4"
  1317. />
  1318. <otaLanguage
  1319. id="0"
  1320. name="Dutch"
  1321. package="5"
  1322. />
  1323. <otaLanguage
  1324. id="0"
  1325. name="Russian"
  1326. package="6"
  1327. />
  1328. <otaLanguage
  1329. id="0"
  1330. name="Chinese"
  1331. package="7"
  1332. />
  1333. <otaLanguage
  1334. id="0"
  1335. name="Korean"
  1336. package="8"
  1337. />
  1338. <otaLanguage
  1339. id="0"
  1340. name="Japanese"
  1341. package="9"
  1342. />
  1343. <otaLanguage
  1344. id="0"
  1345. name="Finnish"
  1346. package="10"
  1347. />
  1348. </otaLanguages>
  1349. <otaPackages>
  1350. <package
  1351. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.1.2-build1.img"
  1352. size="5183988"
  1353. />
  1354. <package
  1355. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.1.2-build1-fr-FR.img"
  1356. size="5183988"
  1357. />
  1358. <package
  1359. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.1.2-build1-es-ES.img"
  1360. size="5183988"
  1361. />
  1362. <package
  1363. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.1.2-build1-it-IT.img"
  1364. size="5183988"
  1365. />
  1366. <package
  1367. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.1.2-build1-de-DE.img"
  1368. size="5183988"
  1369. />
  1370. <package
  1371. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.1.2-build1-nl-NL.img"
  1372. size="5183988"
  1373. />
  1374. <package
  1375. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.1.2-build1-ru-RU.img"
  1376. size="5183988"
  1377. />
  1378. <package
  1379. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.1.2-build1-cmn-CN.img"
  1380. size="5183988"
  1381. />
  1382. <package
  1383. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.1.2-build1-ko-KR.img"
  1384. size="5183988"
  1385. />
  1386. <package
  1387. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.1.2-build1-ja-JP.img"
  1388. size="5183988"
  1389. />
  1390. <package
  1391. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.1.2-build1-fi-FI.img"
  1392. size="5183988"
  1393. />
  1394. </otaPackages>
  1395. </productMenu>
  1396. <productMenu id="wa"
  1397. type="0" >
  1398. </productMenu>
  1399. <productMenu id="led"
  1400. type="5" >
  1401. </productMenu>
  1402. <productMenu id="led+"
  1403. type="2"
  1404. url="1" >
  1405. </productMenu>
  1406. <productMenu id="meshIntercom"
  1407. type="30" >
  1408. </productMenu>
  1409. <productMenu id="meshIntercom+"
  1410. type="3"
  1411. url="2" >
  1412. <productMenuURL version="1.0.4"
  1413. url="10"
  1414. />
  1415. </productMenu>
  1416. <productMenu id="waveIntercom"
  1417. type="1" >
  1418. <productMenuType version="1.0.9"
  1419. type="0"
  1420. />
  1421. </productMenu>
  1422. <productMenu id="fmradio"
  1423. type="0" >
  1424. </productMenu>
  1425. <productMenu id="phone"
  1426. type="1" >
  1427. </productMenu>
  1428. <productMenu id="music"
  1429. type="1" >
  1430. </productMenu>
  1431. <productMenu id="musicSharing"
  1432. type="0" >
  1433. </productMenu>
  1434. <productMenu id="deviceSetting"
  1435. type="1"
  1436. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml" >
  1437. <productMenuURL version="1.1.2"
  1438. url="https://api.sena.com/support/SenaNeoApp/PHANTOMANC/NS_PHANTOM_ANC_05.xml"
  1439. />
  1440. <productMenuURL version="1.0.4"
  1441. url="https://api.sena.com/support/SenaNeoApp/PHANTOMANC/NS_PHANTOM_ANC_01.xml"
  1442. />
  1443. </productMenu>
  1444. <productMenu id="quickGuide"
  1445. type="0"
  1446. url=""
  1447. size="1.12MB" >
  1448. </productMenu>
  1449. <productMenu id="userGuide"
  1450. type="1"
  1451. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.0.1_en_250709.pdf"
  1452. size="2.0MB" >
  1453. </productMenu>
  1454. <productMenu id="videoGuide"
  1455. type="0"
  1456. url=""
  1457. size="3.41MB" >
  1458. </productMenu>
  1459. <productMenu id="volume"
  1460. type="16" >
  1461. </productMenu>
  1462. <productMenu id="soundMode"
  1463. type="1" >
  1464. <productMenuType version="0.9.11"
  1465. type="0"
  1466. />
  1467. </productMenu>
  1468. <productMenu id="battery"
  1469. type="1" >
  1470. </productMenu>
  1471. <productID id="6A01"
  1472. />
  1473. <productGroupable type="0"
  1474. />
  1475. </product>
  1476. <product id="PHANTOM"
  1477. name="PHANTOM"
  1478. series="Helmet"
  1479. latestVersion="1.1.4"
  1480. latestVersionVoicePrompt="1.0"
  1481. show = "1" >
  1482. <productMenu id="protocol"
  1483. type="2" >
  1484. </productMenu>
  1485. <productMenu id="ota"
  1486. type="2" >
  1487. <otaLanguages>
  1488. <otaLanguage
  1489. id="0"
  1490. name="English"
  1491. package="0"
  1492. />
  1493. <otaLanguage
  1494. id="0"
  1495. name="French"
  1496. package="1"
  1497. />
  1498. <otaLanguage
  1499. id="0"
  1500. name="Spanish"
  1501. package="2"
  1502. />
  1503. <otaLanguage
  1504. id="0"
  1505. name="Italian"
  1506. package="3"
  1507. />
  1508. <otaLanguage
  1509. id="0"
  1510. name="German"
  1511. package="4"
  1512. />
  1513. <otaLanguage
  1514. id="0"
  1515. name="Dutch"
  1516. package="5"
  1517. />
  1518. <otaLanguage
  1519. id="0"
  1520. name="Russian"
  1521. package="6"
  1522. />
  1523. <otaLanguage
  1524. id="0"
  1525. name="Chinese"
  1526. package="7"
  1527. />
  1528. <otaLanguage
  1529. id="0"
  1530. name="Korean"
  1531. package="8"
  1532. />
  1533. <otaLanguage
  1534. id="0"
  1535. name="Japanese"
  1536. package="9"
  1537. />
  1538. <otaLanguage
  1539. id="0"
  1540. name="Finnish"
  1541. package="10"
  1542. />
  1543. <otaLanguage
  1544. id="0"
  1545. name="Polish"
  1546. package="11"
  1547. />
  1548. </otaLanguages>
  1549. <otaPackages>
  1550. <package
  1551. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0.img"
  1552. size="5183988"
  1553. />
  1554. <package
  1555. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-fr-FR.img"
  1556. size="5183988"
  1557. />
  1558. <package
  1559. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-es-ES.img"
  1560. size="5183988"
  1561. />
  1562. <package
  1563. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-it-IT.img"
  1564. size="5183988"
  1565. />
  1566. <package
  1567. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-de-DE.img"
  1568. size="5183988"
  1569. />
  1570. <package
  1571. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-nl-NL.img"
  1572. size="5183988"
  1573. />
  1574. <package
  1575. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-ru-RU.img"
  1576. size="5183988"
  1577. />
  1578. <package
  1579. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-cmn-CN.img"
  1580. size="5183988"
  1581. />
  1582. <package
  1583. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-ko-KR.img"
  1584. size="5183988"
  1585. />
  1586. <package
  1587. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-ja-JP.img"
  1588. size="5183988"
  1589. />
  1590. <package
  1591. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-fi-FI.img"
  1592. size="5183988"
  1593. />
  1594. <package
  1595. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-pl-PL.img"
  1596. size="5183988"
  1597. />
  1598. </otaPackages>
  1599. </productMenu>
  1600. <productMenu id="wa"
  1601. type="0" >
  1602. </productMenu>
  1603. <productMenu id="led"
  1604. type="5" >
  1605. <productMenuType version="1.0.1"
  1606. type="4"
  1607. />
  1608. </productMenu>
  1609. <productMenu id="led+"
  1610. type="2"
  1611. url="1" >
  1612. <productMenuType version="1.0.1"
  1613. type="-1"
  1614. />
  1615. </productMenu>
  1616. <productMenu id="meshIntercom"
  1617. type="30" >
  1618. </productMenu>
  1619. <productMenu id="meshIntercom+"
  1620. type="3"
  1621. url="2" >
  1622. <productMenuURL version="1.0.4"
  1623. url="10"
  1624. />
  1625. </productMenu>
  1626. <productMenu id="waveIntercom"
  1627. type="1" >
  1628. <productMenuType version="1.0.9"
  1629. type="0"
  1630. />
  1631. </productMenu>
  1632. <productMenu id="fmradio"
  1633. type="0" >
  1634. </productMenu>
  1635. <productMenu id="phone"
  1636. type="1" >
  1637. </productMenu>
  1638. <productMenu id="music"
  1639. type="1" >
  1640. </productMenu>
  1641. <productMenu id="musicSharing"
  1642. type="0" >
  1643. </productMenu>
  1644. <productMenu id="deviceSetting"
  1645. type="1"
  1646. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml" >
  1647. <productMenuURL version="1.0.4"
  1648. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_02.xml"
  1649. />
  1650. <productMenuURL version="1.0.1"
  1651. url="https://api.sena.com/support/test/xml/NS_PHANTOM_Test_11.xml"
  1652. />
  1653. </productMenu>
  1654. <productMenu id="quickGuide"
  1655. type="0"
  1656. url=""
  1657. size="1.12MB" >
  1658. </productMenu>
  1659. <productMenu id="userGuide"
  1660. type="1"
  1661. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.0.1_en_250709.pdf"
  1662. size="2.0MB" >
  1663. </productMenu>
  1664. <productMenu id="videoGuide"
  1665. type="0"
  1666. url=""
  1667. size="3.41MB" >
  1668. </productMenu>
  1669. <productMenu id="connectGuide"
  1670. type="1"
  1671. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  1672. size="1.12MB" >
  1673. </productMenu>
  1674. <productMenu id="volume"
  1675. type="16" >
  1676. <productMenuType version="1.0"
  1677. type="13"
  1678. />
  1679. </productMenu>
  1680. <productMenu id="battery"
  1681. type="1" >
  1682. </productMenu>
  1683. <productID id="6A04"
  1684. />
  1685. <productGroupable type="0"
  1686. />
  1687. </product>
  1688. <product id="10R2MESH"
  1689. name="10R2 MESH"
  1690. series="10"
  1691. latestVersion="0.1.11"
  1692. latestVersionVoicePrompt="1.1"
  1693. show = "-1" >
  1694. <productMenu id="protocol"
  1695. type="2" >
  1696. </productMenu>
  1697. <productMenu id="ota"
  1698. type="0" >
  1699. <otaLanguages>
  1700. <otaLanguage
  1701. id="0"
  1702. name="English"
  1703. package="0"
  1704. />
  1705. <otaLanguage
  1706. id="0"
  1707. name="French"
  1708. package="1"
  1709. />
  1710. <otaLanguage
  1711. id="0"
  1712. name="Spanish"
  1713. package="2"
  1714. />
  1715. <otaLanguage
  1716. id="0"
  1717. name="Italian"
  1718. package="3"
  1719. />
  1720. <otaLanguage
  1721. id="0"
  1722. name="German"
  1723. package="4"
  1724. />
  1725. <otaLanguage
  1726. id="0"
  1727. name="Dutch"
  1728. package="5"
  1729. />
  1730. <otaLanguage
  1731. id="0"
  1732. name="Russian"
  1733. package="6"
  1734. />
  1735. <otaLanguage
  1736. id="0"
  1737. name="Chinese"
  1738. package="7"
  1739. />
  1740. <otaLanguage
  1741. id="0"
  1742. name="Korean"
  1743. package="8"
  1744. />
  1745. <otaLanguage
  1746. id="0"
  1747. name="Japanese"
  1748. package="9"
  1749. />
  1750. <otaLanguage
  1751. id="0"
  1752. name="Finnish"
  1753. package="10"
  1754. />
  1755. <otaLanguage
  1756. id="0"
  1757. name="Polish"
  1758. package="11"
  1759. />
  1760. </otaLanguages>
  1761. <otaPackages>
  1762. <package
  1763. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0.img"
  1764. size="5183988"
  1765. />
  1766. <package
  1767. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-fr-FR.img"
  1768. size="5183988"
  1769. />
  1770. <package
  1771. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-es-ES.img"
  1772. size="5183988"
  1773. />
  1774. <package
  1775. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-it-IT.img"
  1776. size="5183988"
  1777. />
  1778. <package
  1779. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-de-DE.img"
  1780. size="5183988"
  1781. />
  1782. <package
  1783. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-nl-NL.img"
  1784. size="5183988"
  1785. />
  1786. <package
  1787. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-ru-RU.img"
  1788. size="5183988"
  1789. />
  1790. <package
  1791. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-cmn-CN.img"
  1792. size="5183988"
  1793. />
  1794. <package
  1795. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-ko-KR.img"
  1796. size="5183988"
  1797. />
  1798. <package
  1799. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-ja-JP.img"
  1800. size="5183988"
  1801. />
  1802. <package
  1803. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-fi-FI.img"
  1804. size="5183988"
  1805. />
  1806. <package
  1807. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-pl-PL.img"
  1808. size="5183988"
  1809. />
  1810. </otaPackages>
  1811. </productMenu>
  1812. <productMenu id="wa"
  1813. type="0" >
  1814. </productMenu>
  1815. <productMenu id="led"
  1816. type="5" >
  1817. </productMenu>
  1818. <productMenu id="led+"
  1819. type="2"
  1820. url="1" >
  1821. </productMenu>
  1822. <productMenu id="meshIntercom"
  1823. type="30" >
  1824. </productMenu>
  1825. <productMenu id="meshIntercom+"
  1826. type="3"
  1827. url="2" >
  1828. </productMenu>
  1829. <productMenu id="waveIntercom"
  1830. type="1" >
  1831. </productMenu>
  1832. <productMenu id="fmradio"
  1833. type="0" >
  1834. </productMenu>
  1835. <productMenu id="phone"
  1836. type="1" >
  1837. </productMenu>
  1838. <productMenu id="music"
  1839. type="1" >
  1840. </productMenu>
  1841. <productMenu id="musicSharing"
  1842. type="0" >
  1843. </productMenu>
  1844. <productMenu id="deviceSetting"
  1845. type="1"
  1846. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml" >
  1847. </productMenu>
  1848. <productMenu id="quickGuide"
  1849. type="0"
  1850. url=""
  1851. size="1.12MB" >
  1852. </productMenu>
  1853. <productMenu id="userGuide"
  1854. type="1"
  1855. url=""
  1856. size="2.0MB" >
  1857. </productMenu>
  1858. <productMenu id="videoGuide"
  1859. type="0"
  1860. url=""
  1861. size="3.41MB" >
  1862. </productMenu>
  1863. <productMenu id="volume"
  1864. type="16" >
  1865. </productMenu>
  1866. <productMenu id="battery"
  1867. type="1" >
  1868. </productMenu>
  1869. <productID id="6A07"
  1870. />
  1871. <productGroupable type="0"
  1872. />
  1873. </product>
  1874. <product id="Impulse"
  1875. name="Impulse"
  1876. series="Helmet"
  1877. latestVersion="1.4"
  1878. show = "1" >
  1879. <productMenu id="protocol"
  1880. type="2" >
  1881. </productMenu>
  1882. <productMenu id="alexa"
  1883. type="0" >
  1884. </productMenu>
  1885. <productMenu id="ota"
  1886. type="0" >
  1887. </productMenu>
  1888. <productMenu id="wa"
  1889. type="24" >
  1890. </productMenu>
  1891. <productMenu id="manager"
  1892. type="0" >
  1893. </productMenu>
  1894. <productMenu id="sip"
  1895. type="1" >
  1896. </productMenu>
  1897. <productMenu id="led"
  1898. type="1" >
  1899. <productMenuType version="1.0.1"
  1900. type="2"
  1901. />
  1902. <productMenuType version="1.0"
  1903. type="1"
  1904. />
  1905. </productMenu>
  1906. <productMenu id="meshIntercom"
  1907. type="30" >
  1908. <productMenuType version="1.1.1"
  1909. type="20"
  1910. />
  1911. </productMenu>
  1912. <productMenu id="meshIntercom+"
  1913. type="3"
  1914. url="2" >
  1915. <productMenuType version="1.3.9"
  1916. type="2"
  1917. />
  1918. <productMenuURL version="1.1.1"
  1919. url="0"
  1920. />
  1921. </productMenu>
  1922. <productMenu id="waveIntercom"
  1923. type="1" >
  1924. <productMenuType version="1.3.9"
  1925. type="0"
  1926. />
  1927. </productMenu>
  1928. <productMenu id="bluetoothIntercom"
  1929. type="1" >
  1930. </productMenu>
  1931. <productMenu id="phone"
  1932. type="1" >
  1933. </productMenu>
  1934. <productMenu id="music"
  1935. type="1" >
  1936. </productMenu>
  1937. <productMenu id="fmradio"
  1938. type="1" >
  1939. </productMenu>
  1940. <productMenu id="deviceSetting"
  1941. type="1"
  1942. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_06.xml" >
  1943. <productMenuURL version="1.3.9"
  1944. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_05.xml"
  1945. />
  1946. <productMenuURL version="1.1.1"
  1947. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml"
  1948. />
  1949. <productMenuURL version="1.0.4"
  1950. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_02.xml"
  1951. />
  1952. </productMenu>
  1953. <productMenu id="quickGuide"
  1954. type="0"
  1955. url=""
  1956. size="344KB" >
  1957. </productMenu>
  1958. <productMenu id="userGuide"
  1959. type="1"
  1960. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_IMPULSE_1.9.1_en_250731.pdf"
  1961. size="3.41MB" >
  1962. </productMenu>
  1963. <productMenu id="volume"
  1964. type="11" >
  1965. </productMenu>
  1966. <productMenu id="battery"
  1967. type="1" >
  1968. </productMenu>
  1969. <productID id="3148"
  1970. />
  1971. <productGroupable type="0"
  1972. />
  1973. </product>
  1974. <product id="Impulse"
  1975. name="Impulse"
  1976. series="Helmet"
  1977. latestVersion="2.0"
  1978. show = "-1" >
  1979. <productMenu id="protocol"
  1980. type="2" >
  1981. </productMenu>
  1982. <productMenu id="alexa"
  1983. type="0" >
  1984. </productMenu>
  1985. <productMenu id="ota"
  1986. type="0" >
  1987. </productMenu>
  1988. <productMenu id="wa"
  1989. type="8" >
  1990. </productMenu>
  1991. <productMenu id="manager"
  1992. type="0" >
  1993. </productMenu>
  1994. <productMenu id="sip"
  1995. type="1" >
  1996. </productMenu>
  1997. <productMenu id="led"
  1998. type="3" >
  1999. </productMenu>
  2000. <productMenu id="meshIntercom"
  2001. type="20" >
  2002. </productMenu>
  2003. <productMenu id="bluetoothIntercom"
  2004. type="1" >
  2005. </productMenu>
  2006. <productMenu id="phone"
  2007. type="1" >
  2008. </productMenu>
  2009. <productMenu id="music"
  2010. type="1" >
  2011. </productMenu>
  2012. <productMenu id="fmradio"
  2013. type="1" >
  2014. </productMenu>
  2015. <productMenu id="deviceSetting"
  2016. type="1"
  2017. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml" >
  2018. </productMenu>
  2019. <productMenu id="quickGuide"
  2020. type="1"
  2021. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_IMPULSE_1.4.0_en_230424.pdf"
  2022. size="344KB" >
  2023. </productMenu>
  2024. <productMenu id="userGuide"
  2025. type="1"
  2026. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_IMPULSE_1.7.0_en_230424.pdf"
  2027. size="3.41MB" >
  2028. </productMenu>
  2029. <productMenu id="volume"
  2030. type="11" >
  2031. </productMenu>
  2032. <productMenu id="battery"
  2033. type="1" >
  2034. </productMenu>
  2035. <productID id="3221"
  2036. />
  2037. <productGroupable type="0"
  2038. />
  2039. </product>
  2040. <product id="Stryker"
  2041. name="Stryker"
  2042. series="Helmet"
  2043. latestVersion="1.4"
  2044. show = "1" >
  2045. <productMenu id="protocol"
  2046. type="2" >
  2047. </productMenu>
  2048. <productMenu id="alexa"
  2049. type="0" >
  2050. </productMenu>
  2051. <productMenu id="ota"
  2052. type="0" >
  2053. </productMenu>
  2054. <productMenu id="wa"
  2055. type="40" >
  2056. </productMenu>
  2057. <productMenu id="manager"
  2058. type="0" >
  2059. </productMenu>
  2060. <productMenu id="sip"
  2061. type="1" >
  2062. </productMenu>
  2063. <productMenu id="led"
  2064. type="1" >
  2065. <productMenuType version="1.0.1"
  2066. type="2"
  2067. />
  2068. <productMenuType version="1.0"
  2069. type="1"
  2070. />
  2071. </productMenu>
  2072. <productMenu id="meshIntercom"
  2073. type="30" >
  2074. <productMenuType version="1.1.1"
  2075. type="20"
  2076. />
  2077. </productMenu>
  2078. <productMenu id="meshIntercom+"
  2079. type="3"
  2080. url="2" >
  2081. <productMenuType version="1.3.9"
  2082. type="2"
  2083. />
  2084. <productMenuURL version="1.1.1"
  2085. url="0"
  2086. />
  2087. </productMenu>
  2088. <productMenu id="waveIntercom"
  2089. type="1" >
  2090. <productMenuType version="1.2.9"
  2091. type="0"
  2092. />
  2093. </productMenu>
  2094. <productMenu id="bluetoothIntercom"
  2095. type="1" >
  2096. </productMenu>
  2097. <productMenu id="phone"
  2098. type="1" >
  2099. </productMenu>
  2100. <productMenu id="music"
  2101. type="1" >
  2102. </productMenu>
  2103. <productMenu id="fmradio"
  2104. type="1" >
  2105. </productMenu>
  2106. <productMenu id="deviceSetting"
  2107. type="1"
  2108. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_06.xml" >
  2109. <productMenuURL version="1.3.9"
  2110. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_05.xml"
  2111. />
  2112. <productMenuURL version="1.1.1"
  2113. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml"
  2114. />
  2115. <productMenuURL version="1.0.4"
  2116. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_02.xml"
  2117. />
  2118. </productMenu>
  2119. <productMenu id="quickGuide"
  2120. type="0"
  2121. url=""
  2122. size="344KB" >
  2123. </productMenu>
  2124. <productMenu id="userGuide"
  2125. type="1"
  2126. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_STRYKER_1.7.1_en_250731.pdf"
  2127. size="3.41MB" >
  2128. </productMenu>
  2129. <productMenu id="volume"
  2130. type="11" >
  2131. </productMenu>
  2132. <productMenu id="battery"
  2133. type="1" >
  2134. </productMenu>
  2135. <productID id="3154"
  2136. />
  2137. <productGroupable type="0"
  2138. />
  2139. </product>
  2140. <product id="SRL3"
  2141. name="SRL3"
  2142. series="SRL"
  2143. latestVersion="1.4.1"
  2144. show = "1" >
  2145. <productMenu id="protocol"
  2146. type="2" >
  2147. </productMenu>
  2148. <productMenu id="alexa"
  2149. type="0" >
  2150. </productMenu>
  2151. <productMenu id="ota"
  2152. type="0" >
  2153. </productMenu>
  2154. <productMenu id="wa"
  2155. type="1" >
  2156. </productMenu>
  2157. <productMenu id="sip"
  2158. type="1" >
  2159. </productMenu>
  2160. <productMenu id="meshIntercom"
  2161. type="30" >
  2162. </productMenu>
  2163. <productMenu id="meshIntercom+"
  2164. type="3"
  2165. url="2" >
  2166. <productMenuType version="1.3.9"
  2167. type="2"
  2168. />
  2169. </productMenu>
  2170. <productMenu id="waveIntercom"
  2171. type="1" >
  2172. <productMenuType version="1.4.9"
  2173. type="0"
  2174. />
  2175. </productMenu>
  2176. <productMenu id="bluetoothIntercom"
  2177. type="1" >
  2178. </productMenu>
  2179. <productMenu id="phone"
  2180. type="1" >
  2181. </productMenu>
  2182. <productMenu id="music"
  2183. type="1" >
  2184. </productMenu>
  2185. <productMenu id="fmradio"
  2186. type="1" >
  2187. </productMenu>
  2188. <productMenu id="deviceSetting"
  2189. type="1"
  2190. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  2191. <productMenuURL version="1.3"
  2192. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  2193. />
  2194. </productMenu>
  2195. <productMenu id="quickGuide"
  2196. type="0"
  2197. url=""
  2198. size="344KB" >
  2199. </productMenu>
  2200. <productMenu id="userGuide"
  2201. type="1"
  2202. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL3_1.2.2_en_250319.pdf"
  2203. size="3.41MB" >
  2204. </productMenu>
  2205. <productMenu id="volume"
  2206. type="11" >
  2207. </productMenu>
  2208. <productMenu id="battery"
  2209. type="1" >
  2210. </productMenu>
  2211. <productID id="3219"
  2212. />
  2213. <productGroupable type="0"
  2214. />
  2215. </product>
  2216. <product id="SRL_Mesh"
  2217. name="SRL-Mesh"
  2218. series="SRL"
  2219. latestVersion="1.6.1"
  2220. show = "1" >
  2221. <productMenu id="protocol"
  2222. type="2" >
  2223. </productMenu>
  2224. <productMenu id="alexa"
  2225. type="0" >
  2226. </productMenu>
  2227. <productMenu id="ota"
  2228. type="0" >
  2229. </productMenu>
  2230. <productMenu id="wa"
  2231. type="1" >
  2232. </productMenu>
  2233. <productMenu id="sip"
  2234. type="1" >
  2235. </productMenu>
  2236. <productMenu id="meshIntercom"
  2237. type="30" >
  2238. <productMenuType version="1.1.1"
  2239. type="20"
  2240. />
  2241. </productMenu>
  2242. <productMenu id="meshIntercom+"
  2243. type="3"
  2244. url="2" >
  2245. <productMenuType version="1.5.9"
  2246. type="2"
  2247. />
  2248. <productMenuURL version="1.1.1"
  2249. url="0"
  2250. />
  2251. </productMenu>
  2252. <productMenu id="waveIntercom"
  2253. type="1" >
  2254. <productMenuType version="1.6.9"
  2255. type="0"
  2256. />
  2257. </productMenu>
  2258. <productMenu id="bluetoothIntercom"
  2259. type="1" >
  2260. </productMenu>
  2261. <productMenu id="phone"
  2262. type="1" >
  2263. </productMenu>
  2264. <productMenu id="music"
  2265. type="1" >
  2266. </productMenu>
  2267. <productMenu id="fmradio"
  2268. type="1" >
  2269. </productMenu>
  2270. <productMenu id="deviceSetting"
  2271. type="1"
  2272. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  2273. <productMenuURL version="1.5"
  2274. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  2275. />
  2276. <productMenuURL version="1.1.1"
  2277. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2278. />
  2279. <productMenuURL version="1.0.3"
  2280. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2281. />
  2282. </productMenu>
  2283. <productMenu id="quickGuide"
  2284. type="0"
  2285. url=""
  2286. size="344KB" >
  2287. </productMenu>
  2288. <productMenu id="userGuide"
  2289. type="1"
  2290. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL-Mesh_1.5.1_en_250213.pdf"
  2291. size="3.41MB" >
  2292. </productMenu>
  2293. <productMenu id="volume"
  2294. type="11" >
  2295. </productMenu>
  2296. <productMenu id="battery"
  2297. type="1" >
  2298. </productMenu>
  2299. <productID id="3216"
  2300. />
  2301. <productGroupable type="0"
  2302. />
  2303. </product>
  2304. <product id="SRL_EXT"
  2305. name="SRL-EXT"
  2306. series="SRL"
  2307. latestVersion="1.6.1"
  2308. show = "1" >
  2309. <productMenu id="protocol"
  2310. type="2" >
  2311. </productMenu>
  2312. <productMenu id="alexa"
  2313. type="0" >
  2314. </productMenu>
  2315. <productMenu id="ota"
  2316. type="0" >
  2317. </productMenu>
  2318. <productMenu id="wa"
  2319. type="0" >
  2320. </productMenu>
  2321. <productMenu id="sip"
  2322. type="1" >
  2323. </productMenu>
  2324. <productMenu id="meshIntercom"
  2325. type="30" >
  2326. <productMenuType version="1.1.1"
  2327. type="20"
  2328. />
  2329. </productMenu>
  2330. <productMenu id="meshIntercom+"
  2331. type="3"
  2332. url="2" >
  2333. <productMenuType version="1.5.9"
  2334. type="2"
  2335. />
  2336. <productMenuURL version="1.1.1"
  2337. url="0"
  2338. />
  2339. </productMenu>
  2340. <productMenu id="waveIntercom"
  2341. type="1" >
  2342. <productMenuType version="1.6.9"
  2343. type="0"
  2344. />
  2345. </productMenu>
  2346. <productMenu id="bluetoothIntercom"
  2347. type="1" >
  2348. </productMenu>
  2349. <productMenu id="phone"
  2350. type="1" >
  2351. </productMenu>
  2352. <productMenu id="music"
  2353. type="1" >
  2354. </productMenu>
  2355. <productMenu id="fmradio"
  2356. type="1" >
  2357. </productMenu>
  2358. <productMenu id="deviceSetting"
  2359. type="1"
  2360. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  2361. <productMenuURL version="1.5"
  2362. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  2363. />
  2364. <productMenuURL version="1.1.1"
  2365. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2366. />
  2367. <productMenuURL version="1.0.3"
  2368. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2369. />
  2370. </productMenu>
  2371. <productMenu id="quickGuide"
  2372. type="0"
  2373. url=""
  2374. size="344KB" >
  2375. </productMenu>
  2376. <productMenu id="userGuide"
  2377. type="1"
  2378. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL-EXT_1.5.1_en_250226.pdf"
  2379. size="3.41MB" >
  2380. </productMenu>
  2381. <productMenu id="volume"
  2382. type="11" >
  2383. </productMenu>
  2384. <productMenu id="battery"
  2385. type="1" >
  2386. </productMenu>
  2387. <productID id="3212"
  2388. />
  2389. <productGroupable type="0"
  2390. />
  2391. </product>
  2392. <product id="SRL2"
  2393. name="SRL2"
  2394. series="SRL"
  2395. latestVersion="1.0.9"
  2396. show = "1" >
  2397. <productMenu id="protocol"
  2398. type="0">
  2399. </productMenu>
  2400. <productMenu id="sip"
  2401. type="1" >
  2402. </productMenu>
  2403. <productMenu id="bluetoothIntercom"
  2404. type="1" >
  2405. </productMenu>
  2406. <productMenu id="intercomSetting"
  2407. type="1" >
  2408. </productMenu>
  2409. <productMenu id="phone"
  2410. type="2" >
  2411. </productMenu>
  2412. <productMenu id="fmradio"
  2413. type="3" >
  2414. </productMenu>
  2415. <productMenu id="deviceSetting"
  2416. type="1"
  2417. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  2418. </productMenu>
  2419. <productMenu id="quickGuide"
  2420. type="1"
  2421. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SRL2_1.2.0_en_240207.pdf"
  2422. size="846KB" >
  2423. </productMenu>
  2424. <productMenu id="userGuide"
  2425. type="1"
  2426. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SRL2_1.1.0_en_220922.pdf"
  2427. size="1.18MB" >
  2428. </productMenu>
  2429. <productID id="4530"
  2430. />
  2431. <productGroupable type="1"
  2432. />
  2433. </product>
  2434. <product id="Neotec2"
  2435. name="SRL Neotec2"
  2436. series="SRL"
  2437. latestVersion="1.1.5"
  2438. show = "1" >
  2439. <productMenu id="protocol"
  2440. type="0">
  2441. </productMenu>
  2442. <productMenu id="sip"
  2443. type="1" >
  2444. </productMenu>
  2445. <productMenu id="bluetoothIntercom"
  2446. type="1" >
  2447. </productMenu>
  2448. <productMenu id="intercomSetting"
  2449. type="1" >
  2450. </productMenu>
  2451. <productMenu id="phone"
  2452. type="2" >
  2453. </productMenu>
  2454. <productMenu id="fmradio"
  2455. type="3" >
  2456. </productMenu>
  2457. <productMenu id="deviceSetting"
  2458. type="1"
  2459. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  2460. </productMenu>
  2461. <productMenu id="quickGuide"
  2462. type="0"
  2463. url=""
  2464. size="796KB" >
  2465. </productMenu>
  2466. <productMenu id="userGuide"
  2467. type="1"
  2468. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SRL_for_Shoei_Neotec2_1.1.1_en_250227.pdf"
  2469. size="1.90MB" >
  2470. </productMenu>
  2471. <productID id="4510"
  2472. />
  2473. <productGroupable type="1"
  2474. />
  2475. </product>
  2476. <product id="SPIDERST2ANC"
  2477. name="SPIDER ST2 ANC"
  2478. series="SPIDER"
  2479. latestVersion="0.5.1"
  2480. latestVersionVoicePrompt="0.2"
  2481. latestVersionMesh="0.8"
  2482. show = "-1" >
  2483. <productMenu id="protocol"
  2484. type="2" >
  2485. </productMenu>
  2486. <productMenu id="ota"
  2487. type="0" >
  2488. <otaPackages>
  2489. <package
  2490. url="https://api.sena.com/support/test/60R-v0.5.1-build0_OTA.img"
  2491. size="2945812"
  2492. />
  2493. </otaPackages>
  2494. </productMenu>
  2495. <productMenu id="wa"
  2496. type="0" >
  2497. </productMenu>
  2498. <productMenu id="led"
  2499. type="1" >
  2500. </productMenu>
  2501. <productMenu id="meshIntercom"
  2502. type="30" >
  2503. </productMenu>
  2504. <productMenu id="fmradio"
  2505. type="1" >
  2506. </productMenu>
  2507. <productMenu id="phone"
  2508. type="1" >
  2509. </productMenu>
  2510. <productMenu id="music"
  2511. type="1" >
  2512. </productMenu>
  2513. <productMenu id="musicSharing"
  2514. type="0" >
  2515. </productMenu>
  2516. <productMenu id="deviceSetting"
  2517. type="1"
  2518. url="https://api.sena.com/support/test/xml/NS_60R_OTATest_02.xml" >
  2519. </productMenu>
  2520. <productMenu id="quickGuide"
  2521. type="1"
  2522. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SPIDER_ST1_2.3.0_en_231205.pdf"
  2523. size="1.12MB" >
  2524. </productMenu>
  2525. <productMenu id="userGuide"
  2526. type="1"
  2527. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_ST1_2.5.0_en_231204.pdf"
  2528. size="2.0MB" >
  2529. </productMenu>
  2530. <productMenu id="videoGuide"
  2531. type="1"
  2532. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  2533. size="3.41MB" >
  2534. </productMenu>
  2535. <productMenu id="volume"
  2536. type="12" >
  2537. </productMenu>
  2538. <productMenu id="battery"
  2539. type="1" >
  2540. </productMenu>
  2541. <productID id="6A00"
  2542. />
  2543. <productGroupable type="0"
  2544. />
  2545. </product>
  2546. <product id="SPIDER_ST1"
  2547. name="SPIDER ST1"
  2548. series="SPIDER"
  2549. latestVersion="2.5"
  2550. latestVersionVoicePrompt="1.1"
  2551. show = "1" >
  2552. <productMenu id="protocol"
  2553. type="2" >
  2554. </productMenu>
  2555. <productMenu id="alexa"
  2556. type="0" >
  2557. </productMenu>
  2558. <productMenu id="ota"
  2559. type="2" >
  2560. <productMenuType version="2.1.9"
  2561. type="0"
  2562. />
  2563. <otaPackages>
  2564. <package
  2565. url="https://api.sena.com/support/OTA/SPIDER/SPIDER_ST1-v2.5-build1.img"
  2566. size="2945812"
  2567. />
  2568. </otaPackages>
  2569. </productMenu>
  2570. <productMenu id="wa"
  2571. type="0" >
  2572. </productMenu>
  2573. <productMenu id="meshIntercom"
  2574. type="30" >
  2575. <productMenuType version="2.1.1"
  2576. type="20"
  2577. />
  2578. </productMenu>
  2579. <productMenu id="meshIntercom+"
  2580. type="3"
  2581. url="2" >
  2582. <productMenuType version="2.2.9"
  2583. type="2"
  2584. />
  2585. <productMenuURL version="2.1.1"
  2586. url="0"
  2587. />
  2588. </productMenu>
  2589. <productMenu id="waveIntercom"
  2590. type="1" >
  2591. <productMenuType version="2.3.9"
  2592. type="0"
  2593. />
  2594. </productMenu>
  2595. <productMenu id="phone"
  2596. type="1" >
  2597. </productMenu>
  2598. <productMenu id="music"
  2599. type="1" >
  2600. </productMenu>
  2601. <productMenu id="musicSharing"
  2602. type="0" >
  2603. </productMenu>
  2604. <productMenu id="deviceSetting"
  2605. type="1"
  2606. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_05.xml" >
  2607. <productMenuURL version="2.4.9"
  2608. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_04.xml"
  2609. />
  2610. <productMenuURL version="2.2.2"
  2611. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  2612. />
  2613. <productMenuURL version="2.1.1"
  2614. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_01.xml"
  2615. />
  2616. </productMenu>
  2617. <productMenu id="quickGuide"
  2618. type="0"
  2619. url=""
  2620. size="1.12MB" >
  2621. </productMenu>
  2622. <productMenu id="userGuide"
  2623. type="1"
  2624. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_ST1_2.7.2_en_250327.pdf"
  2625. size="2.0MB" >
  2626. </productMenu>
  2627. <productMenu id="videoGuide"
  2628. type="1"
  2629. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  2630. size="3.41MB" >
  2631. </productMenu>
  2632. <productMenu id="volume"
  2633. type="12" >
  2634. </productMenu>
  2635. <productMenu id="battery"
  2636. type="1" >
  2637. </productMenu>
  2638. <productID id="6800"
  2639. />
  2640. <productGroupable type="0"
  2641. />
  2642. </product>
  2643. <product id="SPIDER_ST1"
  2644. name="SPIDER ST1"
  2645. series="SPIDER"
  2646. latestVersion="1.2.2"
  2647. show = "-1" >
  2648. <productMenu id="protocol"
  2649. type="2" >
  2650. </productMenu>
  2651. <productMenu id="alexa"
  2652. type="0" >
  2653. </productMenu>
  2654. <productMenu id="ota"
  2655. type="0" >
  2656. </productMenu>
  2657. <productMenu id="wa"
  2658. type="0" >
  2659. </productMenu>
  2660. <productMenu id="meshIntercom"
  2661. type="20" >
  2662. </productMenu>
  2663. <productMenu id="phone"
  2664. type="1" >
  2665. </productMenu>
  2666. <productMenu id="music"
  2667. type="1" >
  2668. </productMenu>
  2669. <productMenu id="deviceSetting"
  2670. type="1"
  2671. url="https://api.sena.com/support/SenaNeoApp/50/NS_SPIDER_02.xml" >
  2672. </productMenu>
  2673. <productMenu id="quickGuide"
  2674. type="0"
  2675. url=""
  2676. size="1.12MB" >
  2677. </productMenu>
  2678. <productMenu id="userGuide"
  2679. type="1"
  2680. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_ST1_1.3.0_en_250326.pdf"
  2681. size="2.0MB" >
  2682. </productMenu>
  2683. <productMenu id="videoGuide"
  2684. type="1"
  2685. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  2686. size="3.41MB" >
  2687. </productMenu>
  2688. <productMenu id="volume"
  2689. type="13" >
  2690. <productMenuType version="1.1.6"
  2691. type="14"/>
  2692. </productMenu>
  2693. <productMenu id="battery"
  2694. type="1" >
  2695. </productMenu>
  2696. <productID id="6510"
  2697. />
  2698. <productGroupable type="0"
  2699. />
  2700. </product>
  2701. <product id="SPIDER_RT1"
  2702. name="SPIDER RT1"
  2703. series="SPIDER"
  2704. latestVersion="2.5"
  2705. latestVersionVoicePrompt="1.1"
  2706. show = "1" >
  2707. <productMenu id="protocol"
  2708. type="2" >
  2709. </productMenu>
  2710. <productMenu id="alexa"
  2711. type="0" >
  2712. </productMenu>
  2713. <productMenu id="ota"
  2714. type="2" >
  2715. <productMenuType version="2.1.9"
  2716. type="0"
  2717. />
  2718. <otaPackages>
  2719. <package
  2720. url="https://api.sena.com/support/OTA/SPIDER/SPIDER_RT1-v2.5-build1.img"
  2721. size="2945812"
  2722. />
  2723. </otaPackages>
  2724. </productMenu>
  2725. <productMenu id="wa"
  2726. type="0" >
  2727. </productMenu>
  2728. <productMenu id="meshIntercom"
  2729. type="30" >
  2730. <productMenuType version="2.1.1"
  2731. type="20"
  2732. />
  2733. </productMenu>
  2734. <productMenu id="meshIntercom+"
  2735. type="3"
  2736. url="2" >
  2737. <productMenuType version="2.2.9"
  2738. type="2"
  2739. />
  2740. <productMenuURL version="2.1.1"
  2741. url="0"
  2742. />
  2743. </productMenu>
  2744. <productMenu id="waveIntercom"
  2745. type="1" >
  2746. <productMenuType version="2.3.9"
  2747. type="0"
  2748. />
  2749. </productMenu>
  2750. <productMenu id="phone"
  2751. type="1" >
  2752. </productMenu>
  2753. <productMenu id="music"
  2754. type="1" >
  2755. </productMenu>
  2756. <productMenu id="musicSharing"
  2757. type="0" >
  2758. </productMenu>
  2759. <productMenu id="deviceSetting"
  2760. type="1"
  2761. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_05.xml" >
  2762. <productMenuURL version="2.4.9"
  2763. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_04.xml"
  2764. />
  2765. <productMenuURL version="2.2.2"
  2766. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  2767. />
  2768. <productMenuURL version="2.1.1"
  2769. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_01.xml"
  2770. />
  2771. </productMenu>
  2772. <productMenu id="quickGuide"
  2773. type="0"
  2774. url=""
  2775. size="1.12MB" >
  2776. </productMenu>
  2777. <productMenu id="userGuide"
  2778. type="1"
  2779. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_RT1_2.6.2_en_250325.pdf"
  2780. size="2.0MB" >
  2781. </productMenu>
  2782. <productMenu id="videoGuide"
  2783. type="1"
  2784. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  2785. size="3.41MB" >
  2786. </productMenu>
  2787. <productMenu id="connectGuide"
  2788. type="1"
  2789. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init.json"
  2790. size="1.12MB" >
  2791. </productMenu>
  2792. <productMenu id="volume"
  2793. type="12" >
  2794. </productMenu>
  2795. <productMenu id="battery"
  2796. type="1" >
  2797. </productMenu>
  2798. <productID id="6810"
  2799. />
  2800. <productGroupable type="0"
  2801. />
  2802. </product>
  2803. <product id="SPIDER_RT1"
  2804. name="SPIDER RT1"
  2805. series="SPIDER"
  2806. latestVersion="1.2.2"
  2807. show = "-1" >
  2808. <productMenu id="protocol"
  2809. type="2" >
  2810. </productMenu>
  2811. <productMenu id="alexa"
  2812. type="0" >
  2813. </productMenu>
  2814. <productMenu id="ota"
  2815. type="0" >
  2816. </productMenu>
  2817. <productMenu id="wa"
  2818. type="0" >
  2819. </productMenu>
  2820. <productMenu id="meshIntercom"
  2821. type="20" >
  2822. </productMenu>
  2823. <productMenu id="phone"
  2824. type="1" >
  2825. </productMenu>
  2826. <productMenu id="music"
  2827. type="1" >
  2828. </productMenu>
  2829. <productMenu id="deviceSetting"
  2830. type="1"
  2831. url="https://api.sena.com/support/SenaNeoApp/50/NS_SPIDER_02.xml" >
  2832. </productMenu>
  2833. <productMenu id="quickGuide"
  2834. type="0"
  2835. url=""
  2836. size="1.32MB" >
  2837. </productMenu>
  2838. <productMenu id="userGuide"
  2839. type="1"
  2840. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_RT1_1.3.0_en_250324.pdf"
  2841. size="1.79MB" >
  2842. </productMenu>
  2843. <productMenu id="videoGuide"
  2844. type="1"
  2845. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  2846. size="3.41MB" >
  2847. </productMenu>
  2848. <productMenu id="volume"
  2849. type="13" >
  2850. <productMenuType version="1.1.6"
  2851. type="14"/>
  2852. </productMenu>
  2853. <productMenu id="battery"
  2854. type="1" >
  2855. </productMenu>
  2856. <productID id="6500"
  2857. />
  2858. <productGroupable type="0"
  2859. />
  2860. </product>
  2861. <product id="30K"
  2862. name="30K"
  2863. series="30"
  2864. latestVersion="4.4.1"
  2865. show = "1" >
  2866. <productMenu id="protocol"
  2867. type="2" >
  2868. </productMenu>
  2869. <productMenu id="alexa"
  2870. type="0" >
  2871. </productMenu>
  2872. <productMenu id="wa"
  2873. type="1" >
  2874. </productMenu>
  2875. <productMenu id="sip"
  2876. type="1" >
  2877. </productMenu>
  2878. <productMenu id="meshIntercom"
  2879. type="30" >
  2880. <productMenuType version="4.0.4"
  2881. type="20"
  2882. />
  2883. </productMenu>
  2884. <productMenu id="meshIntercom+"
  2885. type="3"
  2886. url="2" >
  2887. <productMenuType version="4.3.9"
  2888. type="2"
  2889. />
  2890. <productMenuURL version="4.0.4"
  2891. url="0"
  2892. />
  2893. </productMenu>
  2894. <productMenu id="waveIntercom"
  2895. type="1" >
  2896. <productMenuType version="4.4.9"
  2897. type="0"
  2898. />
  2899. </productMenu>
  2900. <productMenu id="bluetoothIntercom"
  2901. type="1" >
  2902. </productMenu>
  2903. <productMenu id="phone"
  2904. type="1" >
  2905. </productMenu>
  2906. <productMenu id="music"
  2907. type="1" >
  2908. </productMenu>
  2909. <productMenu id="fmradio"
  2910. type="1" >
  2911. </productMenu>
  2912. <productMenu id="deviceSetting"
  2913. type="1"
  2914. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_04.xml" >
  2915. <productMenuURL version="4.3"
  2916. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_03.xml"
  2917. />
  2918. <productMenuURL version="4.2"
  2919. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_02.xml"
  2920. />
  2921. <productMenuURL version="4.0.4"
  2922. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2.xml"
  2923. />
  2924. </productMenu>
  2925. <productMenu id="quickGuide"
  2926. type="0"
  2927. url=""
  2928. size="934KB" >
  2929. </productMenu>
  2930. <productMenu id="userGuide"
  2931. type="1"
  2932. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_30K_4.4.1_en_250331.pdf"
  2933. size="1.14MB" >
  2934. </productMenu>
  2935. <productMenu id="volume"
  2936. type="11" >
  2937. </productMenu>
  2938. <productMenu id="battery"
  2939. type="1" >
  2940. </productMenu>
  2941. <productID id="3211"
  2942. />
  2943. <productGroupable type="0"
  2944. />
  2945. </product>
  2946. <product id="30K"
  2947. name="30K"
  2948. series="30"
  2949. latestVersion="3.5"
  2950. show = "-1" >
  2951. <productMenu id="protocol"
  2952. type="1"
  2953. url="0">
  2954. </productMenu>
  2955. <productMenu id="wa"
  2956. type="7" >
  2957. </productMenu>
  2958. <productMenu id="sip"
  2959. type="1" >
  2960. </productMenu>
  2961. <productMenu id="meshIntercom"
  2962. type="20" >
  2963. <productMenuType version="2.9.9"
  2964. type="10"
  2965. />
  2966. </productMenu>
  2967. <productMenu id="meshIntercom+"
  2968. type="3"
  2969. url="2" >
  2970. <productMenuType version="3.4.9"
  2971. type="2"
  2972. />
  2973. <productMenuType version="2.9.9"
  2974. type="1"
  2975. />
  2976. <productMenuURL version="3.3.1"
  2977. url="0"
  2978. />
  2979. </productMenu>
  2980. <productMenu id="bluetoothIntercom"
  2981. type="1" >
  2982. </productMenu>
  2983. <productMenu id="phone"
  2984. type="1" >
  2985. </productMenu>
  2986. <productMenu id="music"
  2987. type="1" >
  2988. </productMenu>
  2989. <productMenu id="fmradio"
  2990. type="1" >
  2991. </productMenu>
  2992. <productMenu id="deviceSetting"
  2993. type="1"
  2994. url="https://api.sena.com/support/SenaNeoApp/30K/DSup_30K_04.xml">
  2995. <productMenuURL version="3.4.9"
  2996. url="https://api.sena.com/support/SenaNeoApp/30K/DSup_30K_01.xml"
  2997. />
  2998. <productMenuURL version="3.3.1"
  2999. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_HS_v0302fm.xml"
  3000. />
  3001. <productMenuURL version="3.0.1"
  3002. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0204.xml"
  3003. />
  3004. <productMenuURL version="2.3.1"
  3005. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0201.xml"
  3006. />
  3007. <productMenuURL version="2.0"
  3008. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  3009. />
  3010. <productMenuURL version="1.0.3"
  3011. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K.xml"
  3012. />
  3013. </productMenu>
  3014. <productMenu id="quickGuide"
  3015. type="0"
  3016. url=""
  3017. size="1.06MB" >
  3018. </productMenu>
  3019. <productMenu id="userGuide"
  3020. type="1"
  3021. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_30K_3.4.1_en_250328.pdf"
  3022. size="3.15MB" >
  3023. </productMenu>
  3024. <productMenu id="volume"
  3025. type="1" >
  3026. </productMenu>
  3027. <productID id="3110"
  3028. />
  3029. <productGroupable type="0"
  3030. />
  3031. </product>
  3032. <product id="FURY"
  3033. name="FURY"
  3034. series="Helmet"
  3035. latestVersion="1.0"
  3036. show = "-1" >
  3037. <productMenu id="protocol"
  3038. type="2" >
  3039. </productMenu>
  3040. <productMenu id="alexa"
  3041. type="0" >
  3042. </productMenu>
  3043. <productMenu id="ota"
  3044. type="0" >
  3045. </productMenu>
  3046. <productMenu id="wa"
  3047. type="0" >
  3048. </productMenu>
  3049. <productMenu id="meshIntercom"
  3050. type="20" >
  3051. </productMenu>
  3052. <productMenu id="phone"
  3053. type="1" >
  3054. </productMenu>
  3055. <productMenu id="music"
  3056. type="1" >
  3057. </productMenu>
  3058. <productMenu id="fmradio"
  3059. type="1" >
  3060. </productMenu>
  3061. <productMenu id="deviceSetting"
  3062. type="1"
  3063. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_01.xml" >
  3064. </productMenu>
  3065. <productMenu id="quickGuide"
  3066. type="1"
  3067. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_FURY_1.0.0_en_220819.pdf"
  3068. size="1.12MB" >
  3069. </productMenu>
  3070. <productMenu id="userGuide"
  3071. type="1"
  3072. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_FURY_1.0.0_en_220822.pdf"
  3073. size="2.0MB" >
  3074. </productMenu>
  3075. <productMenu id="volume"
  3076. type="13" >
  3077. </productMenu>
  3078. <productMenu id="battery"
  3079. type="1" >
  3080. </productMenu>
  3081. <productID id="5552"
  3082. />
  3083. <productGroupable type="0"
  3084. />
  3085. </product>
  3086. <product id="MomentumM"
  3087. name="Momentum EVO"
  3088. series="Helmet"
  3089. latestVersion="2.1.2"
  3090. show = "1" >
  3091. <productMenu id="protocol"
  3092. type="1"
  3093. url="0">
  3094. </productMenu>
  3095. <productMenu id="wa"
  3096. type="3" >
  3097. </productMenu>
  3098. <productMenu id="sip"
  3099. type="1" >
  3100. </productMenu>
  3101. <productMenu id="meshIntercom"
  3102. type="20" >
  3103. <productMenuType version="1.9.9"
  3104. type="10"
  3105. />
  3106. </productMenu>
  3107. <productMenu id="bluetoothIntercom"
  3108. type="1" >
  3109. </productMenu>
  3110. <productMenu id="phone"
  3111. type="1" >
  3112. </productMenu>
  3113. <productMenu id="music"
  3114. type="1" >
  3115. </productMenu>
  3116. <productMenu id="fmradio"
  3117. type="1" >
  3118. </productMenu>
  3119. <productMenu id="deviceSetting"
  3120. type="1"
  3121. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0204.xml">
  3122. <productMenuURL version="1.0.1"
  3123. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_vp_v0201.xml"
  3124. />
  3125. </productMenu>
  3126. <productMenu id="quickGuide"
  3127. type="1"
  3128. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_MOMENTUM_EVO_2.0.1_en_200507_D00144.pdf"
  3129. size="1.06MB" >
  3130. </productMenu>
  3131. <productMenu id="userGuide"
  3132. type="1"
  3133. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_MOMENTUM_EVO_2.0.1_en_200507.pdf"
  3134. size="3.15MB" >
  3135. </productMenu>
  3136. <productMenu id="volume"
  3137. type="2" >
  3138. </productMenu>
  3139. <productID id="3116"
  3140. />
  3141. <productGroupable type="0"
  3142. />
  3143. </product>
  3144. <product id="Momentum"
  3145. name="Momentum"
  3146. series="Helmet"
  3147. latestVersion="1.0.9"
  3148. show = "1" >
  3149. <productMenu id="protocol"
  3150. type="0">
  3151. </productMenu>
  3152. <productMenu id="sip"
  3153. type="1" >
  3154. </productMenu>
  3155. <productMenu id="bluetoothIntercom"
  3156. type="1" >
  3157. </productMenu>
  3158. <productMenu id="intercomSetting"
  3159. type="1" >
  3160. </productMenu>
  3161. <productMenu id="phone"
  3162. type="2" >
  3163. </productMenu>
  3164. <productMenu id="fmradio"
  3165. type="3" >
  3166. </productMenu>
  3167. <productMenu id="deviceSetting"
  3168. type="1"
  3169. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  3170. </productMenu>
  3171. <productMenu id="quickGuide"
  3172. type="1"
  3173. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_02.pdf"
  3174. size="796KB" >
  3175. </productMenu>
  3176. <productMenu id="userGuide"
  3177. type="1"
  3178. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_v1.0_03.pdf"
  3179. size="1.90MB" >
  3180. </productMenu>
  3181. <productID id="4310"
  3182. />
  3183. <productGroupable type="1"
  3184. />
  3185. </product>
  3186. <product id="Momentum_Pro"
  3187. name="Momentum Pro"
  3188. series="Helmet"
  3189. latestVersion="1.0.6"
  3190. show = "1" >
  3191. <productMenu id="protocol"
  3192. type="0">
  3193. </productMenu>
  3194. <productMenu id="sip"
  3195. type="1" >
  3196. </productMenu>
  3197. <productMenu id="bluetoothIntercom"
  3198. type="1" >
  3199. </productMenu>
  3200. <productMenu id="intercomSetting"
  3201. type="1" >
  3202. </productMenu>
  3203. <productMenu id="phone"
  3204. type="2" >
  3205. </productMenu>
  3206. <productMenu id="fmradio"
  3207. type="3" >
  3208. </productMenu>
  3209. <productMenu id="deviceSetting"
  3210. type="1"
  3211. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  3212. </productMenu>
  3213. <productMenu id="quickGuide"
  3214. type="1"
  3215. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Pro_02.pdf"
  3216. size="796KB" >
  3217. </productMenu>
  3218. <productMenu id="userGuide"
  3219. type="1"
  3220. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Pro_v1.0_03.pdf"
  3221. size="1.90MB" >
  3222. </productMenu>
  3223. <productID id="4330"
  3224. />
  3225. <productGroupable type="1"
  3226. />
  3227. </product>
  3228. <product id="Momentum_INC"
  3229. name="Momentum INC"
  3230. series="Helmet"
  3231. latestVersion="1.0.7"
  3232. show = "1" >
  3233. <productMenu id="protocol"
  3234. type="0">
  3235. </productMenu>
  3236. <productMenu id="sip"
  3237. type="1" >
  3238. </productMenu>
  3239. <productMenu id="bluetoothIntercom"
  3240. type="1" >
  3241. </productMenu>
  3242. <productMenu id="intercomSetting"
  3243. type="1" >
  3244. </productMenu>
  3245. <productMenu id="phone"
  3246. type="2" >
  3247. </productMenu>
  3248. <productMenu id="fmradio"
  3249. type="3" >
  3250. </productMenu>
  3251. <productMenu id="deviceSetting"
  3252. type="1"
  3253. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  3254. </productMenu>
  3255. <productMenu id="quickGuide"
  3256. type="1"
  3257. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_02.pdf"
  3258. size="794KB" >
  3259. </productMenu>
  3260. <productMenu id="userGuide"
  3261. type="1"
  3262. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_v1.0_03.pdf"
  3263. size="1.53MB" >
  3264. </productMenu>
  3265. <productID id="4410"
  3266. />
  3267. <productGroupable type="1"
  3268. />
  3269. </product>
  3270. <product id="Momentum_INCP"
  3271. name="Momentum INC Pro"
  3272. series="Helmet"
  3273. latestVersion="1.0.4"
  3274. show = "1" >
  3275. <productMenu id="protocol"
  3276. type="0">
  3277. </productMenu>
  3278. <productMenu id="sip"
  3279. type="1" >
  3280. </productMenu>
  3281. <productMenu id="bluetoothIntercom"
  3282. type="1" >
  3283. </productMenu>
  3284. <productMenu id="intercomSetting"
  3285. type="1" >
  3286. </productMenu>
  3287. <productMenu id="phone"
  3288. type="2" >
  3289. </productMenu>
  3290. <productMenu id="fmradio"
  3291. type="3" >
  3292. </productMenu>
  3293. <productMenu id="deviceSetting"
  3294. type="1"
  3295. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  3296. </productMenu>
  3297. <productMenu id="quickGuide"
  3298. type="1"
  3299. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_Pro_02.pdf"
  3300. size="794KB" >
  3301. </productMenu>
  3302. <productMenu id="userGuide"
  3303. type="1"
  3304. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_Pro_v1.0_03.pdf"
  3305. size="1.53MB" >
  3306. </productMenu>
  3307. <productID id="4430"
  3308. />
  3309. <productGroupable type="1"
  3310. />
  3311. </product>
  3312. <product id="Momentum_Lite"
  3313. name="Momentum Lite"
  3314. series="Helmet"
  3315. latestVersion="2.0.3"
  3316. show = "1" >
  3317. <productMenu id="protocol"
  3318. type="0">
  3319. </productMenu>
  3320. <productMenu id="sip"
  3321. type="1" >
  3322. </productMenu>
  3323. <productMenu id="bluetoothIntercom"
  3324. type="1" >
  3325. </productMenu>
  3326. <productMenu id="phone"
  3327. type="2" >
  3328. </productMenu>
  3329. <productMenu id="fmradio"
  3330. type="3" >
  3331. </productMenu>
  3332. <productMenu id="deviceSetting"
  3333. type="1"
  3334. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  3335. <productMenuURL version="1.1"
  3336. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_Lite.xml"
  3337. />
  3338. </productMenu>
  3339. <productMenu id="quickGuide"
  3340. type="1"
  3341. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Lite_02.pdf"
  3342. size="790KB" >
  3343. </productMenu>
  3344. <productMenu id="userGuide"
  3345. type="1"
  3346. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Lite_v2.0_01.pdf"
  3347. size="1.42MB" >
  3348. </productMenu>
  3349. <productID id="5526"
  3350. />
  3351. <productGroupable type="0"
  3352. />
  3353. </product>
  3354. <product id="OUTRUSHM"
  3355. name="OUTRUSH M"
  3356. series="Helmet"
  3357. latestVersion="1.0"
  3358. show = "-1" >
  3359. <productMenu id="protocol"
  3360. type="2" >
  3361. </productMenu>
  3362. <productMenu id="alexa"
  3363. type="0" >
  3364. </productMenu>
  3365. <productMenu id="ota"
  3366. type="0" >
  3367. </productMenu>
  3368. <productMenu id="wa"
  3369. type="0" >
  3370. </productMenu>
  3371. <productMenu id="meshIntercom"
  3372. type="30" >
  3373. </productMenu>
  3374. <productMenu id="phone"
  3375. type="1" >
  3376. </productMenu>
  3377. <productMenu id="music"
  3378. type="1" >
  3379. </productMenu>
  3380. <productMenu id="fmradio"
  3381. type="1" >
  3382. </productMenu>
  3383. <productMenu id="deviceSetting"
  3384. type="1"
  3385. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHM/NS_OUTRUSHM_01.xml" >
  3386. </productMenu>
  3387. <productMenu id="quickGuide"
  3388. type="1"
  3389. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_FURY_1.0.0_en_220819.pdf"
  3390. size="1.12MB" >
  3391. </productMenu>
  3392. <productMenu id="userGuide"
  3393. type="1"
  3394. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_FURY_1.0.0_en_220822.pdf"
  3395. size="2.0MB" >
  3396. </productMenu>
  3397. <productMenu id="volume"
  3398. type="13" >
  3399. </productMenu>
  3400. <productMenu id="battery"
  3401. type="1" >
  3402. </productMenu>
  3403. <productID id="5600"
  3404. />
  3405. <productGroupable type="0"
  3406. />
  3407. </product>
  3408. <product id="ProRideEVO"
  3409. name="ProRide EVO"
  3410. series="Helmet"
  3411. latestVersion="1.1.2"
  3412. show = "1" >
  3413. <productMenu id="protocol"
  3414. type="0">
  3415. </productMenu>
  3416. <productMenu id="sip"
  3417. type="1" >
  3418. </productMenu>
  3419. <productMenu id="bluetoothIntercom"
  3420. type="1" >
  3421. </productMenu>
  3422. <productMenu id="phone"
  3423. type="2" >
  3424. </productMenu>
  3425. <productMenu id="fmradio"
  3426. type="3" >
  3427. </productMenu>
  3428. <productMenu id="deviceSetting"
  3429. type="1"
  3430. url="https://api.sena.com/support/SenaUtility/ProRide/DS_ProRideEVO_fm.xml" >
  3431. </productMenu>
  3432. <productMenu id="userGuide"
  3433. type="1"
  3434. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ProRide_EVO_1.0.0_kr_LK03(App).pdf"
  3435. size="778KB" >
  3436. </productMenu>
  3437. <productID id="5426"
  3438. />
  3439. <productGroupable type="0"
  3440. />
  3441. </product>
  3442. <product id="OUTRUSHR"
  3443. name="OUTRUSH R"
  3444. series="Helmet"
  3445. latestVersion="2.1"
  3446. show = "1" >
  3447. <productMenu id="protocol"
  3448. type="3" >
  3449. </productMenu>
  3450. <productMenu id="sip"
  3451. type="1" >
  3452. </productMenu>
  3453. <productMenu id="bluetoothIntercom"
  3454. type="1" >
  3455. </productMenu>
  3456. <productMenu id="phone"
  3457. type="1" >
  3458. </productMenu>
  3459. <productMenu id="fmradio"
  3460. type="0" >
  3461. </productMenu>
  3462. <productMenu id="deviceSetting"
  3463. type="1"
  3464. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  3465. </productMenu>
  3466. <productMenu id="userGuide"
  3467. type="1"
  3468. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_2.0.0_en_250116.pdf"
  3469. size="1.14MB" >
  3470. </productMenu>
  3471. <productID id="5440"
  3472. />
  3473. <productGroupable type="0"
  3474. />
  3475. </product>
  3476. <product id="OUTRUSHR"
  3477. name="OUTRUSH R"
  3478. series="Helmet"
  3479. latestVersion="1.1.3"
  3480. show = "-1" >
  3481. <productMenu id="protocol"
  3482. type="0">
  3483. </productMenu>
  3484. <productMenu id="sip"
  3485. type="1" >
  3486. </productMenu>
  3487. <productMenu id="bluetoothIntercom"
  3488. type="1" >
  3489. </productMenu>
  3490. <productMenu id="phone"
  3491. type="2" >
  3492. </productMenu>
  3493. <productMenu id="fmradio"
  3494. type="3" >
  3495. </productMenu>
  3496. <productMenu id="deviceSetting"
  3497. type="1"
  3498. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  3499. </productMenu>
  3500. <productMenu id="userGuide"
  3501. type="1"
  3502. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_1.3.0_en_250120.pdf"
  3503. size="660KB" >
  3504. </productMenu>
  3505. <productID id="5424"
  3506. />
  3507. <productGroupable type="0"
  3508. />
  3509. </product>
  3510. <product id="OUTSTARS"
  3511. name="OUTSTAR S"
  3512. series="Helmet"
  3513. latestVersion="2.0.1"
  3514. show = "-1" >
  3515. <productMenu id="protocol"
  3516. type="3" >
  3517. </productMenu>
  3518. <productMenu id="sip"
  3519. type="1" >
  3520. </productMenu>
  3521. <productMenu id="bluetoothIntercom"
  3522. type="1" >
  3523. </productMenu>
  3524. <productMenu id="phone"
  3525. type="1" >
  3526. </productMenu>
  3527. <productMenu id="fmradio"
  3528. type="0" >
  3529. </productMenu>
  3530. <productMenu id="deviceSetting"
  3531. type="1"
  3532. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  3533. </productMenu>
  3534. <productMenu id="userGuide"
  3535. type="0"
  3536. url=""
  3537. size="1.14MB" >
  3538. </productMenu>
  3539. <productID id="5443"
  3540. />
  3541. <productGroupable type="0"
  3542. />
  3543. </product>
  3544. <product id="OUTSTARS"
  3545. name="OUTSTAR S"
  3546. series="Helmet"
  3547. latestVersion="1.1.3"
  3548. show = "1" >
  3549. <productMenu id="protocol"
  3550. type="0">
  3551. </productMenu>
  3552. <productMenu id="sip"
  3553. type="1" >
  3554. </productMenu>
  3555. <productMenu id="bluetoothIntercom"
  3556. type="1" >
  3557. </productMenu>
  3558. <productMenu id="phone"
  3559. type="2" >
  3560. </productMenu>
  3561. <productMenu id="fmradio"
  3562. type="3" >
  3563. </productMenu>
  3564. <productMenu id="deviceSetting"
  3565. type="1"
  3566. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  3567. </productMenu>
  3568. <productMenu id="quickGuide"
  3569. type="1"
  3570. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTSTAR_S_1.2.0_en_230704.pdf"
  3571. size="643KB" >
  3572. </productMenu>
  3573. <productMenu id="userGuide"
  3574. type="1"
  3575. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTSTAR_S_1.2.0_en_230704.pdf"
  3576. size="1.15MB" >
  3577. </productMenu>
  3578. <productID id="5428"
  3579. />
  3580. <productGroupable type="0"
  3581. />
  3582. </product>
  3583. <product id="OUTRIDE"
  3584. name="OUTRIDE"
  3585. series="Helmet"
  3586. latestVersion="1.0.1"
  3587. show = "1" >
  3588. <productMenu id="protocol"
  3589. type="0">
  3590. </productMenu>
  3591. <productMenu id="sip"
  3592. type="1" >
  3593. </productMenu>
  3594. <productMenu id="bluetoothIntercom"
  3595. type="1" >
  3596. </productMenu>
  3597. <productMenu id="phone"
  3598. type="2" >
  3599. </productMenu>
  3600. <productMenu id="fmradio"
  3601. type="3" >
  3602. </productMenu>
  3603. <productMenu id="deviceSetting"
  3604. type="1"
  3605. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  3606. </productMenu>
  3607. <productMenu id="quickGuide"
  3608. type="1"
  3609. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTRIDE_1.1.1_en_240524.pdf"
  3610. size="643KB" >
  3611. </productMenu>
  3612. <productMenu id="userGuide"
  3613. type="1"
  3614. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRIDE_1.1.1_en_240524.pdf"
  3615. size="660KB" >
  3616. </productMenu>
  3617. <productID id="5432"
  3618. />
  3619. <productGroupable type="0"
  3620. />
  3621. </product>
  3622. <product id="OUTFORCE"
  3623. name="OUTFORCE"
  3624. series="Helmet"
  3625. latestVersion="1.0.1"
  3626. show = "1" >
  3627. <productMenu id="protocol"
  3628. type="0">
  3629. </productMenu>
  3630. <productMenu id="sip"
  3631. type="1" >
  3632. </productMenu>
  3633. <productMenu id="bluetoothIntercom"
  3634. type="1" >
  3635. </productMenu>
  3636. <productMenu id="phone"
  3637. type="2" >
  3638. </productMenu>
  3639. <productMenu id="fmradio"
  3640. type="3" >
  3641. </productMenu>
  3642. <productMenu id="deviceSetting"
  3643. type="1"
  3644. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  3645. </productMenu>
  3646. <productMenu id="quickGuide"
  3647. type="1"
  3648. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTFORCE_1.1.1_en_240524.pdf"
  3649. size="643KB" >
  3650. </productMenu>
  3651. <productMenu id="userGuide"
  3652. type="1"
  3653. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTFORCE_1.1.1_en_240524.pdf"
  3654. size="660KB" >
  3655. </productMenu>
  3656. <productID id="5430"
  3657. />
  3658. <productGroupable type="0"
  3659. />
  3660. </product>
  3661. <product id="Rumba"
  3662. name="Rumba"
  3663. series="30"
  3664. latestVersion="2.0"
  3665. show = "-1" >
  3666. <productMenu id="protocol"
  3667. type="3" >
  3668. </productMenu>
  3669. <productMenu id="sip"
  3670. type="1" >
  3671. </productMenu>
  3672. <productMenu id="bluetoothIntercom"
  3673. type="1" >
  3674. </productMenu>
  3675. <productMenu id="deviceSetting"
  3676. type="1"
  3677. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml" >
  3678. </productMenu>
  3679. <productMenu id="quickGuide"
  3680. type="1"
  3681. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_RUMBA_1.0.0_en_201006.pdf"
  3682. size="344KB" >
  3683. </productMenu>
  3684. <productMenu id="userGuide"
  3685. type="1"
  3686. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Rumba_1.0.0_en_201007.pdf"
  3687. size="1.14MB" >
  3688. </productMenu>
  3689. <productID id="6322"
  3690. />
  3691. <productGroupable type="0"
  3692. />
  3693. </product>
  3694. <product id="Savage"
  3695. name="Savage"
  3696. series="Helmet"
  3697. latestVersion="1.2.2"
  3698. show = "1" >
  3699. <productMenu id="protocol"
  3700. type="0">
  3701. </productMenu>
  3702. <productMenu id="sip"
  3703. type="1" >
  3704. </productMenu>
  3705. <productMenu id="bluetoothIntercom"
  3706. type="1" >
  3707. </productMenu>
  3708. <productMenu id="phone"
  3709. type="2" >
  3710. </productMenu>
  3711. <productMenu id="fmradio"
  3712. type="3" >
  3713. </productMenu>
  3714. <productMenu id="deviceSetting"
  3715. type="1"
  3716. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0200.xml" >
  3717. <productMenuURL version="1.9"
  3718. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0102.xml"
  3719. />
  3720. <productMenuURL version="1.1"
  3721. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage.xml"
  3722. />
  3723. </productMenu>
  3724. <productMenu id="quickGuide"
  3725. type="1"
  3726. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Savage_01.pdf"
  3727. size="796KB" >
  3728. </productMenu>
  3729. <productMenu id="userGuide"
  3730. type="1"
  3731. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_Savage_v1.2_01.pdf"
  3732. size="910KB" >
  3733. </productMenu>
  3734. <productID id="5550"
  3735. />
  3736. <productGroupable type="0"
  3737. />
  3738. </product>
  3739. <product id="SPECTOR"
  3740. name="SPECTOR"
  3741. series="Helmet"
  3742. latestVersion="1.0"
  3743. latestVersionVoicePrompt="1.0"
  3744. show = "-1" >
  3745. <productMenu id="protocol"
  3746. type="2" >
  3747. </productMenu>
  3748. <productMenu id="ota"
  3749. type="0" >
  3750. <otaLanguages>
  3751. <otaLanguage
  3752. id="0"
  3753. name="English"
  3754. package="0"
  3755. />
  3756. <otaLanguage
  3757. id="0"
  3758. name="French"
  3759. package="1"
  3760. />
  3761. <otaLanguage
  3762. id="0"
  3763. name="Spanish"
  3764. package="2"
  3765. />
  3766. <otaLanguage
  3767. id="0"
  3768. name="Italian"
  3769. package="3"
  3770. />
  3771. <otaLanguage
  3772. id="0"
  3773. name="German"
  3774. package="4"
  3775. />
  3776. <otaLanguage
  3777. id="0"
  3778. name="Dutch"
  3779. package="5"
  3780. />
  3781. <otaLanguage
  3782. id="0"
  3783. name="Russian"
  3784. package="6"
  3785. />
  3786. <otaLanguage
  3787. id="0"
  3788. name="Chinese"
  3789. package="7"
  3790. />
  3791. <otaLanguage
  3792. id="0"
  3793. name="Korean"
  3794. package="8"
  3795. />
  3796. <otaLanguage
  3797. id="0"
  3798. name="Japanese"
  3799. package="9"
  3800. />
  3801. <otaLanguage
  3802. id="0"
  3803. name="Finnish"
  3804. package="10"
  3805. />
  3806. <otaLanguage
  3807. id="0"
  3808. name="Polish"
  3809. package="11"
  3810. />
  3811. </otaLanguages>
  3812. <otaPackages>
  3813. <package
  3814. url="https://api.sena.com/support/test/OTATest/OUTLANDER/OUTLANDER-v1.0-build1.img"
  3815. size="5183988"
  3816. />
  3817. <package
  3818. url="https://api.sena.com/support/test/OTATest/OUTLANDER/OUTLANDER-v1.0-build1-fr-FR.img"
  3819. size="5183988"
  3820. />
  3821. <package
  3822. url="https://api.sena.com/support/test/OTATest/OUTLANDER/OUTLANDER-v1.0-build1-es-ES.img"
  3823. size="5183988"
  3824. />
  3825. <package
  3826. url="https://api.sena.com/support/test/OTATest/OUTLANDER/OUTLANDER-v1.0-build1-it-IT.img"
  3827. size="5183988"
  3828. />
  3829. <package
  3830. url="https://api.sena.com/support/test/OTATest/OUTLANDER/OUTLANDER-v1.0-build1-de-DE.img"
  3831. size="5183988"
  3832. />
  3833. <package
  3834. url="https://api.sena.com/support/test/OTATest/OUTLANDER/OUTLANDER-v1.0-build1-nl-NL.img"
  3835. size="5183988"
  3836. />
  3837. <package
  3838. url="https://api.sena.com/support/test/OTATest/OUTLANDER/OUTLANDER-v1.0-build1-ru-RU.img"
  3839. size="5183988"
  3840. />
  3841. <package
  3842. url="https://api.sena.com/support/test/OTATest/OUTLANDER/OUTLANDER-v1.0-build1-cmn-CN.img"
  3843. size="5183988"
  3844. />
  3845. <package
  3846. url="https://api.sena.com/support/test/OTATest/OUTLANDER/OUTLANDER-v1.0-build1-ko-KR.img"
  3847. size="5183988"
  3848. />
  3849. <package
  3850. url="https://api.sena.com/support/test/OTATest/OUTLANDER/OUTLANDER-v1.0-build1-ja-JP.img"
  3851. size="5183988"
  3852. />
  3853. <package
  3854. url="https://api.sena.com/support/test/OTATest/OUTLANDER/OUTLANDER-v1.0-build1-fi-FI.img"
  3855. size="5183988"
  3856. />
  3857. <package
  3858. url="https://api.sena.com/support/test/OTATest/OUTLANDER/OUTLANDER-v1.0-build1-pl-PL.img"
  3859. size="5183988"
  3860. />
  3861. </otaPackages>
  3862. </productMenu>
  3863. <productMenu id="wa"
  3864. type="0" >
  3865. </productMenu>
  3866. <productMenu id="led"
  3867. type="5" >
  3868. </productMenu>
  3869. <productMenu id="led+"
  3870. type="2"
  3871. url="1" >
  3872. </productMenu>
  3873. <productMenu id="meshIntercom+"
  3874. type="3"
  3875. url="2" >
  3876. </productMenu>
  3877. <productMenu id="waveIntercom"
  3878. type="1" >
  3879. </productMenu>
  3880. <productMenu id="fmradio"
  3881. type="0" >
  3882. </productMenu>
  3883. <productMenu id="phone"
  3884. type="1" >
  3885. </productMenu>
  3886. <productMenu id="music"
  3887. type="1" >
  3888. </productMenu>
  3889. <productMenu id="musicSharing"
  3890. type="0" >
  3891. </productMenu>
  3892. <productMenu id="deviceSetting"
  3893. type="1"
  3894. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  3895. </productMenu>
  3896. <productMenu id="quickGuide"
  3897. type="0"
  3898. url=""
  3899. size="1.12MB" >
  3900. </productMenu>
  3901. <productMenu id="userGuide"
  3902. type="0"
  3903. url=""
  3904. size="2.0MB" >
  3905. </productMenu>
  3906. <productMenu id="videoGuide"
  3907. type="0"
  3908. url=""
  3909. size="3.41MB" >
  3910. </productMenu>
  3911. <productMenu id="volume"
  3912. type="16" >
  3913. </productMenu>
  3914. <productMenu id="battery"
  3915. type="1" >
  3916. </productMenu>
  3917. <productID id="6A0A"
  3918. />
  3919. <productGroupable type="0"
  3920. />
  3921. </product>
  3922. <product id="OUTLANDER"
  3923. name="OUTLANDER"
  3924. series="Helmet"
  3925. latestVersion="1.0"
  3926. latestVersionVoicePrompt="1.0"
  3927. show = "-1" >
  3928. <productMenu id="protocol"
  3929. type="2" >
  3930. </productMenu>
  3931. <productMenu id="ota"
  3932. type="2" >
  3933. <otaLanguages>
  3934. <otaLanguage
  3935. id="0"
  3936. name="English"
  3937. package="0"
  3938. />
  3939. <otaLanguage
  3940. id="0"
  3941. name="French"
  3942. package="1"
  3943. />
  3944. <otaLanguage
  3945. id="0"
  3946. name="Spanish"
  3947. package="2"
  3948. />
  3949. <otaLanguage
  3950. id="0"
  3951. name="Italian"
  3952. package="3"
  3953. />
  3954. <otaLanguage
  3955. id="0"
  3956. name="German"
  3957. package="4"
  3958. />
  3959. <otaLanguage
  3960. id="0"
  3961. name="Dutch"
  3962. package="5"
  3963. />
  3964. <otaLanguage
  3965. id="0"
  3966. name="Russian"
  3967. package="6"
  3968. />
  3969. <otaLanguage
  3970. id="0"
  3971. name="Chinese"
  3972. package="7"
  3973. />
  3974. <otaLanguage
  3975. id="0"
  3976. name="Korean"
  3977. package="8"
  3978. />
  3979. <otaLanguage
  3980. id="0"
  3981. name="Japanese"
  3982. package="9"
  3983. />
  3984. <otaLanguage
  3985. id="0"
  3986. name="Finnish"
  3987. package="10"
  3988. />
  3989. <otaLanguage
  3990. id="0"
  3991. name="Polish"
  3992. package="11"
  3993. />
  3994. </otaLanguages>
  3995. <otaPackages>
  3996. <package
  3997. url="https://api.sena.com/support/test/OTATest/OUTLANDER/OUTLANDER-v1.0-build1.img"
  3998. size="5183988"
  3999. />
  4000. <package
  4001. url="https://api.sena.com/support/test/OTATest/OUTLANDER/OUTLANDER-v1.0-build1-fr-FR.img"
  4002. size="5183988"
  4003. />
  4004. <package
  4005. url="https://api.sena.com/support/test/OTATest/OUTLANDER/OUTLANDER-v1.0-build1-es-ES.img"
  4006. size="5183988"
  4007. />
  4008. <package
  4009. url="https://api.sena.com/support/test/OTATest/OUTLANDER/OUTLANDER-v1.0-build1-it-IT.img"
  4010. size="5183988"
  4011. />
  4012. <package
  4013. url="https://api.sena.com/support/test/OTATest/OUTLANDER/OUTLANDER-v1.0-build1-de-DE.img"
  4014. size="5183988"
  4015. />
  4016. <package
  4017. url="https://api.sena.com/support/test/OTATest/OUTLANDER/OUTLANDER-v1.0-build1-nl-NL.img"
  4018. size="5183988"
  4019. />
  4020. <package
  4021. url="https://api.sena.com/support/test/OTATest/OUTLANDER/OUTLANDER-v1.0-build1-ru-RU.img"
  4022. size="5183988"
  4023. />
  4024. <package
  4025. url="https://api.sena.com/support/test/OTATest/OUTLANDER/OUTLANDER-v1.0-build1-cmn-CN.img"
  4026. size="5183988"
  4027. />
  4028. <package
  4029. url="https://api.sena.com/support/test/OTATest/OUTLANDER/OUTLANDER-v1.0-build1-ko-KR.img"
  4030. size="5183988"
  4031. />
  4032. <package
  4033. url="https://api.sena.com/support/test/OTATest/OUTLANDER/OUTLANDER-v1.0-build1-ja-JP.img"
  4034. size="5183988"
  4035. />
  4036. <package
  4037. url="https://api.sena.com/support/test/OTATest/OUTLANDER/OUTLANDER-v1.0-build1-fi-FI.img"
  4038. size="5183988"
  4039. />
  4040. <package
  4041. url="https://api.sena.com/support/test/OTATest/OUTLANDER/OUTLANDER-v1.0-build1-pl-PL.img"
  4042. size="5183988"
  4043. />
  4044. </otaPackages>
  4045. </productMenu>
  4046. <productMenu id="wa"
  4047. type="0" >
  4048. </productMenu>
  4049. <productMenu id="led"
  4050. type="5" >
  4051. </productMenu>
  4052. <productMenu id="led+"
  4053. type="2"
  4054. url="1" >
  4055. </productMenu>
  4056. <productMenu id="meshIntercom+"
  4057. type="3"
  4058. url="2" >
  4059. </productMenu>
  4060. <productMenu id="waveIntercom"
  4061. type="1" >
  4062. </productMenu>
  4063. <productMenu id="fmradio"
  4064. type="0" >
  4065. </productMenu>
  4066. <productMenu id="phone"
  4067. type="1" >
  4068. </productMenu>
  4069. <productMenu id="music"
  4070. type="1" >
  4071. </productMenu>
  4072. <productMenu id="musicSharing"
  4073. type="0" >
  4074. </productMenu>
  4075. <productMenu id="deviceSetting"
  4076. type="1"
  4077. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  4078. </productMenu>
  4079. <productMenu id="quickGuide"
  4080. type="0"
  4081. url=""
  4082. size="1.12MB" >
  4083. </productMenu>
  4084. <productMenu id="userGuide"
  4085. type="0"
  4086. url=""
  4087. size="2.0MB" >
  4088. </productMenu>
  4089. <productMenu id="videoGuide"
  4090. type="0"
  4091. url=""
  4092. size="3.41MB" >
  4093. </productMenu>
  4094. <productMenu id="volume"
  4095. type="16" >
  4096. </productMenu>
  4097. <productMenu id="battery"
  4098. type="1" >
  4099. </productMenu>
  4100. <productID id="6A05"
  4101. />
  4102. <productGroupable type="0"
  4103. />
  4104. </product>
  4105. <product id="OUTRUSH2"
  4106. name="OUTRUSH 2"
  4107. series="Helmet"
  4108. latestVersion="1.0.2"
  4109. latestVersionVoicePrompt="1.1"
  4110. show = "-1" >
  4111. <productMenu id="protocol"
  4112. type="2" >
  4113. </productMenu>
  4114. <productMenu id="alexa"
  4115. type="0" >
  4116. </productMenu>
  4117. <productMenu id="ota"
  4118. type="2" >
  4119. <otaPackages>
  4120. <package
  4121. url="https://api.sena.com/support/OTA/OUTRUSH2/OUTRUSH_2-v1.0.2-build0.img"
  4122. size="2945812"
  4123. />
  4124. </otaPackages>
  4125. </productMenu>
  4126. <productMenu id="meshIntercom+"
  4127. type="3"
  4128. url="2" >
  4129. </productMenu>
  4130. <productMenu id="waveIntercom"
  4131. type="1" >
  4132. </productMenu>
  4133. <productMenu id="phone"
  4134. type="1" >
  4135. </productMenu>
  4136. <productMenu id="music"
  4137. type="1" >
  4138. </productMenu>
  4139. <productMenu id="musicSharing"
  4140. type="0" >
  4141. </productMenu>
  4142. <productMenu id="deviceSetting"
  4143. type="1"
  4144. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_03.xml" >
  4145. <productMenuURL version="1.0"
  4146. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_01.xml"
  4147. />
  4148. </productMenu>
  4149. <productMenu id="quickGuide"
  4150. type="0"
  4151. url=""
  4152. size="1.12MB" >
  4153. </productMenu>
  4154. <productMenu id="userGuide"
  4155. type="1"
  4156. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_2_1.0.0_en_250730.pdf"
  4157. size="2.0MB" >
  4158. </productMenu>
  4159. <productMenu id="volume"
  4160. type="12" >
  4161. </productMenu>
  4162. <productMenu id="battery"
  4163. type="1" >
  4164. </productMenu>
  4165. <productID id="684A"
  4166. />
  4167. <productGroupable type="0"
  4168. />
  4169. </product>
  4170. <product id="OUTSTAR2"
  4171. name="OUTSTAR 2"
  4172. series="Helmet"
  4173. latestVersion="1.0.1"
  4174. latestVersionVoicePrompt="1.1"
  4175. show = "-1" >
  4176. <productMenu id="protocol"
  4177. type="2" >
  4178. </productMenu>
  4179. <productMenu id="alexa"
  4180. type="0" >
  4181. </productMenu>
  4182. <productMenu id="ota"
  4183. type="2" >
  4184. <otaPackages>
  4185. <package
  4186. url="https://api.sena.com/support/test/OUTSTAR_2-v1.0.1-build0.img"
  4187. size="2945812"
  4188. />
  4189. </otaPackages>
  4190. </productMenu>
  4191. <productMenu id="meshIntercom+"
  4192. type="3"
  4193. url="2" >
  4194. </productMenu>
  4195. <productMenu id="waveIntercom"
  4196. type="1" >
  4197. </productMenu>
  4198. <productMenu id="phone"
  4199. type="1" >
  4200. </productMenu>
  4201. <productMenu id="music"
  4202. type="1" >
  4203. </productMenu>
  4204. <productMenu id="musicSharing"
  4205. type="0" >
  4206. </productMenu>
  4207. <productMenu id="deviceSetting"
  4208. type="1"
  4209. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_03.xml" >
  4210. </productMenu>
  4211. <productMenu id="quickGuide"
  4212. type="0"
  4213. url=""
  4214. size="1.12MB" >
  4215. </productMenu>
  4216. <productMenu id="userGuide"
  4217. type="1"
  4218. url=""
  4219. size="2.0MB" >
  4220. </productMenu>
  4221. <productMenu id="volume"
  4222. type="12" >
  4223. </productMenu>
  4224. <productMenu id="battery"
  4225. type="1" >
  4226. </productMenu>
  4227. <productID id="684B"
  4228. />
  4229. <productGroupable type="0"
  4230. />
  4231. </product>
  4232. <product id="SURGE"
  4233. name="SURGE"
  4234. series="Helmet"
  4235. latestVersion="1.1.1"
  4236. latestVersionVoicePrompt="0.9"
  4237. show = "1" >
  4238. <productMenu id="protocol"
  4239. type="2" >
  4240. </productMenu>
  4241. <productMenu id="alexa"
  4242. type="0" >
  4243. </productMenu>
  4244. <productMenu id="ota"
  4245. type="2" >
  4246. <otaPackages>
  4247. <package
  4248. url="https://api.sena.com/support/OTA/SURGE/SURGE-v1.1.1-build0.img"
  4249. size="2945812"
  4250. />
  4251. </otaPackages>
  4252. </productMenu>
  4253. <productMenu id="meshIntercom"
  4254. type="30" >
  4255. </productMenu>
  4256. <productMenu id="meshIntercom+"
  4257. type="3"
  4258. url="2" >
  4259. <productMenuType version="1.0.1"
  4260. type="2"
  4261. />
  4262. </productMenu>
  4263. <productMenu id="waveIntercom"
  4264. type="1" >
  4265. <productMenuType version="1.0.9"
  4266. type="0"
  4267. />
  4268. </productMenu>
  4269. <productMenu id="phone"
  4270. type="1" >
  4271. </productMenu>
  4272. <productMenu id="music"
  4273. type="1" >
  4274. </productMenu>
  4275. <productMenu id="musicSharing"
  4276. type="0" >
  4277. </productMenu>
  4278. <productMenu id="deviceSetting"
  4279. type="1"
  4280. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA.xml" >
  4281. <productMenuURL version="1.0.1"
  4282. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  4283. />
  4284. </productMenu>
  4285. <productMenu id="quickGuide"
  4286. type="0"
  4287. url=""
  4288. size="1.12MB" >
  4289. </productMenu>
  4290. <productMenu id="userGuide"
  4291. type="1"
  4292. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SURGE_1.1.0_en_250408.pdf"
  4293. size="2.0MB" >
  4294. </productMenu>
  4295. <productMenu id="volume"
  4296. type="12" >
  4297. </productMenu>
  4298. <productMenu id="battery"
  4299. type="1" >
  4300. </productMenu>
  4301. <productID id="6840"
  4302. />
  4303. <productGroupable type="0"
  4304. />
  4305. </product>
  4306. <product id="Cavalry2"
  4307. name="Cavalry 2"
  4308. series="Helmet"
  4309. latestVersion="1.1.1"
  4310. latestVersionVoicePrompt="0.9"
  4311. show = "1" >
  4312. <productMenu id="protocol"
  4313. type="2" >
  4314. </productMenu>
  4315. <productMenu id="alexa"
  4316. type="0" >
  4317. </productMenu>
  4318. <productMenu id="ota"
  4319. type="2" >
  4320. <otaPackages>
  4321. <package
  4322. url="https://api.sena.com/support/OTA/Cavalry2/CAVALRY_2-v1.1.1-build0.img"
  4323. size="3144148"
  4324. />
  4325. </otaPackages>
  4326. </productMenu>
  4327. <productMenu id="wa"
  4328. type="0" >
  4329. </productMenu>
  4330. <productMenu id="meshIntercom"
  4331. type="30" >
  4332. </productMenu>
  4333. <productMenu id="meshIntercom+"
  4334. type="3"
  4335. url="2" >
  4336. <productMenuType version="1.0"
  4337. type="2"
  4338. />
  4339. </productMenu>
  4340. <productMenu id="waveIntercom"
  4341. type="1" >
  4342. <productMenuType version="1.0.9"
  4343. type="0"
  4344. />
  4345. </productMenu>
  4346. <productMenu id="phone"
  4347. type="1" >
  4348. </productMenu>
  4349. <productMenu id="music"
  4350. type="1" >
  4351. </productMenu>
  4352. <productMenu id="musicSharing"
  4353. type="0" >
  4354. </productMenu>
  4355. <productMenu id="deviceSetting"
  4356. type="1"
  4357. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA_02.xml" >
  4358. <productMenuURL version="1.0"
  4359. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA_01.xml"
  4360. />
  4361. </productMenu>
  4362. <productMenu id="quickGuide"
  4363. type="0"
  4364. url=""
  4365. size="1.12MB" >
  4366. </productMenu>
  4367. <productMenu id="userGuide"
  4368. type="1"
  4369. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_CAVALRY_2_1.2.0_en_250415.pdf"
  4370. size="2.0MB" >
  4371. </productMenu>
  4372. <productMenu id="connectGuide"
  4373. type="1"
  4374. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init.json"
  4375. size="1.12MB" >
  4376. </productMenu>
  4377. <productMenu id="volume"
  4378. type="12" >
  4379. </productMenu>
  4380. <productMenu id="battery"
  4381. type="1" >
  4382. </productMenu>
  4383. <productID id="6839"
  4384. />
  4385. <productGroupable type="0"
  4386. />
  4387. </product>
  4388. <product id="Cavalry"
  4389. name="Cavalry"
  4390. series="Helmet"
  4391. latestVersion="1.2.2"
  4392. show = "1" >
  4393. <productMenu id="protocol"
  4394. type="0">
  4395. </productMenu>
  4396. <productMenu id="sip"
  4397. type="1" >
  4398. </productMenu>
  4399. <productMenu id="bluetoothIntercom"
  4400. type="1" >
  4401. </productMenu>
  4402. <productMenu id="phone"
  4403. type="2" >
  4404. </productMenu>
  4405. <productMenu id="fmradio"
  4406. type="3" >
  4407. </productMenu>
  4408. <productMenu id="deviceSetting"
  4409. type="1"
  4410. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry_v0200.xml" >
  4411. <productMenuURL version="1.9"
  4412. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml"
  4413. />
  4414. <productMenuURL version="1.0.1"
  4415. url="https://api.sena.com/support/SenaUtility/Cavalry/DeviceSetting_Cavalry.xml"
  4416. />
  4417. </productMenu>
  4418. <productMenu id="quickGuide"
  4419. type="1"
  4420. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Cavalry_01.pdf"
  4421. size="795KB" >
  4422. </productMenu>
  4423. <productMenu id="userGuide"
  4424. type="1"
  4425. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_v1.1_01.pdf"
  4426. size="1.87MB" >
  4427. </productMenu>
  4428. <productID id="5524"
  4429. />
  4430. <productGroupable type="0"
  4431. />
  4432. </product>
  4433. <product id="Cavalry_Lite"
  4434. name="Cavalry Lite"
  4435. series="Helmet"
  4436. latestVersion="1.0.2"
  4437. show = "1" >
  4438. <productMenu id="protocol"
  4439. type="0">
  4440. </productMenu>
  4441. <productMenu id="sip"
  4442. type="1" >
  4443. </productMenu>
  4444. <productMenu id="bluetoothIntercom"
  4445. type="1" >
  4446. </productMenu>
  4447. <productMenu id="phone"
  4448. type="2" >
  4449. </productMenu>
  4450. <productMenu id="fmradio"
  4451. type="3" >
  4452. </productMenu>
  4453. <productMenu id="deviceSetting"
  4454. type="1"
  4455. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  4456. </productMenu>
  4457. <productMenu id="userGuide"
  4458. type="1"
  4459. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_Lite_v1.0_01.pdf"
  4460. size="1.74MB" >
  4461. </productMenu>
  4462. <productID id="5536"
  4463. />
  4464. <productGroupable type="0"
  4465. />
  4466. </product>
  4467. <product id="SF4"
  4468. name="SF4"
  4469. series="SF"
  4470. latestVersion="1.1.5"
  4471. show = "-1" >
  4472. <productMenu id="protocol"
  4473. type="1"
  4474. url="3">
  4475. </productMenu>
  4476. <productMenu id="sip"
  4477. type="1" >
  4478. </productMenu>
  4479. <productMenu id="bluetoothIntercom"
  4480. type="1" >
  4481. </productMenu>
  4482. <productMenu id="phone"
  4483. type="1" >
  4484. </productMenu>
  4485. <productMenu id="music"
  4486. type="1" >
  4487. </productMenu>
  4488. <productMenu id="fmradio"
  4489. type="1" >
  4490. </productMenu>
  4491. <productMenu id="deviceSetting"
  4492. type="1"
  4493. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  4494. <productMenuURL version="1.0.1"
  4495. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  4496. />
  4497. </productMenu>
  4498. <productMenu id="quickGuide"
  4499. type="1"
  4500. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF4_1.2.0_en_230704.pdf"
  4501. size="607KB" >
  4502. </productMenu>
  4503. <productMenu id="userGuide"
  4504. type="1"
  4505. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  4506. size="1.91MB" >
  4507. </productMenu>
  4508. <productMenu id="volume"
  4509. type="4" >
  4510. </productMenu>
  4511. <productID id="5414"
  4512. />
  4513. <productGroupable type="0"
  4514. />
  4515. </product>
  4516. <product id="SF4"
  4517. name="SF4"
  4518. series="SF"
  4519. latestVersion="3.4.1"
  4520. show = "1" >
  4521. <productMenu id="protocol"
  4522. type="2" >
  4523. </productMenu>
  4524. <productMenu id="sip"
  4525. type="1" >
  4526. </productMenu>
  4527. <productMenu id="bluetoothIntercom"
  4528. type="1" >
  4529. </productMenu>
  4530. <productMenu id="phone"
  4531. type="1" >
  4532. </productMenu>
  4533. <productMenu id="music"
  4534. type="1" >
  4535. </productMenu>
  4536. <productMenu id="fmradio"
  4537. type="1" >
  4538. </productMenu>
  4539. <productMenu id="deviceSetting"
  4540. type="1"
  4541. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF4_01.xml" >
  4542. <productMenuURL version="3.0"
  4543. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF4_BY.xml"
  4544. />
  4545. </productMenu>
  4546. <productMenu id="quickGuide"
  4547. type="0"
  4548. url=""
  4549. size="934KB" >
  4550. </productMenu>
  4551. <productMenu id="userGuide"
  4552. type="1"
  4553. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  4554. size="1.14MB" >
  4555. </productMenu>
  4556. <productMenu id="volume"
  4557. type="15" >
  4558. </productMenu>
  4559. <productID id="3370"
  4560. />
  4561. <productGroupable type="0"
  4562. />
  4563. </product>
  4564. <product id="SF2"
  4565. name="SF2"
  4566. series="SF"
  4567. latestVersion="1.2.1"
  4568. show = "-1" >
  4569. <productMenu id="protocol"
  4570. type="1"
  4571. url="2">
  4572. </productMenu>
  4573. <productMenu id="sip"
  4574. type="1" >
  4575. </productMenu>
  4576. <productMenu id="bluetoothIntercom"
  4577. type="1" >
  4578. </productMenu>
  4579. <productMenu id="phone"
  4580. type="1" >
  4581. </productMenu>
  4582. <productMenu id="music"
  4583. type="1" >
  4584. </productMenu>
  4585. <productMenu id="fmradio"
  4586. type="1" >
  4587. </productMenu>
  4588. <productMenu id="deviceSetting"
  4589. type="1"
  4590. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  4591. <productMenuURL version="1.0.1"
  4592. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  4593. />
  4594. </productMenu>
  4595. <productMenu id="quickGuide"
  4596. type="1"
  4597. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF2_1.3.0_en_230704.pdf"
  4598. size="607KB" >
  4599. </productMenu>
  4600. <productMenu id="userGuide"
  4601. type="1"
  4602. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  4603. size="1.91MB" >
  4604. </productMenu>
  4605. <productMenu id="volume"
  4606. type="4" >
  4607. </productMenu>
  4608. <productID id="5412"
  4609. />
  4610. <productGroupable type="0"
  4611. />
  4612. </product>
  4613. <product id="SF2"
  4614. name="SF2"
  4615. series="SF"
  4616. latestVersion="3.3.1"
  4617. show = "1" >
  4618. <productMenu id="protocol"
  4619. type="2" >
  4620. </productMenu>
  4621. <productMenu id="sip"
  4622. type="1" >
  4623. </productMenu>
  4624. <productMenu id="bluetoothIntercom"
  4625. type="1" >
  4626. </productMenu>
  4627. <productMenu id="phone"
  4628. type="1" >
  4629. </productMenu>
  4630. <productMenu id="music"
  4631. type="1" >
  4632. </productMenu>
  4633. <productMenu id="fmradio"
  4634. type="0" >
  4635. </productMenu>
  4636. <productMenu id="deviceSetting"
  4637. type="1"
  4638. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_01.xml" >
  4639. <productMenuURL version="3.0"
  4640. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_BY.xml"
  4641. />
  4642. </productMenu>
  4643. <productMenu id="quickGuide"
  4644. type="0"
  4645. url=""
  4646. size="934KB" >
  4647. </productMenu>
  4648. <productMenu id="userGuide"
  4649. type="1"
  4650. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  4651. size="1.14MB" >
  4652. </productMenu>
  4653. <productMenu id="volume"
  4654. type="15" >
  4655. </productMenu>
  4656. <productID id="3360"
  4657. />
  4658. <productGroupable type="0"
  4659. />
  4660. </product>
  4661. <product id="SF1"
  4662. name="SF1"
  4663. series="SF"
  4664. latestVersion="2.0.5"
  4665. show = "-1" >
  4666. <productMenu id="protocol"
  4667. type="1"
  4668. url="1">
  4669. </productMenu>
  4670. <productMenu id="sip"
  4671. type="1" >
  4672. </productMenu>
  4673. <productMenu id="bluetoothIntercom"
  4674. type="1" >
  4675. <productMenuType version="1.1"
  4676. type="0"
  4677. />
  4678. </productMenu>
  4679. <productMenu id="phone"
  4680. type="1" >
  4681. </productMenu>
  4682. <productMenu id="music"
  4683. type="1" >
  4684. </productMenu>
  4685. <productMenu id="deviceSetting"
  4686. type="1"
  4687. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0200.xml">
  4688. <productMenuURL version="1.1"
  4689. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0101n.xml"
  4690. />
  4691. <productMenuURL version="1.0"
  4692. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1.xml"
  4693. />
  4694. </productMenu>
  4695. <productMenu id="quickGuide"
  4696. type="1"
  4697. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF1_2.2.0_en_230704.pdf"
  4698. size="401KB" >
  4699. </productMenu>
  4700. <productMenu id="userGuide"
  4701. type="1"
  4702. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  4703. size="1.91MB" >
  4704. </productMenu>
  4705. <productMenu id="volume"
  4706. type="3" >
  4707. </productMenu>
  4708. <productID id="5410"
  4709. />
  4710. <productGroupable type="0"
  4711. />
  4712. </product>
  4713. <product id="SF1"
  4714. name="SF1"
  4715. series="SF"
  4716. latestVersion="3.3.1"
  4717. show = "1" >
  4718. <productMenu id="protocol"
  4719. type="2" >
  4720. </productMenu>
  4721. <productMenu id="sip"
  4722. type="1" >
  4723. </productMenu>
  4724. <productMenu id="bluetoothIntercom"
  4725. type="1" >
  4726. </productMenu>
  4727. <productMenu id="phone"
  4728. type="1" >
  4729. </productMenu>
  4730. <productMenu id="music"
  4731. type="1" >
  4732. </productMenu>
  4733. <productMenu id="fmradio"
  4734. type="0" >
  4735. </productMenu>
  4736. <productMenu id="deviceSetting"
  4737. type="1"
  4738. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_01.xml" >
  4739. <productMenuURL version="3.0"
  4740. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_BY.xml"
  4741. />
  4742. </productMenu>
  4743. <productMenu id="quickGuide"
  4744. type="0"
  4745. url=""
  4746. size="934KB" >
  4747. </productMenu>
  4748. <productMenu id="userGuide"
  4749. type="1"
  4750. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  4751. size="1.14MB" >
  4752. </productMenu>
  4753. <productMenu id="volume"
  4754. type="15" >
  4755. </productMenu>
  4756. <productID id="3350"
  4757. />
  4758. <productGroupable type="0"
  4759. />
  4760. </product>
  4761. <product id="SFR"
  4762. name="SFR"
  4763. series="SF"
  4764. latestVersion="1.1.1"
  4765. show = "1" >
  4766. <productMenu id="protocol"
  4767. type="1"
  4768. url="3">
  4769. </productMenu>
  4770. <productMenu id="sip"
  4771. type="1" >
  4772. </productMenu>
  4773. <productMenu id="bluetoothIntercom"
  4774. type="1" >
  4775. </productMenu>
  4776. <productMenu id="phone"
  4777. type="1" >
  4778. </productMenu>
  4779. <productMenu id="music"
  4780. type="1" >
  4781. </productMenu>
  4782. <productMenu id="fmradio"
  4783. type="1" >
  4784. </productMenu>
  4785. <productMenu id="deviceSetting"
  4786. type="1"
  4787. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  4788. </productMenu>
  4789. <productMenu id="quickGuide"
  4790. type="1"
  4791. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SFR_1.3.0_en_230710.pdf"
  4792. size="607KB" >
  4793. </productMenu>
  4794. <productMenu id="userGuide"
  4795. type="1"
  4796. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SFR_1.3.0_en_230710.pdf"
  4797. size="1.91MB" >
  4798. </productMenu>
  4799. <productMenu id="volume"
  4800. type="4" >
  4801. </productMenu>
  4802. <productID id="5418"
  4803. />
  4804. <productGroupable type="0"
  4805. />
  4806. </product>
  4807. <product id="20S"
  4808. name="20S"
  4809. series="20"
  4810. latestVersion="2.2.3"
  4811. show = "1" >
  4812. <productMenu id="protocol"
  4813. type="0">
  4814. </productMenu>
  4815. <productMenu id="wa"
  4816. type="5" >
  4817. </productMenu>
  4818. <productMenu id="sip"
  4819. type="1" >
  4820. <productMenuType version="1.0"
  4821. type="0"
  4822. />
  4823. </productMenu>
  4824. <productMenu id="bluetoothIntercom"
  4825. type="1" >
  4826. <productMenuType version="1.0"
  4827. type="0"
  4828. />
  4829. </productMenu>
  4830. <productMenu id="intercomSetting"
  4831. type="1" >
  4832. </productMenu>
  4833. <productMenu id="phone"
  4834. type="2" >
  4835. </productMenu>
  4836. <productMenu id="fmradio"
  4837. type="3" >
  4838. </productMenu>
  4839. <productMenu id="deviceSetting"
  4840. type="1"
  4841. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  4842. <productMenuURL version="2.0.2"
  4843. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  4844. />
  4845. <productMenuURL version="1.5"
  4846. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  4847. />
  4848. <productMenuURL version="1.4.1"
  4849. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  4850. />
  4851. <productMenuURL version="1.1"
  4852. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  4853. />
  4854. <productMenuURL version="1.0"
  4855. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  4856. />
  4857. </productMenu>
  4858. <productMenu id="quickGuide"
  4859. type="0"
  4860. url=""
  4861. size="264KB" >
  4862. </productMenu>
  4863. <productMenu id="userGuide"
  4864. type="1"
  4865. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.2_en_250123.pdf"
  4866. size="3.09MB" >
  4867. </productMenu>
  4868. <productID id="4210"
  4869. />
  4870. <productGroupable type="1"
  4871. />
  4872. </product>
  4873. <product id="20S_EVO"
  4874. name="20S EVO"
  4875. series="20"
  4876. latestVersion="2.2.3"
  4877. show = "1" >
  4878. <productMenu id="protocol"
  4879. type="0">
  4880. </productMenu>
  4881. <productMenu id="wa"
  4882. type="5" >
  4883. </productMenu>
  4884. <productMenu id="sip"
  4885. type="1" >
  4886. <productMenuType version="1.0"
  4887. type="0"
  4888. />
  4889. </productMenu>
  4890. <productMenu id="bluetoothIntercom"
  4891. type="1" >
  4892. <productMenuType version="1.0"
  4893. type="0"
  4894. />
  4895. </productMenu>
  4896. <productMenu id="intercomSetting"
  4897. type="1" >
  4898. </productMenu>
  4899. <productMenu id="phone"
  4900. type="2" >
  4901. </productMenu>
  4902. <productMenu id="fmradio"
  4903. type="3" >
  4904. </productMenu>
  4905. <productMenu id="deviceSetting"
  4906. type="1"
  4907. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  4908. <productMenuURL version="2.0.2"
  4909. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  4910. />
  4911. <productMenuURL version="1.5"
  4912. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  4913. />
  4914. <productMenuURL version="1.4.1"
  4915. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  4916. />
  4917. <productMenuURL version="1.1"
  4918. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  4919. />
  4920. <productMenuURL version="1.0"
  4921. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  4922. />
  4923. </productMenu>
  4924. <productMenu id="quickGuide"
  4925. type="0"
  4926. url=""
  4927. size="264KB" >
  4928. </productMenu>
  4929. <productMenu id="userGuide"
  4930. type="1"
  4931. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.2_en_250123.pdf"
  4932. size="3.09MB" >
  4933. </productMenu>
  4934. <productID id="4210"
  4935. />
  4936. <productProductKey key="16"
  4937. />
  4938. <productGroupable type="1"
  4939. />
  4940. </product>
  4941. <product id="10S"
  4942. name="10S"
  4943. series="10"
  4944. latestVersion="3.0.1"
  4945. show = "1" >
  4946. <productMenu id="protocol"
  4947. type="3" >
  4948. </productMenu>
  4949. <productMenu id="sip"
  4950. type="1" >
  4951. </productMenu>
  4952. <productMenu id="bluetoothIntercom"
  4953. type="1" >
  4954. </productMenu>
  4955. <productMenu id="phone"
  4956. type="1" >
  4957. </productMenu>
  4958. <productMenu id="deviceSetting"
  4959. type="1"
  4960. url="https://api.sena.com/support/SenaNeoApp/QCC10S/NS_QCCS10S.xml" >
  4961. </productMenu>
  4962. <productMenu id="quickGuide"
  4963. type="1"
  4964. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_2.0.0_en_230623.pdf"
  4965. size="934KB" >
  4966. </productMenu>
  4967. <productMenu id="userGuide"
  4968. type="1"
  4969. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_3.1.0_en_250103.pdf"
  4970. size="1.14MB" >
  4971. </productMenu>
  4972. <productID id="3380"
  4973. />
  4974. <productGroupable type="0"
  4975. />
  4976. </product>
  4977. <product id="10S"
  4978. name="10S"
  4979. series="10"
  4980. latestVersion="2.1.1"
  4981. show = "-1" >
  4982. <productMenu id="protocol"
  4983. type="0">
  4984. </productMenu>
  4985. <productMenu id="sip"
  4986. type="1" >
  4987. </productMenu>
  4988. <productMenu id="bluetoothIntercom"
  4989. type="1" >
  4990. </productMenu>
  4991. <productMenu id="phone"
  4992. type="2" >
  4993. </productMenu>
  4994. <productMenu id="fmradio"
  4995. type="3" >
  4996. </productMenu>
  4997. <productMenu id="deviceSetting"
  4998. type="1"
  4999. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0200fm.xml" >
  5000. <productMenuURL version="1.5"
  5001. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml"
  5002. />
  5003. <productMenuURL version="1.3.1"
  5004. url="https://api.sena.com/support/SenaUtility/10S/DeviceSetting_10S.xml"
  5005. />
  5006. </productMenu>
  5007. <productMenu id="quickGuide"
  5008. type="1"
  5009. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_1.4.0_en_230623.pdf"
  5010. size="310KB" >
  5011. </productMenu>
  5012. <productMenu id="userGuide"
  5013. type="1"
  5014. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_2.4.0_en_250103.pdf"
  5015. size="1.57MB" >
  5016. </productMenu>
  5017. <productID id="5530"
  5018. />
  5019. <productGroupable type="0"
  5020. />
  5021. </product>
  5022. <product id="10R"
  5023. name="10R"
  5024. series="10"
  5025. latestVersion="2.1.1"
  5026. show = "1" >
  5027. <productMenu id="protocol"
  5028. type="0">
  5029. </productMenu>
  5030. <productMenu id="sip"
  5031. type="1" >
  5032. <productMenuType version="1.0.2"
  5033. type="0"
  5034. />
  5035. </productMenu>
  5036. <productMenu id="bluetoothIntercom"
  5037. type="1" >
  5038. <productMenuType version="1.0.2"
  5039. type="0"
  5040. />
  5041. </productMenu>
  5042. <productMenu id="phone"
  5043. type="2" >
  5044. </productMenu>
  5045. <productMenu id="fmradio"
  5046. type="3" >
  5047. </productMenu>
  5048. <productMenu id="deviceSetting"
  5049. type="1"
  5050. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  5051. <productMenuURL version="1.4"
  5052. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0103.xml"
  5053. />
  5054. <productMenuURL version="1.2.1"
  5055. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0101.xml"
  5056. />
  5057. <productMenuURL version="1.0.2"
  5058. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0100_1.xml"
  5059. />
  5060. <productMenuURL version="1.0"
  5061. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R.xml"
  5062. />
  5063. </productMenu>
  5064. <productMenu id="quickGuide"
  5065. type="1"
  5066. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10R_no_HR_1.4.0_en_221006.pdf"
  5067. size="400KB" >
  5068. </productMenu>
  5069. <productMenu id="userGuide"
  5070. type="1"
  5071. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10R_no_HR_2.2.0_en_221006.pdf"
  5072. size="2.75MB" >
  5073. </productMenu>
  5074. <productID id="5520"
  5075. />
  5076. <productGroupable type="0"
  5077. />
  5078. </product>
  5079. <product id="10C_EVO"
  5080. name="10C EVO"
  5081. series="10"
  5082. latestVersion="1.7"
  5083. show = "1" >
  5084. <productMenu id="protocol"
  5085. type="0">
  5086. </productMenu>
  5087. <productMenu id="sip"
  5088. type="1" >
  5089. </productMenu>
  5090. <productMenu id="bluetoothIntercom"
  5091. type="1" >
  5092. </productMenu>
  5093. <productMenu id="phone"
  5094. type="2" >
  5095. </productMenu>
  5096. <productMenu id="fmradio"
  5097. type="3" >
  5098. </productMenu>
  5099. <productMenu id="deviceSetting"
  5100. type="1"
  5101. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_EVO_v0105fm.xml" >
  5102. <productMenuURL version="1.3.1"
  5103. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  5104. />
  5105. </productMenu>
  5106. <productMenu id="quickGuide"
  5107. type="1"
  5108. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10C_EVO_1.3.0_en_221020.pdf"
  5109. size="1.32MB" >
  5110. </productMenu>
  5111. <productMenu id="userGuide"
  5112. type="1"
  5113. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10C_EVO_1.4.0_en_221020.pdf"
  5114. size="1.68MB" >
  5115. </productMenu>
  5116. <productID id="5570"
  5117. />
  5118. <productGroupable type="0"
  5119. />
  5120. </product>
  5121. <product id="10C_Pro"
  5122. name="10C Pro"
  5123. series="10"
  5124. latestVersion="2.7.1"
  5125. show = "1" >
  5126. <productMenu id="protocol"
  5127. type="0">
  5128. </productMenu>
  5129. <productMenu id="sip"
  5130. type="1" >
  5131. </productMenu>
  5132. <productMenu id="bluetoothIntercom"
  5133. type="1" >
  5134. </productMenu>
  5135. <productMenu id="phone"
  5136. type="2" >
  5137. </productMenu>
  5138. <productMenu id="fmradio"
  5139. type="3" >
  5140. </productMenu>
  5141. <productMenu id="deviceSetting"
  5142. type="1"
  5143. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0205.xml" >
  5144. <productMenuURL version="2.5.1"
  5145. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  5146. />
  5147. <productMenuURL version="1.0"
  5148. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro.xml"
  5149. />
  5150. </productMenu>
  5151. <productMenu id="quickGuide"
  5152. type="1"
  5153. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_Pro_02.pdf"
  5154. size="651KB" >
  5155. </productMenu>
  5156. <productMenu id="userGuide"
  5157. type="1"
  5158. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_Pro_v2.1_01.pdf"
  5159. size="2.34MB" >
  5160. </productMenu>
  5161. <productID id="5580"
  5162. />
  5163. <productGroupable type="0"
  5164. />
  5165. </product>
  5166. <product id="10C"
  5167. name="10C"
  5168. series="10"
  5169. latestVersion="3.0.4"
  5170. show = "1" >
  5171. <productMenu id="protocol"
  5172. type="0">
  5173. </productMenu>
  5174. <productMenu id="sip"
  5175. type="1" >
  5176. <productMenuType version="1.0.4"
  5177. type="0"
  5178. />
  5179. </productMenu>
  5180. <productMenu id="bluetoothIntercom"
  5181. type="1" >
  5182. <productMenuType version="1.0.4"
  5183. type="0"
  5184. />
  5185. </productMenu>
  5186. <productMenu id="phone"
  5187. type="2" >
  5188. </productMenu>
  5189. <productMenu id="fmradio"
  5190. type="3" >
  5191. </productMenu>
  5192. <productMenu id="deviceSetting"
  5193. type="1"
  5194. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0300_2.xml" >
  5195. <productMenuURL version="2.3"
  5196. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0202.xml"
  5197. />
  5198. <productMenuURL version="2.1.1"
  5199. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0200.xml"
  5200. />
  5201. <productMenuURL version="1.0.4"
  5202. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0100_3.xml"
  5203. />
  5204. <productMenuURL version="1.0.2"
  5205. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C.xml"
  5206. />
  5207. </productMenu>
  5208. <productMenu id="quickGuide"
  5209. type="1"
  5210. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_04.pdf"
  5211. size="935KB" >
  5212. </productMenu>
  5213. <productMenu id="userGuide"
  5214. type="1"
  5215. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_v3.0_01.pdf"
  5216. size="2.82MB" >
  5217. </productMenu>
  5218. <productID id="5510"
  5219. />
  5220. <productGroupable type="0"
  5221. />
  5222. </product>
  5223. <product id="10U_GT_AIR"
  5224. name="10U GT-Air"
  5225. series="10"
  5226. latestVersion="2.0.4"
  5227. show = "1" >
  5228. <productMenu id="protocol"
  5229. type="0">
  5230. </productMenu>
  5231. <productMenu id="sip"
  5232. type="1" >
  5233. <productMenuType version="1.0.2"
  5234. type="0"
  5235. />
  5236. </productMenu>
  5237. <productMenu id="bluetoothIntercom"
  5238. type="1" >
  5239. <productMenuType version="1.0.2"
  5240. type="0"
  5241. />
  5242. </productMenu>
  5243. <productMenu id="phone"
  5244. type="2" >
  5245. </productMenu>
  5246. <productMenu id="fmradio"
  5247. type="3" >
  5248. </productMenu>
  5249. <productMenu id="deviceSetting"
  5250. type="1"
  5251. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  5252. <productMenuURL version="1.3.2"
  5253. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  5254. />
  5255. <productMenuURL version="1.0.2"
  5256. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  5257. />
  5258. </productMenu>
  5259. <productMenu id="quickGuide"
  5260. type="1"
  5261. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_GT-Air_04.pdf"
  5262. size="685KB" >
  5263. </productMenu>
  5264. <productMenu id="userGuide"
  5265. type="1"
  5266. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  5267. size="684KB" >
  5268. </productMenu>
  5269. <productMenu id="connectGuide"
  5270. type="1"
  5271. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  5272. size="1.12MB" >
  5273. </productMenu>
  5274. <productID id="5610"
  5275. />
  5276. <productGroupable type="0"
  5277. />
  5278. </product>
  5279. <product id="10U_NEOTEC"
  5280. name="10U Neotec"
  5281. series="10"
  5282. latestVersion="2.0.4"
  5283. show = "1" >
  5284. <productMenu id="protocol"
  5285. type="0">
  5286. </productMenu>
  5287. <productMenu id="sip"
  5288. type="1" >
  5289. <productMenuType version="1.0.2"
  5290. type="0"
  5291. />
  5292. </productMenu>
  5293. <productMenu id="bluetoothIntercom"
  5294. type="1" >
  5295. <productMenuType version="1.0.2"
  5296. type="0"
  5297. />
  5298. </productMenu>
  5299. <productMenu id="phone"
  5300. type="2" >
  5301. </productMenu>
  5302. <productMenu id="fmradio"
  5303. type="3" >
  5304. </productMenu>
  5305. <productMenu id="deviceSetting"
  5306. type="1"
  5307. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  5308. <productMenuURL version="1.3.2"
  5309. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  5310. />
  5311. <productMenuURL version="1.0.2"
  5312. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  5313. />
  5314. </productMenu>
  5315. <productMenu id="quickGuide"
  5316. type="1"
  5317. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_Neotec_04.pdf"
  5318. size="689KB" >
  5319. </productMenu>
  5320. <productMenu id="userGuide"
  5321. type="1"
  5322. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  5323. size="684KB" >
  5324. </productMenu>
  5325. <productMenu id="connectGuide"
  5326. type="1"
  5327. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  5328. size="1.12MB" >
  5329. </productMenu>
  5330. <productID id="5611"
  5331. />
  5332. <productGroupable type="0"
  5333. />
  5334. </product>
  5335. <product id="10U_J_CRUISE"
  5336. name="10U J-Cruise"
  5337. series="10"
  5338. latestVersion="2.0.4"
  5339. show = "1" >
  5340. <productMenu id="protocol"
  5341. type="0">
  5342. </productMenu>
  5343. <productMenu id="sip"
  5344. type="1" >
  5345. <productMenuType version="1.0.2"
  5346. type="0"
  5347. />
  5348. </productMenu>
  5349. <productMenu id="bluetoothIntercom"
  5350. type="1" >
  5351. <productMenuType version="1.0.2"
  5352. type="0"
  5353. />
  5354. </productMenu>
  5355. <productMenu id="phone"
  5356. type="2" >
  5357. </productMenu>
  5358. <productMenu id="fmradio"
  5359. type="3" >
  5360. </productMenu>
  5361. <productMenu id="deviceSetting"
  5362. type="1"
  5363. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  5364. <productMenuURL version="1.3.2"
  5365. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  5366. />
  5367. <productMenuURL version="1.0.2"
  5368. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  5369. />
  5370. </productMenu>
  5371. <productMenu id="quickGuide"
  5372. type="1"
  5373. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_J-Cruise_04.pdf"
  5374. size="686KB" >
  5375. </productMenu>
  5376. <productMenu id="userGuide"
  5377. type="1"
  5378. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  5379. size="684KB" >
  5380. </productMenu>
  5381. <productMenu id="connectGuide"
  5382. type="1"
  5383. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  5384. size="1.12MB" >
  5385. </productMenu>
  5386. <productID id="5612"
  5387. />
  5388. <productGroupable type="0"
  5389. />
  5390. </product>
  5391. <product id="10U_C3"
  5392. name="10U C3/C3Pro"
  5393. series="10"
  5394. latestVersion="2.0.4"
  5395. show = "1" >
  5396. <productMenu id="protocol"
  5397. type="0">
  5398. </productMenu>
  5399. <productMenu id="sip"
  5400. type="1" >
  5401. <productMenuType version="1.0.2"
  5402. type="0"
  5403. />
  5404. </productMenu>
  5405. <productMenu id="bluetoothIntercom"
  5406. type="1" >
  5407. <productMenuType version="1.0.2"
  5408. type="0"
  5409. />
  5410. </productMenu>
  5411. <productMenu id="phone"
  5412. type="2" >
  5413. </productMenu>
  5414. <productMenu id="fmradio"
  5415. type="3" >
  5416. </productMenu>
  5417. <productMenu id="deviceSetting"
  5418. type="1"
  5419. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  5420. <productMenuURL version="1.3.2"
  5421. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  5422. />
  5423. <productMenuURL version="1.0.2"
  5424. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  5425. />
  5426. </productMenu>
  5427. <productMenu id="quickGuide"
  5428. type="1"
  5429. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Schuberth_C3_or_C3Pro_03.pdf"
  5430. size="199KB" >
  5431. </productMenu>
  5432. <productMenu id="userGuide"
  5433. type="1"
  5434. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  5435. size="684KB" >
  5436. </productMenu>
  5437. <productMenu id="connectGuide"
  5438. type="1"
  5439. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  5440. size="1.12MB" >
  5441. </productMenu>
  5442. <productID id="5620"
  5443. />
  5444. <productGroupable type="0"
  5445. />
  5446. </product>
  5447. <product id="10U_ARAI"
  5448. name="10U Arai"
  5449. series="10"
  5450. latestVersion="2.0.4"
  5451. show = "1" >
  5452. <productMenu id="protocol"
  5453. type="0">
  5454. </productMenu>
  5455. <productMenu id="sip"
  5456. type="1" >
  5457. <productMenuType version="1.0.2"
  5458. type="0"
  5459. />
  5460. </productMenu>
  5461. <productMenu id="bluetoothIntercom"
  5462. type="1" >
  5463. <productMenuType version="1.0.2"
  5464. type="0"
  5465. />
  5466. </productMenu>
  5467. <productMenu id="phone"
  5468. type="2" >
  5469. </productMenu>
  5470. <productMenu id="fmradio"
  5471. type="3" >
  5472. </productMenu>
  5473. <productMenu id="deviceSetting"
  5474. type="1"
  5475. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  5476. <productMenuURL version="1.3.2"
  5477. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  5478. />
  5479. <productMenuURL version="1.0.2"
  5480. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  5481. />
  5482. </productMenu>
  5483. <productMenu id="quickGuide"
  5484. type="1"
  5485. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10U_for_Arai(RC4)_2.1.0_en_221020.pdf"
  5486. size="689KB" >
  5487. </productMenu>
  5488. <productMenu id="userGuide"
  5489. type="1"
  5490. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  5491. size="684KB" >
  5492. </productMenu>
  5493. <productMenu id="connectGuide"
  5494. type="1"
  5495. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  5496. size="1.12MB" >
  5497. </productMenu>
  5498. <productID id="5621"
  5499. />
  5500. <productGroupable type="0"
  5501. />
  5502. </product>
  5503. <product id="10Upad"
  5504. name="10Upad"
  5505. series="10"
  5506. latestVersion="2.0.3"
  5507. show = "1" >
  5508. <productMenu id="protocol"
  5509. type="0">
  5510. </productMenu>
  5511. <productMenu id="sip"
  5512. type="1" >
  5513. </productMenu>
  5514. <productMenu id="bluetoothIntercom"
  5515. type="1" >
  5516. </productMenu>
  5517. <productMenu id="phone"
  5518. type="2" >
  5519. </productMenu>
  5520. <productMenu id="fmradio"
  5521. type="3" >
  5522. </productMenu>
  5523. <productMenu id="deviceSetting"
  5524. type="1"
  5525. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad_v0200.xml" >
  5526. <productMenuURL version="1.0.3"
  5527. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad.xml"
  5528. />
  5529. </productMenu>
  5530. <productMenu id="quickGuide"
  5531. type="1"
  5532. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10Upad_03.pdf"
  5533. size="615KB" >
  5534. </productMenu>
  5535. <productMenu id="userGuide"
  5536. type="1"
  5537. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10Upad_v2.0_01.pdf"
  5538. size="0.99MB" >
  5539. </productMenu>
  5540. <productID id="6210"
  5541. />
  5542. <productGroupable type="0"
  5543. />
  5544. </product>
  5545. <product id="5S"
  5546. name="5S"
  5547. series="5"
  5548. latestVersion="2.2.1"
  5549. show = "1" >
  5550. <productMenu id="protocol"
  5551. type="3" >
  5552. </productMenu>
  5553. <productMenu id="sip"
  5554. type="1" >
  5555. </productMenu>
  5556. <productMenu id="bluetoothIntercom"
  5557. type="1" >
  5558. </productMenu>
  5559. <productMenu id="phone"
  5560. type="1" >
  5561. </productMenu>
  5562. <productMenu id="fmradio"
  5563. type="0" >
  5564. </productMenu>
  5565. <productMenu id="deviceSetting"
  5566. type="1"
  5567. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  5568. </productMenu>
  5569. <productMenu id="quickGuide"
  5570. type="0"
  5571. url=""
  5572. size="934KB" >
  5573. </productMenu>
  5574. <productMenu id="userGuide"
  5575. type="1"
  5576. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_2.3.0_en_250114.pdf"
  5577. size="1.14MB" >
  5578. </productMenu>
  5579. <productID id="5590"
  5580. />
  5581. <productGroupable type="0"
  5582. />
  5583. </product>
  5584. <product id="5S"
  5585. name="5S"
  5586. series="5"
  5587. latestVersion="1.2"
  5588. show = "-1" >
  5589. <productMenu id="protocol"
  5590. type="0">
  5591. </productMenu>
  5592. <productMenu id="sip"
  5593. type="1" >
  5594. </productMenu>
  5595. <productMenu id="bluetoothIntercom"
  5596. type="1" >
  5597. </productMenu>
  5598. <productMenu id="phone"
  5599. type="2" >
  5600. </productMenu>
  5601. <productMenu id="fmradio"
  5602. type="0" >
  5603. </productMenu>
  5604. <productMenu id="deviceSetting"
  5605. type="1"
  5606. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_fm_01.xml" >
  5607. </productMenu>
  5608. <productMenu id="quickGuide"
  5609. type="0"
  5610. url=""
  5611. size="970KB" >
  5612. </productMenu>
  5613. <productMenu id="userGuide"
  5614. type="1"
  5615. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_1.3.0_en_250114.pdf"
  5616. size="1.26MB" >
  5617. </productMenu>
  5618. <productID id="5534"
  5619. />
  5620. <productGroupable type="0"
  5621. />
  5622. </product>
  5623. <product id="5S"
  5624. name="5S"
  5625. series="5"
  5626. latestVersion="3.0.1"
  5627. show = "-1" >
  5628. <productMenu id="protocol"
  5629. type="0">
  5630. </productMenu>
  5631. <productMenu id="sip"
  5632. type="1" >
  5633. </productMenu>
  5634. <productMenu id="bluetoothIntercom"
  5635. type="1" >
  5636. </productMenu>
  5637. <productMenu id="phone"
  5638. type="2" >
  5639. </productMenu>
  5640. <productMenu id="fmradio"
  5641. type="0" >
  5642. </productMenu>
  5643. <productMenu id="deviceSetting"
  5644. type="1"
  5645. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_v30.xml" >
  5646. </productMenu>
  5647. <productMenu id="quickGuide"
  5648. type="0"
  5649. url=""
  5650. size="970KB" >
  5651. </productMenu>
  5652. <productMenu id="userGuide"
  5653. type="1"
  5654. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_3.1.0_en_250114.pdf"
  5655. size="1.26MB" >
  5656. </productMenu>
  5657. <productID id="5538"
  5658. />
  5659. <productGroupable type="0"
  5660. />
  5661. </product>
  5662. <product id="3SPLUS"
  5663. name="3S PLUS"
  5664. series="3"
  5665. latestVersion="2.2"
  5666. show = "1" >
  5667. <productMenu id="protocol"
  5668. type="3" >
  5669. </productMenu>
  5670. <productMenu id="sip"
  5671. type="1" >
  5672. </productMenu>
  5673. <productMenu id="bluetoothIntercom"
  5674. type="1" >
  5675. </productMenu>
  5676. <productMenu id="deviceSetting"
  5677. type="1"
  5678. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S_02.xml" >
  5679. <productMenuURL version="2.2.1"
  5680. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml"
  5681. />
  5682. </productMenu>
  5683. <productMenu id="quickGuide"
  5684. type="1"
  5685. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  5686. size="344KB" >
  5687. </productMenu>
  5688. <productMenu id="userGuide"
  5689. type="1"
  5690. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_2.4.0_en_241224.pdf"
  5691. size="1.14MB" >
  5692. </productMenu>
  5693. <productMenu id="connectGuide"
  5694. type="1"
  5695. url="https://api.sena.com/support/ConnectGuide/plusminus_plus5_init.json"
  5696. size="1.12MB" >
  5697. </productMenu>
  5698. <productID id="4023"
  5699. />
  5700. <productGroupable type="0"
  5701. />
  5702. </product>
  5703. <product id="3SPLUS"
  5704. name="3S PLUS"
  5705. series="3"
  5706. latestVersion="1.1"
  5707. show = "-1" >
  5708. <productMenu id="protocol"
  5709. type="0">
  5710. </productMenu>
  5711. <productMenu id="sip"
  5712. type="1" >
  5713. </productMenu>
  5714. <productMenu id="bluetoothIntercom"
  5715. type="1" >
  5716. </productMenu>
  5717. <productMenu id="deviceSetting"
  5718. type="1"
  5719. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  5720. </productMenu>
  5721. <productMenu id="quickGuide"
  5722. type="1"
  5723. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  5724. size="842KB" >
  5725. </productMenu>
  5726. <productMenu id="userGuide"
  5727. type="1"
  5728. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_1.2.0_en_241226.pdf"
  5729. size="1.02MB" >
  5730. </productMenu>
  5731. <productID id="6320"
  5732. />
  5733. <productGroupable type="0"
  5734. />
  5735. </product>
  5736. <product id="iCon"
  5737. name="iCon"
  5738. series="50"
  5739. latestVersion="1.0.1"
  5740. show = "0" >
  5741. <productMenu id="protocol"
  5742. type="2" >
  5743. </productMenu>
  5744. <productMenu id="alexa"
  5745. type="0" >
  5746. </productMenu>
  5747. <productMenu id="wa"
  5748. type="0" >
  5749. </productMenu>
  5750. <productMenu id="sip"
  5751. type="1" >
  5752. </productMenu>
  5753. <productMenu id="led"
  5754. type="3" >
  5755. </productMenu>
  5756. <productMenu id="meshIntercom"
  5757. type="20" >
  5758. </productMenu>
  5759. <productMenu id="meshIntercom+"
  5760. type="3"
  5761. url="0" >
  5762. <productMenuType version="1.0.9"
  5763. type="2"
  5764. />
  5765. </productMenu>
  5766. <productMenu id="bluetoothIntercom"
  5767. type="1" >
  5768. </productMenu>
  5769. <productMenu id="phone"
  5770. type="1" >
  5771. </productMenu>
  5772. <productMenu id="music"
  5773. type="1" >
  5774. </productMenu>
  5775. <productMenu id="fmradio"
  5776. type="1" >
  5777. </productMenu>
  5778. <productMenu id="deviceSetting"
  5779. type="1"
  5780. url="https://api.sena.com/support/SenaNeoApp/ICON/NS_ICON.xml" >
  5781. <productMenuURL version="1.0.9"
  5782. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  5783. />
  5784. </productMenu>
  5785. <productMenu id="quickGuide"
  5786. type="1"
  5787. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_HelmLink_1.0.0_en_220830.pdf"
  5788. size="344KB" >
  5789. </productMenu>
  5790. <productMenu id="userGuide"
  5791. type="1"
  5792. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_HelmLink_1.0.0_en_220830.pdf"
  5793. size="3.41MB" >
  5794. </productMenu>
  5795. <productMenu id="volume"
  5796. type="11" >
  5797. </productMenu>
  5798. <productMenu id="battery"
  5799. type="1" >
  5800. </productMenu>
  5801. <productID id="3900"
  5802. />
  5803. <productGroupable type="0"
  5804. />
  5805. </product>
  5806. <product id="HD50S"
  5807. name="H-D Audio 50S"
  5808. series="50"
  5809. latestVersion="1.0.1"
  5810. show = "-1" >
  5811. <productMenu id="protocol"
  5812. type="2" >
  5813. </productMenu>
  5814. <productMenu id="alexa"
  5815. type="0" >
  5816. </productMenu>
  5817. <productMenu id="ota"
  5818. type="0"
  5819. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  5820. size="1150234" >
  5821. </productMenu>
  5822. <productMenu id="wa"
  5823. type="1" >
  5824. </productMenu>
  5825. <productMenu id="sip"
  5826. type="1" >
  5827. </productMenu>
  5828. <productMenu id="meshIntercom"
  5829. type="20" >
  5830. </productMenu>
  5831. <productMenu id="bluetoothIntercom"
  5832. type="1" >
  5833. </productMenu>
  5834. <productMenu id="phone"
  5835. type="1" >
  5836. </productMenu>
  5837. <productMenu id="music"
  5838. type="1" >
  5839. </productMenu>
  5840. <productMenu id="fmradio"
  5841. type="1" >
  5842. </productMenu>
  5843. <productMenu id="deviceSetting"
  5844. type="1"
  5845. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml" >
  5846. </productMenu>
  5847. <productMenu id="quickGuide"
  5848. type="1"
  5849. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Harley-Davidson_Audio_50S_1.1.0_en_220509.pdf"
  5850. size="934KB" >
  5851. </productMenu>
  5852. <productMenu id="userGuide"
  5853. type="1"
  5854. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Harley-Davidson_Audio_50S_1.1.0_en_220509.pdf"
  5855. size="1.14MB" >
  5856. </productMenu>
  5857. <productMenu id="volume"
  5858. type="11" >
  5859. </productMenu>
  5860. <productMenu id="battery"
  5861. type="1" >
  5862. </productMenu>
  5863. <productID id="3156"
  5864. />
  5865. <productGroupable type="0"
  5866. />
  5867. </product>
  5868. <product id="HD50S"
  5869. name="H-D Audio 50S"
  5870. series="50"
  5871. latestVersion="2.0.2"
  5872. show = "0" >
  5873. <productMenu id="protocol"
  5874. type="2" >
  5875. </productMenu>
  5876. <productMenu id="alexa"
  5877. type="0" >
  5878. </productMenu>
  5879. <productMenu id="ota"
  5880. type="0"
  5881. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  5882. size="1150234" >
  5883. </productMenu>
  5884. <productMenu id="wa"
  5885. type="1" >
  5886. </productMenu>
  5887. <productMenu id="sip"
  5888. type="1" >
  5889. </productMenu>
  5890. <productMenu id="meshIntercom"
  5891. type="20" >
  5892. </productMenu>
  5893. <productMenu id="bluetoothIntercom"
  5894. type="1" >
  5895. </productMenu>
  5896. <productMenu id="phone"
  5897. type="1" >
  5898. </productMenu>
  5899. <productMenu id="music"
  5900. type="1" >
  5901. </productMenu>
  5902. <productMenu id="fmradio"
  5903. type="1" >
  5904. </productMenu>
  5905. <productMenu id="deviceSetting"
  5906. type="1"
  5907. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml" >
  5908. </productMenu>
  5909. <productMenu id="quickGuide"
  5910. type="1"
  5911. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Harley-Davidson_Audio_50S_2.0.0_en_220701.pdf"
  5912. size="934KB" >
  5913. </productMenu>
  5914. <productMenu id="userGuide"
  5915. type="1"
  5916. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Harley-Davidson_Audio_50S_2.0.0_en_220701.pdf"
  5917. size="1.14MB" >
  5918. </productMenu>
  5919. <productMenu id="volume"
  5920. type="11" >
  5921. </productMenu>
  5922. <productMenu id="battery"
  5923. type="1" >
  5924. </productMenu>
  5925. <productID id="3213"
  5926. />
  5927. <productGroupable type="0"
  5928. />
  5929. </product>
  5930. <product id="HD50C"
  5931. name="H-D Audio 50C"
  5932. series="50"
  5933. latestVersion="1.0.1"
  5934. show = "0" >
  5935. <productMenu id="protocol"
  5936. type="2" >
  5937. </productMenu>
  5938. <productMenu id="ota"
  5939. type="0" >
  5940. </productMenu>
  5941. <productMenu id="wa"
  5942. type="1" >
  5943. </productMenu>
  5944. <productMenu id="sip"
  5945. type="1" >
  5946. </productMenu>
  5947. <productMenu id="meshIntercom"
  5948. type="20" >
  5949. </productMenu>
  5950. <productMenu id="bluetoothIntercom"
  5951. type="1" >
  5952. </productMenu>
  5953. <productMenu id="phone"
  5954. type="1" >
  5955. </productMenu>
  5956. <productMenu id="music"
  5957. type="1" >
  5958. </productMenu>
  5959. <productMenu id="fmradio"
  5960. type="1" >
  5961. </productMenu>
  5962. <productMenu id="deviceSetting"
  5963. type="1"
  5964. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml" >
  5965. </productMenu>
  5966. <productMenu id="quickGuide"
  5967. type="1"
  5968. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Harley-Davidson_Audio_50C_1.1.0_en_220329.pdf"
  5969. size="344KB" >
  5970. </productMenu>
  5971. <productMenu id="userGuide"
  5972. type="1"
  5973. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Harley-Davidson_Audio_50C_1.1.0_en_220329.pdf"
  5974. size="3.41MB" >
  5975. </productMenu>
  5976. <productMenu id="volume"
  5977. type="11" >
  5978. </productMenu>
  5979. <productMenu id="battery"
  5980. type="1" >
  5981. </productMenu>
  5982. <productID id="3240"
  5983. />
  5984. <productGroupable type="0"
  5985. />
  5986. </product>
  5987. <product id="HD50S"
  5988. name="FURY N04"
  5989. series="Helmet"
  5990. latestVersion="1.0"
  5991. show = "0" >
  5992. <productMenu id="protocol"
  5993. type="2" >
  5994. </productMenu>
  5995. <productMenu id="alexa"
  5996. type="0" >
  5997. </productMenu>
  5998. <productMenu id="ota"
  5999. type="0" >
  6000. </productMenu>
  6001. <productMenu id="wa"
  6002. type="0" >
  6003. </productMenu>
  6004. <productMenu id="meshIntercom"
  6005. type="20" >
  6006. </productMenu>
  6007. <productMenu id="meshIntercom+"
  6008. type="3"
  6009. url="0" >
  6010. <productMenuType version="1.0.9"
  6011. type="2"
  6012. />
  6013. </productMenu>
  6014. <productMenu id="phone"
  6015. type="1" >
  6016. </productMenu>
  6017. <productMenu id="music"
  6018. type="1" >
  6019. </productMenu>
  6020. <productMenu id="fmradio"
  6021. type="1" >
  6022. </productMenu>
  6023. <productMenu id="deviceSetting"
  6024. type="1"
  6025. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_02.xml" >
  6026. <productMenuURL version="1.0.9"
  6027. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_01.xml"
  6028. />
  6029. </productMenu>
  6030. <productMenu id="quickGuide"
  6031. type="1"
  6032. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_FURY_N04_1.0.1_en_230712.pdf"
  6033. size="1.12MB" >
  6034. </productMenu>
  6035. <productMenu id="userGuide"
  6036. type="1"
  6037. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_FURY_N04_1.0.0_en_220907.pdf"
  6038. size="2.0MB" >
  6039. </productMenu>
  6040. <productMenu id="volume"
  6041. type="13" >
  6042. </productMenu>
  6043. <productMenu id="battery"
  6044. type="1" >
  6045. </productMenu>
  6046. <productID id="5553"
  6047. />
  6048. <productGroupable type="0"
  6049. />
  6050. </product>
  6051. <product id="XCOM3Pro"
  6052. name="X-COM3 Pro"
  6053. series="50"
  6054. latestVersion="1.1"
  6055. show = "0" >
  6056. <productMenu id="protocol"
  6057. type="2" >
  6058. </productMenu>
  6059. <productMenu id="alexa"
  6060. type="0" >
  6061. </productMenu>
  6062. <productMenu id="ota"
  6063. type="0" >
  6064. </productMenu>
  6065. <productMenu id="wa"
  6066. type="0" >
  6067. </productMenu>
  6068. <productMenu id="sip"
  6069. type="1" >
  6070. </productMenu>
  6071. <productMenu id="meshIntercom"
  6072. type="30" >
  6073. </productMenu>
  6074. <productMenu id="meshIntercom+"
  6075. type="3"
  6076. url="2" >
  6077. <productMenuType version="1.1"
  6078. type="2"
  6079. />
  6080. </productMenu>
  6081. <productMenu id="waveIntercom"
  6082. type="1" >
  6083. <productMenuType version="1.1"
  6084. type="0"
  6085. />
  6086. </productMenu>
  6087. <productMenu id="bluetoothIntercom"
  6088. type="1" >
  6089. </productMenu>
  6090. <productMenu id="phone"
  6091. type="1" >
  6092. </productMenu>
  6093. <productMenu id="music"
  6094. type="1" >
  6095. </productMenu>
  6096. <productMenu id="fmradio"
  6097. type="1" >
  6098. </productMenu>
  6099. <productMenu id="deviceSetting"
  6100. type="1"
  6101. url="https://api.sena.com/support/SenaNeoApp/XCOM3PRO/NS_XCOM3PRO_06.xml" >
  6102. <productMenuURL version="1.1"
  6103. url="https://api.sena.com/support/SenaNeoApp/XCOM3PRO/NS_XCOM3PRO_03.xml"
  6104. />
  6105. </productMenu>
  6106. <productMenu id="quickGuide"
  6107. type="0"
  6108. url=""
  6109. size="344KB" >
  6110. </productMenu>
  6111. <productMenu id="userGuide"
  6112. type="1"
  6113. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_X-Com_3_Pro_1.1.0_en_240819.pdf"
  6114. size="3.41MB" >
  6115. </productMenu>
  6116. <productMenu id="volume"
  6117. type="11" >
  6118. </productMenu>
  6119. <productMenu id="battery"
  6120. type="1" >
  6121. </productMenu>
  6122. <productID id="321A"
  6123. />
  6124. <productGroupable type="0"
  6125. />
  6126. </product>
  6127. <product id="XCOM3"
  6128. name="X-COM3"
  6129. series="20"
  6130. latestVersion="1.0"
  6131. show = "0" >
  6132. <productMenu id="protocol"
  6133. type="2" >
  6134. </productMenu>
  6135. <productMenu id="sip"
  6136. type="1" >
  6137. </productMenu>
  6138. <productMenu id="bluetoothIntercom"
  6139. type="1" >
  6140. </productMenu>
  6141. <productMenu id="phone"
  6142. type="1" >
  6143. </productMenu>
  6144. <productMenu id="music"
  6145. type="1" >
  6146. </productMenu>
  6147. <productMenu id="fmradio"
  6148. type="1" >
  6149. </productMenu>
  6150. <productMenu id="deviceSetting"
  6151. type="1"
  6152. url="https://api.sena.com/support/SenaNeoApp/XCOM3/NS_QCCXCOM3.xml" >
  6153. </productMenu>
  6154. <productMenu id="quickGuide"
  6155. type="0"
  6156. url=""
  6157. size="934KB" >
  6158. </productMenu>
  6159. <productMenu id="userGuide"
  6160. type="1"
  6161. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_X-Com_3_1.0.0_en_231229.pdf"
  6162. size="1.14MB" >
  6163. </productMenu>
  6164. <productMenu id="volume"
  6165. type="15" >
  6166. </productMenu>
  6167. <productID id="3410"
  6168. />
  6169. <productGroupable type="0"
  6170. />
  6171. </product>
  6172. <product id="X-COM2"
  6173. name="X-COM2"
  6174. series="20"
  6175. latestVersion="1.0.5"
  6176. show = "0" >
  6177. <productMenu id="protocol"
  6178. type="0">
  6179. </productMenu>
  6180. <productMenu id="sip"
  6181. type="1" >
  6182. </productMenu>
  6183. <productMenu id="bluetoothIntercom"
  6184. type="1" >
  6185. </productMenu>
  6186. <productMenu id="intercomSetting"
  6187. type="1" >
  6188. </productMenu>
  6189. <productMenu id="phone"
  6190. type="2" >
  6191. </productMenu>
  6192. <productMenu id="fmradio"
  6193. type="3" >
  6194. </productMenu>
  6195. <productMenu id="deviceSetting"
  6196. type="1"
  6197. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  6198. </productMenu>
  6199. <productMenu id="quickGuide"
  6200. type="1"
  6201. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Nexx_X-COM2_02.pdf"
  6202. size="796KB" >
  6203. </productMenu>
  6204. <productMenu id="userGuide"
  6205. type="1"
  6206. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Nexx_X-COM2_v1.0_02.pdf"
  6207. size="1.90MB" >
  6208. </productMenu>
  6209. <productID id="2030"
  6210. />
  6211. <productGroupable type="1"
  6212. />
  6213. </product>
  6214. <product id="AVAABC"
  6215. name="AVA ABC"
  6216. series="SPIDER"
  6217. latestVersion="1.0"
  6218. show = "0" >
  6219. <productMenu id="protocol"
  6220. type="2" >
  6221. </productMenu>
  6222. <productMenu id="alexa"
  6223. type="0" >
  6224. </productMenu>
  6225. <productMenu id="ota"
  6226. type="0" >
  6227. </productMenu>
  6228. <productMenu id="wa"
  6229. type="0" >
  6230. </productMenu>
  6231. <productMenu id="meshIntercom"
  6232. type="20" >
  6233. </productMenu>
  6234. <productMenu id="phone"
  6235. type="1" >
  6236. </productMenu>
  6237. <productMenu id="music"
  6238. type="1" >
  6239. </productMenu>
  6240. <productMenu id="musicSharing"
  6241. type="0" >
  6242. </productMenu>
  6243. <productMenu id="deviceSetting"
  6244. type="1"
  6245. url="https://api.sena.com/support/SenaNeoApp/AVA/NS_AVA_AIROHA.xml" >
  6246. </productMenu>
  6247. <productMenu id="quickGuide"
  6248. type="1"
  6249. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ABC_1.0.0_en_230315.pdf"
  6250. size="1.12MB" >
  6251. </productMenu>
  6252. <productMenu id="userGuide"
  6253. type="1"
  6254. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ABC_1.0.0_en_230315.pdf"
  6255. size="2.0MB" >
  6256. </productMenu>
  6257. <productMenu id="volume"
  6258. type="12" >
  6259. </productMenu>
  6260. <productMenu id="battery"
  6261. type="1" >
  6262. </productMenu>
  6263. <productID id="6808"
  6264. />
  6265. <productGroupable type="0"
  6266. />
  6267. </product>
  6268. <product id="Triumph_50S"
  6269. name="Triumph 50S"
  6270. series="50"
  6271. latestVersion="1.5"
  6272. show = "0" >
  6273. <productMenu id="protocol"
  6274. type="2" >
  6275. </productMenu>
  6276. <productMenu id="alexa"
  6277. type="0" >
  6278. </productMenu>
  6279. <productMenu id="ota"
  6280. type="0"
  6281. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  6282. size="1150234" >
  6283. </productMenu>
  6284. <productMenu id="wa"
  6285. type="1" >
  6286. </productMenu>
  6287. <productMenu id="sip"
  6288. type="1" >
  6289. </productMenu>
  6290. <productMenu id="meshIntercom"
  6291. type="20" >
  6292. </productMenu>
  6293. <productMenu id="bluetoothIntercom"
  6294. type="1" >
  6295. </productMenu>
  6296. <productMenu id="meshIntercom+"
  6297. type="3"
  6298. url="2" >
  6299. <productMenuType version="1.2.9"
  6300. type="2"
  6301. />
  6302. <productMenuURL version="1.2.9"
  6303. url="0"
  6304. />
  6305. </productMenu>
  6306. <productMenu id="waveIntercom"
  6307. type="1" >
  6308. <productMenuType version="1.2.9"
  6309. type="0"
  6310. />
  6311. </productMenu>
  6312. <productMenu id="phone"
  6313. type="1" >
  6314. </productMenu>
  6315. <productMenu id="music"
  6316. type="1" >
  6317. </productMenu>
  6318. <productMenu id="fmradio"
  6319. type="1" >
  6320. </productMenu>
  6321. <productMenu id="deviceSetting"
  6322. type="1"
  6323. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  6324. <productMenuURL version="1.2.9"
  6325. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  6326. />
  6327. <productMenuURL version="1.0"
  6328. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  6329. />
  6330. </productMenu>
  6331. <productMenu id="quickGuide"
  6332. type="1"
  6333. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Triumph_50S_1.3.0_en_220111.pdf"
  6334. size="934KB" >
  6335. </productMenu>
  6336. <productMenu id="userGuide"
  6337. type="1"
  6338. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Triumph_50S_1.6.0_us_250529.pdf"
  6339. size="1.14MB" >
  6340. </productMenu>
  6341. <productMenu id="volume"
  6342. type="11" >
  6343. </productMenu>
  6344. <productMenu id="battery"
  6345. type="1" >
  6346. </productMenu>
  6347. <productID id="3264"
  6348. />
  6349. <productGroupable type="0"
  6350. />
  6351. </product>
  6352. <product id="RE50S"
  6353. name="RE 50S"
  6354. series="50"
  6355. latestVersion="2.7"
  6356. show = "0" >
  6357. <productMenu id="protocol"
  6358. type="2" >
  6359. </productMenu>
  6360. <productMenu id="alexa"
  6361. type="0" >
  6362. </productMenu>
  6363. <productMenu id="ota"
  6364. type="0"
  6365. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  6366. size="1150234" >
  6367. </productMenu>
  6368. <productMenu id="wa"
  6369. type="1" >
  6370. </productMenu>
  6371. <productMenu id="sip"
  6372. type="1" >
  6373. </productMenu>
  6374. <productMenu id="meshIntercom"
  6375. type="30" >
  6376. </productMenu>
  6377. <productMenu id="meshIntercom+"
  6378. type="3"
  6379. url="2" >
  6380. <productMenuType version="2.5"
  6381. type="2"
  6382. />
  6383. </productMenu>
  6384. <productMenu id="waveIntercom"
  6385. type="1" >
  6386. <productMenuType version="2.5"
  6387. type="0"
  6388. />
  6389. </productMenu>
  6390. <productMenu id="bluetoothIntercom"
  6391. type="1" >
  6392. </productMenu>
  6393. <productMenu id="phone"
  6394. type="1" >
  6395. </productMenu>
  6396. <productMenu id="music"
  6397. type="1" >
  6398. </productMenu>
  6399. <productMenu id="fmradio"
  6400. type="1" >
  6401. </productMenu>
  6402. <productMenu id="deviceSetting"
  6403. type="1"
  6404. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  6405. <productMenuURL version="2.5"
  6406. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  6407. />
  6408. </productMenu>
  6409. <productMenu id="quickGuide"
  6410. type="1"
  6411. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_RoyalEnfield_50S_2.3.0_en_240625.pdf"
  6412. size="934KB" >
  6413. </productMenu>
  6414. <productMenu id="userGuide"
  6415. type="1"
  6416. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_RoyalEnfield_50S_2.8.0_en_250522.pdf"
  6417. size="1.14MB" >
  6418. </productMenu>
  6419. <productMenu id="videoGuide"
  6420. type="0"
  6421. url=""
  6422. size="3.41MB" >
  6423. </productMenu>
  6424. <productMenu id="volume"
  6425. type="11" >
  6426. </productMenu>
  6427. <productMenu id="battery"
  6428. type="1" >
  6429. </productMenu>
  6430. <productID id="321C"
  6431. />
  6432. <productGroupable type="0"
  6433. />
  6434. </product>
  6435. <product id="BMW_HELMET_II_U1"
  6436. name="BMW HELMET II U1"
  6437. series="50"
  6438. latestVersion="1.0"
  6439. show = "0" >
  6440. <productMenu id="protocol"
  6441. type="2" >
  6442. </productMenu>
  6443. <productMenu id="alexa"
  6444. type="0" >
  6445. </productMenu>
  6446. <productMenu id="sip"
  6447. type="1" >
  6448. </productMenu>
  6449. <productMenu id="meshIntercom"
  6450. type="20" >
  6451. </productMenu>
  6452. <productMenu id="bluetoothIntercom"
  6453. type="1" >
  6454. </productMenu>
  6455. <productMenu id="bluetoothIntercom2"
  6456. type="1" >
  6457. </productMenu>
  6458. <productMenu id="phone"
  6459. type="1" >
  6460. </productMenu>
  6461. <productMenu id="music"
  6462. type="1" >
  6463. </productMenu>
  6464. <productMenu id="fmradio"
  6465. type="1" >
  6466. </productMenu>
  6467. <productMenu id="deviceSetting"
  6468. type="1"
  6469. url="https://api.sena.com/support/bmwComU1/BMW_HELMET_II_U1/NS_BMW_HELMET_II_U1.xml" >
  6470. </productMenu>
  6471. <productMenu id="quickGuide"
  6472. type="1"
  6473. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_50S_03.pdf"
  6474. size="934KB" >
  6475. </productMenu>
  6476. <productMenu id="userGuide"
  6477. type="1"
  6478. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_50S_1.2.0_en_200910.pdf"
  6479. size="1.14MB" >
  6480. </productMenu>
  6481. <productMenu id="volume"
  6482. type="11" >
  6483. </productMenu>
  6484. <productMenu id="battery"
  6485. type="1" >
  6486. </productMenu>
  6487. <productID id="3260"
  6488. />
  6489. <productGroupable type="0"
  6490. />
  6491. </product>
  6492. <product id="LSE_01"
  6493. name="LSE-01"
  6494. series="SF"
  6495. latestVersion="1.2.3"
  6496. show = "0" >
  6497. <productMenu id="protocol"
  6498. type="1"
  6499. url="3">
  6500. </productMenu>
  6501. <productMenu id="sip"
  6502. type="1" >
  6503. </productMenu>
  6504. <productMenu id="bluetoothIntercom"
  6505. type="1" >
  6506. </productMenu>
  6507. <productMenu id="phone"
  6508. type="1" >
  6509. </productMenu>
  6510. <productMenu id="music"
  6511. type="1" >
  6512. </productMenu>
  6513. <productMenu id="fmradio"
  6514. type="1" >
  6515. </productMenu>
  6516. <productMenu id="deviceSetting"
  6517. type="1"
  6518. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  6519. <productMenuURL version="1.1"
  6520. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  6521. />
  6522. <productMenuURL version="1.0"
  6523. url="https://api.sena.com/support/SenaUtility/LSE-01/DSup_LSE-01.xml"
  6524. />
  6525. </productMenu>
  6526. <productMenu id="quickGuide"
  6527. type="1"
  6528. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Louis_LSE-01_1.1.0_en_230512.pdf"
  6529. size="607KB" >
  6530. </productMenu>
  6531. <productMenu id="userGuide"
  6532. type="1"
  6533. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Louis_LSE-01_1.2.0_en_230512.pdf"
  6534. size="1.91MB" >
  6535. </productMenu>
  6536. <productMenu id="volume"
  6537. type="4" >
  6538. </productMenu>
  6539. <productID id="5416"
  6540. />
  6541. <productGroupable type="0"
  6542. />
  6543. </product>
  6544. <product id="AGV_ARK"
  6545. name="AGV ARK"
  6546. series="SF"
  6547. latestVersion="1.0.3"
  6548. show = "0" >
  6549. <productMenu id="protocol"
  6550. type="1"
  6551. url="3">
  6552. </productMenu>
  6553. <productMenu id="sip"
  6554. type="1" >
  6555. </productMenu>
  6556. <productMenu id="bluetoothIntercom"
  6557. type="1" >
  6558. </productMenu>
  6559. <productMenu id="phone"
  6560. type="1" >
  6561. </productMenu>
  6562. <productMenu id="music"
  6563. type="1" >
  6564. </productMenu>
  6565. <productMenu id="fmradio"
  6566. type="1" >
  6567. </productMenu>
  6568. <productMenu id="deviceSetting"
  6569. type="1"
  6570. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  6571. </productMenu>
  6572. <productMenu id="quickGuide"
  6573. type="1"
  6574. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ARK_1.1.0_en_230511_D00131.pdf"
  6575. size="607KB" >
  6576. </productMenu>
  6577. <productMenu id="userGuide"
  6578. type="1"
  6579. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ARK_1.1.0_en_230511.pdf"
  6580. size="1.91MB" >
  6581. </productMenu>
  6582. <productMenu id="volume"
  6583. type="4" >
  6584. </productMenu>
  6585. <productID id="5420"
  6586. />
  6587. <productGroupable type="0"
  6588. />
  6589. </product>
  6590. <product id="KLIM_KRIOS"
  6591. name="KLIM Krios"
  6592. series="10"
  6593. latestVersion="1.1.2"
  6594. show = "0" >
  6595. <productMenu id="protocol"
  6596. type="0">
  6597. </productMenu>
  6598. <productMenu id="sip"
  6599. type="1" >
  6600. </productMenu>
  6601. <productMenu id="bluetoothIntercom"
  6602. type="1" >
  6603. </productMenu>
  6604. <productMenu id="phone"
  6605. type="2" >
  6606. </productMenu>
  6607. <productMenu id="fmradio"
  6608. type="3" >
  6609. </productMenu>
  6610. <productMenu id="deviceSetting"
  6611. type="1"
  6612. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DS_KLIM_v0101.xml" >
  6613. <productMenuURL version="1.0"
  6614. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DeviceSetting_KLIM_KRIOS.xml"
  6615. />
  6616. </productMenu>
  6617. <productMenu id="quickGuide"
  6618. type="1"
  6619. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Krios_02.pdf"
  6620. size="649KB" >
  6621. </productMenu>
  6622. <productMenu id="userGuide"
  6623. type="1"
  6624. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Krios_v1.1_02.pdf"
  6625. size="1.43MB" >
  6626. </productMenu>
  6627. <productID id="5910"
  6628. />
  6629. <productGroupable type="0"
  6630. />
  6631. </product>
  6632. <product id="POLARIS_SLINGSHOT"
  6633. name="Polaris Slingshot"
  6634. series="10"
  6635. latestVersion="1.1.2"
  6636. show = "0" >
  6637. <productMenu id="protocol"
  6638. type="0">
  6639. </productMenu>
  6640. <productMenu id="sip"
  6641. type="1" >
  6642. </productMenu>
  6643. <productMenu id="bluetoothIntercom"
  6644. type="1" >
  6645. </productMenu>
  6646. <productMenu id="phone"
  6647. type="2" >
  6648. </productMenu>
  6649. <productMenu id="fmradio"
  6650. type="3" >
  6651. </productMenu>
  6652. <productMenu id="deviceSetting"
  6653. type="1"
  6654. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DS_POLARIS_v0101.xml" >
  6655. <productMenuURL version="1.0"
  6656. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DeviceSetting_POLARIS_SLINGSHOT.xml"
  6657. />
  6658. </productMenu>
  6659. <productMenu id="quickGuide"
  6660. type="1"
  6661. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Polaris_01.pdf"
  6662. size="689KB" >
  6663. </productMenu>
  6664. <productMenu id="userGuide"
  6665. type="1"
  6666. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Polaris_v1.1_01.pdf"
  6667. size="1.43MB" >
  6668. </productMenu>
  6669. <productID id="5920"
  6670. />
  6671. <productGroupable type="0"
  6672. />
  6673. </product>
  6674. <product id="DWO6"
  6675. name="SEDICI DWO6-PRO"
  6676. series="10"
  6677. latestVersion="1.0.2"
  6678. show = "0" >
  6679. <productMenu id="protocol"
  6680. type="0">
  6681. </productMenu>
  6682. <productMenu id="sip"
  6683. type="1" >
  6684. </productMenu>
  6685. <productMenu id="bluetoothIntercom"
  6686. type="1" >
  6687. </productMenu>
  6688. <productMenu id="phone"
  6689. type="2" >
  6690. </productMenu>
  6691. <productMenu id="fmradio"
  6692. type="3" >
  6693. </productMenu>
  6694. <productMenu id="deviceSetting"
  6695. type="1"
  6696. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  6697. </productMenu>
  6698. <productMenu id="quickGuide"
  6699. type="1"
  6700. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO-6_PRO_1.1.0_en_230510.pdf"
  6701. size="529KB" >
  6702. </productMenu>
  6703. <productMenu id="userGuide"
  6704. type="1"
  6705. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO-6_PRO_1.1.0_en_230510.pdf"
  6706. size="4.09MB" >
  6707. </productMenu>
  6708. <productID id="6112"
  6709. />
  6710. <productGroupable type="0"
  6711. />
  6712. </product>
  6713. <product id="DWO6A"
  6714. name="SEDICI DWO-6"
  6715. series="10"
  6716. latestVersion="1.0.2"
  6717. show = "0" >
  6718. <productMenu id="protocol"
  6719. type="0">
  6720. </productMenu>
  6721. <productMenu id="sip"
  6722. type="1" >
  6723. </productMenu>
  6724. <productMenu id="bluetoothIntercom"
  6725. type="1" >
  6726. </productMenu>
  6727. <productMenu id="phone"
  6728. type="2" >
  6729. </productMenu>
  6730. <productMenu id="fmradio"
  6731. type="3" >
  6732. </productMenu>
  6733. <productMenu id="deviceSetting"
  6734. type="1"
  6735. url="https://api.sena.com/support/SenaUtility/DWO6/DS_DWO6A.xml" >
  6736. </productMenu>
  6737. <productMenu id="quickGuide"
  6738. type="1"
  6739. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO-6_1.1.0_en_230509.pdf"
  6740. size="522KB" >
  6741. </productMenu>
  6742. <productMenu id="userGuide"
  6743. type="1"
  6744. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO-6_1.1.0_en_230504.pdf"
  6745. size="2.71MB" >
  6746. </productMenu>
  6747. <productID id="6114"
  6748. />
  6749. <productGroupable type="0"
  6750. />
  6751. </product>
  6752. <product id="3SPLUS"
  6753. name="ZILL"
  6754. series="3"
  6755. latestVersion="1.0.4"
  6756. show = "0" >
  6757. <productMenu id="protocol"
  6758. type="0">
  6759. </productMenu>
  6760. <productMenu id="sip"
  6761. type="1" >
  6762. </productMenu>
  6763. <productMenu id="bluetoothIntercom"
  6764. type="1" >
  6765. </productMenu>
  6766. <productMenu id="deviceSetting"
  6767. type="1"
  6768. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  6769. </productMenu>
  6770. <productMenu id="quickGuide"
  6771. type="1"
  6772. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  6773. size="842KB" >
  6774. </productMenu>
  6775. <productMenu id="userGuide"
  6776. type="1"
  6777. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_1.1.0_en_230623.pdf"
  6778. size="1.02MB" >
  6779. </productMenu>
  6780. <productID id="6335"
  6781. />
  6782. <productGroupable type="0"
  6783. />
  6784. </product>
  6785. <product id="HD50S"
  6786. name="Boom! Audio 30K"
  6787. series="30"
  6788. latestVersion="3.4"
  6789. show = "0" >
  6790. <productMenu id="protocol"
  6791. type="1"
  6792. url="0">
  6793. </productMenu>
  6794. <productMenu id="wa"
  6795. type="0" >
  6796. </productMenu>
  6797. <productMenu id="sip"
  6798. type="1" >
  6799. </productMenu>
  6800. <productMenu id="meshIntercom"
  6801. type="20" >
  6802. <productMenuType version="2.9.9"
  6803. type="10"
  6804. />
  6805. </productMenu>
  6806. <productMenu id="bluetoothIntercom"
  6807. type="1" >
  6808. </productMenu>
  6809. <productMenu id="phone"
  6810. type="1" >
  6811. </productMenu>
  6812. <productMenu id="music"
  6813. type="1" >
  6814. </productMenu>
  6815. <productMenu id="fmradio"
  6816. type="1" >
  6817. </productMenu>
  6818. <productMenu id="deviceSetting"
  6819. type="1"
  6820. url="https://api.sena.com/support/SenaNeoApp/30K/NS_HD30K_v0303.xml">
  6821. <productMenuURL version="3.2"
  6822. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0301.xml"
  6823. />
  6824. <productMenuURL version="3.0"
  6825. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml"
  6826. />
  6827. <productMenuURL version="2.2"
  6828. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  6829. />
  6830. </productMenu>
  6831. <productMenu id="quickGuide"
  6832. type="1"
  6833. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  6834. size="1.06MB" >
  6835. </productMenu>
  6836. <productMenu id="userGuide"
  6837. type="1"
  6838. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  6839. size="3.15MB" >
  6840. </productMenu>
  6841. <productMenu id="volume"
  6842. type="1" >
  6843. </productMenu>
  6844. <productID id="3112"
  6845. />
  6846. <productGroupable type="0"
  6847. />
  6848. </product>
  6849. <product id="HD50S"
  6850. name="Boom! Audio N02"
  6851. series="30"
  6852. latestVersion="3.1"
  6853. show = "0" >
  6854. <productMenu id="protocol"
  6855. type="1"
  6856. url="0">
  6857. </productMenu>
  6858. <productMenu id="wa"
  6859. type="2" >
  6860. </productMenu>
  6861. <productMenu id="sip"
  6862. type="1" >
  6863. </productMenu>
  6864. <productMenu id="meshIntercom"
  6865. type="20" >
  6866. <productMenuType version="2.9.9"
  6867. type="10"
  6868. />
  6869. </productMenu>
  6870. <productMenu id="bluetoothIntercom"
  6871. type="1" >
  6872. </productMenu>
  6873. <productMenu id="phone"
  6874. type="1" >
  6875. </productMenu>
  6876. <productMenu id="music"
  6877. type="1" >
  6878. </productMenu>
  6879. <productMenu id="fmradio"
  6880. type="1" >
  6881. </productMenu>
  6882. <productMenu id="deviceSetting"
  6883. type="1"
  6884. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml">
  6885. <productMenuURL version="2.2"
  6886. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  6887. />
  6888. </productMenu>
  6889. <productMenu id="quickGuide"
  6890. type="1"
  6891. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N02_2.2.0_en_220906.pdf"
  6892. size="1.06MB" >
  6893. </productMenu>
  6894. <productMenu id="userGuide"
  6895. type="1"
  6896. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N02_2.2.0_en_220906.pdf"
  6897. size="3.15MB" >
  6898. </productMenu>
  6899. <productMenu id="volume"
  6900. type="2" >
  6901. </productMenu>
  6902. <productID id="3114"
  6903. />
  6904. <productGroupable type="0"
  6905. />
  6906. </product>
  6907. <product id="HD50S"
  6908. name="Boom Audio 20S"
  6909. series="50"
  6910. latestVersion="2.5.2"
  6911. show = "0" >
  6912. <productMenu id="protocol"
  6913. type="0">
  6914. </productMenu>
  6915. <productMenu id="sip"
  6916. type="1" >
  6917. <productMenuType version="1.0"
  6918. type="0"
  6919. />
  6920. </productMenu>
  6921. <productMenu id="bluetoothIntercom"
  6922. type="1" >
  6923. <productMenuType version="1.0"
  6924. type="0"
  6925. />
  6926. </productMenu>
  6927. <productMenu id="intercomSetting"
  6928. type="1" >
  6929. </productMenu>
  6930. <productMenu id="phone"
  6931. type="2" >
  6932. </productMenu>
  6933. <productMenu id="fmradio"
  6934. type="3" >
  6935. </productMenu>
  6936. <productMenu id="deviceSetting"
  6937. type="1"
  6938. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  6939. <productMenuURL version="2.4"
  6940. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  6941. />
  6942. <productMenuURL version="1.5"
  6943. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  6944. />
  6945. <productMenuURL version="1.4.1"
  6946. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  6947. />
  6948. <productMenuURL version="1.1"
  6949. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  6950. />
  6951. <productMenuURL version="1.0"
  6952. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  6953. />
  6954. </productMenu>
  6955. <productMenu id="quickGuide"
  6956. type="1"
  6957. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  6958. size="264KB" >
  6959. </productMenu>
  6960. <productMenu id="userGuide"
  6961. type="1"
  6962. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  6963. size="3.09MB" >
  6964. </productMenu>
  6965. <productID id="4210"
  6966. />
  6967. <productProductKey key="11"
  6968. />
  6969. <productID id="4230"
  6970. />
  6971. <productProductKey key="11"
  6972. />
  6973. <productGroupable type="1"
  6974. />
  6975. </product>
  6976. <product id="HD50S"
  6977. name="Boom Audio 20S EVO"
  6978. series="50"
  6979. latestVersion="2.5.2"
  6980. show = "0" >
  6981. <productMenu id="protocol"
  6982. type="0">
  6983. </productMenu>
  6984. <productMenu id="sip"
  6985. type="1" >
  6986. <productMenuType version="1.0"
  6987. type="0"
  6988. />
  6989. </productMenu>
  6990. <productMenu id="bluetoothIntercom"
  6991. type="1" >
  6992. <productMenuType version="1.0"
  6993. type="0"
  6994. />
  6995. </productMenu>
  6996. <productMenu id="intercomSetting"
  6997. type="1" >
  6998. </productMenu>
  6999. <productMenu id="phone"
  7000. type="2" >
  7001. </productMenu>
  7002. <productMenu id="fmradio"
  7003. type="3" >
  7004. </productMenu>
  7005. <productMenu id="deviceSetting"
  7006. type="1"
  7007. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  7008. <productMenuURL version="2.4"
  7009. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  7010. />
  7011. <productMenuURL version="1.5"
  7012. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  7013. />
  7014. <productMenuURL version="1.4.1"
  7015. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  7016. />
  7017. <productMenuURL version="1.1"
  7018. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  7019. />
  7020. <productMenuURL version="1.0"
  7021. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  7022. />
  7023. </productMenu>
  7024. <productMenu id="quickGuide"
  7025. type="1"
  7026. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  7027. size="321KB" >
  7028. </productMenu>
  7029. <productMenu id="userGuide"
  7030. type="1"
  7031. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  7032. size="2.46MB" >
  7033. </productMenu>
  7034. <productID id="4230"
  7035. />
  7036. <productProductKey key="27"
  7037. />
  7038. <productGroupable type="1"
  7039. />
  7040. </product>
  7041. <product id="HD50S"
  7042. name="Boom! Audio 10S"
  7043. series="50"
  7044. latestVersion="1.1.3"
  7045. show = "0" >
  7046. <productMenu id="protocol"
  7047. type="0">
  7048. </productMenu>
  7049. <productMenu id="sip"
  7050. type="1" >
  7051. </productMenu>
  7052. <productMenu id="bluetoothIntercom"
  7053. type="1" >
  7054. </productMenu>
  7055. <productMenu id="phone"
  7056. type="2" >
  7057. </productMenu>
  7058. <productMenu id="fmradio"
  7059. type="3" >
  7060. </productMenu>
  7061. <productMenu id="deviceSetting"
  7062. type="1"
  7063. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml" >
  7064. </productMenu>
  7065. <productMenu id="quickGuide"
  7066. type="1"
  7067. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  7068. size="538KB" >
  7069. </productMenu>
  7070. <productMenu id="userGuide"
  7071. type="1"
  7072. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  7073. size="1.55MB" >
  7074. </productMenu>
  7075. <productID id="5532"
  7076. />
  7077. <productGroupable type="0"
  7078. />
  7079. </product>
  7080. <product id="HD50S"
  7081. name="Boom! Audio N01 10R"
  7082. series="50"
  7083. latestVersion="1.1.3"
  7084. show = "0" >
  7085. <productMenu id="protocol"
  7086. type="0">
  7087. </productMenu>
  7088. <productMenu id="sip"
  7089. type="1" >
  7090. </productMenu>
  7091. <productMenu id="bluetoothIntercom"
  7092. type="1" >
  7093. </productMenu>
  7094. <productMenu id="phone"
  7095. type="2" >
  7096. </productMenu>
  7097. <productMenu id="fmradio"
  7098. type="3" >
  7099. </productMenu>
  7100. <productMenu id="deviceSetting"
  7101. type="1"
  7102. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  7103. </productMenu>
  7104. <productMenu id="quickGuide"
  7105. type="1"
  7106. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  7107. size="766KB" >
  7108. </productMenu>
  7109. <productMenu id="userGuide"
  7110. type="1"
  7111. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  7112. size="1.45MB" >
  7113. </productMenu>
  7114. <productID id="5522"
  7115. />
  7116. <productGroupable type="0"
  7117. />
  7118. </product>
  7119. <product id="HD50S"
  7120. name="OUTRUSH-R N03"
  7121. series="50"
  7122. latestVersion="1.2.1"
  7123. show = "-1" >
  7124. <productMenu id="protocol"
  7125. type="0">
  7126. </productMenu>
  7127. <productMenu id="sip"
  7128. type="1" >
  7129. </productMenu>
  7130. <productMenu id="bluetoothIntercom"
  7131. type="1" >
  7132. </productMenu>
  7133. <productMenu id="phone"
  7134. type="2" >
  7135. </productMenu>
  7136. <productMenu id="fmradio"
  7137. type="3" >
  7138. </productMenu>
  7139. <productMenu id="deviceSetting"
  7140. type="1"
  7141. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  7142. </productMenu>
  7143. <productMenu id="userGuide"
  7144. type="1"
  7145. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_1.2.0_en_220906.pdf"
  7146. size="660KB" >
  7147. </productMenu>
  7148. <productID id="5434"
  7149. />
  7150. <productGroupable type="0"
  7151. />
  7152. </product>
  7153. <product id="HD50S"
  7154. name="OUTRUSH-R N03"
  7155. series="50"
  7156. latestVersion="2.0"
  7157. show = "0" >
  7158. <productMenu id="protocol"
  7159. type="3" >
  7160. </productMenu>
  7161. <productMenu id="sip"
  7162. type="1" >
  7163. </productMenu>
  7164. <productMenu id="bluetoothIntercom"
  7165. type="1" >
  7166. </productMenu>
  7167. <productMenu id="phone"
  7168. type="1" >
  7169. </productMenu>
  7170. <productMenu id="fmradio"
  7171. type="1" >
  7172. </productMenu>
  7173. <productMenu id="deviceSetting"
  7174. type="1"
  7175. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR.xml" >
  7176. </productMenu>
  7177. <productMenu id="userGuide"
  7178. type="1"
  7179. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_2.0.0_en_230417.pdf"
  7180. size="1.14MB" >
  7181. </productMenu>
  7182. <productID id="5441"
  7183. />
  7184. <productGroupable type="0"
  7185. />
  7186. </product>
  7187. <product id="5R"
  7188. name="5R"
  7189. series="5"
  7190. latestVersion="1.0.1"
  7191. show = "1" >
  7192. <productMenu id="protocol"
  7193. type="3" >
  7194. </productMenu>
  7195. <productMenu id="sip"
  7196. type="1" >
  7197. </productMenu>
  7198. <productMenu id="bluetoothIntercom"
  7199. type="1" >
  7200. </productMenu>
  7201. <productMenu id="phone"
  7202. type="1" >
  7203. </productMenu>
  7204. <productMenu id="fmradio"
  7205. type="1" >
  7206. </productMenu>
  7207. <productMenu id="deviceSetting"
  7208. type="1"
  7209. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  7210. </productMenu>
  7211. <productMenu id="quickGuide"
  7212. type="0"
  7213. url=""
  7214. size="934KB" >
  7215. </productMenu>
  7216. <productMenu id="userGuide"
  7217. type="1"
  7218. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_1.1.1_en_250211.pdf"
  7219. size="1.14MB" >
  7220. </productMenu>
  7221. <productMenu id="connectGuide"
  7222. type="1"
  7223. url="https://api.sena.com/support/ConnectGuide/plusminus_multi10plus1_lcd_init.json"
  7224. size="1.12MB" >
  7225. </productMenu>
  7226. <productID id="5591"
  7227. />
  7228. <productGroupable type="0"
  7229. />
  7230. </product>
  7231. <product id="5R"
  7232. name="5R LITE"
  7233. series="5"
  7234. latestVersion="1.0.1"
  7235. show = "1" >
  7236. <productMenu id="protocol"
  7237. type="3" >
  7238. </productMenu>
  7239. <productMenu id="sip"
  7240. type="1" >
  7241. </productMenu>
  7242. <productMenu id="bluetoothIntercom"
  7243. type="1" >
  7244. </productMenu>
  7245. <productMenu id="phone"
  7246. type="1" >
  7247. </productMenu>
  7248. <productMenu id="fmradio"
  7249. type="1" >
  7250. </productMenu>
  7251. <productMenu id="deviceSetting"
  7252. type="1"
  7253. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE_01.xml" >
  7254. </productMenu>
  7255. <productMenu id="quickGuide"
  7256. type="0"
  7257. url=""
  7258. size="934KB" >
  7259. </productMenu>
  7260. <productMenu id="userGuide"
  7261. type="1"
  7262. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_LITE_1.1.0_en_241230.pdf"
  7263. size="1.14MB" >
  7264. </productMenu>
  7265. <productMenu id="connectGuide"
  7266. type="1"
  7267. url="https://api.sena.com/support/ConnectGuide/plusminus_multi10plus1_lcd_init.json"
  7268. size="1.12MB" >
  7269. </productMenu>
  7270. <productID id="5592"
  7271. />
  7272. <productGroupable type="0"
  7273. />
  7274. </product>
  7275. <product id="50RLE"
  7276. name="50R LE"
  7277. series="50"
  7278. latestVersion="1.1"
  7279. show = "0" >
  7280. <productMenu id="protocol"
  7281. type="2" >
  7282. </productMenu>
  7283. <productMenu id="alexa"
  7284. type="0" >
  7285. </productMenu>
  7286. <productMenu id="sip"
  7287. type="1" >
  7288. </productMenu>
  7289. <productMenu id="meshIntercom"
  7290. type="30" >
  7291. </productMenu>
  7292. <productMenu id="meshIntercom+"
  7293. type="3"
  7294. url="2" >
  7295. <productMenuType version="1.0.9"
  7296. type="2"
  7297. />
  7298. </productMenu>
  7299. <productMenu id="waveIntercom"
  7300. type="1" >
  7301. <productMenuType version="1.0.9"
  7302. type="0"
  7303. />
  7304. </productMenu>
  7305. <productMenu id="bluetoothIntercom"
  7306. type="1" >
  7307. </productMenu>
  7308. <productMenu id="phone"
  7309. type="1" >
  7310. </productMenu>
  7311. <productMenu id="music"
  7312. type="1" >
  7313. </productMenu>
  7314. <productMenu id="fmradio"
  7315. type="0" >
  7316. </productMenu>
  7317. <productMenu id="deviceSetting"
  7318. type="1"
  7319. url="https://api.sena.com/support/SenaNeoApp/50RLE/NS_50RLE_03.xml" >
  7320. <productMenuURL version="1.0.9"
  7321. url="https://api.sena.com/support/SenaNeoApp/50RLE/NS_50RLE_01.xml"
  7322. />
  7323. </productMenu>
  7324. <productMenu id="quickGuide"
  7325. type="0"
  7326. url=""
  7327. size="344KB" >
  7328. </productMenu>
  7329. <productMenu id="userGuide"
  7330. type="0"
  7331. url=""
  7332. size="3.41MB" >
  7333. </productMenu>
  7334. <productMenu id="volume"
  7335. type="11" >
  7336. </productMenu>
  7337. <productMenu id="battery"
  7338. type="1" >
  7339. </productMenu>
  7340. <productID id="3223"
  7341. />
  7342. <productGroupable type="0"
  7343. />
  7344. </product>
  7345. <product id="5RLOUIS"
  7346. name="5R LOUIS EDITION"
  7347. series="5"
  7348. latestVersion="1.0"
  7349. show = "-1" >
  7350. <productMenu id="protocol"
  7351. type="3" >
  7352. </productMenu>
  7353. <productMenu id="sip"
  7354. type="1" >
  7355. </productMenu>
  7356. <productMenu id="bluetoothIntercom"
  7357. type="1" >
  7358. </productMenu>
  7359. <productMenu id="phone"
  7360. type="1" >
  7361. </productMenu>
  7362. <productMenu id="fmradio"
  7363. type="1" >
  7364. </productMenu>
  7365. <productMenu id="deviceSetting"
  7366. type="1"
  7367. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  7368. </productMenu>
  7369. <productMenu id="quickGuide"
  7370. type="0"
  7371. url=""
  7372. size="934KB" >
  7373. </productMenu>
  7374. <productMenu id="userGuide"
  7375. type="0"
  7376. url=""
  7377. size="1.14MB" >
  7378. </productMenu>
  7379. <productID id="5597"
  7380. />
  7381. <productGroupable type="0"
  7382. />
  7383. </product>
  7384. <product id="5S"
  7385. name="Ridekont 5S"
  7386. series="5"
  7387. latestVersion="2.3"
  7388. show = "-1" >
  7389. <productMenu id="protocol"
  7390. type="3" >
  7391. </productMenu>
  7392. <productMenu id="sip"
  7393. type="1" >
  7394. </productMenu>
  7395. <productMenu id="bluetoothIntercom"
  7396. type="1" >
  7397. </productMenu>
  7398. <productMenu id="phone"
  7399. type="1" >
  7400. </productMenu>
  7401. <productMenu id="fmradio"
  7402. type="0" >
  7403. </productMenu>
  7404. <productMenu id="deviceSetting"
  7405. type="1"
  7406. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  7407. </productMenu>
  7408. <productMenu id="quickGuide"
  7409. type="0"
  7410. url=""
  7411. size="934KB" >
  7412. </productMenu>
  7413. <productMenu id="userGuide"
  7414. type="1"
  7415. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_2.3.0_en_250114.pdf"
  7416. size="1.14MB" >
  7417. </productMenu>
  7418. <productID id="5589"
  7419. />
  7420. <productGroupable type="0"
  7421. />
  7422. </product>
  7423. <product id="5R"
  7424. name="Ridekont 5R"
  7425. series="5"
  7426. latestVersion="1.0"
  7427. show = "0" >
  7428. <productMenu id="protocol"
  7429. type="3" >
  7430. </productMenu>
  7431. <productMenu id="sip"
  7432. type="1" >
  7433. </productMenu>
  7434. <productMenu id="bluetoothIntercom"
  7435. type="1" >
  7436. </productMenu>
  7437. <productMenu id="phone"
  7438. type="1" >
  7439. </productMenu>
  7440. <productMenu id="fmradio"
  7441. type="1" >
  7442. </productMenu>
  7443. <productMenu id="deviceSetting"
  7444. type="1"
  7445. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  7446. </productMenu>
  7447. <productMenu id="quickGuide"
  7448. type="1"
  7449. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_5R_1.0.0_en_220511.pdf"
  7450. size="934KB" >
  7451. </productMenu>
  7452. <productMenu id="userGuide"
  7453. type="1"
  7454. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_5R_1.0.2_en_230106.pdf"
  7455. size="1.14MB" >
  7456. </productMenu>
  7457. <productID id="5593"
  7458. />
  7459. <productGroupable type="0"
  7460. />
  7461. </product>
  7462. <product id="5R"
  7463. name="Ridekont 5R LITE"
  7464. series="5"
  7465. latestVersion="1.0"
  7466. show = "0" >
  7467. <productMenu id="protocol"
  7468. type="3" >
  7469. </productMenu>
  7470. <productMenu id="sip"
  7471. type="1" >
  7472. </productMenu>
  7473. <productMenu id="bluetoothIntercom"
  7474. type="1" >
  7475. </productMenu>
  7476. <productMenu id="phone"
  7477. type="1" >
  7478. </productMenu>
  7479. <productMenu id="fmradio"
  7480. type="1" >
  7481. </productMenu>
  7482. <productMenu id="deviceSetting"
  7483. type="1"
  7484. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE_01.xml" >
  7485. </productMenu>
  7486. <productMenu id="quickGuide"
  7487. type="0"
  7488. url=""
  7489. size="934KB" >
  7490. </productMenu>
  7491. <productMenu id="userGuide"
  7492. type="1"
  7493. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_LITE_1.1.0_en_241230.pdf"
  7494. size="1.14MB" >
  7495. </productMenu>
  7496. <productID id="5594"
  7497. />
  7498. <productGroupable type="0"
  7499. />
  7500. </product>
  7501. <product id="C30"
  7502. name="SENA C30"
  7503. series="C"
  7504. latestVersion="1.1.3"
  7505. latestVersionVoicePrompt="0.11"
  7506. show = "1" >
  7507. <productMenu id="protocol"
  7508. type="2" >
  7509. </productMenu>
  7510. <productMenu id="alexa"
  7511. type="0" >
  7512. </productMenu>
  7513. <productMenu id="ota"
  7514. type="2" >
  7515. <otaPackages>
  7516. <package
  7517. url="https://api.sena.com/support/OTA/C30/SENA_C30-v1.1.3-build2.img"
  7518. size="3144148"
  7519. />
  7520. </otaPackages>
  7521. </productMenu>
  7522. <productMenu id="wa"
  7523. type="0" >
  7524. </productMenu>
  7525. <productMenu id="meshIntercom"
  7526. type="30" >
  7527. </productMenu>
  7528. <productMenu id="meshIntercom+"
  7529. type="3"
  7530. url="2" >
  7531. <productMenuType version="1.0.9"
  7532. type="2"
  7533. />
  7534. </productMenu>
  7535. <productMenu id="phone"
  7536. type="1" >
  7537. </productMenu>
  7538. <productMenu id="music"
  7539. type="1" >
  7540. </productMenu>
  7541. <productMenu id="musicSharing"
  7542. type="0" >
  7543. </productMenu>
  7544. <productMenu id="deviceSetting"
  7545. type="1"
  7546. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_06_zh_rCN.xml" >
  7547. <productMenuURL version="1.0.9"
  7548. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_05_zh_rCN.xml"
  7549. />
  7550. </productMenu>
  7551. <productMenu id="quickGuide"
  7552. type="1"
  7553. url="https://firmware.sena.com/senabluetoothmanager/C30.pdf"
  7554. size="1.12MB" >
  7555. </productMenu>
  7556. <productMenu id="userGuide"
  7557. type="0"
  7558. url=""
  7559. size="2.0MB" >
  7560. </productMenu>
  7561. <productMenu id="videoGuide"
  7562. type="0"
  7563. url=""
  7564. size="3.41MB" >
  7565. </productMenu>
  7566. <productMenu id="volume"
  7567. type="12" >
  7568. </productMenu>
  7569. <productMenu id="battery"
  7570. type="1" >
  7571. </productMenu>
  7572. <productID id="683A"
  7573. />
  7574. <productGroupable type="0"
  7575. />
  7576. </product>
  7577. <product id="C20"
  7578. name="C20"
  7579. series="5"
  7580. latestVersion="1.0"
  7581. show = "0" >
  7582. <productMenu id="protocol"
  7583. type="3" >
  7584. </productMenu>
  7585. <productMenu id="sip"
  7586. type="1" >
  7587. </productMenu>
  7588. <productMenu id="bluetoothIntercom"
  7589. type="1" >
  7590. </productMenu>
  7591. <productMenu id="phone"
  7592. type="1" >
  7593. </productMenu>
  7594. <productMenu id="deviceSetting"
  7595. type="1"
  7596. url="https://api.sena.com/support/SenaNeoApp/C20/NS_QCCSC20.xml" >
  7597. </productMenu>
  7598. <productMenu id="quickGuide"
  7599. type="1"
  7600. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_C20_1.0.0_sc_231004.pdf"
  7601. size="934KB" >
  7602. </productMenu>
  7603. <productMenu id="userGuide"
  7604. type="1"
  7605. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_C20_1.0.0_sc_231004.pdf"
  7606. size="1.14MB" >
  7607. </productMenu>
  7608. <productID id="3701"
  7609. />
  7610. <productGroupable type="0"
  7611. />
  7612. </product>
  7613. <product id="C10"
  7614. name="C10"
  7615. series="5"
  7616. latestVersion="1.4.1"
  7617. show = "0" >
  7618. <productMenu id="protocol"
  7619. type="3" >
  7620. </productMenu>
  7621. <productMenu id="sip"
  7622. type="1" >
  7623. </productMenu>
  7624. <productMenu id="bluetoothIntercom"
  7625. type="1" >
  7626. </productMenu>
  7627. <productMenu id="phone"
  7628. type="1" >
  7629. </productMenu>
  7630. <productMenu id="fmradio"
  7631. type="0" >
  7632. </productMenu>
  7633. <productMenu id="deviceSetting"
  7634. type="1"
  7635. url="https://api.sena.com/support/SenaNeoApp/C10/NS_C10_01.xml" >
  7636. </productMenu>
  7637. <productMenu id="userGuide"
  7638. type="1"
  7639. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_C10_1.2.0_sc_250321.pdf"
  7640. size="1.14MB" >
  7641. </productMenu>
  7642. <productID id="5595"
  7643. />
  7644. <productGroupable type="0"
  7645. />
  7646. </product>
  7647. <product id="J30"
  7648. name="J30"
  7649. series="J"
  7650. latestVersion="1.2"
  7651. latestVersionVoicePrompt="0.13"
  7652. show = "0" >
  7653. <productMenu id="protocol"
  7654. type="2" >
  7655. </productMenu>
  7656. <productMenu id="alexa"
  7657. type="0" >
  7658. </productMenu>
  7659. <productMenu id="ota"
  7660. type="2" >
  7661. <otaPackages>
  7662. <package
  7663. url="https://api.sena.com/support/OTA/J30/SENA_J30-v1.2-build1.img"
  7664. size="3144148"
  7665. />
  7666. </otaPackages>
  7667. </productMenu>
  7668. <productMenu id="wa"
  7669. type="0" >
  7670. </productMenu>
  7671. <productMenu id="meshIntercom"
  7672. type="30" >
  7673. </productMenu>
  7674. <productMenu id="meshIntercom+"
  7675. type="3"
  7676. url="2" >
  7677. <productMenuType version="1.0.9"
  7678. type="2"
  7679. />
  7680. </productMenu>
  7681. <productMenu id="waveIntercom"
  7682. type="1" >
  7683. <productMenuType version="1.1.9"
  7684. type="0"
  7685. />
  7686. </productMenu>
  7687. <productMenu id="phone"
  7688. type="1" >
  7689. </productMenu>
  7690. <productMenu id="music"
  7691. type="1" >
  7692. </productMenu>
  7693. <productMenu id="musicSharing"
  7694. type="0" >
  7695. </productMenu>
  7696. <productMenu id="deviceSetting"
  7697. type="1"
  7698. url="https://api.sena.com/support/SenaNeoApp/J30/NS_J30_AIROHA_01_ja.xml" >
  7699. <productMenuURL version="1.0.9"
  7700. url="https://api.sena.com/support/SenaNeoApp/J30/NS_J30_AIROHA_ja.xml"
  7701. />
  7702. </productMenu>
  7703. <productMenu id="quickGuide"
  7704. type="0"
  7705. url=""
  7706. size="1.12MB" >
  7707. </productMenu>
  7708. <productMenu id="userGuide"
  7709. type="1"
  7710. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_J30_1.1.0_jp_250402.pdf"
  7711. size="2.0MB" >
  7712. </productMenu>
  7713. <productMenu id="videoGuide"
  7714. type="0"
  7715. url=""
  7716. size="3.41MB" >
  7717. </productMenu>
  7718. <productMenu id="volume"
  7719. type="12" >
  7720. </productMenu>
  7721. <productMenu id="battery"
  7722. type="1" >
  7723. </productMenu>
  7724. <productID id="6848"
  7725. />
  7726. <productGroupable type="0"
  7727. />
  7728. </product>
  7729. <product id="J10"
  7730. name="J10"
  7731. series="5"
  7732. latestVersion="1.1.1"
  7733. show = "0" >
  7734. <productMenu id="protocol"
  7735. type="3" >
  7736. </productMenu>
  7737. <productMenu id="sip"
  7738. type="1" >
  7739. </productMenu>
  7740. <productMenu id="bluetoothIntercom"
  7741. type="1" >
  7742. </productMenu>
  7743. <productMenu id="phone"
  7744. type="1" >
  7745. </productMenu>
  7746. <productMenu id="fmradio"
  7747. type="0" >
  7748. </productMenu>
  7749. <productMenu id="deviceSetting"
  7750. type="1"
  7751. url="https://api.sena.com/support/SenaNeoApp/C10/NS_C10_01.xml" >
  7752. </productMenu>
  7753. <productMenu id="userGuide"
  7754. type="1"
  7755. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_J10_1.1.0_jp_250320.pdf"
  7756. size="1.14MB" >
  7757. </productMenu>
  7758. <productID id="5598"
  7759. />
  7760. <productGroupable type="0"
  7761. />
  7762. </product>
  7763. <product id="B20"
  7764. name="B20"
  7765. series="B"
  7766. latestVersion="1.1"
  7767. latestVersionVoicePrompt="0.13"
  7768. show = "0" >
  7769. <productMenu id="protocol"
  7770. type="2" >
  7771. </productMenu>
  7772. <productMenu id="alexa"
  7773. type="0" >
  7774. </productMenu>
  7775. <productMenu id="ota"
  7776. type="2" >
  7777. <otaPackages>
  7778. <package
  7779. url="https://api.sena.com/support/OTA/B20/SENA_B20-v1.1-build0.img"
  7780. size="3144148"
  7781. />
  7782. </otaPackages>
  7783. </productMenu>
  7784. <productMenu id="wa"
  7785. type="0" >
  7786. </productMenu>
  7787. <productMenu id="meshIntercom"
  7788. type="30" >
  7789. </productMenu>
  7790. <productMenu id="phone"
  7791. type="1" >
  7792. </productMenu>
  7793. <productMenu id="music"
  7794. type="1" >
  7795. </productMenu>
  7796. <productMenu id="musicSharing"
  7797. type="0" >
  7798. </productMenu>
  7799. <productMenu id="deviceSetting"
  7800. type="1"
  7801. url="https://api.sena.com/support/SenaNeoApp/B20/NS_B20_AIROHA_02.xml" >
  7802. <productMenuURL version="1.0.9"
  7803. url="https://api.sena.com/support/SenaNeoApp/B20/NS_B20_AIROHA_01.xml"
  7804. />
  7805. </productMenu>
  7806. <productMenu id="quickGuide"
  7807. type="0"
  7808. url=""
  7809. size="1.12MB" >
  7810. </productMenu>
  7811. <productMenu id="userGuide"
  7812. type="1"
  7813. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_B20_1.0.0_en_241213.pdf"
  7814. size="2.0MB" >
  7815. </productMenu>
  7816. <productMenu id="videoGuide"
  7817. type="0"
  7818. url=""
  7819. size="3.41MB" >
  7820. </productMenu>
  7821. <productMenu id="volume"
  7822. type="12" >
  7823. </productMenu>
  7824. <productMenu id="battery"
  7825. type="1" >
  7826. </productMenu>
  7827. <productID id="6847"
  7828. />
  7829. <productGroupable type="0"
  7830. />
  7831. </product>
  7832. <product id="B10"
  7833. name="B10"
  7834. series="5"
  7835. latestVersion="1.2.1"
  7836. show = "0" >
  7837. <productMenu id="protocol"
  7838. type="3" >
  7839. </productMenu>
  7840. <productMenu id="sip"
  7841. type="1" >
  7842. </productMenu>
  7843. <productMenu id="bluetoothIntercom"
  7844. type="1" >
  7845. </productMenu>
  7846. <productMenu id="phone"
  7847. type="1" >
  7848. </productMenu>
  7849. <productMenu id="fmradio"
  7850. type="0" >
  7851. </productMenu>
  7852. <productMenu id="deviceSetting"
  7853. type="1"
  7854. url="https://api.sena.com/support/SenaNeoApp/B10/NS_B10_01.xml" >
  7855. </productMenu>
  7856. <productMenu id="userGuide"
  7857. type="1"
  7858. url="https://firmware.sena.com/senabluetoothmanager/Indian_UserGuide_B10_1.2.0_en_250320.pdf"
  7859. size="1.14MB" >
  7860. </productMenu>
  7861. <productID id="5596"
  7862. />
  7863. <productGroupable type="0"
  7864. />
  7865. </product>
  7866. <product id="E30"
  7867. name="E30"
  7868. series="E"
  7869. latestVersion="1.0.1"
  7870. latestVersionVoicePrompt="0.12"
  7871. show = "0" >
  7872. <productMenu id="protocol"
  7873. type="2" >
  7874. </productMenu>
  7875. <productMenu id="alexa"
  7876. type="0" >
  7877. </productMenu>
  7878. <productMenu id="ota"
  7879. type="2" >
  7880. <otaPackages>
  7881. <package
  7882. url="https://api.sena.com/support/OTA/E30/SENA_E30-v1.0.1-build0.img"
  7883. size="3144148"
  7884. />
  7885. </otaPackages>
  7886. </productMenu>
  7887. <productMenu id="wa"
  7888. type="0" >
  7889. </productMenu>
  7890. <productMenu id="meshIntercom"
  7891. type="30" >
  7892. </productMenu>
  7893. <productMenu id="meshIntercom+"
  7894. type="3"
  7895. url="2" >
  7896. </productMenu>
  7897. <productMenu id="waveIntercom"
  7898. type="1" >
  7899. <productMenuType version="1.0.9"
  7900. type="0"
  7901. />
  7902. </productMenu>
  7903. <productMenu id="phone"
  7904. type="1" >
  7905. </productMenu>
  7906. <productMenu id="music"
  7907. type="1" >
  7908. </productMenu>
  7909. <productMenu id="musicSharing"
  7910. type="0" >
  7911. </productMenu>
  7912. <productMenu id="deviceSetting"
  7913. type="1"
  7914. url="https://api.sena.com/support/SenaNeoApp/E30/NS_E30_AIROHA_03.xml" >
  7915. </productMenu>
  7916. <productMenu id="quickGuide"
  7917. type="0"
  7918. url=""
  7919. size="1.12MB" >
  7920. </productMenu>
  7921. <productMenu id="userGuide"
  7922. type="1"
  7923. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_E30_1.0.0_sc_250110.pdf"
  7924. size="2.0MB" >
  7925. </productMenu>
  7926. <productMenu id="videoGuide"
  7927. type="0"
  7928. url=""
  7929. size="3.41MB" >
  7930. </productMenu>
  7931. <productMenu id="volume"
  7932. type="12" >
  7933. </productMenu>
  7934. <productMenu id="battery"
  7935. type="1" >
  7936. </productMenu>
  7937. <productID id="6846"
  7938. />
  7939. <productGroupable type="0"
  7940. />
  7941. </product>
  7942. <product id="ACSRAM"
  7943. name="ACS-RAM"
  7944. series="ACS"
  7945. latestVersion="1.0.5"
  7946. show = "1" >
  7947. <productMenu id="protocol"
  7948. type="3" >
  7949. </productMenu>
  7950. <productMenu id="sip"
  7951. type="1" >
  7952. </productMenu>
  7953. <productMenu id="bluetoothIntercom"
  7954. type="1" >
  7955. </productMenu>
  7956. <productMenu id="deviceSetting"
  7957. type="1"
  7958. url="https://api.sena.com/support/SenaNeoApp/ACSRAM/NS_ACSRAM.xml" >
  7959. </productMenu>
  7960. <productMenu id="quickGuide"
  7961. type="1"
  7962. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_ACS-RAM_1.0.0_en_220422.pdf"
  7963. size="344KB" >
  7964. </productMenu>
  7965. <productMenu id="userGuide"
  7966. type="1"
  7967. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_ACS-RAM_1.0.0_en_220518.pdf"
  7968. size="1.14MB" >
  7969. </productMenu>
  7970. <productMenu id="connectGuide"
  7971. type="1"
  7972. url="https://api.sena.com/support/ConnectGuide/plusminus_center10plus1_init.json"
  7973. size="1.12MB" >
  7974. </productMenu>
  7975. <productID id="3400"
  7976. />
  7977. <productGroupable type="0"
  7978. />
  7979. </product>
  7980. <product id="ACS10"
  7981. name="ACS10"
  7982. series="ACS"
  7983. latestVersion="1.0.2"
  7984. show = "1" >
  7985. <productMenu id="protocol"
  7986. type="0">
  7987. </productMenu>
  7988. <productMenu id="sip"
  7989. type="1" >
  7990. </productMenu>
  7991. <productMenu id="bluetoothIntercom"
  7992. type="1" >
  7993. </productMenu>
  7994. <productMenu id="phone"
  7995. type="2" >
  7996. </productMenu>
  7997. <productMenu id="deviceSetting"
  7998. type="1"
  7999. url="https://api.sena.com/support/SenaUtility/ACS10/DS_ACS10.xml" >
  8000. </productMenu>
  8001. <productMenu id="quickGuide"
  8002. type="1"
  8003. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ACS10_1.1.0_en_221020.pdf"
  8004. size="970KB" >
  8005. </productMenu>
  8006. <productMenu id="userGuide"
  8007. type="1"
  8008. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ACS10_1.1.0_en_221020.pdf"
  8009. size="1.26MB" >
  8010. </productMenu>
  8011. <productID id="3300"
  8012. />
  8013. <productGroupable type="0"
  8014. />
  8015. </product>
  8016. <product id="DWO7ProMesh"
  8017. name="DWO 7 Pro Mesh"
  8018. series="50"
  8019. latestVersion="1.1"
  8020. latestVersionVoicePrompt="0.9"
  8021. show = "0" >
  8022. <productMenu id="protocol"
  8023. type="2" >
  8024. </productMenu>
  8025. <productMenu id="alexa"
  8026. type="0" >
  8027. </productMenu>
  8028. <productMenu id="ota"
  8029. type="2" >
  8030. <otaPackages>
  8031. <package
  8032. url="https://api.sena.com/support/OTA/DWO7ProMesh/SEDICI_DWO_7_PRO_MESH-v1.1-build1.img"
  8033. size="2945812"
  8034. />
  8035. </otaPackages>
  8036. </productMenu>
  8037. <productMenu id="wa"
  8038. type="0" >
  8039. </productMenu>
  8040. <productMenu id="meshIntercom"
  8041. type="20" >
  8042. </productMenu>
  8043. <productMenu id="meshIntercom+"
  8044. type="3"
  8045. url="2" >
  8046. <productMenuType version="1.0.9"
  8047. type="2"
  8048. />
  8049. <productMenuURL version="2.1.1"
  8050. url="0"
  8051. />
  8052. </productMenu>
  8053. <productMenu id="waveIntercom"
  8054. type="1" >
  8055. <productMenuType version="1.0.9"
  8056. type="0"
  8057. />
  8058. </productMenu>
  8059. <productMenu id="phone"
  8060. type="1" >
  8061. </productMenu>
  8062. <productMenu id="music"
  8063. type="1" >
  8064. </productMenu>
  8065. <productMenu id="fmradio"
  8066. type="1" >
  8067. </productMenu>
  8068. <productMenu id="musicSharing"
  8069. type="0" >
  8070. </productMenu>
  8071. <productMenu id="deviceSetting"
  8072. type="1"
  8073. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA_04.xml" >
  8074. <productMenuURL version="1.0.9"
  8075. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA.xml"
  8076. />
  8077. </productMenu>
  8078. <productMenu id="quickGuide"
  8079. type="1"
  8080. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO_7_PRO_MESH_1.3.0_en_250311.pdf"
  8081. size="1.12MB" >
  8082. </productMenu>
  8083. <productMenu id="userGuide"
  8084. type="1"
  8085. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO_7_PRO_MESH_1.3.0_en_250311.pdf"
  8086. size="2.0MB" >
  8087. </productMenu>
  8088. <productMenu id="volume"
  8089. type="12" >
  8090. </productMenu>
  8091. <productMenu id="battery"
  8092. type="1" >
  8093. </productMenu>
  8094. <productID id="6806"
  8095. />
  8096. <productGroupable type="0"
  8097. />
  8098. </product>
  8099. <product id="UCOM16R"
  8100. name="U-COM 16R"
  8101. series="UCOM"
  8102. latestVersion="1.0"
  8103. latestVersionMesh="1.0"
  8104. latestVersionVoicePrompt="1.0"
  8105. show = "-1" >
  8106. <productMenu id="protocol"
  8107. type="2" >
  8108. </productMenu>
  8109. <productMenu id="ota"
  8110. type="0" >
  8111. <otaLanguages>
  8112. <otaLanguage
  8113. id="0"
  8114. name="English"
  8115. package="0"
  8116. />
  8117. <otaLanguage
  8118. id="0"
  8119. name="French"
  8120. package="1"
  8121. />
  8122. <otaLanguage
  8123. id="0"
  8124. name="Spanish"
  8125. package="2"
  8126. />
  8127. <otaLanguage
  8128. id="0"
  8129. name="Italian"
  8130. package="3"
  8131. />
  8132. <otaLanguage
  8133. id="0"
  8134. name="German"
  8135. package="4"
  8136. />
  8137. <otaLanguage
  8138. id="0"
  8139. name="Dutch"
  8140. package="5"
  8141. />
  8142. <otaLanguage
  8143. id="0"
  8144. name="Russian"
  8145. package="6"
  8146. />
  8147. <otaLanguage
  8148. id="0"
  8149. name="Chinese"
  8150. package="7"
  8151. />
  8152. <otaLanguage
  8153. id="0"
  8154. name="Korean"
  8155. package="8"
  8156. />
  8157. <otaLanguage
  8158. id="0"
  8159. name="Japanese"
  8160. package="9"
  8161. />
  8162. <otaLanguage
  8163. id="0"
  8164. name="Finnish"
  8165. package="10"
  8166. />
  8167. </otaLanguages>
  8168. <otaPackages>
  8169. <package
  8170. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2.img"
  8171. size="5183988"
  8172. />
  8173. <package
  8174. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-fr-FR.img"
  8175. size="5183988"
  8176. />
  8177. <package
  8178. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-es-ES.img"
  8179. size="5183988"
  8180. />
  8181. <package
  8182. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-it-IT.img"
  8183. size="5183988"
  8184. />
  8185. <package
  8186. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-de-DE.img"
  8187. size="5183988"
  8188. />
  8189. <package
  8190. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-nl-NL.img"
  8191. size="5183988"
  8192. />
  8193. <package
  8194. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-ru-RU.img"
  8195. size="5183988"
  8196. />
  8197. <package
  8198. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-cmn-CN.img"
  8199. size="5183988"
  8200. />
  8201. <package
  8202. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-ko-KR.img"
  8203. size="5183988"
  8204. />
  8205. <package
  8206. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-ja-JP.img"
  8207. size="5183988"
  8208. />
  8209. <package
  8210. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-fi-FI.img"
  8211. size="5183988"
  8212. />
  8213. </otaPackages>
  8214. </productMenu>
  8215. <productMenu id="wa"
  8216. type="0" >
  8217. </productMenu>
  8218. <productMenu id="sip"
  8219. type="1" >
  8220. </productMenu>
  8221. <productMenu id="led"
  8222. type="0" >
  8223. </productMenu>
  8224. <productMenu id="illusion"
  8225. type="1" >
  8226. </productMenu>
  8227. <productMenu id="meshIntercom"
  8228. type="30" >
  8229. </productMenu>
  8230. <productMenu id="meshIntercom+"
  8231. type="3"
  8232. url="2" >
  8233. </productMenu>
  8234. <productMenu id="waveIntercom"
  8235. type="0" >
  8236. </productMenu>
  8237. <productMenu id="bluetoothIntercom"
  8238. type="1" >
  8239. </productMenu>
  8240. <productMenu id="bluetoothIntercomGrouping"
  8241. type="0" >
  8242. </productMenu>
  8243. <productMenu id="fmradio"
  8244. type="1"
  8245. url="1" >
  8246. </productMenu>
  8247. <productMenu id="phone"
  8248. type="1" >
  8249. </productMenu>
  8250. <productMenu id="music"
  8251. type="1" >
  8252. </productMenu>
  8253. <productMenu id="musicSharing"
  8254. type="0" >
  8255. </productMenu>
  8256. <productMenu id="deviceSetting"
  8257. type="1"
  8258. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml" >
  8259. </productMenu>
  8260. <productMenu id="quickGuide"
  8261. type="0"
  8262. url=""
  8263. size="1.12MB" >
  8264. </productMenu>
  8265. <productMenu id="userGuide"
  8266. type="1"
  8267. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.1.1_en_250314.pdf"
  8268. size="2.0MB" >
  8269. </productMenu>
  8270. <productMenu id="videoGuide"
  8271. type="0"
  8272. url=""
  8273. size="3.41MB" >
  8274. </productMenu>
  8275. <productMenu id="volume"
  8276. type="16" >
  8277. </productMenu>
  8278. <productMenu id="soundMode"
  8279. type="1" >
  8280. </productMenu>
  8281. <productMenu id="battery"
  8282. type="1" >
  8283. </productMenu>
  8284. <productID id="6A83"
  8285. />
  8286. <productGroupable type="0"
  8287. />
  8288. </product>
  8289. <product id="MeshStation"
  8290. name="Mesh Station"
  8291. series="50"
  8292. latestVersion="0.9"
  8293. show = "-1" >
  8294. <productMenu id="protocol"
  8295. type="2" >
  8296. </productMenu>
  8297. <productMenu id="meshIntercom"
  8298. type="20"
  8299. url="99" >
  8300. </productMenu>
  8301. <productID id="3161"
  8302. />
  8303. <productGroupable type="0"
  8304. />
  8305. </product>
  8306. </products>
  8307. </sna>