Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [sumo-user] Unspecified Fatal Error and blank trace logging outputs

Hi everyone

As I suspected, traci did not flush the remaining commands when it went fatal

I could reproduce the problem by saving the RL actions (i.e., signal changing commands).
I then used my script to reproduce the actual traci commands and stop right before the Fatal error step.
At the end, I manually added the simulationStep() that leads to the fatal error.


Sincerely,

Marcelo d'Almeida

On Tue, Mar 9, 2021 at 9:23 AM Marcelo Andrade Rodrigues D Almeida <md@xxxxxxxxx> wrote:
Yeah, I ended reading the file and doing eval on the lines.


"The next thing would be to test whether you can reproduce any crashing with your own traceFile."

I already tested this (on my local machine, but it should not make any difference) and I couldn't reproduce either. I also tried to run further simulationStep() commands before closing the simulation, once the error occurs in the step. No luck.

I was wondering if there were any possibility of traci not registering the last commands.
Is the command registered before or after calling it? If it is after, that should explain why simulationStep() is not the last command in the file! But what about other commands? Are they guaranteed to flush to the file in a fatal crash?


"Also, you have some subscriptions to non-existing lanes in your script which I removed manually."

That's strange, I retrieve the lanes from the network file. I'll take a look. Thanks


"These are a bit strange: either you are catching the TraCIException in your own code or the network file you are using is different from mine"

Hmm, the only thing I did differently is that the scenario was crashing when loading, so I opened all the files (e.g., network and additionals) in the netedit and re-saved them. The errors stopped. I'm using the 'joined' scenario


About valgrind:
Well, I temporarily lost access to the remote machine. I have to retry it when I regain access.


On Tue, Mar 9, 2021 at 4:38 AM Jakob Erdmann <namdre.sumo@xxxxxxxxx> wrote:
Hello,

I ran your traceFile provided on friday and also no_rerouting_threads_no_multiprocess_trace_file_log.txt from saturday but was unable to reproduce the crash.
To rerun the trace file all you have to do is add
'import traci' and any lines needed to make this import work and then treat it as a python script.
For me this was:
import os,sys
sys.path.append('/scr1/sumo/tools')
import traci

(and traci.close() at the end for a clean exit)
Also, you have some subscriptions to non-existing lanes in your script which I removed manually.
These are a bit strange: either you are catching the TraCIException in your own code or the network file you are using is different from mine.


The next thing would be to test whether you can reproduce any crashing with your own traceFile.

regards,
Jakob

Am Sa., 6. März 2021 um 22:05 Uhr schrieb Harald Schaefer <fechsaer@xxxxxxxxx>:

valgrind is good in memory checking, but the price is long execution times.

You ask for a capture and replay feature in traci, this should be answered by the SUMO developers


Am 06.03.21 um 16:00 schrieb Marcelo Andrade Rodrigues D Almeida:
Hi Harald

Unfortunately, it is extremely slow. 36 minutes for the first 210 steps. I only added output file parameter

How can I provide a trace file to Sumo so I can re-run the exact simulation that failed?


Thank you in advance

On Sat, Mar 6, 2021 at 10:46 AM Harald Schaefer <fechsaer@xxxxxxxxx> wrote:

Hi Marcelo,

try something like

    traci.start(['/bin/valgrind', sumoBinary, "-c", "junction.sumocfg",
                             "--tripinfo-output", "tripinfo.xml"])

Between valgrind and sumoBinary you can insert valgrind options

It takes 4 or 5 iterations until trai connects with sumo due to the start overhead of valgrind

Regards, Harald

Am 06.03.21 um 12:36 schrieb Marcelo Andrade Rodrigues D Almeida:
Also, how can I run valgrind and traci.start at the same time? Without traci, my script won't interact with the simulation and no error will occur

On Sat, Mar 6, 2021 at 8:15 AM Marcelo Andrade Rodrigues D Almeida <md@xxxxxxxxx> wrote:
All other executions reported the same error

See their trace file attached


Hi Harald

Soo, no success in reproducing the error via trace file?


Sincerely,

Marcelo d'Almeida


On Sat, Mar 6, 2021 at 3:59 AM Harald Schaefer <fechsaer@xxxxxxxxx> wrote:

Hi Marcelo,

there is a tool valgrind under Linux, which records all memory allocations. It uses many resources (time and memory), but traces all memory allocations and uses. It pin points to situations, where memory is allocated, which is later freed and used again.

A simple call is

    valgrind sumo-git-co/sumo/bin/sumoD debug.sumo.cfg

It works best with the debug version.

Regards, Harald

Am 05.03.21 um 19:21 schrieb Marcelo Andrade Rodrigues D Almeida:
One of the tests finished

NO_REROUTING_THREADS (see attached trace file)

Reading symbols from ../../sumo-git/bin/sumo...(no debugging symbols found)...done.
[New LWP 3412]
[Thread debugging using libthread_db enabled]
Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1".
Core was generated by `sumo-git/bin/sumo -n /app/scenario/experimental/Bologna_small-0.29.0/joined/joi'.
Program terminated with signal SIGSEGV, Segmentation fault.
#0  0x000055a5cea65826 in MSVehicle::getBoundingBox() const ()
(gdb) bt
#0  0x000055a5cea65826 in MSVehicle::getBoundingBox() const ()
#1  0x000055a5ceae2e61 in MSLane::detectCollisions(long long, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) ()
#2  0x000055a5ceac13f4 in MSEdgeControl::detectCollisions(long long, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) ()
#3  0x000055a5cea1c944 in MSNet::simulationStep() ()
#4  0x000055a5cea1cb56 in MSNet::simulate(long long, long long) ()
#5  0x000055a5cea045ad in main ()


Still waiting on NO_MULTIPROCESS and NO_REROUTING_THREADS_NO_MULTIPROCESS


Sincerely,

Marcelo d'Almeida


On Fri, Mar 5, 2021 at 11:03 AM Marcelo Andrade Rodrigues D Almeida <md@xxxxxxxxx> wrote:
It seems great!

Thank you!!

On Fri, Mar 5, 2021 at 9:48 AM Jakob Erdmann <namdre.sumo@xxxxxxxxx> wrote:
I think we're getting closer and closer to make tracing work in your use case: https://github.com/eclipse/sumo/issues/8323

Am Fr., 5. März 2021 um 12:34 Uhr schrieb Marcelo Andrade Rodrigues D Almeida <md@xxxxxxxxx>:
For instance, all but "traci.close()" and "traci.simulationStep()" are duplicated in the second run

On Fri, Mar 5, 2021 at 8:27 AM Marcelo Andrade Rodrigues D Almeida <md@xxxxxxxxx> wrote:
Hi Jakob

Both "trace_file_label.txt" and "trace_file_new_label.txt" should have the same information since they execute the same code

Currently (in the updated version), they don't.

Something else might be interfering in the trace file generation


Sincerely,

Marcelo d'Almeida


On Thu, Mar 4, 2021 at 6:34 PM Marcelo Andrade Rodrigues D Almeida <md@xxxxxxxxx> wrote:
Thank you

Tomorrow I'll start new tests with the new development version to debug the original issue

On Thu, Mar 4, 2021, 6:06 PM Jakob Erdmann <namdre.sumo@xxxxxxxxx> wrote:
Thanks for the example. The problem was due to https://github.com/eclipse/sumo/issues/8320

Am Do., 4. März 2021 um 20:16 Uhr schrieb Marcelo Andrade Rodrigues D Almeida <md@xxxxxxxxx>:
I could reproduce the trace file problem

See attached files





On Thu, Mar 4, 2021 at 3:29 PM Marcelo Andrade Rodrigues D Almeida <md@xxxxxxxxx> wrote:
Just to clarify

The attached file is one of the finished tests from the last batch (traceGetters False)

But both (this one and the previously traceGetters True) were presenting zero simulation step entries in the trace files.



On Thu, Mar 4, 2021 at 3:21 PM Marcelo Andrade Rodrigues D Almeida <md@xxxxxxxxx> wrote:
I'm redoing the tests with traceGetters set to False to reduce the (huge) file size. Also, I had to restart the tests because someone or something turned off the remote machine overnight.


What I could find so far:

I could retrieve a trace file in the remote server (the huge one) and I found something very odd.

In my trivial test, I found a regular trace file

"traci.start(['/home/marcelo/code/sumo/bin/sumo-gui', '-n', '/home/marcelo/temp2/temp/temp/temp/regular-intersection__right_on_red.net.xml', '-r', '/home/marcelo/temp2/temp/temp/temp/regular-intersection.rou.xml', '--start', 'True'], port=None, label='default')
traci.trafficlight.setPhase('gneJ0', 0)
traci.simulationStep()
traci.simulationStep()
traci.simulationStep()
traci.simulationStep()
traci.simulationStep()
traci.simulationStep()
traci.simulationStep()
traci.simulationStep()
traci.simulationStep()
traci.simulationStep()
traci.trafficlight.setPhase('gneJ0', 0)
traci.simulationStep()
traci.simulationStep()
traci.simulationStep()
traci.simulationStep()
traci.simulationStep()
traci.simulationStep()
traci.simulationStep()
traci.simulationStep()
traci.simulationStep()
traci.simulationStep()
traci.trafficlight.setPhase('gneJ0', 0)
"

In my actual experiment (with multi_processing set to False), all 'traci.simulationStep()' commands are gone (see file attached for complete trace):
"
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrGGGgyyyyrrrrGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrryyyyyyyyrrrrGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('233', 'rryyyyrrrryy')
traci.trafficlight.setRedYellowGreenState('282', 'rrryyyrrryyy')
traci.trafficlight.setRedYellowGreenState('221', 'yyyrrrryyyyyyyrrrrryyy')
traci.trafficlight.setRedYellowGreenState('220', 'GGGrrrrryyyrr')
traci.trafficlight.setRedYellowGreenState('209', 'ryrGGrr')
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrrrrrryyyy')
traci.trafficlight.setRedYellowGreenState('273', 'yyyrrrryy')
traci.vehicle.subscribe('Prati_Capraia_100_70', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_20_56', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_100_70', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_159', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_700_126', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_10_199', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_40_219', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Audinot_3_16', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_10_200', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_7_145', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrryyyyrrrrGGrrGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrrrrrrrrrGGrrGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('282', 'GGgrrrGGgrrr')
traci.trafficlight.setRedYellowGreenState('220', 'GGGrrrrGrrrrr')
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGrr')
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrrrrGGrrrr')
traci.trafficlight.setRedYellowGreenState('273', 'rrrGGGGrr')
traci.trafficlight.setRedYellowGreenState('233', 'GGrrrrGGGgrr')
traci.trafficlight.setRedYellowGreenState('221', 'rrrGGGGrrrrrrrGGGGGrrr')
"

This was the reported crash from this execution:
#0  0x000055d660c7cf86 in MSVehicle::getBoundingBox() const ()
#1  0x000055d660cfa5b1 in MSLane::detectCollisions(long long, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) ()
#2  0x000055d660cd8b54 in MSEdgeControl::detectCollisions(long long, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) ()
#3  0x000055d660c34294 in MSNet::simulationStep() ()
#4  0x000055d660c344a6 in MSNet::simulate(long long, long long) ()
#5  0x000055d660c1c37d in main ()

---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

What I could find about the trace file generation problem

The problem is that (without multi-processing) traci is discarding the first run trace file info and keeping traces for the following runs.
When running with multi-processing, all traci simulations are handled as first-run (i.e., new processes) and everything is thrown away.

It doesn't matter if it is a regular or a debug build

I'm don't know why the first run is discarded. I'll keep looking


Any new information, I post here


On Wed, Mar 3, 2021 at 10:08 AM Jakob Erdmann <namdre.sumo@xxxxxxxxx> wrote:
Hi Harald,
the loop with the AnyVehicleIterator should never yield nullptrs. Hence the real bug is someplace else. 
The 4 worker threads in the stacktrace are due to  --device.rerouting.threads', '4', which doesn't really help to explain this (parallel routing typically doesn't cause premature vehicle deletion).
Had the threads come from option --threads, that would have been a likely cause of the issue since we have far fewer tests for this.

neverthless @marcello: Please try running without option --device.rerouting.threads and see if you can still trigger the crash.

Either way, I will probably need a traci-traceFile to fix this.

regards,
Jakob

Am Mi., 3. März 2021 um 13:55 Uhr schrieb Harald Schaefer <fechsaer@xxxxxxxxx>:

Hi Marcelo, hi Jakob,

thanks for the backtraces (looks good)

The problem in this scenario is that MSVehicle::getBoundingBox (this=0x0) is called with a null-Object from this loop:

        for (AnyVehicleIterator veh = anyVehiclesBegin(); veh != anyVehiclesEnd(); ++veh) {
            MSVehicle* collider = const_cast<MSVehicle*>(*veh);
            //std::cout << "   collider " << collider->getID() << "\n";
            PositionVector colliderBoundary = collider->getBoundingBox();

Thread 1 (Thread 0x7fb4974cd780 (LWP 12544)):
#0  0x0000561970425dcc in MSVehicle::getBoundingBox (this=0x0) at /app/sumo-git/src/microsim/MSVehicle.cpp:5925
#1  0x00005619704c23f5 in MSLane::detectCollisions (this=0x561972d88020, timestep=947000, stage="move") at /app/sumo-git/src/microsim/MSLane.cpp:1358

Regards, Harald


_______________________________________________
sumo-user mailing list
sumo-user@xxxxxxxxxxx
To unsubscribe from this list, visit https://www.eclipse.org/mailman/listinfo/sumo-user
_______________________________________________
sumo-user mailing list
sumo-user@xxxxxxxxxxx
To unsubscribe from this list, visit https://www.eclipse.org/mailman/listinfo/sumo-user
_______________________________________________
sumo-user mailing list
sumo-user@xxxxxxxxxxx
To unsubscribe from this list, visit https://www.eclipse.org/mailman/listinfo/sumo-user
_______________________________________________
sumo-user mailing list
sumo-user@xxxxxxxxxxx
To unsubscribe from this list, visit https://www.eclipse.org/mailman/listinfo/sumo-user
_______________________________________________
sumo-user mailing list
sumo-user@xxxxxxxxxxx
To unsubscribe from this list, visit https://www.eclipse.org/mailman/listinfo/sumo-user

_______________________________________________
sumo-user mailing list
sumo-user@xxxxxxxxxxx
To unsubscribe from this list, visit https://www.eclipse.org/mailman/listinfo/sumo-user
_______________________________________________
sumo-user mailing list
sumo-user@xxxxxxxxxxx
To unsubscribe from this list, visit https://www.eclipse.org/mailman/listinfo/sumo-user

_______________________________________________
sumo-user mailing list
sumo-user@xxxxxxxxxxx
To unsubscribe from this list, visit https://www.eclipse.org/mailman/listinfo/sumo-user
_______________________________________________
sumo-user mailing list
sumo-user@xxxxxxxxxxx
To unsubscribe from this list, visit https://www.eclipse.org/mailman/listinfo/sumo-user

_______________________________________________
sumo-user mailing list
sumo-user@xxxxxxxxxxx
To unsubscribe from this list, visit https://www.eclipse.org/mailman/listinfo/sumo-user
_______________________________________________
sumo-user mailing list
sumo-user@xxxxxxxxxxx
To unsubscribe from this list, visit https://www.eclipse.org/mailman/listinfo/sumo-user
_______________________________________________
sumo-user mailing list
sumo-user@xxxxxxxxxxx
To unsubscribe from this list, visit https://www.eclipse.org/mailman/listinfo/sumo-user
traci.start(['/home/marcelo/code/sumo/bin/sumo', '-n', '/home/marcelo/code/urban-semaphore-optimization/scenario/experimental/Bologna_small-0.29.0/joined/joined_buslanes.net.xml', '-r', '/home/marcelo/code/urban-semaphore-optimization/scenario/experimental/Bologna_small-0.29.0/joined/joined.rou.xml, /home/marcelo/code/urban-semaphore-optimization/scenario/experimental/Bologna_small-0.29.0/joined/joined_busses.rou.xml', '--duration-log.statistics', 'True', '--time-to-teleport', '-1', '--collision.stoptime', '10', '--collision.mingap-factor', '0', '--collision.action', 'warn', '--collision.check-junctions', 'True', '--device.rerouting.threads', '4', '--save-state.rng', 'True', '--ignore-junction-blocker', '10', '-a', '/home/marcelo/code/urban-semaphore-optimization/scenario/experimental/Bologna_small-0.29.0/joined/joined_bus_stops.add.xml, /home/marcelo/code/urban-semaphore-optimization/scenario/experimental/Bologna_small-0.29.0/joined/joined_detectors.add.xml, /home/marcelo/code/urban-semaphore-optimization/scenario/experimental/Bologna_small-0.29.0/joined/joined_vtypes.add.xml, /home/marcelo/code/urban-semaphore-optimization/scenario/experimental/Bologna_small-0.29.0/joined/joined_tls.add.xml', '--step-length', '1'], port=None, label='test_round_0__f4b9dd9a-f71c-438a-b479-13c82723a8f5')
traci.lane.subscribe('a1_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a1_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a10_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a103_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a103_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a104_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a104_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a109[0]_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a109[1][0]+20003_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a109[1][0]+20003_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a109[1][1]_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a11_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a11_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a11_2', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a110_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a113_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a113_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a113_2', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a115_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a116_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a117_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a118_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a119_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a120_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a122_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a122_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a122_2', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a124_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a124_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a125_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a125_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a127_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a127_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a13_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a131_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a133_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a134_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a134b_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a14_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a15_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a153_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a159_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a16_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a160_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a161_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a161_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a161_2', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a165_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a166_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a17_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a17_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a171_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a173_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a18_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a18_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a181_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a181_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a185_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a186_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a187_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a188_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a189[0]_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a189[1][0]+20000_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a189[1][0]+20000_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a189[1][1]_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a19_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a190_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a191_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a194_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a195_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a197_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a1b_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a1b_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a2_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a2_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a2_2', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a20_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a200_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a20001+87[1][0]_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a20001+87[1][0]_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a20002+89[1][0]_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a20002+89[1][0]_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a201_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a201_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a201_2', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a201c_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a201c_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a201c_2', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a202_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a202_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a202_2', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a203[0]_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a203[0]_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a203[0]_2', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a203[1]_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a203[1]_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a203[1]_2', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a203[1]b_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a203[1]b_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a203[1]b_2', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a204[1][0]_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a204[1][0]_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a204[1][1]_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a204[1][1]_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a204[1][1]_2', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a204a[0]_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a204a[0]_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a204a[0]_2', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a204b[0]_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a204b[0]_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a204b[0]_2', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a206_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a209_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a209_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a209_2', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a210_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a210_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a210_2', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a211_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a212_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a218_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a219_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a21a_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a21b_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a22_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a220_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a220b_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a222_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a224[0]_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a224[1]_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a24_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a25_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a26_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a28_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a3_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a3_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a30_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a31_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a31_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a31_2', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a32_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a33_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a34_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a34_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a34_2', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a35_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a36_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a37_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a38_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a39_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a4_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a40_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a41_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a42_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a43[0]_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a43[0]_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a43[0]_2', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a43[1]_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a43[1]_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a43[1]_2', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a44_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a45_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a46_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a46_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a46_2', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a48_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a49_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a4c_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a50_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a51_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a53[0]_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a53[0]_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a53[1][0]_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a53[1][0]_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a53[1][1][0]_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a53[1][1][0]_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a53cd_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a53cd_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a54_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a54_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a55_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a55b_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a55b_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a55b_2', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a56a_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a56a_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a56b_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a56b_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a57[0]_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a57[1]_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a58[0]_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a58[1]_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a59_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a59_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a60_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a61_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a62_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a65_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a66_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a67_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a67_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a68_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a68_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a69_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a69_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a71_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a71_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a71_2', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a72[0]_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a72[0]_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a72[0]_2', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a72[1]_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a72[1]_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a74_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a75_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a77[0]_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a77[1][0]_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a77[1][0]_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a77[1][1]_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a77ab_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a77ab_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a77bc_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a77bc_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a77cd_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a77cd_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a78[0]_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a78[1][1]_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a79_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a8_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a80_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a82_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a87[0]_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a87[1][1]_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a88_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a89[0]_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a89[1][1]_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a9_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a90_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a91_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a92_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a93_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('a97_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('am1_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('am2_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('am90_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('am91_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b10_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b100_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b100_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b101_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b101_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b11[0]_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b11[0]_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b11[1][1]_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b11[1][1]_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b12_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b12_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b12_2', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b13[0]_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b13[0]_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b13[1]_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b13[1]_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b14_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b15_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b16[0]_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b16[1]_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b17[0]_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b17[1]_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b18_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b1[0]_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b1[0]_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b1[0]_2', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b1[1]_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b1[1]_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b1[1]_2', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b20+19a_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b20+19a_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b20+19b_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b20000+35[1][1][1][0]_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b20000+35[1][1][1][0]_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b21_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b21_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b22[0]_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b22[0]_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b22[1]_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b22[1]_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b23_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b23_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b24_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b24_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b25_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b25_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b26_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b26_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b26.-170_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b27_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b28_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b28a_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b29[0]_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b29[1]_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b2[0]_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b2[0]_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b2[0]_2', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b2[1][0]_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b2[1][0]_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b2[1][0]_2', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b2[1][1][0]_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b2[1][1][0]_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b2[1][1][0]_2', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b2[1][1][1]_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b2[1][1][1]_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b2[1][1][1]_2', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b2[1][1][1]b_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b2[1][1][1]b_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b2[1][1][1]b_2', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b30_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b31_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b33_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b34[0]_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b34[1][0]_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b34[1][1]_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b34[1][2]_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b35[0]_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b35[1][0]_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b35[1][1][0]_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b35[1][1][1][1]_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b36_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b37_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b38[0]_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b38[0]a_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b38[1][0]_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b38[1][1]_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b38[1][1]a_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b39[0]_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b39[1][0]_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b39[1][1][0]_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b39[1][1][1]_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b39[1][1][1]_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b3[0]_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b3[0]_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b3[1]_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b3[1]_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b3[1]b_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b3[1]b_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b45_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b45_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b45_2', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b46_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b47_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b49[0]_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b49[1]_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b4[0]_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b4[0]_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b4[1][1][0]_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b4[1][1][0]_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b4[1][1][1]_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b4[1][1][1]_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b50[0]_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b50[1]_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b50[1]a_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b51_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b51_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b52_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b53_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b53_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b53a_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b55_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b55_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b56[0]_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b56[0]_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b56[1][0]_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b56[1][0]_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b56[1][0]_2', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b56[1][1]_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b56[1][1]_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b5[1][0]+66_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b5[1][0]+66_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b5[1][1][1]_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b5[1][1][1]_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b5[1][1][1]_2', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b6_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b6_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b63[0]_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b63[0]_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b63[0]_2', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b63[1]_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b63[1]_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b63[1]_2', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b64_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b65_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b67_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b7_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b7_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b7_2', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b70_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b71_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b76_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b8_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b8_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b8_2', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b8_3', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b9_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b96_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b97_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('b98_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('ba1[1]_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('ba1[1]_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('ba1[1]_2', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('bm66a_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('bm66a_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('bm66b_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe('bm66b_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a0_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a0_1_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a0_2_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a0_2_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a1_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a1_0_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a1_0_2', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a1_3_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a1_4_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a11_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a11_0_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a12_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a12_1_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a12_2_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a12_9_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a12_3_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a12_4_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a12_5_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a12_6_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a12_7_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a12_8_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a12_10_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a13_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a13_1_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a13_2_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a13_4_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a13_3_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a133-begin_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a15_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a15_1_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a15_2_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a15_3_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a15_4_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a15_5_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a15_5_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a16_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a16_0_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a16_0_2', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a17_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a17_0_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a18_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a18_1_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a18_2_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a18_3_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a18_4_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a18_5_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a19_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a19_0_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a19_2_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a19_7_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a19_3_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a19_4_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a19_5_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a19_6_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a1b_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a1b_0_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a1b_2_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a1b_2_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a1b_2_2', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a1c_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a1c_1_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a1c_1_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a1c_1_2', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a1c_4_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a2_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a2_0_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a2_0_2', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a204c_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a204c_0_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a204c_0_2', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a204c_3_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a204c_4_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a20a_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a20a_1_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a20a_1_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a20b_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a20b_1_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a20b_2_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a20b_2_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a20c_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a20c_1_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a20c_1_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a21_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a21_0_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a21m_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a21m_1_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a23_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a23_1_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a23_2_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a23_3_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a23_4_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a23_8_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a23_5_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a23_6_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a23_7_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a24_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a24_1_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a25_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a25_1_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a25-begin_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a26_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a26_0_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a26_0_2', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a26_3_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a26_4_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a26_5_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a26_6_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a27_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a27_1_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a27_2_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a27_14_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a27_3_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a27_4_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a27_4_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a27_4_2', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a27_7_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a27_8_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a27_9_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a27_10_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a27_15_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a27_11_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a27_11_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a27_13_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a28_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a28_1_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a28_2_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a28_3_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a29_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a29_0_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a29_0_2', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a3_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a3_1_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a3_2_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a3_3_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a3_4_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a3_4_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a3_4_2', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a30_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a30_1_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a30_2_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a30_6_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a30_3_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a30_4_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a30_5_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a30_7_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a31_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a31_1_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a31_2_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a31_3_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a31_4_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a31_5_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a32_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a32_1_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a32_2_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a32_3_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a32_4_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a32_5_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a33_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a33_0_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a33_0_2', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a34_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a34_0_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a34_2_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a34_3_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a34_4_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a34_5_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a34_5_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a34_5_2', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a35_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a35_1_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a36_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a37_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a37_0_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a37_0_2', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a38_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a38_1_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a39_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a39_1_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a39_1_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a39a_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a39a_0_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a39a_2_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a39a_2_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a40_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a40_1_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a40_2_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a40_2_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a41_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a41_1_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a41_1_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a42_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a42_1_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a42_2_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a42_2_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a43_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a43_1_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a43_2_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a43_2_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a43_4_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a44_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a44_1_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a44_1_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a44_3_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a44_3_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a44_5_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a45_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a45_0_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a46_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a46_1_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a46_2_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a46_6_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a46_3_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a46_4_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a46_5_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a46_7_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a47_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a47_1_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a48_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a48_1_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a48_4_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a48_2_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a48_3_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a49_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a50_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a50_1_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a50_2_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a50_4_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a50_3_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a51_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a51_1_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a51_2_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a51_3_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a51_4_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a51_5_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a51_6_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a51_9_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a51_7_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a51_8_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a52_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a52_1_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a52_1_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a52_1_2', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a53_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a53_1_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a53_1_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a54_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a54_1_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a55m_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a55m_0_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a55m_0_2', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a56_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a56_0_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a56m_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a56m_1_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a56m_1_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a59_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a59_0_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a6_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a6_4_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a6_1_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a6_2_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a6_3_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a60_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a61_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a61_1_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a61_2_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a61_5_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a61_6_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a61_3_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a61_4_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a62_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a62_1_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a62_2_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a62_6_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a62_3_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a62_4_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a62_5_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a62_7_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a62_8_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a63_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a63_1_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a63_2_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a64_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a64_0_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a65_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a66_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a66_1_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a66_2_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a68_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a68_1_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a68_2_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a7_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a7_1_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a7_2_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a7_3_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a70_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a70_1_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a70_2_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a71_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a71_0_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a72_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a73_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a73_1_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a73_2_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a73_3_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a78_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a78_1_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a78_2_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a78_3_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a78_4_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a78_4_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a78_6_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a78_6_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a78_8_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a78_9_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a78_10_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a78_11_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a79_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a79_1_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a79_1_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a79_1_2', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a8_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a8_0_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a8_0_2', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a82_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a82_1_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a82_2_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a82_3_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a82_4_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a84_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a84_0_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a85_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a86_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a86_1_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a86_3_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a86_2_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a87_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a87_1_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a9_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a9_1_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a9_1_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a9_3_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a9_4_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a9_4_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a9_6_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a9_15_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a9_7_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a9_8_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a9_9_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a9_10_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a9_11_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a9_12_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a9_12_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a9_14_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':a9_16_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b0_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b0_0_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b0_2_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b0_16_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b0_3_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b0_3_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b0_3_2', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b0_6_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b0_17_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b0_7_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b0_8_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b0_8_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b0_10_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b0_18_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b0_11_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b0_12_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b0_12_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b0_12_2', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b0_15_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b0_19_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b10_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b10_0_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b10_2_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b10_3_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b10_15_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b10_16_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b10_4_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b10_4_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b10_6_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b10_7_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b10_17_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b10_18_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b10_8_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b10_9_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b10_10_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b10_19_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b10_11_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b10_12_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b10_12_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b10_14_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b10_20_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b12_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b12_0_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b12_0_2', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b12_3_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b12_8_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b12_4_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b12_5_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b12_6_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b12_7_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b13_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b13_0_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b14_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b14_0_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b14_0_2', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b15_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b15_1_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b15_2_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b15_3_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b15_3_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b15_5_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b15_12_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b15_6_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b15_7_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b15_7_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b15_9_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b15_13_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b15_10_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b15_11_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b16_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b16_0_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b16_0_2', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b17_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b17_1_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b17_2_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b17_3_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b17_3_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b18_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b18_1_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b18_2_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b18_12_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b18_3_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b18_4_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b18_5_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b18_13_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b18_6_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b18_7_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b18_8_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b18_14_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b18_9_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b18_10_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b18_11_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b18_15_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b19_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b19_1_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b19_2_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b19_9_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b19_3_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b19_4_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b19_5_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b19_10_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b19_6_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b19_7_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b19_8_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b2_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b2_1_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b2_1_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b2_1_2', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b20_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b20_1_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b20_1_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b21_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b21_0_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b22_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b22_0_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b22_2_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b22_2_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b23_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b23_1_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b23_2_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b23_3_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b23_4_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b23_10_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b23_5_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b23_6_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b23_7_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b23_8_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b23_9_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b24_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b24_1_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b24_2_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b24_3_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b26_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b26_1_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b26_2_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b26_3_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b26.-170_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b27_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b27_0_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b27_2_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b27_5_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b27_3_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b27_4_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b28_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b28_1_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b28_2_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b29_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b29_0_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b29_2_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b29_7_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b29_3_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b29_4_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b29_5_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b29_6_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b3_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b3_1_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b3_2_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b3_2_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b3_2_2', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b3_5_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b3_5_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b3_5_2', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b30_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b30_0_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b31_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b32_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b32_1_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b32_2_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b32_3_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b32_4_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b32_5_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b32_12_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b32_6_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b32_7_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b32_8_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b32_9_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b32_10_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b32_11_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b32_13_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b33_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b33_1_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b33_2_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b33_5_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b33_3_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b33_4_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b34_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b34_1_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b34_2_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b34_3_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b34_4_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b34_5_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b35_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b35_0_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b35_0_2', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b35_3_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b35_4_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b35_5_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b39_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b39_1_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b39_2_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b39_3_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b39_4_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b39_7_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b39_5_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b39_6_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b39_8_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b4_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b4_1_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b4_1_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b4_3_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b4_15_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b4_4_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b4_5_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b4_6_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b4_7_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b4_16_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b4_17_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b4_8_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b4_9_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b4_9_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b4_11_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b4_18_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b4_12_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b4_13_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b4_14_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b4_19_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b40_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b40_1_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b40_4_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b40_2_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b40_3_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b42_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b42_1_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b42_2_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b43_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b43_0_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b43_2_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b43_3_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b43_4_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b5_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b5_1_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b5_2_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b5_3_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b7_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b7_0_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b7_2_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b7_3_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b7_4_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b7_4_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b9_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b9_1_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b9_2_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b9_3_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b9_4_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b9_5_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b9_21_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b9_22_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b9_6_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b9_7_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b9_8_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b9_9_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b9_9_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b9_11_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b9_23_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b9_12_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b9_13_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b9_13_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b9_15_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b9_16_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b9_17_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b9_24_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b9_25_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b9_18_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b9_19_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b9_20_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':b9_26_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':ba9_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':ba9_0_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':bm0_0_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':bm0_1_0', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':bm0_1_1', [16, 18, 20, 122, 68, 17, 65])
traci.lane.subscribe(':bm0_1_2', [16, 18, 20, 122, 68, 17, 65])
traci.simulation.subscribe([115, 148])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrrrrrrrrryyy')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrGGGgGGGgrryyrrrrrrGGGGGgGGGgggrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrryyyyrrryyyyGGGgrryyrrrrrrGGGGGgGGGgggrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrryyyyrrryyyyGGGgrryyrrrrrryyyyyyyyyyyyrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGyyyrryy')
traci.trafficlight.setRedYellowGreenState('282', 'yyyrrryyyrrr')
traci.trafficlight.setRedYellowGreenState('235', 'GGGrrrrrGGyyyyyrrggrrr')
traci.trafficlight.setRedYellowGreenState('219', 'GrrrrrrrrrrGGGGyyyrrryyyrrr')
traci.trafficlight.setRedYellowGreenState('218', 'rrrGGGgrrrrGGGGgrGGG')
traci.trafficlight.setRedYellowGreenState('220', 'rrrggGGrGGGGG')
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGyy')
traci.trafficlight.setRedYellowGreenState('210', 'yyyrrrrryyyrrrGGrrrr')
traci.trafficlight.setRedYellowGreenState('273', 'yyyrrrryy')
traci.simulationStep()
traci.vehicle.subscribe('Malvasia_70_0', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('bus_3_0', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_3_0', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('bus_12_0', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Audinot_7_0', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_40_0', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_11_0', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Certosa_9_0', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('bus_2_0', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('bus_1_0', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('XXI_Aprile_7_0', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_100_0', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_12_0', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_10_0', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Turati_10_0', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_0', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrrrrrGGGgrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrrrrrGGgrrrrGGGgrryyrrrrrryyyyyyyyyyyyrrr')
traci.trafficlight.setRedYellowGreenState('235', 'GGGGGrrrGGrrrrrrrGGrrr')
traci.trafficlight.setRedYellowGreenState('218', 'rrrGGGGrrrrGGGGgrGGG')
traci.trafficlight.setRedYellowGreenState('220', 'rrrggGGrGGGGG')
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_9_1', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_1', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_11_1', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('231', 'rrrrrrrrGGgrrrrGGGgrrrrrrrrrryyyyyyyyyyyyrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrrrrrGGgrrrrGGGgrrrrGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGrrrGGrr')
traci.trafficlight.setRedYellowGreenState('282', 'rrrGGgrrrGGg')
traci.trafficlight.setRedYellowGreenState('219', 'GrrrrrrrrrrGGGGrrrGGgrrrGGg')
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGrr')
traci.trafficlight.setRedYellowGreenState('273', 'rrrGGGGrr')
traci.simulationStep()
traci.vehicle.subscribe('bus_9_0', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_2', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('bus_11_0', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('bus_14_0', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_50_1', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_3_2', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Silvani_7_2', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_10_1', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrGGGGGrrrr')
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_11_3', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_2', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_30_3', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_10_4', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_22_3', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_10_1', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('XXI_Aprile_94_2', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_7_3', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_70_1', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_12_1', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_11_5', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_6', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_52_5', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_7_4', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_2', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_23_4', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrrrrryyyyrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrrrrrGGgrrrryyyyrrrrGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrrrrryyyrrrryyyyrrrrGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGrrryyrr')
traci.trafficlight.setRedYellowGreenState('235', 'yyyyyrrryyrrrrrrryyrrr')
traci.trafficlight.setRedYellowGreenState('218', 'rrrGGGGrrrryyyyyrGGG')
traci.trafficlight.setRedYellowGreenState('221', 'yyyggrryyyyyyygrrrryyy')
traci.trafficlight.setRedYellowGreenState('220', 'rrrggGGryyyGG')
traci.trafficlight.setRedYellowGreenState('220', 'rrryyyyryyyyy')
traci.trafficlight.setRedYellowGreenState('209', 'yryGGrr')
traci.trafficlight.setRedYellowGreenState('210', 'rrryyyyyrrryyyGGrrrr')
traci.trafficlight.setRedYellowGreenState('273', 'rrryyyyrr')
traci.simulationStep()
traci.vehicle.subscribe('Malvasia_100_2', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_1_2', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_62_5', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Silvani_7_5', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_6', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_7', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_60_6', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_100_2', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrrrrryyyrrrrrrrrGGrrGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrGGGgrrrrGGrrGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGGGgrrGG')
traci.trafficlight.setRedYellowGreenState('235', 'rrrrrrrrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('218', 'rrrGGGGrrrrrrrrrrGGG')
traci.trafficlight.setRedYellowGreenState('220', 'rrryyyyGrrryy')
traci.trafficlight.setRedYellowGreenState('220', 'GGGrrrrGrrrrr')
traci.trafficlight.setRedYellowGreenState('209', 'rGrGGrr')
traci.trafficlight.setRedYellowGreenState('210', 'GGgrrrrrGGgrrrGGrrrr')
traci.trafficlight.setRedYellowGreenState('273', 'GGgrrrrrr')
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_11_7', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_12_3', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('221', 'rrrGGGGrrrrrrrGGGGGrrr')
traci.simulationStep()
traci.vehicle.subscribe('Silvani_3_6', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('XXI_Aprile_113_4', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_3', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_8', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_100_3', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Costa_1_4', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_50_10', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_7', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_11_8', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_7_7', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('XXI_Aprile_104_5', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_30_8', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_80_11', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_10_10', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Silvani_11_8', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_50_6', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_20_3', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_11_9', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_10_11', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_4', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_92_4', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_9', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrrrrrrrrryyy')
traci.trafficlight.setRedYellowGreenState('231', 'rrrryyyyrrryyyyrrrrGGrrGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('231', 'rrrryyyyrrryyyyrrrrGGrryyyyyyrrrrrrrrrrrryyy')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGyyyrryy')
traci.trafficlight.setRedYellowGreenState('233', 'rrGGGgrrrrGG')
traci.trafficlight.setRedYellowGreenState('219', 'GrrrrrrrrrrGGGGrrryyyrrryyy')
traci.trafficlight.setRedYellowGreenState('218', 'rrrGGGGrrrrrrrrrrGGG')
traci.trafficlight.setRedYellowGreenState('219', 'yrrrrrrrrrryyyyrrryyyrrryyy')
traci.trafficlight.setRedYellowGreenState('220', 'yyyrrrrGrrrrr')
traci.trafficlight.setRedYellowGreenState('209', 'ryrGGrr')
traci.trafficlight.setRedYellowGreenState('209', 'ryrGGrr')
traci.trafficlight.setRedYellowGreenState('210', 'yyyrrrrryyyrrrGGrrrr')
traci.trafficlight.setRedYellowGreenState('273', 'yyyrrrrrr')
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_40_13', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_3_12', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('bus_4_20', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('233', 'rrGGGgrrrrGG')
traci.trafficlight.setRedYellowGreenState('218', 'rrrGGGGrrrrGGGGgrGGG')
traci.trafficlight.setRedYellowGreenState('209', 'ryrGGGg')
traci.simulationStep()
traci.vehicle.subscribe('XXI_Aprile_12_6', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_10', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_11_9', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_12_7', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrGGggrrrrrrr')
traci.trafficlight.setRedYellowGreenState('231', 'GGggrrrrGGgrrrrrrrrGGrryyyyyyrrrrrrrrrrrryyy')
traci.trafficlight.setRedYellowGreenState('231', 'GGggrrrrGGgrrrrrrrrGGrrrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGrrrGGrr')
traci.trafficlight.setRedYellowGreenState('219', 'yrrrrrrrrrryyyyGGGrrrGGGrrr')
traci.trafficlight.setRedYellowGreenState('219', 'rrrGGGgrrrrrrrrGGGrrrGGGrrr')
traci.trafficlight.setRedYellowGreenState('220', 'rrrGGGGGrrrGG')
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGGg')
traci.trafficlight.setRedYellowGreenState('273', 'rrrGGGGrr')
traci.simulationStep()
traci.vehicle.subscribe('Silvani_7_10', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_15', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_11', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_50_8', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Malvasia_100_5', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_5', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('XXI_Aprile_7_7', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_20_4', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_3_14', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrGGGGGrrrr')
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_11_15', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_12', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_7_11', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_16', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Costa_12_9', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_22_13', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_8_16', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Silvani_11_12', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_18', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_30_6', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_17', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_10_6', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrryyyyrrrrrrr')
traci.trafficlight.setRedYellowGreenState('231', 'GGggrrrrGGgrrrrrrrrGGrrrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGrrryyrr')
traci.trafficlight.setRedYellowGreenState('233', 'rryyyyrrrryy')
traci.trafficlight.setRedYellowGreenState('219', 'rrrGGGgrrrrrrrryyyrrryyyrrr')
traci.trafficlight.setRedYellowGreenState('218', 'rrrGGGGrrrryyyyyrGGG')
traci.trafficlight.setRedYellowGreenState('219', 'rrryyyyrrrrrrrryyyrrryyyrrr')
traci.trafficlight.setRedYellowGreenState('209', 'yryGGGg')
traci.trafficlight.setRedYellowGreenState('209', 'yryGGyy')
traci.trafficlight.setRedYellowGreenState('273', 'rrryyyyrr')
traci.simulationStep()
traci.vehicle.subscribe('Borgo_40_5', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_14', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_10_18', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_11_13', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_91_10', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('231', 'GGggrrrrGGgrrrrrrrrGGrrrrrrrrGGGGGgGGGggGrrr')
traci.simulationStep()
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_10_19', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_12_11', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_42_21', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_15', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrrrrrGGGgrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGGGgrrGG')
traci.trafficlight.setRedYellowGreenState('219', 'rrryyyyrrrrrrrrrrrGGgrrrGGg')
traci.trafficlight.setRedYellowGreenState('218', 'rrrGGGGrrrrrrrrrrGGG')
traci.trafficlight.setRedYellowGreenState('219', 'GrrrrrrrrrrGGGgrrrGGgrrrGGg')
traci.trafficlight.setRedYellowGreenState('209', 'rGrGGyy')
traci.trafficlight.setRedYellowGreenState('209', 'rGrGGrr')
traci.trafficlight.setRedYellowGreenState('273', 'GGgrrrrGg')
traci.simulationStep()
traci.vehicle.subscribe('Silvani_11_14', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('233', 'GGrrrrGGGgrr')
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_16', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_22', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_10_20', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_100_7', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Turati_10_1', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_10_7', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Silvani_7_15', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_40_23', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('XXI_Aprile_12_10', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Costa_12_14', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_17', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_20_6', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_8_21', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Certosa_6_1', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Silvani_11_16', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_10_22', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Nigrisoli_50_6', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_24', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Prati_Capraia_100_8', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_94_8', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_18', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_8_23', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('XXI_Aprile_12_11', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_1_15', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrrrrrGGGgrrr')
traci.trafficlight.setRedYellowGreenState('231', 'GGggrrrrGGgrrrrrrrryyrrrrrrrrGGGGGgGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'yyyyrrrryyyrrrrrrrryyrrrrrrrrGGGGGgGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'yyyyrrrryyyrrrrrrrryyrrrrrrrryyyyyyGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGyyyrryy')
traci.trafficlight.setRedYellowGreenState('282', 'rrryyyrrryyy')
traci.trafficlight.setRedYellowGreenState('235', 'rrrrrrrrrrrrrrrrrrryyy')
traci.trafficlight.setRedYellowGreenState('218', 'rrryyyyrrrrrrrrrryyG')
traci.trafficlight.setRedYellowGreenState('219', 'yrrrrrrrrrrGGGyrrrGGgrrrGGg')
traci.trafficlight.setRedYellowGreenState('221', 'rrryyyyrrrrrrryyyyyrrr')
traci.trafficlight.setRedYellowGreenState('220', 'rrrGGGGyrrrGG')
traci.trafficlight.setRedYellowGreenState('220', 'rrryyyyyrrryy')
traci.trafficlight.setRedYellowGreenState('209', 'ryrGGrr')
traci.simulationStep()
traci.vehicle.subscribe('Silvani_11_17', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_40_26', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_19', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGGGGgrrrrGGGgrrr')
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_11_24', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Audinot_10_2', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_7_18', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_20_7', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_8_25', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('XXI_Aprile_2_12', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('231', 'yyyyrrrryyyrrrrGGGgrrGGrrrrrryyyyyyGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrrrrrGGGgrrGGrrrrrryyyyyyGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrrrrrGGGgrrGGrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGrrrGGrr')
traci.trafficlight.setRedYellowGreenState('282', 'GGgrrrGGgrrr')
traci.trafficlight.setRedYellowGreenState('235', 'GGGrrrrrGGrGGGGrrrrrrr')
traci.trafficlight.setRedYellowGreenState('218', 'GGGrrrrGGGGrrrrrGrrG')
traci.trafficlight.setRedYellowGreenState('219', 'rrrGGGrrrrrGGGrrrrGGgrrrGGg')
traci.trafficlight.setRedYellowGreenState('220', 'rrryyyyrGGGyy')
traci.trafficlight.setRedYellowGreenState('220', 'GGGrrrrrGGGrr')
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGrr')
traci.simulationStep()
traci.vehicle.subscribe('Nigrisoli_90_7', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_100_9', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_9', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_28', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_10_20', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('221', 'GGGrrrrGGGGGGGrrrrrGGG')
traci.simulationStep()
traci.vehicle.subscribe('Costa_1_17', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_7_19', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_40_29', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_9_26', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_21', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_10_27', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_40_30', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_22', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_7_20', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_8_28', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_100_8', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_10', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_100_10', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_60_23', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_1_19', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_7_21', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_29', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrrrrrGGGgrryyrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrrrrrGGGgrryyrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrrrrrGGGgrryyrrrrrrrrrrrryyyyyyrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGrrryyrr')
traci.trafficlight.setRedYellowGreenState('282', 'yyyrrryyyrrr')
traci.trafficlight.setRedYellowGreenState('235', 'yyyrrrrryyryyyyrrrrrrr')
traci.trafficlight.setRedYellowGreenState('219', 'rrryyyrrrrrGGGrrrrGGgrrrGGg')
traci.trafficlight.setRedYellowGreenState('220', 'yyyrrrrrGGGrr')
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGrr')
traci.trafficlight.setRedYellowGreenState('210', 'rrryyyyyrrryyyGGrrrr')
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_70_32', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('bus_8_50', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrGGGgGGGgrryyrrrrrrrrrrrryyyyyyrrr')
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGGg')
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_33', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_7_22', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_30', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('bus_5_50', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_50_20', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrGGGgGGGgrrrrrrrrrrrrrrrryyyyyyrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrGGGgGGGgrrrrGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGGGgrrGG')
traci.trafficlight.setRedYellowGreenState('282', 'rrrGGgrrrGGg')
traci.trafficlight.setRedYellowGreenState('235', 'rrrrrrrrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('219', 'GrrrrrrrrrrGGGgrrrGGgrrrGGg')
traci.trafficlight.setRedYellowGreenState('220', 'rrrGGGGrGGGGG')
traci.trafficlight.setRedYellowGreenState('210', 'GGgrrrrrGGgrrrGGrrrr')
traci.simulationStep()
traci.vehicle.subscribe('Prati_Capraia_100_11', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_10_31', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_25', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_100_11', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('XXI_Aprile_7_15', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_11_32', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_35', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_20_9', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_11_23', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Costa_3_21', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_26', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_102_24', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_10_33', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Silvani_11_24', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_36', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Costa_50_22', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_94_12', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_10_34', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_12', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_27', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Silvani_3_25', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrGGGgGGGgrrrrGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('231', 'rrrryyyyrrryyyyGGGgrrrrGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('231', 'rrrryyyyrrryyyyGGGgrrrryyyyyyrrrrrrrrrrrryyy')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGyyyrryy')
traci.trafficlight.setRedYellowGreenState('233', 'yyrrrryyyyrr')
traci.trafficlight.setRedYellowGreenState('235', 'rrrrrrrrrrrrrrrrrrryyy')
traci.trafficlight.setRedYellowGreenState('219', 'GrrrrrrrrrrGGGgrrryyyrrryyy')
traci.trafficlight.setRedYellowGreenState('218', 'yyyrrrryyyyrrrrryrrG')
traci.trafficlight.setRedYellowGreenState('220', 'rrrGGGGryyyGG')
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGyy')
traci.trafficlight.setRedYellowGreenState('210', 'yyyrrrrryyyrrrGGrrrr')
traci.trafficlight.setRedYellowGreenState('210', 'yyyrrrrryyyrrryyrrrr')
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_39', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_10_10', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('bus_6_60', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_28', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('XXI_Aprile_1_17', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('231', 'rrrryyyyrrryyyyGGGgrrGGyyyyyyrrrrrrrrrrrryyy')
traci.simulationStep()
traci.vehicle.subscribe('Silvani_7_26', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_35', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_52_40', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_60_29', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_12_24', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('231', 'GGggrrrrGGgrrrrGGGgrrGGyyyyyyrrrrrrrrrrrryyy')
traci.trafficlight.setRedYellowGreenState('231', 'GGggrrrrGGgrrrrGGGgrrGGrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGrrrGGrr')
traci.trafficlight.setRedYellowGreenState('235', 'GGGrrrrrGGrGGGGrrrrrrr')
traci.trafficlight.setRedYellowGreenState('219', 'GrrrrrrrrrrGGGgGGGrrrGGGrrr')
traci.trafficlight.setRedYellowGreenState('218', 'rrrGGGGrrrrrrrrrrGGG')
traci.trafficlight.setRedYellowGreenState('220', 'rrrGGGGGrrrGG')
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGrr')
traci.trafficlight.setRedYellowGreenState('210', 'yyyrrrrryyyrrrrrGGGG')
traci.simulationStep()
traci.vehicle.subscribe('Prati_Capraia_100_13', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_11_27', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_100_13', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_36', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('233', 'rrGGGgrrrrGG')
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_30', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('XXI_Aprile_1_18', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrrrrrrGGGG')
traci.simulationStep()
traci.vehicle.subscribe('Costa_200_25', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_10_38', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_31', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_7_28', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_100_11', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_37', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_10_39', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_40_43', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Nigrisoli_93_11', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Prati_Capraia_100_14', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_10_32', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_70_26', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_7_29', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_92_14', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_10_40', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Turati_3_2', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGyyyyrrrryyyyrrr')
traci.trafficlight.setRedYellowGreenState('231', 'GGggrrrrGGgrrrryyyyrryyrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'yyyyrrrryyyrrrryyyyrryyrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'yyyyrrrryyyrrrryyyyrryyrrrrrrrrrrrryyyyyyrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGrrryyrr')
traci.trafficlight.setRedYellowGreenState('233', 'rryyyyrrrryy')
traci.trafficlight.setRedYellowGreenState('235', 'GGGrrrrrGGryyyyrrrrrrr')
traci.trafficlight.setRedYellowGreenState('219', 'GrrrrrrrrrrGGGgyyyrrryyyrrr')
traci.trafficlight.setRedYellowGreenState('218', 'rrryyyyrrrrrrrrrryyG')
traci.trafficlight.setRedYellowGreenState('219', 'Grrrrrrrrrryyyyyyyrrryyyrrr')
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGrr')
traci.trafficlight.setRedYellowGreenState('210', 'rrryyyyyrrrrrrrrGGGG')
traci.simulationStep()
traci.vehicle.subscribe('Pertini_22_33', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_70_27', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_7_30', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_80_45', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_40_44', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGGg')
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_46', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Malvasia_30_15', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_100_12', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_41', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_50_15', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('231', 'yyyyrrrryyyrrrrrrrrGGrrrrrrrrrrrrrryyyyyyrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrGGGgrrrrGGrrrrrrrrrrrrrryyyyyyrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrGGGgrrrrGGrrGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGGGgrrGG')
traci.trafficlight.setRedYellowGreenState('235', 'GGGGGrrrGGrrrrrrrGGrrr')
traci.trafficlight.setRedYellowGreenState('219', 'GrrrrrrrrrryyyyrrrGGgrrrGGg')
traci.trafficlight.setRedYellowGreenState('218', 'GGGrrrrGGGGrrrrrGrrG')
traci.trafficlight.setRedYellowGreenState('219', 'GGGrrrrGGrrrrrrrrrGGgrrrGGg')
traci.trafficlight.setRedYellowGreenState('210', 'GGgrrrrrGGgrrrrrGGGG')
traci.simulationStep()
traci.vehicle.subscribe('Costa_1_28', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_3_43', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_7_31', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_23_34', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('233', 'GGrrrrGGGgrr')
traci.simulationStep()
traci.vehicle.subscribe('Nigrisoli_80_12', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('XXI_Aprile_12_21', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_48', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_35', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_8_44', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Costa_12_29', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_11_32', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_49', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_45', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_36', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_16', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_100_16', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Silvani_11_33', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_40_50', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Borgo_20_13', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_37', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrrrrrrrrryyy')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrGGGgrrrrGGrryyyyyyrrrrrrrrrrrryyy')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGyyyrryy')
traci.trafficlight.setRedYellowGreenState('235', 'yyyyyrrryyrrrrrrryyrrr')
traci.trafficlight.setRedYellowGreenState('219', 'GGGrrrrGGrrrrrrrrryyyrrryyy')
traci.trafficlight.setRedYellowGreenState('218', 'yyyrrrryyyyrrrrryrrG')
traci.trafficlight.setRedYellowGreenState('220', 'rrryyyyGrrryy')
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGyy')
traci.trafficlight.setRedYellowGreenState('210', 'yyyrrrrryyyrrrrrGGGG')
traci.trafficlight.setRedYellowGreenState('210', 'yyyrrrrryyyrrrrryyyy')
traci.simulationStep()
traci.vehicle.subscribe('Costa_50_31', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_40_51', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Silvani_11_34', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('XXI_Aprile_12_23', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_30_38', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Malvasia_62_17', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_17', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_8_48', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_7_35', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrrrrrGGGgrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrGGGgrrrrGGrrrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGrrrGGrr')
traci.trafficlight.setRedYellowGreenState('235', 'rrrrrrrrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('219', 'GGGrrrrGGrrrrrrGGGrrrGGGrrr')
traci.trafficlight.setRedYellowGreenState('218', 'rrrGGGGrrrrGGGGgrGGG')
traci.trafficlight.setRedYellowGreenState('220', 'GGGrrrrGrrrrr')
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGrr')
traci.trafficlight.setRedYellowGreenState('210', 'yyyrrrrryyyrrrGGrrrr')
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_39', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_50_32', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Silvani_7_36', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_50_54', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_10_49', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrGGGGGrrrr')
traci.simulationStep()
traci.vehicle.subscribe('Audinot_9_4', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_50_14', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_10_50', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_22_40', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_3_33', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_50_55', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Prati_Capraia_100_18', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_100_18', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_7_37', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_8_51', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Costa_70_34', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('XXI_Aprile_7_25', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Silvani_7_38', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_52_56', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_60_41', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_52', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrrrrrGGGgrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrryyyyrrrrGGrrrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGrrryyrr')
traci.trafficlight.setRedYellowGreenState('235', 'rrrrrrrrrrrrrrrrrrryyy')
traci.trafficlight.setRedYellowGreenState('219', 'GGGrrrrGGrrrrrryyyrrryyyrrr')
traci.trafficlight.setRedYellowGreenState('218', 'rrrGGGGrrrryyyyyrGGG')
traci.trafficlight.setRedYellowGreenState('220', 'GGGrrrryrrrrr')
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGrr')
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrryyyGGrrrr')
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrryyyyyrrrr')
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_42', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('bus_10_90', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGGGGgrrrrGGGgrrr')
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGGg')
traci.simulationStep()
traci.vehicle.subscribe('Costa_700_35', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_100_15', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Malvasia_62_19', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_40_58', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_10_19', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_53', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_43', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_11_39', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrrrrrrrrrGGrrrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGGGgrrGG')
traci.trafficlight.setRedYellowGreenState('235', 'GGGGGrrrGGrrrrrrrGGrrr')
traci.trafficlight.setRedYellowGreenState('219', 'GGGrrrrGGrrrrrrrrrGGgrrrGGg')
traci.trafficlight.setRedYellowGreenState('218', 'rrrGGGGrrrrrrrrrrGGG')
traci.trafficlight.setRedYellowGreenState('220', 'GGGrrrrrGGGrr')
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrrrryyrrrr')
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrrrrrrGGGG')
traci.simulationStep()
traci.simulationStep()
traci.vehicle.subscribe('Silvani_7_40', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_50_36', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_54', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_22_44', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_10_55', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_61', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_40_59', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('XXI_Aprile_1_27', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_45', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_11_41', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Costa_70_37', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_20_16', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_10_56', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_60_20', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_20', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Nigrisoli_50_16', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_40_63', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_46', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_10_57', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_62', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Silvani_7_42', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('231', 'rrrryyyyrrrrrrrrrrrGGrrrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGyyyrryy')
traci.trafficlight.setRedYellowGreenState('235', 'GGGyyrrrGGrrrrrrryyrrr')
traci.trafficlight.setRedYellowGreenState('219', 'GGGrrrrGGrrrrrrrrryyyrrryyy')
traci.trafficlight.setRedYellowGreenState('218', 'rrrGGGGrrrrrrrrrrGGG')
traci.trafficlight.setRedYellowGreenState('219', 'yyyrrrrGGrrrrrrrrryyyrrryyy')
traci.trafficlight.setRedYellowGreenState('221', 'yyyrrrryyyyyyyrrrrryyy')
traci.trafficlight.setRedYellowGreenState('220', 'GGGrrrrryyyrr')
traci.trafficlight.setRedYellowGreenState('220', 'yyyrrrrryyyrr')
traci.trafficlight.setRedYellowGreenState('209', 'yryGGGg')
traci.trafficlight.setRedYellowGreenState('209', 'yryGGyy')
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrrrrrrGGGG')
traci.simulationStep()
traci.vehicle.subscribe('Costa_3_38', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_70_64', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('bus_7_100', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('218', 'rrrGGGGrrrrGGGGgrGGG')
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrGGGrrGGGG')
traci.simulationStep()
traci.vehicle.subscribe('Silvani_11_43', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_10_59', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_58', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Prati_Capraia_10_21', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_100_21', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('231', 'GGggrrrrGGgrrrrrrrrGGrrrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGrrrGGrr')
traci.trafficlight.setRedYellowGreenState('235', 'GGGrrrrrGGrGGGGrrrrrrr')
traci.trafficlight.setRedYellowGreenState('219', 'yyyrrrrGGrrrrrrGGGrrrGGGrrr')
traci.trafficlight.setRedYellowGreenState('219', 'rrrrrrrGGGGrrrrGGGrrrGGGrrr')
traci.trafficlight.setRedYellowGreenState('220', 'yyyrrrrGrrrrr')
traci.trafficlight.setRedYellowGreenState('220', 'rrrGGGGGrrrGG')
traci.trafficlight.setRedYellowGreenState('209', 'rGrGGyy')
traci.trafficlight.setRedYellowGreenState('209', 'rGrGGrr')
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_48', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('XXI_Aprile_7_29', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_11_44', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_66', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_20_17', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_70_39', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('221', 'rrrGGGGrrrrrrrGGGGGrrr')
traci.simulationStep()
traci.vehicle.subscribe('Turati_3_3', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_61', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_30_49', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_67', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('XXI_Aprile_113_30', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_7_45', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_40_68', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_50_40', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_8_62', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Malvasia_95_22', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_50', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Audinot_3_5', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_22', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Silvani_11_46', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_69', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_40_70', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_50_42', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_51', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_20_18', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_10_64', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Certosa_9_3', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('231', 'yyyyrrrryyyrrrrrrrrGGrrrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'yyyyrrrryyyrrrrrrrrGGrrrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGrrryyrr')
traci.trafficlight.setRedYellowGreenState('282', 'rrryyyrrryyy')
traci.trafficlight.setRedYellowGreenState('219', 'rrrrrrrGGGGrrrryyyrrryyyrrr')
traci.trafficlight.setRedYellowGreenState('218', 'rrrGGGGrrrryyyyyrGGG')
traci.trafficlight.setRedYellowGreenState('219', 'rrrrrrrGGyyrrrryyyrrryyyrrr')
traci.trafficlight.setRedYellowGreenState('221', 'rrryyyyrrrrrrryyyyyrrr')
traci.trafficlight.setRedYellowGreenState('220', 'rrrGGGGyrrrGG')
traci.trafficlight.setRedYellowGreenState('209', 'ryrGGrr')
traci.trafficlight.setRedYellowGreenState('209', 'ryrGGrr')
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrryyyrrGGGG')
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrryyyrryyyy')
traci.simulationStep()
traci.vehicle.subscribe('XXI_Aprile_7_31', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('231', 'yyyyrrrryyyrrrrrrrrGGrrrrrrrrGGGGGgGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('209', 'ryrGGGg')
traci.simulationStep()
traci.vehicle.subscribe('Silvani_11_47', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_40_71', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_23', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_10_65', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_60_52', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_100_23', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Nigrisoli_72_18', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Costa_70_43', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrGGGgrrrrGGrrrrrrrrGGGGGgGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGGGgrrGG')
traci.trafficlight.setRedYellowGreenState('282', 'GGgrrrGGgrrr')
traci.trafficlight.setRedYellowGreenState('219', 'rrrrrrrGGyyrrrrrrrGGgrrrGGg')
traci.trafficlight.setRedYellowGreenState('218', 'rrrGGGGrrrrrrrrrrGGG')
traci.trafficlight.setRedYellowGreenState('219', 'GGGrrrrGGrrrrrrrrrGGgrrrGGg')
traci.trafficlight.setRedYellowGreenState('220', 'rrrGGGGrGGGGG')
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGGg')
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrrrrrryyyy')
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrrrrGGrrrr')
traci.simulationStep()
traci.vehicle.subscribe('XXI_Aprile_7_32', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_7_48', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_53', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_3_66', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('221', 'GGGrrrrGGGGGGGrrrrrGGG')
traci.simulationStep()
traci.vehicle.subscribe('Costa_70_44', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_67', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Silvani_11_49', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_40_19', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_74', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_40_72', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_54', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_24', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Silvani_7_50', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Nigrisoli_72_19', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_70_45', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_68', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_40_73', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_55', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_10_69', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.trafficlight.setRedYellowGreenState('230', 'GGGyyyyrrrryyyyrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrGGGgrrrryyrrrrrrrrGGGGGgGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrryyyyrrryyyyrrrryyrrrrrrrrGGGGGgGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGyyyrryy')
traci.trafficlight.setRedYellowGreenState('282', 'yyyrrryyyrrr')
traci.trafficlight.setRedYellowGreenState('235', 'yyyrrrrryyryyyyrrrrrrr')
traci.trafficlight.setRedYellowGreenState('218', 'rrrGGGGrrrrrrrrrrGGG')
traci.trafficlight.setRedYellowGreenState('220', 'rrryyyyrGGGyy')
traci.trafficlight.setRedYellowGreenState('210', 'rrryyyyyrrrrrrGGrrrr')
traci.trafficlight.setRedYellowGreenState('210', 'rrryyyyyrrrrrryyrrrr')
traci.trafficlight.setRedYellowGreenState('273', 'GGgrrrryy')
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_56', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_1_51', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('bus_140_120', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('218', 'rrrGGGGrrrrGGGGgrGGG')
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_70_78', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_40_77', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_10_71', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_100_20', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_8_70', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_100_25', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_10_25', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Silvani_11_52', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_11_47', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_57', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('231', 'rrrryyyyrrryyyyGGGgrrrrrrrrrrGGGGGgGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'GGggrrrrGGgrrrrGGGgrrrrrrrrrrGGGGGgGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGrrrGGrr')
traci.trafficlight.setRedYellowGreenState('282', 'rrrGGgrrrGGg')
traci.trafficlight.setRedYellowGreenState('235', 'rrrrrrrrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('220', 'GGGrrrrrGGGrr')
traci.trafficlight.setRedYellowGreenState('210', 'GGgrrrrrGGgrrryyrrrr')
traci.trafficlight.setRedYellowGreenState('210', 'GGgrrrrrGGgrrrrrGGGG')
traci.trafficlight.setRedYellowGreenState('273', 'GGgrrrrrr')
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_11_72', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_79', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Nigrisoli_20_20', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_58', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('XXI_Aprile_1_35', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Costa_70_48', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_11_53', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_11_73', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_40_81', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_26', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_22_59', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_70_26', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Borgo_20_21', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_7_54', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_8_75', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('XXI_Aprile_8_36', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_50_82', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_12_49', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Audinot_12_6', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_60', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_7_55', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('231', 'yyyyrrrrGGgrrrrGGGgrrrrrrrrrrGGGGGgGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'yyyyrrrrGGgrrrrGGGgrrrrrrrrrryyyyyyGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGrrryyrr')
traci.trafficlight.setRedYellowGreenState('282', 'rrryyyrrryyy')
traci.trafficlight.setRedYellowGreenState('220', 'yyyrrrrrGGGrr')
traci.trafficlight.setRedYellowGreenState('209', 'yryGGGg')
traci.trafficlight.setRedYellowGreenState('273', 'GGgrrrrrr')
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_10_76', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('273', 'GGgrrrrGg')
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_40_84', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_61', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_70_27', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_50_50', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_27', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Silvani_7_56', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_77', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('231', 'rrrrrrrrGGgrrrrGGGgrrrrrrrrrryyyyyyGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrrrrrGGgrrrrGGGgrrrrrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGGGgrrGG')
traci.trafficlight.setRedYellowGreenState('282', 'GGgrrrGGgrrr')
traci.trafficlight.setRedYellowGreenState('220', 'rrrGGGGrGGGGG')
traci.trafficlight.setRedYellowGreenState('209', 'rGrGGGg')
traci.simulationStep()
traci.vehicle.subscribe('Costa_11_51', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_20_22', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_102_62', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_86', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_7_57', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_63', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('XXI_Aprile_8_38', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_10_79', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_78', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Costa_12_52', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_100_28', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_28', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_52_88', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_10_80', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_11_58', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_64', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_10_81', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Silvani_7_59', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_1_53', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_100_23', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_30_65', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrrrrrrrrryyy')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrrrrrGGgrrrrGGGgrrrrrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('235', 'rrrrrrrrrrrrrrrrrrryyy')
traci.trafficlight.setRedYellowGreenState('219', 'GGGrrrrGGrrrrrrrrryyyrrryyy')
traci.trafficlight.setRedYellowGreenState('220', 'rrrGGGGryyyGG')
traci.trafficlight.setRedYellowGreenState('209', 'ryrGGGg')
traci.trafficlight.setRedYellowGreenState('210', 'yyyrrrrryyyrrrrrGGGG')
traci.trafficlight.setRedYellowGreenState('273', 'yyyrrrryy')
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_40_89', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('231', 'rrrrrrrrGGgrrrrGGGgrrGGrrrrrrrrrrrrGGGggGrrr')
traci.simulationStep()
traci.vehicle.subscribe('Pertini_22_66', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_10_29', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_1_60', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_100_29', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_91', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_12_54', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_83', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGGGGgrrrrGGGgrrr')
traci.trafficlight.setRedYellowGreenState('235', 'GGGGGrrrGGrrrrrrrGGrrr')
traci.trafficlight.setRedYellowGreenState('219', 'GGGrrrrGGrrrrrrGGGrrrGGGrrr')
traci.trafficlight.setRedYellowGreenState('220', 'rrrGGGGGrrrGG')
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGGg')
traci.trafficlight.setRedYellowGreenState('273', 'rrrGGGGrr')
traci.simulationStep()
traci.vehicle.subscribe('Silvani_7_61', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_10_84', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_67', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_92', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrGGGrrGGGG')
traci.simulationStep()
traci.vehicle.subscribe('Malvasia_100_30', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_3_85', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Certosa_6_4', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_30', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_100_24', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('XXI_Aprile_2_41', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_1_55', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Silvani_11_62', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_68', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Costa_1_56', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_8_86', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_30_95', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_7_63', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_69', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_1_87', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGyyyyrrrrGGGgrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrrrrrGGgrrrrGGGgrryyrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrrrrryyyrrrrGGGgrryyrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGyyyrryy')
traci.trafficlight.setRedYellowGreenState('233', 'yyrrrryyyyrr')
traci.trafficlight.setRedYellowGreenState('282', 'yyyrrryyyrrr')
traci.trafficlight.setRedYellowGreenState('218', 'rrrGGGGrrrryyyyyrGGG')
traci.trafficlight.setRedYellowGreenState('219', 'yyyrrrryyrrrrrrGGGrrrGGGrrr')
traci.trafficlight.setRedYellowGreenState('209', 'yryGGGg')
traci.trafficlight.setRedYellowGreenState('273', 'rrryyyyrr')
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_70', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_10_88', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Audinot_3_7', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_100_31', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_11_64', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_96', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_31', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Costa_200_58', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_71', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_100_25', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('XXI_Aprile_1_43', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrrrrrGGGgrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrrrrryyyrrrrGGGgrrrrrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrGGGgGGGgrrrrrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGrrrGGrr')
traci.trafficlight.setRedYellowGreenState('282', 'rrrGGgrrrGGg')
traci.trafficlight.setRedYellowGreenState('218', 'rrrGGGGrrrrrrrrrrGGG')
traci.trafficlight.setRedYellowGreenState('219', 'rrrGGGgrrrrrrrrGGGrrrGGGrrr')
traci.trafficlight.setRedYellowGreenState('209', 'rGrGGGg')
traci.trafficlight.setRedYellowGreenState('273', 'GGgrrrrrr')
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_40_98', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_7_65', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_97', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('233', 'rrGGGgrrrrGG')
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_72', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_90', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Malvasia_100_32', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_11_66', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_10_32', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('XXI_Aprile_12_44', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_73', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_8_91', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_10_92', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Borgo_20_26', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_11_67', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_11_93', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_12_61', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_74', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrrrrryyyyrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrGGGgGGGgrrrrrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrGGGgGGGgrrrrrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGrrryyrr')
traci.trafficlight.setRedYellowGreenState('233', 'rryyyyrrrryy')
traci.trafficlight.setRedYellowGreenState('282', 'rrryyyrrryyy')
traci.trafficlight.setRedYellowGreenState('219', 'rrrGGGgrrrrrrrryyyrrryyyrrr')
traci.trafficlight.setRedYellowGreenState('218', 'rrryyyyrrrrrrrrrryyG')
traci.trafficlight.setRedYellowGreenState('219', 'rrrGGGyrrrrrrrryyyrrryyyrrr')
traci.trafficlight.setRedYellowGreenState('210', 'rrryyyyyrrryyyrrGGGG')
traci.trafficlight.setRedYellowGreenState('210', 'rrryyyyyrrryyyrryyyy')
traci.trafficlight.setRedYellowGreenState('273', 'yyyrrrrrr')
traci.simulationStep()
traci.vehicle.subscribe('Nigrisoli_100_26', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_7_68', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_30_33', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_100_33', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrGGGgGGGgrrGGrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrGGGgGGGgrrGGrrrrrrGGGGGgGGGggGrrr')
traci.simulationStep()
traci.simulationStep()
traci.vehicle.subscribe('Silvani_7_69', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_70_62', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_94', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrGGggrrrrrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGGGgrrGG')
traci.trafficlight.setRedYellowGreenState('282', 'GGgrrrGGgrrr')
traci.trafficlight.setRedYellowGreenState('219', 'rrrGGGyrrrrrrrrrrrGGgrrrGGg')
traci.trafficlight.setRedYellowGreenState('218', 'GGGrrrrGGGGrrrrrGrrG')
traci.trafficlight.setRedYellowGreenState('219', 'rrrGGGrrrrrGGGrrrrGGgrrrGGg')
traci.trafficlight.setRedYellowGreenState('210', 'GGgrrrrrGGgrrrrryyyy')
traci.trafficlight.setRedYellowGreenState('210', 'GGgrrrrrGGgrrrGGrrrr')
traci.trafficlight.setRedYellowGreenState('273', 'rrrGGGGrr')
traci.simulationStep()
traci.vehicle.subscribe('XXI_Aprile_7_46', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_76', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('233', 'GGrrrrGGGgrr')
traci.simulationStep()
traci.vehicle.subscribe('Borgo_20_27', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_105', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_95', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_10_96', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Prati_Capraia_100_34', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_50_106', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_200_63', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_100_34', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_23_77', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_7_70', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_3_97', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_107', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('XXI_Aprile_1_47', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_78', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_7_71', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Costa_12_64', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_98', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Silvani_11_72', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_22_79', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrryyyyrrrrrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrryyyyGGGgrrGGrrrrrrGGGGGgGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrryyyyGGGgrrGGrrrrrryyyyyyGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('218', 'yyyrrrryyyyrrrrryrrG')
traci.trafficlight.setRedYellowGreenState('219', 'rrryyyrrrrrGGGrrrrGGgrrrGGg')
traci.trafficlight.setRedYellowGreenState('221', 'yyyrrrryyyyyyyrrrrryyy')
traci.trafficlight.setRedYellowGreenState('220', 'rrrGGGGyrrrGG')
traci.trafficlight.setRedYellowGreenState('209', 'rGrGGyy')
traci.simulationStep()
traci.vehicle.subscribe('Borgo_100_28', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_52_109', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_92_35', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_35', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Audinot_3_8', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_99', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_70_65', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_110', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Silvani_7_73', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_80', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGGGGgrrrrGGGgrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrrrrrGGGgrrGGrrrrrryyyyyyGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrrrrrGGGgrrGGrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('218', 'rrrGGGGrrrrGGGGgrGGG')
traci.trafficlight.setRedYellowGreenState('219', 'GrrrrrrrrrrGGGgrrrGGgrrrGGg')
traci.trafficlight.setRedYellowGreenState('220', 'rrrGGGGrGGGGG')
traci.trafficlight.setRedYellowGreenState('209', 'rGrGGrr')
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_11_100', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_10_101', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_40_111', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('221', 'rrrGGGGrrrrrrrGGGGGrrr')
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_81', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_7_74', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Turati_10_5', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_50_66', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Malvasia_94_36', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_10_36', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_11_103', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_20_29', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_82', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_11_75', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('XXI_Aprile_7_50', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_200_67', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_73_83', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Costa_70_68', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_11_76', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_104', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_40_115', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGyyyyrrrryyyyrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrrrrryyyyrryyrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrryyyyrrrrrrryyyyrryyrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrryyyyrrrrrrryyyyrryyrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('233', 'yyrrrryyyyrr')
traci.trafficlight.setRedYellowGreenState('282', 'yyyrrryyyrrr')
traci.trafficlight.setRedYellowGreenState('218', 'rrrGGGGrrrryyyyyrGGG')
traci.trafficlight.setRedYellowGreenState('219', 'GrrrrrrrrrryyyyrrrGGgrrrGGg')
traci.trafficlight.setRedYellowGreenState('221', 'rrryyyyrrrrrrryyyyyrrr')
traci.trafficlight.setRedYellowGreenState('220', 'rrrGGGGryyyGG')
traci.trafficlight.setRedYellowGreenState('209', 'ryrGGrr')
traci.trafficlight.setRedYellowGreenState('210', 'yyyrrrrryyyrrrGGrrrr')
traci.trafficlight.setRedYellowGreenState('210', 'yyyrrrrryyyrrryyrrrr')
traci.simulationStep()
traci.vehicle.subscribe('Prati_Capraia_100_37', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_43_84', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_100_37', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_10_105', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('231', 'rrrryyyyrrrrrrryyyyrryyrrrrrrGGGGGgGGGggGrrr')
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_11_106', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Certosa_9_5', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('XXI_Aprile_7_51', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_40_116', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_85', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_117', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_20_30', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_11_77', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_50_69', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('231', 'rrrryyyyrrrrrrrrrrrGGrrrrrrrrGGGGGgGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'GGggrrrrGGgrrrrrrrrGGrrrrrrrrGGGGGgGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('282', 'rrrGGgrrrGGg')
traci.trafficlight.setRedYellowGreenState('218', 'rrrGGGGrrrrrrrrrrGGG')
traci.trafficlight.setRedYellowGreenState('219', 'GGGrrrrGGrrrrrrrrrGGgrrrGGg')
traci.trafficlight.setRedYellowGreenState('220', 'rrrGGGGGrrrGG')
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGrr')
traci.trafficlight.setRedYellowGreenState('210', 'yyyrrrrryyyrrrrrGGGG')
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_10_107', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('233', 'rrGGGgrrrrGG')
traci.trafficlight.setRedYellowGreenState('221', 'GGGrrrrGGGGGGGrrrrrGGG')
traci.simulationStep()
traci.vehicle.subscribe('Malvasia_100_38', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_38', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('XXI_Aprile_7_52', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_86', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_7_78', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrrrrrrGGGG')
traci.simulationStep()
traci.vehicle.subscribe('bus_21_180', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_1_108', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_10_109', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_11_79', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_87', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_50_120', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Borgo_20_31', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('XXI_Aprile_94_53', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_11_80', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_110', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Costa_50_70', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_30_39', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_100_39', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_88', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrrrrrrrrryyy')
traci.trafficlight.setRedYellowGreenState('231', 'GGggrrrrGGgrrrrrrrryyrrrrrrrrGGGGGgGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'yyyyrrrryyyrrrrrrrryyrrrrrrrrGGGGGgGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'yyyyrrrryyyrrrrrrrryyrrrrrrrryyyyyyyyyyyyrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGyyyrryy')
traci.trafficlight.setRedYellowGreenState('219', 'GGGrrrrGGrrrrrrrrryyyrrryyy')
traci.trafficlight.setRedYellowGreenState('219', 'yyyrrrryyrrrrrrrrryyyrrryyy')
traci.trafficlight.setRedYellowGreenState('220', 'rrrGGGGyrrrGG')
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGrr')
traci.trafficlight.setRedYellowGreenState('273', 'rrryyyyrr')
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_3_111', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_30_121', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGGg')
traci.simulationStep()
traci.vehicle.subscribe('Nigrisoli_50_31', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_7_81', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_89', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_8_112', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_12_71', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_123', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrrrrrGGGgrrr')
traci.trafficlight.setRedYellowGreenState('231', 'yyyyrrrryyyrrrrGGGgrrrrrrrrrryyyyyyyyyyyyrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrrrrrGGGgrrrrrrrrrryyyyyyyyyyyyrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrrrrrGGGgrrrrGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGrrrGGrr')
traci.trafficlight.setRedYellowGreenState('219', 'yyyrrrryyrrrrrrGGGrrrGGGrrr')
traci.trafficlight.setRedYellowGreenState('219', 'rrrGGGrrrrrGGGrGGGrrrGGGrrr')
traci.trafficlight.setRedYellowGreenState('220', 'rrrGGGGrGGGGG')
traci.trafficlight.setRedYellowGreenState('273', 'GGgrrrrGg')
traci.simulationStep()
traci.vehicle.subscribe('Silvani_7_82', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_90', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_40_122', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Costa_70_72', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_40', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_100_40', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_50_32', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_3_114', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_7_83', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_125', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_91', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('XXI_Aprile_7_55', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_126', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_92', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_1_73', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Silvani_11_84', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_116', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_40_127', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_3_115', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Prati_Capraia_100_41', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_94_41', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('231', 'rrrryyyyrrrrrrrGGGgrrrrGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('231', 'rrrryyyyrrrrrrrGGGgrrrryyyyyyrrrrrrrrrrrryyy')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGrrryyrr')
traci.trafficlight.setRedYellowGreenState('233', 'rryyyyrrrryy')
traci.trafficlight.setRedYellowGreenState('282', 'rrryyyrrryyy')
traci.trafficlight.setRedYellowGreenState('219', 'rrrGGGrrrrrGGGryyyrrryyyrrr')
traci.trafficlight.setRedYellowGreenState('218', 'rrrGGGGrrrrrrrrrrGGG')
traci.trafficlight.setRedYellowGreenState('219', 'rrryyyrrrrryyyryyyrrryyyrrr')
traci.trafficlight.setRedYellowGreenState('221', 'yyyrrrryyyyyyyrrrrryyy')
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrrrrrrGGGG')
traci.trafficlight.setRedYellowGreenState('273', 'yyyrrrryy')
traci.simulationStep()
traci.vehicle.subscribe('Costa_1_74', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_7_85', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_10_93', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_100_33', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('218', 'rrrGGGGrrrrGGGGgrGGG')
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrGGGrrGGGG')
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_40_128', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_117', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_129', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Silvani_11_86', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_94', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('231', 'GGggrrrrGGgrrrrGGGgrrrryyyyyyrrrrrrrrrrrryyy')
traci.trafficlight.setRedYellowGreenState('231', 'GGggrrrrGGgrrrrGGGgrrrrrrrrrrGGGGGgGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGGGgrrGG')
traci.trafficlight.setRedYellowGreenState('282', 'GGgrrrGGgrrr')
traci.trafficlight.setRedYellowGreenState('219', 'rrryyyrrrrryyyrrrrGGgrrrGGg')
traci.trafficlight.setRedYellowGreenState('219', 'GGGrrrrGGrrrrrrrrrGGgrrrGGg')
traci.trafficlight.setRedYellowGreenState('273', 'rrrGGGGrr')
traci.simulationStep()
traci.vehicle.subscribe('XXI_Aprile_7_57', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_130', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('233', 'GGrrrrGGGgrr')
traci.trafficlight.setRedYellowGreenState('221', 'rrrGGGGrrrrrrrGGGGGrrr')
traci.simulationStep()
traci.vehicle.subscribe('Prati_Capraia_30_42', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_95_42', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_118', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_12_75', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_10_119', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_10_95', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Silvani_1_87', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_42_96', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_132', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_20_34', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Silvani_7_88', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_200_76', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_3_122', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_133', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_23_97', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_3_77', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('XXI_Aprile_113_59', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_100_43', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Turati_10_6', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_43', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_11_89', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrrrrryyyyrrr')
traci.trafficlight.setRedYellowGreenState('231', 'yyyyrrrryyyrrrrGGGgrrrrrrrrrrGGGGGgGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'yyyyrrrryyyrrrrGGGgrrrrrrrrrryyyyyyyyyyyyrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGyyyrryy')
traci.trafficlight.setRedYellowGreenState('233', 'yyrrrryyyyrr')
traci.trafficlight.setRedYellowGreenState('219', 'GGGrrrrGGrrrrrrrrryyyrrryyy')
traci.trafficlight.setRedYellowGreenState('218', 'rrryyyyrrrryyyyyryyG')
traci.trafficlight.setRedYellowGreenState('219', 'Gyyrrrryyrrrrrrrrryyyrrryyy')
traci.trafficlight.setRedYellowGreenState('273', 'rrryyyyrr')
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_98', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_8_123', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_80_135', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_134', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Borgo_100_35', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_7_90', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_42_136', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_99', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_50_78', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_124', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrrrrrGGGgrrrrrrrrrryyyyyyyyyyyyrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrrrrrGGGgrrrrGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGrrrGGrr')
traci.trafficlight.setRedYellowGreenState('219', 'GyyrrrryyrrrrrrGGGrrrGGGrrr')
traci.trafficlight.setRedYellowGreenState('218', 'GGGrrrrGGGGrrrrrGrrG')
traci.trafficlight.setRedYellowGreenState('219', 'GrrrrrrrrrrGGGgGGGrrrGGGrrr')
traci.trafficlight.setRedYellowGreenState('273', 'GGgrrrrGg')
traci.simulationStep()
traci.vehicle.subscribe('XXI_Aprile_1_60', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('233', 'rrGGGgrrrrGG')
traci.simulationStep()
traci.vehicle.subscribe('Silvani_3_91', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_44', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_137', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Audinot_3_10', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_93_44', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_11_125', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_100', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_1_80', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_9_126', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_101', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_138', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_11_92', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Borgo_100_36', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_70_81', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_70_45', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_45', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_140', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_44_102', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_7_93', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_128', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrrrrrGGGgrrrrGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrrrrrGGGgrrrryyyyyyrrrrrrrrrrrryyy')
traci.trafficlight.setRedYellowGreenState('233', 'rryyyyrrrryy')
traci.trafficlight.setRedYellowGreenState('219', 'GrrrrrrrrrrGGGgyyyrrryyyrrr')
traci.trafficlight.setRedYellowGreenState('218', 'yyyrrrryyyyrrrrryrrG')
traci.trafficlight.setRedYellowGreenState('219', 'Grrrrrrrrrryyyyyyyrrryyyrrr')
traci.trafficlight.setRedYellowGreenState('221', 'rrryyyyrrrrrrryyyyyrrr')
traci.trafficlight.setRedYellowGreenState('220', 'rrrGGGGryyyGG')
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrGGGrryyyy')
traci.simulationStep()
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrGGGgGGGgrrrryyyyyyrrrrrrrrrrrryyy')
traci.simulationStep()
traci.vehicle.subscribe('Silvani_11_94', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_70_82', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_8_130', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_129', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_141', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_22_103', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrGGGgGGGgrrrrrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('219', 'GrrrrrrrrrryyyyrrrGGgrrrGGg')
traci.trafficlight.setRedYellowGreenState('218', 'rrrGGGGrrrrrrrrrrGGG')
traci.trafficlight.setRedYellowGreenState('219', 'GGGrrrrGGrrrrrrrrrGGgrrrGGg')
traci.trafficlight.setRedYellowGreenState('220', 'rrrGGGGGrrrGG')
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrGGGGGrrrr')
traci.simulationStep()
traci.vehicle.subscribe('Prati_Capraia_100_46', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_100_46', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('233', 'GGrrrrGGGgrr')
traci.trafficlight.setRedYellowGreenState('221', 'GGGrrrrGGGGGGGrrrrrGGG')
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_9_131', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_142', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_22_104', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_7_95', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_1_83', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('XXI_Aprile_94_63', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_105', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_40_144', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_100_37', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_12_132', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_7_96', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_10_106', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_40_145', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_3_84', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Prati_Capraia_100_47', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_143', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_100_47', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Silvani_11_97', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_200_85', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrrrrrrrrryyy')
traci.trafficlight.setRedYellowGreenState('231', 'rrrryyyyrrryyyyGGGgrrrrrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('233', 'yyrrrryyyyrr')
traci.trafficlight.setRedYellowGreenState('219', 'GGGrrrrGGrrrrrrrrryyyrrryyy')
traci.trafficlight.setRedYellowGreenState('219', 'yyyrrrryyrrrrrrrrryyyrrryyy')
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGyy')
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrGGGyyrrrr')
traci.trafficlight.setRedYellowGreenState('273', 'yyyrrrryy')
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_107', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_146', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Costa_12_86', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_10_135', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_100_38', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_7_98', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('XXI_Aprile_5_65', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_50_149', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGGGGgrrrrGGGgrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrrrrrGGgrrrrGGGgrrrrrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('219', 'yyyrrrryyrrrrrrGGGrrrGGGrrr')
traci.trafficlight.setRedYellowGreenState('219', 'rrrGGGgrrrrrrrrGGGrrrGGGrrr')
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGrr')
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrGGGrrGGGG')
traci.trafficlight.setRedYellowGreenState('273', 'rrrGGGGrr')
traci.simulationStep()
traci.vehicle.subscribe('Silvani_11_99', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_94_48', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_8_136', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_48', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_50_108', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('233', 'rrGGGgrrrrGG')
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_109', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Nigrisoli_72_38', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('XXI_Aprile_1_66', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_147', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_12_87', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_70_150', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Audinot_12_11', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_7_100', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Costa_12_88', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_110', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_138', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Borgo_100_39', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_148', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_10_139', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_10_49', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_111', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('XXI_Aprile_7_67', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_11_101', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_151', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_50_89', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGyyyyrrrryyyyrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrrrrrGGgrrrrGGGgrrrrrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrrrrrGGgrrrrGGGgrrrrrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('282', 'yyyrrryyyrrr')
traci.trafficlight.setRedYellowGreenState('219', 'rrrGGGgrrrrrrrryyyrrryyyrrr')
traci.trafficlight.setRedYellowGreenState('218', 'rrrGGGGrrrrrrrrrrGGG')
traci.trafficlight.setRedYellowGreenState('220', 'rrrGGGGyrrrGG')
traci.trafficlight.setRedYellowGreenState('220', 'rrryyyyyrrryy')
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGrr')
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrryyyrrGGGG')
traci.simulationStep()
traci.vehicle.subscribe('bus_1_240', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_23_112', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Nigrisoli_93_39', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_11_102', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('bus_2_240', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('231', 'rrrrrrrrGGgrrrrGGGgrrGGrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'GGggrrrrGGgrrrrGGGgrrGGrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('218', 'rrrGGGGrrrrGGGGgrGGG')
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGGg')
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_10_141', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('XXI_Aprile_1_68', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Costa_50_91', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_40_155', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrGGggrrrrrrr')
traci.trafficlight.setRedYellowGreenState('282', 'rrrGGgrrrGGg')
traci.trafficlight.setRedYellowGreenState('219', 'rrrGGGgrrrrrrrrrrrGGgrrrGGg')
traci.trafficlight.setRedYellowGreenState('220', 'rrryyyyrGGGyy')
traci.trafficlight.setRedYellowGreenState('220', 'GGGrrrrrGGGrr')
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrrrrrrGGGG')
traci.simulationStep()
traci.vehicle.subscribe('Malvasia_10_50', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_152', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_142', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_113', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_11_103', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_100_40', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_10_50', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Turati_1_7', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Silvani_11_104', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_8_143', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_50_92', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_114', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_50_158', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_154', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_10_144', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Nigrisoli_100_40', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_32_115', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_7_105', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Malvasia_60_51', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_10_51', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_145', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('bus_14_240', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_116', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_156', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_100_41', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrryyyyrrrrrrr')
traci.trafficlight.setRedYellowGreenState('231', 'yyyyrrrryyyrrrrGGGgrrGGrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'yyyyrrrryyyrrrrGGGgrrGGrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('282', 'rrryyyrrryyy')
traci.trafficlight.setRedYellowGreenState('219', 'rrrGGGgrrrrrrrrrrryyyrrryyy')
traci.trafficlight.setRedYellowGreenState('218', 'rrryyyyrrrryyyyyryyG')
traci.trafficlight.setRedYellowGreenState('219', 'rrrGGGyrrrrrrrrrrryyyrrryyy')
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGyy')
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrrrrrrGGGG')
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrrrrrryyyy')
traci.trafficlight.setRedYellowGreenState('273', 'rrryyyyrr')
traci.simulationStep()
traci.vehicle.subscribe('Silvani_11_106', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('231', 'yyyyrrrryyyrrrrGGGgrrGGrrrrrrGGGGGgGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrGGGrryyyy')
traci.simulationStep()
traci.vehicle.subscribe('Costa_50_93', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_157', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_74_117', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_52', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_100_52', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_7_107', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('XXI_Aprile_2_71', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_3_147', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrGGGgGGGgrrGGrrrrrrGGGGGgGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('282', 'GGgrrrGGgrrr')
traci.trafficlight.setRedYellowGreenState('219', 'rrrGGGyrrrrrrrrGGGrrrGGGrrr')
traci.trafficlight.setRedYellowGreenState('218', 'GGGrrrrGGGGrrrrrGrrG')
traci.trafficlight.setRedYellowGreenState('219', 'rrrGGGrrrrrGGGrGGGrrrGGGrrr')
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGrr')
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrGGGGGrrrr')
traci.trafficlight.setRedYellowGreenState('273', 'GGgrrrrGg')
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_10_148', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_40_162', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_118', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Silvani_7_108', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_160', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_70_94', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Borgo_20_42', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_149', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_119', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('XXI_Aprile_7_72', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_70_96', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Audinot_3_12', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_150', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_7_109', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_161', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_53', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Costa_50_97', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_120', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_3_151', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_163', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_11_110', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Nigrisoli_100_42', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrrrrrrrrryyy')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrGGGgGGGgrryyrrrrrrGGGGGgGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrryyyyGGGgrryyrrrrrrGGGGGgGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrryyyyGGGgrryyrrrrrryyyyyyyyyyyyrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGrrryyrr')
traci.trafficlight.setRedYellowGreenState('233', 'rryyyyrrrryy')
traci.trafficlight.setRedYellowGreenState('219', 'rrrGGGrrrrrGGGryyyrrryyyrrr')
traci.trafficlight.setRedYellowGreenState('218', 'yyyrrrryyyyrrrrryrrG')
traci.trafficlight.setRedYellowGreenState('219', 'rrryyyrrrrryyyryyyrrryyyrrr')
traci.trafficlight.setRedYellowGreenState('220', 'yyyrrrrrGGGrr')
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrryyyGGrrrr')
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrryyyyyrrrr')
traci.trafficlight.setRedYellowGreenState('273', 'yyyrrrryy')
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_8_152', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_8_98', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_121', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Silvani_7_111', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_20_43', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_40_168', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_122', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_164', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_3_153', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_100_54', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_54', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGGGGgrrrrGGGgrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrryyyyGGGgrrrrrrrrrryyyyyyyyyyyyrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrrrrrGGGgrrrrrrrrrryyyyyyyyyyyyrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrrrrrGGGgrrrrGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGGGgrrGG')
traci.trafficlight.setRedYellowGreenState('219', 'rrryyyrrrrryyyrrrrGGgrrrGGg')
traci.trafficlight.setRedYellowGreenState('218', 'rrrGGGGrrrrrrrrrrGGG')
traci.trafficlight.setRedYellowGreenState('219', 'rrrrrrrGGGGrrrrrrrGGgrrrGGg')
traci.trafficlight.setRedYellowGreenState('220', 'rrrGGGGrGGGGG')
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrrrryyrrrr')
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrrrrrrGGGG')
traci.trafficlight.setRedYellowGreenState('273', 'rrrGGGGrr')
traci.simulationStep()
traci.vehicle.subscribe('Costa_50_99', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('233', 'GGrrrrGGGgrr')
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_123', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('XXI_Aprile_7_74', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_11_112', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_165', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_40_169', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_10_155', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_12_100', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('XXI_Aprile_9_75', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Prati_Capraia_100_55', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_45_124', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_11_113', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_10_44', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_100_55', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_125', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_7_114', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_156', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_166', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Costa_50_101', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('231', 'rrrryyyyrrrrrrrGGGgrrrrGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('231', 'rrrryyyyrrrrrrrGGGgrrrryyyyyyrrrrrrrrrrrryyy')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGyyyrryy')
traci.trafficlight.setRedYellowGreenState('219', 'rrrrrrrGGGGrrrrrrryyyrrryyy')
traci.trafficlight.setRedYellowGreenState('218', 'rrrGGGGrrrrrrrrrrGGG')
traci.trafficlight.setRedYellowGreenState('219', 'rrrrrrryyyyrrrrrrryyyrrryyy')
traci.trafficlight.setRedYellowGreenState('221', 'yyyrrrryyyyyyyrrrrryyy')
traci.trafficlight.setRedYellowGreenState('220', 'rrrGGGGryyyGG')
traci.trafficlight.setRedYellowGreenState('209', 'yryGGrr')
traci.trafficlight.setRedYellowGreenState('210', 'rrryyyyyrrrrrrrrGGGG')
traci.trafficlight.setRedYellowGreenState('273', 'rrryyyyrr')
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_40_173', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('XXI_Aprile_102_76', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_167', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_22_126', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('218', 'rrrGGGGrrrrGGGGgrGGG')
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_11_157', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_7_115', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_12_102', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_3_159', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_100_56', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_56', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('231', 'GGggrrrrGGgrrrrGGGgrrrryyyyyyrrrrrrrrrrrryyy')
traci.trafficlight.setRedYellowGreenState('231', 'GGggrrrrGGgrrrrGGGgrrrrrrrrrrGGGGGgGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGrrrGGrr')
traci.trafficlight.setRedYellowGreenState('219', 'rrrrrrryyyyrrrrGGGrrrGGGrrr')
traci.trafficlight.setRedYellowGreenState('219', 'rrrGGGgrrrrrrrrGGGrrrGGGrrr')
traci.trafficlight.setRedYellowGreenState('220', 'rrrGGGGGrrrGG')
traci.trafficlight.setRedYellowGreenState('209', 'rGrGGrr')
traci.trafficlight.setRedYellowGreenState('210', 'GGgrrrrrGGgrrrrrGGGG')
traci.trafficlight.setRedYellowGreenState('273', 'GGgrrrrGg')
traci.simulationStep()
traci.vehicle.subscribe('Borgo_10_45', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_12_103', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_127', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_170', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_7_116', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('221', 'rrrGGGGrrrrrrrGGGGGrrr')
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_11_158', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_128', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Costa_200_104', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_10_161', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_172', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_160', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_7_117', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Malvasia_10_57', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_62_129', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_57', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Nigrisoli_93_45', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('XXI_Aprile_7_78', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_40_178', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_7_118', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_3_163', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_12_105', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_130', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Turati_1_8', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('231', 'GGggrrrrGGgrrrryyyyrrrrrrrrrrGGGGGgGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'yyyyrrrrGGgrrrryyyyrrrrrrrrrrGGGGGgGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'yyyyrrrrGGgrrrryyyyrrrrrrrrrryyyyyyyyyyyyrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGrrryyrr')
traci.trafficlight.setRedYellowGreenState('233', 'yyrrrryyyyrr')
traci.trafficlight.setRedYellowGreenState('219', 'rrrGGGgrrrrrrrryyyrrryyyrrr')
traci.trafficlight.setRedYellowGreenState('218', 'rrrGGGGrrrryyyyyrGGG')
traci.trafficlight.setRedYellowGreenState('219', 'rrrGGGyrrrrrrrryyyrrryyyrrr')
traci.trafficlight.setRedYellowGreenState('221', 'rrryyyyrrrrrrryyyyyrrr')
traci.trafficlight.setRedYellowGreenState('220', 'rrrGGGGyrrrGG')
traci.trafficlight.setRedYellowGreenState('220', 'rrryyyyyrrryy')
traci.trafficlight.setRedYellowGreenState('209', 'ryrGGrr')
traci.trafficlight.setRedYellowGreenState('209', 'ryrGGrr')
traci.trafficlight.setRedYellowGreenState('210', 'yyyrrrrryyyrrrrrGGGG')
traci.trafficlight.setRedYellowGreenState('210', 'yyyrrrrryyyrrrrryyyy')
traci.trafficlight.setRedYellowGreenState('273', 'yyyrrrryy')
traci.simulationStep()
traci.vehicle.subscribe('Silvani_11_119', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('209', 'ryrGGGg')
traci.simulationStep()
traci.vehicle.subscribe('XXI_Aprile_2_79', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_73_131', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_180', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_12_106', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_3_165', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_58', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_80_181', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('231', 'yyyyrrrrGGgrrrrrrrrGGrrrrrrrryyyyyyyyyyyyrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrrrrrGGgrrrrrrrrGGrrrrrrrryyyyyyyyyyyyrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrrrrrGGgrrrrrrrrGGrrGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGGGgrrGG')
traci.trafficlight.setRedYellowGreenState('219', 'rrrGGGyrrrrrrrrrrrGGgrrrGGg')
traci.trafficlight.setRedYellowGreenState('218', 'rrrGGGGrrrrrrrrrrGGG')
traci.trafficlight.setRedYellowGreenState('219', 'rrrGGGrrrrrGGGrrrrGGgrrrGGg')
traci.trafficlight.setRedYellowGreenState('220', 'rrryyyyrGGGyy')
traci.trafficlight.setRedYellowGreenState('220', 'GGGrrrrrGGGrr')
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGGg')
traci.trafficlight.setRedYellowGreenState('210', 'yyyrrrrryyyrrrGGrrrr')
traci.trafficlight.setRedYellowGreenState('273', 'rrrGGGGrr')
traci.simulationStep()
traci.vehicle.subscribe('Pertini_30_132', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_11_120', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('233', 'rrGGGgrrrrGG')
traci.trafficlight.setRedYellowGreenState('221', 'GGGrrrrGGGGGGGrrrrrGGG')
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_182', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_1_107', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrrrrGGrrrr')
traci.simulationStep()
traci.vehicle.subscribe('Borgo_20_47', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_7_121', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_11_167', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_133', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_183', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_50_109', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_11_122', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_59', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_100_59', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_134', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_11_169', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGyyyyrrrrGGGgrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrrrrrGGgrrrrrrrrGGrrGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('233', 'rryyyyrrrryy')
traci.trafficlight.setRedYellowGreenState('218', 'rrrGGGGrrrrrrrrrrGGG')
traci.trafficlight.setRedYellowGreenState('219', 'rrryyyrrrrryyyrrrrGGgrrrGGg')
traci.trafficlight.setRedYellowGreenState('221', 'yyyrrrryyyyyyyrrrrryyy')
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGyy')
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrrrrGGrrrr')
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrrrryyrrrr')
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_186', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_11_123', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_12_110', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_135', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Nigrisoli_40_47', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('231', 'GGggrrrrGGgrrrrrrrrGGrrGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('218', 'rrrGGGGrrrrGGGGgrGGG')
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrGGGyyrrrr')
traci.simulationStep()
traci.vehicle.subscribe('Prati_Capraia_100_60', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_8_170', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_100_60', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_20_48', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_10_136', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_11_124', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrrrrrGGGgrrr')
traci.trafficlight.setRedYellowGreenState('219', 'rrrrrrrGGGGrrrrrrrGGgrrrGGg')
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGrr')
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrGGGrrGGGG')
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_3_171', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_1_111', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('233', 'GGrrrrGGGgrr')
traci.trafficlight.setRedYellowGreenState('221', 'rrrGGGGrrrrrrrGGGGGrrr')
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_8_172', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_7_125', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_10_137', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('XXI_Aprile_1_83', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_138', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_61', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_50_112', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Nigrisoli_90_48', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_60_61', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_10_173', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Silvani_11_126', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_20_49', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_139', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_8_174', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Costa_12_113', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_11_127', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrrrrrGGGgrrr')
traci.trafficlight.setRedYellowGreenState('231', 'GGggrrrrGGgrrrrrrrryyrrGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('231', 'yyyyrrrryyyrrrrrrrryyrrGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGyyyrryy')
traci.trafficlight.setRedYellowGreenState('219', 'rrrrrrrGGGGrrrrrrryyyrrryyy')
traci.trafficlight.setRedYellowGreenState('219', 'rrrrrrryyyyrrrrrrryyyrrryyy')
traci.trafficlight.setRedYellowGreenState('221', 'rrryyyyrrrrrrryyyyyrrr')
traci.trafficlight.setRedYellowGreenState('220', 'yyyrrrrrGGGrr')
traci.trafficlight.setRedYellowGreenState('209', 'yryGGrr')
traci.trafficlight.setRedYellowGreenState('209', 'yryGGrr')
traci.trafficlight.setRedYellowGreenState('273', 'rrryyyyrr')
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_11_175', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_192', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('bus_3_300', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGGGGgrrrrGGGgrrr')
traci.trafficlight.setRedYellowGreenState('209', 'yryGGGg')
traci.simulationStep()
traci.vehicle.subscribe('Prati_Capraia_100_62', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_140', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_100_62', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('XXI_Aprile_7_85', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_1_114', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Nigrisoli_40_49', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_1_128', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('231', 'yyyyrrrryyyrrrrGGGgrrGGGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrGGGgGGGgrrGGGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGrrrGGrr')
traci.trafficlight.setRedYellowGreenState('219', 'rrrrrrryyyyrrrrGGGrrrGGGrrr')
traci.trafficlight.setRedYellowGreenState('219', 'GrrrrrrrrrrGGGgGGGrrrGGGrrr')
traci.trafficlight.setRedYellowGreenState('220', 'rrrGGGGrGGGGG')
traci.trafficlight.setRedYellowGreenState('209', 'rGrGGGg')
traci.trafficlight.setRedYellowGreenState('273', 'GGgrrrrrr')
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_141', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_10_177', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_193', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_176', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('221', 'GGGrrrrGGGGGGGrrrrrGGG')
traci.simulationStep()
traci.vehicle.subscribe('Silvani_3_129', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_100_50', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_70_195', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('XXI_Aprile_1_86', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_178', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_8_115', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_142', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Malvasia_10_63', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_196', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_63', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_7_130', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_40_197', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_10_143', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Costa_12_116', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Nigrisoli_40_50', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_179', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_198', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_144', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_7_131', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGyyyyrrrryyyyrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrGGGgyyyyrryyGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrGGGgyyyyrryyyyyyyyrrrrrrrrrrrryyy')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGrrryyrr')
traci.trafficlight.setRedYellowGreenState('233', 'yyrrrryyyyrr')
traci.trafficlight.setRedYellowGreenState('218', 'rrrGGGGrrrryyyyyrGGG')
traci.trafficlight.setRedYellowGreenState('219', 'yrrrrrrrrrrGGGyGGGrrrGGGrrr')
traci.trafficlight.setRedYellowGreenState('221', 'yyyrrrryyyyyyyrrrrryyy')
traci.trafficlight.setRedYellowGreenState('220', 'rrrGGGGryyyGG')
traci.trafficlight.setRedYellowGreenState('209', 'ryrGGGg')
traci.trafficlight.setRedYellowGreenState('209', 'ryrGGyy')
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrGGGrryyyy')
traci.trafficlight.setRedYellowGreenState('273', 'yyyrrrrrr')
traci.simulationStep()
traci.vehicle.subscribe('Borgo_40_51', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_70_117', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Prati_Capraia_100_64', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_60_64', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_199', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_145', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_181', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Silvani_11_132', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_40_200', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrGGGgrrrrGGrryyyyyyrrrrrrrrrrrryyy')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrGGGgrrrrGGrrrrrrrrGGGGGgGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGGGgrrGG')
traci.trafficlight.setRedYellowGreenState('218', 'rrrGGGGrrrrrrrrrrGGG')
traci.trafficlight.setRedYellowGreenState('219', 'rrrGGGrrrrrGGGrGGGrrrGGGrrr')
traci.trafficlight.setRedYellowGreenState('220', 'rrrGGGGGrrrGG')
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGyy')
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGrr')
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrGGGGGrrrr')
traci.trafficlight.setRedYellowGreenState('273', 'rrrGGGGrr')
traci.simulationStep()
traci.vehicle.subscribe('Costa_12_118', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_146', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_7_133', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_183', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('233', 'rrGGGgrrrrGG')
traci.trafficlight.setRedYellowGreenState('221', 'rrrGGGGrrrrrrrGGGGGrrr')
traci.simulationStep()
traci.vehicle.subscribe('Nigrisoli_10_51', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_52_201', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Turati_1_9', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_202', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Costa_1_119', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_100_52', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_65', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_11_134', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('XXI_Aprile_5_89', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_100_65', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_147', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_11_184', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_30_203', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_148', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_204', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_7_135', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_8_186', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Costa_1_120', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrrrrrrrrryyy')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrGGGgrrrryyrrrrrrrrGGGGGgGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrryyyyrrryyyyrrrryyrrrrrrrrGGGGGgGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('219', 'rrryyyrrrrryyyrGGGrrrGGGrrr')
traci.trafficlight.setRedYellowGreenState('221', 'rrryyyyrrrrrrryyyyyrrr')
traci.trafficlight.setRedYellowGreenState('220', 'rrryyyyGrrryy')
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGrr')
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrryyyGGrrrr')
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrryyyyyrrrr')
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_149', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_11_136', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('bus_4_320', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_187', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGGg')
traci.simulationStep()
traci.vehicle.subscribe('Malvasia_10_66', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_66', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_44_150', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_100_53', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_8_188', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_50_121', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_206', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrGGggrrrrrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrryyyyrrryyyyGGGgrrrrrrrrrrGGGGGgGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'GGggrrrrGGgrrrrGGGgrrrrrrrrrrGGGGGgGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('219', 'GGGrrrrGGrrrrrrGGGrrrGGGrrr')
traci.trafficlight.setRedYellowGreenState('220', 'GGGrrrrGrrrrr')
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrrrryyrrrr')
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrrrrrrGGGG')
traci.simulationStep()
traci.vehicle.subscribe('Silvani_11_137', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('XXI_Aprile_102_91', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('221', 'GGGrrrrGGGGGGGrrrrrGGG')
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_10_189', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_151', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Costa_12_122', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_67', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_7_138', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_92_67', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_152', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_80_209', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Nigrisoli_40_53', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_7_139', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_8_191', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Borgo_40_54', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_50_123', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_153', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_211', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrryyyyrrrrrrr')
traci.trafficlight.setRedYellowGreenState('231', 'GGggrrrrGGgrrrrGGGgrrrrrrrrrrGGGGGgGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'GGggrrrrGGgrrrrGGGgrrrrrrrrrryyyyyyGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGyyyrryy')
traci.trafficlight.setRedYellowGreenState('218', 'rrrGGGGrrrrrrrrrrGGG')
traci.trafficlight.setRedYellowGreenState('219', 'yyyrrrrGGrrrrrrGGGrrrGGGrrr')
traci.trafficlight.setRedYellowGreenState('220', 'GGGrrrryrrrrr')
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGyy')
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrrrrrryyyy')
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_8_192', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('XXI_Aprile_1_93', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_92_68', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_10_193', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_50_124', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_10_68', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_1_140', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('231', 'GGggrrrrGGgrrrrGGGgrrGGrrrrrryyyyyyGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('218', 'rrrGGGGrrrrGGGGgrGGG')
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_154', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_10_194', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_80_213', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_7_141', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGGGGgrrrrGGGgrrr')
traci.trafficlight.setRedYellowGreenState('231', 'GGggrrrrGGgrrrrGGGgrrGGrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGrrrGGrr')
traci.trafficlight.setRedYellowGreenState('219', 'rrrrrrrGGGGrrrrGGGrrrGGGrrr')
traci.trafficlight.setRedYellowGreenState('220', 'GGGrrrrrGGGrr')
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGrr')
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrrrrGGrrrr')
traci.simulationStep()
traci.vehicle.subscribe('Costa_12_125', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_155', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('XXI_Aprile_1_94', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_20_55', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_11_142', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_214', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_10_195', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Prati_Capraia_100_69', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_100_69', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_156', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_215', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_196', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_700_126', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Silvani_11_143', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_2_197', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_157', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_158', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_7_144', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_40_217', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_8_128', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_8_198', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGyyyyrrrryyyyrrr')
traci.trafficlight.setRedYellowGreenState('231', 'GGggrrrrGGgrrrrGGGgrryyrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'yyyyrrrryyyrrrrGGGgrryyrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'yyyyrrrryyyrrrrGGGgrryyrrrrrrrrrrrryyyyyyrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGrrryyrr')
traci.trafficlight.setRedYellowGreenState('282', 'yyyrrryyyrrr')
traci.trafficlight.setRedYellowGreenState('219', 'rrrrrrrGGGGrrrryyyrrryyyrrr')
traci.trafficlight.setRedYellowGreenState('218', 'rrrGGGGrrrryyyyyrGGG')
traci.trafficlight.setRedYellowGreenState('219', 'rrrrrrryyyyrrrryyyrrryyyrrr')
traci.trafficlight.setRedYellowGreenState('220', 'GGGrrrrryyyrr')
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGrr')
traci.trafficlight.setRedYellowGreenState('210', 'rrryyyyyrrrrrrGGrrrr')
traci.trafficlight.setRedYellowGreenState('273', 'rrryyyyrr')
traci.simulationStep()
traci.vehicle.subscribe('Malvasia_100_70', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_20_56', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_70', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGGg')
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_159', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_10_199', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_10_200', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_7_145', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_40_219', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_50_129', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Audinot_3_16', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('231', 'yyyyrrrryyyrrrrGGGgrrrrrrrrrrrrrrrryyyyyyrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrrrrrGGGgrrrrrrrrrrrrrrrryyyyyyrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrrrrrGGGgrrrrGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGGGgrrGG')
traci.trafficlight.setRedYellowGreenState('282', 'rrrGGgrrrGGg')
traci.trafficlight.setRedYellowGreenState('219', 'rrrrrrryyyyrrrrrrrGGgrrrGGg')
traci.trafficlight.setRedYellowGreenState('218', 'rrrGGGGrrrrrrrrrrGGG')
traci.trafficlight.setRedYellowGreenState('219', 'rrrGGGrrrrrGGGrrrrGGgrrrGGg')
traci.trafficlight.setRedYellowGreenState('220', 'GGGrrrrGrrrrr')
traci.trafficlight.setRedYellowGreenState('210', 'GGgrrrrrGGgrrrGGrrrr')
traci.trafficlight.setRedYellowGreenState('273', 'GGgrrrrGg')
traci.simulationStep()
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_10_201', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_160', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Costa_50_130', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_71', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_40_220', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_70_71', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_11_146', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_221', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_10_202', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_40_57', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_161', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_7_147', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_80_222', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_162', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_50_131', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_40_223', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('XXI_Aprile_113_98', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_11_204', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_7_148', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Turati_10_10', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_8_203', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrrrrrrrrryyy')
traci.trafficlight.setRedYellowGreenState('231', 'rrrryyyyrrrrrrrGGGgrrrrGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('231', 'rrrryyyyrrrrrrrGGGgrrrryyyyyyrrrrrrrrrrrryyy')
traci.trafficlight.setRedYellowGreenState('233', 'rryyyyrrrryy')
traci.trafficlight.setRedYellowGreenState('282', 'rrryyyrrryyy')
traci.trafficlight.setRedYellowGreenState('219', 'rrrGGGrrrrrGGGrrrryyyrrryyy')
traci.trafficlight.setRedYellowGreenState('218', 'rrrGGGGrrrrrrrrrrGGG')
traci.trafficlight.setRedYellowGreenState('220', 'yyyrrrrGrrrrr')
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGyy')
traci.trafficlight.setRedYellowGreenState('273', 'GGgrrrryy')
traci.simulationStep()
traci.vehicle.subscribe('Prati_Capraia_100_72', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_163', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_70_72', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('bus_8_350', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('218', 'rrrGGGGrrrrGGGGgrGGG')
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_40_224', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_225', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_11_149', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_50_132', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('XXI_Aprile_1_99', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_100_58', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_9_205', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_30_164', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrGGggrrrrrrr')
traci.trafficlight.setRedYellowGreenState('231', 'GGggrrrrGGgrrrrGGGgrrrryyyyyyrrrrrrrrrrrryyy')
traci.trafficlight.setRedYellowGreenState('231', 'GGggrrrrGGgrrrrGGGgrrrrrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('282', 'GGgrrrGGgrrr')
traci.trafficlight.setRedYellowGreenState('219', 'rrrGGGrrrrrGGGrGGGrrrGGGrrr')
traci.trafficlight.setRedYellowGreenState('220', 'rrrGGGGGrrrGG')
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGrr')
traci.trafficlight.setRedYellowGreenState('273', 'GGgrrrrrr')
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_226', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('233', 'GGrrrrGGGgrr')
traci.simulationStep()
traci.vehicle.subscribe('Silvani_11_150', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_165', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_50_227', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_50_133', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_207', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Prati_Capraia_100_73', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_94_73', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_8_206', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_166', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_1_134', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_11_208', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_11_151', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_8_209', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_20_59', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Costa_12_135', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_167', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_50_230', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_11_152', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrryyyyrrrrrrr')
traci.trafficlight.setRedYellowGreenState('231', 'GGggrrrrGGgrrrryyyyrrrrrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'yyyyrrrryyyrrrryyyyrrrrrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('282', 'yyyrrryyyrrr')
traci.trafficlight.setRedYellowGreenState('219', 'rrrGGGrrrrrGGGryyyrrryyyrrr')
traci.trafficlight.setRedYellowGreenState('218', 'rrryyyyrrrryyyyyryyG')
traci.trafficlight.setRedYellowGreenState('219', 'rrryyyrrrrryyyryyyrrryyyrrr')
traci.trafficlight.setRedYellowGreenState('221', 'yyyrrrryyyyyyyrrrrryyy')
traci.trafficlight.setRedYellowGreenState('220', 'rrryyyyGrrryy')
traci.trafficlight.setRedYellowGreenState('210', 'yyyrrrrryyyrrrGGrrrr')
traci.trafficlight.setRedYellowGreenState('273', 'yyyrrrrrr')
traci.simulationStep()
traci.vehicle.subscribe('Prati_Capraia_100_74', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_7_153', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_8_210', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_60_74', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_80_231', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_62_168', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_211', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Costa_1_136', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('231', 'yyyyrrrryyyrrrrrrrrGGrrrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrrrrrrrrrGGrrrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('282', 'rrrGGgrrrGGg')
traci.trafficlight.setRedYellowGreenState('219', 'rrryyyrrrrryyyrrrrGGgrrrGGg')
traci.trafficlight.setRedYellowGreenState('218', 'GGGrrrrGGGGrrrrrGrrG')
traci.trafficlight.setRedYellowGreenState('219', 'GGGrrrrGGrrrrrrrrrGGgrrrGGg')
traci.trafficlight.setRedYellowGreenState('220', 'GGGrrrrGrrrrr')
traci.trafficlight.setRedYellowGreenState('273', 'rrrGGGGrr')
traci.simulationStep()
traci.vehicle.subscribe('Silvani_7_154', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_169', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Certosa_9_10', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('221', 'rrrGGGGrrrrrrrGGGGGrrr')
traci.simulationStep()
traci.vehicle.subscribe('bus_140_360', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_100_60', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_40_233', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_10_75', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_212', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_75', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Audinot_3_17', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrrrrGGrrrr')
traci.simulationStep()
traci.vehicle.subscribe('Silvani_7_155', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_8_213', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_22_170', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_234', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_70_138', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('XXI_Aprile_7_103', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_214', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_22_171', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_50_139', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_52_235', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Silvani_7_156', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_236', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_8_215', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_172', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_76', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_100_76', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrrrrrrrrryyrrrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrrrrrrrrryyrrrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrrrrrrrrryyrrrrrrrrrrrrrryyyyyyrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGyyyrryy')
traci.trafficlight.setRedYellowGreenState('233', 'yyrrrryyyyrr')
traci.trafficlight.setRedYellowGreenState('282', 'rrryyyrrryyy')
traci.trafficlight.setRedYellowGreenState('219', 'GGGrrrrGGrrrrrrrrryyyrrryyy')
traci.trafficlight.setRedYellowGreenState('218', 'yyyrrrryyyyrrrrryrrG')
traci.trafficlight.setRedYellowGreenState('221', 'rrryyyyrrrrrrryyyyyrrr')
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGrr')
traci.trafficlight.setRedYellowGreenState('210', 'rrryyyyyrrrrrrGGrrrr')
traci.trafficlight.setRedYellowGreenState('210', 'rrryyyyyrrrrrryyrrrr')
traci.trafficlight.setRedYellowGreenState('273', 'rrryyyyrr')
traci.simulationStep()
traci.vehicle.subscribe('Silvani_7_157', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_20_61', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_70_140', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrGGGgrrrryyrrrrrrrrrrrrrryyyyyyrrr')
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGGg')
traci.simulationStep()
traci.simulationStep()
traci.vehicle.subscribe('Silvani_11_158', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_200_142', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrGGGgGGGgrrGGrrrrrrrrrrrryyyyyyrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrGGGgGGGgrrGGGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGrrrGGrr')
traci.trafficlight.setRedYellowGreenState('282', 'GGgrrrGGgrrr')
traci.trafficlight.setRedYellowGreenState('219', 'GGGrrrrGGrrrrrrGGGrrrGGGrrr')
traci.trafficlight.setRedYellowGreenState('218', 'rrrGGGGrrrrrrrrrrGGG')
traci.trafficlight.setRedYellowGreenState('210', 'GGgrrrrrGGgrrryyrrrr')
traci.trafficlight.setRedYellowGreenState('210', 'GGgrrrrrGGgrrrrrGGGG')
traci.trafficlight.setRedYellowGreenState('273', 'GGgrrrrrr')
traci.simulationStep()
traci.vehicle.subscribe('XXI_Aprile_2_105', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('233', 'rrGGGgrrrrGG')
traci.trafficlight.setRedYellowGreenState('221', 'GGGrrrrGGGGGGGrrrrrGGG')
traci.simulationStep()
traci.vehicle.subscribe('Malvasia_95_77', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_10_77', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_174', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Costa_1_143', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_7_159', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_10_219', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_40_240', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_175', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('XXI_Aprile_2_106', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_10_62', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_11_160', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_8_221', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_220', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_50_144', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_243', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_78', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_100_78', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_7_161', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrrrrrrrrryyy')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrGGGgGGGgrryyGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrGGGgGGGgrryyyyyyyyrrrrrrrrrrrryyy')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGrrryyrr')
traci.trafficlight.setRedYellowGreenState('219', 'GGGrrrrGGrrrrrryyyrrryyyrrr')
traci.trafficlight.setRedYellowGreenState('220', 'yyyrrrrGrrrrr')
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGyy')
traci.trafficlight.setRedYellowGreenState('210', 'yyyrrrrryyyrrrrrGGGG')
traci.trafficlight.setRedYellowGreenState('273', 'yyyrrrrrr')
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_177', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('XXI_Aprile_7_107', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_12_222', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Costa_50_145', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_244', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Silvani_11_162', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_223', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_178', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGGGGgrrrrGGGgrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrGGGgGGGgrrrryyyyyyrrrrrrrrrrrryyy')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrGGGgGGGgrrrrrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGGGgrrGG')
traci.trafficlight.setRedYellowGreenState('219', 'GGGrrrrGGrrrrrrrrrGGgrrrGGg')
traci.trafficlight.setRedYellowGreenState('220', 'rrrGGGGGrrrGG')
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGrr')
traci.trafficlight.setRedYellowGreenState('273', 'rrrGGGGrr')
traci.simulationStep()
traci.vehicle.subscribe('Borgo_20_63', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Prati_Capraia_100_79', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_179', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('XXI_Aprile_9_108', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_70_146', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Turati_10_11', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_11_163', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_245', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_70_79', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrrrrrrGGGG')
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_10_225', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Audinot_3_18', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Silvani_7_164', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Costa_1_147', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_226', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_247', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.simulationStep()
traci.vehicle.subscribe('Malvasia_94_80', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_7_165', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_200_148', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_181', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_20_64', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_80', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrGGGgGGGgrrrrrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrryyyyrrryyyyGGGgrrrrrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGyyyrryy')
traci.trafficlight.setRedYellowGreenState('233', 'rryyyyrrrryy')
traci.trafficlight.setRedYellowGreenState('219', 'GGGrrrrGGrrrrrrrrryyyrrryyy')
traci.trafficlight.setRedYellowGreenState('219', 'yyyrrrrGGrrrrrrrrryyyrrryyy')
traci.trafficlight.setRedYellowGreenState('221', 'yyyrrrryyyyyyyrrrrryyy')
traci.trafficlight.setRedYellowGreenState('220', 'rrryyyyGrrryy')
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGrr')
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrrrrrrGGGG')
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_249', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_227', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('231', 'rrrryyyyrrryyyyGGGgrrGGrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGGg')
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrGGGrrGGGG')
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_182', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_11_166', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_11_228', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_50_251', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_8_229', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_250', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_1_149', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('231', 'GGggrrrrGGgrrrrGGGgrrGGrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGrrrGGrr')
traci.trafficlight.setRedYellowGreenState('219', 'yyyrrrrGGrrrrrrGGGrrrGGGrrr')
traci.trafficlight.setRedYellowGreenState('219', 'rrrrrrrGGGGrrrrGGGrrrGGGrrr')
traci.trafficlight.setRedYellowGreenState('220', 'GGGrrrrGrrrrr')
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_80_252', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_30_183', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('233', 'GGrrrrGGGgrr')
traci.trafficlight.setRedYellowGreenState('221', 'rrrGGGGrrrrrrrGGGGGrrr')
traci.simulationStep()
traci.vehicle.subscribe('Malvasia_62_81', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_81', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_50_150', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_62_184', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_50_253', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Nigrisoli_90_64', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_3_167', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_100_65', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_11_230', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_7_168', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_185', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_254', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_10_232', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_1_151', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Malvasia_62_82', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_11_169', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('XXI_Aprile_12_112', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_82', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_255', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_231', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('231', 'GGggrrrrGGgrrrrGGGgrryyrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'yyyyrrrrGGgrrrrGGGgrryyrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'yyyyrrrrGGgrrrrGGGgrryyrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('233', 'yyrrrryyyyrr')
traci.trafficlight.setRedYellowGreenState('219', 'rrrrrrrGGGGrrrryyyrrryyyrrr')
traci.trafficlight.setRedYellowGreenState('218', 'rrrGGGGrrrrrrrrrrGGG')
traci.trafficlight.setRedYellowGreenState('219', 'rrrrrrrGGyyrrrryyyrrryyyrrr')
traci.trafficlight.setRedYellowGreenState('221', 'rrryyyyrrrrrrryyyyyrrr')
traci.trafficlight.setRedYellowGreenState('220', 'yyyrrrrGrrrrr')
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGyy')
traci.trafficlight.setRedYellowGreenState('210', 'rrryyyyyrrryyyrrGGGG')
traci.trafficlight.setRedYellowGreenState('210', 'rrryyyyyrrryyyrryyyy')
traci.simulationStep()
traci.vehicle.subscribe('Costa_70_152', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_8_233', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_32_186', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('bus_7_400', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Certosa_6_11', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('231', 'yyyyrrrrGGgrrrrGGGgrryyrrrrrrGGGGGgGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('218', 'rrrGGGGrrrrGGGGgrGGG')
traci.simulationStep()
traci.vehicle.subscribe('Nigrisoli_10_65', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_20_66', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('XXI_Aprile_113_113', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_7_170', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_11_234', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_256', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_187', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('231', 'yyyyrrrrGGgrrrrGGGgrrrrrrrrrrGGGGGgGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrrrrrGGgrrrrGGGgrrrrrrrrrrGGGGGgGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('219', 'rrrrrrrGGyyrrrrrrrGGgrrrGGg')
traci.trafficlight.setRedYellowGreenState('219', 'GGGrrrrGGrrrrrrrrrGGgrrrGGg')
traci.trafficlight.setRedYellowGreenState('220', 'rrrGGGGGrrrGG')
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGrr')
traci.trafficlight.setRedYellowGreenState('210', 'GGgrrrrrGGgrrrrryyyy')
traci.trafficlight.setRedYellowGreenState('210', 'GGgrrrrrGGgrrrGGrrrr')
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_40_258', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_200_153', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_83', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('233', 'rrGGGgrrrrGG')
traci.trafficlight.setRedYellowGreenState('221', 'GGGrrrrGGGGGGGrrrrrGGG')
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_11_235', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Silvani_11_172', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_257', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('XXI_Aprile_1_114', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_12_154', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_189', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_8_237', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_80_261', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_236', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_20_67', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Nigrisoli_50_66', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Costa_70_155', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_60_84', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_84', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_11_173', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_62_190', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('XXI_Aprile_1_115', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_262', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGyyyyrrrrGGGgrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrrrrrGGgrrrryyyyrrrrrrrrrrGGGGGgGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrrrrryyyrrrryyyyrrrrrrrrrrGGGGGgGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrrrrryyyrrrryyyyrrrrrrrrrryyyyyyGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('233', 'rryyyyrrrryy')
traci.trafficlight.setRedYellowGreenState('282', 'yyyrrryyyrrr')
traci.trafficlight.setRedYellowGreenState('218', 'rrrGGGGrrrryyyyyrGGG')
traci.trafficlight.setRedYellowGreenState('221', 'yyyrrrryyyyyyyrrrrryyy')
traci.trafficlight.setRedYellowGreenState('209', 'yryGGrr')
traci.trafficlight.setRedYellowGreenState('209', 'yryGGrr')
traci.trafficlight.setRedYellowGreenState('210', 'yyyrrrrryyyrrrGGrrrr')
traci.trafficlight.setRedYellowGreenState('210', 'yyyrrrrryyyrrryyrrrr')
traci.trafficlight.setRedYellowGreenState('273', 'rrryyyyrr')
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_191', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_238', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('209', 'yryGGGg')
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_40_263', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_11_174', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_8_156', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_73_192', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_7_175', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrrrrrGGGgrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrrrrryyyrrrrrrrrGGrrrrrrrryyyyyyGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrGGGgrrrrGGrrrrrrrryyyyyyGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrGGGgrrrrGGrrrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('282', 'rrrGGgrrrGGg')
traci.trafficlight.setRedYellowGreenState('218', 'rrrGGGGrrrrrrrrrrGGG')
traci.trafficlight.setRedYellowGreenState('209', 'rGrGGGg')
traci.trafficlight.setRedYellowGreenState('210', 'yyyrrrrryyyrrrrrGGGG')
traci.trafficlight.setRedYellowGreenState('273', 'GGgrrrrGg')
traci.simulationStep()
traci.vehicle.subscribe('Borgo_100_68', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_85', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Nigrisoli_10_67', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_100_85', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_239', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_50_264', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('233', 'GGrrrrGGGgrr')
traci.trafficlight.setRedYellowGreenState('221', 'rrrGGGGrrrrrrrGGGGGrrr')
traci.simulationStep()
traci.vehicle.subscribe('Costa_50_157', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_265', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrrrrrrGGGG')
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_193', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_7_176', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_11_240', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('XXI_Aprile_7_117', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_22_194', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_266', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_50_158', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_11_177', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Malvasia_94_86', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_86', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_268', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_195', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Turati_1_12', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Nigrisoli_90_68', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_1_178', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_100_69', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_241', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrrrrryyyyrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrGGGgrrrryyrrrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrryyyyrrryyyyrrrryyrrrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrryyyyrrryyyyrrrryyrrrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGrrryyrr')
traci.trafficlight.setRedYellowGreenState('233', 'yyrrrryyyyrr')
traci.trafficlight.setRedYellowGreenState('218', 'rrryyyyrrrrrrrrrryyG')
traci.trafficlight.setRedYellowGreenState('221', 'rrryyyyrrrrrrryyyyyrrr')
traci.trafficlight.setRedYellowGreenState('209', 'ryrGGGg')
traci.trafficlight.setRedYellowGreenState('209', 'ryrGGyy')
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrrrrrrGGGG')
traci.trafficlight.setRedYellowGreenState('273', 'yyyrrrryy')
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_2_245', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_50_159', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('231', 'rrrryyyyrrryyyyrrrryyrrrrrrrrGGGGGgGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrGGGrrGGGG')
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_196', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_242', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_270', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_11_179', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_50_160', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrGGggrrrrrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrryyyyrrryyyyGGGgrrGGrrrrrrGGGGGgGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'GGggrrrrGGgrrrrGGGgrrGGrrrrrrGGGGGgGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGGGgrrGG')
traci.trafficlight.setRedYellowGreenState('218', 'GGGrrrrGGGGrrrrrGrrG')
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGyy')
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGrr')
traci.trafficlight.setRedYellowGreenState('273', 'rrrGGGGrr')
traci.simulationStep()
traci.vehicle.subscribe('Malvasia_95_87', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('XXI_Aprile_7_119', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_22_197', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_87', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('233', 'rrGGGgrrrrGG')
traci.trafficlight.setRedYellowGreenState('221', 'GGGrrrrGGGGGGGrrrrrGGG')
traci.simulationStep()
traci.vehicle.subscribe('Silvani_7_180', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_243', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Borgo_100_70', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_12_161', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_271', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_198', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_3_249', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_273', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_244', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_7_181', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('XXI_Aprile_7_120', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Costa_70_162', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_100_88', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Audinot_10_20', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_88', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_274', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrryyyyrrrrrrr')
traci.trafficlight.setRedYellowGreenState('231', 'yyyyrrrryyyrrrrGGGgrrGGrrrrrrGGGGGgGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'yyyyrrrryyyrrrrGGGgrrGGrrrrrryyyyyyyyyyyyrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGyyyrryy')
traci.trafficlight.setRedYellowGreenState('219', 'GGGrrrrGGrrrrrrrrryyyrrryyy')
traci.trafficlight.setRedYellowGreenState('218', 'yyyrrrryyyyrrrrryrrG')
traci.trafficlight.setRedYellowGreenState('220', 'rrryyyyGrrryy')
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGrr')
traci.trafficlight.setRedYellowGreenState('210', 'rrryyyyyrrryyyrrGGGG')
traci.trafficlight.setRedYellowGreenState('210', 'rrryyyyyrrryyyrryyyy')
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_200', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_10_251', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_12_163', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_247', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGGg')
traci.simulationStep()
traci.vehicle.subscribe('Borgo_100_71', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_276', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_89', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_201', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_70_89', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrrrrrGGGgrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrrrrrGGGgrrGGrrrrrryyyyyyyyyyyyrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrrrrrGGGgrrGGGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGrrrGGrr')
traci.trafficlight.setRedYellowGreenState('219', 'GGGrrrrGGrrrrrrGGGrrrGGGrrr')
traci.trafficlight.setRedYellowGreenState('218', 'rrrGGGGrrrrrrrrrrGGG')
traci.trafficlight.setRedYellowGreenState('220', 'GGGrrrrGrrrrr')
traci.trafficlight.setRedYellowGreenState('210', 'GGgrrrrrGGgrrrrryyyy')
traci.trafficlight.setRedYellowGreenState('210', 'GGgrrrrrGGgrrrGGrrrr')
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_3_253', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_8_252', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_12_164', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_248', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_62_202', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_277', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Costa_1_165', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_3_254', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Silvani_7_185', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_70_279', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_23_203', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Certosa_9_12', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Borgo_100_72', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_90', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_92_90', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_255', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_40_280', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_204', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_8_256', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('XXI_Aprile_5_123', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Costa_8_167', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_281', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrrrrryyyyrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrryyyyrrrrrrrGGGgrrGGGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('231', 'rrrryyyyrrrrrrrGGGgrrGGyyyyyyrrrrrrrrrrrryyy')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGrrryyrr')
traci.trafficlight.setRedYellowGreenState('218', 'rrrGGGGrrrrrrrrrrGGG')
traci.trafficlight.setRedYellowGreenState('220', 'GGGrrrryrrrrr')
traci.trafficlight.setRedYellowGreenState('220', 'yyyrrrryrrrrr')
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGyy')
traci.trafficlight.setRedYellowGreenState('210', 'yyyrrrrryyyrrrGGrrrr')
traci.trafficlight.setRedYellowGreenState('273', 'rrryyyyrr')
traci.simulationStep()
traci.vehicle.subscribe('Pertini_22_205', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_257', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('218', 'rrrGGGGrrrrGGGGgrGGG')
traci.simulationStep()
traci.vehicle.subscribe('Costa_50_168', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Prati_Capraia_100_91', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('XXI_Aprile_7_124', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_60_91', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_282', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_10_258', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('231', 'GGggrrrrGGgrrrrGGGgrrGGyyyyyyrrrrrrrrrrrryyy')
traci.trafficlight.setRedYellowGreenState('231', 'GGggrrrrGGgrrrrGGGgrrGGrrrrrrGGGGGgGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGGGgrrGG')
traci.trafficlight.setRedYellowGreenState('220', 'yyyrrrrrGGGrr')
traci.trafficlight.setRedYellowGreenState('220', 'rrrGGGGrGGGGG')
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGrr')
traci.trafficlight.setRedYellowGreenState('273', 'GGgrrrrGg')
traci.simulationStep()
traci.vehicle.subscribe('Silvani_7_188', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_40_284', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_206', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_100_73', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('XXI_Aprile_7_125', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Nigrisoli_40_72', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_10_259', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_50_169', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrGGGGGrrrr')
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_285', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_7_189', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_50_207', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Malvasia_100_92', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_22_208', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_10_92', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_260', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_50_170', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_286', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_3_261', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('XXI_Aprile_12_126', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_40_287', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_209', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_1_171', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrrrrrrrrryyy')
traci.trafficlight.setRedYellowGreenState('231', 'GGggrrrrGGgrrrrGGGgrrGGrrrrrryyyyyyGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGyyyrryy')
traci.trafficlight.setRedYellowGreenState('233', 'rryyyyrrrryy')
traci.trafficlight.setRedYellowGreenState('218', 'rrrGGGGrrrryyyyyrGGG')
traci.trafficlight.setRedYellowGreenState('220', 'rrrGGGGryyyGG')
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGrr')
traci.trafficlight.setRedYellowGreenState('210', 'rrryyyyyrrryyyGGrrrr')
traci.trafficlight.setRedYellowGreenState('210', 'rrryyyyyrrryyyyyrrrr')
traci.trafficlight.setRedYellowGreenState('273', 'GGgrrrryy')
traci.simulationStep()
traci.vehicle.subscribe('Silvani_7_191', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_262', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_40_74', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGGg')
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_210', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Costa_12_172', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_2_264', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_93', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_7_192', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_95_93', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrrrrrGGGgrrr')
traci.trafficlight.setRedYellowGreenState('231', 'GGggrrrrGGgrrrrGGGgrrGGrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGrrrGGrr')
traci.trafficlight.setRedYellowGreenState('218', 'rrrGGGGrrrrrrrrrrGGG')
traci.trafficlight.setRedYellowGreenState('220', 'rrrGGGGGrrrGG')
traci.trafficlight.setRedYellowGreenState('210', 'GGgrrrrrGGgrrryyrrrr')
traci.trafficlight.setRedYellowGreenState('210', 'GGgrrrrrGGgrrrrrGGGG')
traci.trafficlight.setRedYellowGreenState('273', 'GGgrrrrrr')
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_290', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_263', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('233', 'GGrrrrGGGgrr')
traci.simulationStep()
traci.simulationStep()
traci.vehicle.subscribe('Costa_3_173', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_212', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_265', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_50_292', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_40_75', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Prati_Capraia_100_94', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_10_267', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_100_94', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_7_194', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Costa_50_174', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_213', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_8_268', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_294', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrrrrryyyyrrr')
traci.trafficlight.setRedYellowGreenState('231', 'GGggrrrrGGgrrrryyyyrryyrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('282', 'rrryyyrrryyy')
traci.trafficlight.setRedYellowGreenState('218', 'rrrGGGGrrrrrrrrrrGGG')
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGyy')
traci.trafficlight.setRedYellowGreenState('210', 'GGgrrrrrGGgrrrrryyyy')
traci.simulationStep()
traci.vehicle.subscribe('Pertini_60_214', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_50_175', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('218', 'rrrGGGGrrrrGGGGgrGGG')
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_295', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Silvani_7_196', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_95', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_62_95', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_5_270', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_8_269', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_40_296', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_215', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_100_76', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('XXI_Aprile_12_130', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('231', 'GGggrrrrGGgrrrrrrrrGGrrrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('282', 'GGgrrrGGgrrr')
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGrr')
traci.trafficlight.setRedYellowGreenState('210', 'GGgrrrrrGGgrrrGGrrrr')
traci.simulationStep()
traci.vehicle.subscribe('Nigrisoli_100_75', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_50_176', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_297', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_216', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_1_271', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('XXI_Aprile_103_131', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_298', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_217', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_272', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Prati_Capraia_100_96', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_70_179', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_70_96', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_218', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_20_77', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('XXI_Aprile_7_132', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_273', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_8_274', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_299', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrrrrrrrrryyy')
traci.trafficlight.setRedYellowGreenState('231', 'yyyyrrrryyyrrrrrrrrGGrrrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'yyyyrrrryyyrrrrrrrrGGrrrrrrrrrrrrrryyyyyyrrr')
traci.trafficlight.setRedYellowGreenState('233', 'yyrrrryyyyrr')
traci.trafficlight.setRedYellowGreenState('219', 'GGGrrrrGGrrrrrryyyrrryyyrrr')
traci.trafficlight.setRedYellowGreenState('218', 'rrrGGGGrrrryyyyyrGGG')
traci.trafficlight.setRedYellowGreenState('209', 'yryGGrr')
traci.trafficlight.setRedYellowGreenState('209', 'yryGGrr')
traci.trafficlight.setRedYellowGreenState('210', 'yyyrrrrryyyrrrGGrrrr')
traci.trafficlight.setRedYellowGreenState('210', 'yyyrrrrryyyrrryyrrrr')
traci.trafficlight.setRedYellowGreenState('273', 'GGgrrrrrr')
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_40_301', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_12_180', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_219', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('209', 'yryGGGg')
traci.trafficlight.setRedYellowGreenState('273', 'GGgrrrrGg')
traci.simulationStep()
traci.vehicle.subscribe('Prati_Capraia_100_97', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_7_200', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Audinot_7_22', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_100_97', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_302', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_10_275', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Certosa_6_13', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGGGGgrrrrGGGgrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrrrrrrrrrGGrrrrrrrrrrrrrryyyyyyrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrrrrrrrrrGGrrGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('219', 'GGGrrrrGGrrrrrrrrrGGgrrrGGg')
traci.trafficlight.setRedYellowGreenState('218', 'rrrGGGGrrrrrrrrrrGGG')
traci.trafficlight.setRedYellowGreenState('209', 'rGrGGGg')
traci.trafficlight.setRedYellowGreenState('210', 'yyyrrrrryyyrrrrrGGGG')
traci.simulationStep()
traci.vehicle.subscribe('Pertini_62_220', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_50_181', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('233', 'rrGGGgrrrrGG')
traci.simulationStep()
traci.vehicle.subscribe('Silvani_7_201', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_10_277', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_100_78', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrGGGrrGGGG')
traci.simulationStep()
traci.vehicle.subscribe('Pertini_23_221', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_276', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Prati_Capraia_100_98', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_305', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_92_98', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_222', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_278', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Costa_70_183', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_306', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_7_203', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_223', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGyyyyrrrrGGGgrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrrrrrrrrryyrrGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrrrrrrrrryyrryyyyyyrrrrrrrrrrrryyy')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGrrryyrr')
traci.trafficlight.setRedYellowGreenState('282', 'yyyrrryyyrrr')
traci.trafficlight.setRedYellowGreenState('219', 'GGGrrrrGGrrrrrrrrryyyrrryyy')
traci.trafficlight.setRedYellowGreenState('218', 'rrrGGGGrrrrrrrrrrGGG')
traci.trafficlight.setRedYellowGreenState('221', 'yyyrrrryyyyyyyrrrrryyy')
traci.trafficlight.setRedYellowGreenState('209', 'ryrGGGg')
traci.trafficlight.setRedYellowGreenState('209', 'ryrGGyy')
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrryyyrrGGGG')
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrryyyrryyyy')
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_11_279', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_1_184', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('bus_2_480', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_8_280', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_100_79', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('bus_1_480', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('218', 'rrrGGGGrrrrGGGGgrGGG')
traci.simulationStep()
traci.vehicle.subscribe('Prati_Capraia_100_99', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_7_204', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_22_224', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_307', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrrrrrGGGgrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrrrrrGGGgrrGGyyyyyyrrrrrrrrrrrryyy')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrrrrrGGGgrrGGrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGGGgrrGG')
traci.trafficlight.setRedYellowGreenState('282', 'rrrGGgrrrGGg')
traci.trafficlight.setRedYellowGreenState('219', 'GGGrrrrGGrrrrrrGGGrrrGGGrrr')
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGyy')
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGrr')
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrrrrrryyyy')
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrrrrGGrrrr')
traci.simulationStep()
traci.vehicle.subscribe('XXI_Aprile_7_136', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_281', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_225', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('221', 'rrrGGGGrrrrrrrGGGGGrrr')
traci.simulationStep()
traci.vehicle.subscribe('bus_14_480', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_310', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_3_283', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_282', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Prati_Capraia_100_100', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_20_80', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_60_100', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_226', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_80_312', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('XXI_Aprile_7_137', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_8_285', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_1_185', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_227', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Turati_10_14', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_52_313', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrrrrryyyyrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrrrrryyyyrryyrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrryyyyrrrrrrryyyyrryyrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrryyyyrrrrrrryyyyrryyrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGyyyrryy')
traci.trafficlight.setRedYellowGreenState('233', 'rryyyyrrrryy')
traci.trafficlight.setRedYellowGreenState('282', 'rrryyyrrryyy')
traci.trafficlight.setRedYellowGreenState('221', 'rrryyyyrrrrrrryyyyyrrr')
traci.trafficlight.setRedYellowGreenState('220', 'rrryyyyGrrryy')
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGrr')
traci.trafficlight.setRedYellowGreenState('273', 'GGgrrrryy')
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_11_286', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_228', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('XXI_Aprile_7_138', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_7_208', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('231', 'rrrryyyyrrrrrrryyyyrryyrrrrrrGGGGGgGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGGg')
traci.simulationStep()
traci.vehicle.subscribe('Costa_12_186', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_101', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_100_101', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Borgo_20_81', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_315', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrGGggrrrrrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrryyyyrrrrrrrrrrrGGrrrrrrrrGGGGGgGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'GGggrrrrGGgrrrrrrrrGGrrrrrrrrGGGGGgGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGrrrGGrr')
traci.trafficlight.setRedYellowGreenState('282', 'GGgrrrGGgrrr')
traci.trafficlight.setRedYellowGreenState('220', 'GGGrrrrGrrrrr')
traci.trafficlight.setRedYellowGreenState('273', 'GGgrrrrrr')
traci.simulationStep()
traci.vehicle.subscribe('Costa_50_187', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_287', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_50_229', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_7_209', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('233', 'GGrrrrGGGgrr')
traci.trafficlight.setRedYellowGreenState('221', 'GGGrrrrGGGGGGGrrrrrGGG')
traci.simulationStep()
traci.vehicle.subscribe('XXI_Aprile_1_139', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_316', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_230', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_40_317', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_288', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_10_289', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Costa_70_188', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_23_231', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_10_102', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_102', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.simulationStep()
traci.vehicle.subscribe('Borgo_100_82', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_10_290', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('XXI_Aprile_7_140', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_40_318', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_232', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Costa_70_189', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrryyyyrrrrrrr')
traci.trafficlight.setRedYellowGreenState('231', 'GGggrrrrGGgrrrrrrrryyrrrrrrrrGGGGGgGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGrrryyrr')
traci.trafficlight.setRedYellowGreenState('221', 'yyyrrrryyyyyyyrrrrryyy')
traci.trafficlight.setRedYellowGreenState('220', 'GGGrrrryrrrrr')
traci.trafficlight.setRedYellowGreenState('209', 'yryGGGg')
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrrrrGGrrrr')
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_11_292', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_7_212', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrGGGGGrrrr')
traci.simulationStep()
traci.vehicle.subscribe('Malvasia_100_103', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_103', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_233', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_321', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Costa_70_190', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_8_293', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGGGGgrrrrGGGgrrr')
traci.trafficlight.setRedYellowGreenState('231', 'GGggrrrrGGgrrrrGGGgrrGGrrrrrrGGGGGgGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGGGgrrGG')
traci.trafficlight.setRedYellowGreenState('220', 'GGGrrrrrGGGrr')
traci.trafficlight.setRedYellowGreenState('209', 'rGrGGGg')
traci.simulationStep()
traci.vehicle.subscribe('Silvani_7_213', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('221', 'rrrGGGGrrrrrrrGGGGGrrr')
traci.simulationStep()
traci.vehicle.subscribe('Borgo_20_83', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_3_294', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_70_323', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_322', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Silvani_7_214', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_295', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_50_191', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_94_104', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('XXI_Aprile_7_142', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_235', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_104', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Nigrisoli_40_82', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_23_236', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_50_192', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_324', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_2_296', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('XXI_Aprile_1_143', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_42_325', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_237', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Certosa_6_14', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_7_216', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_8_297', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGyyyyrrrryyyyrrr')
traci.trafficlight.setRedYellowGreenState('231', 'yyyyrrrrGGgrrrrGGGgrrGGrrrrrrGGGGGgGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'yyyyrrrrGGgrrrrGGGgrrGGrrrrrryyyyyyGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGyyyrryy')
traci.trafficlight.setRedYellowGreenState('219', 'GGGrrrrGGrrrrrryyyrrryyyrrr')
traci.trafficlight.setRedYellowGreenState('221', 'rrryyyyrrrrrrryyyyyrrr')
traci.trafficlight.setRedYellowGreenState('220', 'GGGrrrrryyyrr')
traci.trafficlight.setRedYellowGreenState('220', 'yyyrrrrryyyrr')
traci.trafficlight.setRedYellowGreenState('209', 'ryrGGGg')
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_11_298', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_100_84', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_10_105', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_326', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_70_193', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_105', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_73_238', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Costa_70_194', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_8_299', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('XXI_Aprile_1_144', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_42_328', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_327', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrGGggrrrrrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrrrrrGGgrrrrGGGgrrGGrrrrrryyyyyyGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrrrrrGGgrrrrGGGgrrGGrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGrrrGGrr')
traci.trafficlight.setRedYellowGreenState('219', 'GGGrrrrGGrrrrrrrrrGGgrrrGGg')
traci.trafficlight.setRedYellowGreenState('220', 'yyyrrrrGrrrrr')
traci.trafficlight.setRedYellowGreenState('220', 'rrrGGGGGrrrGG')
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGGg')
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_239', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('221', 'GGGrrrrGGGGGGGrrrrrGGG')
traci.simulationStep()
traci.vehicle.subscribe('Silvani_7_218', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Audinot_1_24', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('XXI_Aprile_7_145', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_50_196', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_94_106', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_106', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_8_300', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_40_329', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_11_301', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_40_85', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_240', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_52_330', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_331', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_200_197', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Nigrisoli_90_84', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_8_303', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrryyyyrrrrrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrrrrrGGgrrrryyyyrryyrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrrrrryyyrrrryyyyrryyrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGrrryyrr')
traci.trafficlight.setRedYellowGreenState('220', 'rrrGGGGyrrrGG')
traci.trafficlight.setRedYellowGreenState('220', 'rrryyyyyrrryy')
traci.trafficlight.setRedYellowGreenState('209', 'yryGGGg')
traci.trafficlight.setRedYellowGreenState('209', 'yryGGyy')
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_242', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_12_198', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_332', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_10_107', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_100_107', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_3_304', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_7_221', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_23_243', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_9_305', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_334', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_100_86', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGGGGgrrrrGGGgrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrrrrryyyrrrrrrrrGGrrrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrGGGgrrrrGGrrrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGGGgrrGG')
traci.trafficlight.setRedYellowGreenState('220', 'rrryyyyrGGGyy')
traci.trafficlight.setRedYellowGreenState('220', 'GGGrrrrrGGGrr')
traci.trafficlight.setRedYellowGreenState('209', 'rGrGGyy')
traci.trafficlight.setRedYellowGreenState('209', 'rGrGGrr')
traci.simulationStep()
traci.vehicle.subscribe('Silvani_7_222', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_40_335', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_50_199', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Turati_10_15', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_306', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_244', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Nigrisoli_40_85', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Malvasia_94_108', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_108', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_245', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_8_307', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_40_336', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_50_200', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_10_308', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_7_224', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_40_339', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_50_202', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_100_87', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_23_246', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGyyyyrrrrGGGgrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrGGGgrrrryyrrrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGyyyrryy')
traci.trafficlight.setRedYellowGreenState('219', 'GGGrrrrGGrrrrrrrrryyyrrryyy')
traci.trafficlight.setRedYellowGreenState('218', 'rrrGGGGrrrryyyyyrGGG')
traci.trafficlight.setRedYellowGreenState('220', 'GGGrrrrryyyrr')
traci.trafficlight.setRedYellowGreenState('220', 'yyyrrrrryyyrr')
traci.trafficlight.setRedYellowGreenState('209', 'ryrGGrr')
traci.trafficlight.setRedYellowGreenState('209', 'ryrGGrr')
traci.trafficlight.setRedYellowGreenState('210', 'rrryyyyyrrryyyGGrrrr')
traci.trafficlight.setRedYellowGreenState('273', 'yyyrrrrrr')
traci.simulationStep()
traci.vehicle.subscribe('Silvani_7_225', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_100_109', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_109', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_309', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('209', 'ryrGGGg')
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_340', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_247', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Costa_12_203', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrrrrrGGGgrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrGGGgGGGgrrrrrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGrrrGGrr')
traci.trafficlight.setRedYellowGreenState('219', 'GGGrrrrGGrrrrrrGGGrrrGGGrrr')
traci.trafficlight.setRedYellowGreenState('218', 'rrrGGGGrrrrrrrrrrGGG')
traci.trafficlight.setRedYellowGreenState('220', 'yyyrrrrGrrrrr')
traci.trafficlight.setRedYellowGreenState('220', 'rrrGGGGGrrrGG')
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGGg')
traci.trafficlight.setRedYellowGreenState('210', 'GGgrrrrrGGgrrrGGrrrr')
traci.trafficlight.setRedYellowGreenState('273', 'rrrGGGGrr')
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_50_341', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_248', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_310', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_10_312', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_342', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_249', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_7_227', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_10_110', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Audinot_10_25', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_1_204', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_40_88', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_100_110', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_11_311', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_250', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_3_205', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_343', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_11_313', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_52_345', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_251', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrrrrrGGGgrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrGGGgGGGgrrrrrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGrrryyrr')
traci.trafficlight.setRedYellowGreenState('219', 'GGGrrrrGGrrrrrryyyrrryyyrrr')
traci.trafficlight.setRedYellowGreenState('218', 'rrryyyyrrrrrrrrrryyG')
traci.trafficlight.setRedYellowGreenState('209', 'yryGGGg')
traci.trafficlight.setRedYellowGreenState('209', 'yryGGyy')
traci.trafficlight.setRedYellowGreenState('210', 'yyyrrrrryyyrrrGGrrrr')
traci.trafficlight.setRedYellowGreenState('210', 'yyyrrrrryyyrrryyrrrr')
traci.trafficlight.setRedYellowGreenState('273', 'rrryyyyrr')
traci.simulationStep()
traci.vehicle.subscribe('Malvasia_95_111', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('XXI_Aprile_1_152', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_111', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_344', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGGGGgrrrrGGGgrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrGGGgGGGgrrrrrrrrrrGGGGGgGGGggGrrr')
traci.simulationStep()
traci.vehicle.subscribe('Pertini_23_252', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_50_206', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Silvani_7_230', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_314', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGGGgrrGG')
traci.trafficlight.setRedYellowGreenState('219', 'GGGrrrrGGrrrrrrrrrGGgrrrGGg')
traci.trafficlight.setRedYellowGreenState('218', 'GGGrrrrGGGGrrrrrGrrG')
traci.trafficlight.setRedYellowGreenState('209', 'rGrGGyy')
traci.trafficlight.setRedYellowGreenState('209', 'rGrGGrr')
traci.trafficlight.setRedYellowGreenState('210', 'yyyrrrrryyyrrrrrGGGG')
traci.trafficlight.setRedYellowGreenState('273', 'GGgrrrrrr')
traci.simulationStep()
traci.vehicle.subscribe('Costa_50_207', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_346', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Silvani_7_231', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_112', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_62_253', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_100_112', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrrrrrrGGGG')
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_10_318', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Certosa_6_15', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_315', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_50_254', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_347', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_50_208', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Borgo_20_90', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_10_320', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_316', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_3_209', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_255', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_348', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_30_113', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Nigrisoli_94_89', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_10_113', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_7_233', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGyyyyrrrryyyyrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrGGGgyyyyrrrrrrrrrrGGGGGgGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrGGGgyyyyrrrrrrrrrryyyyyyyyyyyyrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGyyyrryy')
traci.trafficlight.setRedYellowGreenState('282', 'yyyrrryyyrrr')
traci.trafficlight.setRedYellowGreenState('219', 'GGGrrrrGGrrrrrrrrryyyrrryyy')
traci.trafficlight.setRedYellowGreenState('218', 'yyyrrrryyyyrrrrryrrG')
traci.trafficlight.setRedYellowGreenState('221', 'yyyrrrryyyyyyyrrrrryyy')
traci.trafficlight.setRedYellowGreenState('220', 'rrrGGGGyrrrGG')
traci.trafficlight.setRedYellowGreenState('209', 'ryrGGrr')
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrrrrrryyyy')
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_3_321', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_256', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_70_352', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Costa_70_210', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_317', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_3_322', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_349', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_257', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrGGGgrrrrGGrrrrrrrryyyyyyyyyyyyrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrGGGgrrrrGGrrGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGrrrGGrr')
traci.trafficlight.setRedYellowGreenState('282', 'rrrGGgrrrGGg')
traci.trafficlight.setRedYellowGreenState('219', 'GGGrrrrGGrrrrrrGGGrrrGGGrrr')
traci.trafficlight.setRedYellowGreenState('218', 'rrrGGGGrrrrrrrrrrGGG')
traci.trafficlight.setRedYellowGreenState('220', 'rrrGGGGrGGGGG')
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGrr')
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrrrrGGrrrr')
traci.simulationStep()
traci.vehicle.subscribe('Borgo_100_91', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_40_354', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('221', 'rrrGGGGrrrrrrrGGGGGrrr')
traci.simulationStep()
traci.vehicle.subscribe('Prati_Capraia_30_114', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_100_114', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_319', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_200_211', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_258', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_7_235', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_351', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Nigrisoli_100_90', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_11_323', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_259', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Costa_1_212', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_40_357', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_356', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('XXI_Aprile_12_157', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_8_326', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_260', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_324', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Turati_11_16', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_115', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_62_115', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_100_92', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrrrrrrrrryyy')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrGGGgrrrryyrrGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('231', 'rrrryyyyrrryyyyrrrryyrrGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('231', 'rrrryyyyrrryyyyrrrryyrryyyyyyrrrrrrrrrrrryyy')
traci.trafficlight.setRedYellowGreenState('282', 'rrryyyrrryyy')
traci.trafficlight.setRedYellowGreenState('221', 'rrryyyyrrrrrrryyyyyrrr')
traci.trafficlight.setRedYellowGreenState('273', 'yyyrrrrrr')
traci.simulationStep()
traci.vehicle.subscribe('Costa_200_213', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_359', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Nigrisoli_40_91', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_261', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_50_360', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_327', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrrrrrGGGgrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrryyyyrrryyyyGGGgrrrryyyyyyrrrrrrrrrrrryyy')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrrrrrGGgrrrrGGGgrrrryyyyyyrrrrrrrrrrrryyy')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrrrrrGGgrrrrGGGgrrrrrrrrrrGGGGGgGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('282', 'GGgrrrGGgrrr')
traci.trafficlight.setRedYellowGreenState('273', 'rrrGGGGrr')
traci.simulationStep()
traci.vehicle.subscribe('Costa_70_214', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_22_262', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('221', 'GGGrrrrGGGGGGGrrrrrGGG')
traci.simulationStep()
traci.vehicle.subscribe('Malvasia_100_116', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_116', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_361', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('XXI_Aprile_1_159', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_263', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_330', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_3_215', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_100_93', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_362', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_8_331', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_50_216', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_50_364', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_7_241', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_363', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_265', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_100_117', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_117', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_8_332', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrrrrryyyyrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrrrrrGGgrrrrGGGgrrrrrrrrrrGGGGGgGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrrrrryyyrrrrGGGgrrrrrrrrrrGGGGGgGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrrrrryyyrrrrGGGgrrrrrrrrrryyyyyyyyyyyyrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGrrryyrr')
traci.trafficlight.setRedYellowGreenState('282', 'yyyrrryyyrrr')
traci.trafficlight.setRedYellowGreenState('219', 'GGGrrrrGGrrrrrryyyrrryyyrrr')
traci.trafficlight.setRedYellowGreenState('220', 'rrryyyyrGGGyy')
traci.trafficlight.setRedYellowGreenState('209', 'yryGGrr')
traci.trafficlight.setRedYellowGreenState('209', 'yryGGrr')
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrrrrGGrrrr')
traci.simulationStep()
traci.vehicle.subscribe('Costa_70_217', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_333', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('231', 'rrrrrrrryyyrrrrGGGgrrGGrrrrrryyyyyyyyyyyyrrr')
traci.trafficlight.setRedYellowGreenState('209', 'yryGGGg')
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrGGGGGrrrr')
traci.simulationStep()
traci.vehicle.subscribe('Borgo_20_94', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('XXI_Aprile_1_161', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_365', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_3_334', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_10_266', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrGGggrrrrrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrrrrrGGGgrrGGrrrrrryyyyyyyyyyyyrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrrrrrGGGgrrGGGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGGGgrrGG')
traci.trafficlight.setRedYellowGreenState('282', 'rrrGGgrrrGGg')
traci.trafficlight.setRedYellowGreenState('219', 'GGGrrrrGGrrrrrrrrrGGgrrrGGg')
traci.trafficlight.setRedYellowGreenState('220', 'GGGrrrrrGGGrr')
traci.trafficlight.setRedYellowGreenState('209', 'rGrGGGg')
traci.simulationStep()
traci.vehicle.subscribe('Costa_1_218', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_267', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_100_118', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_118', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_335', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_367', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_40_368', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_7_244', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_11_336', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_10_268', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('XXI_Aprile_1_162', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_70_219', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_369', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_20_95', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Costa_200_220', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_100_119', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_40_370', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_119', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_11_337', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_3_338', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrryyyyrrrrrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrryyyyrrrrrrrGGGgrrGGGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('231', 'rrrryyyyrrrrrrrGGGgrrGGyyyyyyrrrrrrrrrrrryyy')
traci.trafficlight.setRedYellowGreenState('282', 'rrryyyrrryyy')
traci.trafficlight.setRedYellowGreenState('219', 'GGGrrrrGGrrrrrrrrryyyrrryyy')
traci.trafficlight.setRedYellowGreenState('218', 'rrryyyyrrrrrrrrrryyG')
traci.trafficlight.setRedYellowGreenState('221', 'yyyrrrryyyyyyyrrrrryyy')
traci.trafficlight.setRedYellowGreenState('220', 'GGGrrrrryyyrr')
traci.trafficlight.setRedYellowGreenState('209', 'ryrGGGg')
traci.trafficlight.setRedYellowGreenState('209', 'ryrGGyy')
traci.trafficlight.setRedYellowGreenState('210', 'rrryyyyyrrryyyGGrrrr')
traci.trafficlight.setRedYellowGreenState('210', 'rrryyyyyrrryyyyyrrrr')
traci.trafficlight.setRedYellowGreenState('273', 'rrryyyyrr')
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_270', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_7_246', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Nigrisoli_72_94', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Certosa_6_16', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_12_221', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_8_339', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_40_372', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_11_340', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_271', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('231', 'GGggrrrrGGgrrrrGGGgrrGGyyyyyyrrrrrrrrrrrryyy')
traci.trafficlight.setRedYellowGreenState('231', 'GGggrrrrGGgrrrrGGGgrrGGrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('282', 'GGgrrrGGgrrr')
traci.trafficlight.setRedYellowGreenState('219', 'GGGrrrrGGrrrrrrGGGrrrGGGrrr')
traci.trafficlight.setRedYellowGreenState('218', 'GGGrrrrGGGGrrrrrGrrG')
traci.trafficlight.setRedYellowGreenState('220', 'GGGrrrrGrrrrr')
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGyy')
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGrr')
traci.trafficlight.setRedYellowGreenState('210', 'GGgrrrrrGGgrrryyrrrr')
traci.trafficlight.setRedYellowGreenState('210', 'GGgrrrrrGGgrrrrrGGGG')
traci.trafficlight.setRedYellowGreenState('273', 'GGgrrrrrr')
traci.simulationStep()
traci.vehicle.subscribe('Borgo_100_96', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('XXI_Aprile_7_164', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_100_120', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_120', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('221', 'rrrGGGGrrrrrrrGGGGGrrr')
traci.simulationStep()
traci.vehicle.subscribe('Pertini_43_272', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_1_222', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_50_373', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_374', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_10_341', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.simulationStep()
traci.vehicle.subscribe('Nigrisoli_10_95', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('XXI_Aprile_1_165', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_375', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_12_342', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_273', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_7_249', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_3_224', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_3_343', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_121', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Borgo_100_97', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_7_250', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_377', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrrrrrrrrryyy')
traci.trafficlight.setRedYellowGreenState('231', 'GGggrrrrGGgrrrryyyyrryyrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGyyyrryy')
traci.trafficlight.setRedYellowGreenState('233', 'yyrrrryyyyrr')
traci.trafficlight.setRedYellowGreenState('219', 'GGGrrrrGGrrrrrryyyrrryyyrrr')
traci.trafficlight.setRedYellowGreenState('218', 'yyyrrrryyyyrrrrryrrG')
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGrr')
traci.trafficlight.setRedYellowGreenState('210', 'yyyrrrrryyyrrrrrGGGG')
traci.trafficlight.setRedYellowGreenState('273', 'yyyrrrrrr')
traci.simulationStep()
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGGg')
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_275', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_345', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_12_225', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_378', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrGGggrrrrrrr')
traci.trafficlight.setRedYellowGreenState('231', 'GGggrrrrGGgrrrrrrrrGGrrrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGrrrGGrr')
traci.trafficlight.setRedYellowGreenState('219', 'GGGrrrrGGrrrrrrrrrGGgrrrGGg')
traci.trafficlight.setRedYellowGreenState('218', 'rrrGGGGrrrrGGGGgrGGG')
traci.trafficlight.setRedYellowGreenState('273', 'rrrGGGGrr')
traci.simulationStep()
traci.vehicle.subscribe('Prati_Capraia_10_122', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_50_226', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_94_122', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_10_276', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('233', 'rrGGGgrrrrGG')
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_11_347', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_379', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Turati_9_17', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrrrrrrGGGG')
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_40_381', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_20_98', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_102_277', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Silvani_7_253', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_1_227', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_3_348', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_278', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_380', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('XXI_Aprile_12_168', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Costa_70_228', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Nigrisoli_40_97', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_349', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_100_123', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_123', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_383', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_7_254', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrryyyyrrrrrrr')
traci.trafficlight.setRedYellowGreenState('231', 'yyyyrrrryyyrrrrrrrrGGrrrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'yyyyrrrryyyrrrrrrrrGGrrrrrrrrrrrrrryyyyyyrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGrrryyrr')
traci.trafficlight.setRedYellowGreenState('233', 'rryyyyrrrryy')
traci.trafficlight.setRedYellowGreenState('282', 'yyyrrryyyrrr')
traci.trafficlight.setRedYellowGreenState('218', 'rrrGGGGrrrryyyyyrGGG')
traci.trafficlight.setRedYellowGreenState('220', 'GGGrrrryrrrrr')
traci.trafficlight.setRedYellowGreenState('220', 'yyyrrrryrrrrr')
traci.trafficlight.setRedYellowGreenState('209', 'yryGGGg')
traci.trafficlight.setRedYellowGreenState('209', 'yryGGyy')
traci.trafficlight.setRedYellowGreenState('210', 'rrryyyyyrrrrrrrrGGGG')
traci.trafficlight.setRedYellowGreenState('210', 'rrryyyyyrrrrrrrryyyy')
traci.trafficlight.setRedYellowGreenState('273', 'rrryyyyrr')
traci.simulationStep()
traci.vehicle.subscribe('Audinot_12_28', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('bus_32_600', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('bus_140_600', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_32_279', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Costa_1_229', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_7_255', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('bus_12_600', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_3_351', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_385', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('bus_11_600', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('XXI_Aprile_12_169', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_280', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_20_99', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGGGGgrrrrGGGgrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrrrrrrrrrGGrrrrrrrrrrrrrryyyyyyrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrrrrrrrrrGGrrGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGGGgrrGG')
traci.trafficlight.setRedYellowGreenState('282', 'rrrGGgrrrGGg')
traci.trafficlight.setRedYellowGreenState('218', 'rrrGGGGrrrrrrrrrrGGG')
traci.trafficlight.setRedYellowGreenState('220', 'yyyrrrrrGGGrr')
traci.trafficlight.setRedYellowGreenState('220', 'rrrGGGGrGGGGG')
traci.trafficlight.setRedYellowGreenState('209', 'rGrGGyy')
traci.trafficlight.setRedYellowGreenState('209', 'rGrGGrr')
traci.trafficlight.setRedYellowGreenState('210', 'GGgrrrrrGGgrrrrryyyy')
traci.trafficlight.setRedYellowGreenState('210', 'GGgrrrrrGGgrrrGGrrrr')
traci.trafficlight.setRedYellowGreenState('273', 'GGgrrrrGg')
traci.simulationStep()
traci.vehicle.subscribe('Prati_Capraia_100_124', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('bus_3_600', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_352', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('233', 'GGrrrrGGGgrr')
traci.simulationStep()
traci.vehicle.subscribe('Silvani_7_256', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_1_231', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_387', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('bus_210_600', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_10_353', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_95_124', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_3_354', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_1_232', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_388', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_22_281', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_283', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_7_258', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_10_100', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_125', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_92_125', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('XXI_Aprile_12_171', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_355', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Costa_200_233', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGyyyyrrrrGGGgrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrrrrrrrrryyrrGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('231', 'rrrryyyyrrrrrrrrrrryyrrGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('231', 'rrrryyyyrrrrrrrrrrryyrryyyyyyrrrrrrrrrrrryyy')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGyyyrryy')
traci.trafficlight.setRedYellowGreenState('233', 'yyrrrryyyyrr')
traci.trafficlight.setRedYellowGreenState('282', 'rrryyyrrryyy')
traci.trafficlight.setRedYellowGreenState('218', 'rrrGGGGrrrrrrrrrrGGG')
traci.trafficlight.setRedYellowGreenState('221', 'rrryyyyrrrrrrryyyyyrrr')
traci.trafficlight.setRedYellowGreenState('220', 'rrrGGGGryyyGG')
traci.trafficlight.setRedYellowGreenState('209', 'rGrGGrr')
traci.trafficlight.setRedYellowGreenState('210', 'yyyrrrrryyyrrrGGrrrr')
traci.trafficlight.setRedYellowGreenState('273', 'yyyrrrryy')
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_284', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_356', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_60_282', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('218', 'rrrGGGGrrrrGGGGgrGGG')
traci.trafficlight.setRedYellowGreenState('209', 'rGrGGGg')
traci.simulationStep()
traci.vehicle.subscribe('Silvani_7_259', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_391', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Malvasia_100_126', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_74_285', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_700_234', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_126', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_1_357', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrrrrrGGGgrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrryyyyrrrrrrrGGGgrrGGyyyyyyrrrrrrrrrrrryyy')
traci.trafficlight.setRedYellowGreenState('231', 'GGggrrrrGGgrrrrGGGgrrGGyyyyyyrrrrrrrrrrrryyy')
traci.trafficlight.setRedYellowGreenState('231', 'GGggrrrrGGgrrrrGGGgrrGGrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGrrrGGrr')
traci.trafficlight.setRedYellowGreenState('282', 'GGgrrrGGgrrr')
traci.trafficlight.setRedYellowGreenState('220', 'rrrGGGGGrrrGG')
traci.trafficlight.setRedYellowGreenState('273', 'rrrGGGGrr')
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_11_358', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_7_260', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('233', 'rrGGGgrrrrGG')
traci.trafficlight.setRedYellowGreenState('221', 'GGGrrrrGGGGGGGrrrrrGGG')
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_392', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrrrrGGrrrr')
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_286', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('XXI_Aprile_7_173', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_11_359', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_7_261', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_70_236', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_287', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_40_395', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_127', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_393', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_8_360', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Nigrisoli_10_100', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_100_127', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.simulationStep()
traci.vehicle.subscribe('Costa_50_237', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_10_361', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_288', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_70_396', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrrrrrGGGgrrr')
traci.trafficlight.setRedYellowGreenState('231', 'GGggrrrrGGgrrrrGGGgrryyrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'yyyyrrrryyyrrrrGGGgrryyrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'yyyyrrrryyyrrrrGGGgrryyrrrrrrrrrrrryyyyyyrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGrrryyrr')
traci.trafficlight.setRedYellowGreenState('282', 'yyyrrryyyrrr')
traci.trafficlight.setRedYellowGreenState('218', 'rrrGGGGrrrryyyyyrGGG')
traci.trafficlight.setRedYellowGreenState('220', 'rrryyyyGrrryy')
traci.trafficlight.setRedYellowGreenState('209', 'rGrGGyy')
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrrrrGGrrrr')
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrrrryyrrrr')
traci.trafficlight.setRedYellowGreenState('273', 'rrryyyyrr')
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_3_362', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_10_102', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_7_263', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('bus_4_620', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGGGGgrrrrGGGgrrr')
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrGGGyyrrrr')
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_289', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_42_398', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_50_238', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_60_128', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_10_128', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('XXI_Aprile_102_175', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('231', 'yyyyrrrryyyrrrrGGGgrrrrrrrrrrrrrrrryyyyyyrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrGGGgGGGgrrrrrrrrrrrrrrrryyyyyyrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrGGGgGGGgrrrrGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGGGgrrGG')
traci.trafficlight.setRedYellowGreenState('282', 'rrrGGgrrrGGg')
traci.trafficlight.setRedYellowGreenState('218', 'rrrGGGGrrrrrrrrrrGGG')
traci.trafficlight.setRedYellowGreenState('220', 'GGGrrrrGrrrrr')
traci.trafficlight.setRedYellowGreenState('209', 'rGrGGrr')
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrGGGrrGGGG')
traci.trafficlight.setRedYellowGreenState('273', 'GGgrrrrrr')
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_399', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_290', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_5_363', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_11_364', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_50_239', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_10_291', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_10_365', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_50_400', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('XXI_Aprile_1_176', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_401', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_100_103', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Silvani_7_266', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_94_129', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_292', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_129', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_200_240', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.simulationStep()
traci.vehicle.subscribe('Turati_3_18', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_367', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_403', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGyyyyrrrryyyyrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrGGGgGGGgrrrrGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrryyyyGGGgrrrrGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrryyyyGGGgrrrryyyyyyrrrrrrrrrrrryyy')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGyyyrryy')
traci.trafficlight.setRedYellowGreenState('233', 'rryyyyrrrryy')
traci.trafficlight.setRedYellowGreenState('220', 'GGGrrrryrrrrr')
traci.trafficlight.setRedYellowGreenState('209', 'rGrGGrr')
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrryyyrrGGGG')
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrryyyrryyyy')
traci.trafficlight.setRedYellowGreenState('273', 'yyyrrrrrr')
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_293', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_50_241', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_10_368', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrryyyyGGGgrrGGyyyyyyrrrrrrrrrrrryyy')
traci.trafficlight.setRedYellowGreenState('209', 'rGrGGGg')
traci.simulationStep()
traci.simulationStep()
traci.vehicle.subscribe('Malvasia_95_130', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_20_104', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_404', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_130', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_294', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrGGggrrrrrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrrrrrGGGgrrGGyyyyyyrrrrrrrrrrrryyy')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrrrrrGGGgrrGGrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGrrrGGrr')
traci.trafficlight.setRedYellowGreenState('220', 'GGGrrrrrGGGrr')
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrrrrrryyyy')
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrrrrGGrrrr')
traci.trafficlight.setRedYellowGreenState('273', 'rrrGGGGrr')
traci.simulationStep()
traci.vehicle.subscribe('XXI_Aprile_113_178', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('233', 'GGrrrrGGGgrr')
traci.simulationStep()
traci.vehicle.subscribe('Costa_50_243', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_8_370', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_7_269', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_50_406', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_295', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_407', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_22_296', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Nigrisoli_100_103', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('XXI_Aprile_1_179', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Malvasia_70_131', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_8_372', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_12_244', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_131', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_409', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_373', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_42_297', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrryyyyrrrrrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrrrrrGGGgrryyrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrryyyyrrrrrrrGGGgrryyrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrryyyyrrrrrrrGGGgrryyrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGrrryyrr')
traci.trafficlight.setRedYellowGreenState('282', 'rrryyyrrryyy')
traci.trafficlight.setRedYellowGreenState('221', 'yyyrrrryyyyyyyrrrrryyy')
traci.trafficlight.setRedYellowGreenState('220', 'GGGrrrrryyyrr')
traci.trafficlight.setRedYellowGreenState('209', 'ryrGGGg')
traci.trafficlight.setRedYellowGreenState('273', 'rrryyyyrr')
traci.simulationStep()
traci.vehicle.subscribe('Costa_70_245', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('231', 'rrrryyyyrrrrrrrGGGgrryyrrrrrrGGGGGgGGGggGrrr')
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_10_374', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_11_375', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_92_132', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_10_132', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Nigrisoli_50_104', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Audinot_12_30', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_22_298', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_411', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_1_246', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('231', 'rrrryyyyrrrrrrrGGGgrrrrrrrrrrGGGGGgGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrrrrrGGgrrrrGGGgrrrrrrrrrrGGGGGgGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGGGgrrGG')
traci.trafficlight.setRedYellowGreenState('282', 'GGgrrrGGgrrr')
traci.trafficlight.setRedYellowGreenState('220', 'GGGrrrrGrrrrr')
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGGg')
traci.trafficlight.setRedYellowGreenState('273', 'GGgrrrrrr')
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_299', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('221', 'rrrGGGGrrrrrrrGGGGGrrr')
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_8_376', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_20_106', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_7_273', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_413', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_43_300', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_8_377', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Prati_Capraia_30_133', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_42_301', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_70_248', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_30_133', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_7_274', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_415', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_378', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_302', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_7_275', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_10_379', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrrrrrrrrryyy')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrrrrrGGgrrrrGGGgrrrrrrrrrrGGGGGgGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrrrrrGGgrrrrGGGgrrrrrrrrrryyyyyyyyyyyyrrr')
traci.trafficlight.setRedYellowGreenState('233', 'yyrrrryyyyrr')
traci.trafficlight.setRedYellowGreenState('282', 'yyyrrryyyrrr')
traci.trafficlight.setRedYellowGreenState('221', 'rrryyyyrrrrrrryyyyyrrr')
traci.trafficlight.setRedYellowGreenState('210', 'rrryyyyyrrrrrrGGrrrr')
traci.trafficlight.setRedYellowGreenState('210', 'rrryyyyyrrrrrryyrrrr')
traci.trafficlight.setRedYellowGreenState('273', 'GGgrrrrrr')
traci.simulationStep()
traci.vehicle.subscribe('bus_8_650', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_1_249', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('XXI_Aprile_7_183', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_100_107', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('231', 'rrrrrrrrGGgrrrrGGGgrrGGrrrrrryyyyyyyyyyyyrrr')
traci.trafficlight.setRedYellowGreenState('273', 'GGgrrrrGg')
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_10_380', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_303', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_100_134', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_134', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_416', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Silvani_7_276', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGGGGgrrrrGGGgrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrrrrrGGgrrrrGGGgrrGGGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('282', 'rrrGGgrrrGGg')
traci.trafficlight.setRedYellowGreenState('210', 'GGgrrrrrGGgrrryyrrrr')
traci.trafficlight.setRedYellowGreenState('210', 'GGgrrrrrGGgrrrrrGGGG')
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_417', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_12_250', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_381', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_23_304', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('233', 'rrGGGgrrrrGG')
traci.trafficlight.setRedYellowGreenState('221', 'GGGrrrrGGGGGGGrrrrrGGG')
traci.simulationStep()
traci.vehicle.subscribe('Nigrisoli_94_106', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_7_277', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_418', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_22_305', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_92_135', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_100_108', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_382', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_70_251', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_135', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Silvani_7_278', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_306', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_8_384', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_11_383', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_420', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_12_252', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('231', 'rrrrrrrrGGgrrrrGGGgrryyGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrrrrrGGgrrrrGGGgrryyyyyyyyrrrrrrrrrrrryyy')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGyyyrryy')
traci.trafficlight.setRedYellowGreenState('219', 'GGGrrrrGGrrrrrrrrryyyrrryyy')
traci.trafficlight.setRedYellowGreenState('218', 'rrrGGGGrrrrrrrrrrGGG')
traci.trafficlight.setRedYellowGreenState('220', 'yyyrrrrGrrrrr')
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGyy')
traci.trafficlight.setRedYellowGreenState('210', 'yyyrrrrryyyrrrrrGGGG')
traci.trafficlight.setRedYellowGreenState('273', 'yyyrrrryy')
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_307', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Silvani_7_280', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Nigrisoli_40_107', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('218', 'rrrGGGGrrrrGGGGgrGGG')
traci.simulationStep()
traci.vehicle.subscribe('Malvasia_100_136', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_136', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_50_253', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_11_385', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_308', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_20_109', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_424', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('231', 'rrrrrrrrGGgrrrrGGGgrrrryyyyyyrrrrrrrrrrrryyy')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrrrrrGGgrrrrGGGgrrrrrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGrrrGGrr')
traci.trafficlight.setRedYellowGreenState('219', 'GGGrrrrGGrrrrrrGGGrrrGGGrrr')
traci.trafficlight.setRedYellowGreenState('220', 'rrrGGGGGrrrGG')
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGrr')
traci.trafficlight.setRedYellowGreenState('273', 'rrrGGGGrr')
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_10_387', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_11_386', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Turati_10_19', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_425', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrrrrrrGGGG')
traci.simulationStep()
traci.vehicle.subscribe('XXI_Aprile_7_187', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_8_388', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_40_426', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_10_309', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Prati_Capraia_100_137', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_50_255', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_62_137', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_310', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_427', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Costa_200_256', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_8_389', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_20_110', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_10_390', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_70_428', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_72_311', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGyyyyrrrrGGGgrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrrrrrGGgrrrrGGGgrrrrrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrrrrryyyrrrrGGGgrrrrrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGrrryyrr')
traci.trafficlight.setRedYellowGreenState('233', 'rryyyyrrrryy')
traci.trafficlight.setRedYellowGreenState('218', 'rrryyyyrrrryyyyyryyG')
traci.trafficlight.setRedYellowGreenState('221', 'yyyrrrryyyyyyyrrrrryyy')
traci.trafficlight.setRedYellowGreenState('209', 'yryGGrr')
traci.trafficlight.setRedYellowGreenState('210', 'rrryyyyyrrrrrrrrGGGG')
traci.trafficlight.setRedYellowGreenState('210', 'rrryyyyyrrrrrrrryyyy')
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_50_429', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_312', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_391', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('XXI_Aprile_102_180', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('231', 'rrrrrrrryyyrrrrGGGgrrGGrrrrrrrrrrrrGGGggGrrr')
traci.simulationStep()
traci.vehicle.subscribe('Costa_50_257', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_138', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_100_138', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_430', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrrrrrGGGgrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrGGGgGGGgrrGGrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGGGgrrGG')
traci.trafficlight.setRedYellowGreenState('218', 'GGGrrrrGGGGrrrrrGrrG')
traci.trafficlight.setRedYellowGreenState('209', 'rGrGGrr')
traci.trafficlight.setRedYellowGreenState('210', 'GGgrrrrrGGgrrrrryyyy')
traci.trafficlight.setRedYellowGreenState('210', 'GGgrrrrrGGgrrrGGrrrr')
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_11_393', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_80_431', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_60_313', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('XXI_Aprile_2_181', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Nigrisoli_90_109', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('233', 'GGrrrrGGGgrr')
traci.trafficlight.setRedYellowGreenState('221', 'rrrGGGGrrrrrrrGGGGGrrr')
traci.simulationStep()
traci.vehicle.subscribe('Costa_50_258', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_432', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_314', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_100_111', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Malvasia_100_139', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_394', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_139', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('XXI_Aprile_1_182', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_10_395', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_315', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_50_259', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_433', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_52_434', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_396', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_316', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('XXI_Aprile_2_188', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrrrrrGGGgrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrGGGgGGGgrryyrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrryyyyrrryyyyGGGgrryyrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrryyyyrrryyyyGGGgrryyrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGyyyrryy')
traci.trafficlight.setRedYellowGreenState('233', 'yyrrrryyyyrr')
traci.trafficlight.setRedYellowGreenState('282', 'rrryyyrrryyy')
traci.trafficlight.setRedYellowGreenState('219', 'GGGrrrrGGrrrrrryyyrrryyyrrr')
traci.trafficlight.setRedYellowGreenState('209', 'rGrGGrr')
traci.trafficlight.setRedYellowGreenState('210', 'yyyrrrrryyyrrrGGrrrr')
traci.simulationStep()
traci.trafficlight.setRedYellowGreenState('230', 'GGGGGGgrrrrGGGgrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrryyyyrrryyyyGGGgrryyrrrrrrGGGGGgGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('209', 'rGrGGGg')
traci.simulationStep()
traci.vehicle.subscribe('Costa_50_261', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_397', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_20_112', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_435', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_22_317', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_10_140', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_92_140', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('XXI_Aprile_93_189', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('231', 'rrrryyyyrrryyyyGGGgrrrrrrrrrrGGGGGgGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'GGggrrrrGGgrrrrGGGgrrrrrrrrrrGGGGGgGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGrrrGGrr')
traci.trafficlight.setRedYellowGreenState('282', 'GGgrrrGGgrrr')
traci.trafficlight.setRedYellowGreenState('219', 'GGGrrrrGGrrrrrrrrrGGgrrrGGg')
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_11_398', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_436', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_318', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('233', 'rrGGGgrrrrGG')
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_2_399', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_70_262', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrGGGGGrrrr')
traci.simulationStep()
traci.vehicle.subscribe('Prati_Capraia_100_141', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_100_141', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Audinot_3_32', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_3_400', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_43_319', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_437', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_11_401', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_40_440', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_70_263', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_100_113', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_439', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_40_441', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_50_264', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGyyyyrrrryyyyrrr')
traci.trafficlight.setRedYellowGreenState('231', 'yyyyrrrryyyrrrrGGGgrrrrrrrrrrGGGGGgGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'yyyyrrrryyyrrrrGGGgrrrrrrrrrryyyyyyyyyyyyrrr')
traci.trafficlight.setRedYellowGreenState('233', 'rryyyyrrrryy')
traci.trafficlight.setRedYellowGreenState('219', 'GGGrrrrGGrrrrrrrrryyyrrryyy')
traci.trafficlight.setRedYellowGreenState('209', 'ryrGGGg')
traci.trafficlight.setRedYellowGreenState('209', 'ryrGGyy')
traci.trafficlight.setRedYellowGreenState('273', 'rrryyyyrr')
traci.simulationStep()
traci.vehicle.subscribe('Certosa_6_19', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_142', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_10_321', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_94_142', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_402', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Nigrisoli_90_112', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_11_403', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_12_265', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_322', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_443', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrrrrrGGGgrrrrrrrrrryyyyyyyyyyyyrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrrrrrGGGgrrrrGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('219', 'GGGrrrrGGrrrrrrGGGrrrGGGrrr')
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGyy')
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGrr')
traci.trafficlight.setRedYellowGreenState('273', 'GGgrrrrrr')
traci.simulationStep()
traci.vehicle.subscribe('Borgo_20_114', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('233', 'GGrrrrGGGgrr')
traci.simulationStep()
traci.vehicle.subscribe('Pertini_32_323', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_10_405', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Costa_1_266', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_444', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_100_143', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_143', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('XXI_Aprile_1_191', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_324', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_406', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_3_407', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_70_446', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_447', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Turati_10_20', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_408', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_20_115', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('231', 'rrrryyyyrrrrrrrGGGgrrrrGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('231', 'rrrryyyyrrrrrrrGGGgrrrryyyyyyrrrrrrrrrrrryyy')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGrrryyrr')
traci.trafficlight.setRedYellowGreenState('233', 'yyrrrryyyyrr')
traci.trafficlight.setRedYellowGreenState('282', 'yyyrrryyyrrr')
traci.trafficlight.setRedYellowGreenState('218', 'yyyrrrryyyyrrrrryrrG')
traci.trafficlight.setRedYellowGreenState('221', 'rrryyyyrrrrrrryyyyyrrr')
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGrr')
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrGGGyyrrrr')
traci.simulationStep()
traci.vehicle.subscribe('Costa_50_268', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_144', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('bus_7_700', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_100_144', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGGg')
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_326', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_50_449', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Costa_50_269', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_12_410', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('231', 'GGggrrrrGGgrrrrGGGgrrrryyyyyyrrrrrrrrrrrryyy')
traci.trafficlight.setRedYellowGreenState('231', 'GGggrrrrGGgrrrrGGGgrrrrrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGGGgrrGG')
traci.trafficlight.setRedYellowGreenState('282', 'rrrGGgrrrGGg')
traci.trafficlight.setRedYellowGreenState('218', 'rrrGGGGrrrrGGGGgrGGG')
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrGGGrrGGGG')
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_450', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_327', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('233', 'rrGGGgrrrrGG')
traci.trafficlight.setRedYellowGreenState('221', 'GGGrrrrGGGGGGGrrrrrGGG')
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_11_411', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_40_451', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Borgo_20_116', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_328', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_100_145', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_1_270', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_145', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_11_412', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_452', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Audinot_3_33', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_329', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_50_271', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_3_413', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_40_454', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_10_414', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_330', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrrrrrrrrryyy')
traci.trafficlight.setRedYellowGreenState('231', 'GGggrrrrGGgrrrryyyyrrrrrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'yyyyrrrrGGgrrrryyyyrrrrrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGyyyrryy')
traci.trafficlight.setRedYellowGreenState('282', 'rrryyyrrryyy')
traci.trafficlight.setRedYellowGreenState('219', 'GGGrrrrGGrrrrrryyyrrryyyrrr')
traci.trafficlight.setRedYellowGreenState('220', 'rrryyyyGrrryy')
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGyy')
traci.trafficlight.setRedYellowGreenState('210', 'rrryyyyyrrryyyrrGGGG')
traci.trafficlight.setRedYellowGreenState('210', 'rrryyyyyrrryyyrryyyy')
traci.simulationStep()
traci.vehicle.subscribe('Costa_12_272', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_30_146', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_100_146', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_12_415', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_331', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_20_117', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_40_455', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrGGggrrrrrrr')
traci.trafficlight.setRedYellowGreenState('231', 'yyyyrrrrGGgrrrrrrrrGGrrrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrrrrrGGgrrrrrrrrGGrrrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGrrrGGrr')
traci.trafficlight.setRedYellowGreenState('282', 'GGgrrrGGgrrr')
traci.trafficlight.setRedYellowGreenState('219', 'GGGrrrrGGrrrrrrrrrGGgrrrGGg')
traci.trafficlight.setRedYellowGreenState('220', 'GGGrrrrGrrrrr')
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGrr')
traci.trafficlight.setRedYellowGreenState('210', 'GGgrrrrrGGgrrrrryyyy')
traci.trafficlight.setRedYellowGreenState('210', 'GGgrrrrrGGgrrrGGrrrr')
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_11_416', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_332', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_10_417', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_40_458', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_147', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_94_147', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('XXI_Aprile_7_201', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_12_274', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_333', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_8_418', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_100_118', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Costa_12_275', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_22_334', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_8_419', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_460', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrryyyyrrrrrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrrrrrGGgrrrrrrrryyrrrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrrrrrGGgrrrrrrrryyrrrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrrrrrGGgrrrrrrrryyrrrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGrrryyrr')
traci.trafficlight.setRedYellowGreenState('233', 'rryyyyrrrryy')
traci.trafficlight.setRedYellowGreenState('282', 'yyyrrryyyrrr')
traci.trafficlight.setRedYellowGreenState('219', 'GGGrrrrGGrrrrrrrrryyyrrryyy')
traci.trafficlight.setRedYellowGreenState('218', 'rrrGGGGrrrryyyyyrGGG')
traci.trafficlight.setRedYellowGreenState('221', 'yyyrrrryyyyyyyrrrrryyy')
traci.trafficlight.setRedYellowGreenState('273', 'yyyrrrrrr')
traci.simulationStep()
traci.vehicle.subscribe('bus_2_720', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_148', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_335', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_10_420', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_100_148', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('bus_1_720', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('231', 'GGggrrrrGGgrrrrrrrryyrrrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'GGggrrrrGGgrrrrrrrryyrrrrrrrrGGGGGgGGGggGrrr')
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_461', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('bus_14_720', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrrrrrGGGgrrr')
traci.trafficlight.setRedYellowGreenState('231', 'GGggrrrrGGgrrrrGGGgrrrrrrrrrrGGGGGgGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGGGgrrGG')
traci.trafficlight.setRedYellowGreenState('282', 'rrrGGgrrrGGg')
traci.trafficlight.setRedYellowGreenState('219', 'GGGrrrrGGrrrrrrGGGrrrGGGrrr')
traci.trafficlight.setRedYellowGreenState('218', 'rrrGGGGrrrrrrrrrrGGG')
traci.trafficlight.setRedYellowGreenState('273', 'rrrGGGGrr')
traci.simulationStep()
traci.vehicle.subscribe('Pertini_50_336', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_8_422', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('233', 'GGrrrrGGGgrr')
traci.trafficlight.setRedYellowGreenState('221', 'rrrGGGGrrrrrrrGGGGGrrr')
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_337', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_463', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_20_119', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_70_149', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_149', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('bus_21_720', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_3_423', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_52_464', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_338', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_424', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Certosa_6_20', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_40_465', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_3_425', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_466', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Audinot_3_34', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Malvasia_70_150', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_22_339', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_10_120', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('bus_89_720', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_10_150', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrrrrryyyyrrr')
traci.trafficlight.setRedYellowGreenState('231', 'GGggrrrrGGgrrrrGGGgrrrrrrrrrrGGGGGgGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'yyyyrrrryyyrrrrGGGgrrrrrrrrrrGGGGGgGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'yyyyrrrryyyrrrrGGGgrrrrrrrrrryyyyyyGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGyyyrryy')
traci.trafficlight.setRedYellowGreenState('233', 'yyrrrryyyyrr')
traci.trafficlight.setRedYellowGreenState('219', 'GGGrrrrGGrrrrrryyyrrryyyrrr')
traci.trafficlight.setRedYellowGreenState('218', 'rrrGGGGrrrrrrrrrrGGG')
traci.trafficlight.setRedYellowGreenState('219', 'yyyrrrryyrrrrrryyyrrryyyrrr')
traci.trafficlight.setRedYellowGreenState('221', 'rrryyyyrrrrrrryyyyyrrr')
traci.trafficlight.setRedYellowGreenState('220', 'yyyrrrrGrrrrr')
traci.trafficlight.setRedYellowGreenState('210', 'yyyrrrrryyyrrrGGrrrr')
traci.trafficlight.setRedYellowGreenState('210', 'yyyrrrrryyyrrryyrrrr')
traci.trafficlight.setRedYellowGreenState('273', 'rrryyyyrr')
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_11_426', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_40_467', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('231', 'yyyyrrrryyyrrrrGGGgrrGGrrrrrryyyyyyGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('218', 'rrrGGGGrrrrGGGGgrGGG')
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_468', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_10_427', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrrrrrGGGgrrGGrrrrrryyyyyyGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrrrrrGGGgrrGGrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGrrrGGrr')
traci.trafficlight.setRedYellowGreenState('219', 'yyyrrrryyrrrrrrrrrGGgrrrGGg')
traci.trafficlight.setRedYellowGreenState('219', 'rrrGGGgrrrrrrrrrrrGGgrrrGGg')
traci.trafficlight.setRedYellowGreenState('220', 'rrrGGGGGrrrGG')
traci.trafficlight.setRedYellowGreenState('210', 'yyyrrrrryyyrrrrrGGGG')
traci.trafficlight.setRedYellowGreenState('273', 'GGgrrrrrr')
traci.simulationStep()
traci.vehicle.subscribe('Costa_50_276', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Turati_10_21', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('XXI_Aprile_7_206', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_70_469', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_341', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('233', 'rrGGGgrrrrGG')
traci.trafficlight.setRedYellowGreenState('221', 'GGGrrrrGGGGGGGrrrrrGGG')
traci.simulationStep()
traci.vehicle.subscribe('Malvasia_100_151', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_151', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrrrrrrGGGG')
traci.simulationStep()
traci.vehicle.subscribe('Pertini_62_342', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_40_121', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_3_429', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_70_471', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_200_277', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_343', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_472', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_430', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Costa_70_278', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_344', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_30_152', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_30_473', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrrrrrrrrryyy')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrrrrrGGGgrryyrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrryyyyrrrrrrrGGGgrryyrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGrrryyrr')
traci.trafficlight.setRedYellowGreenState('218', 'rrrGGGGrrrryyyyyrGGG')
traci.trafficlight.setRedYellowGreenState('209', 'yryGGrr')
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrrrrrrGGGG')
traci.trafficlight.setRedYellowGreenState('273', 'yyyrrrrrr')
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_9_432', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Nigrisoli_90_120', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_431', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrGGGrrGGGG')
traci.simulationStep()
traci.vehicle.subscribe('Costa_50_280', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_345', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_40_122', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_8_433', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_475', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGGGGgrrrrGGGgrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrryyyyrrrrrrrGGGgrrrrrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'GGggrrrrGGgrrrrGGGgrrrrrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGGGgrrGG')
traci.trafficlight.setRedYellowGreenState('218', 'rrrGGGGrrrrrrrrrrGGG')
traci.trafficlight.setRedYellowGreenState('209', 'rGrGGrr')
traci.trafficlight.setRedYellowGreenState('273', 'rrrGGGGrr')
traci.simulationStep()
traci.vehicle.subscribe('XXI_Aprile_7_209', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Malvasia_100_153', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_50_281', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_10_153', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_60_346', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_40_476', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_8_434', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_435', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_477', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.simulationStep()
traci.vehicle.subscribe('Nigrisoli_10_121', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_40_123', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_50_282', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('XXI_Aprile_7_210', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_32_347', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_478', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_8_436', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_44_348', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_10_437', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_70_154', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_154', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGyyyyrrrryyyyrrr')
traci.trafficlight.setRedYellowGreenState('231', 'GGggrrrrGGgrrrrGGGgrrrrrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'yyyyrrrryyyrrrrGGGgrrrrrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGyyyrryy')
traci.trafficlight.setRedYellowGreenState('218', 'rrryyyyrrrrrrrrrryyG')
traci.trafficlight.setRedYellowGreenState('220', 'rrrGGGGyrrrGG')
traci.trafficlight.setRedYellowGreenState('209', 'rGrGGrr')
traci.simulationStep()
traci.vehicle.subscribe('Costa_50_283', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_50_480', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_349', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('231', 'yyyyrrrryyyrrrrGGGgrrGGrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('209', 'rGrGGGg')
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_479', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_350', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_8_439', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrGGggrrrrrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrrrrrGGGgrrGGrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGrrrGGrr')
traci.trafficlight.setRedYellowGreenState('218', 'GGGrrrrGGGGrrrrrGrrG')
traci.trafficlight.setRedYellowGreenState('220', 'rrrGGGGrGGGGG')
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_481', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_700_284', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_23_351', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_155', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_100_155', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_50_124', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_440', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Costa_12_286', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_11_441', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_482', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_352', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.simulationStep()
traci.vehicle.subscribe('Prati_Capraia_100_156', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_485', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_20_156', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_50_486', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_442', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_12_287', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrryyyyrrrrrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrrrrrGGGgrryyrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrryyyyrrrrrrrGGGgrryyrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrryyyyrrrrrrrGGGgrryyrrrrrrrrrrrryyyyyyrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGrrryyrr')
traci.trafficlight.setRedYellowGreenState('282', 'rrryyyrrryyy')
traci.trafficlight.setRedYellowGreenState('219', 'rrrGGGgrrrrrrrrrrryyyrrryyy')
traci.trafficlight.setRedYellowGreenState('218', 'yyyrrrryyyyrrrrryrrG')
traci.trafficlight.setRedYellowGreenState('220', 'rrryyyyrGGGyy')
traci.trafficlight.setRedYellowGreenState('209', 'ryrGGGg')
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrGGGrryyyy')
traci.simulationStep()
traci.vehicle.subscribe('Borgo_10_125', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_354', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_80_487', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_10_444', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_2_445', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_443', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_12_288', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_488', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGGGGgrrrrGGGgrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrryyyyrrrrrrrGGGgrrrrrrrrrrrrrrrryyyyyyrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrrrrrGGgrrrrGGGgrrrrrrrrrrrrrrrryyyyyyrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrrrrrGGgrrrrGGGgrrrrGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGGGgrrGG')
traci.trafficlight.setRedYellowGreenState('282', 'GGgrrrGGgrrr')
traci.trafficlight.setRedYellowGreenState('219', 'rrrGGGgrrrrrrrrGGGrrrGGGrrr')
traci.trafficlight.setRedYellowGreenState('218', 'rrrGGGGrrrrrrrrrrGGG')
traci.trafficlight.setRedYellowGreenState('220', 'GGGrrrrrGGGrr')
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGGg')
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrGGGGGrrrr')
traci.simulationStep()
traci.vehicle.subscribe('Pertini_62_355', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_62_157', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_157', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Certosa_9_21', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_11_446', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_40_489', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Costa_50_289', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_356', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Nigrisoli_90_124', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Borgo_100_126', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Costa_12_290', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_357', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Turati_10_22', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_448', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_158', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('XXI_Aprile_5_216', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_10_449', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_10_358', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_70_492', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGyyyyrrrrGGGgrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrrrrrGGgrrrryyyyrrrrGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrrrrryyyrrrryyyyrrrrGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('282', 'yyyrrryyyrrr')
traci.trafficlight.setRedYellowGreenState('219', 'rrrGGGgrrrrrrrryyyrrryyyrrr')
traci.trafficlight.setRedYellowGreenState('218', 'rrryyyyrrrrrrrrrryyG')
traci.trafficlight.setRedYellowGreenState('220', 'GGGrrrrryyyrr')
traci.trafficlight.setRedYellowGreenState('220', 'yyyrrrrryyyrr')
traci.trafficlight.setRedYellowGreenState('273', 'rrryyyyrr')
traci.simulationStep()
traci.vehicle.subscribe('Costa_70_291', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_493', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Nigrisoli_10_125', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_2_450', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_359', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_20_127', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrrrrrGGGgrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrrrrryyyrrrrrrrrGGrrGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrrrrrrrrrGGrrGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('282', 'rrrGGgrrrGGg')
traci.trafficlight.setRedYellowGreenState('219', 'rrrGGGgrrrrrrrrrrrGGgrrrGGg')
traci.trafficlight.setRedYellowGreenState('218', 'GGGrrrrGGGGrrrrrGrrG')
traci.trafficlight.setRedYellowGreenState('220', 'yyyrrrrGrrrrr')
traci.trafficlight.setRedYellowGreenState('220', 'rrrGGGGGrrrGG')
traci.trafficlight.setRedYellowGreenState('273', 'GGgrrrrrr')
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_10_451', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_10_159', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_100_159', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_495', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_10_452', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_360', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_12_292', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_496', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_62_361', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_8_293', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_3_453', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.simulationStep()
traci.vehicle.subscribe('Prati_Capraia_100_160', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_10_454', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_497', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_362', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_100_160', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_30_498', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_100_128', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('XXI_Aprile_7_219', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_12_294', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrrrrryyyyrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrrrrrrrrryyrrGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('231', 'rrrryyyyrrrrrrrrrrryyrrGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGyyyrryy')
traci.trafficlight.setRedYellowGreenState('233', 'rryyyyrrrryy')
traci.trafficlight.setRedYellowGreenState('282', 'rrryyyrrryyy')
traci.trafficlight.setRedYellowGreenState('219', 'rrrGGGgrrrrrrrrrrryyyrrryyy')
traci.trafficlight.setRedYellowGreenState('218', 'yyyrrrryyyyrrrrryrrG')
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGyy')
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrryyyGGrrrr')
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_11_455', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_363', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_40_499', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('bus_890_780', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_1_295', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_102_364', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('231', 'rrrryyyyrrrrrrrGGGgrrGGGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('231', 'GGggrrrrGGgrrrrGGGgrrGGGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGrrrGGrr')
traci.trafficlight.setRedYellowGreenState('282', 'GGgrrrGGgrrr')
traci.trafficlight.setRedYellowGreenState('219', 'rrrGGGgrrrrrrrrGGGrrrGGGrrr')
traci.trafficlight.setRedYellowGreenState('218', 'rrrGGGGrrrrrrrrrrGGG')
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGrr')
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrrrrGGrrrr')
traci.simulationStep()
traci.vehicle.subscribe('Malvasia_100_161', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_161', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('XXI_Aprile_7_220', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_456', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_501', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('233', 'GGrrrrGGGgrr')
traci.simulationStep()
traci.vehicle.subscribe('Nigrisoli_40_127', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_10_365', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_20_129', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Costa_50_296', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_502', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_457', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_40_503', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_10_459', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Costa_1_297', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_22_366', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Malvasia_100_162', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_10_162', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_8_460', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_504', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_367', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_458', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('XXI_Aprile_7_222', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrrrrrrrrryyy')
traci.trafficlight.setRedYellowGreenState('231', 'yyyyrrrryyyrrrrGGGgrrGGGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('282', 'yyyrrryyyrrr')
traci.trafficlight.setRedYellowGreenState('218', 'rrrGGGGrrrrrrrrrrGGG')
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrrrrGGrrrr')
traci.simulationStep()
traci.vehicle.subscribe('Nigrisoli_72_128', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_100_130', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('218', 'rrrGGGGrrrrGGGGgrGGG')
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrGGGGGrrrr')
traci.simulationStep()
traci.vehicle.subscribe('Costa_12_298', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_368', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_3_462', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_163', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_461', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_70_163', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_506', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Audinot_7_37', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrrrrrGGGgrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrrrrrGGGgrrGGGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('282', 'rrrGGgrrrGGg')
traci.simulationStep()
traci.vehicle.subscribe('Costa_70_299', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_8_463', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_23_369', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_507', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_10_464', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_22_370', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Borgo_100_131', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('XXI_Aprile_7_224', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_50_300', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Malvasia_92_164', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_508', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_371', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_164', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_465', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.simulationStep()
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrrrrrGGGgrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrrrrrGGGgrryyGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('231', 'rrrryyyyrrrrrrrGGGgrryyGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGrrryyrr')
traci.trafficlight.setRedYellowGreenState('233', 'yyrrrryyyyrr')
traci.trafficlight.setRedYellowGreenState('282', 'rrryyyrrryyy')
traci.trafficlight.setRedYellowGreenState('218', 'rrrGGGGrrrryyyyyrGGG')
traci.trafficlight.setRedYellowGreenState('220', 'rrrGGGGyrrrGG')
traci.trafficlight.setRedYellowGreenState('220', 'rrryyyyyrrryy')
traci.trafficlight.setRedYellowGreenState('210', 'rrryyyyyrrryyyGGrrrr')
traci.simulationStep()
traci.vehicle.subscribe('Costa_50_301', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_372', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Certosa_9_22', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_509', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGGGGgrrrrGGGgrrr')
traci.simulationStep()
traci.simulationStep()
traci.vehicle.subscribe('Costa_200_303', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_373', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_60_165', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_100_132', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_10_165', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('231', 'rrrryyyyrrrrrrrGGGgrrrrGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('231', 'GGggrrrrGGgrrrrGGGgrrrrGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGGGgrrGG')
traci.trafficlight.setRedYellowGreenState('282', 'GGgrrrGGgrrr')
traci.trafficlight.setRedYellowGreenState('218', 'rrrGGGGrrrrrrrrrrGGG')
traci.trafficlight.setRedYellowGreenState('220', 'rrryyyyrGGGyy')
traci.trafficlight.setRedYellowGreenState('220', 'GGGrrrrrGGGrr')
traci.trafficlight.setRedYellowGreenState('210', 'GGgrrrrrGGgrrrGGrrrr')
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_30_514', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Turati_10_23', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_510', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('233', 'rrGGGgrrrrGG')
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_11_469', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_73_374', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Costa_8_304', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_10_470', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_512', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_375', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('XXI_Aprile_7_227', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_70_166', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_166', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_471', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_376', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_1_305', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_40_133', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_80_518', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_513', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_472', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGyyyyrrrryyyyrrr')
traci.trafficlight.setRedYellowGreenState('231', 'yyyyrrrryyyrrrrGGGgrrrrGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGyyyrryy')
traci.trafficlight.setRedYellowGreenState('233', 'rryyyyrrrryy')
traci.trafficlight.setRedYellowGreenState('282', 'yyyrrryyyrrr')
traci.trafficlight.setRedYellowGreenState('219', 'rrrGGGgrrrrrrrryyyrrryyyrrr')
traci.trafficlight.setRedYellowGreenState('218', 'rrrGGGGrrrrrrrrrrGGG')
traci.trafficlight.setRedYellowGreenState('221', 'yyyrrrryyyyyyyrrrrryyy')
traci.trafficlight.setRedYellowGreenState('209', 'yryGGrr')
traci.trafficlight.setRedYellowGreenState('210', 'yyyrrrrryyyrrrGGrrrr')
traci.trafficlight.setRedYellowGreenState('210', 'yyyrrrrryyyrrryyrrrr')
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_10_473', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_50_306', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_10_377', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('218', 'rrrGGGGrrrrGGGGgrGGG')
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_516', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_378', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_40_520', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_94_167', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_474', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_167', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrGGggrrrrrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrGGGgGGGgrrrrGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGrrrGGrr')
traci.trafficlight.setRedYellowGreenState('282', 'rrrGGgrrrGGg')
traci.trafficlight.setRedYellowGreenState('219', 'rrrGGGgrrrrrrrrrrrGGgrrrGGg')
traci.trafficlight.setRedYellowGreenState('209', 'rGrGGrr')
traci.trafficlight.setRedYellowGreenState('210', 'yyyrrrrryyyrrrrrGGGG')
traci.simulationStep()
traci.vehicle.subscribe('Costa_12_307', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('233', 'GGrrrrGGGgrr')
traci.trafficlight.setRedYellowGreenState('221', 'rrrGGGGrrrrrrrGGGGGrrr')
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_8_475', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_517', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_20_134', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrrrrrrGGGG')
traci.simulationStep()
traci.vehicle.subscribe('Nigrisoli_10_132', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Costa_1_308', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_11_477', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_100_168', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_168', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_519', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_380', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_8_476', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_80_523', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.simulationStep()
traci.vehicle.subscribe('Pertini_43_381', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_521', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_70_309', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrryyyyrrrrrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrGGGgGGGgrrrrGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('231', 'rrrryyyyrrryyyyGGGgrrrrGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('231', 'rrrryyyyrrryyyyGGGgrrrryyyyyyrrrrrrrrrrrryyy')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGrrryyrr')
traci.trafficlight.setRedYellowGreenState('233', 'yyrrrryyyyrr')
traci.trafficlight.setRedYellowGreenState('221', 'rrryyyyrrrrrrryyyyyrrr')
traci.trafficlight.setRedYellowGreenState('220', 'GGGrrrrryyyrr')
traci.trafficlight.setRedYellowGreenState('220', 'yyyrrrrryyyrr')
traci.trafficlight.setRedYellowGreenState('209', 'ryrGGrr')
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrrrrrrGGGG')
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrrrrrryyyy')
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_11_478', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_40_525', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_20_135', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('231', 'rrrryyyyrrryyyyGGGgrrGGyyyyyyrrrrrrrrrrrryyy')
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrGGGrryyyy')
traci.simulationStep()
traci.vehicle.subscribe('Costa_50_310', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_382', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('XXI_Aprile_7_231', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Malvasia_100_169', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_479', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_169', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_5_480', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGGGGgrrrrGGGgrrr')
traci.trafficlight.setRedYellowGreenState('231', 'GGggrrrrGGgrrrrGGGgrrGGyyyyyyrrrrrrrrrrrryyy')
traci.trafficlight.setRedYellowGreenState('231', 'GGggrrrrGGgrrrrGGGgrrGGrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGGGgrrGG')
traci.trafficlight.setRedYellowGreenState('220', 'yyyrrrrGrrrrr')
traci.trafficlight.setRedYellowGreenState('220', 'rrrGGGGGrrrGG')
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGrr')
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrGGGGGrrrr')
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_383', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_522', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_40_526', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('233', 'rrGGGgrrrrGG')
traci.trafficlight.setRedYellowGreenState('221', 'GGGrrrrGGGGGGGrrrrrGGG')
traci.simulationStep()
traci.simulationStep()
traci.vehicle.subscribe('XXI_Aprile_7_232', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_3_481', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_384', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_50_311', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_8_482', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_40_527', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_524', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Malvasia_60_170', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_385', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Nigrisoli_80_134', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_170', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_200_312', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_20_136', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_3_483', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_528', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGyyyyrrrrGGGgrrr')
traci.trafficlight.setRedYellowGreenState('231', 'GGggrrrrGGgrrrryyyyrryyrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'GGggrrrrGGgrrrryyyyrryyrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('282', 'rrryyyrrryyy')
traci.trafficlight.setRedYellowGreenState('218', 'rrrGGGGrrrryyyyyrGGG')
traci.trafficlight.setRedYellowGreenState('220', 'rrrGGGGyrrrGG')
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGrr')
traci.trafficlight.setRedYellowGreenState('273', 'yyyrrrrrr')
traci.simulationStep()
traci.vehicle.subscribe('Costa_12_313', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_386', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('231', 'GGggrrrrGGgrrrryyyyrryyrrrrrrGGGGGgGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGGg')
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_530', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_171', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_8_485', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_387', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrrrrrGGGgrrr')
traci.trafficlight.setRedYellowGreenState('231', 'GGggrrrrGGgrrrrrrrrGGrrrrrrrrGGGGGgGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('282', 'GGgrrrGGgrrr')
traci.trafficlight.setRedYellowGreenState('218', 'rrrGGGGrrrrrrrrrrGGG')
traci.trafficlight.setRedYellowGreenState('220', 'rrrGGGGrGGGGG')
traci.trafficlight.setRedYellowGreenState('273', 'rrrGGGGrr')
traci.simulationStep()
traci.vehicle.subscribe('Costa_12_314', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_10_486', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_100_137', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_3_487', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_388', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_532', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_10_488', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Certosa_6_23', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_389', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_10_172', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_533', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_50_315', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_100_172', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_390', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_3_489', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Turati_3_24', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_70_537', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_100_138', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_50_316', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_535', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Nigrisoli_100_136', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrrrrryyyyrrr')
traci.trafficlight.setRedYellowGreenState('231', 'GGggrrrrGGgrrrrrrrryyrrrrrrrrGGGGGgGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'yyyyrrrryyyrrrrrrrryyrrrrrrrrGGGGGgGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGyyyrryy')
traci.trafficlight.setRedYellowGreenState('282', 'yyyrrryyyrrr')
traci.trafficlight.setRedYellowGreenState('220', 'rrrGGGGryyyGG')
traci.trafficlight.setRedYellowGreenState('220', 'rrryyyyryyyyy')
traci.trafficlight.setRedYellowGreenState('209', 'yryGGGg')
traci.trafficlight.setRedYellowGreenState('209', 'yryGGyy')
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrryyyGGrrrr')
traci.simulationStep()
traci.vehicle.subscribe('bus_140_840', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_50_538', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_391', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_490', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Costa_12_317', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_173', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_100_173', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_536', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_491', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrGGggrrrrrrr')
traci.trafficlight.setRedYellowGreenState('231', 'yyyyrrrryyyrrrrGGGgrrGGrrrrrrGGGGGgGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrGGGgGGGgrrGGrrrrrrGGGGGgGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGrrrGGrr')
traci.trafficlight.setRedYellowGreenState('282', 'rrrGGgrrrGGg')
traci.trafficlight.setRedYellowGreenState('220', 'rrryyyyGrrryy')
traci.trafficlight.setRedYellowGreenState('220', 'GGGrrrrGrrrrr')
traci.trafficlight.setRedYellowGreenState('209', 'rGrGGyy')
traci.trafficlight.setRedYellowGreenState('209', 'rGrGGrr')
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrrrrGGrrrr')
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_392', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('XXI_Aprile_7_237', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Costa_50_318', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_539', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Borgo_100_139', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_22_393', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Malvasia_70_174', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('XXI_Aprile_7_238', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_492', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_174', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Costa_70_319', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_540', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_394', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_11_494', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_23_395', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrryyyyrrrrrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrGGGgGGGgrrGGrrrrrryyyyyyyyyyyyrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGrrryyrr')
traci.trafficlight.setRedYellowGreenState('282', 'rrryyyrrryyy')
traci.trafficlight.setRedYellowGreenState('218', 'rrrGGGGrrrrrrrrrrGGG')
traci.trafficlight.setRedYellowGreenState('221', 'yyyrrrryyyyyyyrrrrryyy')
traci.trafficlight.setRedYellowGreenState('220', 'GGGrrrryrrrrr')
traci.trafficlight.setRedYellowGreenState('220', 'yyyrrrryrrrrr')
traci.trafficlight.setRedYellowGreenState('209', 'ryrGGrr')
traci.trafficlight.setRedYellowGreenState('209', 'ryrGGrr')
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrrrrGGrrrr')
traci.simulationStep()
traci.vehicle.subscribe('Costa_70_320', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_2_496', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('218', 'rrrGGGGrrrrGGGGgrGGG')
traci.trafficlight.setRedYellowGreenState('209', 'ryrGGGg')
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrGGGGGrrrr')
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_52_545', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_175', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_62_175', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_100_140', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_541', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_74_396', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Nigrisoli_10_138', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_70_321', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_8_497', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGGGGgrrrrGGGgrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrGGGgGGGgrrGGGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGGGgrrGG')
traci.trafficlight.setRedYellowGreenState('282', 'GGgrrrGGgrrr')
traci.trafficlight.setRedYellowGreenState('220', 'yyyrrrrrGGGrr')
traci.trafficlight.setRedYellowGreenState('220', 'rrrGGGGrGGGGG')
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGGg')
traci.simulationStep()
traci.vehicle.subscribe('XXI_Aprile_7_240', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_542', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_102_397', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('221', 'rrrGGGGrrrrrrrGGGGGrrr')
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_8_498', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Costa_1_322', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Malvasia_70_176', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_546', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_40_548', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_22_398', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_10_176', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_11_500', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_8_499', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('XXI_Aprile_7_241', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_50_323', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_22_399', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.trafficlight.setRedYellowGreenState('230', 'GGGyyyyrrrryyyyrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrGGGgGGGgrryyGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGyyyrryy')
traci.trafficlight.setRedYellowGreenState('233', 'rryyyyrrrryy')
traci.trafficlight.setRedYellowGreenState('282', 'yyyrrryyyrrr')
traci.trafficlight.setRedYellowGreenState('218', 'rrrGGGGrrrryyyyyrGGG')
traci.trafficlight.setRedYellowGreenState('221', 'rrryyyyrrrrrrryyyyyrrr')
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGyy')
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrGGGyyrrrr')
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_547', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_10_502', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_50_324', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_400', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Prati_Capraia_100_177', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_40_551', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_100_177', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_401', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_8_503', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_549', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrGGGgGGGgrrrrGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGrrrGGrr')
traci.trafficlight.setRedYellowGreenState('282', 'rrrGGgrrrGGg')
traci.trafficlight.setRedYellowGreenState('218', 'rrrGGGGrrrrrrrrrrGGG')
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGrr')
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrGGGrrGGGG')
traci.simulationStep()
traci.vehicle.subscribe('Borgo_100_142', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_12_325', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('233', 'GGrrrrGGGgrr')
traci.trafficlight.setRedYellowGreenState('221', 'GGGrrrrGGGGGGGrrrrrGGG')
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_11_504', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_50_552', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_402', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Prati_Capraia_100_178', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_100_178', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_550', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Costa_50_326', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_403', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_1_506', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.simulationStep()
traci.vehicle.subscribe('Costa_50_327', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_100_143', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_50_404', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_10_507', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_553', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrGGGgyyyyrrrrGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrryyyyyyyyrrrrGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGrrryyrr')
traci.trafficlight.setRedYellowGreenState('233', 'yyrrrryyyyrr')
traci.trafficlight.setRedYellowGreenState('218', 'rrrGGGGrrrrrrrrrrGGG')
traci.trafficlight.setRedYellowGreenState('221', 'yyyrrrryyyyyyyrrrrryyy')
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGrr')
traci.trafficlight.setRedYellowGreenState('210', 'rrryyyyyrrryyyrrGGGG')
traci.trafficlight.setRedYellowGreenState('210', 'rrryyyyyrrryyyrryyyy')
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_11_508', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_405', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Nigrisoli_94_141', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_179', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_70_179', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('218', 'rrrGGGGrrrrGGGGgrGGG')
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGGg')
traci.simulationStep()
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_40_558', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Certosa_6_24', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_554', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_50_328', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrryyyyrrrrGGrrGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrrrrrrrrrGGrrGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGGGgrrGG')
traci.trafficlight.setRedYellowGreenState('210', 'GGgrrrrrGGgrrrrryyyy')
traci.trafficlight.setRedYellowGreenState('210', 'GGgrrrrrGGgrrrGGrrrr')
traci.simulationStep()
traci.vehicle.subscribe('Turati_10_25', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_406', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_509', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('233', 'rrGGGgrrrrGG')
traci.trafficlight.setRedYellowGreenState('221', 'rrrGGGGrrrrrrrGGGGGrrr')
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_556', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Costa_1_329', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_407', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_70_180', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_180', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_80_560', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_100_144', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('XXI_Aprile_7_246', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_10_511', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_510', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_408', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_559', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_50_330', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Audinot_3_41', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_8_513', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_409', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_512', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrrrrrrrrryyy')
traci.trafficlight.setRedYellowGreenState('231', 'rrrryyyyrrrrrrrrrrrGGrrGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGyyyrryy')
traci.trafficlight.setRedYellowGreenState('233', 'rryyyyrrrryy')
traci.trafficlight.setRedYellowGreenState('282', 'rrryyyrrryyy')
traci.trafficlight.setRedYellowGreenState('218', 'rrrGGGGrrrryyyyyrGGG')
traci.trafficlight.setRedYellowGreenState('221', 'rrryyyyrrrrrrryyyyyrrr')
traci.trafficlight.setRedYellowGreenState('220', 'rrrGGGGryyyGG')
traci.trafficlight.setRedYellowGreenState('220', 'rrryyyyryyyyy')
traci.trafficlight.setRedYellowGreenState('210', 'yyyrrrrryyyrrrGGrrrr')
traci.trafficlight.setRedYellowGreenState('210', 'yyyrrrrryyyrrryyrrrr')
traci.simulationStep()
traci.vehicle.subscribe('Malvasia_70_181', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_52_563', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_562', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_10_181', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Costa_1_331', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_410', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_100_145', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_10_515', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_514', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrGGggrrrrrrr')
traci.trafficlight.setRedYellowGreenState('231', 'GGggrrrrGGgrrrrrrrrGGrrGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGrrrGGrr')
traci.trafficlight.setRedYellowGreenState('282', 'GGgrrrGGgrrr')
traci.trafficlight.setRedYellowGreenState('218', 'rrrGGGGrrrrrrrrrrGGG')
traci.trafficlight.setRedYellowGreenState('220', 'rrryyyyGrrryy')
traci.trafficlight.setRedYellowGreenState('220', 'GGGrrrrGrrrrr')
traci.trafficlight.setRedYellowGreenState('210', 'yyyrrrrryyyrrrrrGGGG')
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_30_564', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_102_411', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('XXI_Aprile_7_248', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('233', 'GGrrrrGGGgrr')
traci.trafficlight.setRedYellowGreenState('221', 'GGGrrrrGGGGGGGrrrrrGGG')
traci.simulationStep()
traci.vehicle.subscribe('Costa_50_332', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrrrrrrGGGG')
traci.simulationStep()
traci.vehicle.subscribe('Prati_Capraia_100_182', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_516', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_70_182', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_567', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_40_565', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Borgo_100_146', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_70_333', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_3_518', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_517', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_413', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_40_566', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_10_519', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_569', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrryyyyrrrrrrr')
traci.trafficlight.setRedYellowGreenState('233', 'yyrrrryyyyrr')
traci.trafficlight.setRedYellowGreenState('219', 'rrrGGGgrrrrrrrrrrryyyrrryyy')
traci.trafficlight.setRedYellowGreenState('220', 'GGGrrrryrrrrr')
traci.trafficlight.setRedYellowGreenState('209', 'yryGGGg')
traci.trafficlight.setRedYellowGreenState('209', 'yryGGyy')
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrrrrrrGGGG')
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrrrrrryyyy')
traci.simulationStep()
traci.vehicle.subscribe('Costa_50_334', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_95_183', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_414', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_183', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrGGGrryyyy')
traci.simulationStep()
traci.simulationStep()
traci.vehicle.subscribe('Costa_50_335', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('XXI_Aprile_7_251', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_70_571', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_62_415', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrrrrrGGGgrrr')
traci.trafficlight.setRedYellowGreenState('219', 'rrrGGGgrrrrrrrrGGGrrrGGGrrr')
traci.trafficlight.setRedYellowGreenState('220', 'GGGrrrrrGGGrr')
traci.trafficlight.setRedYellowGreenState('209', 'rGrGGyy')
traci.trafficlight.setRedYellowGreenState('209', 'rGrGGrr')
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrGGGGGrrrr')
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_11_521', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('233', 'rrGGGgrrrrGG')
traci.simulationStep()
traci.vehicle.subscribe('Costa_50_336', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_416', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_572', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Malvasia_60_184', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_80_573', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_184', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_417', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_574', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_70_337', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_10_524', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_418', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrrrrryyyyrrr')
traci.trafficlight.setRedYellowGreenState('231', 'yyyyrrrryyyrrrrrrrrGGrrGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('231', 'yyyyrrrryyyrrrrrrrrGGrryyyyyyrrrrrrrrrrrryyy')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGrrryyrr')
traci.trafficlight.setRedYellowGreenState('233', 'rryyyyrrrryy')
traci.trafficlight.setRedYellowGreenState('282', 'yyyrrryyyrrr')
traci.trafficlight.setRedYellowGreenState('219', 'rrrGGGgrrrrrrrryyyrrryyyrrr')
traci.trafficlight.setRedYellowGreenState('218', 'rrryyyyrrrrrrrrrryyG')
traci.trafficlight.setRedYellowGreenState('220', 'GGGrrrrryyyrr')
traci.trafficlight.setRedYellowGreenState('209', 'ryrGGrr')
traci.trafficlight.setRedYellowGreenState('209', 'ryrGGrr')
traci.simulationStep()
traci.vehicle.subscribe('Borgo_20_148', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('bus_9_900', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_1_338', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_576', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_185', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('bus_3_900', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_62_185', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('XXI_Aprile_7_253', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_525', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('209', 'ryrGGGg')
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_3_526', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Nigrisoli_40_146', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Costa_3_339', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrGGggrrrrrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrrrrrrrrrGGrryyyyyyrrrrrrrrrrrryyy')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrrrrrrrrrGGrrrrrrrrGGGGGgGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGGGgrrGG')
traci.trafficlight.setRedYellowGreenState('282', 'rrrGGgrrrGGg')
traci.trafficlight.setRedYellowGreenState('219', 'rrrGGGgrrrrrrrrrrrGGgrrrGGg')
traci.trafficlight.setRedYellowGreenState('218', 'GGGrrrrGGGGrrrrrGrrG')
traci.trafficlight.setRedYellowGreenState('220', 'GGGrrrrGrrrrr')
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGGg')
traci.simulationStep()
traci.vehicle.subscribe('XXI_Aprile_7_254', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_577', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_527', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('233', 'GGrrrrGGGgrr')
traci.simulationStep()
traci.vehicle.subscribe('Malvasia_70_186', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_50_420', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_186', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_22_419', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Costa_70_340', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_578', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_10_529', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_20_149', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_528', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_422', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('XXI_Aprile_5_255', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_580', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_530', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_50_341', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_423', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_187', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Certosa_9_25', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_50_582', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_10_187', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrryyyyrrrrrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrrrrrrrrryyrrrrrrrrGGGGGgGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrrrrrrrrryyrrrrrrrryyyyyyyyyyyyrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGyyyrryy')
traci.trafficlight.setRedYellowGreenState('282', 'rrryyyrrryyy')
traci.trafficlight.setRedYellowGreenState('218', 'yyyrrrryyyyrrrrryrrG')
traci.trafficlight.setRedYellowGreenState('221', 'yyyrrrryyyyyyyrrrrryyy')
traci.trafficlight.setRedYellowGreenState('220', 'GGGrrrryrrrrr')
traci.trafficlight.setRedYellowGreenState('210', 'rrryyyyyrrryyyGGrrrr')
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_10_531', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_424', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_1_343', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_40_583', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_584', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_10_532', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGGGGgrrrrGGGgrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrrrrrGGGgrrrrrrrrrryyyyyyyyyyyyrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrrrrrGGGgrrrrGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGrrrGGrr')
traci.trafficlight.setRedYellowGreenState('282', 'GGgrrrGGgrrr')
traci.trafficlight.setRedYellowGreenState('218', 'rrrGGGGrrrrGGGGgrGGG')
traci.trafficlight.setRedYellowGreenState('220', 'GGGrrrrrGGGrr')
traci.trafficlight.setRedYellowGreenState('210', 'GGgrrrrrGGgrrrGGrrrr')
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_425', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_1_344', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_3_533', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('221', 'rrrGGGGrrrrrrrGGGGGrrr')
traci.simulationStep()
traci.vehicle.subscribe('Prati_Capraia_100_188', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_100_188', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_10_534', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_586', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_426', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_8_535', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('bus_21_900', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_22_427', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_536', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_100_151', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Malvasia_100_189', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_189', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGyyyyrrrryyyyrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrrrrrGGGgrrrrGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrrrrrGGGgrrrrGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrrrrrGGGgrrrryyyyyyrrrrrrrrrrrryyy')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGrrryyrr')
traci.trafficlight.setRedYellowGreenState('282', 'yyyrrryyyrrr')
traci.trafficlight.setRedYellowGreenState('218', 'rrryyyyrrrryyyyyryyG')
traci.trafficlight.setRedYellowGreenState('221', 'rrryyyyrrrrrrryyyyyrrr')
traci.trafficlight.setRedYellowGreenState('220', 'GGGrrrrryyyrr')
traci.trafficlight.setRedYellowGreenState('220', 'yyyrrrrryyyrr')
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGyy')
traci.trafficlight.setRedYellowGreenState('210', 'yyyrrrrryyyrrrGGrrrr')
traci.trafficlight.setRedYellowGreenState('210', 'yyyrrrrryyyrrryyrrrr')
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_428', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_589', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('bus_4_920', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrrrrrGGGgrrGGyyyyyyrrrrrrrrrrrryyy')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrGGGgGGGgrrGGyyyyyyrrrrrrrrrrrryyy')
traci.simulationStep()
traci.vehicle.subscribe('Costa_50_345', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_11_538', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_22_429', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_50_590', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrGGggrrrrrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrGGGgGGGgrrGGrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGGGgrrGG')
traci.trafficlight.setRedYellowGreenState('282', 'rrrGGgrrrGGg')
traci.trafficlight.setRedYellowGreenState('218', 'GGGrrrrGGGGrrrrrGrrG')
traci.trafficlight.setRedYellowGreenState('220', 'yyyrrrrGrrrrr')
traci.trafficlight.setRedYellowGreenState('220', 'rrrGGGGGrrrGG')
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGrr')
traci.trafficlight.setRedYellowGreenState('210', 'yyyrrrrryyyrrrrrGGGG')
traci.simulationStep()
traci.trafficlight.setRedYellowGreenState('221', 'GGGrrrrGGGGGGGrrrrrGGG')
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_52_591', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_10_539', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_190', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_95_190', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_70_346', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_30_430', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrrrrrrGGGG')
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_592', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Nigrisoli_100_150', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_431', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_593', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_12_347', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_541', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.simulationStep()
traci.vehicle.subscribe('Prati_Capraia_100_191', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_8_542', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_10_432', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_100_191', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrryyyyrrrrrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrGGGgyyyyrryyrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrryyyyyyyyrryyrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGyyyrryy')
traci.trafficlight.setRedYellowGreenState('218', 'yyyrrrryyyyrrrrryrrG')
traci.trafficlight.setRedYellowGreenState('209', 'yryGGrr')
traci.trafficlight.setRedYellowGreenState('209', 'yryGGrr')
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_594', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_20_153', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_12_349', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_2_543', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('209', 'yryGGGg')
traci.simulationStep()
traci.vehicle.subscribe('Pertini_73_433', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_11_544', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Nigrisoli_90_151', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGGGGgrrrrGGGgrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrryyyyrrrrGGrrrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrrrrrrrrrGGrrrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGrrrGGrr')
traci.trafficlight.setRedYellowGreenState('218', 'rrrGGGGrrrrGGGGgrGGG')
traci.trafficlight.setRedYellowGreenState('209', 'rGrGGGg')
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_595', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_70_350', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_434', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Malvasia_100_192', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_3_545', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_192', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Costa_70_351', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_435', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Borgo_20_154', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_546', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_596', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_436', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_8_547', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Costa_1_352', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_62_193', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_193', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Nigrisoli_10_152', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_599', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_3_548', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_10_437', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrrrrrrrrryyrrrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrrrrrrrrryyrrrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGrrryyrr')
traci.trafficlight.setRedYellowGreenState('233', 'yyrrrryyyyrr')
traci.trafficlight.setRedYellowGreenState('219', 'rrrGGGgrrrrrrrrrrryyyrrryyy')
traci.trafficlight.setRedYellowGreenState('218', 'rrrGGGGrrrryyyyyrGGG')
traci.trafficlight.setRedYellowGreenState('209', 'ryrGGGg')
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrrrrrrGGGG')
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrrrrrryyyy')
traci.simulationStep()
traci.vehicle.subscribe('Costa_70_353', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrrrrrrrrryyrrrrrrrrGGGGGgGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrGGGrryyyy')
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_600', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_549', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_62_438', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Audinot_3_44', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_40_155', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_8_550', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_12_354', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrrrrrGGGgrrrrrrrrrrGGGGGgGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGGGgrrGG')
traci.trafficlight.setRedYellowGreenState('219', 'rrrGGGgrrrrrrrrGGGrrrGGGrrr')
traci.trafficlight.setRedYellowGreenState('218', 'rrrGGGGrrrrrrrrrrGGG')
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGGg')
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrGGGGGrrrr')
traci.simulationStep()
traci.vehicle.subscribe('Prati_Capraia_100_194', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_30_194', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('233', 'rrGGGgrrrrGG')
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_601', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_551', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_43_439', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_40_605', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_70_355', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Certosa_6_26', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_440', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_602', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_50_606', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_70_356', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_552', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Borgo_100_156', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_195', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_22_441', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_70_195', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('XXI_Aprile_7_267', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGyyyyrrrryyyyrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrrrrrGGGgrrrrrrrrrrGGGGGgGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrrrrrGGGgrrrrrrrrrrGGGGGgGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrrrrrGGGgrrrrrrrrrryyyyyyyyyyyyrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGyyyrryy')
traci.trafficlight.setRedYellowGreenState('282', 'rrryyyrrryyy')
traci.trafficlight.setRedYellowGreenState('220', 'rrrGGGGyrrrGG')
traci.trafficlight.setRedYellowGreenState('220', 'rrryyyyyrrryy')
traci.trafficlight.setRedYellowGreenState('209', 'yryGGGg')
traci.trafficlight.setRedYellowGreenState('210', 'rrryyyyyrrryyyGGrrrr')
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_604', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_554', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_442', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('bus_8_950', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_40_608', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrrrrrGGGgrrGGrrrrrryyyyyyyyyyyyrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrGGGgGGGgrrGGrrrrrryyyyyyyyyyyyrrr')
traci.simulationStep()
traci.vehicle.subscribe('Costa_70_357', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('bus_5_950', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_443', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrGGGgGGGgrrGGGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGrrrGGrr')
traci.trafficlight.setRedYellowGreenState('282', 'GGgrrrGGgrrr')
traci.trafficlight.setRedYellowGreenState('220', 'rrryyyyrGGGyy')
traci.trafficlight.setRedYellowGreenState('220', 'GGGrrrrrGGGrr')
traci.trafficlight.setRedYellowGreenState('209', 'rGrGGGg')
traci.trafficlight.setRedYellowGreenState('210', 'GGgrrrrrGGgrrrGGrrrr')
traci.simulationStep()
traci.vehicle.subscribe('Malvasia_60_196', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_196', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_555', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_607', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Borgo_100_157', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_444', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_1_358', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_609', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_557', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_22_445', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_12_359', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_12_558', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_11_559', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_197', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_94_197', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Costa_12_360', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_446', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrGGGgyyyyrryyGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('231', 'rrrryyyyrrryyyyyyyyrryyGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('231', 'rrrryyyyrrryyyyyyyyrryyyyyyyyrrrrrrrrrrrryyy')
traci.trafficlight.setRedYellowGreenState('219', 'rrrGGGgrrrrrrrryyyrrryyyrrr')
traci.trafficlight.setRedYellowGreenState('221', 'yyyrrrryyyyyyyrrrrryyy')
traci.trafficlight.setRedYellowGreenState('220', 'GGGrrrrryyyrr')
traci.trafficlight.setRedYellowGreenState('209', 'rGrGGyy')
traci.trafficlight.setRedYellowGreenState('210', 'yyyrrrrryyyrrrGGrrrr')
traci.simulationStep()
traci.vehicle.subscribe('bus_1_960', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_20_158', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_8_560', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_10_561', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_615', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_50_361', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_447', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.trafficlight.setRedYellowGreenState('231', 'rrrryyyyrrryyyyrrrrGGrryyyyyyrrrrrrrrrrrryyy')
traci.trafficlight.setRedYellowGreenState('231', 'GGggrrrrGGgrrrrrrrrGGrryyyyyyrrrrrrrrrrrryyy')
traci.trafficlight.setRedYellowGreenState('231', 'GGggrrrrGGgrrrrrrrrGGrrrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('219', 'rrrGGGgrrrrrrrrrrrGGgrrrGGg')
traci.trafficlight.setRedYellowGreenState('220', 'GGGrrrrGrrrrr')
traci.trafficlight.setRedYellowGreenState('209', 'rGrGGrr')
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_448', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_198', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_10_198', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('bus_2_960', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_10_562', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('221', 'rrrGGGGrrrrrrrGGGGGrrr')
traci.simulationStep()
traci.vehicle.subscribe('Audinot_7_45', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('bus_6_960', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_616', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_1_362', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrGGGGGrrrr')
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_449', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_617', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_564', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_8_563', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_40_618', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Costa_50_363', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_20_159', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_450', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Malvasia_62_199', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_199', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_10_565', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_451', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrrrrrrrrryyy')
traci.trafficlight.setRedYellowGreenState('231', 'GGggrrrrGGgrrrrrrrryyrrrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'yyyyrrrryyyrrrrrrrryyrrrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'yyyyrrrryyyrrrrrrrryyrrrrrrrrrrrrrryyyyyyrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGrrryyrr')
traci.trafficlight.setRedYellowGreenState('233', 'rryyyyrrrryy')
traci.trafficlight.setRedYellowGreenState('220', 'GGGrrrryrrrrr')
traci.trafficlight.setRedYellowGreenState('209', 'ryrGGrr')
traci.trafficlight.setRedYellowGreenState('210', 'rrryyyyyrrryyyGGrrrr')
traci.simulationStep()
traci.vehicle.subscribe('Costa_1_364', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_80_621', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_10_566', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.simulationStep()
traci.vehicle.subscribe('Prati_Capraia_100_200', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_40_160', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_452', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_70_200', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_622', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrGGggrrrrrrr')
traci.trafficlight.setRedYellowGreenState('231', 'yyyyrrrryyyrrrrGGGgrrrrrrrrrrrrrrrryyyyyyrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrGGGgGGGgrrrrrrrrrrrrrrrryyyyyyrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrGGGgGGGgrrrrGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGGGgrrGG')
traci.trafficlight.setRedYellowGreenState('220', 'GGGrrrrrGGGrr')
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGrr')
traci.trafficlight.setRedYellowGreenState('210', 'GGgrrrrrGGgrrrGGrrrr')
traci.simulationStep()
traci.vehicle.subscribe('Costa_3_365', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_8_567', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_50_623', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('233', 'GGrrrrGGGgrr')
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_453', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_624', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_50_366', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_569', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_8_568', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_454', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Malvasia_100_201', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_10_201', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_11_570', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_10_455', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Costa_50_367', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_626', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Borgo_20_161', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrryyyyrrrrrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrGGGgGGGgrrrrGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrGGGgGGGgrrrryyyyyyrrrrrrrrrrrryyy')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGyyyrryy')
traci.trafficlight.setRedYellowGreenState('233', 'yyrrrryyyyrr')
traci.trafficlight.setRedYellowGreenState('221', 'rrryyyyrrrrrrryyyyyrrr')
traci.trafficlight.setRedYellowGreenState('220', 'GGGrrrrryyyrr')
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGrr')
traci.trafficlight.setRedYellowGreenState('210', 'yyyrrrrryyyrrrGGrrrr')
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_456', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrGGGgGGGgrrGGyyyyyyrrrrrrrrrrrryyy')
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGGg')
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_627', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_571', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('bus_14_960', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_8_573', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_100_202', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_202', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_50_457', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrGGGgGGGgrrGGrrrrrrGGGGGgGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGrrrGGrr')
traci.trafficlight.setRedYellowGreenState('220', 'GGGrrrrGrrrrr')
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_628', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_572', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('233', 'rrGGGgrrrrGG')
traci.trafficlight.setRedYellowGreenState('221', 'GGGrrrrGGGGGGGrrrrrGGG')
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_458', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrrrrGGrrrr')
traci.simulationStep()
traci.vehicle.subscribe('Audinot_7_46', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_100_162', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_629', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_11_574', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_459', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_203', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_460', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_630', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_42_633', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrrrrrrrrryyy')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGrrryyrr')
traci.trafficlight.setRedYellowGreenState('233', 'rryyyyrrrryy')
traci.trafficlight.setRedYellowGreenState('282', 'yyyrrryyyrrr')
traci.trafficlight.setRedYellowGreenState('221', 'yyyrrrryyyyyyyrrrrryyy')
traci.trafficlight.setRedYellowGreenState('209', 'yryGGGg')
traci.trafficlight.setRedYellowGreenState('209', 'yryGGyy')
traci.simulationStep()
traci.vehicle.subscribe('bus_10_990', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_575', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_461', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_100_163', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_631', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_3_579', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_62_204', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_204', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGGGGgrrrrGGGgrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGGGgrrGG')
traci.trafficlight.setRedYellowGreenState('282', 'rrrGGgrrrGGg')
traci.trafficlight.setRedYellowGreenState('209', 'rGrGGyy')
traci.trafficlight.setRedYellowGreenState('209', 'rGrGGrr')
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_462', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_576', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('233', 'GGrrrrGGGgrr')
traci.trafficlight.setRedYellowGreenState('221', 'rrrGGGGrrrrrrrGGGGGrrr')
traci.simulationStep()
traci.vehicle.subscribe('Nigrisoli_40_161', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_632', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_11_577', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_463', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('XXI_Aprile_7_280', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_8_581', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Prati_Capraia_100_205', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_635', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_92_205', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_40_638', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_464', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_100_164', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_11_578', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_8_583', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_465', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrGGGgyyyyrryyrrrrrrGGGGGgGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrryyyyyyyyrryyrrrrrrGGGGGgGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('282', 'rrryyyrrryyy')
traci.trafficlight.setRedYellowGreenState('220', 'yyyrrrrGrrrrr')
traci.trafficlight.setRedYellowGreenState('209', 'ryrGGrr')
traci.trafficlight.setRedYellowGreenState('209', 'ryrGGrr')
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrrrrGGrrrr')
traci.simulationStep()
traci.vehicle.subscribe('bus_7_1000', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Nigrisoli_90_162', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_637', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('209', 'ryrGGGg')
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrGGGGGrrrr')
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_11_580', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_44_466', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_92_206', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_206', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_639', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_8_584', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrryyyyrrrrGGrrrrrrrrGGGGGgGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrrrrrrrrrGGrrrrrrrrGGGGGgGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('282', 'GGgrrrGGgrrr')
traci.trafficlight.setRedYellowGreenState('220', 'rrrGGGGGrrrGG')
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGGg')
traci.simulationStep()
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_11_582', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_467', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_80_643', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_641', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_468', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Audinot_7_47', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_207', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_586', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_30_207', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_469', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_642', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Borgo_20_166', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGyyyyrrrrGGGgrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrrrrrrrrrGGrrrrrrrrGGGGGgGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrrrrrrrrrGGrrrrrrrryyyyyyyyyyyyrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGyyyrryy')
traci.trafficlight.setRedYellowGreenState('219', 'rrrGGGgrrrrrrrrrrryyyrrryyy')
traci.trafficlight.setRedYellowGreenState('221', 'rrryyyyrrrrrrryyyyyrrr')
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrGGGyyrrrr')
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_11_587', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrGGGgrrrrGGrrrrrrrryyyyyyyyyyyyrrr')
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_644', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_208', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_100_208', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_80_648', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_471', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrrrrrGGGgrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrGGGgrrrrGGrrGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGrrrGGrr')
traci.trafficlight.setRedYellowGreenState('219', 'rrrGGGgrrrrrrrrGGGrrrGGGrrr')
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrGGGrrGGGG')
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_11_588', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_646', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('221', 'GGGrrrrGGGGGGGrrrrrGGG')
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_8_592', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Borgo_100_167', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_472', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Prati_Capraia_10_209', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_10_209', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_589', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('XXI_Aprile_7_286', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_8_593', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_473', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_647', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_11_591', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Nigrisoli_90_165', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Certosa_6_28', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_70_652', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_474', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrrrrrGGGgrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrGGGgrrrryyrrGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('231', 'rrrryyyyrrryyyyrrrryyrrGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('231', 'rrrryyyyrrryyyyrrrryyrryyyyyyrrrrrrrrrrrryyy')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGrrryyrr')
traci.trafficlight.setRedYellowGreenState('233', 'yyrrrryyyyrr')
traci.trafficlight.setRedYellowGreenState('219', 'rrrGGGgrrrrrrrryyyrrryyyrrr')
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrryyyrrGGGG')
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrryyyrryyyy')
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_40_653', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_8_595', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_650', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGGGGgrrrrGGGgrrr')
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_11_594', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_100_168', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_23_475', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_210', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_40_654', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('231', 'rrrryyyyrrryyyyGGGgrrGGyyyyyyrrrrrrrrrrrryyy')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrrrrrGGgrrrrGGGgrrGGyyyyyyrrrrrrrrrrrryyy')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrrrrrGGgrrrrGGGgrrGGrrrrrrGGGGGgGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGGGgrrGG')
traci.trafficlight.setRedYellowGreenState('219', 'rrrGGGgrrrrrrrrrrrGGgrrrGGg')
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrrrrrryyyy')
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrrrrGGrrrr')
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_476', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_10_596', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_651', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('233', 'rrGGGgrrrrGG')
traci.simulationStep()
traci.vehicle.subscribe('XXI_Aprile_7_288', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Nigrisoli_10_166', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_597', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_477', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_655', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_10_598', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_10_211', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_12_599', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_70_211', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_478', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_20_169', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_3_600', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_656', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Audinot_5_48', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.trafficlight.setRedYellowGreenState('230', 'GGGyyyyrrrryyyyrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrrrrrGGgrrrrGGGgrrGGrrrrrrGGGGGgGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('282', 'yyyrrryyyrrr')
traci.trafficlight.setRedYellowGreenState('210', 'rrryyyyyrrrrrrGGrrrr')
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_657', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_8_601', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_479', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('231', 'GGggrrrrGGgrrrrGGGgrrGGrrrrrrGGGGGgGGGggGrrr')
traci.simulationStep()
traci.vehicle.subscribe('Prati_Capraia_100_212', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_93_212', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Nigrisoli_72_167', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_480', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrGGggrrrrrrr')
traci.trafficlight.setRedYellowGreenState('282', 'rrrGGgrrrGGg')
traci.trafficlight.setRedYellowGreenState('210', 'GGgrrrrrGGgrrrGGrrrr')
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_8_602', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_10_603', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_100_170', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_660', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_481', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_50_662', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('XXI_Aprile_7_291', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_11_604', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_22_482', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_213', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_661', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_40_664', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_11_605', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_8_606', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_483', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('XXI_Aprile_7_292', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Borgo_100_171', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrryyyyrrrrrrr')
traci.trafficlight.setRedYellowGreenState('231', 'GGggrrrrGGgrrrrGGGgrryyrrrrrrGGGGGgGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'yyyyrrrryyyrrrrGGGgrryyrrrrrrGGGGGgGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'yyyyrrrryyyrrrrGGGgrryyrrrrrryyyyyyyyyyyyrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGyyyrryy')
traci.trafficlight.setRedYellowGreenState('233', 'rryyyyrrrryy')
traci.trafficlight.setRedYellowGreenState('282', 'rrryyyrrryyy')
traci.trafficlight.setRedYellowGreenState('219', 'rrrGGGgrrrrrrrrrrryyyrrryyy')
traci.trafficlight.setRedYellowGreenState('220', 'rrrGGGGyrrrGG')
traci.trafficlight.setRedYellowGreenState('220', 'rrryyyyyrrryy')
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_484', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Prati_Capraia_100_214', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_92_214', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_607', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_40_666', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_667', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_12_608', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('231', 'yyyyrrrryyyrrrrGGGgrrrrrrrrrryyyyyyyyyyyyrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrGGGgGGGgrrrrrrrrrryyyyyyyyyyyyrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrGGGgGGGgrrrrGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGrrrGGrr')
traci.trafficlight.setRedYellowGreenState('282', 'GGgrrrGGgrrr')
traci.trafficlight.setRedYellowGreenState('219', 'rrrGGGgrrrrrrrrGGGrrrGGGrrr')
traci.trafficlight.setRedYellowGreenState('220', 'rrryyyyrGGGyy')
traci.trafficlight.setRedYellowGreenState('220', 'GGGrrrrrGGGrr')
traci.simulationStep()
traci.vehicle.subscribe('Nigrisoli_50_169', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_22_485', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('233', 'GGrrrrGGGgrr')
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_11_609', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_52_669', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_62_215', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_486', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_10_215', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_100_172', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_487', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_40_670', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_8_611', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Turati_10_30', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_671', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_11_612', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_60_488', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrrrrrrrrryyy')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrGGGgGGGgrrrrGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('231', 'rrrryyyyrrryyyyGGGgrrrrGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('231', 'rrrryyyyrrryyyyGGGgrrrryyyyyyrrrrrrrrrrrryyy')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGrrryyrr')
traci.trafficlight.setRedYellowGreenState('219', 'rrrGGGgrrrrrrrryyyrrryyyrrr')
traci.trafficlight.setRedYellowGreenState('209', 'yryGGGg')
traci.trafficlight.setRedYellowGreenState('210', 'yyyrrrrryyyrrrGGrrrr')
traci.trafficlight.setRedYellowGreenState('210', 'yyyrrrrryyyrrryyrrrr')
traci.simulationStep()
traci.vehicle.subscribe('Audinot_5_49', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_10_613', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_216', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('231', 'rrrryyyyrrryyyyGGGgrrGGyyyyyyrrrrrrrrrrrryyy')
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_672', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_489', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Borgo_100_173', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_614', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrrrrrGGGgrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrrrrrGGgrrrrGGGgrrGGyyyyyyrrrrrrrrrrrryyy')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrrrrrGGgrrrrGGGgrrGGrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGGGgrrGG')
traci.trafficlight.setRedYellowGreenState('219', 'rrrGGGgrrrrrrrrrrrGGgrrrGGg')
traci.trafficlight.setRedYellowGreenState('209', 'rGrGGGg')
traci.trafficlight.setRedYellowGreenState('210', 'yyyrrrrryyyrrrrrGGGG')
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_490', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_673', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrrrrrrGGGG')
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_40_675', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_217', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_491', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_615', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_674', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_3_616', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('XXI_Aprile_7_297', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_492', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_617', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_40_174', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_8_618', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_676', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrrrrrGGGgrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrrrrrGGgrrrrGGGgrrGGrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('209', 'ryrGGGg')
traci.trafficlight.setRedYellowGreenState('210', 'rrryyyyyrrrrrrrrGGGG')
traci.simulationStep()
traci.vehicle.subscribe('Prati_Capraia_100_218', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGGGGgrrrrGGGgrrr')
traci.trafficlight.setRedYellowGreenState('231', 'GGggrrrrGGgrrrrGGGgrrGGrrrrrrrrrrrrGGGggGrrr')
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_60_679', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Nigrisoli_40_172', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_8_619', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_494', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGGg')
traci.trafficlight.setRedYellowGreenState('210', 'GGgrrrrrGGgrrrrrGGGG')
traci.simulationStep()
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_495', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_621', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_20_175', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_8_620', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Prati_Capraia_100_219', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_681', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_496', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('XXI_Aprile_7_300', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_622', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Nigrisoli_10_173', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_683', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_11_623', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('231', 'GGggrrrrGGgrrrryyyyrryyrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'GGggrrrrGGgrrrryyyyrryyrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGyyyrryy')
traci.trafficlight.setRedYellowGreenState('233', 'yyrrrryyyyrr')
traci.trafficlight.setRedYellowGreenState('220', 'GGGrrrrryyyrr')
traci.trafficlight.setRedYellowGreenState('220', 'yyyrrrrryyyrr')
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGyy')
traci.trafficlight.setRedYellowGreenState('210', 'yyyrrrrryyyrrrrrGGGG')
traci.trafficlight.setRedYellowGreenState('210', 'yyyrrrrryyyrrrrryyyy')
traci.simulationStep()
traci.vehicle.subscribe('Prati_Capraia_100_220', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_498', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_100_176', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('231', 'GGggrrrrGGgrrrryyyyrryyrrrrrrGGGGGgGGGggGrrr')
traci.simulationStep()
traci.vehicle.subscribe('Audinot_3_50', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_11_624', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_684', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_40_686', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('231', 'GGggrrrrGGgrrrrrrrrGGrrrrrrrrGGGGGgGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGrrrGGrr')
traci.trafficlight.setRedYellowGreenState('220', 'yyyrrrrGrrrrr')
traci.trafficlight.setRedYellowGreenState('220', 'rrrGGGGGrrrGG')
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGrr')
traci.trafficlight.setRedYellowGreenState('210', 'yyyrrrrryyyrrrGGrrrr')
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_499', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_8_626', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('233', 'rrGGGgrrrrGG')
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_40_687', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_625', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('XXI_Aprile_5_302', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrrrrGGrrrr')
traci.simulationStep()
traci.vehicle.subscribe('Prati_Capraia_100_221', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_8_627', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_11_628', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_62_500', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_100_177', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_688', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_501', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('XXI_Aprile_7_303', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_502', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_94_216', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('231', 'GGggrrrrGGgrrrrrrrryyrrrrrrrrGGGGGgGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'yyyyrrrryyyrrrrrrrryyrrrrrrrrGGGGGgGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('231', 'yyyyrrrryyyrrrrrrrryyrrrrrrrryyyyyyyyyyyyrrr')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGrrryyrr')
traci.trafficlight.setRedYellowGreenState('233', 'rryyyyrrrryy')
traci.trafficlight.setRedYellowGreenState('219', 'rrrGGGgrrrrrrrrrrryyyrrryyy')
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGrr')
traci.simulationStep()
traci.vehicle.subscribe('bus_140_1080', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_60_689', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_629', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_222', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_40_691', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('209', 'GrGGGGg')
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_503', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_80_692', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Borgo_10_178', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('231', 'yyyyrrrryyyrrrrGGGgrrGGrrrrrryyyyyyyyyyyyrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrrrrrGGGgrrGGrrrrrryyyyyyyyyyyyrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrrrrrGGGgrrGGGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGGGgrrGG')
traci.trafficlight.setRedYellowGreenState('219', 'rrrGGGgrrrrrrrrGGGrrrGGGrrr')
traci.simulationStep()
traci.vehicle.subscribe('Turati_10_31', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_630', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('233', 'GGrrrrGGGgrr')
traci.simulationStep()
traci.vehicle.subscribe('Prati_Capraia_100_223', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_11_631', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_3_634', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Nigrisoli_40_176', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_505', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Malvasia_100_217', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Borgo_100_179', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_11_632', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_506', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Prati_Capraia_100_224', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGyyyyrrrrGGGgrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrrrrrGGGgrryyGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('231', 'rrrryyyyrrrrrrrGGGgrryyGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGyyyrryy')
traci.trafficlight.setRedYellowGreenState('233', 'yyrrrryyyyrr')
traci.trafficlight.setRedYellowGreenState('282', 'yyyrrryyyrrr')
traci.trafficlight.setRedYellowGreenState('219', 'rrrGGGgrrrrrrrryyyrrryyyrrr')
traci.trafficlight.setRedYellowGreenState('220', 'rrryyyyGrrryy')
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrrrryyrrrr')
traci.simulationStep()
traci.vehicle.subscribe('Certosa_6_30', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_60_507', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_11_633', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_8_637', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_508', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrrrrrGGGgrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrryyyyrrrrrrrGGGgrrrrGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('231', 'GGggrrrrGGgrrrrGGGgrrrrGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('232', 'GGgGGrrrGGrr')
traci.trafficlight.setRedYellowGreenState('282', 'rrrGGgrrrGGg')
traci.trafficlight.setRedYellowGreenState('219', 'rrrGGGgrrrrrrrrrrrGGgrrrGGg')
traci.trafficlight.setRedYellowGreenState('220', 'GGGrrrrGrrrrr')
traci.trafficlight.setRedYellowGreenState('210', 'rrrGGGGGrrrrrrrrGGGG')
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_3_638', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('233', 'rrGGGgrrrrGG')
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_11_636', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_20_180', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_509', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_225', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_8_639', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_510', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Gandhi_30_702', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_10_640', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_3_641', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_511', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Prati_Capraia_100_226', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrrrrryyyyrrr')
traci.trafficlight.setRedYellowGreenState('231', 'GGggrrrrGGgrrrrGGGgrrrrGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('231', 'yyyyrrrryyyrrrrGGGgrrrrGGGGggrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('231', 'yyyyrrrryyyrrrrGGGgrrrryyyyyyrrrrrrrrrrrryyy')
traci.trafficlight.setRedYellowGreenState('233', 'rryyyyrrrryy')
traci.trafficlight.setRedYellowGreenState('220', 'yyyrrrrGrrrrr')
traci.trafficlight.setRedYellowGreenState('209', 'yryGGGg')
traci.trafficlight.setRedYellowGreenState('209', 'yryGGyy')
traci.trafficlight.setRedYellowGreenState('210', 'rrryyyyyrrrrrrrrGGGG')
traci.simulationStep()
traci.vehicle.subscribe('Borgo_20_181', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_70_704', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_8_642', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('231', 'yyyyrrrryyyrrrrGGGgrrGGyyyyyyrrrrrrrrrrrryyy')
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_512', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_2_643', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrGGggrrrrrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrGGGgGGGgrrGGyyyyyyrrrrrrrrrrrryyy')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrGGGgGGGgrrGGrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('220', 'rrrGGGGGrrrGG')
traci.trafficlight.setRedYellowGreenState('209', 'rGrGGyy')
traci.trafficlight.setRedYellowGreenState('209', 'rGrGGrr')
traci.trafficlight.setRedYellowGreenState('210', 'GGgrrrrrGGgrrrrrGGGG')
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_513', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('233', 'GGrrrrGGGgrr')
traci.simulationStep()
traci.vehicle.subscribe('Prati_Capraia_100_227', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Nigrisoli_90_179', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_10_645', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_514', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_3_644', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Borgo_40_182', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_40_708', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_3_646', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_20_515', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Malvasia_70_218', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.simulationStep()
traci.vehicle.subscribe('XXI_Aprile_7_312', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pertini_44_516', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Prati_Capraia_100_228', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Gandhi_40_709', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Pepoli_8_647', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrryyyyrrrrrrr')
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrGGGgGGGgrrGGrrrrrrrrrrrrGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('282', 'rrryyyrrryyy')
traci.trafficlight.setRedYellowGreenState('219', 'rrrGGGgrrrrrrrrrrryyyrrryyy')
traci.trafficlight.setRedYellowGreenState('221', 'yyyrrrryyyyyyyrrrrryyy')
traci.trafficlight.setRedYellowGreenState('209', 'rGrGGrr')
traci.trafficlight.setRedYellowGreenState('210', 'yyyrrrrryyyrrrrrGGGG')
traci.simulationStep()
traci.vehicle.subscribe('Pepoli_10_648', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('231', 'rrrrGGggrrrGGGgGGGgrrGGrrrrrrGGGGGgGGGggGrrr')
traci.trafficlight.setRedYellowGreenState('209', 'rGrGGGg')
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_517', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.simulationStep()
traci.vehicle.subscribe('Malvasia_100_219', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.vehicle.subscribe('Borgo_20_183', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('230', 'GGGrrrrrrrrrrrrGGg')
traci.trafficlight.setRedYellowGreenState('282', 'GGgrrrGGgrrr')
traci.trafficlight.setRedYellowGreenState('219', 'rrrGGGgrrrrrrrrGGGrrrGGGrrr')
traci.simulationStep()
traci.vehicle.subscribe('Pertini_20_518', [66, 64, 122, 86, 183, 76, 72, 68, 81, 71, 77, 67, 181])
traci.trafficlight.setRedYellowGreenState('221', 'rrrGGGGrrrrrrrGGGGGrrr')
traci.simulationStep()

Back to the top