Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[sumo-user] Unterminated comment error when using the route file generated by duarouter

Hi all,


I ran several simulations with the route file generated by duarouter but I have encountered the error intermittently as a following terminal message:

```
200.00 vehicles loaded.
0.00 vehicles discarded.
200.00 vehicles written.
Success.
Success.up to time step: 200.02
OV routes are randomly generated with weighted od matrix
Error: unterminated comment
 In file '/home/bon/LaneRPM/Trip/ODTrip/OVODroute_crowded.rou.xml'
 At line/column 21/1.
Traceback (most recent call last):
  File "/home/bon/LaneRPM/DQN/LaneRPM_RouteDQN_train.py", line 489, in <module>
    state, info = env.reset() # dict state
  File "/home/bon/LaneRPM/LaneRPM/rl/maskedRouteEnv.py", line 276, in reset
    traci.start(TRACI_CMD,label=self._env_config['label'])
  File "/home/bon/LaneRPM/.venv/lib/python3.10/site-packages/traci/main.py", line 147, in start
    result = init(sumoPort, numRetries, "localhost", label, sumoProcess, doSwitch, traceFile, traceGetters)
  File "/home/bon/LaneRPM/.venv/lib/python3.10/site-packages/traci/main.py", line 119, in init
    return con.getVersion()
  File "/home/bon/LaneRPM/.venv/lib/python3.10/site-packages/traci/connection.py", line 382, in getVersion
    result = self._sendCmd(command, None, None)
  File "/home/bon/LaneRPM/.venv/lib/python3.10/site-packages/traci/connection.py", line 232, in _sendCmd
    return self._sendExact()
  File "/home/bon/LaneRPM/.venv/lib/python3.10/site-packages/traci/connection.py", line 137, in _sendExact
    raise FatalTraCIError("Connection closed by SUMO.")
traci.exceptions.FatalTraCIError: Connection closed by SUMO.
Quitting (on error).
```

First of all, line 21, column 1 in the `.xml` route file generated by duarouter seems to have no trouble in terms of comment rule. (See the cursor position on below capture. This `.xml` file is also attached in this mail.) This is why I get trouble in debugging.
image.png

Though I thought the very immediate cause of my error was the `duarouter` that generated the `.xml` file, I will attach the method that I used for generating the route file for your information.
```
def OVRoute_crowded(
    n=500,
    pois = {
        '1_3': 0.3,
        '3_1': 0.3,
    },
    crowdedTo=True, # pois are destination if True, origin otherwise
):
    now = datetime.datetime.now()
   
    # Check p1 and p2 are properly set
    assert (isinstance(pois,dict)),\
        "Input argument `pois` should be a form of dict"
    assert (p >= 0 for p in pois.values()), \
        "All given probabilities should be non-negative"
    assert (sum(pois.values()) < 1), \
        "Given probabilities p1 or p2 is too high. They should be low such that p1 + p2 > 1"
   
    tazs = []
    for i in range(5):
        for j in range(5):
            tazs.append(f'{i}_{j}')
   
    tazWeights = {taz: \
        (pois[taz] if taz in pois.keys() \
         else (1 - sum(pois.values())) / (len(tazs) - len(pois))) \
        for taz in tazs}
   
    ods = {od: 0 for od in product(tazs, repeat=2)}
   
    for i in range(n):
        taz1 = random.choice(tazs)
        taz2 = random.choices(list(tazWeights.keys()),
                             weights=tazWeights.values())[0]
        while taz1 == taz2:
            taz1 = random.choice(tazs)
        if crowdedTo == True: # treat taz2 as destination
            ods[(taz1, taz2)] += 1
        else: # treat taz1 as destination
            ods[(taz2, taz1)] += 1
       
    with open(OD_CROWDED_FILE, 'w') as f:
            f.write(f'''<?xml version="1.0" encoding="UTF-8"?>

        <!-- generated on {now.strftime('%Y-%m-%d %H:%M:%S')} by OVRoute_crowded() from LaneRPM/utils.py -->

        <data xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://sumo.dlr.de/xsd/datamode_file.xsd">
        ''')
            f.write('    <interval id="DEFAULT_VEHTYPE" begin="0" end="1">\n')
            for od, value in ods.items():
                f.write(f'        <tazRelation from="{od[0]}" to="{od[1]}" count="{value}"/>\n')
            f.write(f'''    </interval>
        </data>''')
   
    cmds = [
        f'od2trips -v --taz-files {TAZ_FILE} --tazrelation-files {OD_CROWDED_FILE} -o {ODTRIP_FILE}',
        f'duarouter --net-file {NET_FILE} --route-files {ODTRIP_FILE} --routing-algorithm "CH" --output-file {OV_ODROUTE_CROWDED_FILE}',
    ]
   
    for cmd in cmds:
        subprocess.run(cmd,shell=True)
    custom_print('OV routes are randomly generated with weighted od matrix')
   
    return OV_ODROUTE_CROWDED_FILE
```

I am eager to resolve this error that kept disrupting my simulation.


Thank you for reading this lengthy mail.

Looking forward to hearing from you soon.


Best regards,
Bon
<?xml version="1.0" encoding="UTF-8"?>

<!-- generated on 2025-01-13 09:36:24 by Eclipse SUMO duarouter Version 1.21.0
<duarouterConfiguration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xsi:noNamespaceSchemaLocation="http://sumo.dlr.de/xsd/duarouterConfiguration.xsd";>

    <input>
        <net-file value="/home/bon/LaneRPM/signalized_network.net.xml"/>
        <route-files value="/home/bon/LaneRPM/Trip/ODTrip/ODTrip.odtrips.xml"/>
    </input>

    <output>
        <output-file value="/home/bon/LaneRPM/Trip/ODTrip/OVODroute_crowded.rou.xml"/>
    </output>

    <processing>
        <routing-algorithm value="CH"/>
    </processing>

</duarouterConfiguration>
-->

<routes xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xsi:noNamespaceSchemaLocation="http://sumo.dlr.de/xsd/routes_file.xsd";>
    <vehicle id="174" type="DEFAULT_VEHTYPE" depart="0.00" departLane="free" departSpeed="max" fromTaz="4_2" toTaz="2_1">
        <route edges="E2D2 D2C2 C2C1 C1C2"/>
    </vehicle>
    <vehicle id="33" type="DEFAULT_VEHTYPE" depart="0.01" departLane="free" departSpeed="max" fromTaz="0_3" toTaz="4_1">
        <route edges="A3A2 A2B2 B2C2 C2D2 D2E2 E2E1 E1E2"/>
    </vehicle>
    <vehicle id="144" type="DEFAULT_VEHTYPE" depart="0.02" departLane="free" departSpeed="max" fromTaz="3_2" toTaz="4_1">
        <route edges="D2D3 D3D2 D2E2 E2E1 E1E2"/>
    </vehicle>
    <vehicle id="87" type="DEFAULT_VEHTYPE" depart="0.02" departLane="free" departSpeed="max" fromTaz="2_0" toTaz="4_3">
        <route edges="C0C1 C1C2 C2D2 D2D3 D3E3 E3D3"/>
    </vehicle>
    <vehicle id="195" type="DEFAULT_VEHTYPE" depart="0.04" departLane="free" departSpeed="max" fromTaz="4_4" toTaz="4_3">
        <route edges="E4E3 E3E2"/>
    </vehicle>
    <vehicle id="14" type="DEFAULT_VEHTYPE" depart="0.05" departLane="free" departSpeed="max" fromTaz="0_1" toTaz="3_0">
        <route edges="A1B1 B1C1 C1D1 D1D0 D0E0"/>
    </vehicle>
    <vehicle id="154" type="DEFAULT_VEHTYPE" depart="0.05" departLane="free" departSpeed="max" fromTaz="3_4" toTaz="2_2">
        <route edges="D4E4 E4E3 E3D3 D3C3 C3C2 C2B2"/>
    </vehicle>
    <vehicle id="142" type="DEFAULT_VEHTYPE" depart="0.05" departLane="free" departSpeed="max" fromTaz="3_1" toTaz="4_3">
        <route edges="D1D2 D2E2 E2E3 E3E2"/>
    </vehicle>
    <vehicle id="185" type="DEFAULT_VEHTYPE" depart="0.05" departLane="free" departSpeed="max" fromTaz="4_3" toTaz="2_2">
        <route edges="E3D3 D3C3 C3C2 C2C3"/>
    </vehicle>
    <vehicle id="65" type="DEFAULT_VEHTYPE" depart="0.06" departLane="free" departSpeed="max" fromTaz="1_2" toTaz="2_2">
        <route edges="B2A2 A2B2 B2C2 C2C3"/>
    </vehicle>
    <vehicle id="88" type="DEFAULT_VEHTYPE" depart="0.07" departLane="free" departSpeed="max" fromTaz="2_1" toTaz="1_4">
        <route edges="C1D1 D1D2 D2C2 C2C3 C3B3 B3B4 B4A4"/>
    </vehicle>
    <vehicle id="152" type="DEFAULT_VEHTYPE" depart="0.08" departLane="free" departSpeed="max" fromTaz="3_3" toTaz="4_3">
        <route edges="D3C3 C3D3 D3E3 E3E4"/>
    </vehicle>
    <vehicle id="119" type="DEFAULT_VEHTYPE" depart="0.08" departLane="free" departSpeed="max" fromTaz="2_4" toTaz="2_2">
        <route edges="C4D4 D4C4 C4C3 C3C2 C2C1"/>
    </vehicle>
    <vehicle id="8" type="DEFAULT_VEHTYPE" depart="0.08" departLane="free" departSpeed="max" fromTaz="0_0" toTaz="4_3">
        <route edges="A0B0 B0B1 B1C1 C1C2 C2D2 D2D3 D3E3 E3D3"/>
    </vehicle>
    <vehicle id="95" type="DEFAULT_VEHTYPE" depart="0.09" departLane="free" departSpeed="max" fromTaz="2_1" toTaz="4_1">
        <route edges="C1D1 D1E1 E1D1"/>
    </vehicle>
    <vehicle id="145" type="DEFAULT_VEHTYPE" depart="0.09" departLane="free" departSpeed="max" fromTaz="3_3" toTaz="2_2">
        <route edges="D3D2 D2C2 C2C3"/>
    </vehicle>
    <vehicle id="77" type="DEFAULT_VEHTYPE" depart="0.09" departLane="free" departSpeed="max" fromTaz="1_3" toTaz="4_3">
        <route edges="B3A3 A3B3 B3C3 C3D3 D3E3 E3D3"/>
    </vehicle>
    <vehicle id="170" type="DEFAULT_VEHTYPE" depart="0.10" departLane="free" departSpeed="max" fromTaz="4_1" toTaz="4_3">
        <route edges="E1E2 E2E3 E3E2"/>
    </vehicle>
    <vehicle id="103" type="DEFAULT_VEHTYPE" depart="0.10" departLane="free" departSpeed="max" fromTaz="2_2" toTaz="2_1">
        <route edges="C2C3 C3C2 C2C1 C1C2"/>
    </vehicle>
    <vehicle id="102" type="DEFAULT_VEHTYPE" depart="0.11" departLane="free" departSpeed="max" fromTaz="2_2" toTaz="1_4">
        <route edges="C2D2 D2C2 C2C3 C3B3 B3B4 B4B3"/>
    </vehicle>
    <vehicle id="129" type="DEFAULT_VEHTYPE" depart="0.11" departLane="free" departSpeed="max" fromTaz="3_0" toTaz="2_2">
        <route edges="D0C0 C0C1 C1C2 C2B2"/>
    </vehicle>
    <vehicle id="32" type="DEFAULT_VEHTYPE" depart="0.12" departLane="free" departSpeed="max" fromTaz="0_3" toTaz="4_1">
        <route edges="A3A4 A4B4 B4B3 B3C3 C3C2 C2D2 D2D1 D1E1 E1E0"/>
    </vehicle>
    <vehicle id="74" type="DEFAULT_VEHTYPE" depart="0.12" departLane="free" departSpeed="max" fromTaz="1_2" toTaz="4_3">
        <route edges="B2B3 B3C3 C3D3 D3E3 E3E2"/>
    </vehicle>
    <vehicle id="57" type="DEFAULT_VEHTYPE" depart="0.13" departLane="free" departSpeed="max" fromTaz="1_1" toTaz="2_2">
        <route edges="B1C1 C1C2 C2B2"/>
    </vehicle>
    <vehicle id="4" type="DEFAULT_VEHTYPE" depart="0.13" departLane="free" departSpeed="max" fromTaz="0_0" toTaz="4_1">
        <route edges="A0A1 A1B1 B1C1 C1D1 D1E1 E1D1"/>
    </vehicle>
    <vehicle id="68" type="DEFAULT_VEHTYPE" depart="0.13" departLane="free" departSpeed="max" fromTaz="1_2" toTaz="4_1">
        <route edges="B2B1 B1C1 C1D1 D1E1 E1D1"/>
    </vehicle>
    <vehicle id="82" type="DEFAULT_VEHTYPE" depart="0.13" departLane="free" departSpeed="max" fromTaz="2_0" toTaz="1_2">
        <route edges="C0B0 B0B1 B1B2 B2B3"/>
    </vehicle>
    <vehicle id="133" type="DEFAULT_VEHTYPE" depart="0.15" departLane="free" departSpeed="max" fromTaz="3_0" toTaz="4_3">
        <route edges="D0D1 D1D2 D2D3 D3E3 E3E4"/>
    </vehicle>
    <vehicle id="80" type="DEFAULT_VEHTYPE" depart="0.15" departLane="free" departSpeed="max" fromTaz="1_4" toTaz="4_1">
        <route edges="B4C4 C4C3 C3D3 D3D2 D2E2 E2E1 E1E2"/>
    </vehicle>
    <vehicle id="38" type="DEFAULT_VEHTYPE" depart="0.17" departLane="free" departSpeed="max" fromTaz="0_4" toTaz="2_2">
        <route edges="A4A3 A3B3 B3B2 B2C2 C2C3"/>
    </vehicle>
    <vehicle id="72" type="DEFAULT_VEHTYPE" depart="0.17" departLane="free" departSpeed="max" fromTaz="1_2" toTaz="4_3">
        <route edges="B2C2 C2C3 C3D3 D3E3 E3D3"/>
    </vehicle>
    <vehicle id="178" type="DEFAULT_VEHTYPE" depart="0.18" departLane="free" departSpeed="max" fromTaz="4_2" toTaz="4_1">
        <route edges="E2E3 E3E2 E2E1 E1E0"/>
    </vehicle>
    <vehicle id="105" type="DEFAULT_VEHTYPE" depart="0.18" departLane="free" departSpeed="max" fromTaz="2_2" toTaz="4_3">
        <route edges="C2D2 D2D3 D3E3 E3D3"/>
    </vehicle>
    <vehicle id="17" type="DEFAULT_VEHTYPE" depart="0.20" departLane="free" departSpeed="max" fromTaz="0_2" toTaz="2_2">
        <route edges="A2A1 A1B1 B1B2 B2C2 C2C3"/>
    </vehicle>
    <vehicle id="162" type="DEFAULT_VEHTYPE" depart="0.20" departLane="free" departSpeed="max" fromTaz="4_0" toTaz="4_1">
        <route edges="E0E1 E1E2"/>
    </vehicle>
    <vehicle id="183" type="DEFAULT_VEHTYPE" depart="0.21" departLane="free" departSpeed="max" fromTaz="4_2" toTaz="4_3">
        <route edges="E2D2 D2E2 E2E3 E3E4"/>
    </vehicle>
    <vehicle id="25" type="DEFAULT_VEHTYPE" depart="0.21" departLane="free" departSpeed="max" fromTaz="0_2" toTaz="4_3">
        <route edges="A2A3 A3B3 B3C3 C3D3 D3E3 E3E4"/>
    </vehicle>
    <vehicle id="89" type="DEFAULT_VEHTYPE" depart="0.22" departLane="free" departSpeed="max" fromTaz="2_1" toTaz="2_2">
        <route edges="C1C0 C0C1 C1C2 C2B2"/>
    </vehicle>
    <vehicle id="148" type="DEFAULT_VEHTYPE" depart="0.22" departLane="free" departSpeed="max" fromTaz="3_3" toTaz="2_2">
        <route edges="D3D4 D4D3 D3D2 D2C2 C2C1"/>
    </vehicle>
    <vehicle id="138" type="DEFAULT_VEHTYPE" depart="0.22" departLane="free" departSpeed="max" fromTaz="3_1" toTaz="4_1">
        <route edges="D1E1 E1E0"/>
    </vehicle>
    <vehicle id="165" type="DEFAULT_VEHTYPE" depart="0.22" departLane="free" departSpeed="max" fromTaz="4_0" toTaz="4_3">
        <route edges="E0E1 E1E2 E2E3 E3D3"/>
    </vehicle>
    <vehicle id="15" type="DEFAULT_VEHTYPE" depart="0.23" departLane="free" departSpeed="max" fromTaz="0_1" toTaz="4_1">
        <route edges="A1B1 B1C1 C1D1 D1E1 E1E2"/>
    </vehicle>
    <vehicle id="71" type="DEFAULT_VEHTYPE" depart="0.26" departLane="free" departSpeed="max" fromTaz="1_2" toTaz="4_1">
        <route edges="B2B3 B3B2 B2C2 C2C1 C1D1 D1E1 E1D1"/>
    </vehicle>
    <vehicle id="188" type="DEFAULT_VEHTYPE" depart="0.26" departLane="free" departSpeed="max" fromTaz="4_3" toTaz="4_1">
        <route edges="E3D3 D3D2 D2D1 D1E1 E1D1"/>
    </vehicle>
    <vehicle id="60" type="DEFAULT_VEHTYPE" depart="0.27" departLane="free" departSpeed="max" fromTaz="1_1" toTaz="4_1">
        <route edges="B1B2 B2B1 B1C1 C1D1 D1E1 E1E0"/>
    </vehicle>
    <vehicle id="10" type="DEFAULT_VEHTYPE" depart="0.27" departLane="free" departSpeed="max" fromTaz="0_1" toTaz="2_2">
        <route edges="A1B1 B1C1 C1C2 C2C1"/>
    </vehicle>
    <vehicle id="146" type="DEFAULT_VEHTYPE" depart="0.28" departLane="free" departSpeed="max" fromTaz="3_3" toTaz="2_2">
        <route edges="D3D2 D2C2 C2C3"/>
    </vehicle>
    <vehicle id="171" type="DEFAULT_VEHTYPE" depart="0.28" departLane="free" departSpeed="max" fromTaz="4_1" toTaz="4_3">
        <route edges="E1D1 D1E1 E1E2 E2E3 E3E4"/>
    </vehicle>
    <vehicle id="85" type="DEFAULT_VEHTYPE" depart="0.28" departLane="free" departSpeed="max" fromTaz="2_0" toTaz="4_1">
        <route edges="C0D0 D0D1 D1E1 E1E2"/>
    </vehicle>
    <vehicle id="115" type="DEFAULT_VEHTYPE" depart="0.29" departLane="free" departSpeed="max" fromTaz="2_3" toTaz="4_3">
        <route edges="C3B3 B3C3 C3D3 D3E3 E3E2"/>
    </vehicle>
    <vehicle id="187" type="DEFAULT_VEHTYPE" depart="0.29" departLane="free" departSpeed="max" fromTaz="4_3" toTaz="4_1">
        <route edges="E3E2 E2E1 E1E2"/>
    </vehicle>
    <vehicle id="46" type="DEFAULT_VEHTYPE" depart="0.29" departLane="free" departSpeed="max" fromTaz="1_0" toTaz="2_2">
        <route edges="B0B1 B1C1 C1C2 C2D2"/>
    </vehicle>
    <vehicle id="128" type="DEFAULT_VEHTYPE" depart="0.30" departLane="free" departSpeed="max" fromTaz="2_4" toTaz="4_3">
        <route edges="C4D4 D4D3 D3E3 E3E2"/>
    </vehicle>
    <vehicle id="43" type="DEFAULT_VEHTYPE" depart="0.31" departLane="free" departSpeed="max" fromTaz="0_4" toTaz="4_3">
        <route edges="A4B4 B4C4 C4C3 C3D3 D3E3 E3D3"/>
    </vehicle>
    <vehicle id="157" type="DEFAULT_VEHTYPE" depart="0.32" departLane="free" departSpeed="max" fromTaz="3_4" toTaz="4_3">
        <route edges="D4D3 D3E3 E3E2"/>
    </vehicle>
    <vehicle id="69" type="DEFAULT_VEHTYPE" depart="0.32" departLane="free" departSpeed="max" fromTaz="1_2" toTaz="4_1">
        <route edges="B2C2 C2D2 D2D1 D1E1 E1D1"/>
    </vehicle>
    <vehicle id="124" type="DEFAULT_VEHTYPE" depart="0.32" departLane="free" departSpeed="max" fromTaz="2_4" toTaz="4_3">
        <route edges="C4B4 B4C4 C4C3 C3D3 D3E3 E3D3"/>
    </vehicle>
    <vehicle id="28" type="DEFAULT_VEHTYPE" depart="0.32" departLane="free" departSpeed="max" fromTaz="0_3" toTaz="3_4">
        <route edges="A3B3 B3C3 C3D3 D3D4 D4D3"/>
    </vehicle>
    <vehicle id="111" type="DEFAULT_VEHTYPE" depart="0.33" departLane="free" departSpeed="max" fromTaz="2_3" toTaz="2_2">
        <route edges="C3C2 C2C1"/>
    </vehicle>
    <vehicle id="106" type="DEFAULT_VEHTYPE" depart="0.34" departLane="free" departSpeed="max" fromTaz="2_2" toTaz="4_3">
        <route edges="C2B2 B2C2 C2C3 C3D3 D3E3 E3D3"/>
    </vehicle>
    <vehicle id="193" type="DEFAULT_VEHTYPE" depart="0.35" departLane="free" departSpeed="max" fromTaz="4_4" toTaz="4_1">
        <route edges="E4E3 E3E2 E2E1 E1E0"/>
    </vehicle>
    <vehicle id="52" type="DEFAULT_VEHTYPE" depart="0.35" departLane="free" departSpeed="max" fromTaz="1_0" toTaz="4_3">
        <route edges="B0C0 C0C1 C1D1 D1D2 D2D3 D3E3 E3D3"/>
    </vehicle>
    <vehicle id="122" type="DEFAULT_VEHTYPE" depart="0.35" departLane="free" departSpeed="max" fromTaz="2_4" toTaz="2_2">
        <route edges="C4C3 C3C2 C2D2"/>
    </vehicle>
    <vehicle id="121" type="DEFAULT_VEHTYPE" depart="0.36" departLane="free" departSpeed="max" fromTaz="2_4" toTaz="2_2">
        <route edges="C4D4 D4C4 C4C3 C3C2 C2C1"/>
    </vehicle>
    <vehicle id="62" type="DEFAULT_VEHTYPE" depart="0.36" departLane="free" departSpeed="max" fromTaz="1_1" toTaz="4_1">
        <route edges="B1A1 A1B1 B1C1 C1D1 D1E1 E1E0"/>
    </vehicle>
    <vehicle id="198" type="DEFAULT_VEHTYPE" depart="0.36" departLane="free" departSpeed="max" fromTaz="4_4" toTaz="4_3">
        <route edges="E4D4 D4E4 E4E3 E3E4"/>
    </vehicle>
    <vehicle id="51" type="DEFAULT_VEHTYPE" depart="0.36" departLane="free" departSpeed="max" fromTaz="1_0" toTaz="4_3">
        <route edges="B0C0 C0C1 C1D1 D1D2 D2E2 E2E3 E3E2"/>
    </vehicle>
    <vehicle id="84" type="DEFAULT_VEHTYPE" depart="0.37" departLane="free" departSpeed="max" fromTaz="2_0" toTaz="2_2">
        <route edges="C0C1 C1C2 C2C1"/>
    </vehicle>
    <vehicle id="156" type="DEFAULT_VEHTYPE" depart="0.37" departLane="free" departSpeed="max" fromTaz="3_4" toTaz="4_1">
        <route edges="D4D3 D3D2 D2D1 D1E1 E1E0"/>
    </vehicle>
    <vehicle id="147" type="DEFAULT_VEHTYPE" depart="0.37" departLane="free" departSpeed="max" fromTaz="3_3" toTaz="2_2">
        <route edges="D3C3 C3C2 C2C3"/>
    </vehicle>
    <vehicle id="161" type="DEFAULT_VEHTYPE" depart="0.37" departLane="free" departSpeed="max" fromTaz="4_0" toTaz="4_1">
        <route edges="E0D0 D0E0 E0E1 E1E0"/>
    </vehicle>
    <vehicle id="63" type="DEFAULT_VEHTYPE" depart="0.38" departLane="free" departSpeed="max" fromTaz="1_1" toTaz="4_3">
        <route edges="B1B2 B2C2 C2D2 D2D3 D3E3 E3D3"/>
    </vehicle>
    <vehicle id="58" type="DEFAULT_VEHTYPE" depart="0.39" departLane="free" departSpeed="max" fromTaz="1_1" toTaz="4_1">
        <route edges="B1C1 C1D1 D1E1 E1E0"/>
    </vehicle>
    <vehicle id="78" type="DEFAULT_VEHTYPE" depart="0.39" departLane="free" departSpeed="max" fromTaz="1_4" toTaz="2_2">
        <route edges="B4C4 C4C3 C3C2 C2D2"/>
    </vehicle>
    <vehicle id="70" type="DEFAULT_VEHTYPE" depart="0.40" departLane="free" departSpeed="max" fromTaz="1_2" toTaz="4_1">
        <route edges="B2B1 B1C1 C1D1 D1E1 E1D1"/>
    </vehicle>
    <vehicle id="13" type="DEFAULT_VEHTYPE" depart="0.40" departLane="free" departSpeed="max" fromTaz="0_1" toTaz="2_2">
        <route edges="A1A2 A2B2 B2C2 C2B2"/>
    </vehicle>
    <vehicle id="173" type="DEFAULT_VEHTYPE" depart="0.41" departLane="free" departSpeed="max" fromTaz="4_1" toTaz="4_3">
        <route edges="E1D1 D1E1 E1E2 E2E3 E3D3"/>
    </vehicle>
    <vehicle id="155" type="DEFAULT_VEHTYPE" depart="0.41" departLane="free" departSpeed="max" fromTaz="3_4" toTaz="2_2">
        <route edges="D4D3 D3C3 C3C2 C2C3"/>
    </vehicle>
    <vehicle id="2" type="DEFAULT_VEHTYPE" depart="0.41" departLane="free" departSpeed="max" fromTaz="0_0" toTaz="2_2">
        <route edges="A0B0 B0B1 B1B2 B2C2 C2C3"/>
    </vehicle>
    <vehicle id="90" type="DEFAULT_VEHTYPE" depart="0.41" departLane="free" departSpeed="max" fromTaz="2_1" toTaz="2_2">
        <route edges="C1D1 D1C1 C1C2 C2B2"/>
    </vehicle>
    <vehicle id="132" type="DEFAULT_VEHTYPE" depart="0.42" departLane="free" departSpeed="max" fromTaz="3_0" toTaz="4_1">
        <route edges="D0D1 D1E1 E1E0"/>
    </vehicle>
    <vehicle id="153" type="DEFAULT_VEHTYPE" depart="0.43" departLane="free" departSpeed="max" fromTaz="3_4" toTaz="1_4">
        <route edges="D4E4 E4E3 E3E4 E4D4 D4C4 C4B4 B4A4"/>
    </vehicle>
    <vehicle id="41" type="DEFAULT_VEHTYPE" depart="0.43" departLane="free" departSpeed="max" fromTaz="0_4" toTaz="4_3">
        <route edges="A4B4 B4C4 C4C3 C3D3 D3E3 E3E2"/>
    </vehicle>
    <vehicle id="47" type="DEFAULT_VEHTYPE" depart="0.43" departLane="free" departSpeed="max" fromTaz="1_0" toTaz="2_2">
        <route edges="B0A0 A0A1 A1B1 B1C1 C1C2 C2D2"/>
    </vehicle>
    <vehicle id="190" type="DEFAULT_VEHTYPE" depart="0.44" departLane="free" departSpeed="max" fromTaz="4_4" toTaz="2_2">
        <route edges="E4E3 E3D3 D3D2 D2C2 C2D2"/>
    </vehicle>
    <vehicle id="24" type="DEFAULT_VEHTYPE" depart="0.44" departLane="free" departSpeed="max" fromTaz="0_2" toTaz="4_3">
        <route edges="A2A3 A3B3 B3C3 C3D3 D3E3 E3E2"/>
    </vehicle>
    <vehicle id="29" type="DEFAULT_VEHTYPE" depart="0.44" departLane="free" departSpeed="max" fromTaz="0_3" toTaz="4_1">
        <route edges="A3A4 A4B4 B4B3 B3C3 C3D3 D3D2 D2E2 E2E1 E1E2"/>
    </vehicle>
    <vehicle id="164" type="DEFAULT_VEHTYPE" depart="0.44" departLane="free" departSpeed="max" fromTaz="4_0" toTaz="4_3">
        <route edges="E0E1 E1E2 E2E3 E3E2"/>
    </vehicle>
    <vehicle id="45" type="DEFAULT_VEHTYPE" depart="0.45" departLane="free" departSpeed="max" fromTaz="1_0" toTaz="2_2">
        <route edges="B0B1 B1C1 C1C2 C2D2"/>
    </vehicle>
    <vehicle id="131" type="DEFAULT_VEHTYPE" depart="0.45" departLane="free" departSpeed="max" fromTaz="3_0" toTaz="4_1">
        <route edges="D0C0 C0D0 D0D1 D1E1 E1D1"/>
    </vehicle>
    <vehicle id="91" type="DEFAULT_VEHTYPE" depart="0.46" departLane="free" departSpeed="max" fromTaz="2_1" toTaz="2_2">
        <route edges="C1B1 B1C1 C1C2 C2B2"/>
    </vehicle>
    <vehicle id="76" type="DEFAULT_VEHTYPE" depart="0.47" departLane="free" departSpeed="max" fromTaz="1_3" toTaz="4_1">
        <route edges="B3B2 B2C2 C2D2 D2E2 E2E1 E1E2"/>
    </vehicle>
    <vehicle id="169" type="DEFAULT_VEHTYPE" depart="0.47" departLane="free" departSpeed="max" fromTaz="4_1" toTaz="4_3">
        <route edges="E1E2 E2E3 E3E2"/>
    </vehicle>
    <vehicle id="176" type="DEFAULT_VEHTYPE" depart="0.47" departLane="free" departSpeed="max" fromTaz="4_2" toTaz="3_4">
        <route edges="E2D2 D2D3 D3D4 D4E4"/>
    </vehicle>
    <vehicle id="40" type="DEFAULT_VEHTYPE" depart="0.48" departLane="free" departSpeed="max" fromTaz="0_4" toTaz="4_3">
        <route edges="A4B4 B4C4 C4C3 C3D3 D3E3 E3E2"/>
    </vehicle>
    <vehicle id="167" type="DEFAULT_VEHTYPE" depart="0.49" departLane="free" departSpeed="max" fromTaz="4_1" toTaz="2_2">
        <route edges="E1D1 D1D2 D2C2 C2D2"/>
    </vehicle>
    <vehicle id="37" type="DEFAULT_VEHTYPE" depart="0.51" departLane="free" departSpeed="max" fromTaz="0_4" toTaz="2_2">
        <route edges="A4B4 B4B3 B3B2 B2C2 C2C1"/>
    </vehicle>
    <vehicle id="31" type="DEFAULT_VEHTYPE" depart="0.51" departLane="free" departSpeed="max" fromTaz="0_3" toTaz="4_1">
        <route edges="A3A4 A4B4 B4B3 B3C3 C3D3 D3D2 D2E2 E2E1 E1E2"/>
    </vehicle>
    <vehicle id="7" type="DEFAULT_VEHTYPE" depart="0.53" departLane="free" departSpeed="max" fromTaz="0_0" toTaz="4_3">
        <route edges="A0B0 B0B1 B1C1 C1C2 C2D2 D2D3 D3E3 E3E4"/>
    </vehicle>
    <vehicle id="35" type="DEFAULT_VEHTYPE" depart="0.53" departLane="free" departSpeed="max" fromTaz="0_3" toTaz="4_3">
        <route edges="A3A4 A4B4 B4B3 B3C3 C3D3 D3E3 E3D3"/>
    </vehicle>
    <vehicle id="123" type="DEFAULT_VEHTYPE" depart="0.54" departLane="free" departSpeed="max" fromTaz="2_4" toTaz="4_1">
        <route edges="C4B4 B4C4 C4C3 C3D3 D3D2 D2E2 E2E1 E1E2"/>
    </vehicle>
    <vehicle id="182" type="DEFAULT_VEHTYPE" depart="0.54" departLane="free" departSpeed="max" fromTaz="4_2" toTaz="4_3">
        <route edges="E2E1 E1E2 E2E3 E3E4"/>
    </vehicle>
    <vehicle id="93" type="DEFAULT_VEHTYPE" depart="0.54" departLane="free" departSpeed="max" fromTaz="2_1" toTaz="3_2">
        <route edges="C1B1 B1C1 C1D1 D1D2 D2E2"/>
    </vehicle>
    <vehicle id="98" type="DEFAULT_VEHTYPE" depart="0.54" departLane="free" departSpeed="max" fromTaz="2_1" toTaz="4_3">
        <route edges="C1D1 D1D2 D2E2 E2E3 E3E4"/>
    </vehicle>
    <vehicle id="55" type="DEFAULT_VEHTYPE" depart="0.55" departLane="free" departSpeed="max" fromTaz="1_1" toTaz="2_2">
        <route edges="B1B0 B0B1 B1C1 C1C2 C2C1"/>
    </vehicle>
    <vehicle id="107" type="DEFAULT_VEHTYPE" depart="0.55" departLane="free" departSpeed="max" fromTaz="2_2" toTaz="4_3">
        <route edges="C2D2 D2D3 D3E3 E3D3"/>
    </vehicle>
    <vehicle id="116" type="DEFAULT_VEHTYPE" depart="0.56" departLane="free" departSpeed="max" fromTaz="2_3" toTaz="4_3">
        <route edges="C3B3 B3C3 C3D3 D3E3 E3D3"/>
    </vehicle>
    <vehicle id="94" type="DEFAULT_VEHTYPE" depart="0.56" departLane="free" departSpeed="max" fromTaz="2_1" toTaz="4_1">
        <route edges="C1C0 C0C1 C1D1 D1E1 E1E2"/>
    </vehicle>
    <vehicle id="168" type="DEFAULT_VEHTYPE" depart="0.56" departLane="free" departSpeed="max" fromTaz="4_1" toTaz="2_2">
        <route edges="E1E2 E2D2 D2C2 C2C3"/>
    </vehicle>
    <vehicle id="18" type="DEFAULT_VEHTYPE" depart="0.56" departLane="free" departSpeed="max" fromTaz="0_2" toTaz="2_2">
        <route edges="A2A1 A1B1 B1C1 C1C2 C2C1"/>
    </vehicle>
    <vehicle id="21" type="DEFAULT_VEHTYPE" depart="0.57" departLane="free" departSpeed="max" fromTaz="0_2" toTaz="4_1">
        <route edges="A2A3 A3A2 A2B2 B2B1 B1C1 C1D1 D1E1 E1D1"/>
    </vehicle>
    <vehicle id="136" type="DEFAULT_VEHTYPE" depart="0.57" departLane="free" departSpeed="max" fromTaz="3_1" toTaz="2_2">
        <route edges="D1E1 E1D1 D1D2 D2C2 C2D2"/>
    </vehicle>
    <vehicle id="158" type="DEFAULT_VEHTYPE" depart="0.58" departLane="free" departSpeed="max" fromTaz="3_4" toTaz="4_3">
        <route edges="D4E4 E4E3 E3D3"/>
    </vehicle>
    <vehicle id="27" type="DEFAULT_VEHTYPE" depart="0.59" departLane="free" departSpeed="max" fromTaz="0_3" toTaz="1_3">
        <route edges="A3A2 A2B2 B2B3 B3A3"/>
    </vehicle>
    <vehicle id="22" type="DEFAULT_VEHTYPE" depart="0.59" departLane="free" departSpeed="max" fromTaz="0_2" toTaz="4_1">
        <route edges="A2A1 A1B1 B1C1 C1D1 D1E1 E1D1"/>
    </vehicle>
    <vehicle id="49" type="DEFAULT_VEHTYPE" depart="0.59" departLane="free" departSpeed="max" fromTaz="1_0" toTaz="4_2">
        <route edges="B0B1 B1C1 C1D1 D1D2 D2E2 E2E3"/>
    </vehicle>
    <vehicle id="113" type="DEFAULT_VEHTYPE" depart="0.61" departLane="free" departSpeed="max" fromTaz="2_3" toTaz="4_1">
        <route edges="C3C4 C4C3 C3D3 D3D2 D2E2 E2E1 E1E2"/>
    </vehicle>
    <vehicle id="141" type="DEFAULT_VEHTYPE" depart="0.61" departLane="free" departSpeed="max" fromTaz="3_1" toTaz="4_3">
        <route edges="D1D2 D2D3 D3E3 E3E4"/>
    </vehicle>
    <vehicle id="50" type="DEFAULT_VEHTYPE" depart="0.61" departLane="free" departSpeed="max" fromTaz="1_0" toTaz="4_3">
        <route edges="B0A0 A0A1 A1B1 B1C1 C1C2 C2D2 D2D3 D3E3 E3E2"/>
    </vehicle>
    <vehicle id="67" type="DEFAULT_VEHTYPE" depart="0.61" departLane="free" departSpeed="max" fromTaz="1_2" toTaz="4_1">
        <route edges="B2A2 A2B2 B2B1 B1C1 C1D1 D1E1 E1E0"/>
    </vehicle>
    <vehicle id="114" type="DEFAULT_VEHTYPE" depart="0.63" departLane="free" departSpeed="max" fromTaz="2_3" toTaz="4_3">
        <route edges="C3B3 B3C3 C3D3 D3E3 E3E4"/>
    </vehicle>
    <vehicle id="12" type="DEFAULT_VEHTYPE" depart="0.63" departLane="free" departSpeed="max" fromTaz="0_1" toTaz="2_2">
        <route edges="A1A0 A0B0 B0B1 B1C1 C1C2 C2B2"/>
    </vehicle>
    <vehicle id="56" type="DEFAULT_VEHTYPE" depart="0.65" departLane="free" departSpeed="max" fromTaz="1_1" toTaz="2_2">
        <route edges="B1B0 B0B1 B1C1 C1C2 C2B2"/>
    </vehicle>
    <vehicle id="104" type="DEFAULT_VEHTYPE" depart="0.66" departLane="free" departSpeed="max" fromTaz="2_2" toTaz="4_1">
        <route edges="C2C3 C3C2 C2D2 D2E2 E2E1 E1E2"/>
    </vehicle>
    <vehicle id="96" type="DEFAULT_VEHTYPE" depart="0.66" departLane="free" departSpeed="max" fromTaz="2_1" toTaz="4_1">
        <route edges="C1C2 C2C1 C1D1 D1E1 E1D1"/>
    </vehicle>
    <vehicle id="159" type="DEFAULT_VEHTYPE" depart="0.68" departLane="free" departSpeed="max" fromTaz="4_0" toTaz="0_3">
        <route edges="E0E1 E1D1 D1D2 D2C2 C2C3 C3B3 B3A3 A3B3"/>
    </vehicle>
    <vehicle id="175" type="DEFAULT_VEHTYPE" depart="0.68" departLane="free" departSpeed="max" fromTaz="4_2" toTaz="2_2">
        <route edges="E2E1 E1E2 E2D2 D2C2 C2D2"/>
    </vehicle>
    <vehicle id="42" type="DEFAULT_VEHTYPE" depart="0.68" departLane="free" departSpeed="max" fromTaz="0_4" toTaz="4_3">
        <route edges="A4B4 B4C4 C4D4 D4E4 E4E3 E3E4"/>
    </vehicle>
    <vehicle id="160" type="DEFAULT_VEHTYPE" depart="0.69" departLane="free" departSpeed="max" fromTaz="4_0" toTaz="4_1">
        <route edges="E0D0 D0E0 E0E1 E1D1"/>
    </vehicle>
    <vehicle id="11" type="DEFAULT_VEHTYPE" depart="0.69" departLane="free" departSpeed="max" fromTaz="0_1" toTaz="2_2">
        <route edges="A1A0 A0B0 B0B1 B1C1 C1C2 C2C1"/>
    </vehicle>
    <vehicle id="64" type="DEFAULT_VEHTYPE" depart="0.70" departLane="free" departSpeed="max" fromTaz="1_2" toTaz="2_2">
        <route edges="B2B3 B3B2 B2C2 C2B2"/>
    </vehicle>
    <vehicle id="109" type="DEFAULT_VEHTYPE" depart="0.70" departLane="free" departSpeed="max" fromTaz="2_2" toTaz="4_3">
        <route edges="C2C3 C3D3 D3E3 E3E4"/>
    </vehicle>
    <vehicle id="135" type="DEFAULT_VEHTYPE" depart="0.70" departLane="free" departSpeed="max" fromTaz="3_0" toTaz="4_3">
        <route edges="D0C0 C0D0 D0D1 D1D2 D2D3 D3E3 E3D3"/>
    </vehicle>
    <vehicle id="137" type="DEFAULT_VEHTYPE" depart="0.71" departLane="free" departSpeed="max" fromTaz="3_1" toTaz="2_2">
        <route edges="D1E1 E1D1 D1C1 C1C2 C2B2"/>
    </vehicle>
    <vehicle id="199" type="DEFAULT_VEHTYPE" depart="0.71" departLane="free" departSpeed="max" fromTaz="4_4" toTaz="4_3">
        <route edges="E4E3 E3E2"/>
    </vehicle>
    <vehicle id="180" type="DEFAULT_VEHTYPE" depart="0.72" departLane="free" departSpeed="max" fromTaz="4_2" toTaz="4_1">
        <route edges="E2E3 E3E2 E2E1 E1D1"/>
    </vehicle>
    <vehicle id="75" type="DEFAULT_VEHTYPE" depart="0.72" departLane="free" departSpeed="max" fromTaz="1_3" toTaz="2_2">
        <route edges="B3B4 B4B3 B3C3 C3C2 C2D2"/>
    </vehicle>
    <vehicle id="179" type="DEFAULT_VEHTYPE" depart="0.72" departLane="free" departSpeed="max" fromTaz="4_2" toTaz="4_1">
        <route edges="E2D2 D2D1 D1E1 E1E0"/>
    </vehicle>
    <vehicle id="194" type="DEFAULT_VEHTYPE" depart="0.72" departLane="free" departSpeed="max" fromTaz="4_4" toTaz="4_1">
        <route edges="E4D4 D4D3 D3D2 D2D1 D1E1 E1D1"/>
    </vehicle>
    <vehicle id="81" type="DEFAULT_VEHTYPE" depart="0.72" departLane="free" departSpeed="max" fromTaz="1_4" toTaz="4_3">
        <route edges="B4A4 A4A3 A3B3 B3C3 C3D3 D3E3 E3E2"/>
    </vehicle>
    <vehicle id="48" type="DEFAULT_VEHTYPE" depart="0.72" departLane="free" departSpeed="max" fromTaz="1_0" toTaz="4_1">
        <route edges="B0C0 C0D0 D0D1 D1E1 E1E0"/>
    </vehicle>
    <vehicle id="112" type="DEFAULT_VEHTYPE" depart="0.73" departLane="free" departSpeed="max" fromTaz="2_3" toTaz="4_1">
        <route edges="C3C4 C4C3 C3D3 D3D2 D2D1 D1E1 E1D1"/>
    </vehicle>
    <vehicle id="100" type="DEFAULT_VEHTYPE" depart="0.73" departLane="free" departSpeed="max" fromTaz="2_2" toTaz="0_3">
        <route edges="C2C1 C1C2 C2B2 B2B3 B3A3 A3B3"/>
    </vehicle>
    <vehicle id="34" type="DEFAULT_VEHTYPE" depart="0.73" departLane="free" departSpeed="max" fromTaz="0_3" toTaz="4_1">
        <route edges="A3B3 B3B2 B2C2 C2C1 C1D1 D1E1 E1D1"/>
    </vehicle>
    <vehicle id="127" type="DEFAULT_VEHTYPE" depart="0.74" departLane="free" departSpeed="max" fromTaz="2_4" toTaz="4_3">
        <route edges="C4C3 C3D3 D3E3 E3E2"/>
    </vehicle>
    <vehicle id="54" type="DEFAULT_VEHTYPE" depart="0.74" departLane="free" departSpeed="max" fromTaz="1_1" toTaz="2_2">
        <route edges="B1A1 A1B1 B1B2 B2C2 C2B2"/>
    </vehicle>
    <vehicle id="6" type="DEFAULT_VEHTYPE" depart="0.75" departLane="free" departSpeed="max" fromTaz="0_0" toTaz="4_1">
        <route edges="A0B0 B0B1 B1C1 C1D1 D1E1 E1D1"/>
    </vehicle>
    <vehicle id="66" type="DEFAULT_VEHTYPE" depart="0.75" departLane="free" departSpeed="max" fromTaz="1_2" toTaz="2_2">
        <route edges="B2C2 C2B2"/>
    </vehicle>
    <vehicle id="44" type="DEFAULT_VEHTYPE" depart="0.76" departLane="free" departSpeed="max" fromTaz="1_0" toTaz="2_2">
        <route edges="B0B1 B1C1 C1C2 C2C1"/>
    </vehicle>
    <vehicle id="125" type="DEFAULT_VEHTYPE" depart="0.76" departLane="free" departSpeed="max" fromTaz="2_4" toTaz="4_3">
        <route edges="C4C3 C3D3 D3E3 E3D3"/>
    </vehicle>
    <vehicle id="184" type="DEFAULT_VEHTYPE" depart="0.76" departLane="free" departSpeed="max" fromTaz="4_3" toTaz="2_2">
        <route edges="E3E4 E4D4 D4D3 D3C3 C3C2 C2C3"/>
    </vehicle>
    <vehicle id="1" type="DEFAULT_VEHTYPE" depart="0.78" departLane="free" departSpeed="max" fromTaz="0_0" toTaz="2_2">
        <route edges="A0A1 A1B1 B1B2 B2C2 C2C3"/>
    </vehicle>
    <vehicle id="73" type="DEFAULT_VEHTYPE" depart="0.78" departLane="free" departSpeed="max" fromTaz="1_2" toTaz="4_3">
        <route edges="B2B1 B1C1 C1C2 C2D2 D2D3 D3E3 E3D3"/>
    </vehicle>
    <vehicle id="139" type="DEFAULT_VEHTYPE" depart="0.78" departLane="free" departSpeed="max" fromTaz="3_1" toTaz="4_1">
        <route edges="D1E1 E1D1"/>
    </vehicle>
    <vehicle id="189" type="DEFAULT_VEHTYPE" depart="0.78" departLane="free" departSpeed="max" fromTaz="4_3" toTaz="4_1">
        <route edges="E3E2 E2E1 E1D1"/>
    </vehicle>
    <vehicle id="0" type="DEFAULT_VEHTYPE" depart="0.79" departLane="free" departSpeed="max" fromTaz="0_0" toTaz="2_2">
        <route edges="A0A1 A1B1 B1C1 C1C2 C2C1"/>
    </vehicle>
    <vehicle id="143" type="DEFAULT_VEHTYPE" depart="0.79" departLane="free" departSpeed="max" fromTaz="3_2" toTaz="4_0">
        <route edges="D2C2 C2D2 D2D1 D1E1 E1E0 E0D0"/>
    </vehicle>
    <vehicle id="196" type="DEFAULT_VEHTYPE" depart="0.79" departLane="free" departSpeed="max" fromTaz="4_4" toTaz="4_3">
        <route edges="E4D4 D4E4 E4E3 E3E4"/>
    </vehicle>
    <vehicle id="186" type="DEFAULT_VEHTYPE" depart="0.79" departLane="free" departSpeed="max" fromTaz="4_3" toTaz="4_1">
        <route edges="E3D3 D3D2 D2E2 E2E1 E1E2"/>
    </vehicle>
    <vehicle id="97" type="DEFAULT_VEHTYPE" depart="0.80" departLane="free" departSpeed="max" fromTaz="2_1" toTaz="4_3">
        <route edges="C1B1 B1C1 C1C2 C2D2 D2D3 D3E3 E3E4"/>
    </vehicle>
    <vehicle id="83" type="DEFAULT_VEHTYPE" depart="0.80" departLane="free" departSpeed="max" fromTaz="2_0" toTaz="2_2">
        <route edges="C0D0 D0D1 D1C1 C1C2 C2B2"/>
    </vehicle>
    <vehicle id="172" type="DEFAULT_VEHTYPE" depart="0.81" departLane="free" departSpeed="max" fromTaz="4_1" toTaz="4_3">
        <route edges="E1D1 D1E1 E1E2 E2E3 E3D3"/>
    </vehicle>
    <vehicle id="110" type="DEFAULT_VEHTYPE" depart="0.81" departLane="free" departSpeed="max" fromTaz="2_3" toTaz="2_2">
        <route edges="C3B3 B3C3 C3C2 C2D2"/>
    </vehicle>
    <vehicle id="130" type="DEFAULT_VEHTYPE" depart="0.81" departLane="free" departSpeed="max" fromTaz="3_0" toTaz="4_1">
        <route edges="D0D1 D1E1 E1E0"/>
    </vehicle>
    <vehicle id="150" type="DEFAULT_VEHTYPE" depart="0.81" departLane="free" departSpeed="max" fromTaz="3_3" toTaz="4_3">
        <route edges="D3C3 C3D3 D3E3 E3E4"/>
    </vehicle>
    <vehicle id="26" type="DEFAULT_VEHTYPE" depart="0.81" departLane="free" departSpeed="max" fromTaz="0_2" toTaz="4_3">
        <route edges="A2A3 A3B3 B3C3 C3D3 D3E3 E3E2"/>
    </vehicle>
    <vehicle id="23" type="DEFAULT_VEHTYPE" depart="0.84" departLane="free" departSpeed="max" fromTaz="0_2" toTaz="4_3">
        <route edges="A2A1 A1B1 B1B2 B2C2 C2D2 D2D3 D3E3 E3D3"/>
    </vehicle>
    <vehicle id="120" type="DEFAULT_VEHTYPE" depart="0.85" departLane="free" departSpeed="max" fromTaz="2_4" toTaz="2_2">
        <route edges="C4C3 C3C2 C2D2"/>
    </vehicle>
    <vehicle id="5" type="DEFAULT_VEHTYPE" depart="0.85" departLane="free" departSpeed="max" fromTaz="0_0" toTaz="4_1">
        <route edges="A0A1 A1B1 B1C1 C1D1 D1E1 E1E2"/>
    </vehicle>
    <vehicle id="20" type="DEFAULT_VEHTYPE" depart="0.85" departLane="free" departSpeed="max" fromTaz="0_2" toTaz="2_2">
        <route edges="A2B2 B2C2 C2C1"/>
    </vehicle>
    <vehicle id="181" type="DEFAULT_VEHTYPE" depart="0.86" departLane="free" departSpeed="max" fromTaz="4_2" toTaz="4_3">
        <route edges="E2D2 D2E2 E2E3 E3E4"/>
    </vehicle>
    <vehicle id="191" type="DEFAULT_VEHTYPE" depart="0.86" departLane="free" departSpeed="max" fromTaz="4_4" toTaz="4_1">
        <route edges="E4E3 E3E2 E2E1 E1E2"/>
    </vehicle>
    <vehicle id="19" type="DEFAULT_VEHTYPE" depart="0.88" departLane="free" departSpeed="max" fromTaz="0_2" toTaz="2_2">
        <route edges="A2B2 B2C2 C2B2"/>
    </vehicle>
    <vehicle id="61" type="DEFAULT_VEHTYPE" depart="0.89" departLane="free" departSpeed="max" fromTaz="1_1" toTaz="4_1">
        <route edges="B1B0 B0B1 B1C1 C1D1 D1E1 E1D1"/>
    </vehicle>
    <vehicle id="192" type="DEFAULT_VEHTYPE" depart="0.89" departLane="free" departSpeed="max" fromTaz="4_4" toTaz="4_1">
        <route edges="E4E3 E3E2 E2E1 E1E2"/>
    </vehicle>
    <vehicle id="177" type="DEFAULT_VEHTYPE" depart="0.90" departLane="free" departSpeed="max" fromTaz="4_2" toTaz="4_1">
        <route edges="E2E3 E3E2 E2E1 E1E0"/>
    </vehicle>
    <vehicle id="30" type="DEFAULT_VEHTYPE" depart="0.90" departLane="free" departSpeed="max" fromTaz="0_3" toTaz="4_1">
        <route edges="A3B3 B3B2 B2C2 C2C1 C1D1 D1E1 E1D1"/>
    </vehicle>
    <vehicle id="59" type="DEFAULT_VEHTYPE" depart="0.90" departLane="free" departSpeed="max" fromTaz="1_1" toTaz="4_1">
        <route edges="B1B2 B2B1 B1C1 C1D1 D1E1 E1D1"/>
    </vehicle>
    <vehicle id="86" type="DEFAULT_VEHTYPE" depart="0.92" departLane="free" departSpeed="max" fromTaz="2_0" toTaz="4_3">
        <route edges="C0D0 D0D1 D1E1 E1E2 E2E3 E3E4"/>
    </vehicle>
    <vehicle id="117" type="DEFAULT_VEHTYPE" depart="0.92" departLane="free" departSpeed="max" fromTaz="2_3" toTaz="4_3">
        <route edges="C3B3 B3C3 C3D3 D3E3 E3E4"/>
    </vehicle>
    <vehicle id="126" type="DEFAULT_VEHTYPE" depart="0.93" departLane="free" departSpeed="max" fromTaz="2_4" toTaz="4_3">
        <route edges="C4B4 B4C4 C4D4 D4E4 E4E3 E3E4"/>
    </vehicle>
    <vehicle id="79" type="DEFAULT_VEHTYPE" depart="0.94" departLane="free" departSpeed="max" fromTaz="1_4" toTaz="2_3">
        <route edges="B4C4 C4C3 C3C4"/>
    </vehicle>
    <vehicle id="101" type="DEFAULT_VEHTYPE" depart="0.94" departLane="free" departSpeed="max" fromTaz="2_2" toTaz="1_4">
        <route edges="C2B2 B2B3 B3B4 B4A4"/>
    </vehicle>
    <vehicle id="166" type="DEFAULT_VEHTYPE" depart="0.94" departLane="free" departSpeed="max" fromTaz="4_0" toTaz="4_3">
        <route edges="E0D0 D0E0 E0E1 E1E2 E2E3 E3E4"/>
    </vehicle>
    <vehicle id="149" type="DEFAULT_VEHTYPE" depart="0.95" departLane="free" departSpeed="max" fromTaz="3_3" toTaz="4_1">
        <route edges="D3C3 C3C2 C2D2 D2D1 D1E1 E1E0"/>
    </vehicle>
    <vehicle id="92" type="DEFAULT_VEHTYPE" depart="0.95" departLane="free" departSpeed="max" fromTaz="2_1" toTaz="2_2">
        <route edges="C1C2 C2C3"/>
    </vehicle>
    <vehicle id="151" type="DEFAULT_VEHTYPE" depart="0.97" departLane="free" departSpeed="max" fromTaz="3_3" toTaz="4_3">
        <route edges="D3C3 C3D3 D3E3 E3D3"/>
    </vehicle>
    <vehicle id="39" type="DEFAULT_VEHTYPE" depart="0.98" departLane="free" departSpeed="max" fromTaz="0_4" toTaz="2_4">
        <route edges="A4B4 B4C4 C4C3"/>
    </vehicle>
    <vehicle id="9" type="DEFAULT_VEHTYPE" depart="0.98" departLane="free" departSpeed="max" fromTaz="0_1" toTaz="2_1">
        <route edges="A1B1 B1C1 C1B1"/>
    </vehicle>
    <vehicle id="53" type="DEFAULT_VEHTYPE" depart="0.98" departLane="free" departSpeed="max" fromTaz="1_1" toTaz="0_1">
        <route edges="B1C1 C1B1 B1A1 A1A0"/>
    </vehicle>
    <vehicle id="16" type="DEFAULT_VEHTYPE" depart="0.98" departLane="free" departSpeed="max" fromTaz="0_1" toTaz="4_1">
        <route edges="A1A2 A2A1 A1B1 B1C1 C1D1 D1E1 E1E0"/>
    </vehicle>
    <vehicle id="3" type="DEFAULT_VEHTYPE" depart="0.98" departLane="free" departSpeed="max" fromTaz="0_0" toTaz="4_1">
        <route edges="A0A1 A1B1 B1C1 C1D1 D1E1 E1E0"/>
    </vehicle>
    <vehicle id="118" type="DEFAULT_VEHTYPE" depart="0.98" departLane="free" departSpeed="max" fromTaz="2_4" toTaz="2_2">
        <route edges="C4B4 B4B3 B3C3 C3C2 C2D2"/>
    </vehicle>
    <vehicle id="197" type="DEFAULT_VEHTYPE" depart="0.98" departLane="free" departSpeed="max" fromTaz="4_4" toTaz="4_3">
        <route edges="E4D4 D4D3 D3E3 E3E2"/>
    </vehicle>
    <vehicle id="99" type="DEFAULT_VEHTYPE" depart="0.98" departLane="free" departSpeed="max" fromTaz="2_1" toTaz="4_3">
        <route edges="C1D1 D1D2 D2E2 E2E3 E3E2"/>
    </vehicle>
    <vehicle id="108" type="DEFAULT_VEHTYPE" depart="0.98" departLane="free" departSpeed="max" fromTaz="2_2" toTaz="4_3">
        <route edges="C2B2 B2C2 C2C3 C3D3 D3E3 E3E4"/>
    </vehicle>
    <vehicle id="134" type="DEFAULT_VEHTYPE" depart="0.99" departLane="free" departSpeed="max" fromTaz="3_0" toTaz="4_3">
        <route edges="D0C0 C0D0 D0D1 D1D2 D2D3 D3E3 E3E4"/>
    </vehicle>
    <vehicle id="36" type="DEFAULT_VEHTYPE" depart="0.99" departLane="free" departSpeed="max" fromTaz="0_3" toTaz="4_3">
        <route edges="A3B3 B3C3 C3D3 D3E3 E3E4"/>
    </vehicle>
    <vehicle id="163" type="DEFAULT_VEHTYPE" depart="1.00" departLane="free" departSpeed="max" fromTaz="4_0" toTaz="4_1">
        <route edges="E0D0 D0E0 E0E1 E1E2"/>
    </vehicle>
    <vehicle id="140" type="DEFAULT_VEHTYPE" depart="1.00" departLane="free" departSpeed="max" fromTaz="3_1" toTaz="4_1">
        <route edges="D1C1 C1D1 D1E1 E1E2"/>
    </vehicle>
</routes>

Back to the top