mine3.xodr 140 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784
  1. <?xml version="1.0" standalone="yes"?>
  2. <OpenDRIVE>
  3. <header revMajor="1" revMinor="4" name="" version="1.00" date="Wed Mar 27 14:06:10 2024" north="0.0000000000000000e+00" south="0.0000000000000000e+00" east="0.0000000000000000e+00" west="0.0000000000000000e+00">
  4. </header>
  5. <road name="" length="1.0000000000000000e+01" id="7" junction="-1">
  6. <link>
  7. </link>
  8. <planView>
  9. <geometry s="0.0000000000000000e+00" x="-2.0000000000000000e+01" y="2.0000000000000000e+01" hdg="-1.5707963267998624e+00" length="1.0000000000000000e+01">
  10. <line/>
  11. </geometry>
  12. </planView>
  13. <elevationProfile>
  14. <elevation s="0.0000000000000000e+00" a="0.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  15. </elevationProfile>
  16. <lateralProfile>
  17. </lateralProfile>
  18. <lanes>
  19. <laneSection s="0.0000000000000000e+00">
  20. <left>
  21. <lane id="2" type="shoulder" level="false">
  22. <link>
  23. </link>
  24. <width sOffset="0.0000000000000000e+00" a="5.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  25. </lane>
  26. <lane id="1" type="driving" level="false">
  27. <link>
  28. </link>
  29. <width sOffset="0.0000000000000000e+00" a="1.5000000000000000e+01" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  30. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.3000000000000000e-01" laneChange="none" height="1.9999999552965164e-02">
  31. </roadMark>
  32. </lane>
  33. </left>
  34. <center>
  35. <lane id="0" type="none" level="false">
  36. <link>
  37. </link>
  38. <roadMark sOffset="0.0000000000000000e+00" type="broken" weight="standard" color="standard" width="1.3000000000000000e-01" laneChange="both" height="1.9999999552965164e-02">
  39. </roadMark>
  40. </lane>
  41. </center>
  42. <right>
  43. <lane id="-1" type="driving" level="false">
  44. <link>
  45. </link>
  46. <width sOffset="0.0000000000000000e+00" a="1.5000000000000000e+01" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  47. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.3000000000000000e-01" laneChange="none" height="1.9999999552965164e-02">
  48. </roadMark>
  49. </lane>
  50. <lane id="-2" type="shoulder" level="false">
  51. <link>
  52. </link>
  53. <width sOffset="0.0000000000000000e+00" a="5.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  54. </lane>
  55. </right>
  56. </laneSection>
  57. </lanes>
  58. <objects>
  59. </objects>
  60. <signals>
  61. </signals>
  62. <surface>
  63. </surface>
  64. </road>
  65. <road name="" length="1.1197787143782139e+03" id="131" junction="-1">
  66. <link>
  67. <predecessor elementType="junction" elementId="2" />
  68. <successor elementType="junction" elementId="5" />
  69. </link>
  70. <planView>
  71. <geometry s="0.0000000000000000e+00" x="2.8000000000000000e+02" y="2.0000000000000000e+02" hdg="0.0000000000000000e+00" length="2.0000000000000000e+01">
  72. <line/>
  73. </geometry>
  74. <geometry s="2.0000000000000000e+01" x="2.9999999781449264e+02" y="2.0000000000000000e+02" hdg="-1.2414513861358500e-12" length="7.8539816339744831e+01">
  75. <arc curvature="-2.0000000000000000e-02"/>
  76. </geometry>
  77. <geometry s="9.8539816339744831e+01" x="3.4999999781443057e+02" y="1.4999999999993793e+02" hdg="-1.5707963267998650e+00" length="5.0000000000000000e+01">
  78. <line/>
  79. </geometry>
  80. <geometry s="1.4853981633974485e+02" x="3.4999999781418217e+02" y="1.0000000437151138e+02" hdg="-1.5707963267986234e+00" length="1.5707963267948966e+02">
  81. <arc curvature="2.0000000000000000e-02"/>
  82. </geometry>
  83. <geometry s="3.0561944901923448e+02" x="4.4999999781418217e+02" y="1.0000000437064206e+02" hdg="1.5707963267948948e+00" length="1.5000000000000000e+02">
  84. <line/>
  85. </geometry>
  86. <geometry s="4.5561944901923448e+02" x="4.4999999781492738e+02" y="2.5000000437076622e+02" hdg="1.5707963267936531e+00" length="1.5707963267948966e+02">
  87. <arc curvature="-2.0000000000000000e-02"/>
  88. </geometry>
  89. <geometry s="6.1269908169872417e+02" x="5.4999999781492738e+02" y="2.5000000437014523e+02" hdg="-1.5707963268048326e+00" length="1.5000000000000000e+02">
  90. <line/>
  91. </geometry>
  92. <geometry s="7.6269908169872417e+02" x="5.4999999781343695e+02" y="1.0000000874196708e+02" hdg="-1.5707963268035909e+00" length="1.5707963267948966e+02">
  93. <arc curvature="2.0000000000000000e-02"/>
  94. </geometry>
  95. <geometry s="9.1977871437821386e+02" x="6.4999999781343695e+02" y="1.0000000874060109e+02" hdg="1.5707963267849603e+00" length="1.9999999999999997e+02">
  96. <line/>
  97. </geometry>
  98. </planView>
  99. <elevationProfile>
  100. <elevation s="0.0000000000000000e+00" a="0.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  101. </elevationProfile>
  102. <lateralProfile>
  103. </lateralProfile>
  104. <lanes>
  105. <laneSection s="0.0000000000000000e+00">
  106. <left>
  107. <lane id="2" type="shoulder" level="false">
  108. <link>
  109. </link>
  110. <width sOffset="0.0000000000000000e+00" a="5.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  111. </lane>
  112. <lane id="1" type="driving" level="false">
  113. <link>
  114. </link>
  115. <width sOffset="0.0000000000000000e+00" a="1.5000000000000000e+01" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  116. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.3000000000000000e-01" laneChange="none" height="1.9999999552965164e-02">
  117. </roadMark>
  118. </lane>
  119. </left>
  120. <center>
  121. <lane id="0" type="none" level="false">
  122. <link>
  123. </link>
  124. <roadMark sOffset="0.0000000000000000e+00" type="broken" weight="standard" color="standard" width="1.3000000000000000e-01" laneChange="both" height="1.9999999552965164e-02">
  125. </roadMark>
  126. </lane>
  127. </center>
  128. <right>
  129. <lane id="-1" type="driving" level="false">
  130. <link>
  131. </link>
  132. <width sOffset="0.0000000000000000e+00" a="1.5000000000000000e+01" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  133. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.3000000000000000e-01" laneChange="none" height="1.9999999552965164e-02">
  134. </roadMark>
  135. </lane>
  136. <lane id="-2" type="shoulder" level="false">
  137. <link>
  138. </link>
  139. <width sOffset="0.0000000000000000e+00" a="5.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  140. </lane>
  141. </right>
  142. </laneSection>
  143. </lanes>
  144. <objects>
  145. </objects>
  146. <signals>
  147. </signals>
  148. <surface>
  149. </surface>
  150. </road>
  151. <road name="" length="1.9325957145940458e+02" id="132" junction="-1">
  152. <link>
  153. <predecessor elementType="junction" elementId="3" />
  154. <successor elementType="road" elementId="133" contactPoint="end" />
  155. </link>
  156. <planView>
  157. <geometry s="0.0000000000000000e+00" x="1.0100000000000000e+03" y="2.0000000000000000e+02" hdg="3.1415926535897931e+00" length="1.0000000000000000e+01">
  158. <line/>
  159. </geometry>
  160. <geometry s="1.0000000000000000e+01" x="9.9999999781436850e+02" y="2.0000000000000000e+02" hdg="3.1415926535885514e+00" length="5.2359877559829883e+01">
  161. <arc curvature="-2.0000000000000000e-02"/>
  162. </geometry>
  163. <geometry s="6.2359877559829883e+01" x="9.5669872840232767e+02" y="2.2500000000010752e+02" hdg="2.0943951023944365e+00" length="5.2359877559829883e+01">
  164. <arc curvature="2.0000000000000000e-02"/>
  165. </geometry>
  166. <geometry s="1.1471975511965977e+02" x="9.1339746039858210e+02" y="2.5000000000005377e+02" hdg="3.1415926535897931e+00" length="7.8539816339744831e+01">
  167. <arc curvature="2.0000000000000000e-02"/>
  168. </geometry>
  169. </planView>
  170. <elevationProfile>
  171. <elevation s="0.0000000000000000e+00" a="0.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  172. </elevationProfile>
  173. <lateralProfile>
  174. </lateralProfile>
  175. <lanes>
  176. <laneSection s="0.0000000000000000e+00">
  177. <center>
  178. <lane id="0" type="none" level="false">
  179. <link>
  180. </link>
  181. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.3000000000000000e-01" laneChange="none" height="1.9999999552965164e-02">
  182. </roadMark>
  183. </lane>
  184. </center>
  185. <right>
  186. <lane id="-1" type="driving" level="false">
  187. <link>
  188. <successor id="1"/>
  189. </link>
  190. <width sOffset="0.0000000000000000e+00" a="1.5000000000000000e+01" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  191. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.3000000000000000e-01" laneChange="none" height="1.9999999552965164e-02">
  192. </roadMark>
  193. </lane>
  194. <lane id="-2" type="shoulder" level="false">
  195. <link>
  196. <successor id="2"/>
  197. </link>
  198. <width sOffset="0.0000000000000000e+00" a="5.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  199. </lane>
  200. </right>
  201. </laneSection>
  202. </lanes>
  203. <objects>
  204. </objects>
  205. <signals>
  206. </signals>
  207. <surface>
  208. </surface>
  209. </road>
  210. <road name="" length="1.9325957145940458e+02" id="133" junction="-1">
  211. <link>
  212. <predecessor elementType="junction" elementId="3" />
  213. <successor elementType="road" elementId="132" contactPoint="end" />
  214. </link>
  215. <planView>
  216. <geometry s="0.0000000000000000e+00" x="1.0100000000000000e+03" y="2.0000000000000000e+02" hdg="3.1415926535897931e+00" length="1.0000000000000000e+01">
  217. <line/>
  218. </geometry>
  219. <geometry s="1.0000000000000000e+01" x="1.0000000021855074e+03" y="2.0000000000000000e+02" hdg="-3.1415926535885514e+00" length="5.2359877559829883e+01">
  220. <arc curvature="2.0000000000000000e-02"/>
  221. </geometry>
  222. <geometry s="6.2359877559829883e+01" x="9.5669873277346665e+02" y="1.7500000298012475e+02" hdg="-2.0943951023944365e+00" length="5.2359877559829883e+01">
  223. <arc curvature="-2.0000000000000000e-02"/>
  224. </geometry>
  225. <geometry s="1.1471975511965977e+02" x="9.1339746039858221e+02" y="1.5000000298017849e+02" hdg="-3.1415926535897922e+00" length="7.8539816339744831e+01">
  226. <arc curvature="-2.0000000000000000e-02"/>
  227. </geometry>
  228. </planView>
  229. <elevationProfile>
  230. <elevation s="0.0000000000000000e+00" a="0.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  231. </elevationProfile>
  232. <lateralProfile>
  233. </lateralProfile>
  234. <lanes>
  235. <laneSection s="0.0000000000000000e+00">
  236. <left>
  237. <lane id="2" type="shoulder" level="false">
  238. <link>
  239. <successor id="-2"/>
  240. </link>
  241. <width sOffset="0.0000000000000000e+00" a="5.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  242. </lane>
  243. <lane id="1" type="driving" level="false">
  244. <link>
  245. <successor id="-1"/>
  246. </link>
  247. <width sOffset="0.0000000000000000e+00" a="1.5000000000000000e+01" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  248. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.3000000000000000e-01" laneChange="none" height="1.9999999552965164e-02">
  249. </roadMark>
  250. </lane>
  251. </left>
  252. <center>
  253. <lane id="0" type="none" level="false">
  254. <link>
  255. </link>
  256. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.3000000000000000e-01" laneChange="none" height="1.9999999552965164e-02">
  257. </roadMark>
  258. </lane>
  259. </center>
  260. </laneSection>
  261. </lanes>
  262. <objects>
  263. </objects>
  264. <signals>
  265. </signals>
  266. <surface>
  267. </surface>
  268. </road>
  269. <road name="" length="1.0570796326794898e+03" id="140" junction="-1">
  270. <link>
  271. <successor elementType="junction" elementId="5" />
  272. </link>
  273. <planView>
  274. <geometry s="0.0000000000000000e+00" x="3.0000000000000000e+02" y="5.0000000000000000e+01" hdg="3.1415926535897931e+00" length="2.0000000000000000e+02">
  275. <line/>
  276. </geometry>
  277. <geometry s="2.0000000000000000e+02" x="9.9999997814368498e+01" y="5.0000000000000000e+01" hdg="3.1415926535885514e+00" length="7.8539816339744831e+01">
  278. <arc curvature="-2.0000000000000000e-02"/>
  279. </geometry>
  280. <geometry s="2.7853981633974485e+02" x="4.9999997814430586e+01" y="1.0000000000006212e+02" hdg="1.5707963267948959e+00" length="2.0000000000000000e+02">
  281. <line/>
  282. </geometry>
  283. <geometry s="4.7853981633974485e+02" x="4.9999997814430728e+01" y="3.0000000000018628e+02" hdg="1.5707963267936544e+00" length="7.8539816339744831e+01">
  284. <arc curvature="-2.0000000000000000e-02"/>
  285. </geometry>
  286. <geometry s="5.5707963267948969e+02" x="9.9999997814492858e+01" y="3.5000000000012415e+02" hdg="-9.9342756243459007e-12" length="5.0000000000000000e+02">
  287. <line/>
  288. </geometry>
  289. </planView>
  290. <elevationProfile>
  291. <elevation s="0.0000000000000000e+00" a="0.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  292. </elevationProfile>
  293. <lateralProfile>
  294. </lateralProfile>
  295. <lanes>
  296. <laneSection s="0.0000000000000000e+00">
  297. <left>
  298. <lane id="2" type="shoulder" level="false">
  299. <link>
  300. </link>
  301. <width sOffset="0.0000000000000000e+00" a="5.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  302. </lane>
  303. <lane id="1" type="driving" level="false">
  304. <link>
  305. </link>
  306. <width sOffset="0.0000000000000000e+00" a="1.5000000000000000e+01" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  307. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.3000000000000000e-01" laneChange="none" height="1.9999999552965164e-02">
  308. </roadMark>
  309. </lane>
  310. </left>
  311. <center>
  312. <lane id="0" type="none" level="false">
  313. <link>
  314. </link>
  315. <roadMark sOffset="0.0000000000000000e+00" type="broken" weight="standard" color="standard" width="1.3000000000000000e-01" laneChange="both" height="1.9999999552965164e-02">
  316. </roadMark>
  317. </lane>
  318. </center>
  319. <right>
  320. <lane id="-1" type="driving" level="false">
  321. <link>
  322. </link>
  323. <width sOffset="0.0000000000000000e+00" a="1.5000000000000000e+01" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  324. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.3000000000000000e-01" laneChange="none" height="1.9999999552965164e-02">
  325. </roadMark>
  326. </lane>
  327. <lane id="-2" type="shoulder" level="false">
  328. <link>
  329. </link>
  330. <width sOffset="0.0000000000000000e+00" a="5.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  331. </lane>
  332. </right>
  333. </laneSection>
  334. </lanes>
  335. <objects>
  336. </objects>
  337. <signals>
  338. </signals>
  339. <surface>
  340. </surface>
  341. </road>
  342. <road name="" length="1.9325957145940458e+02" id="141" junction="-1">
  343. <link>
  344. <predecessor elementType="junction" elementId="2" />
  345. <successor elementType="road" elementId="142" contactPoint="end" />
  346. </link>
  347. <planView>
  348. <geometry s="0.0000000000000000e+00" x="2.6000000000000000e+02" y="2.0000000000000000e+02" hdg="3.1415926535897931e+00" length="1.0000000000000000e+01">
  349. <line/>
  350. </geometry>
  351. <geometry s="1.0000000000000000e+01" x="2.4999999781436847e+02" y="2.0000000000000000e+02" hdg="3.1415926535885514e+00" length="5.2359877559829883e+01">
  352. <arc curvature="-2.0000000000000000e-02"/>
  353. </geometry>
  354. <geometry s="6.2359877559829883e+01" x="2.0669872840232779e+02" y="2.2500000000010752e+02" hdg="2.0943951023944365e+00" length="5.2359877559829883e+01">
  355. <arc curvature="2.0000000000000000e-02"/>
  356. </geometry>
  357. <geometry s="1.1471975511965977e+02" x="1.6339746039858215e+02" y="2.5000000000005377e+02" hdg="3.1415926535897931e+00" length="7.8539816339744831e+01">
  358. <arc curvature="2.0000000000000000e-02"/>
  359. </geometry>
  360. </planView>
  361. <elevationProfile>
  362. <elevation s="0.0000000000000000e+00" a="0.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  363. </elevationProfile>
  364. <lateralProfile>
  365. </lateralProfile>
  366. <lanes>
  367. <laneSection s="0.0000000000000000e+00">
  368. <center>
  369. <lane id="0" type="none" level="false">
  370. <link>
  371. </link>
  372. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.3000000000000000e-01" laneChange="none" height="1.9999999552965164e-02">
  373. </roadMark>
  374. </lane>
  375. </center>
  376. <right>
  377. <lane id="-1" type="driving" level="false">
  378. <link>
  379. <successor id="1"/>
  380. </link>
  381. <width sOffset="0.0000000000000000e+00" a="1.5000000000000000e+01" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  382. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.3000000000000000e-01" laneChange="none" height="1.9999999552965164e-02">
  383. </roadMark>
  384. </lane>
  385. <lane id="-2" type="shoulder" level="false">
  386. <link>
  387. <successor id="2"/>
  388. </link>
  389. <width sOffset="0.0000000000000000e+00" a="5.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  390. </lane>
  391. </right>
  392. </laneSection>
  393. </lanes>
  394. <objects>
  395. </objects>
  396. <signals>
  397. </signals>
  398. <surface>
  399. </surface>
  400. </road>
  401. <road name="" length="1.9325957145940458e+02" id="142" junction="-1">
  402. <link>
  403. <predecessor elementType="junction" elementId="2" />
  404. <successor elementType="road" elementId="141" contactPoint="end" />
  405. </link>
  406. <planView>
  407. <geometry s="0.0000000000000000e+00" x="2.6000000000000000e+02" y="2.0000000000000000e+02" hdg="3.1415926535897931e+00" length="1.0000000000000000e+01">
  408. <line/>
  409. </geometry>
  410. <geometry s="1.0000000000000000e+01" x="2.5000000218550736e+02" y="2.0000000000000000e+02" hdg="-3.1415926535885514e+00" length="5.2359877559829883e+01">
  411. <arc curvature="2.0000000000000000e-02"/>
  412. </geometry>
  413. <geometry s="6.2359877559829883e+01" x="2.0669873277346665e+02" y="1.7500000298012475e+02" hdg="-2.0943951023944365e+00" length="5.2359877559829883e+01">
  414. <arc curvature="-2.0000000000000000e-02"/>
  415. </geometry>
  416. <geometry s="1.1471975511965977e+02" x="1.6339746039858224e+02" y="1.5000000298017849e+02" hdg="-3.1415926535897922e+00" length="7.8539816339744831e+01">
  417. <arc curvature="-2.0000000000000000e-02"/>
  418. </geometry>
  419. </planView>
  420. <elevationProfile>
  421. <elevation s="0.0000000000000000e+00" a="0.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  422. </elevationProfile>
  423. <lateralProfile>
  424. </lateralProfile>
  425. <lanes>
  426. <laneSection s="0.0000000000000000e+00">
  427. <left>
  428. <lane id="2" type="shoulder" level="false">
  429. <link>
  430. <successor id="-2"/>
  431. </link>
  432. <width sOffset="0.0000000000000000e+00" a="5.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  433. </lane>
  434. <lane id="1" type="driving" level="false">
  435. <link>
  436. <successor id="-1"/>
  437. </link>
  438. <width sOffset="0.0000000000000000e+00" a="1.5000000000000000e+01" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  439. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.3000000000000000e-01" laneChange="none" height="1.9999999552965164e-02">
  440. </roadMark>
  441. </lane>
  442. </left>
  443. <center>
  444. <lane id="0" type="none" level="false">
  445. <link>
  446. </link>
  447. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.3000000000000000e-01" laneChange="none" height="1.9999999552965164e-02">
  448. </roadMark>
  449. </lane>
  450. </center>
  451. </laneSection>
  452. </lanes>
  453. <objects>
  454. </objects>
  455. <signals>
  456. </signals>
  457. <surface>
  458. </surface>
  459. </road>
  460. <road name="" length="1.9325957145940458e+02" id="151" junction="-1">
  461. <link>
  462. <predecessor elementType="junction" elementId="1" />
  463. <successor elementType="road" elementId="152" contactPoint="end" />
  464. </link>
  465. <planView>
  466. <geometry s="0.0000000000000000e+00" x="1.0400000000000000e+03" y="5.5000000000000000e+02" hdg="0.0000000000000000e+00" length="1.0000000000000000e+01">
  467. <line/>
  468. </geometry>
  469. <geometry s="1.0000000000000000e+01" x="1.0500000021856315e+03" y="5.5000000000000000e+02" hdg="1.2414513861358500e-12" length="5.2359877559829883e+01">
  470. <arc curvature="2.0000000000000000e-02"/>
  471. </geometry>
  472. <geometry s="6.2359877559829883e+01" x="1.0933012715976722e+03" y="5.7500000000010755e+02" hdg="1.0471975511965976e+00" length="1.3089969389957471e+02">
  473. <arc curvature="-2.0000000000000000e-02"/>
  474. </geometry>
  475. </planView>
  476. <elevationProfile>
  477. <elevation s="0.0000000000000000e+00" a="0.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  478. </elevationProfile>
  479. <lateralProfile>
  480. </lateralProfile>
  481. <lanes>
  482. <laneSection s="0.0000000000000000e+00">
  483. <left>
  484. <lane id="2" type="shoulder" level="false">
  485. <link>
  486. <successor id="-2"/>
  487. </link>
  488. <width sOffset="0.0000000000000000e+00" a="5.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  489. </lane>
  490. <lane id="1" type="driving" level="false">
  491. <link>
  492. <successor id="-1"/>
  493. </link>
  494. <width sOffset="0.0000000000000000e+00" a="1.5000000000000000e+01" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  495. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.3000000000000000e-01" laneChange="none" height="1.9999999552965164e-02">
  496. </roadMark>
  497. </lane>
  498. </left>
  499. <center>
  500. <lane id="0" type="none" level="false">
  501. <link>
  502. </link>
  503. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.3000000000000000e-01" laneChange="none" height="1.9999999552965164e-02">
  504. </roadMark>
  505. </lane>
  506. </center>
  507. </laneSection>
  508. </lanes>
  509. <objects>
  510. </objects>
  511. <signals>
  512. </signals>
  513. <surface>
  514. </surface>
  515. </road>
  516. <road name="" length="1.9325957145940458e+02" id="152" junction="-1">
  517. <link>
  518. <predecessor elementType="junction" elementId="1" />
  519. <successor elementType="road" elementId="151" contactPoint="end" />
  520. </link>
  521. <planView>
  522. <geometry s="0.0000000000000000e+00" x="1.0400000000000000e+03" y="5.5000000000000000e+02" hdg="0.0000000000000000e+00" length="1.0000000000000000e+01">
  523. <line/>
  524. </geometry>
  525. <geometry s="1.0000000000000000e+01" x="1.0499999978144926e+03" y="5.5000000000000000e+02" hdg="-1.2414513861358500e-12" length="5.2359877559829883e+01">
  526. <arc curvature="-2.0000000000000000e-02"/>
  527. </geometry>
  528. <geometry s="6.2359877559829883e+01" x="1.0933012672264092e+03" y="5.2499999850999131e+02" hdg="-1.0471975512015632e+00" length="1.3089969389957471e+02">
  529. <arc curvature="2.0000000000000000e-02"/>
  530. </geometry>
  531. </planView>
  532. <elevationProfile>
  533. <elevation s="0.0000000000000000e+00" a="0.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  534. </elevationProfile>
  535. <lateralProfile>
  536. </lateralProfile>
  537. <lanes>
  538. <laneSection s="0.0000000000000000e+00">
  539. <center>
  540. <lane id="0" type="none" level="false">
  541. <link>
  542. </link>
  543. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.3000000000000000e-01" laneChange="none" height="1.9999999552965164e-02">
  544. </roadMark>
  545. </lane>
  546. </center>
  547. <right>
  548. <lane id="-1" type="driving" level="false">
  549. <link>
  550. <successor id="1"/>
  551. </link>
  552. <width sOffset="0.0000000000000000e+00" a="1.5000000000000000e+01" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  553. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.3000000000000000e-01" laneChange="none" height="1.9999999552965164e-02">
  554. </roadMark>
  555. </lane>
  556. <lane id="-2" type="shoulder" level="false">
  557. <link>
  558. <successor id="2"/>
  559. </link>
  560. <width sOffset="0.0000000000000000e+00" a="5.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  561. </lane>
  562. </right>
  563. </laneSection>
  564. </lanes>
  565. <objects>
  566. </objects>
  567. <signals>
  568. </signals>
  569. <surface>
  570. </surface>
  571. </road>
  572. <road name="" length="1.0841593462708120e+03" id="159" junction="-1">
  573. <link>
  574. <predecessor elementType="junction" elementId="1" />
  575. <successor elementType="junction" elementId="6" />
  576. </link>
  577. <planView>
  578. <geometry s="0.0000000000000000e+00" x="1.0200000000000000e+03" y="5.5000000000000000e+02" hdg="3.1415926535897931e+00" length="2.0000000000000000e+01">
  579. <line/>
  580. </geometry>
  581. <geometry s="2.0000000000000000e+01" x="1.0000000000000000e+03" y="5.5000000000000000e+02" hdg="3.1415926535897931e+00" length="1.5000000000000000e+02">
  582. <line/>
  583. </geometry>
  584. <geometry s="1.7000000000000000e+02" x="8.5000000218550849e+02" y="5.5000000000000000e+02" hdg="-3.1415926535885514e+00" length="1.5707971359132225e+02">
  585. <arc curvature="1.9999989697990817e-02"/>
  586. </geometry>
  587. <geometry s="3.2707971359132227e+02" x="8.5000000218563264e+02" y="4.4999994848992753e+02" hdg="4.9681148084346208e-12" length="3.0000000000000000e+02">
  588. <line/>
  589. </geometry>
  590. <geometry s="6.2707971359132227e+02" x="1.1499999999998770e+03" y="4.4999994849141797e+02" hdg="3.7265746044568004e-12" length="1.5707963267948966e+02">
  591. <arc curvature="-2.0000000000000000e-02"/>
  592. </geometry>
  593. <geometry s="7.8415934627081197e+02" x="1.1500000000002494e+03" y="3.4999994849141797e+02" hdg="3.1415926535897931e+00" length="3.0000000000000000e+02">
  594. <line/>
  595. </geometry>
  596. </planView>
  597. <elevationProfile>
  598. <elevation s="0.0000000000000000e+00" a="0.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  599. </elevationProfile>
  600. <lateralProfile>
  601. </lateralProfile>
  602. <lanes>
  603. <laneSection s="0.0000000000000000e+00">
  604. <left>
  605. <lane id="2" type="shoulder" level="false">
  606. <link>
  607. </link>
  608. <width sOffset="0.0000000000000000e+00" a="5.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  609. </lane>
  610. <lane id="1" type="driving" level="false">
  611. <link>
  612. </link>
  613. <width sOffset="0.0000000000000000e+00" a="1.5000000000000000e+01" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  614. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.3000000000000000e-01" laneChange="none" height="1.9999999552965164e-02">
  615. </roadMark>
  616. </lane>
  617. </left>
  618. <center>
  619. <lane id="0" type="none" level="false">
  620. <link>
  621. </link>
  622. <roadMark sOffset="0.0000000000000000e+00" type="broken" weight="standard" color="standard" width="1.3000000000000000e-01" laneChange="both" height="1.9999999552965164e-02">
  623. </roadMark>
  624. </lane>
  625. </center>
  626. <right>
  627. <lane id="-1" type="driving" level="false">
  628. <link>
  629. </link>
  630. <width sOffset="0.0000000000000000e+00" a="1.5000000000000000e+01" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  631. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.3000000000000000e-01" laneChange="none" height="1.9999999552965164e-02">
  632. </roadMark>
  633. </lane>
  634. <lane id="-2" type="shoulder" level="false">
  635. <link>
  636. </link>
  637. <width sOffset="0.0000000000000000e+00" a="5.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  638. </lane>
  639. </right>
  640. </laneSection>
  641. </lanes>
  642. <objects>
  643. </objects>
  644. <signals>
  645. </signals>
  646. <surface>
  647. </surface>
  648. </road>
  649. <road name="" length="2.0000000000000000e+01" id="162" junction="1">
  650. <link>
  651. <predecessor elementType="road" elementId="151" contactPoint="start" />
  652. <successor elementType="road" elementId="159" contactPoint="start" />
  653. </link>
  654. <planView>
  655. <geometry s="0.0000000000000000e+00" x="1.0400000000000000e+03" y="5.5000000000000000e+02" hdg="3.1415926535897931e+00" length="2.0000000000000000e+01">
  656. <line/>
  657. </geometry>
  658. </planView>
  659. <elevationProfile>
  660. <elevation s="0.0000000000000000e+00" a="0.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  661. </elevationProfile>
  662. <lateralProfile>
  663. </lateralProfile>
  664. <lanes>
  665. <laneSection s="0.0000000000000000e+00">
  666. <center>
  667. <lane id="0" type="driving" level="false">
  668. <link>
  669. </link>
  670. </lane>
  671. </center>
  672. <right>
  673. <lane id="-1" type="driving" level="false">
  674. <link>
  675. <predecessor id="1"/>
  676. <successor id="-1"/>
  677. </link>
  678. <width sOffset="0.0000000000000000e+00" a="1.5000000000000000e+01" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  679. </lane>
  680. </right>
  681. </laneSection>
  682. </lanes>
  683. <objects>
  684. </objects>
  685. <signals>
  686. </signals>
  687. <surface>
  688. </surface>
  689. </road>
  690. <road name="" length="2.0000000000000000e+01" id="165" junction="1">
  691. <link>
  692. <predecessor elementType="road" elementId="159" contactPoint="start" />
  693. <successor elementType="road" elementId="152" contactPoint="start" />
  694. </link>
  695. <planView>
  696. <geometry s="0.0000000000000000e+00" x="1.0200000000000000e+03" y="5.5000000000000000e+02" hdg="0.0000000000000000e+00" length="2.0000000000000000e+01">
  697. <line/>
  698. </geometry>
  699. </planView>
  700. <elevationProfile>
  701. <elevation s="0.0000000000000000e+00" a="0.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  702. </elevationProfile>
  703. <lateralProfile>
  704. </lateralProfile>
  705. <lanes>
  706. <laneSection s="0.0000000000000000e+00">
  707. <center>
  708. <lane id="0" type="driving" level="false">
  709. <link>
  710. </link>
  711. </lane>
  712. </center>
  713. <right>
  714. <lane id="-1" type="driving" level="false">
  715. <link>
  716. <predecessor id="1"/>
  717. <successor id="-1"/>
  718. </link>
  719. <width sOffset="0.0000000000000000e+00" a="1.5000000000000000e+01" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  720. </lane>
  721. </right>
  722. </laneSection>
  723. </lanes>
  724. <objects>
  725. </objects>
  726. <signals>
  727. </signals>
  728. <surface>
  729. </surface>
  730. </road>
  731. <road name="" length="1.0556194490192347e+03" id="166" junction="-1">
  732. <link>
  733. <predecessor elementType="junction" elementId="4" />
  734. <successor elementType="junction" elementId="5" />
  735. </link>
  736. <planView>
  737. <geometry s="0.0000000000000000e+00" x="2.7000000000000000e+02" y="5.0000000000000000e+02" hdg="3.1415926535897931e+00" length="2.0000000000000000e+01">
  738. <line/>
  739. </geometry>
  740. <geometry s="2.0000000000000000e+01" x="2.5000000000000000e+02" y="5.0000000000000000e+02" hdg="3.1415926535897931e+00" length="1.5000000000000000e+02">
  741. <line/>
  742. </geometry>
  743. <geometry s="1.7000000000000000e+02" x="9.9999997814368498e+01" y="5.0000000000000000e+02" hdg="3.1415926535885514e+00" length="1.5707963267948966e+02">
  744. <arc curvature="-2.0000000000000000e-02"/>
  745. </geometry>
  746. <geometry s="3.2707963267948969e+02" x="9.9999997814492716e+01" y="6.0000000000000000e+02" hdg="-9.9342756243459007e-12" length="5.0000000000000006e+02">
  747. <line/>
  748. </geometry>
  749. <geometry s="8.2707963267948981e+02" x="5.9999999841129568e+02" y="5.9999999999751594e+02" hdg="-1.1175060876666976e-11" length="7.8539816339744831e+01">
  750. <arc curvature="-2.0000000000000000e-02"/>
  751. </geometry>
  752. <geometry s="9.0561944901923459e+02" x="6.4999999841073691e+02" y="5.4999999999695717e+02" hdg="-1.5707963268097984e+00" length="1.5000000000000000e+02">
  753. <line/>
  754. </geometry>
  755. </planView>
  756. <elevationProfile>
  757. <elevation s="0.0000000000000000e+00" a="0.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  758. </elevationProfile>
  759. <lateralProfile>
  760. </lateralProfile>
  761. <lanes>
  762. <laneSection s="0.0000000000000000e+00">
  763. <left>
  764. <lane id="2" type="shoulder" level="false">
  765. <link>
  766. </link>
  767. <width sOffset="0.0000000000000000e+00" a="5.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  768. </lane>
  769. <lane id="1" type="driving" level="false">
  770. <link>
  771. </link>
  772. <width sOffset="0.0000000000000000e+00" a="1.5000000000000000e+01" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  773. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.3000000000000000e-01" laneChange="none" height="1.9999999552965164e-02">
  774. </roadMark>
  775. </lane>
  776. </left>
  777. <center>
  778. <lane id="0" type="none" level="false">
  779. <link>
  780. </link>
  781. <roadMark sOffset="0.0000000000000000e+00" type="broken" weight="standard" color="standard" width="1.3000000000000000e-01" laneChange="both" height="1.9999999552965164e-02">
  782. </roadMark>
  783. </lane>
  784. </center>
  785. <right>
  786. <lane id="-1" type="driving" level="false">
  787. <link>
  788. </link>
  789. <width sOffset="0.0000000000000000e+00" a="1.5000000000000000e+01" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  790. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.3000000000000000e-01" laneChange="none" height="1.9999999552965164e-02">
  791. </roadMark>
  792. </lane>
  793. <lane id="-2" type="shoulder" level="false">
  794. <link>
  795. </link>
  796. <width sOffset="0.0000000000000000e+00" a="5.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  797. </lane>
  798. </right>
  799. </laneSection>
  800. </lanes>
  801. <objects>
  802. </objects>
  803. <signals>
  804. </signals>
  805. <surface>
  806. </surface>
  807. </road>
  808. <road name="" length="1.9325957145940458e+02" id="167" junction="-1">
  809. <link>
  810. <predecessor elementType="junction" elementId="4" />
  811. <successor elementType="road" elementId="168" contactPoint="end" />
  812. </link>
  813. <planView>
  814. <geometry s="0.0000000000000000e+00" x="2.9000000000000000e+02" y="5.0000000000000000e+02" hdg="0.0000000000000000e+00" length="1.0000000000000000e+01">
  815. <line/>
  816. </geometry>
  817. <geometry s="1.0000000000000000e+01" x="3.0000000218563150e+02" y="5.0000000000000000e+02" hdg="1.2414513861358500e-12" length="5.2359877559829883e+01">
  818. <arc curvature="2.0000000000000000e-02"/>
  819. </geometry>
  820. <geometry s="6.2359877559829883e+01" x="3.4330127159767221e+02" y="5.2500000000010755e+02" hdg="1.0471975511965976e+00" length="1.3089969389957471e+02">
  821. <arc curvature="-2.0000000000000000e-02"/>
  822. </geometry>
  823. </planView>
  824. <elevationProfile>
  825. <elevation s="0.0000000000000000e+00" a="0.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  826. </elevationProfile>
  827. <lateralProfile>
  828. </lateralProfile>
  829. <lanes>
  830. <laneSection s="0.0000000000000000e+00">
  831. <left>
  832. <lane id="2" type="shoulder" level="false">
  833. <link>
  834. <successor id="-2"/>
  835. </link>
  836. <width sOffset="0.0000000000000000e+00" a="5.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  837. </lane>
  838. <lane id="1" type="driving" level="false">
  839. <link>
  840. <successor id="-1"/>
  841. </link>
  842. <width sOffset="0.0000000000000000e+00" a="1.5000000000000000e+01" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  843. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.3000000000000000e-01" laneChange="none" height="1.9999999552965164e-02">
  844. </roadMark>
  845. </lane>
  846. </left>
  847. <center>
  848. <lane id="0" type="none" level="false">
  849. <link>
  850. </link>
  851. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.3000000000000000e-01" laneChange="none" height="1.9999999552965164e-02">
  852. </roadMark>
  853. </lane>
  854. </center>
  855. </laneSection>
  856. </lanes>
  857. <objects>
  858. </objects>
  859. <signals>
  860. </signals>
  861. <surface>
  862. </surface>
  863. </road>
  864. <road name="" length="1.9325957145940458e+02" id="168" junction="-1">
  865. <link>
  866. <predecessor elementType="junction" elementId="4" />
  867. <successor elementType="road" elementId="167" contactPoint="end" />
  868. </link>
  869. <planView>
  870. <geometry s="0.0000000000000000e+00" x="2.9000000000000000e+02" y="5.0000000000000000e+02" hdg="0.0000000000000000e+00" length="1.0000000000000000e+01">
  871. <line/>
  872. </geometry>
  873. <geometry s="1.0000000000000000e+01" x="2.9999999781449264e+02" y="5.0000000000000000e+02" hdg="-1.2414513861358500e-12" length="5.2359877559829883e+01">
  874. <arc curvature="-2.0000000000000000e-02"/>
  875. </geometry>
  876. <geometry s="6.2359877559829883e+01" x="3.4330126722640921e+02" y="4.7499999850999137e+02" hdg="-1.0471975512015632e+00" length="1.3089969389957471e+02">
  877. <arc curvature="2.0000000000000000e-02"/>
  878. </geometry>
  879. </planView>
  880. <elevationProfile>
  881. <elevation s="0.0000000000000000e+00" a="0.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  882. </elevationProfile>
  883. <lateralProfile>
  884. </lateralProfile>
  885. <lanes>
  886. <laneSection s="0.0000000000000000e+00">
  887. <center>
  888. <lane id="0" type="none" level="false">
  889. <link>
  890. </link>
  891. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.3000000000000000e-01" laneChange="none" height="1.9999999552965164e-02">
  892. </roadMark>
  893. </lane>
  894. </center>
  895. <right>
  896. <lane id="-1" type="driving" level="false">
  897. <link>
  898. <successor id="1"/>
  899. </link>
  900. <width sOffset="0.0000000000000000e+00" a="1.5000000000000000e+01" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  901. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.3000000000000000e-01" laneChange="none" height="1.9999999552965164e-02">
  902. </roadMark>
  903. </lane>
  904. <lane id="-2" type="shoulder" level="false">
  905. <link>
  906. <successor id="2"/>
  907. </link>
  908. <width sOffset="0.0000000000000000e+00" a="5.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  909. </lane>
  910. </right>
  911. </laneSection>
  912. </lanes>
  913. <objects>
  914. </objects>
  915. <signals>
  916. </signals>
  917. <surface>
  918. </surface>
  919. </road>
  920. <road name="" length="2.0000000000000000e+01" id="171" junction="4">
  921. <link>
  922. <predecessor elementType="road" elementId="166" contactPoint="start" />
  923. <successor elementType="road" elementId="168" contactPoint="start" />
  924. </link>
  925. <planView>
  926. <geometry s="0.0000000000000000e+00" x="2.7000000000000000e+02" y="5.0000000000000000e+02" hdg="0.0000000000000000e+00" length="2.0000000000000000e+01">
  927. <line/>
  928. </geometry>
  929. </planView>
  930. <elevationProfile>
  931. <elevation s="0.0000000000000000e+00" a="0.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  932. </elevationProfile>
  933. <lateralProfile>
  934. </lateralProfile>
  935. <lanes>
  936. <laneSection s="0.0000000000000000e+00">
  937. <center>
  938. <lane id="0" type="driving" level="false">
  939. <link>
  940. </link>
  941. </lane>
  942. </center>
  943. <right>
  944. <lane id="-1" type="driving" level="false">
  945. <link>
  946. <predecessor id="1"/>
  947. <successor id="-1"/>
  948. </link>
  949. <width sOffset="0.0000000000000000e+00" a="1.5000000000000000e+01" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  950. </lane>
  951. </right>
  952. </laneSection>
  953. </lanes>
  954. <objects>
  955. </objects>
  956. <signals>
  957. </signals>
  958. <surface>
  959. </surface>
  960. </road>
  961. <road name="" length="2.0000000000000000e+01" id="174" junction="4">
  962. <link>
  963. <predecessor elementType="road" elementId="167" contactPoint="start" />
  964. <successor elementType="road" elementId="166" contactPoint="start" />
  965. </link>
  966. <planView>
  967. <geometry s="0.0000000000000000e+00" x="2.9000000000000000e+02" y="5.0000000000000000e+02" hdg="3.1415926535897931e+00" length="2.0000000000000000e+01">
  968. <line/>
  969. </geometry>
  970. </planView>
  971. <elevationProfile>
  972. <elevation s="0.0000000000000000e+00" a="0.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  973. </elevationProfile>
  974. <lateralProfile>
  975. </lateralProfile>
  976. <lanes>
  977. <laneSection s="0.0000000000000000e+00">
  978. <center>
  979. <lane id="0" type="driving" level="false">
  980. <link>
  981. </link>
  982. </lane>
  983. </center>
  984. <right>
  985. <lane id="-1" type="driving" level="false">
  986. <link>
  987. <predecessor id="1"/>
  988. <successor id="-1"/>
  989. </link>
  990. <width sOffset="0.0000000000000000e+00" a="1.5000000000000000e+01" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  991. </lane>
  992. </right>
  993. </laneSection>
  994. </lanes>
  995. <objects>
  996. </objects>
  997. <signals>
  998. </signals>
  999. <surface>
  1000. </surface>
  1001. </road>
  1002. <road name="" length="5.0000000000000000e+01" id="175" junction="-1">
  1003. <link>
  1004. <predecessor elementType="junction" elementId="5" />
  1005. <successor elementType="junction" elementId="6" />
  1006. </link>
  1007. <planView>
  1008. <geometry s="0.0000000000000000e+00" x="7.0000000000000000e+02" y="3.5000000000000000e+02" hdg="0.0000000000000000e+00" length="5.0000000000000000e+01">
  1009. <line/>
  1010. </geometry>
  1011. </planView>
  1012. <elevationProfile>
  1013. <elevation s="0.0000000000000000e+00" a="0.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  1014. </elevationProfile>
  1015. <lateralProfile>
  1016. </lateralProfile>
  1017. <lanes>
  1018. <laneSection s="0.0000000000000000e+00">
  1019. <left>
  1020. <lane id="2" type="shoulder" level="false">
  1021. <link>
  1022. </link>
  1023. <width sOffset="0.0000000000000000e+00" a="5.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  1024. </lane>
  1025. <lane id="1" type="driving" level="false">
  1026. <link>
  1027. </link>
  1028. <width sOffset="0.0000000000000000e+00" a="1.5000000000000000e+01" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  1029. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.3000000000000000e-01" laneChange="none" height="1.9999999552965164e-02">
  1030. </roadMark>
  1031. </lane>
  1032. </left>
  1033. <center>
  1034. <lane id="0" type="none" level="false">
  1035. <link>
  1036. </link>
  1037. <roadMark sOffset="0.0000000000000000e+00" type="broken" weight="standard" color="standard" width="1.3000000000000000e-01" laneChange="both" height="1.9999999552965164e-02">
  1038. </roadMark>
  1039. </lane>
  1040. </center>
  1041. <right>
  1042. <lane id="-1" type="driving" level="false">
  1043. <link>
  1044. </link>
  1045. <width sOffset="0.0000000000000000e+00" a="1.5000000000000000e+01" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  1046. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.3000000000000000e-01" laneChange="none" height="1.9999999552965164e-02">
  1047. </roadMark>
  1048. </lane>
  1049. <lane id="-2" type="shoulder" level="false">
  1050. <link>
  1051. </link>
  1052. <width sOffset="0.0000000000000000e+00" a="5.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  1053. </lane>
  1054. </right>
  1055. </laneSection>
  1056. </lanes>
  1057. <objects>
  1058. </objects>
  1059. <signals>
  1060. </signals>
  1061. <surface>
  1062. </surface>
  1063. </road>
  1064. <road name="" length="8.8092354309025481e+01" id="178" junction="5">
  1065. <link>
  1066. <predecessor elementType="road" elementId="131" contactPoint="end" />
  1067. <successor elementType="road" elementId="175" contactPoint="start" />
  1068. </link>
  1069. <planView>
  1070. <geometry s="0.0000000000000000e+00" x="6.4999999781542419e+02" y="3.0000000874060106e+02" hdg="1.5707963267948966e+00" length="1.4593745713159024e+01">
  1071. <line/>
  1072. </geometry>
  1073. <geometry s="1.4593745713159024e+01" x="6.4999999781542419e+02" y="3.1459375445376008e+02" hdg="1.5707963267948966e+00" length="1.9634950652510192e+01">
  1074. <spiral curvStart="-0.0000000000000000e+00" curvEnd="-4.0000006992482080e-02"/>
  1075. </geometry>
  1076. <geometry s="3.4228696365669215e+01" x="6.5254203406506997e+02" y="3.3392806361188894e+02" hdg="1.1780972450974139e+00" length="1.9634950652510184e+01">
  1077. <arc curvature="-4.0000006992482080e-02"/>
  1078. </geometry>
  1079. <geometry s="5.3863647018179400e+01" x="6.6607193420353531e+02" y="3.4745796375035422e+02" hdg="3.9269908169996537e-01" length="1.9634950652510192e+01">
  1080. <spiral curvStart="-4.0000006992482080e-02" curvEnd="-0.0000000000000000e+00"/>
  1081. </geometry>
  1082. <geometry s="7.3498597670689591e+01" x="6.8540624336166411e+02" y="3.5000000000000000e+02" hdg="0.0000000000000000e+00" length="1.4593756638335890e+01">
  1083. <line/>
  1084. </geometry>
  1085. </planView>
  1086. <elevationProfile>
  1087. <elevation s="0.0000000000000000e+00" a="0.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  1088. </elevationProfile>
  1089. <lateralProfile>
  1090. </lateralProfile>
  1091. <lanes>
  1092. <laneSection s="0.0000000000000000e+00">
  1093. <center>
  1094. <lane id="0" type="driving" level="false">
  1095. <link>
  1096. </link>
  1097. </lane>
  1098. </center>
  1099. <right>
  1100. <lane id="-1" type="driving" level="false">
  1101. <link>
  1102. <predecessor id="-1"/>
  1103. <successor id="-1"/>
  1104. </link>
  1105. <width sOffset="0.0000000000000000e+00" a="1.5000000000000000e+01" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  1106. </lane>
  1107. <lane id="-2" type="shoulder" level="false">
  1108. <link>
  1109. <predecessor id="-2"/>
  1110. <successor id="-2"/>
  1111. </link>
  1112. <width sOffset="0.0000000000000000e+00" a="5.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  1113. <height sOffset="0.0000000000000000e+00" inner="0.0000000000000000e+00" outer="0.0000000000000000e+00"/>
  1114. </lane>
  1115. </right>
  1116. </laneSection>
  1117. </lanes>
  1118. <objects>
  1119. </objects>
  1120. <signals>
  1121. </signals>
  1122. <surface>
  1123. </surface>
  1124. </road>
  1125. <road name="" length="9.9999991256356111e+01" id="181" junction="5">
  1126. <link>
  1127. <predecessor elementType="road" elementId="131" contactPoint="end" />
  1128. <successor elementType="road" elementId="166" contactPoint="end" />
  1129. </link>
  1130. <planView>
  1131. <geometry s="0.0000000000000000e+00" x="6.4999999781542419e+02" y="3.0000000874060106e+02" hdg="1.5707963208566733e+00" length="9.9999991256356111e+01">
  1132. <line/>
  1133. </geometry>
  1134. </planView>
  1135. <elevationProfile>
  1136. <elevation s="0.0000000000000000e+00" a="0.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  1137. </elevationProfile>
  1138. <lateralProfile>
  1139. </lateralProfile>
  1140. <lanes>
  1141. <laneSection s="0.0000000000000000e+00">
  1142. <center>
  1143. <lane id="0" type="driving" level="false">
  1144. <link>
  1145. </link>
  1146. </lane>
  1147. </center>
  1148. <right>
  1149. <lane id="-1" type="driving" level="false">
  1150. <link>
  1151. <predecessor id="-1"/>
  1152. <successor id="1"/>
  1153. </link>
  1154. <width sOffset="0.0000000000000000e+00" a="1.5000000000000000e+01" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  1155. </lane>
  1156. </right>
  1157. </laneSection>
  1158. </lanes>
  1159. <objects>
  1160. </objects>
  1161. <signals>
  1162. </signals>
  1163. <surface>
  1164. </surface>
  1165. </road>
  1166. <road name="" length="8.8092352123361451e+01" id="184" junction="5">
  1167. <link>
  1168. <predecessor elementType="road" elementId="131" contactPoint="end" />
  1169. <successor elementType="road" elementId="140" contactPoint="end" />
  1170. </link>
  1171. <planView>
  1172. <geometry s="0.0000000000000000e+00" x="6.4999999781542419e+02" y="3.0000000874060106e+02" hdg="1.5707963267948966e+00" length="1.4593745712297277e+01">
  1173. <line/>
  1174. </geometry>
  1175. <geometry s="1.4593745712297277e+01" x="6.4999999781542419e+02" y="3.1459375445289834e+02" hdg="1.5707963267948966e+00" length="1.9634950651459260e+01">
  1176. <spiral curvStart="0.0000000000000000e+00" curvEnd="4.0000006994369987e-02"/>
  1177. </geometry>
  1178. <geometry s="3.4228696363756541e+01" x="6.4745796156593019e+02" y="3.3392806360999617e+02" hdg="1.9634954084898952e+00" length="1.9634950651459267e+01">
  1179. <arc curvature="4.0000006994369987e-02"/>
  1180. </geometry>
  1181. <geometry s="5.3863647015215804e+01" x="6.3392806142825191e+02" y="3.4745796374780900e+02" hdg="2.7488935718823755e+00" length="1.9634950651459260e+01">
  1182. <spiral curvStart="4.0000006994369987e-02" curvEnd="0.0000000000000000e+00"/>
  1183. </geometry>
  1184. <geometry s="7.3498597666675067e+01" x="6.1459375227117926e+02" y="3.4999999999749508e+02" hdg="3.1415926535798571e+00" length="1.4593754456686383e+01">
  1185. <line/>
  1186. </geometry>
  1187. </planView>
  1188. <elevationProfile>
  1189. <elevation s="0.0000000000000000e+00" a="0.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  1190. </elevationProfile>
  1191. <lateralProfile>
  1192. </lateralProfile>
  1193. <lanes>
  1194. <laneSection s="0.0000000000000000e+00">
  1195. <center>
  1196. <lane id="0" type="driving" level="false">
  1197. <link>
  1198. </link>
  1199. </lane>
  1200. </center>
  1201. <right>
  1202. <lane id="-1" type="driving" level="false">
  1203. <link>
  1204. <predecessor id="-1"/>
  1205. <successor id="1"/>
  1206. </link>
  1207. <width sOffset="0.0000000000000000e+00" a="1.5000000000000000e+01" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  1208. </lane>
  1209. </right>
  1210. </laneSection>
  1211. </lanes>
  1212. <objects>
  1213. </objects>
  1214. <signals>
  1215. </signals>
  1216. <surface>
  1217. </surface>
  1218. </road>
  1219. <road name="" length="8.8092352123701517e+01" id="187" junction="5">
  1220. <link>
  1221. <predecessor elementType="road" elementId="140" contactPoint="end" />
  1222. <successor elementType="road" elementId="131" contactPoint="end" />
  1223. </link>
  1224. <planView>
  1225. <geometry s="0.0000000000000000e+00" x="5.9999999781449287e+02" y="3.4999999999764009e+02" hdg="-1.4901857525728701e-11" length="1.4593754457211162e+01">
  1226. <line/>
  1227. </geometry>
  1228. <geometry s="1.4593754457211162e+01" x="6.1459375227170403e+02" y="3.4999999999749508e+02" hdg="-1.4901857525728701e-11" length="1.9634950651388365e+01">
  1229. <spiral curvStart="-0.0000000000000000e+00" curvEnd="-4.0000006994767440e-02"/>
  1230. </geometry>
  1231. <geometry s="3.4228705108599527e+01" x="6.3392806142870290e+02" y="3.4745796374780241e+02" hdg="-3.9269908171238477e-01" length="1.9634950651388372e+01">
  1232. <arc curvature="-4.0000006994767440e-02"/>
  1233. </geometry>
  1234. <geometry s="5.3863655759987900e+01" x="6.4745796156626079e+02" y="3.3392806360997565e+02" hdg="-1.1780972451098330e+00" length="1.9634950651388365e+01">
  1235. <spiral curvStart="-4.0000006994767440e-02" curvEnd="-0.0000000000000000e+00"/>
  1236. </geometry>
  1237. <geometry s="7.3498606411376272e+01" x="6.4999999781556915e+02" y="3.1459375445292631e+02" hdg="-1.5707963268097949e+00" length="1.4593745712325244e+01">
  1238. <line/>
  1239. </geometry>
  1240. </planView>
  1241. <elevationProfile>
  1242. <elevation s="0.0000000000000000e+00" a="0.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  1243. </elevationProfile>
  1244. <lateralProfile>
  1245. </lateralProfile>
  1246. <lanes>
  1247. <laneSection s="0.0000000000000000e+00">
  1248. <center>
  1249. <lane id="0" type="driving" level="false">
  1250. <link>
  1251. </link>
  1252. </lane>
  1253. </center>
  1254. <right>
  1255. <lane id="-1" type="driving" level="false">
  1256. <link>
  1257. <predecessor id="-1"/>
  1258. <successor id="1"/>
  1259. </link>
  1260. <width sOffset="0.0000000000000000e+00" a="1.5000000000000000e+01" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  1261. </lane>
  1262. <lane id="-2" type="shoulder" level="false">
  1263. <link>
  1264. <predecessor id="-2"/>
  1265. <successor id="2"/>
  1266. </link>
  1267. <width sOffset="0.0000000000000000e+00" a="5.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  1268. <height sOffset="0.0000000000000000e+00" inner="0.0000000000000000e+00" outer="0.0000000000000000e+00"/>
  1269. </lane>
  1270. </right>
  1271. </laneSection>
  1272. </lanes>
  1273. <objects>
  1274. </objects>
  1275. <signals>
  1276. </signals>
  1277. <surface>
  1278. </surface>
  1279. </road>
  1280. <road name="" length="1.0000000218550713e+02" id="190" junction="5">
  1281. <link>
  1282. <predecessor elementType="road" elementId="140" contactPoint="end" />
  1283. <successor elementType="road" elementId="175" contactPoint="start" />
  1284. </link>
  1285. <planView>
  1286. <geometry s="0.0000000000000000e+00" x="5.9999999781449287e+02" y="3.4999999999764009e+02" hdg="2.3599113258492752e-11" length="1.0000000218550713e+02">
  1287. <line/>
  1288. </geometry>
  1289. </planView>
  1290. <elevationProfile>
  1291. <elevation s="0.0000000000000000e+00" a="0.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  1292. </elevationProfile>
  1293. <lateralProfile>
  1294. </lateralProfile>
  1295. <lanes>
  1296. <laneSection s="0.0000000000000000e+00">
  1297. <center>
  1298. <lane id="0" type="driving" level="false">
  1299. <link>
  1300. </link>
  1301. </lane>
  1302. </center>
  1303. <right>
  1304. <lane id="-1" type="driving" level="false">
  1305. <link>
  1306. <predecessor id="-1"/>
  1307. <successor id="-1"/>
  1308. </link>
  1309. <width sOffset="0.0000000000000000e+00" a="1.5000000000000000e+01" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  1310. </lane>
  1311. </right>
  1312. </laneSection>
  1313. </lanes>
  1314. <objects>
  1315. </objects>
  1316. <signals>
  1317. </signals>
  1318. <surface>
  1319. </surface>
  1320. </road>
  1321. <road name="" length="8.8092359377591166e+01" id="193" junction="5">
  1322. <link>
  1323. <predecessor elementType="road" elementId="140" contactPoint="end" />
  1324. <successor elementType="road" elementId="166" contactPoint="end" />
  1325. </link>
  1326. <planView>
  1327. <geometry s="0.0000000000000000e+00" x="5.9999999781449287e+02" y="3.4999999999764009e+02" hdg="-1.4901857525728701e-11" length="1.4593748858545382e+01">
  1328. <line/>
  1329. </geometry>
  1330. <geometry s="1.4593748858545382e+01" x="6.1459374667303825e+02" y="3.4999999999749508e+02" hdg="-1.4901857525728701e-11" length="1.9634954084898489e+01">
  1331. <spiral curvStart="0.0000000000000000e+00" curvEnd="3.9999999999950617e-02"/>
  1332. </geometry>
  1333. <geometry s="3.4228702943443871e+01" x="6.3392805921103991e+02" y="3.5254203669121858e+02" hdg="3.9269908168134116e-01" length="1.9634954084898482e+01">
  1334. <arc curvature="3.9999999999950617e-02"/>
  1335. </geometry>
  1336. <geometry s="5.3863657028342352e+01" x="6.4745796171490622e+02" y="3.6607193919461457e+02" hdg="1.1780972450763114e+00" length="1.9634954084898489e+01">
  1337. <spiral curvStart="3.9999999999950617e-02" curvEnd="0.0000000000000000e+00"/>
  1338. </geometry>
  1339. <geometry s="7.3498611113240841e+01" x="6.4999999840902910e+02" y="3.8540625173260685e+02" hdg="1.5707963267800020e+00" length="1.4593748264350324e+01">
  1340. <line/>
  1341. </geometry>
  1342. </planView>
  1343. <elevationProfile>
  1344. <elevation s="0.0000000000000000e+00" a="0.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  1345. </elevationProfile>
  1346. <lateralProfile>
  1347. </lateralProfile>
  1348. <lanes>
  1349. <laneSection s="0.0000000000000000e+00">
  1350. <center>
  1351. <lane id="0" type="driving" level="false">
  1352. <link>
  1353. </link>
  1354. </lane>
  1355. </center>
  1356. <right>
  1357. <lane id="-1" type="driving" level="false">
  1358. <link>
  1359. <predecessor id="-1"/>
  1360. <successor id="1"/>
  1361. </link>
  1362. <width sOffset="0.0000000000000000e+00" a="1.5000000000000000e+01" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  1363. </lane>
  1364. </right>
  1365. </laneSection>
  1366. </lanes>
  1367. <objects>
  1368. </objects>
  1369. <signals>
  1370. </signals>
  1371. <surface>
  1372. </surface>
  1373. </road>
  1374. <road name="" length="8.8092359377906490e+01" id="196" junction="5">
  1375. <link>
  1376. <predecessor elementType="road" elementId="166" contactPoint="end" />
  1377. <successor elementType="road" elementId="140" contactPoint="end" />
  1378. </link>
  1379. <planView>
  1380. <geometry s="0.0000000000000000e+00" x="6.4999999840924647e+02" y="3.9999999999695717e+02" hdg="-1.5707963267998624e+00" length="1.4593748264294959e+01">
  1381. <line/>
  1382. </geometry>
  1383. <geometry s="1.4593748264294959e+01" x="6.4999999840924647e+02" y="3.8540625173266221e+02" hdg="-1.5707963267998624e+00" length="1.9634954084792287e+01">
  1384. <spiral curvStart="-0.0000000000000000e+00" curvEnd="-4.0000000000546342e-02"/>
  1385. </geometry>
  1386. <geometry s="3.4228702349087243e+01" x="6.4745796171524876e+02" y="3.6607193919486593e+02" hdg="-1.9634954084998304e+00" length="1.9634954084792295e+01">
  1387. <arc curvature="-4.0000000000546342e-02"/>
  1388. </geometry>
  1389. <geometry s="5.3863656433879541e+01" x="6.3392805921160641e+02" y="3.5254203669132454e+02" hdg="-2.7488935719022494e+00" length="1.9634954084792287e+01">
  1390. <spiral curvStart="-4.0000000000546342e-02" curvEnd="-0.0000000000000000e+00"/>
  1391. </geometry>
  1392. <geometry s="7.3498610518671825e+01" x="6.1459374667372754e+02" y="3.4999999999749508e+02" hdg="3.1415926535798571e+00" length="1.4593748859234665e+01">
  1393. <line/>
  1394. </geometry>
  1395. </planView>
  1396. <elevationProfile>
  1397. <elevation s="0.0000000000000000e+00" a="0.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  1398. </elevationProfile>
  1399. <lateralProfile>
  1400. </lateralProfile>
  1401. <lanes>
  1402. <laneSection s="0.0000000000000000e+00">
  1403. <center>
  1404. <lane id="0" type="driving" level="false">
  1405. <link>
  1406. </link>
  1407. </lane>
  1408. </center>
  1409. <right>
  1410. <lane id="-1" type="driving" level="false">
  1411. <link>
  1412. <predecessor id="-1"/>
  1413. <successor id="1"/>
  1414. </link>
  1415. <width sOffset="0.0000000000000000e+00" a="1.5000000000000000e+01" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  1416. </lane>
  1417. <lane id="-2" type="shoulder" level="false">
  1418. <link>
  1419. <predecessor id="-2"/>
  1420. <successor id="2"/>
  1421. </link>
  1422. <width sOffset="0.0000000000000000e+00" a="5.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  1423. <height sOffset="0.0000000000000000e+00" inner="0.0000000000000000e+00" outer="0.0000000000000000e+00"/>
  1424. </lane>
  1425. </right>
  1426. </laneSection>
  1427. </lanes>
  1428. <objects>
  1429. </objects>
  1430. <signals>
  1431. </signals>
  1432. <surface>
  1433. </surface>
  1434. </road>
  1435. <road name="" length="9.9999991256356111e+01" id="199" junction="5">
  1436. <link>
  1437. <predecessor elementType="road" elementId="166" contactPoint="end" />
  1438. <successor elementType="road" elementId="131" contactPoint="end" />
  1439. </link>
  1440. <planView>
  1441. <geometry s="0.0000000000000000e+00" x="6.4999999840924647e+02" y="3.9999999999695717e+02" hdg="-1.5707963327380856e+00" length="9.9999991256356111e+01">
  1442. <line/>
  1443. </geometry>
  1444. </planView>
  1445. <elevationProfile>
  1446. <elevation s="0.0000000000000000e+00" a="0.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  1447. </elevationProfile>
  1448. <lateralProfile>
  1449. </lateralProfile>
  1450. <lanes>
  1451. <laneSection s="0.0000000000000000e+00">
  1452. <center>
  1453. <lane id="0" type="driving" level="false">
  1454. <link>
  1455. </link>
  1456. </lane>
  1457. </center>
  1458. <right>
  1459. <lane id="-1" type="driving" level="false">
  1460. <link>
  1461. <predecessor id="-1"/>
  1462. <successor id="1"/>
  1463. </link>
  1464. <width sOffset="0.0000000000000000e+00" a="1.5000000000000000e+01" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  1465. </lane>
  1466. </right>
  1467. </laneSection>
  1468. </lanes>
  1469. <objects>
  1470. </objects>
  1471. <signals>
  1472. </signals>
  1473. <surface>
  1474. </surface>
  1475. </road>
  1476. <road name="" length="8.8092360371945560e+01" id="202" junction="5">
  1477. <link>
  1478. <predecessor elementType="road" elementId="166" contactPoint="end" />
  1479. <successor elementType="road" elementId="175" contactPoint="start" />
  1480. </link>
  1481. <planView>
  1482. <geometry s="0.0000000000000000e+00" x="6.4999999840924647e+02" y="3.9999999999695717e+02" hdg="-1.5707963267998624e+00" length="1.4593748263555767e+01">
  1483. <line/>
  1484. </geometry>
  1485. <geometry s="1.4593748263555767e+01" x="6.4999999840924647e+02" y="3.8540625173340140e+02" hdg="-1.5707963267948966e+00" length="1.9634954083679226e+01">
  1486. <spiral curvStart="0.0000000000000000e+00" curvEnd="4.0000000002434248e-02"/>
  1487. </geometry>
  1488. <geometry s="3.4228702347234993e+01" x="6.5254203510310026e+02" y="3.6607193919663814e+02" hdg="-1.1780972450986553e+00" length="1.9634954083679219e+01">
  1489. <arc curvature="4.0000000002434248e-02"/>
  1490. </geometry>
  1491. <geometry s="5.3863656430914212e+01" x="6.6607193760585767e+02" y="3.5254203669381354e+02" hdg="-3.9269908170368950e-01" length="1.9634954083679226e+01">
  1492. <spiral curvStart="4.0000000002434248e-02" curvEnd="0.0000000000000000e+00"/>
  1493. </geometry>
  1494. <geometry s="7.3498610514593437e+01" x="6.8540625014264788e+02" y="3.5000000000000000e+02" hdg="0.0000000000000000e+00" length="1.4593749857352122e+01">
  1495. <line/>
  1496. </geometry>
  1497. </planView>
  1498. <elevationProfile>
  1499. <elevation s="0.0000000000000000e+00" a="0.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  1500. </elevationProfile>
  1501. <lateralProfile>
  1502. </lateralProfile>
  1503. <lanes>
  1504. <laneSection s="0.0000000000000000e+00">
  1505. <center>
  1506. <lane id="0" type="driving" level="false">
  1507. <link>
  1508. </link>
  1509. </lane>
  1510. </center>
  1511. <right>
  1512. <lane id="-1" type="driving" level="false">
  1513. <link>
  1514. <predecessor id="-1"/>
  1515. <successor id="-1"/>
  1516. </link>
  1517. <width sOffset="0.0000000000000000e+00" a="1.5000000000000000e+01" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  1518. </lane>
  1519. </right>
  1520. </laneSection>
  1521. </lanes>
  1522. <objects>
  1523. </objects>
  1524. <signals>
  1525. </signals>
  1526. <surface>
  1527. </surface>
  1528. </road>
  1529. <road name="" length="8.8092360372261595e+01" id="205" junction="5">
  1530. <link>
  1531. <predecessor elementType="road" elementId="175" contactPoint="start" />
  1532. <successor elementType="road" elementId="166" contactPoint="end" />
  1533. </link>
  1534. <planView>
  1535. <geometry s="0.0000000000000000e+00" x="7.0000000000000000e+02" y="3.5000000000000000e+02" hdg="3.1415926535897931e+00" length="1.4593749858041861e+01">
  1536. <line/>
  1537. </geometry>
  1538. <geometry s="1.4593749858041861e+01" x="6.8540625014195814e+02" y="3.5000000000000000e+02" hdg="3.1415926535848273e+00" length="1.9634954083572961e+01">
  1539. <spiral curvStart="-0.0000000000000000e+00" curvEnd="-4.0000000003029973e-02"/>
  1540. </geometry>
  1541. <geometry s="3.4228703941614825e+01" x="6.6607193760531777e+02" y="3.5254203669395957e+02" hdg="2.7488935718848628e+00" length="1.9634954083572968e+01">
  1542. <arc curvature="-4.0000000003029973e-02"/>
  1543. </geometry>
  1544. <geometry s="5.3863658025187789e+01" x="6.5254203510274101e+02" y="3.6607193919680498e+02" hdg="1.9634954084824510e+00" length="1.9634954083572961e+01">
  1545. <spiral curvStart="-4.0000000003029973e-02" curvEnd="-0.0000000000000000e+00"/>
  1546. </geometry>
  1547. <geometry s="7.3498612108760753e+01" x="6.4999999840902910e+02" y="3.8540625173345632e+02" hdg="1.5707963267800020e+00" length="1.4593748263500856e+01">
  1548. <line/>
  1549. </geometry>
  1550. </planView>
  1551. <elevationProfile>
  1552. <elevation s="0.0000000000000000e+00" a="0.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  1553. </elevationProfile>
  1554. <lateralProfile>
  1555. </lateralProfile>
  1556. <lanes>
  1557. <laneSection s="0.0000000000000000e+00">
  1558. <center>
  1559. <lane id="0" type="driving" level="false">
  1560. <link>
  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="1.5000000000000000e+01" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  1571. </lane>
  1572. <lane id="-2" type="shoulder" level="false">
  1573. <link>
  1574. <predecessor id="2"/>
  1575. <successor id="2"/>
  1576. </link>
  1577. <width sOffset="0.0000000000000000e+00" a="5.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  1578. <height sOffset="0.0000000000000000e+00" inner="0.0000000000000000e+00" outer="0.0000000000000000e+00"/>
  1579. </lane>
  1580. </right>
  1581. </laneSection>
  1582. </lanes>
  1583. <objects>
  1584. </objects>
  1585. <signals>
  1586. </signals>
  1587. <surface>
  1588. </surface>
  1589. </road>
  1590. <road name="" length="1.0000000218550713e+02" id="208" junction="5">
  1591. <link>
  1592. <predecessor elementType="road" elementId="175" contactPoint="start" />
  1593. <successor elementType="road" elementId="140" contactPoint="end" />
  1594. </link>
  1595. <planView>
  1596. <geometry s="0.0000000000000000e+00" x="7.0000000000000000e+02" y="3.5000000000000000e+02" hdg="-3.1415926535711600e+00" length="1.0000000218550713e+02">
  1597. <line/>
  1598. </geometry>
  1599. </planView>
  1600. <elevationProfile>
  1601. <elevation s="0.0000000000000000e+00" a="0.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  1602. </elevationProfile>
  1603. <lateralProfile>
  1604. </lateralProfile>
  1605. <lanes>
  1606. <laneSection s="0.0000000000000000e+00">
  1607. <center>
  1608. <lane id="0" type="driving" level="false">
  1609. <link>
  1610. </link>
  1611. </lane>
  1612. </center>
  1613. <right>
  1614. <lane id="-1" type="driving" level="false">
  1615. <link>
  1616. <predecessor id="1"/>
  1617. <successor id="1"/>
  1618. </link>
  1619. <width sOffset="0.0000000000000000e+00" a="1.5000000000000000e+01" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  1620. </lane>
  1621. </right>
  1622. </laneSection>
  1623. </lanes>
  1624. <objects>
  1625. </objects>
  1626. <signals>
  1627. </signals>
  1628. <surface>
  1629. </surface>
  1630. </road>
  1631. <road name="" length="8.8092354308685671e+01" id="211" junction="5">
  1632. <link>
  1633. <predecessor elementType="road" elementId="175" contactPoint="start" />
  1634. <successor elementType="road" elementId="131" contactPoint="end" />
  1635. </link>
  1636. <planView>
  1637. <geometry s="0.0000000000000000e+00" x="7.0000000000000000e+02" y="3.5000000000000000e+02" hdg="3.1415926535897931e+00" length="1.4593756637811225e+01">
  1638. <line/>
  1639. </geometry>
  1640. <geometry s="1.4593756637811225e+01" x="6.8540624336218877e+02" y="3.5000000000000000e+02" hdg="3.1415926535897931e+00" length="1.9634950652581090e+01">
  1641. <spiral curvStart="0.0000000000000000e+00" curvEnd="4.0000006992084627e-02"/>
  1642. </geometry>
  1643. <geometry s="3.4228707290392315e+01" x="6.6607193420398630e+02" y="3.4745796375036076e+02" hdg="-2.7488935718947944e+00" length="1.9634950652581097e+01">
  1644. <arc curvature="4.0000006992084627e-02"/>
  1645. </geometry>
  1646. <geometry s="5.3863657942973411e+01" x="6.5254203406540046e+02" y="3.3392806361190935e+02" hdg="-1.9634954085023146e+00" length="1.9634950652581090e+01">
  1647. <spiral curvStart="4.0000006992084627e-02" curvEnd="0.0000000000000000e+00"/>
  1648. </geometry>
  1649. <geometry s="7.3498608595554501e+01" x="6.4999999781556915e+02" y="3.1459375445373223e+02" hdg="-1.5707963268097949e+00" length="1.4593745713131170e+01">
  1650. <line/>
  1651. </geometry>
  1652. </planView>
  1653. <elevationProfile>
  1654. <elevation s="0.0000000000000000e+00" a="0.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  1655. </elevationProfile>
  1656. <lateralProfile>
  1657. </lateralProfile>
  1658. <lanes>
  1659. <laneSection s="0.0000000000000000e+00">
  1660. <center>
  1661. <lane id="0" type="driving" level="false">
  1662. <link>
  1663. </link>
  1664. </lane>
  1665. </center>
  1666. <right>
  1667. <lane id="-1" type="driving" level="false">
  1668. <link>
  1669. <predecessor id="1"/>
  1670. <successor id="1"/>
  1671. </link>
  1672. <width sOffset="0.0000000000000000e+00" a="1.5000000000000000e+01" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  1673. </lane>
  1674. </right>
  1675. </laneSection>
  1676. </lanes>
  1677. <objects>
  1678. </objects>
  1679. <signals>
  1680. </signals>
  1681. <surface>
  1682. </surface>
  1683. </road>
  1684. <road name="" length="1.0000000000026270e+02" id="220" junction="6">
  1685. <link>
  1686. <predecessor elementType="road" elementId="159" contactPoint="end" />
  1687. <successor elementType="road" elementId="175" contactPoint="end" />
  1688. </link>
  1689. <planView>
  1690. <geometry s="0.0000000000000000e+00" x="8.5000000000024943e+02" y="3.4999994849141802e+02" hdg="3.1415921385039733e+00" length="1.0000000000026270e+02">
  1691. <line/>
  1692. </geometry>
  1693. </planView>
  1694. <elevationProfile>
  1695. <elevation s="0.0000000000000000e+00" a="0.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  1696. </elevationProfile>
  1697. <lateralProfile>
  1698. </lateralProfile>
  1699. <lanes>
  1700. <laneSection s="0.0000000000000000e+00">
  1701. <center>
  1702. <lane id="0" type="driving" level="false">
  1703. <link>
  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="1.5000000000000000e+01" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  1714. </lane>
  1715. <lane id="-2" type="shoulder" level="false">
  1716. <link>
  1717. <predecessor id="-2"/>
  1718. <successor id="2"/>
  1719. </link>
  1720. <width sOffset="0.0000000000000000e+00" a="5.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  1721. <height sOffset="0.0000000000000000e+00" inner="0.0000000000000000e+00" outer="0.0000000000000000e+00"/>
  1722. </lane>
  1723. </right>
  1724. </laneSection>
  1725. </lanes>
  1726. <objects>
  1727. </objects>
  1728. <signals>
  1729. </signals>
  1730. <surface>
  1731. </surface>
  1732. </road>
  1733. <road name="" length="1.0000000000026270e+02" id="229" junction="6">
  1734. <link>
  1735. <predecessor elementType="road" elementId="175" contactPoint="end" />
  1736. <successor elementType="road" elementId="159" contactPoint="end" />
  1737. </link>
  1738. <planView>
  1739. <geometry s="0.0000000000000000e+00" x="7.5000000000000000e+02" y="3.5000000000000000e+02" hdg="-5.1509078513589657e-07" length="1.0000000000026270e+02">
  1740. <line/>
  1741. </geometry>
  1742. </planView>
  1743. <elevationProfile>
  1744. <elevation s="0.0000000000000000e+00" a="0.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  1745. </elevationProfile>
  1746. <lateralProfile>
  1747. </lateralProfile>
  1748. <lanes>
  1749. <laneSection s="0.0000000000000000e+00">
  1750. <center>
  1751. <lane id="0" type="driving" level="false">
  1752. <link>
  1753. </link>
  1754. </lane>
  1755. </center>
  1756. <right>
  1757. <lane id="-1" type="driving" level="false">
  1758. <link>
  1759. <predecessor id="-1"/>
  1760. <successor id="1"/>
  1761. </link>
  1762. <width sOffset="0.0000000000000000e+00" a="1.5000000000000000e+01" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  1763. </lane>
  1764. </right>
  1765. </laneSection>
  1766. </lanes>
  1767. <objects>
  1768. </objects>
  1769. <signals>
  1770. </signals>
  1771. <surface>
  1772. </surface>
  1773. </road>
  1774. <road name="" length="2.0000000000000000e+01" id="233" junction="2">
  1775. <link>
  1776. <predecessor elementType="road" elementId="131" contactPoint="start" />
  1777. <successor elementType="road" elementId="141" contactPoint="start" />
  1778. </link>
  1779. <planView>
  1780. <geometry s="0.0000000000000000e+00" x="2.8000000000000000e+02" y="2.0000000000000000e+02" hdg="3.1415926535897931e+00" length="2.0000000000000000e+01">
  1781. <line/>
  1782. </geometry>
  1783. </planView>
  1784. <elevationProfile>
  1785. <elevation s="0.0000000000000000e+00" a="0.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  1786. </elevationProfile>
  1787. <lateralProfile>
  1788. </lateralProfile>
  1789. <lanes>
  1790. <laneSection s="0.0000000000000000e+00">
  1791. <center>
  1792. <lane id="0" type="driving" level="false">
  1793. <link>
  1794. </link>
  1795. </lane>
  1796. </center>
  1797. <right>
  1798. <lane id="-1" type="driving" level="false">
  1799. <link>
  1800. <predecessor id="1"/>
  1801. <successor id="-1"/>
  1802. </link>
  1803. <width sOffset="0.0000000000000000e+00" a="1.5000000000000000e+01" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  1804. </lane>
  1805. <lane id="-2" type="shoulder" level="false">
  1806. <link>
  1807. <predecessor id="2"/>
  1808. <successor id="-2"/>
  1809. </link>
  1810. <width sOffset="0.0000000000000000e+00" a="5.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  1811. <height sOffset="0.0000000000000000e+00" inner="0.0000000000000000e+00" outer="0.0000000000000000e+00"/>
  1812. </lane>
  1813. </right>
  1814. </laneSection>
  1815. </lanes>
  1816. <objects>
  1817. </objects>
  1818. <signals>
  1819. </signals>
  1820. <surface>
  1821. </surface>
  1822. </road>
  1823. <road name="" length="2.0000000000000000e+01" id="236" junction="2">
  1824. <link>
  1825. <predecessor elementType="road" elementId="142" contactPoint="start" />
  1826. <successor elementType="road" elementId="131" contactPoint="start" />
  1827. </link>
  1828. <planView>
  1829. <geometry s="0.0000000000000000e+00" x="2.6000000000000000e+02" y="2.0000000000000000e+02" hdg="0.0000000000000000e+00" length="2.0000000000000000e+01">
  1830. <line/>
  1831. </geometry>
  1832. </planView>
  1833. <elevationProfile>
  1834. <elevation s="0.0000000000000000e+00" a="0.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  1835. </elevationProfile>
  1836. <lateralProfile>
  1837. </lateralProfile>
  1838. <lanes>
  1839. <laneSection s="0.0000000000000000e+00">
  1840. <center>
  1841. <lane id="0" type="driving" level="false">
  1842. <link>
  1843. </link>
  1844. </lane>
  1845. </center>
  1846. <right>
  1847. <lane id="-1" type="driving" level="false">
  1848. <link>
  1849. <predecessor id="1"/>
  1850. <successor id="-1"/>
  1851. </link>
  1852. <width sOffset="0.0000000000000000e+00" a="1.5000000000000000e+01" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  1853. </lane>
  1854. <lane id="-2" type="shoulder" level="false">
  1855. <link>
  1856. <predecessor id="2"/>
  1857. <successor id="-2"/>
  1858. </link>
  1859. <width sOffset="0.0000000000000000e+00" a="5.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  1860. <height sOffset="0.0000000000000000e+00" inner="0.0000000000000000e+00" outer="0.0000000000000000e+00"/>
  1861. </lane>
  1862. </right>
  1863. </laneSection>
  1864. </lanes>
  1865. <objects>
  1866. </objects>
  1867. <signals>
  1868. </signals>
  1869. <surface>
  1870. </surface>
  1871. </road>
  1872. <road name="" length="2.0000000000000000e+01" id="238" junction="-1">
  1873. <link>
  1874. <predecessor elementType="junction" elementId="3" />
  1875. <successor elementType="road" elementId="239" contactPoint="start" />
  1876. </link>
  1877. <planView>
  1878. <geometry s="0.0000000000000000e+00" x="1.0300000000000000e+03" y="2.0000000000000000e+02" hdg="0.0000000000000000e+00" length="2.0000000000000000e+01">
  1879. <line/>
  1880. </geometry>
  1881. </planView>
  1882. <elevationProfile>
  1883. <elevation s="0.0000000000000000e+00" a="0.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  1884. </elevationProfile>
  1885. <lateralProfile>
  1886. </lateralProfile>
  1887. <lanes>
  1888. <laneSection s="0.0000000000000000e+00">
  1889. <left>
  1890. <lane id="2" type="shoulder" level="false">
  1891. <link>
  1892. <successor id="2"/>
  1893. </link>
  1894. <width sOffset="0.0000000000000000e+00" a="5.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  1895. </lane>
  1896. <lane id="1" type="driving" level="false">
  1897. <link>
  1898. <successor id="1"/>
  1899. </link>
  1900. <width sOffset="0.0000000000000000e+00" a="1.5000000000000000e+01" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  1901. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.3000000000000000e-01" laneChange="none" height="1.9999999552965164e-02">
  1902. </roadMark>
  1903. </lane>
  1904. </left>
  1905. <center>
  1906. <lane id="0" type="none" level="false">
  1907. <link>
  1908. </link>
  1909. <roadMark sOffset="0.0000000000000000e+00" type="broken" weight="standard" color="standard" width="1.3000000000000000e-01" laneChange="both" height="1.9999999552965164e-02">
  1910. </roadMark>
  1911. </lane>
  1912. </center>
  1913. <right>
  1914. <lane id="-1" type="driving" level="false">
  1915. <link>
  1916. <successor id="-1"/>
  1917. </link>
  1918. <width sOffset="0.0000000000000000e+00" a="1.5000000000000000e+01" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  1919. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.3000000000000000e-01" laneChange="none" height="1.9999999552965164e-02">
  1920. </roadMark>
  1921. </lane>
  1922. <lane id="-2" type="shoulder" level="false">
  1923. <link>
  1924. <successor id="-2"/>
  1925. </link>
  1926. <width sOffset="0.0000000000000000e+00" a="5.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  1927. </lane>
  1928. </right>
  1929. </laneSection>
  1930. </lanes>
  1931. <objects>
  1932. </objects>
  1933. <signals>
  1934. </signals>
  1935. <surface>
  1936. </surface>
  1937. </road>
  1938. <road name="" length="2.3561944901923448e+02" id="239" junction="-1">
  1939. <link>
  1940. <predecessor elementType="road" elementId="238" contactPoint="end" />
  1941. <successor elementType="road" elementId="240" contactPoint="start" />
  1942. </link>
  1943. <planView>
  1944. <geometry s="0.0000000000000000e+00" x="1.0500000021856315e+03" y="2.0000000000000000e+02" hdg="1.2414513861358500e-12" length="7.8539816339744831e+01">
  1945. <arc curvature="2.0000000000000000e-02"/>
  1946. </geometry>
  1947. <geometry s="7.8539816339744831e+01" x="1.1000000021855694e+03" y="2.5000000000018625e+02" hdg="1.5707963267948963e+00" length="1.5707963267948966e+02">
  1948. <arc curvature="-2.0000000000000000e-02"/>
  1949. </geometry>
  1950. </planView>
  1951. <elevationProfile>
  1952. <elevation s="0.0000000000000000e+00" a="0.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  1953. </elevationProfile>
  1954. <lateralProfile>
  1955. </lateralProfile>
  1956. <lanes>
  1957. <laneSection s="0.0000000000000000e+00">
  1958. <left>
  1959. <lane id="2" type="shoulder" level="false">
  1960. <link>
  1961. <predecessor id="2"/>
  1962. <successor id="2"/>
  1963. </link>
  1964. <width sOffset="0.0000000000000000e+00" a="5.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  1965. </lane>
  1966. <lane id="1" type="driving" level="false">
  1967. <link>
  1968. <predecessor id="1"/>
  1969. <successor id="1"/>
  1970. </link>
  1971. <width sOffset="0.0000000000000000e+00" a="1.5000000000000000e+01" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  1972. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.3000000000000000e-01" laneChange="none" height="1.9999999552965164e-02">
  1973. </roadMark>
  1974. </lane>
  1975. </left>
  1976. <center>
  1977. <lane id="0" type="none" level="false">
  1978. <link>
  1979. </link>
  1980. <roadMark sOffset="0.0000000000000000e+00" type="broken" weight="standard" color="standard" width="1.3000000000000000e-01" laneChange="both" height="1.9999999552965164e-02">
  1981. </roadMark>
  1982. </lane>
  1983. </center>
  1984. <right>
  1985. <lane id="-1" type="driving" level="false">
  1986. <link>
  1987. <predecessor id="-1"/>
  1988. <successor id="-1"/>
  1989. </link>
  1990. <width sOffset="0.0000000000000000e+00" a="1.5000000000000000e+01" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  1991. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.3000000000000000e-01" laneChange="none" height="1.9999999552965164e-02">
  1992. </roadMark>
  1993. </lane>
  1994. <lane id="-2" type="shoulder" level="false">
  1995. <link>
  1996. <predecessor id="-2"/>
  1997. <successor id="-2"/>
  1998. </link>
  1999. <width sOffset="0.0000000000000000e+00" a="5.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  2000. </lane>
  2001. </right>
  2002. </laneSection>
  2003. </lanes>
  2004. <objects>
  2005. </objects>
  2006. <signals>
  2007. </signals>
  2008. <surface>
  2009. </surface>
  2010. </road>
  2011. <road name="" length="1.5000000000000000e+02" id="240" junction="-1">
  2012. <link>
  2013. <predecessor elementType="road" elementId="239" contactPoint="end" />
  2014. <successor elementType="road" elementId="241" contactPoint="start" />
  2015. </link>
  2016. <planView>
  2017. <geometry s="0.0000000000000000e+00" x="1.2000000021855694e+03" y="2.5000000000006210e+02" hdg="-1.5707963268048193e+00" length="1.5000000000000000e+02">
  2018. <line/>
  2019. </geometry>
  2020. </planView>
  2021. <elevationProfile>
  2022. <elevation s="0.0000000000000000e+00" a="0.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  2023. </elevationProfile>
  2024. <lateralProfile>
  2025. </lateralProfile>
  2026. <lanes>
  2027. <laneSection s="0.0000000000000000e+00">
  2028. <left>
  2029. <lane id="2" type="shoulder" level="false">
  2030. <link>
  2031. <predecessor id="2"/>
  2032. <successor id="2"/>
  2033. </link>
  2034. <width sOffset="0.0000000000000000e+00" a="5.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  2035. </lane>
  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="1.5000000000000000e+01" 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.3000000000000000e-01" laneChange="none" height="1.9999999552965164e-02">
  2043. </roadMark>
  2044. </lane>
  2045. </left>
  2046. <center>
  2047. <lane id="0" type="none" level="false">
  2048. <link>
  2049. </link>
  2050. <roadMark sOffset="0.0000000000000000e+00" type="broken" weight="standard" color="standard" width="1.3000000000000000e-01" laneChange="both" height="1.9999999552965164e-02">
  2051. </roadMark>
  2052. </lane>
  2053. </center>
  2054. <right>
  2055. <lane id="-1" type="driving" level="false">
  2056. <link>
  2057. <predecessor id="-1"/>
  2058. <successor id="-1"/>
  2059. </link>
  2060. <width sOffset="0.0000000000000000e+00" a="1.5000000000000000e+01" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  2061. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.3000000000000000e-01" laneChange="none" height="1.9999999552965164e-02">
  2062. </roadMark>
  2063. </lane>
  2064. <lane id="-2" type="shoulder" level="false">
  2065. <link>
  2066. <predecessor id="-2"/>
  2067. <successor id="-2"/>
  2068. </link>
  2069. <width sOffset="0.0000000000000000e+00" a="5.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  2070. </lane>
  2071. </right>
  2072. </laneSection>
  2073. </lanes>
  2074. <objects>
  2075. </objects>
  2076. <signals>
  2077. </signals>
  2078. <surface>
  2079. </surface>
  2080. </road>
  2081. <road name="" length="7.8539816339744831e+01" id="241" junction="-1">
  2082. <link>
  2083. <predecessor elementType="road" elementId="240" contactPoint="end" />
  2084. <successor elementType="road" elementId="242" contactPoint="start" />
  2085. </link>
  2086. <planView>
  2087. <geometry s="0.0000000000000000e+00" x="1.2000000021848259e+03" y="9.9999995628365042e+01" hdg="-1.5707963268048193e+00" length="7.8539816339744831e+01">
  2088. <arc curvature="-2.0000000000000000e-02"/>
  2089. </geometry>
  2090. </planView>
  2091. <elevationProfile>
  2092. <elevation s="0.0000000000000000e+00" a="0.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  2093. </elevationProfile>
  2094. <lateralProfile>
  2095. </lateralProfile>
  2096. <lanes>
  2097. <laneSection s="0.0000000000000000e+00">
  2098. <left>
  2099. <lane id="2" type="shoulder" level="false">
  2100. <link>
  2101. <predecessor id="2"/>
  2102. <successor id="2"/>
  2103. </link>
  2104. <width sOffset="0.0000000000000000e+00" a="5.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  2105. </lane>
  2106. <lane id="1" type="driving" level="false">
  2107. <link>
  2108. <predecessor id="1"/>
  2109. <successor id="1"/>
  2110. </link>
  2111. <width sOffset="0.0000000000000000e+00" a="1.5000000000000000e+01" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  2112. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.3000000000000000e-01" laneChange="none" height="1.9999999552965164e-02">
  2113. </roadMark>
  2114. </lane>
  2115. </left>
  2116. <center>
  2117. <lane id="0" type="none" level="false">
  2118. <link>
  2119. </link>
  2120. <roadMark sOffset="0.0000000000000000e+00" type="broken" weight="standard" color="standard" width="1.3000000000000000e-01" laneChange="both" height="1.9999999552965164e-02">
  2121. </roadMark>
  2122. </lane>
  2123. </center>
  2124. <right>
  2125. <lane id="-1" type="driving" level="false">
  2126. <link>
  2127. <predecessor id="-1"/>
  2128. <successor id="-1"/>
  2129. </link>
  2130. <width sOffset="0.0000000000000000e+00" a="1.5000000000000000e+01" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  2131. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.3000000000000000e-01" laneChange="none" height="1.9999999552965164e-02">
  2132. </roadMark>
  2133. </lane>
  2134. <lane id="-2" type="shoulder" level="false">
  2135. <link>
  2136. <predecessor id="-2"/>
  2137. <successor id="-2"/>
  2138. </link>
  2139. <width sOffset="0.0000000000000000e+00" a="5.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  2140. </lane>
  2141. </right>
  2142. </laneSection>
  2143. </lanes>
  2144. <objects>
  2145. </objects>
  2146. <signals>
  2147. </signals>
  2148. <surface>
  2149. </surface>
  2150. </road>
  2151. <road name="" length="3.0000000000000000e+02" id="242" junction="-1">
  2152. <link>
  2153. <predecessor elementType="road" elementId="241" contactPoint="end" />
  2154. <successor elementType="road" elementId="243" contactPoint="start" />
  2155. </link>
  2156. <planView>
  2157. <geometry s="0.0000000000000000e+00" x="1.1500000021842677e+03" y="4.9999995628923273e+01" hdg="3.1415926535798699e+00" length="3.0000000000000000e+02">
  2158. <line/>
  2159. </geometry>
  2160. </planView>
  2161. <elevationProfile>
  2162. <elevation s="0.0000000000000000e+00" a="0.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  2163. </elevationProfile>
  2164. <lateralProfile>
  2165. </lateralProfile>
  2166. <lanes>
  2167. <laneSection s="0.0000000000000000e+00">
  2168. <left>
  2169. <lane id="2" type="shoulder" level="false">
  2170. <link>
  2171. <predecessor id="2"/>
  2172. <successor id="2"/>
  2173. </link>
  2174. <width sOffset="0.0000000000000000e+00" a="5.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  2175. </lane>
  2176. <lane id="1" type="driving" level="false">
  2177. <link>
  2178. <predecessor id="1"/>
  2179. <successor id="1"/>
  2180. </link>
  2181. <width sOffset="0.0000000000000000e+00" a="1.5000000000000000e+01" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  2182. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.3000000000000000e-01" laneChange="none" height="1.9999999552965164e-02">
  2183. </roadMark>
  2184. </lane>
  2185. </left>
  2186. <center>
  2187. <lane id="0" type="none" level="false">
  2188. <link>
  2189. </link>
  2190. <roadMark sOffset="0.0000000000000000e+00" type="broken" weight="standard" color="standard" width="1.3000000000000000e-01" laneChange="both" height="1.9999999552965164e-02">
  2191. </roadMark>
  2192. </lane>
  2193. </center>
  2194. <right>
  2195. <lane id="-1" type="driving" level="false">
  2196. <link>
  2197. <predecessor id="-1"/>
  2198. <successor id="-1"/>
  2199. </link>
  2200. <width sOffset="0.0000000000000000e+00" a="1.5000000000000000e+01" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  2201. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.3000000000000000e-01" laneChange="none" height="1.9999999552965164e-02">
  2202. </roadMark>
  2203. </lane>
  2204. <lane id="-2" type="shoulder" level="false">
  2205. <link>
  2206. <predecessor id="-2"/>
  2207. <successor id="-2"/>
  2208. </link>
  2209. <width sOffset="0.0000000000000000e+00" a="5.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  2210. </lane>
  2211. </right>
  2212. </laneSection>
  2213. </lanes>
  2214. <objects>
  2215. </objects>
  2216. <signals>
  2217. </signals>
  2218. <surface>
  2219. </surface>
  2220. </road>
  2221. <road name="" length="7.8539816339744831e+01" id="243" junction="-1">
  2222. <link>
  2223. <predecessor elementType="road" elementId="242" contactPoint="end" />
  2224. <successor elementType="road" elementId="244" contactPoint="start" />
  2225. </link>
  2226. <planView>
  2227. <geometry s="0.0000000000000000e+00" x="8.4999999999814008e+02" y="4.9999995631900262e+01" hdg="3.1415926535798704e+00" length="7.8539816339744831e+01">
  2228. <arc curvature="-2.0000000000000000e-02"/>
  2229. </geometry>
  2230. </planView>
  2231. <elevationProfile>
  2232. <elevation s="0.0000000000000000e+00" a="0.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  2233. </elevationProfile>
  2234. <lateralProfile>
  2235. </lateralProfile>
  2236. <lanes>
  2237. <laneSection s="0.0000000000000000e+00">
  2238. <left>
  2239. <lane id="2" type="shoulder" level="false">
  2240. <link>
  2241. <predecessor id="2"/>
  2242. <successor id="2"/>
  2243. </link>
  2244. <width sOffset="0.0000000000000000e+00" a="5.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  2245. </lane>
  2246. <lane id="1" type="driving" level="false">
  2247. <link>
  2248. <predecessor id="1"/>
  2249. <successor id="1"/>
  2250. </link>
  2251. <width sOffset="0.0000000000000000e+00" a="1.5000000000000000e+01" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  2252. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.3000000000000000e-01" laneChange="none" height="1.9999999552965164e-02">
  2253. </roadMark>
  2254. </lane>
  2255. </left>
  2256. <center>
  2257. <lane id="0" type="none" level="false">
  2258. <link>
  2259. </link>
  2260. <roadMark sOffset="0.0000000000000000e+00" type="broken" weight="standard" color="standard" width="1.3000000000000000e-01" laneChange="both" height="1.9999999552965164e-02">
  2261. </roadMark>
  2262. </lane>
  2263. </center>
  2264. <right>
  2265. <lane id="-1" type="driving" level="false">
  2266. <link>
  2267. <predecessor id="-1"/>
  2268. <successor id="-1"/>
  2269. </link>
  2270. <width sOffset="0.0000000000000000e+00" a="1.5000000000000000e+01" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  2271. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.3000000000000000e-01" laneChange="none" height="1.9999999552965164e-02">
  2272. </roadMark>
  2273. </lane>
  2274. <lane id="-2" type="shoulder" level="false">
  2275. <link>
  2276. <predecessor id="-2"/>
  2277. <successor id="-2"/>
  2278. </link>
  2279. <width sOffset="0.0000000000000000e+00" a="5.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  2280. </lane>
  2281. </right>
  2282. </laneSection>
  2283. </lanes>
  2284. <objects>
  2285. </objects>
  2286. <signals>
  2287. </signals>
  2288. <surface>
  2289. </surface>
  2290. </road>
  2291. <road name="" length="1.9999999999999997e+02" id="244" junction="-1">
  2292. <link>
  2293. <predecessor elementType="road" elementId="243" contactPoint="end" />
  2294. <successor elementType="junction" elementId="6" />
  2295. </link>
  2296. <planView>
  2297. <geometry s="0.0000000000000000e+00" x="7.9999999999869829e+02" y="9.9999995632458450e+01" hdg="1.5707963267849718e+00" length="1.9999999999999997e+02">
  2298. <line/>
  2299. </geometry>
  2300. </planView>
  2301. <elevationProfile>
  2302. <elevation s="0.0000000000000000e+00" a="0.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  2303. </elevationProfile>
  2304. <lateralProfile>
  2305. </lateralProfile>
  2306. <lanes>
  2307. <laneSection s="0.0000000000000000e+00">
  2308. <left>
  2309. <lane id="2" type="shoulder" level="false">
  2310. <link>
  2311. <predecessor id="2"/>
  2312. </link>
  2313. <width sOffset="0.0000000000000000e+00" a="5.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  2314. </lane>
  2315. <lane id="1" type="driving" level="false">
  2316. <link>
  2317. <predecessor id="1"/>
  2318. </link>
  2319. <width sOffset="0.0000000000000000e+00" a="1.5000000000000000e+01" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  2320. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.3000000000000000e-01" laneChange="none" height="1.9999999552965164e-02">
  2321. </roadMark>
  2322. </lane>
  2323. </left>
  2324. <center>
  2325. <lane id="0" type="none" level="false">
  2326. <link>
  2327. </link>
  2328. <roadMark sOffset="0.0000000000000000e+00" type="broken" weight="standard" color="standard" width="1.3000000000000000e-01" laneChange="both" height="1.9999999552965164e-02">
  2329. </roadMark>
  2330. </lane>
  2331. </center>
  2332. <right>
  2333. <lane id="-1" type="driving" level="false">
  2334. <link>
  2335. <predecessor id="-1"/>
  2336. </link>
  2337. <width sOffset="0.0000000000000000e+00" a="1.5000000000000000e+01" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  2338. <roadMark sOffset="0.0000000000000000e+00" type="solid" weight="standard" color="standard" width="1.3000000000000000e-01" laneChange="none" height="1.9999999552965164e-02">
  2339. </roadMark>
  2340. </lane>
  2341. <lane id="-2" type="shoulder" level="false">
  2342. <link>
  2343. <predecessor id="-2"/>
  2344. </link>
  2345. <width sOffset="0.0000000000000000e+00" a="5.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  2346. </lane>
  2347. </right>
  2348. </laneSection>
  2349. </lanes>
  2350. <objects>
  2351. </objects>
  2352. <signals>
  2353. </signals>
  2354. <surface>
  2355. </surface>
  2356. </road>
  2357. <road name="" length="2.0000000000000000e+01" id="247" junction="3">
  2358. <link>
  2359. <predecessor elementType="road" elementId="133" contactPoint="start" />
  2360. <successor elementType="road" elementId="238" contactPoint="start" />
  2361. </link>
  2362. <planView>
  2363. <geometry s="0.0000000000000000e+00" x="1.0100000000000000e+03" y="2.0000000000000000e+02" hdg="0.0000000000000000e+00" length="2.0000000000000000e+01">
  2364. <line/>
  2365. </geometry>
  2366. </planView>
  2367. <elevationProfile>
  2368. <elevation s="0.0000000000000000e+00" a="0.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  2369. </elevationProfile>
  2370. <lateralProfile>
  2371. </lateralProfile>
  2372. <lanes>
  2373. <laneSection s="0.0000000000000000e+00">
  2374. <center>
  2375. <lane id="0" type="driving" level="false">
  2376. <link>
  2377. </link>
  2378. </lane>
  2379. </center>
  2380. <right>
  2381. <lane id="-1" type="driving" level="false">
  2382. <link>
  2383. <predecessor id="1"/>
  2384. <successor id="-1"/>
  2385. </link>
  2386. <width sOffset="0.0000000000000000e+00" a="1.5000000000000000e+01" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  2387. </lane>
  2388. <lane id="-2" type="shoulder" level="false">
  2389. <link>
  2390. <predecessor id="2"/>
  2391. <successor id="-2"/>
  2392. </link>
  2393. <width sOffset="0.0000000000000000e+00" a="5.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  2394. <height sOffset="0.0000000000000000e+00" inner="0.0000000000000000e+00" outer="0.0000000000000000e+00"/>
  2395. </lane>
  2396. </right>
  2397. </laneSection>
  2398. </lanes>
  2399. <objects>
  2400. </objects>
  2401. <signals>
  2402. </signals>
  2403. <surface>
  2404. </surface>
  2405. </road>
  2406. <road name="" length="2.0000000000000000e+01" id="250" junction="3">
  2407. <link>
  2408. <predecessor elementType="road" elementId="238" contactPoint="start" />
  2409. <successor elementType="road" elementId="132" contactPoint="start" />
  2410. </link>
  2411. <planView>
  2412. <geometry s="0.0000000000000000e+00" x="1.0300000000000000e+03" y="2.0000000000000000e+02" hdg="3.1415926535897931e+00" length="2.0000000000000000e+01">
  2413. <line/>
  2414. </geometry>
  2415. </planView>
  2416. <elevationProfile>
  2417. <elevation s="0.0000000000000000e+00" a="0.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  2418. </elevationProfile>
  2419. <lateralProfile>
  2420. </lateralProfile>
  2421. <lanes>
  2422. <laneSection s="0.0000000000000000e+00">
  2423. <center>
  2424. <lane id="0" type="driving" level="false">
  2425. <link>
  2426. </link>
  2427. </lane>
  2428. </center>
  2429. <right>
  2430. <lane id="-1" type="driving" level="false">
  2431. <link>
  2432. <predecessor id="1"/>
  2433. <successor id="-1"/>
  2434. </link>
  2435. <width sOffset="0.0000000000000000e+00" a="1.5000000000000000e+01" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  2436. </lane>
  2437. <lane id="-2" type="shoulder" level="false">
  2438. <link>
  2439. <predecessor id="2"/>
  2440. <successor id="-2"/>
  2441. </link>
  2442. <width sOffset="0.0000000000000000e+00" a="5.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  2443. <height sOffset="0.0000000000000000e+00" inner="0.0000000000000000e+00" outer="0.0000000000000000e+00"/>
  2444. </lane>
  2445. </right>
  2446. </laneSection>
  2447. </lanes>
  2448. <objects>
  2449. </objects>
  2450. <signals>
  2451. </signals>
  2452. <surface>
  2453. </surface>
  2454. </road>
  2455. <road name="" length="8.8092322868749676e+01" id="253" junction="6">
  2456. <link>
  2457. <predecessor elementType="road" elementId="244" contactPoint="end" />
  2458. <successor elementType="road" elementId="159" contactPoint="end" />
  2459. </link>
  2460. <planView>
  2461. <geometry s="0.0000000000000000e+00" x="8.0000000000068326e+02" y="2.9999999563245842e+02" hdg="1.5707963267948966e+00" length="1.4593734505032160e+01">
  2462. <line/>
  2463. </geometry>
  2464. <geometry s="1.4593734505032160e+01" x="8.0000000000068326e+02" y="3.1459373013749058e+02" hdg="1.5707963267948966e+00" length="1.9634935572692928e+01">
  2465. <spiral curvStart="-0.0000000000000000e+00" curvEnd="-4.0000037712867885e-02"/>
  2466. </geometry>
  2467. <geometry s="3.4228670077725084e+01" x="8.0254203429799873e+02" y="3.3392802444664017e+02" hdg="1.1780972450974141e+00" length="1.9634935572692921e+01">
  2468. <arc curvature="-4.0000037712867885e-02"/>
  2469. </geometry>
  2470. <geometry s="5.3863605650418009e+01" x="8.1607192404540376e+02" y="3.4745791419407880e+02" hdg="3.9269908169996537e-01" length="1.9634935572692928e+01">
  2471. <spiral curvStart="-4.0000037712867885e-02" curvEnd="-0.0000000000000000e+00"/>
  2472. </geometry>
  2473. <geometry s="7.3498541223110934e+01" x="8.3540621835461070e+02" y="3.4999994849141802e+02" hdg="0.0000000000000000e+00" length="1.4593781645638728e+01">
  2474. <line/>
  2475. </geometry>
  2476. </planView>
  2477. <elevationProfile>
  2478. <elevation s="0.0000000000000000e+00" a="0.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  2479. </elevationProfile>
  2480. <lateralProfile>
  2481. </lateralProfile>
  2482. <lanes>
  2483. <laneSection s="0.0000000000000000e+00">
  2484. <center>
  2485. <lane id="0" type="driving" level="false">
  2486. <link>
  2487. </link>
  2488. </lane>
  2489. </center>
  2490. <right>
  2491. <lane id="-1" type="driving" level="false">
  2492. <link>
  2493. <predecessor id="-1"/>
  2494. <successor id="1"/>
  2495. </link>
  2496. <width sOffset="0.0000000000000000e+00" a="1.5000000000000000e+01" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  2497. </lane>
  2498. <lane id="-2" type="shoulder" level="false">
  2499. <link>
  2500. <predecessor id="-2"/>
  2501. <successor id="2"/>
  2502. </link>
  2503. <width sOffset="0.0000000000000000e+00" a="5.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  2504. <height sOffset="0.0000000000000000e+00" inner="0.0000000000000000e+00" outer="0.0000000000000000e+00"/>
  2505. </lane>
  2506. </right>
  2507. </laneSection>
  2508. </lanes>
  2509. <objects>
  2510. </objects>
  2511. <signals>
  2512. </signals>
  2513. <surface>
  2514. </surface>
  2515. </road>
  2516. <road name="" length="8.8092363151514093e+01" id="256" junction="6">
  2517. <link>
  2518. <predecessor elementType="road" elementId="244" contactPoint="end" />
  2519. <successor elementType="road" elementId="175" contactPoint="end" />
  2520. </link>
  2521. <planView>
  2522. <geometry s="0.0000000000000000e+00" x="8.0000000000068326e+02" y="2.9999999563245842e+02" hdg="1.5707963267948966e+00" length="1.4593752631379459e+01">
  2523. <line/>
  2524. </geometry>
  2525. <geometry s="1.4593752631379459e+01" x="8.0000000000068326e+02" y="3.1459374826383788e+02" hdg="1.5707963267948966e+00" length="1.9634954085204516e+01">
  2526. <spiral curvStart="0.0000000000000000e+00" curvEnd="3.9999999999453403e-02"/>
  2527. </geometry>
  2528. <geometry s="3.4228706716583972e+01" x="7.9745796330664791e+02" y="3.3392806080204383e+02" hdg="1.9634954084923790e+00" length="1.9634954085204509e+01">
  2529. <arc curvature="3.9999999999453403e-02"/>
  2530. </geometry>
  2531. <geometry s="5.3863660801788484e+01" x="7.8392806080278433e+02" y="3.4745796330594095e+02" hdg="2.7488935718898277e+00" length="1.9634954085204516e+01">
  2532. <spiral curvStart="3.9999999999453403e-02" curvEnd="0.0000000000000000e+00"/>
  2533. </geometry>
  2534. <geometry s="7.3498614886992996e+01" x="7.6459374826452108e+02" y="3.5000000000000000e+02" hdg="3.1415926535897931e+00" length="1.4593748264521082e+01">
  2535. <line/>
  2536. </geometry>
  2537. </planView>
  2538. <elevationProfile>
  2539. <elevation s="0.0000000000000000e+00" a="0.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  2540. </elevationProfile>
  2541. <lateralProfile>
  2542. </lateralProfile>
  2543. <lanes>
  2544. <laneSection s="0.0000000000000000e+00">
  2545. <center>
  2546. <lane id="0" type="driving" level="false">
  2547. <link>
  2548. </link>
  2549. </lane>
  2550. </center>
  2551. <right>
  2552. <lane id="-1" type="driving" level="false">
  2553. <link>
  2554. <predecessor id="-1"/>
  2555. <successor id="1"/>
  2556. </link>
  2557. <width sOffset="0.0000000000000000e+00" a="1.5000000000000000e+01" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  2558. </lane>
  2559. </right>
  2560. </laneSection>
  2561. </lanes>
  2562. <objects>
  2563. </objects>
  2564. <signals>
  2565. </signals>
  2566. <surface>
  2567. </surface>
  2568. </road>
  2569. <road name="" length="8.8092322868410662e+01" id="259" junction="6">
  2570. <link>
  2571. <predecessor elementType="road" elementId="159" contactPoint="end" />
  2572. <successor elementType="road" elementId="244" contactPoint="end" />
  2573. </link>
  2574. <planView>
  2575. <geometry s="0.0000000000000000e+00" x="8.5000000000024943e+02" y="3.4999994849141802e+02" hdg="3.1415926535897931e+00" length="1.4593781645115314e+01">
  2576. <line/>
  2577. </geometry>
  2578. <geometry s="1.4593781645115314e+01" x="8.3540621835513411e+02" y="3.4999994849141802e+02" hdg="3.1415926535897931e+00" length="1.9634935572763663e+01">
  2579. <spiral curvStart="0.0000000000000000e+00" curvEnd="4.0000037712471341e-02"/>
  2580. </geometry>
  2581. <geometry s="3.4228717217878980e+01" x="8.1607192404585373e+02" y="3.4745791419408533e+02" hdg="-2.7488935718947887e+00" length="1.9634935572763670e+01">
  2582. <arc curvature="4.0000037712471341e-02"/>
  2583. </geometry>
  2584. <geometry s="5.3863652790642647e+01" x="8.0254203429835229e+02" y="3.3392802444671787e+02" hdg="-1.9634954085022969e+00" length="1.9634935572763663e+01">
  2585. <spiral curvStart="4.0000037712471341e-02" curvEnd="0.0000000000000000e+00"/>
  2586. </geometry>
  2587. <geometry s="7.3498588363406313e+01" x="8.0000000000082798e+02" y="3.1459373013746279e+02" hdg="-1.5707963268097789e+00" length="1.4593734505004363e+01">
  2588. <line/>
  2589. </geometry>
  2590. </planView>
  2591. <elevationProfile>
  2592. <elevation s="0.0000000000000000e+00" a="0.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  2593. </elevationProfile>
  2594. <lateralProfile>
  2595. </lateralProfile>
  2596. <lanes>
  2597. <laneSection s="0.0000000000000000e+00">
  2598. <center>
  2599. <lane id="0" type="driving" level="false">
  2600. <link>
  2601. </link>
  2602. </lane>
  2603. </center>
  2604. <right>
  2605. <lane id="-1" type="driving" level="false">
  2606. <link>
  2607. <predecessor id="-1"/>
  2608. <successor id="1"/>
  2609. </link>
  2610. <width sOffset="0.0000000000000000e+00" a="1.5000000000000000e+01" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  2611. </lane>
  2612. </right>
  2613. </laneSection>
  2614. </lanes>
  2615. <objects>
  2616. </objects>
  2617. <signals>
  2618. </signals>
  2619. <surface>
  2620. </surface>
  2621. </road>
  2622. <road name="" length="8.8092363151735057e+01" id="262" junction="6">
  2623. <link>
  2624. <predecessor elementType="road" elementId="175" contactPoint="end" />
  2625. <successor elementType="road" elementId="244" contactPoint="end" />
  2626. </link>
  2627. <planView>
  2628. <geometry s="0.0000000000000000e+00" x="7.5000000000000000e+02" y="3.5000000000000000e+02" hdg="0.0000000000000000e+00" length="1.4593748264693545e+01">
  2629. <line/>
  2630. </geometry>
  2631. <geometry s="1.4593748264693545e+01" x="7.6459374826469355e+02" y="3.5000000000000000e+02" hdg="0.0000000000000000e+00" length="1.9634954085328442e+01">
  2632. <spiral curvStart="-0.0000000000000000e+00" curvEnd="-3.9999999999453403e-02"/>
  2633. </geometry>
  2634. <geometry s="3.4228702350021990e+01" x="7.8392806080307514e+02" y="3.4745796330590917e+02" hdg="-3.9269908169996182e-01" length="1.9634954085328435e+01">
  2635. <arc curvature="-3.9999999999453403e-02"/>
  2636. </geometry>
  2637. <geometry s="5.3863656435350421e+01" x="7.9745796330692883e+02" y="3.3392806080192133e+02" hdg="-1.1780972451023661e+00" length="1.9634954085328442e+01">
  2638. <spiral curvStart="-3.9999999999453403e-02" curvEnd="-0.0000000000000000e+00"/>
  2639. </geometry>
  2640. <geometry s="7.3498610520678866e+01" x="8.0000000000082798e+02" y="3.1459374826351461e+02" hdg="-1.5707963268097789e+00" length="1.4593752631056191e+01">
  2641. <line/>
  2642. </geometry>
  2643. </planView>
  2644. <elevationProfile>
  2645. <elevation s="0.0000000000000000e+00" a="0.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  2646. </elevationProfile>
  2647. <lateralProfile>
  2648. </lateralProfile>
  2649. <lanes>
  2650. <laneSection s="0.0000000000000000e+00">
  2651. <center>
  2652. <lane id="0" type="driving" level="false">
  2653. <link>
  2654. </link>
  2655. </lane>
  2656. </center>
  2657. <right>
  2658. <lane id="-1" type="driving" level="false">
  2659. <link>
  2660. <predecessor id="-1"/>
  2661. <successor id="1"/>
  2662. </link>
  2663. <width sOffset="0.0000000000000000e+00" a="1.5000000000000000e+01" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  2664. </lane>
  2665. <lane id="-2" type="shoulder" level="false">
  2666. <link>
  2667. <predecessor id="-2"/>
  2668. <successor id="2"/>
  2669. </link>
  2670. <width sOffset="0.0000000000000000e+00" a="5.0000000000000000e+00" b="0.0000000000000000e+00" c="0.0000000000000000e+00" d="0.0000000000000000e+00"/>
  2671. <height sOffset="0.0000000000000000e+00" inner="0.0000000000000000e+00" outer="0.0000000000000000e+00"/>
  2672. </lane>
  2673. </right>
  2674. </laneSection>
  2675. </lanes>
  2676. <objects>
  2677. </objects>
  2678. <signals>
  2679. </signals>
  2680. <surface>
  2681. </surface>
  2682. </road>
  2683. <junction name="" id="1">
  2684. <connection id="0" incomingRoad="151" connectingRoad="162" contactPoint="start">
  2685. <laneLink from="1" to="-1"/>
  2686. </connection>
  2687. <connection id="1" incomingRoad="159" connectingRoad="165" contactPoint="start">
  2688. <laneLink from="1" to="-1"/>
  2689. </connection>
  2690. </junction>
  2691. <junction name="" id="4">
  2692. <connection id="0" incomingRoad="166" connectingRoad="171" contactPoint="start">
  2693. <laneLink from="1" to="-1"/>
  2694. </connection>
  2695. <connection id="1" incomingRoad="167" connectingRoad="174" contactPoint="start">
  2696. <laneLink from="1" to="-1"/>
  2697. </connection>
  2698. </junction>
  2699. <junction name="" id="5">
  2700. <connection id="0" incomingRoad="131" connectingRoad="178" contactPoint="start">
  2701. <laneLink from="-1" to="-1"/>
  2702. <laneLink from="-2" to="-2"/>
  2703. </connection>
  2704. <connection id="1" incomingRoad="131" connectingRoad="181" contactPoint="start">
  2705. <laneLink from="-1" to="-1"/>
  2706. </connection>
  2707. <connection id="2" incomingRoad="131" connectingRoad="184" contactPoint="start">
  2708. <laneLink from="-1" to="-1"/>
  2709. </connection>
  2710. <connection id="3" incomingRoad="140" connectingRoad="187" contactPoint="start">
  2711. <laneLink from="-1" to="-1"/>
  2712. <laneLink from="-2" to="-2"/>
  2713. </connection>
  2714. <connection id="4" incomingRoad="140" connectingRoad="190" contactPoint="start">
  2715. <laneLink from="-1" to="-1"/>
  2716. </connection>
  2717. <connection id="5" incomingRoad="140" connectingRoad="193" contactPoint="start">
  2718. <laneLink from="-1" to="-1"/>
  2719. </connection>
  2720. <connection id="6" incomingRoad="166" connectingRoad="196" contactPoint="start">
  2721. <laneLink from="-1" to="-1"/>
  2722. <laneLink from="-2" to="-2"/>
  2723. </connection>
  2724. <connection id="7" incomingRoad="166" connectingRoad="199" contactPoint="start">
  2725. <laneLink from="-1" to="-1"/>
  2726. </connection>
  2727. <connection id="8" incomingRoad="166" connectingRoad="202" contactPoint="start">
  2728. <laneLink from="-1" to="-1"/>
  2729. </connection>
  2730. <connection id="9" incomingRoad="175" connectingRoad="205" contactPoint="start">
  2731. <laneLink from="1" to="-1"/>
  2732. <laneLink from="2" to="-2"/>
  2733. </connection>
  2734. <connection id="10" incomingRoad="175" connectingRoad="208" contactPoint="start">
  2735. <laneLink from="1" to="-1"/>
  2736. </connection>
  2737. <connection id="11" incomingRoad="175" connectingRoad="211" contactPoint="start">
  2738. <laneLink from="1" to="-1"/>
  2739. </connection>
  2740. </junction>
  2741. <junction name="" id="6">
  2742. <connection id="0" incomingRoad="244" connectingRoad="253" contactPoint="start">
  2743. <laneLink from="-1" to="-1"/>
  2744. <laneLink from="-2" to="-2"/>
  2745. </connection>
  2746. <connection id="1" incomingRoad="244" connectingRoad="256" contactPoint="start">
  2747. <laneLink from="-1" to="-1"/>
  2748. </connection>
  2749. <connection id="2" incomingRoad="159" connectingRoad="220" contactPoint="start">
  2750. <laneLink from="-1" to="-1"/>
  2751. <laneLink from="-2" to="-2"/>
  2752. </connection>
  2753. <connection id="3" incomingRoad="159" connectingRoad="259" contactPoint="start">
  2754. <laneLink from="-1" to="-1"/>
  2755. </connection>
  2756. <connection id="4" incomingRoad="175" connectingRoad="262" contactPoint="start">
  2757. <laneLink from="-1" to="-1"/>
  2758. <laneLink from="-2" to="-2"/>
  2759. </connection>
  2760. <connection id="5" incomingRoad="175" connectingRoad="229" contactPoint="start">
  2761. <laneLink from="-1" to="-1"/>
  2762. </connection>
  2763. </junction>
  2764. <junction name="" id="2">
  2765. <connection id="0" incomingRoad="131" connectingRoad="233" contactPoint="start">
  2766. <laneLink from="1" to="-1"/>
  2767. <laneLink from="2" to="-2"/>
  2768. </connection>
  2769. <connection id="1" incomingRoad="142" connectingRoad="236" contactPoint="start">
  2770. <laneLink from="1" to="-1"/>
  2771. <laneLink from="2" to="-2"/>
  2772. </connection>
  2773. </junction>
  2774. <junction name="" id="3">
  2775. <connection id="0" incomingRoad="133" connectingRoad="247" contactPoint="start">
  2776. <laneLink from="1" to="-1"/>
  2777. <laneLink from="2" to="-2"/>
  2778. </connection>
  2779. <connection id="1" incomingRoad="238" connectingRoad="250" contactPoint="start">
  2780. <laneLink from="1" to="-1"/>
  2781. <laneLink from="2" to="-2"/>
  2782. </connection>
  2783. </junction>
  2784. </OpenDRIVE>