tjux-6.xodr 185 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534
  1. <?xml version="1.0" ?>
  2. <OpenDRIVE>
  3. <header revMajor="1" revMinor="1" name="adcmap" version="1.1" date="2021-04-13" north="0.0000000000000000e+00" south="0.0000000000000000e+00" east="0.0000000000000000e+00" west="0.0000000000000000e+00" lat0="3.8997196924999997e+01" lon0="1.1730559317500000e+02" hdg0="3.6000000000000000e+02" />
  4. <road name="" length="1.7752058212323556e+02" id="10000" junction="-1">
  5. <link>
  6. <predecessor elementType="junction" elementId="800000" contactPoint="NA" />
  7. <successor elementType="junction" elementId="800001" contactPoint="NA" />
  8. </link>
  9. <planView>
  10. <geometry s="0.0000000000000000e+00" x="-5.5272975816654515e-03" y="-1.0985372534347945e-05" hdg="4.7143764592269921e+00" length="1.7752058212323556e+02">
  11. <line />
  12. </geometry>
  13. </planView>
  14. <elevationProfile />
  15. <lateralProfile />
  16. <lanes>
  17. <laneSection s="0.0000000000000000e+00">
  18. <left>
  19. <lane id="1" type="driving" level="false">
  20. <link>
  21. <successor id="1" />
  22. </link>
  23. <width sOffset="0.0000000000000000e+00" a="3.2000000000000002e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  24. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="both" />
  25. </lane>
  26. </left>
  27. <center>
  28. <lane id="0" type="none" level="false">
  29. <link />
  30. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="yellow" width="1.4999999999999999e-01" laneChange="none" />
  31. </lane>
  32. </center>
  33. <right>
  34. <lane id="-1" type="driving" level="false">
  35. <link>
  36. <successor id="-1" />
  37. </link>
  38. <width sOffset="0.0000000000000000e+00" a="3.2000000000000002e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  39. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="none" />
  40. </lane>
  41. </right>
  42. </laneSection>
  43. </lanes>
  44. <objects />
  45. <signals />
  46. </road>
  47. <road name="" length="1.0293254935197776e+02" id="10001" junction="-1">
  48. <link>
  49. <predecessor elementType="junction" elementId="800001" contactPoint="NA" />
  50. <successor elementType="junction" elementId="800002" contactPoint="NA" />
  51. </link>
  52. <planView>
  53. <geometry s="0.0000000000000000e+00" x="3.9623435628633080e-01" y="-1.9836141292279456e+02" hdg="4.7142553468805000e+00" length="1.0293254935197776e+02">
  54. <line />
  55. </geometry>
  56. </planView>
  57. <elevationProfile />
  58. <lateralProfile />
  59. <lanes>
  60. <laneSection s="0.0000000000000000e+00">
  61. <left>
  62. <lane id="1" type="driving" level="false">
  63. <link>
  64. <predecessor id="1" />
  65. </link>
  66. <width sOffset="0.0000000000000000e+00" a="3.2000000000000002e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  67. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="both" />
  68. </lane>
  69. </left>
  70. <center>
  71. <lane id="0" type="none" level="false">
  72. <link />
  73. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="yellow" width="1.4999999999999999e-01" laneChange="none" />
  74. </lane>
  75. </center>
  76. <right>
  77. <lane id="-1" type="driving" level="false">
  78. <link>
  79. <predecessor id="-1" />
  80. </link>
  81. <width sOffset="0.0000000000000000e+00" a="3.2000000000000002e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  82. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="none" />
  83. </lane>
  84. </right>
  85. </laneSection>
  86. </lanes>
  87. <objects />
  88. <signals />
  89. </road>
  90. <road name="" length="1.4765310267374869e+02" id="10002" junction="-1">
  91. <link>
  92. <predecessor elementType="junction" elementId="800002" contactPoint="NA" />
  93. <successor elementType="road" elementId="10063" contactPoint="start" />
  94. </link>
  95. <planView>
  96. <geometry s="0.0000000000000000e+00" x="6.6869298957117240e-01" y="-3.3196615295491648e+02" hdg="4.7148566782007553e+00" length="1.4765310267374869e+02">
  97. <line />
  98. </geometry>
  99. </planView>
  100. <elevationProfile />
  101. <lateralProfile />
  102. <lanes>
  103. <laneSection s="0.0000000000000000e+00">
  104. <left>
  105. <lane id="1" type="driving" level="false">
  106. <link>
  107. <successor id="1" />
  108. </link>
  109. <width sOffset="0.0000000000000000e+00" a="3.2000000000000002e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  110. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="both" />
  111. </lane>
  112. </left>
  113. <center>
  114. <lane id="0" type="none" level="false">
  115. <link />
  116. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="yellow" width="1.4999999999999999e-01" laneChange="none" />
  117. </lane>
  118. </center>
  119. <right>
  120. <lane id="-1" type="driving" level="false">
  121. <link>
  122. <successor id="-1" />
  123. </link>
  124. <width sOffset="0.0000000000000000e+00" a="3.2000000000000002e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  125. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="none" />
  126. </lane>
  127. </right>
  128. </laneSection>
  129. </lanes>
  130. <objects />
  131. <signals />
  132. </road>
  133. <road name="" length="7.3254427623443092e+01" id="10004" junction="-1">
  134. <link>
  135. <predecessor elementType="road" elementId="10063" contactPoint="end" />
  136. <successor elementType="road" elementId="10033" contactPoint="start" />
  137. </link>
  138. <planView>
  139. <geometry s="0.0000000000000000e+00" x="1.5352999910712443e+01" y="-4.9592875253129728e+02" hdg="2.3141873261354087e-03" length="7.3254427623443092e+01">
  140. <line />
  141. </geometry>
  142. </planView>
  143. <elevationProfile />
  144. <lateralProfile />
  145. <lanes>
  146. <laneSection s="0.0000000000000000e+00">
  147. <left>
  148. <lane id="1" type="driving" level="false">
  149. <link>
  150. <predecessor id="1" />
  151. <successor id="1" />
  152. </link>
  153. <width sOffset="0.0000000000000000e+00" a="3.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  154. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="both" />
  155. </lane>
  156. </left>
  157. <center>
  158. <lane id="0" type="none" level="false">
  159. <link />
  160. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="yellow" width="1.4999999999999999e-01" laneChange="none" />
  161. </lane>
  162. </center>
  163. <right>
  164. <lane id="-1" type="driving" level="false">
  165. <link>
  166. <predecessor id="-1" />
  167. <successor id="-1" />
  168. </link>
  169. <width sOffset="0.0000000000000000e+00" a="3.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  170. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="none" />
  171. </lane>
  172. </right>
  173. </laneSection>
  174. </lanes>
  175. <objects />
  176. <signals />
  177. </road>
  178. <road name="" length="1.5362915765735178e+02" id="10006" junction="-1">
  179. <link>
  180. <predecessor elementType="road" elementId="10033" contactPoint="end" />
  181. <successor elementType="road" elementId="10034" contactPoint="start" />
  182. </link>
  183. <planView>
  184. <geometry s="0.0000000000000000e+00" x="1.0802168417308221e+02" y="-4.9571718132752738e+02" hdg="2.2509860241262444e-03" length="1.5362915765735178e+02">
  185. <line />
  186. </geometry>
  187. </planView>
  188. <elevationProfile />
  189. <lateralProfile />
  190. <lanes>
  191. <laneSection s="0.0000000000000000e+00">
  192. <left>
  193. <lane id="1" type="driving" level="false">
  194. <link>
  195. <predecessor id="1" />
  196. <successor id="1" />
  197. </link>
  198. <width sOffset="0.0000000000000000e+00" a="3.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  199. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="both" />
  200. </lane>
  201. </left>
  202. <center>
  203. <lane id="0" type="none" level="false">
  204. <link />
  205. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="yellow" width="1.4999999999999999e-01" laneChange="none" />
  206. </lane>
  207. </center>
  208. <right>
  209. <lane id="-1" type="driving" level="false">
  210. <link>
  211. <predecessor id="-1" />
  212. <successor id="-1" />
  213. </link>
  214. <width sOffset="0.0000000000000000e+00" a="3.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  215. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="none" />
  216. </lane>
  217. </right>
  218. </laneSection>
  219. </lanes>
  220. <objects />
  221. <signals />
  222. </road>
  223. <road name="" length="1.4529105393557842e+02" id="10007" junction="-1">
  224. <link>
  225. <predecessor elementType="road" elementId="10034" contactPoint="end" />
  226. <successor elementType="road" elementId="10035" contactPoint="start" />
  227. </link>
  228. <planView>
  229. <geometry s="0.0000000000000000e+00" x="2.8896561495734773e+02" y="-4.9535712965130125e+02" hdg="2.2610841495538068e-03" length="1.4529105393557842e+02">
  230. <line />
  231. </geometry>
  232. </planView>
  233. <elevationProfile />
  234. <lateralProfile />
  235. <lanes>
  236. <laneSection s="0.0000000000000000e+00">
  237. <left>
  238. <lane id="1" type="driving" level="false">
  239. <link>
  240. <predecessor id="1" />
  241. <successor id="1" />
  242. </link>
  243. <width sOffset="0.0000000000000000e+00" a="3.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  244. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="both" />
  245. </lane>
  246. </left>
  247. <center>
  248. <lane id="0" type="none" level="false">
  249. <link />
  250. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="yellow" width="1.4999999999999999e-01" laneChange="none" />
  251. </lane>
  252. </center>
  253. <right>
  254. <lane id="-1" type="driving" level="false">
  255. <link>
  256. <predecessor id="-1" />
  257. <successor id="-1" />
  258. </link>
  259. <width sOffset="0.0000000000000000e+00" a="3.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  260. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="none" />
  261. </lane>
  262. </right>
  263. </laneSection>
  264. </lanes>
  265. <objects />
  266. <signals />
  267. </road>
  268. <road name="" length="1.5716726407828142e+02" id="10008" junction="-1">
  269. <link>
  270. <predecessor elementType="road" elementId="10035" contactPoint="end" />
  271. <successor elementType="road" elementId="10036" contactPoint="start" />
  272. </link>
  273. <planView>
  274. <geometry s="0.0000000000000000e+00" x="4.6136441952735208e+02" y="-4.9495234805252380e+02" hdg="1.3679502619075514e-03" length="1.5716726407828142e+02">
  275. <line />
  276. </geometry>
  277. </planView>
  278. <elevationProfile />
  279. <lateralProfile />
  280. <lanes>
  281. <laneSection s="0.0000000000000000e+00">
  282. <left>
  283. <lane id="1" type="driving" level="false">
  284. <link>
  285. <predecessor id="1" />
  286. <successor id="1" />
  287. </link>
  288. <width sOffset="0.0000000000000000e+00" a="3.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  289. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="both" />
  290. </lane>
  291. </left>
  292. <center>
  293. <lane id="0" type="none" level="false">
  294. <link />
  295. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="yellow" width="1.4999999999999999e-01" laneChange="none" />
  296. </lane>
  297. </center>
  298. <right>
  299. <lane id="-1" type="driving" level="false">
  300. <link>
  301. <predecessor id="-1" />
  302. <successor id="-1" />
  303. </link>
  304. <width sOffset="0.0000000000000000e+00" a="3.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  305. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="none" />
  306. </lane>
  307. </right>
  308. </laneSection>
  309. </lanes>
  310. <objects />
  311. <signals />
  312. </road>
  313. <road name="" length="1.7646789456055060e+02" id="10009" junction="-1">
  314. <link>
  315. <predecessor elementType="road" elementId="10036" contactPoint="end" />
  316. <successor elementType="road" elementId="10037" contactPoint="start" />
  317. </link>
  318. <planView>
  319. <geometry s="0.0000000000000000e+00" x="6.5058392001939455e+02" y="-4.9459895270333902e+02" hdg="1.9422983807534668e-03" length="1.7646789456055060e+02">
  320. <line />
  321. </geometry>
  322. </planView>
  323. <elevationProfile />
  324. <lateralProfile />
  325. <lanes>
  326. <laneSection s="0.0000000000000000e+00">
  327. <left>
  328. <lane id="1" type="driving" level="false">
  329. <link>
  330. <predecessor id="1" />
  331. <successor id="1" />
  332. </link>
  333. <width sOffset="0.0000000000000000e+00" a="3.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  334. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="both" />
  335. </lane>
  336. </left>
  337. <center>
  338. <lane id="0" type="none" level="false">
  339. <link />
  340. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="yellow" width="1.4999999999999999e-01" laneChange="none" />
  341. </lane>
  342. </center>
  343. <right>
  344. <lane id="-1" type="driving" level="false">
  345. <link>
  346. <predecessor id="-1" />
  347. <successor id="-1" />
  348. </link>
  349. <width sOffset="0.0000000000000000e+00" a="3.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  350. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="none" />
  351. </lane>
  352. </right>
  353. </laneSection>
  354. </lanes>
  355. <objects />
  356. <signals />
  357. </road>
  358. <road name="" length="1.5719855163957027e+02" id="10010" junction="-1">
  359. <link>
  360. <predecessor elementType="road" elementId="10037" contactPoint="end" />
  361. <successor elementType="junction" elementId="800003" contactPoint="NA" />
  362. </link>
  363. <planView>
  364. <geometry s="0.0000000000000000e+00" x="8.4758805729821313e+02" y="-4.9417836982291186e+02" hdg="3.5213473245860115e-03" length="3.3051495019492670e+01">
  365. <line />
  366. </geometry>
  367. <geometry s="3.3051495019492670e+01" x="8.8060043367711944e+02" y="-4.9410110608542300e+02" hdg="5.0834652959067658e-03" length="3.9502051144320063e+01">
  368. <line />
  369. </geometry>
  370. <geometry s="7.2553546163812740e+01" x="9.2019477572984113e+02" y="-4.9374031402914261e+02" hdg="1.0505632464611558e-02" length="8.4645005475757529e+01">
  371. <arc curvature="1.4482991426745561e-02" />
  372. </geometry>
  373. </planView>
  374. <elevationProfile />
  375. <lateralProfile />
  376. <lanes>
  377. <laneSection s="0.0000000000000000e+00">
  378. <left>
  379. <lane id="1" type="driving" level="false">
  380. <link>
  381. <predecessor id="1" />
  382. </link>
  383. <width sOffset="0.0000000000000000e+00" a="3.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  384. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="both" />
  385. </lane>
  386. </left>
  387. <center>
  388. <lane id="0" type="none" level="false">
  389. <link />
  390. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="yellow" width="1.4999999999999999e-01" laneChange="none" />
  391. </lane>
  392. </center>
  393. <right>
  394. <lane id="-1" type="driving" level="false">
  395. <link>
  396. <predecessor id="-1" />
  397. </link>
  398. <width sOffset="0.0000000000000000e+00" a="3.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  399. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="none" />
  400. </lane>
  401. </right>
  402. </laneSection>
  403. </lanes>
  404. <objects />
  405. <signals />
  406. </road>
  407. <road name="" length="1.6547070675553002e+02" id="10011" junction="-1">
  408. <link>
  409. <predecessor elementType="junction" elementId="800003" contactPoint="NA" />
  410. <successor elementType="road" elementId="10041" contactPoint="start" />
  411. </link>
  412. <planView>
  413. <geometry s="0.0000000000000000e+00" x="9.9188598398506031e+02" y="-4.2677588166313257e+02" hdg="1.2360839334154354e+00" length="1.6547070675553002e+02">
  414. <line />
  415. </geometry>
  416. </planView>
  417. <elevationProfile />
  418. <lateralProfile />
  419. <lanes>
  420. <laneSection s="0.0000000000000000e+00">
  421. <left>
  422. <lane id="1" type="driving" level="false">
  423. <link>
  424. <successor id="1" />
  425. </link>
  426. <width sOffset="0.0000000000000000e+00" a="3.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  427. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="both" />
  428. <speed sOffset="0.0000000000000000e+00" max="1.0000000000000000e+01" />
  429. </lane>
  430. </left>
  431. <center>
  432. <lane id="0" type="none" level="false">
  433. <link />
  434. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="yellow" width="1.4999999999999999e-01" laneChange="none" />
  435. </lane>
  436. </center>
  437. <right>
  438. <lane id="-1" type="driving" level="false">
  439. <link>
  440. <successor id="-1" />
  441. </link>
  442. <width sOffset="0.0000000000000000e+00" a="3.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  443. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="none" />
  444. <speed sOffset="0.0000000000000000e+00" max="1.0000000000000000e+01" />
  445. </lane>
  446. </right>
  447. </laneSection>
  448. </lanes>
  449. <objects />
  450. <signals />
  451. </road>
  452. <road name="" length="6.5487257612604324e+01" id="10012" junction="-1">
  453. <link>
  454. <predecessor elementType="road" elementId="10041" contactPoint="end" />
  455. <successor elementType="road" elementId="10042" contactPoint="start" />
  456. </link>
  457. <planView>
  458. <geometry s="0.0000000000000000e+00" x="1.0529049091823390e+03" y="-2.5122117424663242e+02" hdg="1.2357218747935765e+00" length="6.5487257612604324e+01">
  459. <line />
  460. </geometry>
  461. </planView>
  462. <elevationProfile />
  463. <lateralProfile />
  464. <lanes>
  465. <laneSection s="0.0000000000000000e+00">
  466. <left>
  467. <lane id="1" type="driving" level="false">
  468. <link>
  469. <predecessor id="1" />
  470. <successor id="1" />
  471. </link>
  472. <width sOffset="0.0000000000000000e+00" a="3.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  473. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="both" />
  474. <speed sOffset="0.0000000000000000e+00" max="1.0000000000000000e+01" />
  475. </lane>
  476. </left>
  477. <center>
  478. <lane id="0" type="none" level="false">
  479. <link />
  480. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="yellow" width="1.4999999999999999e-01" laneChange="none" />
  481. </lane>
  482. </center>
  483. <right>
  484. <lane id="-1" type="driving" level="false">
  485. <link>
  486. <predecessor id="-1" />
  487. <successor id="-1" />
  488. </link>
  489. <width sOffset="0.0000000000000000e+00" a="3.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  490. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="none" />
  491. <speed sOffset="0.0000000000000000e+00" max="1.0000000000000000e+01" />
  492. </lane>
  493. </right>
  494. </laneSection>
  495. </lanes>
  496. <objects />
  497. <signals />
  498. </road>
  499. <road name="" length="7.0953958829059417e+01" id="10013" junction="-1">
  500. <link>
  501. <predecessor elementType="junction" elementId="800002" contactPoint="NA" />
  502. <successor elementType="road" elementId="10055" contactPoint="start" />
  503. </link>
  504. <planView>
  505. <geometry s="0.0000000000000000e+00" x="1.5324850339442492e+01" y="-3.1245690981764346e+02" hdg="3.0799611322889714e-03" length="7.0953958829059417e+01">
  506. <line />
  507. </geometry>
  508. </planView>
  509. <elevationProfile />
  510. <lateralProfile />
  511. <lanes>
  512. <laneSection s="0.0000000000000000e+00">
  513. <left>
  514. <lane id="1" type="driving" level="false">
  515. <link>
  516. <successor id="1" />
  517. </link>
  518. <width sOffset="0.0000000000000000e+00" a="2.2999999999999998e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  519. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="both" />
  520. </lane>
  521. </left>
  522. <center>
  523. <lane id="0" type="none" level="false">
  524. <link />
  525. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="yellow" width="1.4999999999999999e-01" laneChange="none" />
  526. </lane>
  527. </center>
  528. <right>
  529. <lane id="-1" type="driving" level="false">
  530. <link>
  531. <successor id="-1" />
  532. </link>
  533. <width sOffset="0.0000000000000000e+00" a="2.2999999999999998e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  534. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="none" />
  535. </lane>
  536. </right>
  537. </laneSection>
  538. </lanes>
  539. <objects />
  540. <signals />
  541. </road>
  542. <road name="" length="1.4811089403805389e+02" id="10014" junction="-1">
  543. <link>
  544. <predecessor elementType="road" elementId="10055" contactPoint="end" />
  545. <successor elementType="road" elementId="10056" contactPoint="start" />
  546. </link>
  547. <planView>
  548. <geometry s="0.0000000000000000e+00" x="1.1111158096045263e+02" y="-3.1220159775763744e+02" hdg="2.1697911140364855e-03" length="1.4811089403805389e+02">
  549. <line />
  550. </geometry>
  551. </planView>
  552. <elevationProfile />
  553. <lateralProfile />
  554. <lanes>
  555. <laneSection s="0.0000000000000000e+00">
  556. <left>
  557. <lane id="1" type="driving" level="false">
  558. <link>
  559. <predecessor id="1" />
  560. <successor id="1" />
  561. </link>
  562. <width sOffset="0.0000000000000000e+00" a="2.2999999999999998e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  563. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="both" />
  564. </lane>
  565. </left>
  566. <center>
  567. <lane id="0" type="none" level="false">
  568. <link />
  569. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="yellow" width="1.4999999999999999e-01" laneChange="none" />
  570. </lane>
  571. </center>
  572. <right>
  573. <lane id="-1" type="driving" level="false">
  574. <link>
  575. <predecessor id="-1" />
  576. <successor id="-1" />
  577. </link>
  578. <width sOffset="0.0000000000000000e+00" a="2.2999999999999998e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  579. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="none" />
  580. </lane>
  581. </right>
  582. </laneSection>
  583. </lanes>
  584. <objects />
  585. <signals />
  586. </road>
  587. <road name="" length="1.5718366952328162e+02" id="10015" junction="-1">
  588. <link>
  589. <predecessor elementType="road" elementId="10056" contactPoint="end" />
  590. <successor elementType="road" elementId="10057" contactPoint="start" />
  591. </link>
  592. <planView>
  593. <geometry s="0.0000000000000000e+00" x="2.8275653525069356e+02" y="-3.1180598834995180e+02" hdg="1.7950095574636555e-03" length="1.5718366952328162e+02">
  594. <line />
  595. </geometry>
  596. </planView>
  597. <elevationProfile />
  598. <lateralProfile />
  599. <lanes>
  600. <laneSection s="0.0000000000000000e+00">
  601. <left>
  602. <lane id="1" type="driving" level="false">
  603. <link>
  604. <predecessor id="1" />
  605. <successor id="1" />
  606. </link>
  607. <width sOffset="0.0000000000000000e+00" a="2.2999999999999998e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  608. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="both" />
  609. </lane>
  610. </left>
  611. <center>
  612. <lane id="0" type="none" level="false">
  613. <link />
  614. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="yellow" width="1.4999999999999999e-01" laneChange="none" />
  615. </lane>
  616. </center>
  617. <right>
  618. <lane id="-1" type="driving" level="false">
  619. <link>
  620. <predecessor id="-1" />
  621. <successor id="-1" />
  622. </link>
  623. <width sOffset="0.0000000000000000e+00" a="2.2999999999999998e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  624. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="none" />
  625. </lane>
  626. </right>
  627. </laneSection>
  628. </lanes>
  629. <objects />
  630. <signals />
  631. </road>
  632. <road name="" length="1.5790627392702498e+02" id="10016" junction="-1">
  633. <link>
  634. <predecessor elementType="road" elementId="10057" contactPoint="end" />
  635. <successor elementType="road" elementId="10058" contactPoint="start" />
  636. </link>
  637. <planView>
  638. <geometry s="0.0000000000000000e+00" x="4.6309074982353042e+02" y="-3.1144694829786710e+02" hdg="2.4390351705610557e-03" length="1.5790627392702498e+02">
  639. <line />
  640. </geometry>
  641. </planView>
  642. <elevationProfile />
  643. <lateralProfile />
  644. <lanes>
  645. <laneSection s="0.0000000000000000e+00">
  646. <left>
  647. <lane id="1" type="driving" level="false">
  648. <link>
  649. <predecessor id="1" />
  650. <successor id="1" />
  651. </link>
  652. <width sOffset="0.0000000000000000e+00" a="2.2999999999999998e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  653. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="both" />
  654. </lane>
  655. </left>
  656. <center>
  657. <lane id="0" type="none" level="false">
  658. <link />
  659. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="yellow" width="1.4999999999999999e-01" laneChange="none" />
  660. </lane>
  661. </center>
  662. <right>
  663. <lane id="-1" type="driving" level="false">
  664. <link>
  665. <predecessor id="-1" />
  666. <successor id="-1" />
  667. </link>
  668. <width sOffset="0.0000000000000000e+00" a="2.2999999999999998e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  669. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="none" />
  670. </lane>
  671. </right>
  672. </laneSection>
  673. </lanes>
  674. <objects />
  675. <signals />
  676. </road>
  677. <road name="" length="1.8887841183803363e+02" id="10017" junction="-1">
  678. <link>
  679. <predecessor elementType="road" elementId="10058" contactPoint="end" />
  680. <successor elementType="road" elementId="10059" contactPoint="start" />
  681. </link>
  682. <planView>
  683. <geometry s="0.0000000000000000e+00" x="6.4884086653217673e+02" y="-3.1638242265954614e+02" hdg="5.9420440763076687e+00" length="1.8887841183803363e+02">
  684. <line />
  685. </geometry>
  686. </planView>
  687. <elevationProfile />
  688. <lateralProfile />
  689. <lanes>
  690. <laneSection s="0.0000000000000000e+00">
  691. <left>
  692. <lane id="1" type="driving" level="false">
  693. <link>
  694. <predecessor id="1" />
  695. <successor id="1" />
  696. </link>
  697. <width sOffset="0.0000000000000000e+00" a="2.2999999999999998e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  698. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="both" />
  699. <speed sOffset="0.0000000000000000e+00" max="1.0000000000000000e+01" />
  700. </lane>
  701. </left>
  702. <center>
  703. <lane id="0" type="none" level="false">
  704. <link />
  705. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="yellow" width="1.4999999999999999e-01" laneChange="none" />
  706. </lane>
  707. </center>
  708. <right>
  709. <lane id="-1" type="driving" level="false">
  710. <link>
  711. <predecessor id="-1" />
  712. <successor id="-1" />
  713. </link>
  714. <width sOffset="0.0000000000000000e+00" a="2.2999999999999998e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  715. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="none" />
  716. <speed sOffset="0.0000000000000000e+00" max="1.0000000000000000e+01" />
  717. </lane>
  718. </right>
  719. </laneSection>
  720. </lanes>
  721. <objects />
  722. <signals />
  723. </road>
  724. <road name="" length="1.3088904027246559e+02" id="10018" junction="-1">
  725. <link>
  726. <predecessor elementType="road" elementId="10059" contactPoint="end" />
  727. <successor elementType="junction" elementId="800003" contactPoint="NA" />
  728. </link>
  729. <planView>
  730. <geometry s="0.0000000000000000e+00" x="8.5155463328212488e+02" y="-3.8836325312871480e+02" hdg="5.9415506031344494e+00" length="1.3088904027246559e+02">
  731. <line />
  732. </geometry>
  733. </planView>
  734. <elevationProfile />
  735. <lateralProfile />
  736. <lanes>
  737. <laneSection s="0.0000000000000000e+00">
  738. <left>
  739. <lane id="1" type="driving" level="false">
  740. <link>
  741. <predecessor id="1" />
  742. </link>
  743. <width sOffset="0.0000000000000000e+00" a="2.2999999999999998e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  744. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="both" />
  745. <speed sOffset="0.0000000000000000e+00" max="1.0000000000000000e+01" />
  746. <speed sOffset="1.0000000000000000e+02" max="6.0000000000000000e+00" />
  747. </lane>
  748. </left>
  749. <center>
  750. <lane id="0" type="none" level="false">
  751. <link />
  752. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="yellow" width="1.4999999999999999e-01" laneChange="none" />
  753. </lane>
  754. </center>
  755. <right>
  756. <lane id="-1" type="driving" level="false">
  757. <link>
  758. <predecessor id="-1" />
  759. </link>
  760. <width sOffset="0.0000000000000000e+00" a="2.2999999999999998e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  761. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="none" />
  762. <speed sOffset="0.0000000000000000e+00" max="1.0000000000000000e+01" />
  763. <speed sOffset="1.0000000000000000e+02" max="6.0000000000000000e+00" />
  764. </lane>
  765. </right>
  766. </laneSection>
  767. </lanes>
  768. <objects />
  769. <signals />
  770. </road>
  771. <road name="" length="6.4139820165894903e+01" id="10019" junction="-1">
  772. <link>
  773. <predecessor elementType="road" elementId="10042" contactPoint="end" />
  774. <successor elementType="road" elementId="10043" contactPoint="start" />
  775. </link>
  776. <planView>
  777. <geometry s="0.0000000000000000e+00" x="1.0866425312049682e+03" y="-1.5434165140893364e+02" hdg="1.2360063130459376e+00" length="6.4139820165894903e+01">
  778. <line />
  779. </geometry>
  780. </planView>
  781. <elevationProfile />
  782. <lateralProfile />
  783. <lanes>
  784. <laneSection s="0.0000000000000000e+00">
  785. <left>
  786. <lane id="1" type="driving" level="false">
  787. <link>
  788. <predecessor id="1" />
  789. <successor id="1" />
  790. </link>
  791. <width sOffset="0.0000000000000000e+00" a="3.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  792. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="both" />
  793. <speed sOffset="0.0000000000000000e+00" max="1.0000000000000000e+01" />
  794. </lane>
  795. </left>
  796. <center>
  797. <lane id="0" type="none" level="false">
  798. <link />
  799. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="yellow" width="1.4999999999999999e-01" laneChange="none" />
  800. </lane>
  801. </center>
  802. <right>
  803. <lane id="-1" type="driving" level="false">
  804. <link>
  805. <predecessor id="-1" />
  806. <successor id="-1" />
  807. </link>
  808. <width sOffset="0.0000000000000000e+00" a="3.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  809. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="none" />
  810. <speed sOffset="0.0000000000000000e+00" max="1.0000000000000000e+01" />
  811. </lane>
  812. </right>
  813. </laneSection>
  814. </lanes>
  815. <objects />
  816. <signals />
  817. </road>
  818. <road name="" length="2.7487999931647255e+02" id="10020" junction="-1">
  819. <link>
  820. <predecessor elementType="road" elementId="10043" contactPoint="end" />
  821. <successor elementType="road" elementId="10044" contactPoint="start" />
  822. </link>
  823. <planView>
  824. <geometry s="0.0000000000000000e+00" x="1.1149434216288719e+03" y="-7.3060747592307436e+01" hdg="1.2360344655650435e+00" length="1.1077363935147351e+02">
  825. <line />
  826. </geometry>
  827. <geometry s="1.1077363935147351e+02" x="1.1513463053139506e+03" y="3.1574548834879593e+01" hdg="1.2352263302169673e+00" length="8.0010250236250826e+00">
  828. <line />
  829. </geometry>
  830. <geometry s="1.1877466437509858e+02" x="1.1539680783338836e+03" y="3.9113299461080601e+01" hdg="1.2454937302033593e+00" length="4.0026197780016215e+00">
  831. <line />
  832. </geometry>
  833. <geometry s="1.2277728415310020e+02" x="1.1552074584461004e+03" y="4.2923484894079934e+01" hdg="1.1571829332906054e+00" length="1.5984718477885007e+01">
  834. <arc curvature="9.0774003906560333e-02" />
  835. </geometry>
  836. <geometry s="1.3876200263098519e+02" x="1.1507081509934249e+03" y="5.6814359324750740e+01" hdg="2.5959173062628214e+00" length="7.9957665561523950e+00">
  837. <arc curvature="2.7747572667349410e-02" />
  838. </geometry>
  839. <geometry s="1.4675776918713760e+02" x="1.1434886066881322e+03" y="6.0190706328904263e+01" hdg="2.8005564679032466e+00" length="1.2812223012933495e+02">
  840. <line />
  841. </geometry>
  842. </planView>
  843. <elevationProfile />
  844. <lateralProfile />
  845. <lanes>
  846. <laneSection s="0.0000000000000000e+00">
  847. <left>
  848. <lane id="1" type="driving" level="false">
  849. <link>
  850. <predecessor id="1" />
  851. <successor id="1" />
  852. </link>
  853. <width sOffset="0.0000000000000000e+00" a="3.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  854. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="both" />
  855. <speed sOffset="0.0000000000000000e+00" max="1.0000000000000000e+01" />
  856. <speed sOffset="5.0000000000000000e+01" max="6.0000000000000000e+00" />
  857. <speed sOffset="1.5000000000000000e+02" max="1.0000000000000000e+01" />
  858. </lane>
  859. </left>
  860. <center>
  861. <lane id="0" type="none" level="false">
  862. <link />
  863. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="yellow" width="1.4999999999999999e-01" laneChange="none" />
  864. </lane>
  865. </center>
  866. <right>
  867. <lane id="-1" type="driving" level="false">
  868. <link>
  869. <predecessor id="-1" />
  870. <successor id="-1" />
  871. </link>
  872. <width sOffset="0.0000000000000000e+00" a="3.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  873. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="none" />
  874. <speed sOffset="0.0000000000000000e+00" max="1.0000000000000000e+01" />
  875. <speed sOffset="5.0000000000000000e+01" max="6.0000000000000000e+00" />
  876. <speed sOffset="1.5000000000000000e+02" max="1.0000000000000000e+01" />
  877. </lane>
  878. </right>
  879. </laneSection>
  880. </lanes>
  881. <objects />
  882. <signals />
  883. </road>
  884. <road name="" length="1.9482020664449408e+02" id="10021" junction="-1">
  885. <link>
  886. <predecessor elementType="road" elementId="10044" contactPoint="end" />
  887. <successor elementType="road" elementId="10045" contactPoint="start" />
  888. </link>
  889. <planView>
  890. <geometry s="0.0000000000000000e+00" x="1.0004299881197511e+03" y="1.1097499454021437e+02" hdg="2.7987978148229984e+00" length="5.6760114388067983e+01">
  891. <line />
  892. </geometry>
  893. <geometry s="5.6760114388067983e+01" x="9.4697223723322247e+02" y="1.3005324014875896e+02" hdg="2.7898723330301385e+00" length="1.8365314675053394e+01">
  894. <arc curvature="5.0901597584100062e-03" />
  895. </geometry>
  896. <geometry s="7.5125429063121373e+01" x="9.2946080063655961e+02" y="1.3556584539078167e+02" hdg="2.9102767642529344e+00" length="9.1704690852780182e+00">
  897. <line />
  898. </geometry>
  899. <geometry s="8.4295898148399388e+01" x="9.2053458186984062e+02" y="1.3766825395543125e+02" hdg="2.9826774487642616e+00" length="9.7412629437128242e+00">
  900. <line />
  901. </geometry>
  902. <geometry s="9.4037161092112214e+01" x="9.1091606341675174e+02" y="1.3920978128450224e+02" hdg="3.0998938911115115e+00" length="1.0078304555238185e+02">
  903. <arc curvature="8.1724724955689327e-04" />
  904. </geometry>
  905. </planView>
  906. <elevationProfile />
  907. <lateralProfile />
  908. <lanes>
  909. <laneSection s="0.0000000000000000e+00">
  910. <left>
  911. <lane id="1" type="driving" level="false">
  912. <link>
  913. <predecessor id="1" />
  914. <successor id="1" />
  915. </link>
  916. <width sOffset="0.0000000000000000e+00" a="3.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  917. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="both" />
  918. </lane>
  919. </left>
  920. <center>
  921. <lane id="0" type="none" level="false">
  922. <link />
  923. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="yellow" width="1.4999999999999999e-01" laneChange="none" />
  924. </lane>
  925. </center>
  926. <right>
  927. <lane id="-1" type="driving" level="false">
  928. <link>
  929. <predecessor id="-1" />
  930. <successor id="-1" />
  931. </link>
  932. <width sOffset="0.0000000000000000e+00" a="3.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  933. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="none" />
  934. </lane>
  935. </right>
  936. </laneSection>
  937. </lanes>
  938. <objects />
  939. <signals />
  940. </road>
  941. <road name="" length="1.2854904384300198e+02" id="10022" junction="-1">
  942. <link>
  943. <predecessor elementType="road" elementId="10045" contactPoint="end" />
  944. <successor elementType="road" elementId="10046" contactPoint="start" />
  945. </link>
  946. <planView>
  947. <geometry s="0.0000000000000000e+00" x="7.7852964804631438e+02" y="1.3917571999986711e+02" hdg="3.1442385257996648e+00" length="1.2854904384300198e+02">
  948. <line />
  949. </geometry>
  950. </planView>
  951. <elevationProfile />
  952. <lateralProfile />
  953. <lanes>
  954. <laneSection s="0.0000000000000000e+00">
  955. <left>
  956. <lane id="1" type="driving" level="false">
  957. <link>
  958. <predecessor id="1" />
  959. <successor id="1" />
  960. </link>
  961. <width sOffset="0.0000000000000000e+00" a="2.2999999999999998e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  962. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="both" />
  963. </lane>
  964. </left>
  965. <center>
  966. <lane id="0" type="none" level="false">
  967. <link />
  968. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="yellow" width="1.4999999999999999e-01" laneChange="none" />
  969. </lane>
  970. </center>
  971. <right>
  972. <lane id="-1" type="driving" level="false">
  973. <link>
  974. <predecessor id="-1" />
  975. <successor id="-1" />
  976. </link>
  977. <width sOffset="0.0000000000000000e+00" a="2.2999999999999998e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  978. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="none" />
  979. </lane>
  980. </right>
  981. </laneSection>
  982. </lanes>
  983. <objects />
  984. <signals />
  985. </road>
  986. <road name="" length="1.5609588571933017e+02" id="10023" junction="-1">
  987. <link>
  988. <predecessor elementType="road" elementId="10046" contactPoint="end" />
  989. <successor elementType="road" elementId="10047" contactPoint="start" />
  990. </link>
  991. <planView>
  992. <geometry s="0.0000000000000000e+00" x="6.1829010595753789e+02" y="1.3882677335571492e+02" hdg="3.1436189295846986e+00" length="1.5609588571933017e+02">
  993. <line />
  994. </geometry>
  995. </planView>
  996. <elevationProfile />
  997. <lateralProfile />
  998. <lanes>
  999. <laneSection s="0.0000000000000000e+00">
  1000. <left>
  1001. <lane id="1" type="driving" level="false">
  1002. <link>
  1003. <predecessor id="1" />
  1004. <successor id="1" />
  1005. </link>
  1006. <width sOffset="0.0000000000000000e+00" a="2.2999999999999998e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  1007. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="both" />
  1008. </lane>
  1009. </left>
  1010. <center>
  1011. <lane id="0" type="none" level="false">
  1012. <link />
  1013. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="yellow" width="1.4999999999999999e-01" laneChange="none" />
  1014. </lane>
  1015. </center>
  1016. <right>
  1017. <lane id="-1" type="driving" level="false">
  1018. <link>
  1019. <predecessor id="-1" />
  1020. <successor id="-1" />
  1021. </link>
  1022. <width sOffset="0.0000000000000000e+00" a="2.2999999999999998e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  1023. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="none" />
  1024. </lane>
  1025. </right>
  1026. </laneSection>
  1027. </lanes>
  1028. <objects />
  1029. <signals />
  1030. </road>
  1031. <road name="" length="1.5661728050142057e+02" id="10024" junction="-1">
  1032. <link>
  1033. <predecessor elementType="road" elementId="10047" contactPoint="end" />
  1034. <successor elementType="road" elementId="10048" contactPoint="start" />
  1035. </link>
  1036. <planView>
  1037. <geometry s="0.0000000000000000e+00" x="4.3801379608362907e+02" y="1.3846771883498874e+02" hdg="3.1438468259543906e+00" length="1.5661728050142057e+02">
  1038. <line />
  1039. </geometry>
  1040. </planView>
  1041. <elevationProfile />
  1042. <lateralProfile />
  1043. <lanes>
  1044. <laneSection s="0.0000000000000000e+00">
  1045. <left>
  1046. <lane id="1" type="driving" level="false">
  1047. <link>
  1048. <predecessor id="1" />
  1049. <successor id="1" />
  1050. </link>
  1051. <width sOffset="0.0000000000000000e+00" a="2.2999999999999998e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  1052. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="both" />
  1053. </lane>
  1054. </left>
  1055. <center>
  1056. <lane id="0" type="none" level="false">
  1057. <link />
  1058. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="yellow" width="1.4999999999999999e-01" laneChange="none" />
  1059. </lane>
  1060. </center>
  1061. <right>
  1062. <lane id="-1" type="driving" level="false">
  1063. <link>
  1064. <predecessor id="-1" />
  1065. <successor id="-1" />
  1066. </link>
  1067. <width sOffset="0.0000000000000000e+00" a="2.2999999999999998e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  1068. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="none" />
  1069. </lane>
  1070. </right>
  1071. </laneSection>
  1072. </lanes>
  1073. <objects />
  1074. <signals />
  1075. </road>
  1076. <road name="" length="7.0328580937162243e+01" id="10026" junction="-1">
  1077. <link>
  1078. <predecessor elementType="road" elementId="10049" contactPoint="end" />
  1079. <successor elementType="road" elementId="10031" contactPoint="start" />
  1080. </link>
  1081. <planView>
  1082. <geometry s="0.0000000000000000e+00" x="8.5522979326546164e+01" y="1.3775950904563067e+02" hdg="3.1445433696348668e+00" length="7.0328580937162243e+01">
  1083. <line />
  1084. </geometry>
  1085. </planView>
  1086. <elevationProfile />
  1087. <lateralProfile />
  1088. <lanes>
  1089. <laneSection s="0.0000000000000000e+00">
  1090. <left>
  1091. <lane id="1" type="driving" level="false">
  1092. <link>
  1093. <predecessor id="1" />
  1094. <successor id="1" />
  1095. </link>
  1096. <width sOffset="0.0000000000000000e+00" a="2.2999999999999998e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  1097. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="both" />
  1098. </lane>
  1099. </left>
  1100. <center>
  1101. <lane id="0" type="none" level="false">
  1102. <link />
  1103. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="yellow" width="1.4999999999999999e-01" laneChange="none" />
  1104. </lane>
  1105. </center>
  1106. <right>
  1107. <lane id="-1" type="driving" level="false">
  1108. <link>
  1109. <predecessor id="-1" />
  1110. <successor id="-1" />
  1111. </link>
  1112. <width sOffset="0.0000000000000000e+00" a="2.2999999999999998e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  1113. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="none" />
  1114. </lane>
  1115. </right>
  1116. </laneSection>
  1117. </lanes>
  1118. <objects />
  1119. <signals />
  1120. </road>
  1121. <road name="" length="1.0261210498241041e+02" id="10027" junction="-1">
  1122. <link>
  1123. <predecessor elementType="road" elementId="10031" contactPoint="end" />
  1124. <successor elementType="junction" elementId="800000" contactPoint="NA" />
  1125. </link>
  1126. <planView>
  1127. <geometry s="0.0000000000000000e+00" x="-2.8418744355440129e-01" y="1.2532154858391731e+02" hdg="4.7149926075880284e+00" length="1.0261210498241041e+02">
  1128. <line />
  1129. </geometry>
  1130. </planView>
  1131. <elevationProfile />
  1132. <lateralProfile />
  1133. <lanes>
  1134. <laneSection s="0.0000000000000000e+00">
  1135. <left>
  1136. <lane id="1" type="driving" level="false">
  1137. <link>
  1138. <predecessor id="1" />
  1139. </link>
  1140. <width sOffset="0.0000000000000000e+00" a="3.2000000000000002e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  1141. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="both" />
  1142. </lane>
  1143. </left>
  1144. <center>
  1145. <lane id="0" type="none" level="false">
  1146. <link />
  1147. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="yellow" width="1.4999999999999999e-01" laneChange="none" />
  1148. </lane>
  1149. </center>
  1150. <right>
  1151. <lane id="-1" type="driving" level="false">
  1152. <link>
  1153. <predecessor id="-1" />
  1154. </link>
  1155. <width sOffset="0.0000000000000000e+00" a="3.2000000000000002e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  1156. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="none" />
  1157. </lane>
  1158. </right>
  1159. </laneSection>
  1160. </lanes>
  1161. <objects />
  1162. <signals />
  1163. </road>
  1164. <road name="" length="2.0841227893080145e+01" id="10005" junction="800001">
  1165. <link>
  1166. <predecessor elementType="road" elementId="10000" contactPoint="end" />
  1167. <successor elementType="road" elementId="10001" contactPoint="start" />
  1168. </link>
  1169. <planView>
  1170. <geometry s="0.0000000000000000e+00" x="3.4729087118513413e-01" y="-1.7752024249916988e+02" hdg="4.7147373799290628e+00" length="2.0841227893080145e+01">
  1171. <line />
  1172. </geometry>
  1173. </planView>
  1174. <elevationProfile>
  1175. <elevation s="0.0000000000000000e+00" a="0.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  1176. </elevationProfile>
  1177. <lateralProfile />
  1178. <lanes>
  1179. <laneSection s="0.0000000000000000e+00">
  1180. <left>
  1181. <lane id="1" type="driving" level="false">
  1182. <link>
  1183. <predecessor id="1" />
  1184. <successor id="1" />
  1185. </link>
  1186. <width sOffset="0.0000000000000000e+00" a="3.2000000000000002e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  1187. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="false" />
  1188. </lane>
  1189. </left>
  1190. <center>
  1191. <lane id="0" type="none" level="false">
  1192. <link />
  1193. </lane>
  1194. </center>
  1195. <right>
  1196. <lane id="-1" type="driving" level="false">
  1197. <link>
  1198. <predecessor id="-1" />
  1199. <successor id="-1" />
  1200. </link>
  1201. <width sOffset="0.0000000000000000e+00" a="3.2000000000000002e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  1202. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="false" />
  1203. </lane>
  1204. </right>
  1205. </laneSection>
  1206. </lanes>
  1207. <objects />
  1208. <signals />
  1209. </road>
  1210. <road name="" length="3.0672475193984976e+01" id="10029" junction="800002">
  1211. <link>
  1212. <predecessor elementType="road" elementId="10001" contactPoint="end" />
  1213. <successor elementType="road" elementId="10002" contactPoint="start" />
  1214. </link>
  1215. <planView>
  1216. <geometry s="0.0000000000000000e+00" x="5.8834410619505662e-01" y="-3.0129378300111989e+02" hdg="4.7150085594947218e+00" length="3.0672475193984976e+01">
  1217. <line />
  1218. </geometry>
  1219. </planView>
  1220. <elevationProfile>
  1221. <elevation s="0.0000000000000000e+00" a="0.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  1222. </elevationProfile>
  1223. <lateralProfile />
  1224. <lanes>
  1225. <laneSection s="0.0000000000000000e+00">
  1226. <left>
  1227. <lane id="1" type="driving" level="false">
  1228. <link>
  1229. <predecessor id="1" />
  1230. <successor id="1" />
  1231. </link>
  1232. <width sOffset="0.0000000000000000e+00" a="3.2000000000000002e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  1233. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="false" />
  1234. </lane>
  1235. </left>
  1236. <center>
  1237. <lane id="0" type="none" level="false">
  1238. <link />
  1239. </lane>
  1240. </center>
  1241. <right>
  1242. <lane id="-1" type="driving" level="false">
  1243. <link>
  1244. <predecessor id="-1" />
  1245. <successor id="-1" />
  1246. </link>
  1247. <width sOffset="0.0000000000000000e+00" a="3.2000000000000002e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  1248. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="false" />
  1249. </lane>
  1250. </right>
  1251. </laneSection>
  1252. </lanes>
  1253. <objects />
  1254. <signals />
  1255. </road>
  1256. <road name="" length="1.9414498326035183e+01" id="10033" junction="-1">
  1257. <link>
  1258. <predecessor elementType="road" elementId="10004" contactPoint="end" />
  1259. <successor elementType="road" elementId="10006" contactPoint="start" />
  1260. </link>
  1261. <planView>
  1262. <geometry s="0.0000000000000000e+00" x="8.8607231378555426e+01" y="-4.9575922821462143e+02" hdg="2.1657484658048737e-03" length="1.9414498326035183e+01">
  1263. <line />
  1264. </geometry>
  1265. </planView>
  1266. <elevationProfile>
  1267. <elevation s="0.0000000000000000e+00" a="0.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  1268. </elevationProfile>
  1269. <lateralProfile />
  1270. <lanes>
  1271. <laneSection s="0.0000000000000000e+00">
  1272. <left>
  1273. <lane id="1" type="driving" level="false">
  1274. <link>
  1275. <predecessor id="1" />
  1276. <successor id="1" />
  1277. </link>
  1278. <width sOffset="0.0000000000000000e+00" a="3.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  1279. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="false" />
  1280. </lane>
  1281. </left>
  1282. <center>
  1283. <lane id="0" type="none" level="false">
  1284. <link />
  1285. </lane>
  1286. </center>
  1287. <right>
  1288. <lane id="-1" type="driving" level="false">
  1289. <link>
  1290. <predecessor id="-1" />
  1291. <successor id="-1" />
  1292. </link>
  1293. <width sOffset="0.0000000000000000e+00" a="3.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  1294. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="false" />
  1295. </lane>
  1296. </right>
  1297. </laneSection>
  1298. </lanes>
  1299. <objects />
  1300. <signals />
  1301. </road>
  1302. <road name="" length="2.7315166050609729e+01" id="10034" junction="-1">
  1303. <link>
  1304. <predecessor elementType="road" elementId="10006" contactPoint="end" />
  1305. <successor elementType="road" elementId="10007" contactPoint="start" />
  1306. </link>
  1307. <planView>
  1308. <geometry s="0.0000000000000000e+00" x="2.6165045261588375e+02" y="-4.9537136453278129e+02" hdg="5.2113474609609921e-04" length="2.7315166050609729e+01">
  1309. <line />
  1310. </geometry>
  1311. </planView>
  1312. <elevationProfile>
  1313. <elevation s="0.0000000000000000e+00" a="0.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  1314. </elevationProfile>
  1315. <lateralProfile />
  1316. <lanes>
  1317. <laneSection s="0.0000000000000000e+00">
  1318. <left>
  1319. <lane id="1" type="driving" level="false">
  1320. <link>
  1321. <predecessor id="1" />
  1322. <successor id="1" />
  1323. </link>
  1324. <width sOffset="0.0000000000000000e+00" a="3.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  1325. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="false" />
  1326. </lane>
  1327. </left>
  1328. <center>
  1329. <lane id="0" type="none" level="false">
  1330. <link />
  1331. </lane>
  1332. </center>
  1333. <right>
  1334. <lane id="-1" type="driving" level="false">
  1335. <link>
  1336. <predecessor id="-1" />
  1337. <successor id="-1" />
  1338. </link>
  1339. <width sOffset="0.0000000000000000e+00" a="3.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  1340. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="false" />
  1341. </lane>
  1342. </right>
  1343. </laneSection>
  1344. </lanes>
  1345. <objects />
  1346. <signals />
  1347. </road>
  1348. <road name="" length="2.7108229319449386e+01" id="10035" junction="-1">
  1349. <link>
  1350. <predecessor elementType="road" elementId="10007" contactPoint="end" />
  1351. <successor elementType="road" elementId="10008" contactPoint="start" />
  1352. </link>
  1353. <planView>
  1354. <geometry s="0.0000000000000000e+00" x="4.3425629749271650e+02" y="-4.9502861463209797e+02" hdg="2.8134143063222577e-03" length="2.7108229319449386e+01">
  1355. <line />
  1356. </geometry>
  1357. </planView>
  1358. <elevationProfile>
  1359. <elevation s="0.0000000000000000e+00" a="0.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  1360. </elevationProfile>
  1361. <lateralProfile />
  1362. <lanes>
  1363. <laneSection s="0.0000000000000000e+00">
  1364. <left>
  1365. <lane id="1" type="driving" level="false">
  1366. <link>
  1367. <predecessor id="1" />
  1368. <successor id="1" />
  1369. </link>
  1370. <width sOffset="0.0000000000000000e+00" a="3.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  1371. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="false" />
  1372. </lane>
  1373. </left>
  1374. <center>
  1375. <lane id="0" type="none" level="false">
  1376. <link />
  1377. </lane>
  1378. </center>
  1379. <right>
  1380. <lane id="-1" type="driving" level="false">
  1381. <link>
  1382. <predecessor id="-1" />
  1383. <successor id="-1" />
  1384. </link>
  1385. <width sOffset="0.0000000000000000e+00" a="3.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  1386. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="false" />
  1387. </lane>
  1388. </right>
  1389. </laneSection>
  1390. </lanes>
  1391. <objects />
  1392. <signals />
  1393. </road>
  1394. <road name="" length="3.2052682258975892e+01" id="10036" junction="-1">
  1395. <link>
  1396. <predecessor elementType="road" elementId="10008" contactPoint="end" />
  1397. <successor elementType="road" elementId="10009" contactPoint="start" />
  1398. </link>
  1399. <planView>
  1400. <geometry s="0.0000000000000000e+00" x="6.1853153655305516e+02" y="-4.9473735111951817e+02" hdg="4.3178553703863750e-03" length="3.2052682258975892e+01">
  1401. <line />
  1402. </geometry>
  1403. </planView>
  1404. <elevationProfile>
  1405. <elevation s="0.0000000000000000e+00" a="0.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  1406. </elevationProfile>
  1407. <lateralProfile />
  1408. <lanes>
  1409. <laneSection s="0.0000000000000000e+00">
  1410. <left>
  1411. <lane id="1" type="driving" level="false">
  1412. <link>
  1413. <predecessor id="1" />
  1414. <successor id="1" />
  1415. </link>
  1416. <width sOffset="0.0000000000000000e+00" a="3.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  1417. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="false" />
  1418. </lane>
  1419. </left>
  1420. <center>
  1421. <lane id="0" type="none" level="false">
  1422. <link />
  1423. </lane>
  1424. </center>
  1425. <right>
  1426. <lane id="-1" type="driving" level="false">
  1427. <link>
  1428. <predecessor id="-1" />
  1429. <successor id="-1" />
  1430. </link>
  1431. <width sOffset="0.0000000000000000e+00" a="3.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  1432. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="false" />
  1433. </lane>
  1434. </right>
  1435. </laneSection>
  1436. </lanes>
  1437. <objects />
  1438. <signals />
  1439. </road>
  1440. <road name="" length="2.0536723062421341e+01" id="10037" junction="-1">
  1441. <link>
  1442. <predecessor elementType="road" elementId="10009" contactPoint="end" />
  1443. <successor elementType="road" elementId="10010" contactPoint="start" />
  1444. </link>
  1445. <planView>
  1446. <geometry s="0.0000000000000000e+00" x="8.2705148171545432e+02" y="-4.9425619961298651e+02" hdg="3.7897952922713390e-03" length="2.0536723062421341e+01">
  1447. <line />
  1448. </geometry>
  1449. </planView>
  1450. <elevationProfile>
  1451. <elevation s="0.0000000000000000e+00" a="0.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  1452. </elevationProfile>
  1453. <lateralProfile />
  1454. <lanes>
  1455. <laneSection s="0.0000000000000000e+00">
  1456. <left>
  1457. <lane id="1" type="driving" level="false">
  1458. <link>
  1459. <predecessor id="1" />
  1460. <successor id="1" />
  1461. </link>
  1462. <width sOffset="0.0000000000000000e+00" a="3.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  1463. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="false" />
  1464. </lane>
  1465. </left>
  1466. <center>
  1467. <lane id="0" type="none" level="false">
  1468. <link />
  1469. </lane>
  1470. </center>
  1471. <right>
  1472. <lane id="-1" type="driving" level="false">
  1473. <link>
  1474. <predecessor id="-1" />
  1475. <successor id="-1" />
  1476. </link>
  1477. <width sOffset="0.0000000000000000e+00" a="3.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  1478. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="false" />
  1479. </lane>
  1480. </right>
  1481. </laneSection>
  1482. </lanes>
  1483. <objects />
  1484. <signals />
  1485. </road>
  1486. <road name="" length="2.1802657261898343e+01" id="10038" junction="800003">
  1487. <link>
  1488. <predecessor elementType="road" elementId="10010" contactPoint="end" />
  1489. <successor elementType="road" elementId="10011" contactPoint="start" />
  1490. </link>
  1491. <planView>
  1492. <geometry s="0.0000000000000000e+00" x="9.8469175831970961e+02" y="-4.4735740203349923e+02" hdg="1.2345243933595826e+00" length="2.1802657261898343e+01">
  1493. <line />
  1494. </geometry>
  1495. </planView>
  1496. <elevationProfile>
  1497. <elevation s="0.0000000000000000e+00" a="0.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  1498. </elevationProfile>
  1499. <lateralProfile />
  1500. <lanes>
  1501. <laneSection s="0.0000000000000000e+00">
  1502. <left>
  1503. <lane id="1" type="driving" level="false">
  1504. <link>
  1505. <predecessor id="1" />
  1506. <successor id="1" />
  1507. </link>
  1508. <width sOffset="0.0000000000000000e+00" a="3.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  1509. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="false" />
  1510. </lane>
  1511. </left>
  1512. <center>
  1513. <lane id="0" type="none" level="false">
  1514. <link />
  1515. </lane>
  1516. </center>
  1517. <right>
  1518. <lane id="-1" type="driving" level="false">
  1519. <link>
  1520. <predecessor id="-1" />
  1521. <successor id="-1" />
  1522. </link>
  1523. <width sOffset="0.0000000000000000e+00" a="3.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  1524. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="false" />
  1525. </lane>
  1526. </right>
  1527. </laneSection>
  1528. </lanes>
  1529. <objects />
  1530. <signals />
  1531. </road>
  1532. <road name="" length="2.0386161325853422e+01" id="10041" junction="-1">
  1533. <link>
  1534. <predecessor elementType="road" elementId="10011" contactPoint="end" />
  1535. <successor elementType="road" elementId="10012" contactPoint="start" />
  1536. </link>
  1537. <planView>
  1538. <geometry s="0.0000000000000000e+00" x="1.0462427037029231e+03" y="-2.7048800044488735e+02" hdg="1.2378802378227198e+00" length="2.0386161325853422e+01">
  1539. <line />
  1540. </geometry>
  1541. </planView>
  1542. <elevationProfile>
  1543. <elevation s="0.0000000000000000e+00" a="0.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  1544. </elevationProfile>
  1545. <lateralProfile />
  1546. <lanes>
  1547. <laneSection s="0.0000000000000000e+00">
  1548. <left>
  1549. <lane id="1" type="driving" level="false">
  1550. <link>
  1551. <predecessor id="1" />
  1552. <successor id="1" />
  1553. </link>
  1554. <width sOffset="0.0000000000000000e+00" a="3.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  1555. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="false" />
  1556. <speed sOffset="0.0000000000000000e+00" max="1.0000000000000000e+01" />
  1557. </lane>
  1558. </left>
  1559. <center>
  1560. <lane id="0" type="none" level="false">
  1561. <link />
  1562. </lane>
  1563. </center>
  1564. <right>
  1565. <lane id="-1" type="driving" level="false">
  1566. <link>
  1567. <predecessor id="-1" />
  1568. <successor id="-1" />
  1569. </link>
  1570. <width sOffset="0.0000000000000000e+00" a="3.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  1571. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="false" />
  1572. <speed sOffset="0.0000000000000000e+00" max="1.0000000000000000e+01" />
  1573. </lane>
  1574. </right>
  1575. </laneSection>
  1576. </lanes>
  1577. <objects />
  1578. <signals />
  1579. </road>
  1580. <road name="" length="3.7098653246900064e+01" id="10042" junction="-1">
  1581. <link>
  1582. <predecessor elementType="road" elementId="10012" contactPoint="end" />
  1583. <successor elementType="road" elementId="10019" contactPoint="start" />
  1584. </link>
  1585. <planView>
  1586. <geometry s="0.0000000000000000e+00" x="1.0744397050663827e+03" y="-1.8937593614496302e+02" hdg="1.2356269917483440e+00" length="3.7098653246900064e+01">
  1587. <line />
  1588. </geometry>
  1589. </planView>
  1590. <elevationProfile>
  1591. <elevation s="0.0000000000000000e+00" a="0.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  1592. </elevationProfile>
  1593. <lateralProfile />
  1594. <lanes>
  1595. <laneSection s="0.0000000000000000e+00">
  1596. <left>
  1597. <lane id="1" type="driving" level="false">
  1598. <link>
  1599. <predecessor id="1" />
  1600. <successor id="1" />
  1601. </link>
  1602. <width sOffset="0.0000000000000000e+00" a="3.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  1603. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="false" />
  1604. <speed sOffset="0.0000000000000000e+00" max="1.0000000000000000e+01" />
  1605. </lane>
  1606. </left>
  1607. <center>
  1608. <lane id="0" type="none" level="false">
  1609. <link />
  1610. </lane>
  1611. </center>
  1612. <right>
  1613. <lane id="-1" type="driving" level="false">
  1614. <link>
  1615. <predecessor id="-1" />
  1616. <successor id="-1" />
  1617. </link>
  1618. <width sOffset="0.0000000000000000e+00" a="3.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  1619. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="false" />
  1620. <speed sOffset="0.0000000000000000e+00" max="1.0000000000000000e+01" />
  1621. </lane>
  1622. </right>
  1623. </laneSection>
  1624. </lanes>
  1625. <objects />
  1626. <signals />
  1627. </road>
  1628. <road name="" length="2.1927172815739368e+01" id="10043" junction="-1">
  1629. <link>
  1630. <predecessor elementType="road" elementId="10019" contactPoint="end" />
  1631. <successor elementType="road" elementId="10020" contactPoint="start" />
  1632. </link>
  1633. <planView>
  1634. <geometry s="0.0000000000000000e+00" x="1.1077170064002275e+03" y="-9.3762917300686240e+01" hdg="1.2349541800966628e+00" length="2.1927172815739368e+01">
  1635. <line />
  1636. </geometry>
  1637. </planView>
  1638. <elevationProfile>
  1639. <elevation s="0.0000000000000000e+00" a="0.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  1640. </elevationProfile>
  1641. <lateralProfile />
  1642. <lanes>
  1643. <laneSection s="0.0000000000000000e+00">
  1644. <left>
  1645. <lane id="1" type="driving" level="false">
  1646. <link>
  1647. <predecessor id="1" />
  1648. <successor id="1" />
  1649. </link>
  1650. <width sOffset="0.0000000000000000e+00" a="3.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  1651. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="false" />
  1652. <speed sOffset="0.0000000000000000e+00" max="1.0000000000000000e+01" />
  1653. </lane>
  1654. </left>
  1655. <center>
  1656. <lane id="0" type="none" level="false">
  1657. <link />
  1658. </lane>
  1659. </center>
  1660. <right>
  1661. <lane id="-1" type="driving" level="false">
  1662. <link>
  1663. <predecessor id="-1" />
  1664. <successor id="-1" />
  1665. </link>
  1666. <width sOffset="0.0000000000000000e+00" a="3.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  1667. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="false" />
  1668. <speed sOffset="0.0000000000000000e+00" max="1.0000000000000000e+01" />
  1669. </lane>
  1670. </right>
  1671. </laneSection>
  1672. </lanes>
  1673. <objects />
  1674. <signals />
  1675. </road>
  1676. <road name="" length="2.3682950963884942e+01" id="10044" junction="-1">
  1677. <link>
  1678. <predecessor elementType="road" elementId="10020" contactPoint="end" />
  1679. <successor elementType="road" elementId="10021" contactPoint="start" />
  1680. </link>
  1681. <planView>
  1682. <geometry s="0.0000000000000000e+00" x="1.0227451145314352e+03" y="1.0304295195407445e+02" hdg="2.8000656668737141e+00" length="2.3682950963884942e+01">
  1683. <line />
  1684. </geometry>
  1685. </planView>
  1686. <elevationProfile>
  1687. <elevation s="0.0000000000000000e+00" a="0.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  1688. </elevationProfile>
  1689. <lateralProfile />
  1690. <lanes>
  1691. <laneSection s="0.0000000000000000e+00">
  1692. <left>
  1693. <lane id="1" type="driving" level="false">
  1694. <link>
  1695. <predecessor id="1" />
  1696. <successor id="1" />
  1697. </link>
  1698. <width sOffset="0.0000000000000000e+00" a="3.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  1699. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="false" />
  1700. </lane>
  1701. </left>
  1702. <center>
  1703. <lane id="0" type="none" level="false">
  1704. <link />
  1705. </lane>
  1706. </center>
  1707. <right>
  1708. <lane id="-1" type="driving" level="false">
  1709. <link>
  1710. <predecessor id="-1" />
  1711. <successor id="-1" />
  1712. </link>
  1713. <width sOffset="0.0000000000000000e+00" a="3.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  1714. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="false" />
  1715. </lane>
  1716. </right>
  1717. </laneSection>
  1718. </lanes>
  1719. <objects />
  1720. <signals />
  1721. </road>
  1722. <road name="" length="3.1690949436396124e+01" id="10046" junction="-1">
  1723. <link>
  1724. <predecessor elementType="road" elementId="10022" contactPoint="end" />
  1725. <successor elementType="road" elementId="10023" contactPoint="start" />
  1726. </link>
  1727. <planView>
  1728. <geometry s="0.0000000000000000e+00" x="6.4998105416582302e+02" y="1.3883559605400521e+02" hdg="3.1418710516359596e+00" length="3.1690949436396124e+01">
  1729. <line />
  1730. </geometry>
  1731. </planView>
  1732. <elevationProfile>
  1733. <elevation s="0.0000000000000000e+00" a="0.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  1734. </elevationProfile>
  1735. <lateralProfile />
  1736. <lanes>
  1737. <laneSection s="0.0000000000000000e+00">
  1738. <left>
  1739. <lane id="1" type="driving" level="false">
  1740. <link>
  1741. <predecessor id="1" />
  1742. <successor id="1" />
  1743. </link>
  1744. <width sOffset="0.0000000000000000e+00" a="2.2999999999999998e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  1745. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="false" />
  1746. </lane>
  1747. </left>
  1748. <center>
  1749. <lane id="0" type="none" level="false">
  1750. <link />
  1751. </lane>
  1752. </center>
  1753. <right>
  1754. <lane id="-1" type="driving" level="false">
  1755. <link>
  1756. <predecessor id="-1" />
  1757. <successor id="-1" />
  1758. </link>
  1759. <width sOffset="0.0000000000000000e+00" a="2.2999999999999998e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  1760. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="false" />
  1761. </lane>
  1762. </right>
  1763. </laneSection>
  1764. </lanes>
  1765. <objects />
  1766. <signals />
  1767. </road>
  1768. <road name="" length="2.4180782413012178e+01" id="10047" junction="-1">
  1769. <link>
  1770. <predecessor elementType="road" elementId="10023" contactPoint="end" />
  1771. <successor elementType="road" elementId="10024" contactPoint="start" />
  1772. </link>
  1773. <planView>
  1774. <geometry s="0.0000000000000000e+00" x="4.6219454068690538e+02" y="1.3851048022601756e+02" hdg="3.1433610584571827e+00" length="2.4180782413012178e+01">
  1775. <line />
  1776. </geometry>
  1777. </planView>
  1778. <elevationProfile>
  1779. <elevation s="0.0000000000000000e+00" a="0.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  1780. </elevationProfile>
  1781. <lateralProfile />
  1782. <lanes>
  1783. <laneSection s="0.0000000000000000e+00">
  1784. <left>
  1785. <lane id="1" type="driving" level="false">
  1786. <link>
  1787. <predecessor id="1" />
  1788. <successor id="1" />
  1789. </link>
  1790. <width sOffset="0.0000000000000000e+00" a="2.2999999999999998e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  1791. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="false" />
  1792. </lane>
  1793. </left>
  1794. <center>
  1795. <lane id="0" type="none" level="false">
  1796. <link />
  1797. </lane>
  1798. </center>
  1799. <right>
  1800. <lane id="-1" type="driving" level="false">
  1801. <link>
  1802. <predecessor id="-1" />
  1803. <successor id="-1" />
  1804. </link>
  1805. <width sOffset="0.0000000000000000e+00" a="2.2999999999999998e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  1806. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="false" />
  1807. </lane>
  1808. </right>
  1809. </laneSection>
  1810. </lanes>
  1811. <objects />
  1812. <signals />
  1813. </road>
  1814. <road name="" length="2.2709805294087381e+01" id="10051" junction="800000">
  1815. <link>
  1816. <predecessor elementType="road" elementId="10027" contactPoint="end" />
  1817. <successor elementType="road" elementId="10000" contactPoint="start" />
  1818. </link>
  1819. <planView>
  1820. <geometry s="0.0000000000000000e+00" x="-1.7024077475098598e-02" y="2.2709791398607194e+01" hdg="4.7128952278067011e+00" length="2.2709805294087381e+01">
  1821. <line />
  1822. </geometry>
  1823. </planView>
  1824. <elevationProfile>
  1825. <elevation s="0.0000000000000000e+00" a="0.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  1826. </elevationProfile>
  1827. <lateralProfile />
  1828. <lanes>
  1829. <laneSection s="0.0000000000000000e+00">
  1830. <left>
  1831. <lane id="1" type="driving" level="false">
  1832. <link>
  1833. <predecessor id="1" />
  1834. <successor id="1" />
  1835. </link>
  1836. <width sOffset="0.0000000000000000e+00" a="3.2000000000000002e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  1837. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="false" />
  1838. </lane>
  1839. </left>
  1840. <center>
  1841. <lane id="0" type="none" level="false">
  1842. <link />
  1843. </lane>
  1844. </center>
  1845. <right>
  1846. <lane id="-1" type="driving" level="false">
  1847. <link>
  1848. <predecessor id="-1" />
  1849. <successor id="-1" />
  1850. </link>
  1851. <width sOffset="0.0000000000000000e+00" a="3.2000000000000002e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  1852. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="false" />
  1853. </lane>
  1854. </right>
  1855. </laneSection>
  1856. </lanes>
  1857. <objects />
  1858. <signals />
  1859. </road>
  1860. <road name="" length="2.4833135564700367e+01" id="10055" junction="-1">
  1861. <link>
  1862. <predecessor elementType="road" elementId="10013" contactPoint="end" />
  1863. <successor elementType="road" elementId="10014" contactPoint="start" />
  1864. </link>
  1865. <planView>
  1866. <geometry s="0.0000000000000000e+00" x="8.6278472628444462e+01" y="-3.1223837472777814e+02" hdg="1.4809641532549061e-03" length="2.4833135564700367e+01">
  1867. <line />
  1868. </geometry>
  1869. </planView>
  1870. <elevationProfile>
  1871. <elevation s="0.0000000000000000e+00" a="0.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  1872. </elevationProfile>
  1873. <lateralProfile />
  1874. <lanes>
  1875. <laneSection s="0.0000000000000000e+00">
  1876. <left>
  1877. <lane id="1" type="driving" level="false">
  1878. <link>
  1879. <predecessor id="1" />
  1880. <successor id="1" />
  1881. </link>
  1882. <width sOffset="0.0000000000000000e+00" a="2.2999999999999998e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  1883. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="false" />
  1884. </lane>
  1885. </left>
  1886. <center>
  1887. <lane id="0" type="none" level="false">
  1888. <link />
  1889. </lane>
  1890. </center>
  1891. <right>
  1892. <lane id="-1" type="driving" level="false">
  1893. <link>
  1894. <predecessor id="-1" />
  1895. <successor id="-1" />
  1896. </link>
  1897. <width sOffset="0.0000000000000000e+00" a="2.2999999999999998e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  1898. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="false" />
  1899. </lane>
  1900. </right>
  1901. </laneSection>
  1902. </lanes>
  1903. <objects />
  1904. <signals />
  1905. </road>
  1906. <road name="" length="2.3534526000343643e+01" id="10056" junction="-1">
  1907. <link>
  1908. <predecessor elementType="road" elementId="10014" contactPoint="end" />
  1909. <successor elementType="road" elementId="10015" contactPoint="start" />
  1910. </link>
  1911. <planView>
  1912. <geometry s="0.0000000000000000e+00" x="2.5922212634608167e+02" y="-3.1188022830802936e+02" hdg="3.1545178009265624e-03" length="2.3534526000343643e+01">
  1913. <line />
  1914. </geometry>
  1915. </planView>
  1916. <elevationProfile>
  1917. <elevation s="0.0000000000000000e+00" a="0.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  1918. </elevationProfile>
  1919. <lateralProfile />
  1920. <lanes>
  1921. <laneSection s="0.0000000000000000e+00">
  1922. <left>
  1923. <lane id="1" type="driving" level="false">
  1924. <link>
  1925. <predecessor id="1" />
  1926. <successor id="1" />
  1927. </link>
  1928. <width sOffset="0.0000000000000000e+00" a="2.2999999999999998e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  1929. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="false" />
  1930. </lane>
  1931. </left>
  1932. <center>
  1933. <lane id="0" type="none" level="false">
  1934. <link />
  1935. </lane>
  1936. </center>
  1937. <right>
  1938. <lane id="-1" type="driving" level="false">
  1939. <link>
  1940. <predecessor id="-1" />
  1941. <successor id="-1" />
  1942. </link>
  1943. <width sOffset="0.0000000000000000e+00" a="2.2999999999999998e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  1944. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="false" />
  1945. </lane>
  1946. </right>
  1947. </laneSection>
  1948. </lanes>
  1949. <objects />
  1950. <signals />
  1951. </road>
  1952. <road name="" length="2.3150925976160842e+01" id="10057" junction="-1">
  1953. <link>
  1954. <predecessor elementType="road" elementId="10015" contactPoint="end" />
  1955. <successor elementType="road" elementId="10016" contactPoint="start" />
  1956. </link>
  1957. <planView>
  1958. <geometry s="0.0000000000000000e+00" x="4.3993995154649019e+02" y="-3.1152384231239557e+02" hdg="3.3214289566168989e-03" length="2.3150925976160842e+01">
  1959. <line />
  1960. </geometry>
  1961. </planView>
  1962. <elevationProfile>
  1963. <elevation s="0.0000000000000000e+00" a="0.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  1964. </elevationProfile>
  1965. <lateralProfile />
  1966. <lanes>
  1967. <laneSection s="0.0000000000000000e+00">
  1968. <left>
  1969. <lane id="1" type="driving" level="false">
  1970. <link>
  1971. <predecessor id="1" />
  1972. <successor id="1" />
  1973. </link>
  1974. <width sOffset="0.0000000000000000e+00" a="2.2999999999999998e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  1975. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="false" />
  1976. </lane>
  1977. </left>
  1978. <center>
  1979. <lane id="0" type="none" level="false">
  1980. <link />
  1981. </lane>
  1982. </center>
  1983. <right>
  1984. <lane id="-1" type="driving" level="false">
  1985. <link>
  1986. <predecessor id="-1" />
  1987. <successor id="-1" />
  1988. </link>
  1989. <width sOffset="0.0000000000000000e+00" a="2.2999999999999998e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  1990. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="false" />
  1991. </lane>
  1992. </right>
  1993. </laneSection>
  1994. </lanes>
  1995. <objects />
  1996. <signals />
  1997. </road>
  1998. <road name="" length="2.8745638830754018e+01" id="10058" junction="-1">
  1999. <link>
  2000. <predecessor elementType="road" elementId="10016" contactPoint="end" />
  2001. <successor elementType="road" elementId="10017" contactPoint="start" />
  2002. </link>
  2003. <planView>
  2004. <geometry s="0.0000000000000000e+00" x="6.2099655406705892e+02" y="-3.1106180972396510e+02" hdg="2.4390351705610557e-03" length="1.1728881065954301e+01">
  2005. <line />
  2006. </geometry>
  2007. <geometry s="1.1728881065954301e+01" x="6.3272540024610385e+02" y="-3.1103320259889739e+02" hdg="2.4390351705610557e-03" length="2.0614815962548736e+00">
  2008. <arc curvature="-1.6666666666666666e-01" />
  2009. </geometry>
  2010. <geometry s="1.3790362662209175e+01" x="6.3474741109542651e+02" y="-3.1137894395670537e+02" hdg="5.9420440763076687e+00" length="1.4955276168544845e+01">
  2011. <line />
  2012. </geometry>
  2013. </planView>
  2014. <elevationProfile>
  2015. <elevation s="0.0000000000000000e+00" a="0.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  2016. </elevationProfile>
  2017. <lateralProfile />
  2018. <lanes>
  2019. <laneSection s="0.0000000000000000e+00">
  2020. <left>
  2021. <lane id="1" type="driving" level="false">
  2022. <link>
  2023. <predecessor id="1" />
  2024. <successor id="1" />
  2025. </link>
  2026. <width sOffset="0.0000000000000000e+00" a="2.2999999999999998e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  2027. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="false" />
  2028. </lane>
  2029. </left>
  2030. <center>
  2031. <lane id="0" type="none" level="false">
  2032. <link />
  2033. </lane>
  2034. </center>
  2035. <right>
  2036. <lane id="-1" type="driving" level="false">
  2037. <link>
  2038. <predecessor id="-1" />
  2039. <successor id="-1" />
  2040. </link>
  2041. <width sOffset="0.0000000000000000e+00" a="2.2999999999999998e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  2042. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="false" />
  2043. </lane>
  2044. </right>
  2045. </laneSection>
  2046. </lanes>
  2047. <objects />
  2048. <signals />
  2049. </road>
  2050. <road name="" length="2.6235772450250284e+01" id="10059" junction="-1">
  2051. <link>
  2052. <predecessor elementType="road" elementId="10017" contactPoint="end" />
  2053. <successor elementType="road" elementId="10018" contactPoint="start" />
  2054. </link>
  2055. <planView>
  2056. <geometry s="0.0000000000000000e+00" x="8.2683487013354886e+02" y="-3.7957410835009074e+02" hdg="5.9415735637627920e+00" length="2.6235772450250284e+01">
  2057. <line />
  2058. </geometry>
  2059. </planView>
  2060. <elevationProfile>
  2061. <elevation s="0.0000000000000000e+00" a="0.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  2062. </elevationProfile>
  2063. <lateralProfile />
  2064. <lanes>
  2065. <laneSection s="0.0000000000000000e+00">
  2066. <left>
  2067. <lane id="1" type="driving" level="false">
  2068. <link>
  2069. <predecessor id="1" />
  2070. <successor id="1" />
  2071. </link>
  2072. <width sOffset="0.0000000000000000e+00" a="2.2999999999999998e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  2073. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="false" />
  2074. <speed sOffset="0.0000000000000000e+00" max="1.0000000000000000e+01" />
  2075. </lane>
  2076. </left>
  2077. <center>
  2078. <lane id="0" type="none" level="false">
  2079. <link />
  2080. </lane>
  2081. </center>
  2082. <right>
  2083. <lane id="-1" type="driving" level="false">
  2084. <link>
  2085. <predecessor id="-1" />
  2086. <successor id="-1" />
  2087. </link>
  2088. <width sOffset="0.0000000000000000e+00" a="2.2999999999999998e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  2089. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="false" />
  2090. <speed sOffset="0.0000000000000000e+00" max="1.0000000000000000e+01" />
  2091. </lane>
  2092. </right>
  2093. </laneSection>
  2094. </lanes>
  2095. <objects />
  2096. <signals />
  2097. </road>
  2098. <road name="" length="2.3341614396686154e+01" id="10061" junction="800002">
  2099. <link>
  2100. <predecessor elementType="road" elementId="10001" contactPoint="end" />
  2101. <successor elementType="road" elementId="10013" contactPoint="start" />
  2102. </link>
  2103. <planView>
  2104. <geometry s="0.0000000000000000e+00" x="5.8834410619505662e-01" y="-3.0129378300111989e+02" hdg="4.7142553468805000e+00" length="5.2011839277743759e+00">
  2105. <line />
  2106. </geometry>
  2107. <geometry s="5.2011839277743759e+00" x="5.9805141598078104e-01" y="-3.0649495787019276e+02" hdg="4.7142553468805000e+00" length="9.4320595285882511e+00">
  2108. <arc curvature="1.6666666666666666e-01" />
  2109. </geometry>
  2110. <geometry s="1.4633243456362628e+01" x="6.6165207035888640e+00" y="-3.1248373121925982e+02" hdg="3.0799611322889714e-03" length="8.7083709403235243e+00">
  2111. <line />
  2112. </geometry>
  2113. </planView>
  2114. <elevationProfile>
  2115. <elevation s="0.0000000000000000e+00" a="0.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  2116. </elevationProfile>
  2117. <lateralProfile />
  2118. <lanes>
  2119. <laneSection s="0.0000000000000000e+00">
  2120. <left>
  2121. <lane id="1" type="driving" level="false">
  2122. <link>
  2123. <predecessor id="1" />
  2124. <successor id="1" />
  2125. </link>
  2126. <width sOffset="0.0000000000000000e+00" a="3.2000000000000002e+00" b="-3.8557744323279318e-02" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  2127. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="false" />
  2128. </lane>
  2129. </left>
  2130. <center>
  2131. <lane id="0" type="none" level="false">
  2132. <link />
  2133. </lane>
  2134. </center>
  2135. <right>
  2136. <lane id="-1" type="driving" level="false">
  2137. <link>
  2138. <predecessor id="-1" />
  2139. <successor id="-1" />
  2140. </link>
  2141. <width sOffset="0.0000000000000000e+00" a="3.2000000000000002e+00" b="-3.8557744323279318e-02" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  2142. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="false" />
  2143. </lane>
  2144. </right>
  2145. </laneSection>
  2146. </lanes>
  2147. <objects />
  2148. <signals />
  2149. </road>
  2150. <road name="" length="2.5122258544827766e+01" id="10031" junction="-1">
  2151. <link>
  2152. <predecessor elementType="road" elementId="10026" contactPoint="end" />
  2153. <successor elementType="road" elementId="10027" contactPoint="start" />
  2154. </link>
  2155. <planView>
  2156. <geometry s="0.0000000000000000e+00" x="1.5194704554974990e+01" y="1.3755198967456812e+02" hdg="3.1445433696348668e+00" length="9.5127661129935035e+00">
  2157. <line />
  2158. </geometry>
  2159. <geometry s="9.5127661129935035e+00" x="5.6819798544715576e+00" y="1.3752392024369766e+02" hdg="3.1445433696348668e+00" length="9.4226954277189705e+00">
  2160. <arc curvature="1.6666666666666666e-01" />
  2161. </geometry>
  2162. <geometry s="1.8935461540712474e+01" x="-3.0029553833670908e-01" y="1.3150832461828386e+02" hdg="4.7149926075880284e+00" length="6.1867970041152907e+00">
  2163. <line />
  2164. </geometry>
  2165. </planView>
  2166. <elevationProfile>
  2167. <elevation s="0.0000000000000000e+00" a="0.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  2168. </elevationProfile>
  2169. <lateralProfile />
  2170. <lanes>
  2171. <laneSection s="0.0000000000000000e+00">
  2172. <left>
  2173. <lane id="1" type="driving" level="false">
  2174. <link>
  2175. <predecessor id="1" />
  2176. <successor id="1" />
  2177. </link>
  2178. <width sOffset="0.0000000000000000e+00" a="2.2999999999999998e+00" b="3.5824804461511865e-02" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  2179. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="false" />
  2180. </lane>
  2181. </left>
  2182. <center>
  2183. <lane id="0" type="none" level="false">
  2184. <link />
  2185. </lane>
  2186. </center>
  2187. <right>
  2188. <lane id="-1" type="driving" level="false">
  2189. <link>
  2190. <predecessor id="-1" />
  2191. <successor id="-1" />
  2192. </link>
  2193. <width sOffset="0.0000000000000000e+00" a="2.2999999999999998e+00" b="3.5824804461511865e-02" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  2194. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="false" />
  2195. </lane>
  2196. </right>
  2197. </laneSection>
  2198. </lanes>
  2199. <objects />
  2200. <signals />
  2201. </road>
  2202. <road name="" length="3.1596721569617866e+01" id="10062" junction="800002">
  2203. <link>
  2204. <predecessor elementType="road" elementId="10013" contactPoint="start" />
  2205. <successor elementType="road" elementId="10002" contactPoint="start" />
  2206. </link>
  2207. <planView>
  2208. <geometry s="0.0000000000000000e+00" x="1.5324850339442492e+01" y="-3.1245690981764346e+02" hdg="3.1446726147220820e+00" length="8.7079308049652422e+00">
  2209. <line />
  2210. </geometry>
  2211. <geometry s="8.7079308049652422e+00" x="6.6169608368595521e+00" y="-3.1248372986366212e+02" hdg="3.1446726147220820e+00" length="9.4211043808720394e+00">
  2212. <arc curvature="1.6666666666666666e-01" />
  2213. </geometry>
  2214. <geometry s="1.8129035185837282e+01" x="6.3545884302455657e-01" y="-3.1849850757707213e+02" hdg="4.7148566782007553e+00" length="1.3467686383780585e+01">
  2215. <line />
  2216. </geometry>
  2217. </planView>
  2218. <elevationProfile>
  2219. <elevation s="0.0000000000000000e+00" a="0.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  2220. </elevationProfile>
  2221. <lateralProfile />
  2222. <lanes>
  2223. <laneSection s="0.0000000000000000e+00">
  2224. <left>
  2225. <lane id="1" type="driving" level="false">
  2226. <link>
  2227. <predecessor id="-1" />
  2228. <successor id="1" />
  2229. </link>
  2230. <width sOffset="0.0000000000000000e+00" a="2.2999999999999998e+00" b="2.8483967807134903e-02" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  2231. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="false" />
  2232. </lane>
  2233. </left>
  2234. <center>
  2235. <lane id="0" type="none" level="false">
  2236. <link />
  2237. </lane>
  2238. </center>
  2239. <right>
  2240. <lane id="-1" type="driving" level="false">
  2241. <link>
  2242. <predecessor id="1" />
  2243. <successor id="-1" />
  2244. </link>
  2245. <width sOffset="0.0000000000000000e+00" a="2.2999999999999998e+00" b="2.8483967807134903e-02" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  2246. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="false" />
  2247. </lane>
  2248. </right>
  2249. </laneSection>
  2250. </lanes>
  2251. <objects />
  2252. <signals />
  2253. </road>
  2254. <road name="" length="2.8048393517195684e+01" id="10063" junction="-1">
  2255. <link>
  2256. <predecessor elementType="road" elementId="10002" contactPoint="end" />
  2257. <successor elementType="road" elementId="10004" contactPoint="start" />
  2258. </link>
  2259. <planView>
  2260. <geometry s="0.0000000000000000e+00" x="1.0330558587742782e+00" y="-4.7961880605970873e+02" hdg="4.7148566782007553e+00" length="1.0343962986223746e+01">
  2261. <line />
  2262. </geometry>
  2263. <geometry s="1.0343962986223746e+01" x="1.0585816077381793e+00" y="-4.8996273755099901e+02" hdg="4.7148566782007553e+00" length="9.4238568978297970e+00">
  2264. <arc curvature="1.6666666666666666e-01" />
  2265. </geometry>
  2266. <geometry s="1.9767819884053544e+01" x="7.0724484507131837e+00" y="-4.9594791531274797e+02" hdg="2.3141873261354087e-03" length="8.2805736331421382e+00">
  2267. <line />
  2268. </geometry>
  2269. </planView>
  2270. <elevationProfile>
  2271. <elevation s="0.0000000000000000e+00" a="0.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  2272. </elevationProfile>
  2273. <lateralProfile />
  2274. <lanes>
  2275. <laneSection s="0.0000000000000000e+00">
  2276. <left>
  2277. <lane id="1" type="driving" level="false">
  2278. <link>
  2279. <predecessor id="1" />
  2280. <successor id="1" />
  2281. </link>
  2282. <width sOffset="0.0000000000000000e+00" a="3.2000000000000002e+00" b="-7.1305331578931886e-03" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  2283. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="false" />
  2284. </lane>
  2285. </left>
  2286. <center>
  2287. <lane id="0" type="none" level="false">
  2288. <link />
  2289. </lane>
  2290. </center>
  2291. <right>
  2292. <lane id="-1" type="driving" level="false">
  2293. <link>
  2294. <predecessor id="-1" />
  2295. <successor id="-1" />
  2296. </link>
  2297. <width sOffset="0.0000000000000000e+00" a="3.2000000000000002e+00" b="-7.1305331578931886e-03" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  2298. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="false" />
  2299. </lane>
  2300. </right>
  2301. </laneSection>
  2302. </lanes>
  2303. <objects />
  2304. <signals />
  2305. </road>
  2306. <road name="" length="3.1631985749116062e+01" id="10045" junction="-1">
  2307. <link>
  2308. <predecessor elementType="road" elementId="10021" contactPoint="end" />
  2309. <successor elementType="road" elementId="10022" contactPoint="start" />
  2310. </link>
  2311. <planView>
  2312. <geometry s="0.0000000000000000e+00" x="8.1016151663288656e+02" y="1.3926181386788130e+02" hdg="3.1443143914848561e+00" length="3.1631985749116062e+01">
  2313. <line />
  2314. </geometry>
  2315. </planView>
  2316. <elevationProfile>
  2317. <elevation s="0.0000000000000000e+00" a="0.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  2318. </elevationProfile>
  2319. <lateralProfile />
  2320. <lanes>
  2321. <laneSection s="0.0000000000000000e+00">
  2322. <left>
  2323. <lane id="1" type="driving" level="false">
  2324. <link>
  2325. <predecessor id="1" />
  2326. <successor id="1" />
  2327. </link>
  2328. <width sOffset="0.0000000000000000e+00" a="3.0000000000000000e+00" b="-2.2129499094743404e-02" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  2329. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="false" />
  2330. </lane>
  2331. </left>
  2332. <center>
  2333. <lane id="0" type="none" level="false">
  2334. <link />
  2335. </lane>
  2336. </center>
  2337. <right>
  2338. <lane id="-1" type="driving" level="false">
  2339. <link>
  2340. <predecessor id="-1" />
  2341. <successor id="-1" />
  2342. </link>
  2343. <width sOffset="0.0000000000000000e+00" a="3.0000000000000000e+00" b="-2.2129499094743404e-02" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  2344. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="false" />
  2345. </lane>
  2346. </right>
  2347. </laneSection>
  2348. </lanes>
  2349. <objects />
  2350. <signals />
  2351. </road>
  2352. <road name="" length="2.2481948235419530e+01" id="10039" junction="800003">
  2353. <link>
  2354. <predecessor elementType="road" elementId="10018" contactPoint="end" />
  2355. <successor elementType="road" elementId="10011" contactPoint="start" />
  2356. </link>
  2357. <planView>
  2358. <geometry s="0.0000000000000000e+00" x="9.7487936731055368e+02" y="-4.3221471650525928e+02" hdg="5.9415506031344494e+00" length="8.2348514500946361e+00">
  2359. <line />
  2360. </geometry>
  2361. <geometry s="8.2348514500946361e+00" x="9.8263831231261418e+02" y="-4.3497362042894457e+02" hdg="5.9415506031344494e+00" length="9.4663118247634337e+00">
  2362. <arc curvature="1.6666666666666666e-01" />
  2363. </geometry>
  2364. <geometry s="1.7701163274858068e+01" x="9.9031550789761263e+02" y="-4.3129135613409193e+02" hdg="1.2360839334154354e+00" length="4.7807849605614638e+00">
  2365. <line />
  2366. </geometry>
  2367. </planView>
  2368. <elevationProfile>
  2369. <elevation s="0.0000000000000000e+00" a="0.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  2370. </elevationProfile>
  2371. <lateralProfile />
  2372. <lanes>
  2373. <laneSection s="0.0000000000000000e+00">
  2374. <left>
  2375. <lane id="1" type="driving" level="false">
  2376. <link>
  2377. <predecessor id="1" />
  2378. <successor id="1" />
  2379. </link>
  2380. <width sOffset="0.0000000000000000e+00" a="2.2999999999999998e+00" b="3.1136091617592752e-02" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  2381. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="false" />
  2382. </lane>
  2383. </left>
  2384. <center>
  2385. <lane id="0" type="none" level="false">
  2386. <link />
  2387. </lane>
  2388. </center>
  2389. <right>
  2390. <lane id="-1" type="driving" level="false">
  2391. <link>
  2392. <predecessor id="-1" />
  2393. <successor id="-1" />
  2394. </link>
  2395. <width sOffset="0.0000000000000000e+00" a="2.2999999999999998e+00" b="3.1136091617592752e-02" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  2396. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="false" />
  2397. </lane>
  2398. </right>
  2399. </laneSection>
  2400. </lanes>
  2401. <objects />
  2402. <signals />
  2403. </road>
  2404. <road name="" length="2.2687286636301547e+01" id="10040" junction="800003">
  2405. <link>
  2406. <predecessor elementType="road" elementId="10018" contactPoint="end" />
  2407. <successor elementType="road" elementId="10010" contactPoint="end" />
  2408. </link>
  2409. <planView>
  2410. <geometry s="0.0000000000000000e+00" x="9.7487936731055368e+02" y="-4.3221471650525928e+02" hdg="5.9415506031344494e+00" length="8.2822369764010713e+00">
  2411. <line />
  2412. </geometry>
  2413. <geometry s="8.2822369764010713e+00" x="9.8268295934659329e+02" y="-4.3498949589618826e+02" hdg="5.9415506031344494e+00" length="9.3812365707469034e+00">
  2414. <arc curvature="-1.6666666666666666e-01" />
  2415. </geometry>
  2416. <geometry s="1.7663473547147973e+01" x="9.8634048083286939e+02" y="-4.4261183441419900e+02" hdg="4.3780111746766321e+00" length="5.0238130891535739e+00">
  2417. <line />
  2418. </geometry>
  2419. </planView>
  2420. <elevationProfile>
  2421. <elevation s="0.0000000000000000e+00" a="0.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  2422. </elevationProfile>
  2423. <lateralProfile />
  2424. <lanes>
  2425. <laneSection s="0.0000000000000000e+00">
  2426. <left>
  2427. <lane id="1" type="driving" level="false">
  2428. <link>
  2429. <predecessor id="1" />
  2430. <successor id="-1" />
  2431. </link>
  2432. <width sOffset="0.0000000000000000e+00" a="2.2999999999999998e+00" b="3.0854284658260629e-02" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  2433. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="false" />
  2434. </lane>
  2435. </left>
  2436. <center>
  2437. <lane id="0" type="none" level="false">
  2438. <link />
  2439. </lane>
  2440. </center>
  2441. <right>
  2442. <lane id="-1" type="driving" level="false">
  2443. <link>
  2444. <predecessor id="-1" />
  2445. <successor id="1" />
  2446. </link>
  2447. <width sOffset="0.0000000000000000e+00" a="2.2999999999999998e+00" b="3.0854284658260629e-02" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  2448. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="false" />
  2449. </lane>
  2450. </right>
  2451. </laneSection>
  2452. </lanes>
  2453. <objects />
  2454. <signals />
  2455. </road>
  2456. <road name="" length="1.7771279777600537e+02" id="10003" junction="-1">
  2457. <link>
  2458. <predecessor elementType="road" elementId="10032" contactPoint="end" />
  2459. <successor elementType="road" elementId="10050" contactPoint="start" />
  2460. </link>
  2461. <planView>
  2462. <geometry s="0.0000000000000000e+00" x="9.7243029389011838e+01" y="-1.7624916875032824e+02" hdg="1.5724883841168056e+00" length="1.7771279777600537e+02">
  2463. <line />
  2464. </geometry>
  2465. </planView>
  2466. <elevationProfile>
  2467. <elevation s="0.0000000000000000e+00" a="-5.2649999999999979e+00" b="-1.6405346519902666e-05" c="-2.4407874285602680e-06" d="0.0000000000000000e+00" />
  2468. </elevationProfile>
  2469. <lateralProfile />
  2470. <lanes>
  2471. <laneSection s="0.0000000000000000e+00">
  2472. <left>
  2473. <lane id="1" type="driving" level="false">
  2474. <link>
  2475. <predecessor id="1" />
  2476. <successor id="1" />
  2477. </link>
  2478. <width sOffset="0.0000000000000000e+00" a="2.2999999999999998e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  2479. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="both" />
  2480. </lane>
  2481. </left>
  2482. <center>
  2483. <lane id="0" type="none" level="false">
  2484. <link />
  2485. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="yellow" width="1.4999999999999999e-01" laneChange="both" />
  2486. </lane>
  2487. </center>
  2488. <right>
  2489. <lane id="-1" type="driving" level="false">
  2490. <link>
  2491. <predecessor id="-1" />
  2492. <successor id="-1" />
  2493. </link>
  2494. <width sOffset="0.0000000000000000e+00" a="2.2999999999999998e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  2495. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="both" />
  2496. </lane>
  2497. </right>
  2498. </laneSection>
  2499. </lanes>
  2500. <objects />
  2501. <signals />
  2502. </road>
  2503. <road name="" length="7.1867733878800721e+01" id="10028" junction="-1">
  2504. <link>
  2505. <predecessor elementType="road" elementId="10050" contactPoint="end" />
  2506. <successor elementType="junction" elementId="800000" contactPoint="NA" />
  2507. </link>
  2508. <planView>
  2509. <geometry s="0.0000000000000000e+00" x="8.7100900047961915e+01" y="1.2750559248479066e+01" hdg="3.1435147244225514e+00" length="7.1867733878800721e+01">
  2510. <line />
  2511. </geometry>
  2512. </planView>
  2513. <elevationProfile>
  2514. <elevation s="0.0000000000000000e+00" a="-5.3430000000000009e+00" b="1.1584558863230346e-03" c="-4.8902078224221917e-06" d="0.0000000000000000e+00" />
  2515. </elevationProfile>
  2516. <lateralProfile />
  2517. <lanes>
  2518. <laneSection s="0.0000000000000000e+00">
  2519. <left>
  2520. <lane id="1" type="driving" level="false">
  2521. <link>
  2522. <predecessor id="1" />
  2523. </link>
  2524. <width sOffset="0.0000000000000000e+00" a="2.2999999999999998e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  2525. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="both" />
  2526. </lane>
  2527. </left>
  2528. <center>
  2529. <lane id="0" type="none" level="false">
  2530. <link />
  2531. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="yellow" width="1.4999999999999999e-01" laneChange="both" />
  2532. </lane>
  2533. </center>
  2534. <right>
  2535. <lane id="-1" type="driving" level="false">
  2536. <link>
  2537. <predecessor id="-1" />
  2538. </link>
  2539. <width sOffset="0.0000000000000000e+00" a="2.2999999999999998e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  2540. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="both" />
  2541. </lane>
  2542. </right>
  2543. </laneSection>
  2544. </lanes>
  2545. <objects />
  2546. <signals />
  2547. </road>
  2548. <road name="" length="7.4502182090638101e+01" id="10030" junction="-1">
  2549. <link>
  2550. <predecessor elementType="junction" elementId="800001" contactPoint="NA" />
  2551. <successor elementType="road" elementId="10032" contactPoint="start" />
  2552. </link>
  2553. <planView>
  2554. <geometry s="0.0000000000000000e+00" x="1.2635954562328754e+01" y="-1.8735633144332914e+02" hdg="2.0846801875460362e-03" length="7.4502182090638101e+01">
  2555. <line />
  2556. </geometry>
  2557. </planView>
  2558. <elevationProfile>
  2559. <elevation s="0.0000000000000000e+00" a="-5.3289999999999997e+00" b="1.0210272461654850e-03" c="-7.3990134841959467e-06" d="0.0000000000000000e+00" />
  2560. </elevationProfile>
  2561. <lateralProfile />
  2562. <lanes>
  2563. <laneSection s="0.0000000000000000e+00">
  2564. <left>
  2565. <lane id="1" type="driving" level="false">
  2566. <link>
  2567. <successor id="1" />
  2568. </link>
  2569. <width sOffset="0.0000000000000000e+00" a="2.2999999999999998e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  2570. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="both" />
  2571. </lane>
  2572. </left>
  2573. <center>
  2574. <lane id="0" type="none" level="false">
  2575. <link />
  2576. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="yellow" width="1.4999999999999999e-01" laneChange="both" />
  2577. </lane>
  2578. </center>
  2579. <right>
  2580. <lane id="-1" type="driving" level="false">
  2581. <link>
  2582. <successor id="-1" />
  2583. </link>
  2584. <width sOffset="0.0000000000000000e+00" a="2.2999999999999998e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  2585. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="both" />
  2586. </lane>
  2587. </right>
  2588. </laneSection>
  2589. </lanes>
  2590. <objects />
  2591. <signals />
  2592. </road>
  2593. <road name="" length="1.8481465696906838e+01" id="10032" junction="-1">
  2594. <link>
  2595. <predecessor elementType="road" elementId="10030" contactPoint="end" />
  2596. <successor elementType="road" elementId="10003" contactPoint="start" />
  2597. </link>
  2598. <planView>
  2599. <geometry s="0.0000000000000000e+00" x="8.7137974763826122e+01" y="-1.8720101833289155e+02" hdg="2.0846801875460362e-03" length="4.1259273630872615e+00">
  2600. <line />
  2601. </geometry>
  2602. <geometry s="4.1259273630872615e+00" x="9.1263893161500334e+01" y="-1.8719241710009248e+02" hdg="2.0846801875460362e-03" length="9.4224222235755573e+00">
  2603. <arc curvature="1.6666666666666666e-01" />
  2604. </geometry>
  2605. <geometry s="1.3548349586662820e+01" x="9.7251376500262964e+01" y="-1.8118227779867522e+02" hdg="1.5724883841168056e+00" length="4.9331161102440175e+00">
  2606. <line />
  2607. </geometry>
  2608. </planView>
  2609. <elevationProfile>
  2610. <elevation s="0.0000000000000000e+00" a="-5.2940000224649557e+00" b="1.5691408322561461e-03" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  2611. </elevationProfile>
  2612. <lateralProfile />
  2613. <lanes>
  2614. <laneSection s="0.0000000000000000e+00">
  2615. <left>
  2616. <lane id="1" type="driving" level="false">
  2617. <link>
  2618. <predecessor id="1" />
  2619. <successor id="1" />
  2620. </link>
  2621. <width sOffset="0.0000000000000000e+00" a="2.2999999999999998e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  2622. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="false" />
  2623. </lane>
  2624. </left>
  2625. <center>
  2626. <lane id="0" type="none" level="false">
  2627. <link />
  2628. </lane>
  2629. </center>
  2630. <right>
  2631. <lane id="-1" type="driving" level="false">
  2632. <link>
  2633. <predecessor id="-1" />
  2634. <successor id="-1" />
  2635. </link>
  2636. <width sOffset="0.0000000000000000e+00" a="2.2999999999999998e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  2637. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="false" />
  2638. </lane>
  2639. </right>
  2640. </laneSection>
  2641. </lanes>
  2642. <objects />
  2643. <signals />
  2644. </road>
  2645. <road name="" length="1.8551794409215720e+01" id="10050" junction="-1">
  2646. <link>
  2647. <predecessor elementType="road" elementId="10003" contactPoint="end" />
  2648. <successor elementType="road" elementId="10028" contactPoint="start" />
  2649. </link>
  2650. <planView>
  2651. <geometry s="0.0000000000000000e+00" x="9.6942329291825033e+01" y="1.4633746247158683e+00" hdg="1.5724883841168056e+00" length="5.3046997460563112e+00">
  2652. <line />
  2653. </geometry>
  2654. <geometry s="5.3046997460563112e+00" x="9.6933353440062248e+01" y="6.7680667769425202e+00" hdg="1.5724883841168056e+00" length="9.4261580418344746e+00">
  2655. <arc curvature="1.6666666666666666e-01" />
  2656. </geometry>
  2657. <geometry s="1.4730857787890786e+01" x="9.0921829611338410e+01" y="1.2757903354790077e+01" hdg="3.1435147244225514e+00" length="3.8209366213249343e+00">
  2658. <line />
  2659. </geometry>
  2660. </planView>
  2661. <elevationProfile>
  2662. <elevation s="0.0000000000000000e+00" a="-5.3449999943939863e+00" b="1.0780598091319677e-04" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  2663. </elevationProfile>
  2664. <lateralProfile />
  2665. <lanes>
  2666. <laneSection s="0.0000000000000000e+00">
  2667. <left>
  2668. <lane id="1" type="driving" level="false">
  2669. <link>
  2670. <predecessor id="1" />
  2671. <successor id="1" />
  2672. </link>
  2673. <width sOffset="0.0000000000000000e+00" a="2.2999999999999998e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  2674. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="false" />
  2675. </lane>
  2676. </left>
  2677. <center>
  2678. <lane id="0" type="none" level="false">
  2679. <link />
  2680. </lane>
  2681. </center>
  2682. <right>
  2683. <lane id="-1" type="driving" level="false">
  2684. <link>
  2685. <predecessor id="-1" />
  2686. <successor id="-1" />
  2687. </link>
  2688. <width sOffset="0.0000000000000000e+00" a="2.2999999999999998e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  2689. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="false" />
  2690. </lane>
  2691. </right>
  2692. </laneSection>
  2693. </lanes>
  2694. <objects />
  2695. <signals />
  2696. </road>
  2697. <road name="" length="2.5271370661713995e+01" id="10052" junction="800000">
  2698. <link>
  2699. <predecessor elementType="road" elementId="10028" contactPoint="end" />
  2700. <successor elementType="road" elementId="10000" contactPoint="start" />
  2701. </link>
  2702. <planView>
  2703. <geometry s="0.0000000000000000e+00" x="1.5233298921627537e+01" y="1.2612424458427421e+01" hdg="3.1435147244225514e+00" length="9.2634706258378845e+00">
  2704. <line />
  2705. </geometry>
  2706. <geometry s="9.2634706258378845e+00" x="5.9698454070648515e+00" y="1.2594619422690416e+01" hdg="3.1435147244225514e+00" length="9.4251704088266450e+00">
  2707. <arc curvature="1.6666666666666666e-01" />
  2708. </geometry>
  2709. <geometry s="1.8688641034664528e+01" x="-1.8610324826868245e-02" y="6.5827056405527324e+00" hdg="4.7143764592269921e+00" length="6.5827296270494680e+00">
  2710. <line />
  2711. </geometry>
  2712. </planView>
  2713. <elevationProfile>
  2714. <elevation s="0.0000000000000000e+00" a="-5.2850021830835807e+00" b="2.0913001727644057e-01" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  2715. </elevationProfile>
  2716. <lateralProfile />
  2717. <lanes>
  2718. <laneSection s="0.0000000000000000e+00">
  2719. <left>
  2720. <lane id="1" type="driving" level="false">
  2721. <link>
  2722. <predecessor id="1" />
  2723. <successor id="1" />
  2724. </link>
  2725. <width sOffset="0.0000000000000000e+00" a="2.2999999999999998e+00" b="3.5613422479038544e-02" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  2726. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="false" />
  2727. </lane>
  2728. </left>
  2729. <center>
  2730. <lane id="0" type="none" level="false">
  2731. <link />
  2732. </lane>
  2733. </center>
  2734. <right>
  2735. <lane id="-1" type="driving" level="false">
  2736. <link>
  2737. <predecessor id="-1" />
  2738. <successor id="-1" />
  2739. </link>
  2740. <width sOffset="0.0000000000000000e+00" a="2.2999999999999998e+00" b="3.5613422479038544e-02" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  2741. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="false" />
  2742. </lane>
  2743. </right>
  2744. </laneSection>
  2745. </lanes>
  2746. <objects />
  2747. <signals />
  2748. </road>
  2749. <road name="" length="2.2779512432175380e+01" id="10053" junction="800000">
  2750. <link>
  2751. <predecessor elementType="road" elementId="10028" contactPoint="end" />
  2752. <successor elementType="road" elementId="10027" contactPoint="end" />
  2753. </link>
  2754. <planView>
  2755. <geometry s="0.0000000000000000e+00" x="1.5233298921627537e+01" y="1.2612424458427421e+01" hdg="3.1435147244225514e+00" length="9.2280730407879155e+00">
  2756. <line />
  2757. </geometry>
  2758. <geometry s="9.2280730407879155e+00" x="6.0052429267291965e+00" y="1.2594687459314299e+01" hdg="3.1435147244225514e+00" length="9.4206886225458959e+00">
  2759. <arc curvature="-1.6666666666666666e-01" />
  2760. </geometry>
  2761. <geometry s="1.8648761663333811e+01" x="-6.2691545541858230e-03" y="1.8579054630678478e+01" hdg="1.5733999539982353e+00" length="4.1307507688415690e+00">
  2762. <line />
  2763. </geometry>
  2764. </planView>
  2765. <elevationProfile>
  2766. <elevation s="0.0000000000000000e+00" a="-5.2850021830835807e+00" b="2.3200681747773816e-01" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  2767. </elevationProfile>
  2768. <lateralProfile />
  2769. <lanes>
  2770. <laneSection s="0.0000000000000000e+00">
  2771. <left>
  2772. <lane id="1" type="driving" level="false">
  2773. <link>
  2774. <predecessor id="1" />
  2775. <successor id="-1" />
  2776. </link>
  2777. <width sOffset="0.0000000000000000e+00" a="2.2999999999999998e+00" b="3.9509186277787808e-02" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  2778. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="false" />
  2779. </lane>
  2780. </left>
  2781. <center>
  2782. <lane id="0" type="none" level="false">
  2783. <link />
  2784. </lane>
  2785. </center>
  2786. <right>
  2787. <lane id="-1" type="driving" level="false">
  2788. <link>
  2789. <predecessor id="-1" />
  2790. <successor id="1" />
  2791. </link>
  2792. <width sOffset="0.0000000000000000e+00" a="2.2999999999999998e+00" b="3.9509186277787808e-02" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  2793. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="false" />
  2794. </lane>
  2795. </right>
  2796. </laneSection>
  2797. </lanes>
  2798. <objects />
  2799. <signals />
  2800. </road>
  2801. <road name="" length="1.9554970701404820e+01" id="10054" junction="800001">
  2802. <link>
  2803. <predecessor elementType="road" elementId="10000" contactPoint="end" />
  2804. <successor elementType="road" elementId="10030" contactPoint="start" />
  2805. </link>
  2806. <planView>
  2807. <geometry s="0.0000000000000000e+00" x="3.4729087118513413e-01" y="-1.7752024249916988e+02" hdg="4.7143764592269921e+00" length="3.8611022962217767e+00">
  2808. <line />
  2809. </geometry>
  2810. <geometry s="3.8611022962217767e+00" x="3.5496472525479106e-01" y="-1.8138133716957785e+02" hdg="4.7143764592269921e+00" length="9.4253611688408423e+00">
  2811. <arc curvature="1.6666666666666666e-01" />
  2812. </geometry>
  2813. <geometry s="1.3286463465062619e+01" x="6.3674609471077313e+00" y="-1.8736939926670499e+02" hdg="2.0846801875460362e-03" length="6.2685072363421996e+00">
  2814. <line />
  2815. </geometry>
  2816. </planView>
  2817. <elevationProfile>
  2818. <elevation s="0.0000000000000000e+00" a="0.0000000000000000e+00" b="-2.7251383197506746e-01" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  2819. </elevationProfile>
  2820. <lateralProfile />
  2821. <lanes>
  2822. <laneSection s="0.0000000000000000e+00">
  2823. <left>
  2824. <lane id="1" type="driving" level="false">
  2825. <link>
  2826. <predecessor id="1" />
  2827. <successor id="1" />
  2828. </link>
  2829. <width sOffset="0.0000000000000000e+00" a="3.2000000000000002e+00" b="-4.6024103730073339e-02" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  2830. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="false" />
  2831. </lane>
  2832. </left>
  2833. <center>
  2834. <lane id="0" type="none" level="false">
  2835. <link />
  2836. </lane>
  2837. </center>
  2838. <right>
  2839. <lane id="-1" type="driving" level="false">
  2840. <link>
  2841. <predecessor id="-1" />
  2842. <successor id="-1" />
  2843. </link>
  2844. <width sOffset="0.0000000000000000e+00" a="3.2000000000000002e+00" b="-4.6024103730073339e-02" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  2845. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="false" />
  2846. </lane>
  2847. </right>
  2848. </laneSection>
  2849. </lanes>
  2850. <objects />
  2851. <signals />
  2852. </road>
  2853. <road name="" length="2.0665868185132588e+01" id="10060" junction="800001">
  2854. <link>
  2855. <predecessor elementType="road" elementId="10030" contactPoint="start" />
  2856. <successor elementType="road" elementId="10001" contactPoint="start" />
  2857. </link>
  2858. <planView>
  2859. <geometry s="0.0000000000000000e+00" x="1.2635954562328754e+01" y="-1.8735633144332914e+02" hdg="3.1436773337773389e+00" length="6.2615484233817336e+00">
  2860. <line />
  2861. </geometry>
  2862. <geometry s="6.2615484233817336e+00" x="6.3744197449470787e+00" y="-1.8736938475981603e+02" hdg="3.1436773337773389e+00" length="9.4234680786189671e+00">
  2863. <arc curvature="1.6666666666666666e-01" />
  2864. </geometry>
  2865. <geometry s="1.5685016502000700e+01" x="3.8693826698121792e-01" y="-1.9338056991462000e+02" hdg="4.7142553468805000e+00" length="4.9808516831318883e+00">
  2866. <line />
  2867. </geometry>
  2868. </planView>
  2869. <elevationProfile>
  2870. <elevation s="0.0000000000000000e+00" a="-5.3289999999999997e+00" b="2.5786480162656711e-01" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  2871. </elevationProfile>
  2872. <lateralProfile />
  2873. <lanes>
  2874. <laneSection s="0.0000000000000000e+00">
  2875. <left>
  2876. <lane id="1" type="driving" level="false">
  2877. <link>
  2878. <predecessor id="-1" />
  2879. <successor id="1" />
  2880. </link>
  2881. <width sOffset="0.0000000000000000e+00" a="2.2999999999999998e+00" b="4.3550069706119444e-02" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  2882. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="false" />
  2883. </lane>
  2884. </left>
  2885. <center>
  2886. <lane id="0" type="none" level="false">
  2887. <link />
  2888. </lane>
  2889. </center>
  2890. <right>
  2891. <lane id="-1" type="driving" level="false">
  2892. <link>
  2893. <predecessor id="1" />
  2894. <successor id="-1" />
  2895. </link>
  2896. <width sOffset="0.0000000000000000e+00" a="2.2999999999999998e+00" b="4.3550069706119444e-02" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  2897. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="false" />
  2898. </lane>
  2899. </right>
  2900. </laneSection>
  2901. </lanes>
  2902. <objects />
  2903. <signals />
  2904. </road>
  2905. <road name="" length="3.1928896427492763e+01" id="10064" junction="-1">
  2906. <link>
  2907. <predecessor elementType="road" elementId="10069" contactPoint="end" />
  2908. <successor elementType="road" elementId="10070" contactPoint="start" />
  2909. </link>
  2910. <planView>
  2911. <geometry s="0.0000000000000000e+00" x="1.9018023068621412e+02" y="1.4724726536041752e+02" hdg="1.5730969324644712e+00" length="3.1928896427492763e+01">
  2912. <line />
  2913. </geometry>
  2914. </planView>
  2915. <elevationProfile>
  2916. <elevation s="0.0000000000000000e+00" a="-5.2829999999999986e+00" b="1.7803344081562152e-02" c="-3.0451692647204232e-04" d="0.0000000000000000e+00" />
  2917. </elevationProfile>
  2918. <lateralProfile />
  2919. <lanes>
  2920. <laneSection s="0.0000000000000000e+00">
  2921. <center>
  2922. <lane id="0" type="none" level="false">
  2923. <link />
  2924. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="yellow" width="1.4999999999999999e-01" laneChange="none" />
  2925. </lane>
  2926. </center>
  2927. <right>
  2928. <lane id="-1" type="driving" level="false">
  2929. <link>
  2930. <predecessor id="-1" />
  2931. <successor id="-1" />
  2932. </link>
  2933. <width sOffset="0.0000000000000000e+00" a="3.6000000000000001e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  2934. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="none" />
  2935. </lane>
  2936. </right>
  2937. </laneSection>
  2938. </lanes>
  2939. <objects />
  2940. <signals />
  2941. </road>
  2942. <road name="" length="2.4077701784066079e+01" id="10065" junction="-1">
  2943. <link>
  2944. <predecessor elementType="road" elementId="10071" contactPoint="end" />
  2945. <successor elementType="road" elementId="10072" contactPoint="start" />
  2946. </link>
  2947. <planView>
  2948. <geometry s="0.0000000000000000e+00" x="1.6908818666697027e+02" y="1.7875866642615401e+02" hdg="4.7139455281701412e+00" length="2.4077701784066079e+01">
  2949. <line />
  2950. </geometry>
  2951. </planView>
  2952. <elevationProfile>
  2953. <elevation s="0.0000000000000000e+00" a="-5.0309999999999988e+00" b="-3.5907543221633097e-03" c="-6.4758601411435483e-05" d="0.0000000000000000e+00" />
  2954. </elevationProfile>
  2955. <lateralProfile />
  2956. <lanes>
  2957. <laneSection s="0.0000000000000000e+00">
  2958. <center>
  2959. <lane id="0" type="none" level="false">
  2960. <link />
  2961. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="yellow" width="1.4999999999999999e-01" laneChange="both" />
  2962. </lane>
  2963. </center>
  2964. <right>
  2965. <lane id="-1" type="driving" level="false">
  2966. <link>
  2967. <predecessor id="-1" />
  2968. <successor id="-1" />
  2969. </link>
  2970. <width sOffset="0.0000000000000000e+00" a="3.6000000000000001e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  2971. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="both" />
  2972. </lane>
  2973. </right>
  2974. </laneSection>
  2975. </lanes>
  2976. <objects />
  2977. <signals />
  2978. </road>
  2979. <road name="" length="7.5774503735327565e+00" id="10066" junction="-1">
  2980. <link>
  2981. <predecessor elementType="road" elementId="10070" contactPoint="end" />
  2982. <successor elementType="road" elementId="10071" contactPoint="start" />
  2983. </link>
  2984. <planView>
  2985. <geometry s="0.0000000000000000e+00" x="1.8390716140481223e+02" y="1.8568054665455779e+02" hdg="3.1396409528014533e+00" length="7.5774503735327565e+00">
  2986. <line />
  2987. </geometry>
  2988. </planView>
  2989. <elevationProfile>
  2990. <elevation s="0.0000000000000000e+00" a="-4.9669999999999987e+00" b="-4.5793559107737821e-03" c="4.1278082597654092e-04" d="0.0000000000000000e+00" />
  2991. </elevationProfile>
  2992. <lateralProfile />
  2993. <lanes>
  2994. <laneSection s="0.0000000000000000e+00">
  2995. <center>
  2996. <lane id="0" type="none" level="false">
  2997. <link />
  2998. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="yellow" width="1.4999999999999999e-01" laneChange="both" />
  2999. </lane>
  3000. </center>
  3001. <right>
  3002. <lane id="-1" type="driving" level="false">
  3003. <link>
  3004. <predecessor id="-1" />
  3005. <successor id="-1" />
  3006. </link>
  3007. <width sOffset="0.0000000000000000e+00" a="3.6000000000000001e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  3008. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="both" />
  3009. </lane>
  3010. </right>
  3011. </laneSection>
  3012. </lanes>
  3013. <objects />
  3014. <signals>
  3015. <signal s="4" t="0" id="0" name="" dynamic="yes" orientation="-" zOffset="0" type="1895" country="OpenDrive" countryRevision="2013" subtype="-1" hOffset="0" pitch="0" roll="0" height="0" width="0" />
  3016. </signals>
  3017. </road>
  3018. <road name="" length="5.3661593111183059e+01" id="10025" junction="-1">
  3019. <link>
  3020. <predecessor elementType="road" elementId="10048" contactPoint="end" />
  3021. <successor elementType="junction" elementId="800004" contactPoint="NA" />
  3022. </link>
  3023. <planView>
  3024. <geometry s="0.0000000000000000e+00" x="2.5685789777711028e+02" y="1.3808852507639671e+02" hdg="3.1436542591033891e+00" length="5.3661593111183059e+01">
  3025. <line />
  3026. </geometry>
  3027. </planView>
  3028. <elevationProfile>
  3029. <elevation s="0.0000000000000000e+00" a="-5.2439999999999980e+00" b="-1.3231064506954520e-03" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  3030. </elevationProfile>
  3031. <lateralProfile />
  3032. <lanes>
  3033. <laneSection s="0.0000000000000000e+00">
  3034. <left>
  3035. <lane id="1" type="driving" level="false">
  3036. <link>
  3037. <predecessor id="1" />
  3038. </link>
  3039. <width sOffset="0.0000000000000000e+00" a="2.2999999999999998e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  3040. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="none" />
  3041. </lane>
  3042. </left>
  3043. <center>
  3044. <lane id="0" type="none" level="false">
  3045. <link />
  3046. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="yellow" width="1.4999999999999999e-01" laneChange="both" />
  3047. </lane>
  3048. </center>
  3049. <right>
  3050. <lane id="-1" type="driving" level="false">
  3051. <link>
  3052. <predecessor id="-1" />
  3053. </link>
  3054. <width sOffset="0.0000000000000000e+00" a="2.2999999999999998e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  3055. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="none" />
  3056. </lane>
  3057. </right>
  3058. </laneSection>
  3059. </lanes>
  3060. <objects />
  3061. <signals />
  3062. </road>
  3063. <road name="" length="3.9833584473300157e+01" id="10067" junction="-1">
  3064. <link>
  3065. <predecessor elementType="junction" elementId="800004" contactPoint="NA" />
  3066. <successor elementType="road" elementId="10049" contactPoint="start" />
  3067. </link>
  3068. <planView>
  3069. <geometry s="0.0000000000000000e+00" x="1.5064799842238421e+02" y="1.3791246645990753e+02" hdg="3.1444083302056329e+00" length="3.9833584473300157e+01">
  3070. <line />
  3071. </geometry>
  3072. </planView>
  3073. <elevationProfile>
  3074. <elevation s="0.0000000000000000e+00" a="-5.3009999999999975e+00" b="1.4811622097314903e-03" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  3075. </elevationProfile>
  3076. <lateralProfile />
  3077. <lanes>
  3078. <laneSection s="0.0000000000000000e+00">
  3079. <left>
  3080. <lane id="1" type="driving" level="false">
  3081. <link>
  3082. <successor id="1" />
  3083. </link>
  3084. <width sOffset="0.0000000000000000e+00" a="2.2999999999999998e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  3085. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="both" />
  3086. </lane>
  3087. </left>
  3088. <center>
  3089. <lane id="0" type="none" level="false">
  3090. <link />
  3091. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="yellow" width="1.4999999999999999e-01" laneChange="both" />
  3092. </lane>
  3093. </center>
  3094. <right>
  3095. <lane id="-1" type="driving" level="false">
  3096. <link>
  3097. <successor id="-1" />
  3098. </link>
  3099. <width sOffset="0.0000000000000000e+00" a="2.2999999999999998e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  3100. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="both" />
  3101. </lane>
  3102. </right>
  3103. </laneSection>
  3104. </lanes>
  3105. <objects />
  3106. <signals />
  3107. </road>
  3108. <road name="" length="2.4539029649272326e+01" id="10048" junction="-1">
  3109. <link>
  3110. <predecessor elementType="road" elementId="10024" contactPoint="end" />
  3111. <successor elementType="road" elementId="10025" contactPoint="start" />
  3112. </link>
  3113. <planView>
  3114. <geometry s="0.0000000000000000e+00" x="2.8139691349118942e+02" y="1.3811467678844926e+02" hdg="3.1426583728695148e+00" length="2.4539029649272326e+01">
  3115. <line />
  3116. </geometry>
  3117. </planView>
  3118. <elevationProfile>
  3119. <elevation s="0.0000000000000000e+00" a="0.0000000000000000e+00" b="-2.1370038159416391e-01" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  3120. </elevationProfile>
  3121. <lateralProfile />
  3122. <lanes>
  3123. <laneSection s="0.0000000000000000e+00">
  3124. <left>
  3125. <lane id="1" type="driving" level="false">
  3126. <link>
  3127. <predecessor id="1" />
  3128. <successor id="1" />
  3129. </link>
  3130. <width sOffset="0.0000000000000000e+00" a="2.2999999999999998e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  3131. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="false" />
  3132. </lane>
  3133. </left>
  3134. <center>
  3135. <lane id="0" type="none" level="false">
  3136. <link />
  3137. </lane>
  3138. </center>
  3139. <right>
  3140. <lane id="-1" type="driving" level="false">
  3141. <link>
  3142. <predecessor id="-1" />
  3143. <successor id="-1" />
  3144. </link>
  3145. <width sOffset="0.0000000000000000e+00" a="2.2999999999999998e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  3146. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="false" />
  3147. </lane>
  3148. </right>
  3149. </laneSection>
  3150. </lanes>
  3151. <objects />
  3152. <signals />
  3153. </road>
  3154. <road name="" length="2.5291625430893944e+01" id="10049" junction="-1">
  3155. <link>
  3156. <predecessor elementType="road" elementId="10067" contactPoint="end" />
  3157. <successor elementType="road" elementId="10026" contactPoint="start" />
  3158. </link>
  3159. <planView>
  3160. <geometry s="0.0000000000000000e+00" x="1.1081457185000178e+02" y="1.3780030811578033e+02" hdg="3.1432057997260894e+00" length="2.5291625430893944e+01">
  3161. <line />
  3162. </geometry>
  3163. </planView>
  3164. <elevationProfile>
  3165. <elevation s="0.0000000000000000e+00" a="-5.2419999999999982e+00" b="2.0726228190920654e-01" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  3166. </elevationProfile>
  3167. <lateralProfile />
  3168. <lanes>
  3169. <laneSection s="0.0000000000000000e+00">
  3170. <left>
  3171. <lane id="1" type="driving" level="false">
  3172. <link>
  3173. <predecessor id="1" />
  3174. <successor id="1" />
  3175. </link>
  3176. <width sOffset="0.0000000000000000e+00" a="2.2999999999999998e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  3177. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="false" />
  3178. </lane>
  3179. </left>
  3180. <center>
  3181. <lane id="0" type="none" level="false">
  3182. <link />
  3183. </lane>
  3184. </center>
  3185. <right>
  3186. <lane id="-1" type="driving" level="false">
  3187. <link>
  3188. <predecessor id="-1" />
  3189. <successor id="-1" />
  3190. </link>
  3191. <width sOffset="0.0000000000000000e+00" a="2.2999999999999998e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  3192. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="false" />
  3193. </lane>
  3194. </right>
  3195. </laneSection>
  3196. </lanes>
  3197. <objects />
  3198. <signals />
  3199. </road>
  3200. <road name="" length="5.2548461014445230e+01" id="10068" junction="800004">
  3201. <link>
  3202. <predecessor elementType="road" elementId="10025" contactPoint="end" />
  3203. <successor elementType="road" elementId="10067" contactPoint="start" />
  3204. </link>
  3205. <planView>
  3206. <geometry s="0.0000000000000000e+00" x="2.0319641870260236e+02" y="1.3797789611853656e+02" hdg="3.1428377837852808e+00" length="5.2548461014445230e+01">
  3207. <line />
  3208. </geometry>
  3209. </planView>
  3210. <elevationProfile>
  3211. <elevation s="0.0000000000000000e+00" a="-5.3149999999999986e+00" b="2.6642074248668505e-04" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  3212. </elevationProfile>
  3213. <lateralProfile />
  3214. <lanes>
  3215. <laneSection s="0.0000000000000000e+00">
  3216. <left>
  3217. <lane id="1" type="driving" level="false">
  3218. <link>
  3219. <predecessor id="1" />
  3220. <successor id="1" />
  3221. </link>
  3222. <width sOffset="0.0000000000000000e+00" a="2.2999999999999998e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  3223. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="false" />
  3224. </lane>
  3225. </left>
  3226. <center>
  3227. <lane id="0" type="none" level="false">
  3228. <link />
  3229. </lane>
  3230. </center>
  3231. <right>
  3232. <lane id="-1" type="driving" level="false">
  3233. <link>
  3234. <predecessor id="-1" />
  3235. <successor id="-1" />
  3236. </link>
  3237. <width sOffset="0.0000000000000000e+00" a="2.2999999999999998e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  3238. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="false" />
  3239. </lane>
  3240. </right>
  3241. </laneSection>
  3242. </lanes>
  3243. <objects />
  3244. <signals />
  3245. </road>
  3246. <road name="" length="1.9717224450951960e+01" id="10069" junction="800004">
  3247. <link>
  3248. <predecessor elementType="road" elementId="10025" contactPoint="end" />
  3249. <successor elementType="road" elementId="10064" contactPoint="start" />
  3250. </link>
  3251. <planView>
  3252. <geometry s="0.0000000000000000e+00" x="2.0319641870260236e+02" y="1.3797789611853656e+02" hdg="3.1436542591033891e+00" length="6.9962626265712666e+00">
  3253. <line />
  3254. </geometry>
  3255. <geometry s="6.9962626265712666e+00" x="1.9620017094384403e+02" y="1.3796347259514826e+02" hdg="3.1436542591033891e+00" length="9.4233439598335078e+00">
  3256. <arc curvature="-1.6666666666666666e-01" />
  3257. </geometry>
  3258. <geometry s="1.6419606586404775e+01" x="1.9018781719787708e+02" y="1.4394965622266005e+02" hdg="1.5730969324644712e+00" length="3.2976178645471834e+00">
  3259. <line />
  3260. </geometry>
  3261. </planView>
  3262. <elevationProfile>
  3263. <elevation s="0.0000000000000000e+00" a="-5.3149999999999986e+00" b="1.6229464790849428e-03" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  3264. </elevationProfile>
  3265. <lateralProfile />
  3266. <lanes>
  3267. <laneSection s="0.0000000000000000e+00">
  3268. <center>
  3269. <lane id="0" type="none" level="false">
  3270. <link />
  3271. </lane>
  3272. </center>
  3273. <right>
  3274. <lane id="-1" type="driving" level="false">
  3275. <link>
  3276. <predecessor id="-1" />
  3277. <successor id="-1" />
  3278. </link>
  3279. <width sOffset="0.0000000000000000e+00" a="2.2999999999999998e+00" b="6.5932200712825753e-02" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  3280. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="false" />
  3281. </lane>
  3282. </right>
  3283. </laneSection>
  3284. </lanes>
  3285. <objects />
  3286. <signals />
  3287. </road>
  3288. <road name="" length="1.0127288353238468e+01" id="10070" junction="-1">
  3289. <link>
  3290. <predecessor elementType="road" elementId="10064" contactPoint="end" />
  3291. <successor elementType="road" elementId="10066" contactPoint="start" />
  3292. </link>
  3293. <planView>
  3294. <geometry s="0.0000000000000000e+00" x="1.9010677495086739e+02" y="1.7917607729153241e+02" hdg="1.5730969324644712e+00" length="5.1787563584409835e-01">
  3295. <line />
  3296. </geometry>
  3297. <geometry s="5.1787563584409835e-01" x="1.9010558352429445e+02" y="1.7969395155687454e+02" hdg="1.5730969324644712e+00" length="9.3992641220218918e+00">
  3298. <arc curvature="1.6666666666666666e-01" />
  3299. </geometry>
  3300. <geometry s="9.9171397578659892e+00" x="1.8411730959994253e+02" y="1.8568013650762941e+02" hdg="3.1396409528014533e+00" length="2.1014859537247951e-01">
  3301. <line />
  3302. </geometry>
  3303. </planView>
  3304. <elevationProfile>
  3305. <elevation s="0.0000000000000000e+00" a="-5.0249999995687595e+00" b="5.7271006359973699e-03" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  3306. </elevationProfile>
  3307. <lateralProfile />
  3308. <lanes>
  3309. <laneSection s="0.0000000000000000e+00">
  3310. <center>
  3311. <lane id="0" type="none" level="false">
  3312. <link />
  3313. </lane>
  3314. </center>
  3315. <right>
  3316. <lane id="-1" type="driving" level="false">
  3317. <link>
  3318. <predecessor id="-1" />
  3319. <successor id="-1" />
  3320. </link>
  3321. <width sOffset="0.0000000000000000e+00" a="3.6000000000000001e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  3322. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="false" />
  3323. </lane>
  3324. </right>
  3325. </laneSection>
  3326. </lanes>
  3327. <objects />
  3328. <signals />
  3329. </road>
  3330. <road name="" length="1.1606858362128273e+01" id="10071" junction="-1">
  3331. <link>
  3332. <predecessor elementType="road" elementId="10066" contactPoint="end" />
  3333. <successor elementType="road" elementId="10065" contactPoint="start" />
  3334. </link>
  3335. <planView>
  3336. <geometry s="0.0000000000000000e+00" x="1.7632972546304427e+02" y="1.8569533556103659e+02" hdg="3.1396409528014533e+00" length="1.2312854050880249e+00">
  3337. <line />
  3338. </geometry>
  3339. <geometry s="1.2312854050880249e+00" x="1.7509844240302226e+02" y="1.8569773866020674e+02" hdg="3.1396409528014533e+00" length="9.4458274522121286e+00">
  3340. <arc curvature="1.6666666666666666e-01" />
  3341. </geometry>
  3342. <geometry s="1.0677112857300154e+01" x="1.6908673947424808e+02" y="1.7968841080466959e+02" hdg="4.7139455281701412e+00" length="9.2974550482812013e-01">
  3343. <line />
  3344. </geometry>
  3345. </planView>
  3346. <elevationProfile>
  3347. <elevation s="0.0000000000000000e+00" a="-4.9779988941673645e+00" b="-4.5663610409488811e-03" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  3348. </elevationProfile>
  3349. <lateralProfile />
  3350. <lanes>
  3351. <laneSection s="0.0000000000000000e+00">
  3352. <center>
  3353. <lane id="0" type="none" level="false">
  3354. <link />
  3355. </lane>
  3356. </center>
  3357. <right>
  3358. <lane id="-1" type="driving" level="false">
  3359. <link>
  3360. <predecessor id="-1" />
  3361. <successor id="-1" />
  3362. </link>
  3363. <width sOffset="0.0000000000000000e+00" a="3.6000000000000001e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  3364. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="false" />
  3365. </lane>
  3366. </right>
  3367. </laneSection>
  3368. </lanes>
  3369. <objects />
  3370. <signals />
  3371. </road>
  3372. <road name="" length="3.2652529906106039e+01" id="10072" junction="800004">
  3373. <link>
  3374. <predecessor elementType="road" elementId="10065" contactPoint="end" />
  3375. <successor elementType="road" elementId="10067" contactPoint="start" />
  3376. </link>
  3377. <planView>
  3378. <geometry s="0.0000000000000000e+00" x="1.6912566474522711e+02" y="1.5468099381030368e+02" hdg="4.7139455281701412e+00" length="1.0723997087388820e+01">
  3379. <line />
  3380. </geometry>
  3381. <geometry s="1.0723997087388820e+01" x="1.6914235715240417e+02" y="1.4395700971418219e+02" hdg="4.7139455281701412e+00" length="9.4172231877870498e+00">
  3382. <arc curvature="-1.6666666666666666e-01" />
  3383. </geometry>
  3384. <geometry s="2.0141220275175868e+01" x="1.6315925845829801e+02" y="1.3794769421532945e+02" hdg="3.1444083302056329e+00" length="1.2511309630930169e+01">
  3385. <line />
  3386. </geometry>
  3387. </planView>
  3388. <elevationProfile>
  3389. <elevation s="0.0000000000000000e+00" a="-5.1549999863717293e+00" b="-4.4713231730618861e-03" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  3390. </elevationProfile>
  3391. <lateralProfile />
  3392. <lanes>
  3393. <laneSection s="0.0000000000000000e+00">
  3394. <center>
  3395. <lane id="0" type="none" level="false">
  3396. <link />
  3397. </lane>
  3398. </center>
  3399. <right>
  3400. <lane id="-1" type="driving" level="false">
  3401. <link>
  3402. <predecessor id="-1" />
  3403. <successor id="-1" />
  3404. </link>
  3405. <width sOffset="0.0000000000000000e+00" a="3.6000000000000001e+00" b="-3.9813147824631488e-02" c="0.0000000000000000e+00" d="0.0000000000000000e+00" />
  3406. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.4999999999999999e-01" laneChange="false" />
  3407. </lane>
  3408. </right>
  3409. </laneSection>
  3410. </lanes>
  3411. <objects />
  3412. <signals />
  3413. </road>
  3414. <junction name="" id="800000">
  3415. <connection id="0" incomingRoad="10000" connectingRoad="10051" contactPoint="end">
  3416. <laneLink from="1" to="1" />
  3417. <laneLink from="-1" to="-1" />
  3418. </connection>
  3419. <connection id="1" incomingRoad="10000" connectingRoad="10052" contactPoint="end">
  3420. <laneLink from="1" to="1" />
  3421. <laneLink from="-1" to="-1" />
  3422. </connection>
  3423. <connection id="2" incomingRoad="10027" connectingRoad="10051" contactPoint="start">
  3424. <laneLink from="1" to="1" />
  3425. <laneLink from="-1" to="-1" />
  3426. </connection>
  3427. <connection id="3" incomingRoad="10027" connectingRoad="10053" contactPoint="end">
  3428. <laneLink from="1" to="-1" />
  3429. <laneLink from="-1" to="1" />
  3430. </connection>
  3431. <connection id="4" incomingRoad="10028" connectingRoad="10052" contactPoint="start">
  3432. <laneLink from="1" to="1" />
  3433. <laneLink from="-1" to="-1" />
  3434. </connection>
  3435. <connection id="5" incomingRoad="10028" connectingRoad="10053" contactPoint="start">
  3436. <laneLink from="1" to="1" />
  3437. <laneLink from="-1" to="-1" />
  3438. </connection>
  3439. </junction>
  3440. <junction name="" id="800001">
  3441. <connection id="0" incomingRoad="10000" connectingRoad="10005" contactPoint="start">
  3442. <laneLink from="1" to="1" />
  3443. <laneLink from="-1" to="-1" />
  3444. </connection>
  3445. <connection id="1" incomingRoad="10000" connectingRoad="10054" contactPoint="start">
  3446. <laneLink from="1" to="1" />
  3447. <laneLink from="-1" to="-1" />
  3448. </connection>
  3449. <connection id="2" incomingRoad="10001" connectingRoad="10005" contactPoint="end">
  3450. <laneLink from="1" to="1" />
  3451. <laneLink from="-1" to="-1" />
  3452. </connection>
  3453. <connection id="3" incomingRoad="10001" connectingRoad="10060" contactPoint="end">
  3454. <laneLink from="1" to="1" />
  3455. <laneLink from="-1" to="-1" />
  3456. </connection>
  3457. <connection id="4" incomingRoad="10030" connectingRoad="10054" contactPoint="end">
  3458. <laneLink from="1" to="1" />
  3459. <laneLink from="-1" to="-1" />
  3460. </connection>
  3461. <connection id="5" incomingRoad="10030" connectingRoad="10060" contactPoint="start">
  3462. <laneLink from="1" to="-1" />
  3463. <laneLink from="-1" to="1" />
  3464. </connection>
  3465. </junction>
  3466. <junction name="" id="800002">
  3467. <connection id="0" incomingRoad="10001" connectingRoad="10029" contactPoint="start">
  3468. <laneLink from="1" to="1" />
  3469. <laneLink from="-1" to="-1" />
  3470. </connection>
  3471. <connection id="1" incomingRoad="10001" connectingRoad="10061" contactPoint="start">
  3472. <laneLink from="1" to="1" />
  3473. <laneLink from="-1" to="-1" />
  3474. </connection>
  3475. <connection id="2" incomingRoad="10002" connectingRoad="10029" contactPoint="end">
  3476. <laneLink from="1" to="1" />
  3477. <laneLink from="-1" to="-1" />
  3478. </connection>
  3479. <connection id="3" incomingRoad="10002" connectingRoad="10062" contactPoint="end">
  3480. <laneLink from="1" to="1" />
  3481. <laneLink from="-1" to="-1" />
  3482. </connection>
  3483. <connection id="4" incomingRoad="10013" connectingRoad="10061" contactPoint="end">
  3484. <laneLink from="1" to="1" />
  3485. <laneLink from="-1" to="-1" />
  3486. </connection>
  3487. <connection id="5" incomingRoad="10013" connectingRoad="10062" contactPoint="start">
  3488. <laneLink from="1" to="-1" />
  3489. <laneLink from="-1" to="1" />
  3490. </connection>
  3491. </junction>
  3492. <junction name="" id="800003">
  3493. <connection id="0" incomingRoad="10010" connectingRoad="10038" contactPoint="start">
  3494. <laneLink from="1" to="1" />
  3495. <laneLink from="-1" to="-1" />
  3496. </connection>
  3497. <connection id="1" incomingRoad="10010" connectingRoad="10040" contactPoint="end">
  3498. <laneLink from="1" to="-1" />
  3499. <laneLink from="-1" to="1" />
  3500. </connection>
  3501. <connection id="2" incomingRoad="10011" connectingRoad="10038" contactPoint="end">
  3502. <laneLink from="1" to="1" />
  3503. <laneLink from="-1" to="-1" />
  3504. </connection>
  3505. <connection id="3" incomingRoad="10011" connectingRoad="10039" contactPoint="end">
  3506. <laneLink from="1" to="1" />
  3507. <laneLink from="-1" to="-1" />
  3508. </connection>
  3509. <connection id="4" incomingRoad="10018" connectingRoad="10039" contactPoint="start">
  3510. <laneLink from="1" to="1" />
  3511. <laneLink from="-1" to="-1" />
  3512. </connection>
  3513. <connection id="5" incomingRoad="10018" connectingRoad="10040" contactPoint="start">
  3514. <laneLink from="1" to="1" />
  3515. <laneLink from="-1" to="-1" />
  3516. </connection>
  3517. </junction>
  3518. <junction name="" id="800004">
  3519. <connection id="0" incomingRoad="10025" connectingRoad="10068" contactPoint="start">
  3520. <laneLink from="1" to="1" />
  3521. <laneLink from="-1" to="-1" />
  3522. </connection>
  3523. <connection id="1" incomingRoad="10025" connectingRoad="10069" contactPoint="start">
  3524. <laneLink from="-1" to="-1" />
  3525. </connection>
  3526. <connection id="2" incomingRoad="10067" connectingRoad="10068" contactPoint="end">
  3527. <laneLink from="1" to="1" />
  3528. <laneLink from="-1" to="-1" />
  3529. </connection>
  3530. <connection id="3" incomingRoad="10067" connectingRoad="10072" contactPoint="end">
  3531. <laneLink from="-1" to="-1" />
  3532. </connection>
  3533. </junction>
  3534. </OpenDRIVE>