int subParameter = resp.content().readInt();
resp.content().readUnsignedByte();
int currentPhaseIndex = resp.content().readInt();
SumoTLSLogic stl = new SumoTLSLogic(subID, type, subParameter, currentPhaseIndex);
resp.content().readUnsignedByte();
int nbPhases = resp.content().readInt();
for(int i1=0; i1<nbPhases; i1++){
resp.content().readUnsignedByte();
int duration = resp.content().readInt();
resp.content().readUnsignedByte();
int duration1 = resp.content().readInt();
resp.content().readUnsignedByte();
int duration2 = resp.content().readInt();
resp.content().readUnsignedByte();
String phaseDef = resp.content().readStringASCII();
stl.add(new SumoTLSPhase(duration, duration1, duration2, phaseDef));
}
output = stl;