ratis 3.4.3 → 3.5.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (134) hide show
  1. checksums.yaml +4 -4
  2. data/.ruby-gemset +1 -0
  3. data/.ruby-version +1 -0
  4. data/CHANGELOG +40 -39
  5. data/README.md +1 -15
  6. data/lib/ratis/area.rb +1 -1
  7. data/lib/ratis/config.rb +2 -4
  8. data/lib/ratis/fleet_location.rb +2 -7
  9. data/lib/ratis/landmark.rb +1 -4
  10. data/lib/ratis/location.rb +1 -3
  11. data/lib/ratis/location_type_ahead.rb +1 -4
  12. data/lib/ratis/next_bus.rb +0 -2
  13. data/lib/ratis/next_bus2.rb +1 -3
  14. data/lib/ratis/plantrip.rb +1 -3
  15. data/lib/ratis/request.rb +5 -2
  16. data/lib/ratis/schedule_nearby.rb +1 -3
  17. data/lib/ratis/timetable.rb +1 -5
  18. data/lib/ratis/version.rb +1 -1
  19. data/lib/ratis/walkstop.rb +1 -3
  20. data/ratis.gemspec +15 -15
  21. data/spec/ratis/area_spec.rb +1 -10
  22. data/spec/ratis/closest_stop_spec.rb +0 -14
  23. data/spec/ratis/config_spec.rb +21 -30
  24. data/spec/ratis/core_ext_spec.rb +0 -11
  25. data/spec/ratis/fleet_location_spec.rb +8 -25
  26. data/spec/ratis/itinerary_spec.rb +0 -10
  27. data/spec/ratis/landmark_category_spec.rb +1 -12
  28. data/spec/ratis/landmark_spec.rb +12 -25
  29. data/spec/ratis/location_spec.rb +5 -16
  30. data/spec/ratis/location_type_ahead_item_spec.rb +11 -9
  31. data/spec/ratis/location_type_ahead_spec.rb +7 -21
  32. data/spec/ratis/next_bus2_spec.rb +67 -81
  33. data/spec/ratis/next_bus_spec.rb +20 -37
  34. data/spec/ratis/pattern_spec.rb +2 -10
  35. data/spec/ratis/plantrip_spec.rb +19 -18
  36. data/spec/ratis/point_2_point_spec.rb +3 -11
  37. data/spec/ratis/request_spec.rb +1 -20
  38. data/spec/ratis/route_pattern_spec.rb +2 -14
  39. data/spec/ratis/route_spec.rb +1 -10
  40. data/spec/ratis/route_stops_spec.rb +1 -10
  41. data/spec/ratis/routes_spec.rb +1 -9
  42. data/spec/ratis/schedule_nearby_spec.rb +1 -11
  43. data/spec/ratis/timetable_spec.rb +24 -44
  44. data/spec/ratis/walkstop_spec.rb +22 -47
  45. data/spec/spec_helper.rb +4 -3
  46. data/spec/support/vcr_cassettes/Nextbus2_running_LATE.yml +141 -1
  47. data/spec/support/vcr_cassettes/Nextbus_running_LATE.yml +2 -2
  48. data/spec/support/vcr_cassettes/Point2Point.yml +2 -2
  49. data/spec/support/vcr_cassettes/Ratis_Area/_all/only_makes_one_request.yml +19 -9
  50. data/spec/support/vcr_cassettes/Ratis_ClosestStop/_where/only_makes_one_request.yml +9 -9
  51. data/spec/support/vcr_cassettes/Ratis_ClosestStop/_where/parses_out_the_stop_fields_correctly.yml +9 -9
  52. data/spec/support/vcr_cassettes/Ratis_ClosestStop/_where/returns_multiple_locations.yml +9 -9
  53. data/spec/support/vcr_cassettes/Ratis_ClosestStop/_where/should_return_a_collection_of_Ratis_Stop_s_.yml +9 -9
  54. data/spec/support/vcr_cassettes/Ratis_FleetLocation/_current/only_makes_one_request.yml +661 -563
  55. data/spec/support/vcr_cassettes/Ratis_FleetLocation/_current/parses_out_the_vehicle_fields_correctly.yml +661 -584
  56. data/spec/support/vcr_cassettes/Ratis_FleetLocation/_current/returns_multiple_vehicles.yml +661 -575
  57. data/spec/support/vcr_cassettes/Ratis_FleetLocation/_current/should_return_a_collection_of_Ratis_Vehicle_s_.yml +661 -575
  58. data/spec/support/vcr_cassettes/Ratis_Landmark/_where/only_makes_one_request.yml +67 -1444
  59. data/spec/support/vcr_cassettes/Ratis_Landmark/_where/parses_out_the_landmark_fields_correctly.yml +67 -1444
  60. data/spec/support/vcr_cassettes/Ratis_Landmark/_where/returns_multiple_landmarks.yml +67 -1444
  61. data/spec/support/vcr_cassettes/Ratis_Landmark/_where/should_return_a_collection_of_Ratis_Landmark_s_.yml +67 -1444
  62. data/spec/support/vcr_cassettes/Ratis_LandmarkCategory/_all/only_makes_one_request.yml +9 -9
  63. data/spec/support/vcr_cassettes/Ratis_LandmarkCategory/_all/should_return_a_collection_of_Ratis_LandmarkCategory_s_.yml +9 -9
  64. data/spec/support/vcr_cassettes/Ratis_LandmarkCategory/_all/should_return_all_landmark_categories.yml +9 -9
  65. data/spec/support/vcr_cassettes/Ratis_LandmarkCategory/_web_categories/does_something.yml +9 -9
  66. data/spec/support/vcr_cassettes/Ratis_Location/_where/only_makes_one_request.yml +11 -11
  67. data/spec/support/vcr_cassettes/Ratis_Location/_where/parses_out_fields_correctly.yml +11 -11
  68. data/spec/support/vcr_cassettes/Ratis_Location/_where/should_return_a_collection_of_Ratis_Location_s_.yml +11 -11
  69. data/spec/support/vcr_cassettes/Ratis_LocationTypeAhead/_where/only_makes_one_request.yml +10 -10
  70. data/spec/support/vcr_cassettes/Ratis_LocationTypeAhead/_where/parses_out_fields_correctly.yml +10 -10
  71. data/spec/support/vcr_cassettes/Ratis_LocationTypeAhead/_where/should_return_a_collection_of_Ratis_LocationTypeAheadItem_s_.yml +10 -10
  72. data/spec/support/vcr_cassettes/Ratis_NextBus/_where/multiple_services_returned/only_makes_one_request.yml +29 -28
  73. data/spec/support/vcr_cassettes/Ratis_NextBus/_where/multiple_services_returned/returns_the_next_4_bus_times.yml +29 -28
  74. data/spec/support/vcr_cassettes/Ratis_NextBus/_where/multiple_services_returned/should_map_all_the_services_to_service_openstruct_objects.yml +29 -28
  75. data/spec/support/vcr_cassettes/Ratis_NextBus/_where/multiple_services_returned/should_raise_error_if_datetime_condition_is_not_a_DateTime_or_Time.yml +62 -80
  76. data/spec/support/vcr_cassettes/Ratis_NextBus/_where/single_service_return/only_makes_one_request.yml +18 -17
  77. data/spec/support/vcr_cassettes/Ratis_NextBus/_where/single_service_return/returns_the_next_bus_times.yml +18 -17
  78. data/spec/support/vcr_cassettes/Ratis_NextBus/_where/single_service_return/should_raise_error_if_datetime_condition_is_not_a_DateTime_or_Time.yml +52 -52
  79. data/spec/support/vcr_cassettes/Ratis_NextBus/_where/single_service_return/should_set_all_the_service_values_to_instance_vars.yml +18 -17
  80. data/spec/support/vcr_cassettes/Ratis_NextBus2/_where/runs/should_set_the_run_values_to_instance_vars.yml +125 -0
  81. data/spec/support/vcr_cassettes/Ratis_NextBus2/_where/single_next_bus/only_makes_one_request.yml +125 -0
  82. data/spec/support/vcr_cassettes/Ratis_NextBus2/_where/single_next_bus/requests_the_correct_SOAP_action.yml +125 -0
  83. data/spec/support/vcr_cassettes/Ratis_NextBus2/_where/stops/should_set_the_stop_values_to_instance_vars.yml +125 -0
  84. data/spec/support/vcr_cassettes/Ratis_Pattern/_all/only_makes_one_request.yml +12 -12
  85. data/spec/support/vcr_cassettes/Ratis_Pattern/_all/should_parse_the_route_info_fields.yml +12 -12
  86. data/spec/support/vcr_cassettes/Ratis_Pattern/_all/should_return_a_collection_Pattern_RouteInfo_s_.yml +12 -12
  87. data/spec/support/vcr_cassettes/Ratis_Pattern/_all/should_return_no_data_error_when_date_is_in_the_past.yml +5 -5
  88. data/spec/support/vcr_cassettes/Ratis_Plantrip/_where/creates_Ratis_Itineraries_for_each_trip_itinerary.yml +30 -30
  89. data/spec/support/vcr_cassettes/Ratis_Plantrip/_where/only_makes_one_request.yml +30 -30
  90. data/spec/support/vcr_cassettes/Ratis_Plantrip/_where/returns_a_Plantrip_object.yml +30 -30
  91. data/spec/support/vcr_cassettes/Ratis_Plantrip/_where/should_set_all_the_Plantrip_values_to_instance_vars.yml +30 -30
  92. data/spec/support/vcr_cassettes/Ratis_Point2Point/Routesonly_N/_where/gets_the_groups.yml +68 -74
  93. data/spec/support/vcr_cassettes/Ratis_Point2Point/Routesonly_N/_where/gets_the_trips_within_each_group.yml +68 -74
  94. data/spec/support/vcr_cassettes/Ratis_Point2Point/Routesonly_N/_where/only_makes_one_request.yml +68 -74
  95. data/spec/support/vcr_cassettes/Ratis_Point2Point/Routesonly_N/_where/parses_out_the_off_stop_fields.yml +68 -74
  96. data/spec/support/vcr_cassettes/Ratis_Point2Point/Routesonly_N/_where/parses_out_the_on_stop_fields.yml +68 -74
  97. data/spec/support/vcr_cassettes/Ratis_Point2Point/Routesonly_N/_where/parses_out_the_service.yml +68 -74
  98. data/spec/support/vcr_cassettes/Ratis_Point2Point/Routesonly_N/_where/parses_out_the_trip.yml +68 -74
  99. data/spec/support/vcr_cassettes/Ratis_Point2Point/Routesonly_N/_where/should_only_return_result_groups_for_filtered_route.yml +15 -17
  100. data/spec/support/vcr_cassettes/Ratis_Point2Point/Routesonly_N/_where/should_only_return_result_groups_for_filtered_routes.yml +19 -21
  101. data/spec/support/vcr_cassettes/Ratis_Point2Point/Routesonly_N/_where/should_raise_error_if_the_trip_is_NOT_possible_for_a_route_being_attempted_to_filter_on.yml +5 -5
  102. data/spec/support/vcr_cassettes/Ratis_Point2Point/Routesonly_Y/_where/services_from_origin_to_destination/only_makes_one_request.yml +29 -29
  103. data/spec/support/vcr_cassettes/Ratis_Point2Point/Routesonly_Y/_where/services_from_origin_to_destination/parses_out_service_fields.yml +29 -29
  104. data/spec/support/vcr_cassettes/Ratis_Point2Point/Routesonly_Y/_where/services_from_origin_to_destination/returns_a_routes_only_response_for_each_matched_service.yml +29 -29
  105. data/spec/support/vcr_cassettes/Ratis_Point2Point/Routesonly_Y/_where/services_from_origin_to_destination/returns_all_matching_services_that_fit_the_origin/destination_for_a_given_time_frame.yml +29 -29
  106. data/spec/support/vcr_cassettes/Ratis_Point2Point/Routesonly_Y/_where/services_from_origin_to_destination/should_NOT_filter_by_passed_in_routes.yml +29 -29
  107. data/spec/support/vcr_cassettes/Ratis_RoutePattern/_where/only_makes_one_request.yml +133 -70
  108. data/spec/support/vcr_cassettes/Ratis_RoutePattern/_where/should_parse_the_stop_fields.yml +133 -70
  109. data/spec/support/vcr_cassettes/Ratis_RoutePattern/_where/should_return_a_collection_Ratis_RoutePattern_Point_s_.yml +132 -69
  110. data/spec/support/vcr_cassettes/Ratis_RoutePattern/_where/should_return_a_collection_Ratis_RoutePattern_Stop_s_.yml +133 -70
  111. data/spec/support/vcr_cassettes/Ratis_RouteStops/_all/only_makes_one_request.yml +50 -50
  112. data/spec/support/vcr_cassettes/Ratis_RouteStops/_all/parses_out_the_stop_fields_correctly.yml +50 -50
  113. data/spec/support/vcr_cassettes/Ratis_RouteStops/_all/should_return_a_collection_of_Ratis_RouteStops_Stop_s_.yml +50 -50
  114. data/spec/support/vcr_cassettes/Ratis_Routes/_all/only_makes_one_request.yml +346 -370
  115. data/spec/support/vcr_cassettes/Ratis_Routes/_all/returns_all_routes.yml +346 -370
  116. data/spec/support/vcr_cassettes/Ratis_Routes/_all/should_set_directions_and_short_name_to_variables.yml +346 -370
  117. data/spec/support/vcr_cassettes/Ratis_ScheduleNearby/_where/only_makes_one_request.yml +42 -41
  118. data/spec/support/vcr_cassettes/Ratis_ScheduleNearby/_where/returns_a_non_nil_ScheduleNearby.yml +42 -41
  119. data/spec/support/vcr_cassettes/Ratis_ScheduleNearby/_where/returns_a_single_service_at_the_stop.yml +42 -41
  120. data/spec/support/vcr_cassettes/Ratis_ScheduleNearby/_where/returns_all_the_stops.yml +42 -41
  121. data/spec/support/vcr_cassettes/Ratis_ScheduleNearby/_where/should_return_no_data_error_when_date_is_in_the_past.yml +5 -5
  122. data/spec/support/vcr_cassettes/Ratis_Timetable/_where/ATIS_call/should_not_throw_a_500.yml +719 -0
  123. data/spec/support/vcr_cassettes/Ratis_Timetable/_where/only_makes_one_request.yml +315 -315
  124. data/spec/support/vcr_cassettes/Ratis_Timetable/_where/should_parse_the_timetable/stop/trip_fields.yml +315 -315
  125. data/spec/support/vcr_cassettes/Ratis_Timetable/_where/should_return_a_collection_Timetable_Stop_s_.yml +315 -315
  126. data/spec/support/vcr_cassettes/Ratis_Walkstop/_where/only_makes_one_request.yml +9 -9
  127. data/spec/support/vcr_cassettes/Ratis_Walkstop/_where/should_set_all_the_walkstop_values_to_instance_vars.yml +9 -9
  128. metadata +9 -9
  129. data/.rvmrc +0 -1
  130. data/spec/support/vcr_cassettes/Ratis_LocationTypeAhead/_where/should_return_a_collection_of_Ratis_Location_s_.yml +0 -54
  131. data/spec/support/vcr_cassettes/Ratis_NextBus2/_where/Developer_can_find_a_late_bus_to_a_stop/runs/should_set_the_run_values_to_instance_vars.yml +0 -180
  132. data/spec/support/vcr_cassettes/Ratis_NextBus2/_where/Developer_can_find_a_late_bus_to_a_stop/single_next_bus/only_makes_one_request.yml +0 -180
  133. data/spec/support/vcr_cassettes/Ratis_NextBus2/_where/Developer_can_find_a_late_bus_to_a_stop/single_next_bus/requests_the_correct_SOAP_action.yml +0 -180
  134. data/spec/support/vcr_cassettes/Ratis_NextBus2/_where/Developer_can_find_a_late_bus_to_a_stop/stops/should_set_the_stop_values_to_instance_vars.yml +0 -180
@@ -2,7 +2,7 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: post
5
- uri: http://soap.valleymetro.org/cgi-bin-soap-web-262/soap.cgi
5
+ uri: http://soap.valleymetro.org/cgi-bin-soap-web-271/soap.cgi
6
6
  body:
7
7
  encoding: UTF-8
8
8
  string: <?xml version="1.0" encoding="UTF-8"?><env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
@@ -104,6 +104,6 @@ http_interactions:
104
104
  </Stopped>\n\t\t\t\t\t<Vehicleid></Vehicleid>\n\t\t\t\t\t<Lat>0.000000</Lat>\n\t\t\t\t\t<Long>0.000000</Long>\n\t\t\t\t</Realtime>\n\t\t\t\t<Block>5605</Block>\n\t\t\t\t<Exception>N</Exception>\n\t\t\t</Tripinfo>\n\t\t</Service>\n\t</Atstop>\n\t<Statusinfo></Statusinfo>\n\t<Requestor>68.226.126.17</Requestor>\n\t<Host>s-rpta-soap</Host>\n\t<Copyright>XML
105
105
  schema Copyright (c) 2003-2013 Trapeze Software ULC, its subsidiaries and
106
106
  affiliates. All rights reserved.</Copyright>\n\t<Soapversion>2.6.3 - 11/14/13</Soapversion>\n</namesp1:NextbusResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>"
107
- http_version:
107
+ http_version:
108
108
  recorded_at: Wed, 01 Jan 2014 19:51:59 GMT
109
109
  recorded_with: VCR 2.8.0
@@ -2,7 +2,7 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: post
5
- uri: http://soap.valleymetro.org/cgi-bin-soap-web-262/soap.cgi
5
+ uri: http://soap.valleymetro.org/cgi-bin-soap-web-271/soap.cgi
6
6
  body:
7
7
  encoding: UTF-8
8
8
  string: <?xml version="1.0" encoding="UTF-8"?><env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
@@ -67,6 +67,6 @@ http_interactions:
67
67
  N Glendale 75/Beardsley Via I-10</Signage>\n\t\t\t<Routetype>X</Routetype>\n\t\t\t\t\t\t<Statustype>N</Statustype>\n\t\t</Service>\n\t</Routes>\n\t<Requestor>68.226.126.17</Requestor>\n\t<Host>s-rpta-soap</Host>\n\t<Copyright>XML
68
68
  schema Copyright (c) 2003-2013 Trapeze Software ULC, its subsidiaries and
69
69
  affiliates. All rights reserved.</Copyright>\n\t<Soapversion>2.6.3 - 11/14/13</Soapversion>\n</namesp1:Point2pointResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>"
70
- http_version:
70
+ http_version:
71
71
  recorded_at: Wed, 01 Jan 2014 19:52:00 GMT
72
72
  recorded_with: VCR 2.8.0
@@ -2,20 +2,20 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: post
5
- uri: http://soap.valleymetro.org/cgi-bin-soap-web-262/soap.cgi
5
+ uri: http://soap.valleymetro.org/cgi-bin-soap-web-271/soap.cgi
6
6
  body:
7
7
  encoding: UTF-8
8
8
  string: <?xml version="1.0" encoding="UTF-8"?><env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
9
9
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:wsdl="PX_WEB"
10
10
  xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"><env:Body><Getareas
11
- xmlns="PX_WEB"></Getareas></env:Body></env:Envelope>
11
+ xmlns="PX_WEB"><Appid>ratis-specs</Appid></Getareas></env:Body></env:Envelope>
12
12
  headers:
13
13
  Soapaction:
14
14
  - '"PX_WEB#Getareas"'
15
15
  Content-Type:
16
16
  - text/xml;charset=UTF-8
17
17
  Content-Length:
18
- - '297'
18
+ - '323'
19
19
  Accept-Encoding:
20
20
  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
21
21
  Accept:
@@ -28,13 +28,13 @@ http_interactions:
28
28
  message: OK
29
29
  headers:
30
30
  Date:
31
- - Mon, 06 Jan 2014 23:53:20 GMT
31
+ - Sat, 14 Jun 2014 00:38:45 GMT
32
32
  Server:
33
33
  - Apache/2.2.3 (CentOS)
34
34
  Soapserver:
35
35
  - SOAP::Lite/Perl/0.55
36
36
  Content-Length:
37
- - '787'
37
+ - '3111'
38
38
  Connection:
39
39
  - close
40
40
  Content-Type:
@@ -44,9 +44,19 @@ http_interactions:
44
44
  string: "<?xml version=\"1.0\" encoding=\"UTF-8\"?><SOAP-ENV:Envelope xmlns:xsi=\"http://www.w3.org/1999/XMLSchema-instance\"
45
45
  xmlns:SOAP-ENC=\"http://schemas.xmlsoap.org/soap/encoding/\" xmlns:SOAP-ENV=\"http://schemas.xmlsoap.org/soap/envelope/\"
46
46
  xmlns:xsd=\"http://www.w3.org/1999/XMLSchema\" SOAP-ENV:encodingStyle=\"http://schemas.xmlsoap.org/soap/encoding/\"><SOAP-ENV:Body><namesp1:GetareasResponse
47
- xmlns:namesp1=\"PX_WEB\">\n\t<Responsecode>0</Responsecode>\n\t<Version>1.0</Version>\n\t<Appid></Appid>\n\t<Requestor>68.226.126.17</Requestor>\n\t<Host>s-rpta-soap</Host>\n\t<Copyright>XML
48
- schema Copyright (c) 2003-2013 Trapeze Software ULC, its subsidiaries and
49
- affiliates. All rights reserved.</Copyright>\n\t<Soapversion>2.6.3 - 11/14/13</Soapversion>\n</namesp1:GetareasResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>"
47
+ xmlns:namesp1=\"PX_WEB\">\n\t<Responsecode>0</Responsecode>\n\t<Version>1.0</Version>\n\t<Areainfo>\n\t\t<Description>Apache
48
+ Junction</Description>\n\t\t<Area>AJ</Area>\n\t</Areainfo>\n\t<Areainfo>\n\t\t<Description>Avondale</Description>\n\t\t<Area>AV</Area>\n\t</Areainfo>\n\t<Areainfo>\n\t\t<Description>Buckeye</Description>\n\t\t<Area>BU</Area>\n\t</Areainfo>\n\t<Areainfo>\n\t\t<Description>Carefree</Description>\n\t\t<Area>CA</Area>\n\t</Areainfo>\n\t<Areainfo>\n\t\t<Description>Cave
49
+ Creek</Description>\n\t\t<Area>CC</Area>\n\t</Areainfo>\n\t<Areainfo>\n\t\t<Description>Chandler</Description>\n\t\t<Area>CH</Area>\n\t</Areainfo>\n\t<Areainfo>\n\t\t<Description>El
50
+ Mirage</Description>\n\t\t<Area>EM</Area>\n\t</Areainfo>\n\t<Areainfo>\n\t\t<Description>Fountain
51
+ Hills</Description>\n\t\t<Area>FH</Area>\n\t</Areainfo>\n\t<Areainfo>\n\t\t<Description>Gila
52
+ Bend</Description>\n\t\t<Area>GA</Area>\n\t</Areainfo>\n\t<Areainfo>\n\t\t<Description>Gila
53
+ Bend/Buckeye</Description>\n\t\t<Area>GB</Area>\n\t</Areainfo>\n\t<Areainfo>\n\t\t<Description>Gilbert</Description>\n\t\t<Area>GI</Area>\n\t</Areainfo>\n\t<Areainfo>\n\t\t<Description>Glendale</Description>\n\t\t<Area>GL</Area>\n\t</Areainfo>\n\t<Areainfo>\n\t\t<Description>Goodyear</Description>\n\t\t<Area>GO</Area>\n\t</Areainfo>\n\t<Areainfo>\n\t\t<Description>Goodyear</Description>\n\t\t<Area>GY</Area>\n\t</Areainfo>\n\t<Areainfo>\n\t\t<Description>Guadalupe</Description>\n\t\t<Area>GU</Area>\n\t</Areainfo>\n\t<Areainfo>\n\t\t<Description>Litchfield
54
+ Park</Description>\n\t\t<Area>LP</Area>\n\t</Areainfo>\n\t<Areainfo>\n\t\t<Description>Maricopa
55
+ County</Description>\n\t\t<Area>CO</Area>\n\t</Areainfo>\n\t<Areainfo>\n\t\t<Description>Mesa</Description>\n\t\t<Area>ME</Area>\n\t</Areainfo>\n\t<Areainfo>\n\t\t<Description>Paradise
56
+ Valley</Description>\n\t\t<Area>PV</Area>\n\t</Areainfo>\n\t<Areainfo>\n\t\t<Description>Peoria</Description>\n\t\t<Area>PE</Area>\n\t</Areainfo>\n\t<Areainfo>\n\t\t<Description>Phoenix</Description>\n\t\t<Area>PH</Area>\n\t</Areainfo>\n\t<Areainfo>\n\t\t<Description>Queen
57
+ Creek</Description>\n\t\t<Area>QC</Area>\n\t</Areainfo>\n\t<Areainfo>\n\t\t<Description>Scottsdale</Description>\n\t\t<Area>SC</Area>\n\t</Areainfo>\n\t<Areainfo>\n\t\t<Description>Surprise</Description>\n\t\t<Area>SU</Area>\n\t</Areainfo>\n\t<Areainfo>\n\t\t<Description>Tempe</Description>\n\t\t<Area>TE</Area>\n\t</Areainfo>\n\t<Areainfo>\n\t\t<Description>Tolleson</Description>\n\t\t<Area>TO</Area>\n\t</Areainfo>\n\t<Areainfo>\n\t\t<Description>Wickenburg</Description>\n\t\t<Area>WI</Area>\n\t</Areainfo>\n\t<Areainfo>\n\t\t<Description>Youngtown</Description>\n\t\t<Area>YG</Area>\n\t</Areainfo>\n\t<Appid>ratis-specs</Appid>\n\t<Requestor>72.222.151.25</Requestor>\n\t<Host>s-rpta-soap</Host>\n\t<Copyright>XML
58
+ schema Copyright (c) 2003-2014 Trapeze Software ULC, its subsidiaries and
59
+ affiliates. All rights reserved.</Copyright>\n\t<Soapversion>2.7.1a - 05/14/14</Soapversion>\n</namesp1:GetareasResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>"
50
60
  http_version:
51
- recorded_at: Mon, 06 Jan 2014 23:53:20 GMT
61
+ recorded_at: Sat, 14 Jun 2014 00:38:45 GMT
52
62
  recorded_with: VCR 2.8.0
@@ -2,21 +2,21 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: post
5
- uri: http://soap.valleymetro.org/cgi-bin-soap-web-262/soap.cgi
5
+ uri: http://soap.valleymetro.org/cgi-bin-soap-web-271/soap.cgi
6
6
  body:
7
7
  encoding: UTF-8
8
8
  string: <?xml version="1.0" encoding="UTF-8"?><env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
9
9
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:wsdl="PX_WEB"
10
10
  xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"><env:Body><Closeststop
11
11
  xmlns="PX_WEB"><Locationlat>33.4556</Locationlat><Locationlong>-112.071807</Locationlong><Locationtext>some
12
- location text</Locationtext><Numstops>15</Numstops></Closeststop></env:Body></env:Envelope>
12
+ location text</Locationtext><Numstops>15</Numstops><Appid>ratis-specs</Appid></Closeststop></env:Body></env:Envelope>
13
13
  headers:
14
14
  Soapaction:
15
15
  - '"PX_WEB#Closeststop"'
16
16
  Content-Type:
17
17
  - text/xml;charset=UTF-8
18
18
  Content-Length:
19
- - '447'
19
+ - '473'
20
20
  Accept-Encoding:
21
21
  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
22
22
  Accept:
@@ -29,13 +29,13 @@ http_interactions:
29
29
  message: OK
30
30
  headers:
31
31
  Date:
32
- - Mon, 06 Jan 2014 23:53:24 GMT
32
+ - Sat, 14 Jun 2014 00:38:58 GMT
33
33
  Server:
34
34
  - Apache/2.2.3 (CentOS)
35
35
  Soapserver:
36
36
  - SOAP::Lite/Perl/0.55
37
37
  Content-Length:
38
- - '8057'
38
+ - '8086'
39
39
  Connection:
40
40
  - close
41
41
  Content-Type:
@@ -62,9 +62,9 @@ http_interactions:
62
62
  AVE &amp; FILLMORE ST</Description>\n\t\t\t<Area>Phoenix</Area>\n\t\t\t<Stopid>10160</Stopid>\n\t\t\t<Atisstopid>3796</Atisstopid>\n\t\t\t<Lat>33.454992</Lat>\n\t\t\t<Long>-112.075208</Long>\n\t\t\t<Walkdist>0.27</Walkdist>\n\t\t\t<Walkdir>W</Walkdir>\n\t\t\t<Stopposition>S</Stopposition>\n\t\t\t<Heading>SB</Heading>\n\t\t\t<Side>Near</Side>\n\t\t\t<Routedirs>\n\t\t\t\t<Routedir>10-W</Routedir>\n\t\t\t\t<Routedir>ZERO-S</Routedir>\n\t\t\t</Routedirs>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>ROOSEVELT
63
63
  ST &amp; 1ST ST</Description>\n\t\t\t<Area>Phoenix</Area>\n\t\t\t<Stopid>10851</Stopid>\n\t\t\t<Atisstopid>5864</Atisstopid>\n\t\t\t<Lat>33.458725</Lat>\n\t\t\t<Long>-112.072719</Long>\n\t\t\t<Walkdist>0.27</Walkdist>\n\t\t\t<Walkdir>N</Walkdir>\n\t\t\t<Stopposition>Y</Stopposition>\n\t\t\t<Heading>WB</Heading>\n\t\t\t<Side>Far</Side>\n\t\t\t<Routedirs>\n\t\t\t\t<Routedir>10-W</Routedir>\n\t\t\t</Routedirs>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>ROOSEVELT
64
64
  ST &amp; 3RD ST</Description>\n\t\t\t<Area>Phoenix</Area>\n\t\t\t<Stopid>10850</Stopid>\n\t\t\t<Atisstopid>5873</Atisstopid>\n\t\t\t<Lat>33.458733</Lat>\n\t\t\t<Long>-112.070298</Long>\n\t\t\t<Walkdist>0.30</Walkdist>\n\t\t\t<Walkdir>N</Walkdir>\n\t\t\t<Stopposition>Y</Stopposition>\n\t\t\t<Heading>WB</Heading>\n\t\t\t<Side>Far</Side>\n\t\t\t<Routedirs>\n\t\t\t\t<Routedir>10-W</Routedir>\n\t\t\t</Routedirs>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>ROOSEVELT
65
- ST &amp; 3RD ST</Description>\n\t\t\t<Area>Phoenix</Area>\n\t\t\t<Stopid>10784</Stopid>\n\t\t\t<Atisstopid>635</Atisstopid>\n\t\t\t<Lat>33.458596</Lat>\n\t\t\t<Long>-112.070195</Long>\n\t\t\t<Walkdist>0.31</Walkdist>\n\t\t\t<Walkdir>NE</Walkdir>\n\t\t\t<Stopposition>E</Stopposition>\n\t\t\t<Heading>EB</Heading>\n\t\t\t<Side>Near</Side>\n\t\t\t<Routedirs>\n\t\t\t\t<Routedir>10-E</Routedir>\n\t\t\t</Routedirs>\n\t\t</Stop>\n\t</Stops>\n\t<Requestor>68.226.126.17</Requestor>\n\t<Host>s-rpta-soap</Host>\n\t<Copyright>XML
66
- schema Copyright (c) 2003-2013 Trapeze Software ULC, its subsidiaries and
67
- affiliates. All rights reserved.</Copyright>\n\t<Soapversion>2.6.3 - 11/14/13</Soapversion>\n</namesp1:CloseststopResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>"
65
+ ST &amp; 3RD ST</Description>\n\t\t\t<Area>Phoenix</Area>\n\t\t\t<Stopid>10784</Stopid>\n\t\t\t<Atisstopid>635</Atisstopid>\n\t\t\t<Lat>33.458596</Lat>\n\t\t\t<Long>-112.070195</Long>\n\t\t\t<Walkdist>0.31</Walkdist>\n\t\t\t<Walkdir>NE</Walkdir>\n\t\t\t<Stopposition>E</Stopposition>\n\t\t\t<Heading>EB</Heading>\n\t\t\t<Side>Near</Side>\n\t\t\t<Routedirs>\n\t\t\t\t<Routedir>10-E</Routedir>\n\t\t\t</Routedirs>\n\t\t</Stop>\n\t</Stops>\n\t<Appid>ratis-specs</Appid>\n\t<Requestor>72.222.151.25</Requestor>\n\t<Host>s-rpta-soap</Host>\n\t<Copyright>XML
66
+ schema Copyright (c) 2003-2014 Trapeze Software ULC, its subsidiaries and
67
+ affiliates. All rights reserved.</Copyright>\n\t<Soapversion>2.7.1a - 05/14/14</Soapversion>\n</namesp1:CloseststopResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>"
68
68
  http_version:
69
- recorded_at: Mon, 06 Jan 2014 23:53:24 GMT
69
+ recorded_at: Sat, 14 Jun 2014 00:38:59 GMT
70
70
  recorded_with: VCR 2.8.0
@@ -2,21 +2,21 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: post
5
- uri: http://soap.valleymetro.org/cgi-bin-soap-web-262/soap.cgi
5
+ uri: http://soap.valleymetro.org/cgi-bin-soap-web-271/soap.cgi
6
6
  body:
7
7
  encoding: UTF-8
8
8
  string: <?xml version="1.0" encoding="UTF-8"?><env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
9
9
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:wsdl="PX_WEB"
10
10
  xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"><env:Body><Closeststop
11
11
  xmlns="PX_WEB"><Locationlat>33.4556</Locationlat><Locationlong>-112.071807</Locationlong><Locationtext>some
12
- location text</Locationtext><Numstops>15</Numstops></Closeststop></env:Body></env:Envelope>
12
+ location text</Locationtext><Numstops>15</Numstops><Appid>ratis-specs</Appid></Closeststop></env:Body></env:Envelope>
13
13
  headers:
14
14
  Soapaction:
15
15
  - '"PX_WEB#Closeststop"'
16
16
  Content-Type:
17
17
  - text/xml;charset=UTF-8
18
18
  Content-Length:
19
- - '447'
19
+ - '473'
20
20
  Accept-Encoding:
21
21
  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
22
22
  Accept:
@@ -29,13 +29,13 @@ http_interactions:
29
29
  message: OK
30
30
  headers:
31
31
  Date:
32
- - Mon, 06 Jan 2014 23:53:24 GMT
32
+ - Sat, 14 Jun 2014 00:38:58 GMT
33
33
  Server:
34
34
  - Apache/2.2.3 (CentOS)
35
35
  Soapserver:
36
36
  - SOAP::Lite/Perl/0.55
37
37
  Content-Length:
38
- - '8057'
38
+ - '8086'
39
39
  Connection:
40
40
  - close
41
41
  Content-Type:
@@ -62,9 +62,9 @@ http_interactions:
62
62
  AVE &amp; FILLMORE ST</Description>\n\t\t\t<Area>Phoenix</Area>\n\t\t\t<Stopid>10160</Stopid>\n\t\t\t<Atisstopid>3796</Atisstopid>\n\t\t\t<Lat>33.454992</Lat>\n\t\t\t<Long>-112.075208</Long>\n\t\t\t<Walkdist>0.27</Walkdist>\n\t\t\t<Walkdir>W</Walkdir>\n\t\t\t<Stopposition>S</Stopposition>\n\t\t\t<Heading>SB</Heading>\n\t\t\t<Side>Near</Side>\n\t\t\t<Routedirs>\n\t\t\t\t<Routedir>10-W</Routedir>\n\t\t\t\t<Routedir>ZERO-S</Routedir>\n\t\t\t</Routedirs>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>ROOSEVELT
63
63
  ST &amp; 1ST ST</Description>\n\t\t\t<Area>Phoenix</Area>\n\t\t\t<Stopid>10851</Stopid>\n\t\t\t<Atisstopid>5864</Atisstopid>\n\t\t\t<Lat>33.458725</Lat>\n\t\t\t<Long>-112.072719</Long>\n\t\t\t<Walkdist>0.27</Walkdist>\n\t\t\t<Walkdir>N</Walkdir>\n\t\t\t<Stopposition>Y</Stopposition>\n\t\t\t<Heading>WB</Heading>\n\t\t\t<Side>Far</Side>\n\t\t\t<Routedirs>\n\t\t\t\t<Routedir>10-W</Routedir>\n\t\t\t</Routedirs>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>ROOSEVELT
64
64
  ST &amp; 3RD ST</Description>\n\t\t\t<Area>Phoenix</Area>\n\t\t\t<Stopid>10850</Stopid>\n\t\t\t<Atisstopid>5873</Atisstopid>\n\t\t\t<Lat>33.458733</Lat>\n\t\t\t<Long>-112.070298</Long>\n\t\t\t<Walkdist>0.30</Walkdist>\n\t\t\t<Walkdir>N</Walkdir>\n\t\t\t<Stopposition>Y</Stopposition>\n\t\t\t<Heading>WB</Heading>\n\t\t\t<Side>Far</Side>\n\t\t\t<Routedirs>\n\t\t\t\t<Routedir>10-W</Routedir>\n\t\t\t</Routedirs>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>ROOSEVELT
65
- ST &amp; 3RD ST</Description>\n\t\t\t<Area>Phoenix</Area>\n\t\t\t<Stopid>10784</Stopid>\n\t\t\t<Atisstopid>635</Atisstopid>\n\t\t\t<Lat>33.458596</Lat>\n\t\t\t<Long>-112.070195</Long>\n\t\t\t<Walkdist>0.31</Walkdist>\n\t\t\t<Walkdir>NE</Walkdir>\n\t\t\t<Stopposition>E</Stopposition>\n\t\t\t<Heading>EB</Heading>\n\t\t\t<Side>Near</Side>\n\t\t\t<Routedirs>\n\t\t\t\t<Routedir>10-E</Routedir>\n\t\t\t</Routedirs>\n\t\t</Stop>\n\t</Stops>\n\t<Requestor>68.226.126.17</Requestor>\n\t<Host>s-rpta-soap</Host>\n\t<Copyright>XML
66
- schema Copyright (c) 2003-2013 Trapeze Software ULC, its subsidiaries and
67
- affiliates. All rights reserved.</Copyright>\n\t<Soapversion>2.6.3 - 11/14/13</Soapversion>\n</namesp1:CloseststopResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>"
65
+ ST &amp; 3RD ST</Description>\n\t\t\t<Area>Phoenix</Area>\n\t\t\t<Stopid>10784</Stopid>\n\t\t\t<Atisstopid>635</Atisstopid>\n\t\t\t<Lat>33.458596</Lat>\n\t\t\t<Long>-112.070195</Long>\n\t\t\t<Walkdist>0.31</Walkdist>\n\t\t\t<Walkdir>NE</Walkdir>\n\t\t\t<Stopposition>E</Stopposition>\n\t\t\t<Heading>EB</Heading>\n\t\t\t<Side>Near</Side>\n\t\t\t<Routedirs>\n\t\t\t\t<Routedir>10-E</Routedir>\n\t\t\t</Routedirs>\n\t\t</Stop>\n\t</Stops>\n\t<Appid>ratis-specs</Appid>\n\t<Requestor>72.222.151.25</Requestor>\n\t<Host>s-rpta-soap</Host>\n\t<Copyright>XML
66
+ schema Copyright (c) 2003-2014 Trapeze Software ULC, its subsidiaries and
67
+ affiliates. All rights reserved.</Copyright>\n\t<Soapversion>2.7.1a - 05/14/14</Soapversion>\n</namesp1:CloseststopResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>"
68
68
  http_version:
69
- recorded_at: Mon, 06 Jan 2014 23:53:25 GMT
69
+ recorded_at: Sat, 14 Jun 2014 00:38:58 GMT
70
70
  recorded_with: VCR 2.8.0
@@ -2,21 +2,21 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: post
5
- uri: http://soap.valleymetro.org/cgi-bin-soap-web-262/soap.cgi
5
+ uri: http://soap.valleymetro.org/cgi-bin-soap-web-271/soap.cgi
6
6
  body:
7
7
  encoding: UTF-8
8
8
  string: <?xml version="1.0" encoding="UTF-8"?><env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
9
9
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:wsdl="PX_WEB"
10
10
  xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"><env:Body><Closeststop
11
11
  xmlns="PX_WEB"><Locationlat>33.4556</Locationlat><Locationlong>-112.071807</Locationlong><Locationtext>some
12
- location text</Locationtext><Numstops>15</Numstops></Closeststop></env:Body></env:Envelope>
12
+ location text</Locationtext><Numstops>15</Numstops><Appid>ratis-specs</Appid></Closeststop></env:Body></env:Envelope>
13
13
  headers:
14
14
  Soapaction:
15
15
  - '"PX_WEB#Closeststop"'
16
16
  Content-Type:
17
17
  - text/xml;charset=UTF-8
18
18
  Content-Length:
19
- - '447'
19
+ - '473'
20
20
  Accept-Encoding:
21
21
  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
22
22
  Accept:
@@ -29,13 +29,13 @@ http_interactions:
29
29
  message: OK
30
30
  headers:
31
31
  Date:
32
- - Mon, 06 Jan 2014 23:53:23 GMT
32
+ - Sat, 14 Jun 2014 00:38:59 GMT
33
33
  Server:
34
34
  - Apache/2.2.3 (CentOS)
35
35
  Soapserver:
36
36
  - SOAP::Lite/Perl/0.55
37
37
  Content-Length:
38
- - '8057'
38
+ - '8086'
39
39
  Connection:
40
40
  - close
41
41
  Content-Type:
@@ -62,9 +62,9 @@ http_interactions:
62
62
  AVE &amp; FILLMORE ST</Description>\n\t\t\t<Area>Phoenix</Area>\n\t\t\t<Stopid>10160</Stopid>\n\t\t\t<Atisstopid>3796</Atisstopid>\n\t\t\t<Lat>33.454992</Lat>\n\t\t\t<Long>-112.075208</Long>\n\t\t\t<Walkdist>0.27</Walkdist>\n\t\t\t<Walkdir>W</Walkdir>\n\t\t\t<Stopposition>S</Stopposition>\n\t\t\t<Heading>SB</Heading>\n\t\t\t<Side>Near</Side>\n\t\t\t<Routedirs>\n\t\t\t\t<Routedir>10-W</Routedir>\n\t\t\t\t<Routedir>ZERO-S</Routedir>\n\t\t\t</Routedirs>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>ROOSEVELT
63
63
  ST &amp; 1ST ST</Description>\n\t\t\t<Area>Phoenix</Area>\n\t\t\t<Stopid>10851</Stopid>\n\t\t\t<Atisstopid>5864</Atisstopid>\n\t\t\t<Lat>33.458725</Lat>\n\t\t\t<Long>-112.072719</Long>\n\t\t\t<Walkdist>0.27</Walkdist>\n\t\t\t<Walkdir>N</Walkdir>\n\t\t\t<Stopposition>Y</Stopposition>\n\t\t\t<Heading>WB</Heading>\n\t\t\t<Side>Far</Side>\n\t\t\t<Routedirs>\n\t\t\t\t<Routedir>10-W</Routedir>\n\t\t\t</Routedirs>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>ROOSEVELT
64
64
  ST &amp; 3RD ST</Description>\n\t\t\t<Area>Phoenix</Area>\n\t\t\t<Stopid>10850</Stopid>\n\t\t\t<Atisstopid>5873</Atisstopid>\n\t\t\t<Lat>33.458733</Lat>\n\t\t\t<Long>-112.070298</Long>\n\t\t\t<Walkdist>0.30</Walkdist>\n\t\t\t<Walkdir>N</Walkdir>\n\t\t\t<Stopposition>Y</Stopposition>\n\t\t\t<Heading>WB</Heading>\n\t\t\t<Side>Far</Side>\n\t\t\t<Routedirs>\n\t\t\t\t<Routedir>10-W</Routedir>\n\t\t\t</Routedirs>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>ROOSEVELT
65
- ST &amp; 3RD ST</Description>\n\t\t\t<Area>Phoenix</Area>\n\t\t\t<Stopid>10784</Stopid>\n\t\t\t<Atisstopid>635</Atisstopid>\n\t\t\t<Lat>33.458596</Lat>\n\t\t\t<Long>-112.070195</Long>\n\t\t\t<Walkdist>0.31</Walkdist>\n\t\t\t<Walkdir>NE</Walkdir>\n\t\t\t<Stopposition>E</Stopposition>\n\t\t\t<Heading>EB</Heading>\n\t\t\t<Side>Near</Side>\n\t\t\t<Routedirs>\n\t\t\t\t<Routedir>10-E</Routedir>\n\t\t\t</Routedirs>\n\t\t</Stop>\n\t</Stops>\n\t<Requestor>68.226.126.17</Requestor>\n\t<Host>s-rpta-soap</Host>\n\t<Copyright>XML
66
- schema Copyright (c) 2003-2013 Trapeze Software ULC, its subsidiaries and
67
- affiliates. All rights reserved.</Copyright>\n\t<Soapversion>2.6.3 - 11/14/13</Soapversion>\n</namesp1:CloseststopResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>"
65
+ ST &amp; 3RD ST</Description>\n\t\t\t<Area>Phoenix</Area>\n\t\t\t<Stopid>10784</Stopid>\n\t\t\t<Atisstopid>635</Atisstopid>\n\t\t\t<Lat>33.458596</Lat>\n\t\t\t<Long>-112.070195</Long>\n\t\t\t<Walkdist>0.31</Walkdist>\n\t\t\t<Walkdir>NE</Walkdir>\n\t\t\t<Stopposition>E</Stopposition>\n\t\t\t<Heading>EB</Heading>\n\t\t\t<Side>Near</Side>\n\t\t\t<Routedirs>\n\t\t\t\t<Routedir>10-E</Routedir>\n\t\t\t</Routedirs>\n\t\t</Stop>\n\t</Stops>\n\t<Appid>ratis-specs</Appid>\n\t<Requestor>72.222.151.25</Requestor>\n\t<Host>s-rpta-soap</Host>\n\t<Copyright>XML
66
+ schema Copyright (c) 2003-2014 Trapeze Software ULC, its subsidiaries and
67
+ affiliates. All rights reserved.</Copyright>\n\t<Soapversion>2.7.1a - 05/14/14</Soapversion>\n</namesp1:CloseststopResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>"
68
68
  http_version:
69
- recorded_at: Mon, 06 Jan 2014 23:53:24 GMT
69
+ recorded_at: Sat, 14 Jun 2014 00:38:59 GMT
70
70
  recorded_with: VCR 2.8.0
@@ -2,21 +2,21 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: post
5
- uri: http://soap.valleymetro.org/cgi-bin-soap-web-262/soap.cgi
5
+ uri: http://soap.valleymetro.org/cgi-bin-soap-web-271/soap.cgi
6
6
  body:
7
7
  encoding: UTF-8
8
8
  string: <?xml version="1.0" encoding="UTF-8"?><env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
9
9
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:wsdl="PX_WEB"
10
10
  xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"><env:Body><Closeststop
11
11
  xmlns="PX_WEB"><Locationlat>33.4556</Locationlat><Locationlong>-112.071807</Locationlong><Locationtext>some
12
- location text</Locationtext><Numstops>15</Numstops></Closeststop></env:Body></env:Envelope>
12
+ location text</Locationtext><Numstops>15</Numstops><Appid>ratis-specs</Appid></Closeststop></env:Body></env:Envelope>
13
13
  headers:
14
14
  Soapaction:
15
15
  - '"PX_WEB#Closeststop"'
16
16
  Content-Type:
17
17
  - text/xml;charset=UTF-8
18
18
  Content-Length:
19
- - '447'
19
+ - '473'
20
20
  Accept-Encoding:
21
21
  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
22
22
  Accept:
@@ -29,13 +29,13 @@ http_interactions:
29
29
  message: OK
30
30
  headers:
31
31
  Date:
32
- - Mon, 06 Jan 2014 23:53:24 GMT
32
+ - Sat, 14 Jun 2014 00:39:00 GMT
33
33
  Server:
34
34
  - Apache/2.2.3 (CentOS)
35
35
  Soapserver:
36
36
  - SOAP::Lite/Perl/0.55
37
37
  Content-Length:
38
- - '8057'
38
+ - '8086'
39
39
  Connection:
40
40
  - close
41
41
  Content-Type:
@@ -62,9 +62,9 @@ http_interactions:
62
62
  AVE &amp; FILLMORE ST</Description>\n\t\t\t<Area>Phoenix</Area>\n\t\t\t<Stopid>10160</Stopid>\n\t\t\t<Atisstopid>3796</Atisstopid>\n\t\t\t<Lat>33.454992</Lat>\n\t\t\t<Long>-112.075208</Long>\n\t\t\t<Walkdist>0.27</Walkdist>\n\t\t\t<Walkdir>W</Walkdir>\n\t\t\t<Stopposition>S</Stopposition>\n\t\t\t<Heading>SB</Heading>\n\t\t\t<Side>Near</Side>\n\t\t\t<Routedirs>\n\t\t\t\t<Routedir>10-W</Routedir>\n\t\t\t\t<Routedir>ZERO-S</Routedir>\n\t\t\t</Routedirs>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>ROOSEVELT
63
63
  ST &amp; 1ST ST</Description>\n\t\t\t<Area>Phoenix</Area>\n\t\t\t<Stopid>10851</Stopid>\n\t\t\t<Atisstopid>5864</Atisstopid>\n\t\t\t<Lat>33.458725</Lat>\n\t\t\t<Long>-112.072719</Long>\n\t\t\t<Walkdist>0.27</Walkdist>\n\t\t\t<Walkdir>N</Walkdir>\n\t\t\t<Stopposition>Y</Stopposition>\n\t\t\t<Heading>WB</Heading>\n\t\t\t<Side>Far</Side>\n\t\t\t<Routedirs>\n\t\t\t\t<Routedir>10-W</Routedir>\n\t\t\t</Routedirs>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>ROOSEVELT
64
64
  ST &amp; 3RD ST</Description>\n\t\t\t<Area>Phoenix</Area>\n\t\t\t<Stopid>10850</Stopid>\n\t\t\t<Atisstopid>5873</Atisstopid>\n\t\t\t<Lat>33.458733</Lat>\n\t\t\t<Long>-112.070298</Long>\n\t\t\t<Walkdist>0.30</Walkdist>\n\t\t\t<Walkdir>N</Walkdir>\n\t\t\t<Stopposition>Y</Stopposition>\n\t\t\t<Heading>WB</Heading>\n\t\t\t<Side>Far</Side>\n\t\t\t<Routedirs>\n\t\t\t\t<Routedir>10-W</Routedir>\n\t\t\t</Routedirs>\n\t\t</Stop>\n\t\t<Stop>\n\t\t\t<Description>ROOSEVELT
65
- ST &amp; 3RD ST</Description>\n\t\t\t<Area>Phoenix</Area>\n\t\t\t<Stopid>10784</Stopid>\n\t\t\t<Atisstopid>635</Atisstopid>\n\t\t\t<Lat>33.458596</Lat>\n\t\t\t<Long>-112.070195</Long>\n\t\t\t<Walkdist>0.31</Walkdist>\n\t\t\t<Walkdir>NE</Walkdir>\n\t\t\t<Stopposition>E</Stopposition>\n\t\t\t<Heading>EB</Heading>\n\t\t\t<Side>Near</Side>\n\t\t\t<Routedirs>\n\t\t\t\t<Routedir>10-E</Routedir>\n\t\t\t</Routedirs>\n\t\t</Stop>\n\t</Stops>\n\t<Requestor>68.226.126.17</Requestor>\n\t<Host>s-rpta-soap</Host>\n\t<Copyright>XML
66
- schema Copyright (c) 2003-2013 Trapeze Software ULC, its subsidiaries and
67
- affiliates. All rights reserved.</Copyright>\n\t<Soapversion>2.6.3 - 11/14/13</Soapversion>\n</namesp1:CloseststopResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>"
65
+ ST &amp; 3RD ST</Description>\n\t\t\t<Area>Phoenix</Area>\n\t\t\t<Stopid>10784</Stopid>\n\t\t\t<Atisstopid>635</Atisstopid>\n\t\t\t<Lat>33.458596</Lat>\n\t\t\t<Long>-112.070195</Long>\n\t\t\t<Walkdist>0.31</Walkdist>\n\t\t\t<Walkdir>NE</Walkdir>\n\t\t\t<Stopposition>E</Stopposition>\n\t\t\t<Heading>EB</Heading>\n\t\t\t<Side>Near</Side>\n\t\t\t<Routedirs>\n\t\t\t\t<Routedir>10-E</Routedir>\n\t\t\t</Routedirs>\n\t\t</Stop>\n\t</Stops>\n\t<Appid>ratis-specs</Appid>\n\t<Requestor>72.222.151.25</Requestor>\n\t<Host>s-rpta-soap</Host>\n\t<Copyright>XML
66
+ schema Copyright (c) 2003-2014 Trapeze Software ULC, its subsidiaries and
67
+ affiliates. All rights reserved.</Copyright>\n\t<Soapversion>2.7.1a - 05/14/14</Soapversion>\n</namesp1:CloseststopResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>"
68
68
  http_version:
69
- recorded_at: Mon, 06 Jan 2014 23:53:24 GMT
69
+ recorded_at: Sat, 14 Jun 2014 00:39:00 GMT
70
70
  recorded_with: VCR 2.8.0
@@ -8,14 +8,14 @@ http_interactions:
8
8
  string: <?xml version="1.0" encoding="UTF-8"?><env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
9
9
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:wsdl="PX_WEB"
10
10
  xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"><env:Body><Fleetlocation
11
- xmlns="PX_WEB"><Appid>WEB</Appid></Fleetlocation></env:Body></env:Envelope>
11
+ xmlns="PX_WEB"><Appid>ratis-specs</Appid></Fleetlocation></env:Body></env:Envelope>
12
12
  headers:
13
13
  Soapaction:
14
14
  - '"PX_WEB#Fleetlocation"'
15
15
  Content-Type:
16
16
  - text/xml;charset=UTF-8
17
17
  Content-Length:
18
- - '325'
18
+ - '333'
19
19
  Accept-Encoding:
20
20
  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
21
21
  Accept:
@@ -28,13 +28,13 @@ http_interactions:
28
28
  message: OK
29
29
  headers:
30
30
  Date:
31
- - Wed, 14 May 2014 20:55:27 GMT
31
+ - Sat, 14 Jun 2014 00:39:17 GMT
32
32
  Server:
33
33
  - Apache/2.2.3 (CentOS)
34
34
  Soapserver:
35
35
  - SOAP::Lite/Perl/0.55
36
36
  Content-Length:
37
- - '168693'
37
+ - '196695'
38
38
  Connection:
39
39
  - close
40
40
  Content-Type:
@@ -44,566 +44,664 @@ http_interactions:
44
44
  string: "<?xml version=\"1.0\" encoding=\"UTF-8\"?><SOAP-ENV:Envelope xmlns:xsi=\"http://www.w3.org/1999/XMLSchema-instance\"
45
45
  xmlns:SOAP-ENC=\"http://schemas.xmlsoap.org/soap/encoding/\" xmlns:SOAP-ENV=\"http://schemas.xmlsoap.org/soap/envelope/\"
46
46
  xmlns:xsd=\"http://www.w3.org/1999/XMLSchema\" SOAP-ENV:encodingStyle=\"http://schemas.xmlsoap.org/soap/encoding/\"><SOAP-ENV:Body><namesp1:FleetlocationResponse
47
- xmlns:namesp1=\"PX_WEB\">\n\t<Responsecode>0</Responsecode>\n\t<Version>1.0</Version>\n\t\t<Responsecode>0</Responsecode>\n\t\t<Vehicles>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>1</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:54
48
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6362</Vehicleid>\n\t\t\t\t<Block>1</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>1.49</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>15722</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>7</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:54
49
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6104</Vehicleid>\n\t\t\t\t<Block>10</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>L</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
50
- 0</Heading>\n\t\t\t\t<Routeid>15785</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>50</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:50
51
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6360</Vehicleid>\n\t\t\t\t<Block>100</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>15.65</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16112</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>50</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:54
52
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6288</Vehicleid>\n\t\t\t\t<Block>101</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>6.44</Speed>\n\t\t\t\t<Heading>
53
- 9</Heading>\n\t\t\t\t<Routeid>16097</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>50</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:52
54
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6375</Vehicleid>\n\t\t\t\t<Block>102</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>16.17</Speed>\n\t\t\t\t<Heading>
55
- 9</Heading>\n\t\t\t\t<Routeid>16099</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>7</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:54
56
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6299</Vehicleid>\n\t\t\t\t<Block>11</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>9.12</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>15785</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>52</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:49
57
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6286</Vehicleid>\n\t\t\t\t<Block>112</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>L</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
58
- 0</Heading>\n\t\t\t\t<Routeid>16132</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>60</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:54
59
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6536</Vehicleid>\n\t\t\t\t<Block>119</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>27.99</Speed>\n\t\t\t\t<Heading>
60
- 9</Heading>\n\t\t\t\t<Routeid>16186</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>7</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:54
61
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6365</Vehicleid>\n\t\t\t\t<Block>12</Block>\n\t\t\t\t<Adherance>-3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>9.83</Speed>\n\t\t\t\t<Heading>
62
- 9</Heading>\n\t\t\t\t<Routeid>15781</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>60</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:52
63
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6031</Vehicleid>\n\t\t\t\t<Block>121</Block>\n\t\t\t\t<Adherance>-4</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>14.89</Speed>\n\t\t\t\t<Heading>
64
- 8</Heading>\n\t\t\t\t<Routeid>16190</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>60</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:47
65
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6535</Vehicleid>\n\t\t\t\t<Block>123</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.05</Speed>\n\t\t\t\t<Heading>21</Heading>\n\t\t\t\t<Routeid>16186</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>16</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:53
66
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6293</Vehicleid>\n\t\t\t\t<Block>125</Block>\n\t\t\t\t<Adherance>5</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>15.77</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>15855</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>16</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:53
67
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6303</Vehicleid>\n\t\t\t\t<Block>126</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>8.86</Speed>\n\t\t\t\t<Heading>
68
- 9</Heading>\n\t\t\t\t<Routeid>15855</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>70</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:48
69
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6017</Vehicleid>\n\t\t\t\t<Block>128</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>13.86</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16292</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>70</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:53
70
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6539</Vehicleid>\n\t\t\t\t<Block>129</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>11.47</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16290</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>70</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:53
71
- PM</Updatetime>\n\t\t\t\t<Vehicleid>8012</Vehicleid>\n\t\t\t\t<Block>130</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>28.34</Speed>\n\t\t\t\t<Heading>10</Heading>\n\t\t\t\t<Routeid>16279</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>70</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:53
72
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6349</Vehicleid>\n\t\t\t\t<Block>132</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>19.93</Speed>\n\t\t\t\t<Heading>
73
- 9</Heading>\n\t\t\t\t<Routeid>16282</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>70</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:53
74
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6552</Vehicleid>\n\t\t\t\t<Block>135</Block>\n\t\t\t\t<Adherance>-2</Adherance>\n\t\t\t\t<Adhchange>N</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
75
- 0</Heading>\n\t\t\t\t<Routeid>16292</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>70</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:54
76
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6540</Vehicleid>\n\t\t\t\t<Block>136</Block>\n\t\t\t\t<Adherance>-2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>14.33</Speed>\n\t\t\t\t<Heading>
77
- 9</Heading>\n\t\t\t\t<Routeid>16279</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>70</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:54
78
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6541</Vehicleid>\n\t\t\t\t<Block>137</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>L</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
79
- 0</Heading>\n\t\t\t\t<Routeid>16290</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>8</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:54
80
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6347</Vehicleid>\n\t\t\t\t<Block>14</Block>\n\t\t\t\t<Adherance>5</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>15.51</Speed>\n\t\t\t\t<Heading>16</Heading>\n\t\t\t\t<Routeid>15793</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>70</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:53
81
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6309</Vehicleid>\n\t\t\t\t<Block>140</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>L</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
82
- 0</Heading>\n\t\t\t\t<Routeid>16281</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>70</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:53
83
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6122</Vehicleid>\n\t\t\t\t<Block>142</Block>\n\t\t\t\t<Adherance>-3</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>12.83</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16282</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>70</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:54
84
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6543</Vehicleid>\n\t\t\t\t<Block>143</Block>\n\t\t\t\t<Adherance>3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>27.34</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16290</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>70</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:54
85
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6361</Vehicleid>\n\t\t\t\t<Block>144</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>24.14</Speed>\n\t\t\t\t<Heading>11</Heading>\n\t\t\t\t<Routeid>16291</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>8</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:54
86
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6352</Vehicleid>\n\t\t\t\t<Block>15</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>9.70</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>15789</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>DASG</Route>\n\t\t\t\t<Direction>K</Direction>\n\t\t\t\t<Updatetime>01:53
87
- PM</Updatetime>\n\t\t\t\t<Vehicleid>4164</Vehicleid>\n\t\t\t\t<Block>155</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>14.06</Speed>\n\t\t\t\t<Heading>24</Heading>\n\t\t\t\t<Routeid>16768</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>DASG</Route>\n\t\t\t\t<Direction>K</Direction>\n\t\t\t\t<Updatetime>01:54
88
- PM</Updatetime>\n\t\t\t\t<Vehicleid>4165</Vehicleid>\n\t\t\t\t<Block>156</Block>\n\t\t\t\t<Adherance>3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.12</Speed>\n\t\t\t\t<Heading>
89
- 0</Heading>\n\t\t\t\t<Routeid>16768</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>DASG</Route>\n\t\t\t\t<Direction>K</Direction>\n\t\t\t\t<Updatetime>01:54
90
- PM</Updatetime>\n\t\t\t\t<Vehicleid>4167</Vehicleid>\n\t\t\t\t<Block>157</Block>\n\t\t\t\t<Adherance>4</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>9.53</Speed>\n\t\t\t\t<Heading>
91
- 9</Heading>\n\t\t\t\t<Routeid>16768</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>8</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:53
92
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6368</Vehicleid>\n\t\t\t\t<Block>16</Block>\n\t\t\t\t<Adherance>-2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>16.34</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>15793</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>8</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:54
93
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6343</Vehicleid>\n\t\t\t\t<Block>17</Block>\n\t\t\t\t<Adherance>14</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>7.12</Speed>\n\t\t\t\t<Heading>28</Heading>\n\t\t\t\t<Routeid>15789</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>LTRL</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:50
94
- PM</Updatetime>\n\t\t\t\t<Vehicleid>149</Vehicleid>\n\t\t\t\t<Block>17045</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>48.89</Speed>\n\t\t\t\t<Heading>
95
- 9</Heading>\n\t\t\t\t<Routeid>14482</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>LTRL</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:54
96
- PM</Updatetime>\n\t\t\t\t<Vehicleid>140</Vehicleid>\n\t\t\t\t<Block>17046</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>10.69</Speed>\n\t\t\t\t<Heading>10</Heading>\n\t\t\t\t<Routeid>14484</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>LTRL</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:54
97
- PM</Updatetime>\n\t\t\t\t<Vehicleid>133</Vehicleid>\n\t\t\t\t<Block>17047</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>10</Heading>\n\t\t\t\t<Routeid>14482</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>LTRL</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:54
98
- PM</Updatetime>\n\t\t\t\t<Vehicleid>109</Vehicleid>\n\t\t\t\t<Block>17049</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>25.10</Speed>\n\t\t\t\t<Heading>19</Heading>\n\t\t\t\t<Routeid>14482</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>LTRL</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:54
99
- PM</Updatetime>\n\t\t\t\t<Vehicleid>112</Vehicleid>\n\t\t\t\t<Block>17050</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>22.30</Speed>\n\t\t\t\t<Heading>16</Heading>\n\t\t\t\t<Routeid>14484</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>LTRL</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:54
100
- PM</Updatetime>\n\t\t\t\t<Vehicleid>105</Vehicleid>\n\t\t\t\t<Block>17051</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
101
- 0</Heading>\n\t\t\t\t<Routeid>14482</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>LTRL</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:54
102
- PM</Updatetime>\n\t\t\t\t<Vehicleid>104</Vehicleid>\n\t\t\t\t<Block>17052</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>L</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
103
- 0</Heading>\n\t\t\t\t<Routeid>14484</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>LTRL</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:48
104
- PM</Updatetime>\n\t\t\t\t<Vehicleid>104</Vehicleid>\n\t\t\t\t<Block>17137</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>11</Heading>\n\t\t\t\t<Routeid>14513</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>LTRL</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:54
105
- PM</Updatetime>\n\t\t\t\t<Vehicleid>150</Vehicleid>\n\t\t\t\t<Block>17138</Block>\n\t\t\t\t<Adherance>-3</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>11</Heading>\n\t\t\t\t<Routeid>14515</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>LTRL</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:54
106
- PM</Updatetime>\n\t\t\t\t<Vehicleid>125</Vehicleid>\n\t\t\t\t<Block>17139</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>14513</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>LTRL</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:54
107
- PM</Updatetime>\n\t\t\t\t<Vehicleid>102</Vehicleid>\n\t\t\t\t<Block>17140</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>38.84</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>14515</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>LTRL</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:54
108
- PM</Updatetime>\n\t\t\t\t<Vehicleid>130</Vehicleid>\n\t\t\t\t<Block>17141</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
109
- 0</Heading>\n\t\t\t\t<Routeid>14513</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>LTRL</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:54
110
- PM</Updatetime>\n\t\t\t\t<Vehicleid>120</Vehicleid>\n\t\t\t\t<Block>17142</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>11.60</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>14515</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>LTRL</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:54
111
- PM</Updatetime>\n\t\t\t\t<Vehicleid>114</Vehicleid>\n\t\t\t\t<Block>17143</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.12</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>14513</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>LTRL</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:54
112
- PM</Updatetime>\n\t\t\t\t<Vehicleid>149</Vehicleid>\n\t\t\t\t<Block>17144</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
113
- 0</Heading>\n\t\t\t\t<Routeid>14515</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>ZERO</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:54
114
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6544</Vehicleid>\n\t\t\t\t<Block>189</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>6.09</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16903</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>10</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:53
115
- PM</Updatetime>\n\t\t\t\t<Vehicleid>8004</Vehicleid>\n\t\t\t\t<Block>19</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.11</Speed>\n\t\t\t\t<Heading>25</Heading>\n\t\t\t\t<Routeid>15807</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>ZERO</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:53
116
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6545</Vehicleid>\n\t\t\t\t<Block>190</Block>\n\t\t\t\t<Adherance>-2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>6.49</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16895</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>ZERO</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:50
117
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6546</Vehicleid>\n\t\t\t\t<Block>191</Block>\n\t\t\t\t<Adherance>4</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.07</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16903</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>ZERO</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:53
118
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6547</Vehicleid>\n\t\t\t\t<Block>192</Block>\n\t\t\t\t<Adherance>3</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>3.47</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16895</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>ZERO</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:54
119
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6548</Vehicleid>\n\t\t\t\t<Block>193</Block>\n\t\t\t\t<Adherance>3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>14.43</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16903</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>ZERO</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:54
120
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6549</Vehicleid>\n\t\t\t\t<Block>194</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>5.81</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16895</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>ZERO</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:53
121
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6550</Vehicleid>\n\t\t\t\t<Block>195</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>L</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
122
- 0</Heading>\n\t\t\t\t<Routeid>16903</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>ZERO</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:53
123
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6551</Vehicleid>\n\t\t\t\t<Block>198</Block>\n\t\t\t\t<Adherance>5</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>4.55</Speed>\n\t\t\t\t<Heading>
124
- 9</Heading>\n\t\t\t\t<Routeid>16903</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>7</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:54
125
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6298</Vehicleid>\n\t\t\t\t<Block>2</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>14.33</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>15785</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>10</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:53
126
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6300</Vehicleid>\n\t\t\t\t<Block>20</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>L</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
127
- 0</Heading>\n\t\t\t\t<Routeid>15807</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>ZERO</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:52
128
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6371</Vehicleid>\n\t\t\t\t<Block>200</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>L</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
129
- 0</Heading>\n\t\t\t\t<Routeid>16896</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>3</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:54
130
- PM</Updatetime>\n\t\t\t\t<Vehicleid>8046</Vehicleid>\n\t\t\t\t<Block>2002</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>19</Heading>\n\t\t\t\t<Routeid>15740</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>3</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:54
131
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6501</Vehicleid>\n\t\t\t\t<Block>2003</Block>\n\t\t\t\t<Adherance>7</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15775</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>3</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:53
132
- PM</Updatetime>\n\t\t\t\t<Vehicleid>8032</Vehicleid>\n\t\t\t\t<Block>2004</Block>\n\t\t\t\t<Adherance>-2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>19.10</Speed>\n\t\t\t\t<Heading>
133
- 9</Heading>\n\t\t\t\t<Routeid>15740</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>3</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:53
134
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6509</Vehicleid>\n\t\t\t\t<Block>2005</Block>\n\t\t\t\t<Adherance>3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>13.43</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15775</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>3</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:53
135
- PM</Updatetime>\n\t\t\t\t<Vehicleid>5006</Vehicleid>\n\t\t\t\t<Block>2007</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>13.16</Speed>\n\t\t\t\t<Heading>
136
- 8</Heading>\n\t\t\t\t<Routeid>15776</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>3</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:51
137
- PM</Updatetime>\n\t\t\t\t<Vehicleid>5045</Vehicleid>\n\t\t\t\t<Block>2008</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>22.80</Speed>\n\t\t\t\t<Heading>
138
- 9</Heading>\n\t\t\t\t<Routeid>15740</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>3</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:54
139
- PM</Updatetime>\n\t\t\t\t<Vehicleid>5031</Vehicleid>\n\t\t\t\t<Block>2009</Block>\n\t\t\t\t<Adherance>-5</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>10.81</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15772</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>ZERO</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:51
140
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6330</Vehicleid>\n\t\t\t\t<Block>201</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>1.14</Speed>\n\t\t\t\t<Heading>34</Heading>\n\t\t\t\t<Routeid>16904</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>3</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:54
141
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6505</Vehicleid>\n\t\t\t\t<Block>2010</Block>\n\t\t\t\t<Adherance>4</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>9.43</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15776</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>3</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:51
142
- PM</Updatetime>\n\t\t\t\t<Vehicleid>5001</Vehicleid>\n\t\t\t\t<Block>2011</Block>\n\t\t\t\t<Adherance>-7</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>21.86</Speed>\n\t\t\t\t<Heading>
143
- 9</Heading>\n\t\t\t\t<Routeid>15745</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>3</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:53
144
- PM</Updatetime>\n\t\t\t\t<Vehicleid>5057</Vehicleid>\n\t\t\t\t<Block>2012</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>8.07</Speed>\n\t\t\t\t<Heading>
145
- 9</Heading>\n\t\t\t\t<Routeid>15740</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>3</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:54
146
- PM</Updatetime>\n\t\t\t\t<Vehicleid>5056</Vehicleid>\n\t\t\t\t<Block>2013</Block>\n\t\t\t\t<Adherance>4</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>12.64</Speed>\n\t\t\t\t<Heading>
147
- 9</Heading>\n\t\t\t\t<Routeid>15745</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route></Route>\n\t\t\t\t<Direction>
148
- </Direction>\n\t\t\t\t<Updatetime>01:54 PM</Updatetime>\n\t\t\t\t<Vehicleid>5055</Vehicleid>\n\t\t\t\t<Block>2014</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>N</Inservice>\n\t\t\t\t<Speed>0.06</Speed>\n\t\t\t\t<Heading>
149
- 0</Heading>\n\t\t\t\t<Routeid>0</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route></Route>\n\t\t\t\t<Direction>
150
- </Direction>\n\t\t\t\t<Updatetime>01:53 PM</Updatetime>\n\t\t\t\t<Vehicleid>6523</Vehicleid>\n\t\t\t\t<Block>2015</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>N</Inservice>\n\t\t\t\t<Speed>0.40</Speed>\n\t\t\t\t<Heading>
151
- 0</Heading>\n\t\t\t\t<Routeid>0</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>13</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:54
152
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6524</Vehicleid>\n\t\t\t\t<Block>2018</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>15.43</Speed>\n\t\t\t\t<Heading>
153
- 9</Heading>\n\t\t\t\t<Routeid>15821</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>13</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:53
154
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6522</Vehicleid>\n\t\t\t\t<Block>2019</Block>\n\t\t\t\t<Adherance>4</Adherance>\n\t\t\t\t<Adhchange>N</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
155
- 0</Heading>\n\t\t\t\t<Routeid>15825</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>ZERO</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:53
156
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6332</Vehicleid>\n\t\t\t\t<Block>202</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>29.58</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16896</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>13</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:54
157
- PM</Updatetime>\n\t\t\t\t<Vehicleid>5010</Vehicleid>\n\t\t\t\t<Block>2020</Block>\n\t\t\t\t<Adherance>3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>8.33</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15825</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>13</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:54
158
- PM</Updatetime>\n\t\t\t\t<Vehicleid>5019</Vehicleid>\n\t\t\t\t<Block>2022</Block>\n\t\t\t\t<Adherance>-3</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>14.17</Speed>\n\t\t\t\t<Heading>10</Heading>\n\t\t\t\t<Routeid>15821</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>17</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:53
159
- PM</Updatetime>\n\t\t\t\t<Vehicleid>8038</Vehicleid>\n\t\t\t\t<Block>2024</Block>\n\t\t\t\t<Adherance>5</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.06</Speed>\n\t\t\t\t<Heading>
160
- 9</Heading>\n\t\t\t\t<Routeid>15866</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>17</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:53
161
- PM</Updatetime>\n\t\t\t\t<Vehicleid>5015</Vehicleid>\n\t\t\t\t<Block>2025</Block>\n\t\t\t\t<Adherance>6</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>12.53</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15880</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>17</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:53
162
- PM</Updatetime>\n\t\t\t\t<Vehicleid>8041</Vehicleid>\n\t\t\t\t<Block>2026</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>16.72</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15879</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>17</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:54
163
- PM</Updatetime>\n\t\t\t\t<Vehicleid>8027</Vehicleid>\n\t\t\t\t<Block>2027</Block>\n\t\t\t\t<Adherance>-1</Adherance>\n\t\t\t\t<Adhchange>D</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>18.80</Speed>\n\t\t\t\t<Heading>
164
- 9</Heading>\n\t\t\t\t<Routeid>15866</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>17</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:54
165
- PM</Updatetime>\n\t\t\t\t<Vehicleid>5009</Vehicleid>\n\t\t\t\t<Block>2028</Block>\n\t\t\t\t<Adherance>-1</Adherance>\n\t\t\t\t<Adhchange>D</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>13.82</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15880</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>17</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:54
166
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6531</Vehicleid>\n\t\t\t\t<Block>2029</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>17.74</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15880</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>27</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:52
167
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6139</Vehicleid>\n\t\t\t\t<Block>203</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>12.17</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>15920</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>17</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:54
168
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6526</Vehicleid>\n\t\t\t\t<Block>2030</Block>\n\t\t\t\t<Adherance>14</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>24.93</Speed>\n\t\t\t\t<Heading>
169
- 9</Heading>\n\t\t\t\t<Routeid>15866</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>17</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:53
170
- PM</Updatetime>\n\t\t\t\t<Vehicleid>5047</Vehicleid>\n\t\t\t\t<Block>2031</Block>\n\t\t\t\t<Adherance>4</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>7.65</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15879</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>17</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:52
171
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6525</Vehicleid>\n\t\t\t\t<Block>2032</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>13.51</Speed>\n\t\t\t\t<Heading>
172
- 9</Heading>\n\t\t\t\t<Routeid>15865</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route></Route>\n\t\t\t\t<Direction>
173
- </Direction>\n\t\t\t\t<Updatetime>01:53 PM</Updatetime>\n\t\t\t\t<Vehicleid>8023</Vehicleid>\n\t\t\t\t<Block>2033</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>N</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
174
- 0</Heading>\n\t\t\t\t<Routeid>0</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>17</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:53
175
- PM</Updatetime>\n\t\t\t\t<Vehicleid>5049</Vehicleid>\n\t\t\t\t<Block>2034</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>19.91</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15880</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>17</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:53
176
- PM</Updatetime>\n\t\t\t\t<Vehicleid>8044</Vehicleid>\n\t\t\t\t<Block>2036</Block>\n\t\t\t\t<Adherance>3</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>11.23</Speed>\n\t\t\t\t<Heading>
177
- 9</Heading>\n\t\t\t\t<Routeid>15865</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>17</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:53
178
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6518</Vehicleid>\n\t\t\t\t<Block>2037</Block>\n\t\t\t\t<Adherance>3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>3.14</Speed>\n\t\t\t\t<Heading>
179
- 9</Heading>\n\t\t\t\t<Routeid>15866</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>17</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:54
180
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6517</Vehicleid>\n\t\t\t\t<Block>2038</Block>\n\t\t\t\t<Adherance>4</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>14.75</Speed>\n\t\t\t\t<Heading>
181
- 9</Heading>\n\t\t\t\t<Routeid>15866</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>17</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:54
182
- PM</Updatetime>\n\t\t\t\t<Vehicleid>8036</Vehicleid>\n\t\t\t\t<Block>2040</Block>\n\t\t\t\t<Adherance>7</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.16</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15880</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>17</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:54
183
- PM</Updatetime>\n\t\t\t\t<Vehicleid>5032</Vehicleid>\n\t\t\t\t<Block>2041</Block>\n\t\t\t\t<Adherance>6</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>15.56</Speed>\n\t\t\t\t<Heading>
184
- 9</Heading>\n\t\t\t\t<Routeid>15865</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>17</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:53
185
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6510</Vehicleid>\n\t\t\t\t<Block>2042</Block>\n\t\t\t\t<Adherance>5</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>9.52</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15879</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route></Route>\n\t\t\t\t<Direction>
186
- </Direction>\n\t\t\t\t<Updatetime>01:52 PM</Updatetime>\n\t\t\t\t<Vehicleid>8022</Vehicleid>\n\t\t\t\t<Block>2048</Block>\n\t\t\t\t<Adherance>-5</Adherance>\n\t\t\t\t<Adhchange>N</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>N</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
187
- 0</Heading>\n\t\t\t\t<Routeid>0</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>29</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:53
188
- PM</Updatetime>\n\t\t\t\t<Vehicleid>5035</Vehicleid>\n\t\t\t\t<Block>2049</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>10.78</Speed>\n\t\t\t\t<Heading>
189
- 9</Heading>\n\t\t\t\t<Routeid>15931</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>27</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:53
190
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6377</Vehicleid>\n\t\t\t\t<Block>205</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>9.33</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>15909</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>29</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:52
191
- PM</Updatetime>\n\t\t\t\t<Vehicleid>8039</Vehicleid>\n\t\t\t\t<Block>2050</Block>\n\t\t\t\t<Adherance>3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>2.52</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15942</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>29</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:53
192
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6516</Vehicleid>\n\t\t\t\t<Block>2051</Block>\n\t\t\t\t<Adherance>3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>13.10</Speed>\n\t\t\t\t<Heading>
193
- 9</Heading>\n\t\t\t\t<Routeid>15930</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>29</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:54
194
- PM</Updatetime>\n\t\t\t\t<Vehicleid>5013</Vehicleid>\n\t\t\t\t<Block>2052</Block>\n\t\t\t\t<Adherance>-11</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>15.48</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15941</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>29</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:53
195
- PM</Updatetime>\n\t\t\t\t<Vehicleid>5048</Vehicleid>\n\t\t\t\t<Block>2053</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>17.11</Speed>\n\t\t\t\t<Heading>
196
- 9</Heading>\n\t\t\t\t<Routeid>15932</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>29</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:53
197
- PM</Updatetime>\n\t\t\t\t<Vehicleid>5003</Vehicleid>\n\t\t\t\t<Block>2059</Block>\n\t\t\t\t<Adherance>8</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>18.35</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15944</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route></Route>\n\t\t\t\t<Direction>
198
- </Direction>\n\t\t\t\t<Updatetime>01:53 PM</Updatetime>\n\t\t\t\t<Vehicleid>8031</Vehicleid>\n\t\t\t\t<Block>2060</Block>\n\t\t\t\t<Adherance>-2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>N</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
199
- 0</Heading>\n\t\t\t\t<Routeid>0</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>29</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:53
200
- PM</Updatetime>\n\t\t\t\t<Vehicleid>5008</Vehicleid>\n\t\t\t\t<Block>2062</Block>\n\t\t\t\t<Adherance>6</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>11.42</Speed>\n\t\t\t\t<Heading>
201
- 9</Heading>\n\t\t\t\t<Routeid>15931</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>29</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:53
202
- PM</Updatetime>\n\t\t\t\t<Vehicleid>8037</Vehicleid>\n\t\t\t\t<Block>2064</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>19.32</Speed>\n\t\t\t\t<Heading>22</Heading>\n\t\t\t\t<Routeid>15933</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>29</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:54
203
- PM</Updatetime>\n\t\t\t\t<Vehicleid>5011</Vehicleid>\n\t\t\t\t<Block>2066</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>18.23</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15944</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>29</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:54
204
- PM</Updatetime>\n\t\t\t\t<Vehicleid>5024</Vehicleid>\n\t\t\t\t<Block>2068</Block>\n\t\t\t\t<Adherance>-1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>10.11</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15944</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>27</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:54
205
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6339</Vehicleid>\n\t\t\t\t<Block>207</Block>\n\t\t\t\t<Adherance>-2</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>7.24</Speed>\n\t\t\t\t<Heading>32</Heading>\n\t\t\t\t<Routeid>15908</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>29</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:53
206
- PM</Updatetime>\n\t\t\t\t<Vehicleid>5007</Vehicleid>\n\t\t\t\t<Block>2070</Block>\n\t\t\t\t<Adherance>-6</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>30.69</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15944</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>29</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:53
207
- PM</Updatetime>\n\t\t\t\t<Vehicleid>8034</Vehicleid>\n\t\t\t\t<Block>2072</Block>\n\t\t\t\t<Adherance>4</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>11.30</Speed>\n\t\t\t\t<Heading>
208
- 9</Heading>\n\t\t\t\t<Routeid>15931</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>29</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:54
209
- PM</Updatetime>\n\t\t\t\t<Vehicleid>5038</Vehicleid>\n\t\t\t\t<Block>2074</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>3.28</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15944</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>29</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:54
210
- PM</Updatetime>\n\t\t\t\t<Vehicleid>5054</Vehicleid>\n\t\t\t\t<Block>2075</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>13.26</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15944</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>29</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:53
211
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6568</Vehicleid>\n\t\t\t\t<Block>2077</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>22.38</Speed>\n\t\t\t\t<Heading>23</Heading>\n\t\t\t\t<Routeid>15931</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>44</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:53
212
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6366</Vehicleid>\n\t\t\t\t<Block>208</Block>\n\t\t\t\t<Adherance>-4</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>2.85</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16035</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>29</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:54
213
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6529</Vehicleid>\n\t\t\t\t<Block>2080</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>19.25</Speed>\n\t\t\t\t<Heading>
214
- 9</Heading>\n\t\t\t\t<Routeid>15933</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>41</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:54
215
- PM</Updatetime>\n\t\t\t\t<Vehicleid>5021</Vehicleid>\n\t\t\t\t<Block>2081</Block>\n\t\t\t\t<Adherance>-8</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>16.60</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16020</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>41</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:53
216
- PM</Updatetime>\n\t\t\t\t<Vehicleid>8026</Vehicleid>\n\t\t\t\t<Block>2082</Block>\n\t\t\t\t<Adherance>4</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>5.42</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16022</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route></Route>\n\t\t\t\t<Direction>
217
- </Direction>\n\t\t\t\t<Updatetime>01:52 PM</Updatetime>\n\t\t\t\t<Vehicleid>6530</Vehicleid>\n\t\t\t\t<Block>2083</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>N</Inservice>\n\t\t\t\t<Speed>1.74</Speed>\n\t\t\t\t<Heading>
218
- 0</Heading>\n\t\t\t\t<Routeid>0</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>41</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:54
219
- PM</Updatetime>\n\t\t\t\t<Vehicleid>8028</Vehicleid>\n\t\t\t\t<Block>2084</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>21.36</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16009</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>41</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:53
220
- PM</Updatetime>\n\t\t\t\t<Vehicleid>5012</Vehicleid>\n\t\t\t\t<Block>2085</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>L</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
221
- 0</Heading>\n\t\t\t\t<Routeid>16023</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>41</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:54
222
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6564</Vehicleid>\n\t\t\t\t<Block>2086</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>15.92</Speed>\n\t\t\t\t<Heading>
223
- 9</Heading>\n\t\t\t\t<Routeid>16007</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>41</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:53
224
- PM</Updatetime>\n\t\t\t\t<Vehicleid>8040</Vehicleid>\n\t\t\t\t<Block>2087</Block>\n\t\t\t\t<Adherance>11</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>7.61</Speed>\n\t\t\t\t<Heading>
225
- 0</Heading>\n\t\t\t\t<Routeid>16008</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>41</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:54
226
- PM</Updatetime>\n\t\t\t\t<Vehicleid>5020</Vehicleid>\n\t\t\t\t<Block>2088</Block>\n\t\t\t\t<Adherance>3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>7.65</Speed>\n\t\t\t\t<Heading>
227
- 9</Heading>\n\t\t\t\t<Routeid>16007</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>41</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:53
228
- PM</Updatetime>\n\t\t\t\t<Vehicleid>5042</Vehicleid>\n\t\t\t\t<Block>2089</Block>\n\t\t\t\t<Adherance>3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>19.53</Speed>\n\t\t\t\t<Heading>
229
- 9</Heading>\n\t\t\t\t<Routeid>16009</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>44</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:53
230
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6338</Vehicleid>\n\t\t\t\t<Block>209</Block>\n\t\t\t\t<Adherance>-2</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>14.43</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16035</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>41</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:53
231
- PM</Updatetime>\n\t\t\t\t<Vehicleid>5046</Vehicleid>\n\t\t\t\t<Block>2091</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>D</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>2.99</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16020</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>41</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:54
232
- PM</Updatetime>\n\t\t\t\t<Vehicleid>5039</Vehicleid>\n\t\t\t\t<Block>2092</Block>\n\t\t\t\t<Adherance>3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>21.03</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16020</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>41</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:54
233
- PM</Updatetime>\n\t\t\t\t<Vehicleid>5037</Vehicleid>\n\t\t\t\t<Block>2093</Block>\n\t\t\t\t<Adherance>6</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
234
- 9</Heading>\n\t\t\t\t<Routeid>16007</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>41</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:53
235
- PM</Updatetime>\n\t\t\t\t<Vehicleid>5034</Vehicleid>\n\t\t\t\t<Block>2094</Block>\n\t\t\t\t<Adherance>4</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>12.92</Speed>\n\t\t\t\t<Heading>
236
- 9</Heading>\n\t\t\t\t<Routeid>16008</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>41</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:54
237
- PM</Updatetime>\n\t\t\t\t<Vehicleid>8033</Vehicleid>\n\t\t\t\t<Block>2095</Block>\n\t\t\t\t<Adherance>-4</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>17.83</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16020</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>41</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:51
238
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6511</Vehicleid>\n\t\t\t\t<Block>2096</Block>\n\t\t\t\t<Adherance>-7</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>21.19</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16022</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>41</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:52
239
- PM</Updatetime>\n\t\t\t\t<Vehicleid>8024</Vehicleid>\n\t\t\t\t<Block>2097</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t<Offroute>Y</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16023</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>43</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:49
240
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6503</Vehicleid>\n\t\t\t\t<Block>2098</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>L</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
241
- 0</Heading>\n\t\t\t\t<Routeid>16027</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>43</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:54
242
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6521</Vehicleid>\n\t\t\t\t<Block>2100</Block>\n\t\t\t\t<Adherance>4</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>14.27</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16031</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>43</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:53
243
- PM</Updatetime>\n\t\t\t\t<Vehicleid>5018</Vehicleid>\n\t\t\t\t<Block>2101</Block>\n\t\t\t\t<Adherance>5</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>14.84</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16027</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>43</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:54
244
- PM</Updatetime>\n\t\t\t\t<Vehicleid>5052</Vehicleid>\n\t\t\t\t<Block>2102</Block>\n\t\t\t\t<Adherance>3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.34</Speed>\n\t\t\t\t<Heading>
245
- 0</Heading>\n\t\t\t\t<Routeid>16027</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>51</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:53
246
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6512</Vehicleid>\n\t\t\t\t<Block>2103</Block>\n\t\t\t\t<Adherance>-3</Adherance>\n\t\t\t\t<Adhchange>D</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>6.65</Speed>\n\t\t\t\t<Heading>
247
- 1</Heading>\n\t\t\t\t<Routeid>16122</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>51</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:53
248
- PM</Updatetime>\n\t\t\t\t<Vehicleid>5060</Vehicleid>\n\t\t\t\t<Block>2104</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>5.75</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16118</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>51</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:53
249
- PM</Updatetime>\n\t\t\t\t<Vehicleid>5027</Vehicleid>\n\t\t\t\t<Block>2105</Block>\n\t\t\t\t<Adherance>3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>12.65</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16122</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>51</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:53
250
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6528</Vehicleid>\n\t\t\t\t<Block>2106</Block>\n\t\t\t\t<Adherance>-1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>19.31</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16118</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>59</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:53
251
- PM</Updatetime>\n\t\t\t\t<Vehicleid>5033</Vehicleid>\n\t\t\t\t<Block>2107</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>5.17</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16182</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>59</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:53
252
- PM</Updatetime>\n\t\t\t\t<Vehicleid>5029</Vehicleid>\n\t\t\t\t<Block>2108</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>5.82</Speed>\n\t\t\t\t<Heading>35</Heading>\n\t\t\t\t<Routeid>16176</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>59</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:54
253
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6532</Vehicleid>\n\t\t\t\t<Block>2109</Block>\n\t\t\t\t<Adherance>4</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>13.62</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16176</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>59</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:53
254
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6519</Vehicleid>\n\t\t\t\t<Block>2110</Block>\n\t\t\t\t<Adherance>3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>12.02</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16182</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>59</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:53
255
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6502</Vehicleid>\n\t\t\t\t<Block>2112</Block>\n\t\t\t\t<Adherance>3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>13.17</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16182</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>67</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:51
256
- PM</Updatetime>\n\t\t\t\t<Vehicleid>5028</Vehicleid>\n\t\t\t\t<Block>2115</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>11.90</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16263</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>67</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:53
257
- PM</Updatetime>\n\t\t\t\t<Vehicleid>5051</Vehicleid>\n\t\t\t\t<Block>2116</Block>\n\t\t\t\t<Adherance>3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>10.50</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16270</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>67</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:54
258
- PM</Updatetime>\n\t\t\t\t<Vehicleid>5050</Vehicleid>\n\t\t\t\t<Block>2117</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>22.25</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16263</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>67</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:53
259
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6514</Vehicleid>\n\t\t\t\t<Block>2118</Block>\n\t\t\t\t<Adherance>-2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>14.35</Speed>\n\t\t\t\t<Heading>14</Heading>\n\t\t\t\t<Routeid>16270</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>67</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:53
260
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6563</Vehicleid>\n\t\t\t\t<Block>2119</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>23.60</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16270</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>16</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:51
261
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6307</Vehicleid>\n\t\t\t\t<Block>212</Block>\n\t\t\t\t<Adherance>-1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>19.80</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>15854</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>67</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:54
262
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6562</Vehicleid>\n\t\t\t\t<Block>2120</Block>\n\t\t\t\t<Adherance>3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>20.42</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16263</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>MARY</Route>\n\t\t\t\t<Direction>K</Direction>\n\t\t\t\t<Updatetime>01:54
263
- PM</Updatetime>\n\t\t\t\t<Vehicleid>3765</Vehicleid>\n\t\t\t\t<Block>2126</Block>\n\t\t\t\t<Adherance>3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>7.12</Speed>\n\t\t\t\t<Heading>
264
- 9</Heading>\n\t\t\t\t<Routeid>16820</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>MARY</Route>\n\t\t\t\t<Direction>K</Direction>\n\t\t\t\t<Updatetime>01:53
265
- PM</Updatetime>\n\t\t\t\t<Vehicleid>3002</Vehicleid>\n\t\t\t\t<Block>2128</Block>\n\t\t\t\t<Adherance>5</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>8.86</Speed>\n\t\t\t\t<Heading>24</Heading>\n\t\t\t\t<Routeid>16820</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>52</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:53
266
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6363</Vehicleid>\n\t\t\t\t<Block>213</Block>\n\t\t\t\t<Adherance>5</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.05</Speed>\n\t\t\t\t<Heading>
267
- 4</Heading>\n\t\t\t\t<Routeid>16127</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>METS</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:53
268
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6506</Vehicleid>\n\t\t\t\t<Block>2133</Block>\n\t\t\t\t<Adherance>-3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>8.41</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16832</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>METS</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:51
269
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6515</Vehicleid>\n\t\t\t\t<Block>2134</Block>\n\t\t\t\t<Adherance>-1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>17.25</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16832</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>METS</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:54
270
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6508</Vehicleid>\n\t\t\t\t<Block>2135</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>14.92</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16836</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>52</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:53
271
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6369</Vehicleid>\n\t\t\t\t<Block>214</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>15.80</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16132</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>16</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:54
272
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6284</Vehicleid>\n\t\t\t\t<Block>216</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>13.45</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>15842</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>10</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:54
273
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6355</Vehicleid>\n\t\t\t\t<Block>22</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>13.77</Speed>\n\t\t\t\t<Heading>
274
- 9</Heading>\n\t\t\t\t<Routeid>15799</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>10</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:53
275
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6364</Vehicleid>\n\t\t\t\t<Block>23</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>14.26</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>15807</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>10</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:54
276
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6593</Vehicleid>\n\t\t\t\t<Block>25</Block>\n\t\t\t\t<Adherance>-2</Adherance>\n\t\t\t\t<Adhchange>N</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
277
- 0</Heading>\n\t\t\t\t<Routeid>15799</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>10</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:54
278
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6328</Vehicleid>\n\t\t\t\t<Block>26</Block>\n\t\t\t\t<Adherance>-6</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>39.53</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15807</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>12</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:54
279
- PM</Updatetime>\n\t\t\t\t<Vehicleid>8016</Vehicleid>\n\t\t\t\t<Block>27</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>13.33</Speed>\n\t\t\t\t<Heading>20</Heading>\n\t\t\t\t<Routeid>15817</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>7</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:53
280
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6558</Vehicleid>\n\t\t\t\t<Block>3</Block>\n\t\t\t\t<Adherance>-1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>20.30</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>15785</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>15</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:53
281
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6022</Vehicleid>\n\t\t\t\t<Block>31</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>18.85</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>15833</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>15</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:54
282
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6025</Vehicleid>\n\t\t\t\t<Block>32</Block>\n\t\t\t\t<Adherance>-3</Adherance>\n\t\t\t\t<Adhchange>N</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
283
- 0</Heading>\n\t\t\t\t<Routeid>15829</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>15</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:52
284
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6030</Vehicleid>\n\t\t\t\t<Block>33</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>8.14</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>15829</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>16</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:54
285
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6556</Vehicleid>\n\t\t\t\t<Block>34</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>21.76</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>15854</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>16</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:52
286
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6557</Vehicleid>\n\t\t\t\t<Block>35</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>L</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
287
- 0</Heading>\n\t\t\t\t<Routeid>15854</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>16</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:53
288
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6596</Vehicleid>\n\t\t\t\t<Block>36</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>16.78</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>15854</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>16</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:53
289
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6348</Vehicleid>\n\t\t\t\t<Block>37</Block>\n\t\t\t\t<Adherance>-9</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>33.76</Speed>\n\t\t\t\t<Heading>
290
- 0</Heading>\n\t\t\t\t<Routeid>15842</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>7</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:52
291
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6559</Vehicleid>\n\t\t\t\t<Block>4</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>10.25</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>15785</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>MTCC</Route>\n\t\t\t\t<Direction>L</Direction>\n\t\t\t\t<Updatetime>01:53
292
- PM</Updatetime>\n\t\t\t\t<Vehicleid>1586</Vehicleid>\n\t\t\t\t<Block>4001</Block>\n\t\t\t\t<Adherance>5</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.06</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16841</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>MTCC</Route>\n\t\t\t\t<Direction>L</Direction>\n\t\t\t\t<Updatetime>01:51
293
- PM</Updatetime>\n\t\t\t\t<Vehicleid>1585</Vehicleid>\n\t\t\t\t<Block>4002</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>21.60</Speed>\n\t\t\t\t<Heading>13</Heading>\n\t\t\t\t<Routeid>16841</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>FSHB</Route>\n\t\t\t\t<Direction>K</Direction>\n\t\t\t\t<Updatetime>01:54
294
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6455</Vehicleid>\n\t\t\t\t<Block>4004</Block>\n\t\t\t\t<Adherance>-3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>10.39</Speed>\n\t\t\t\t<Heading>19</Heading>\n\t\t\t\t<Routeid>16782</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>FSHB</Route>\n\t\t\t\t<Direction>K</Direction>\n\t\t\t\t<Updatetime>01:53
295
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6631</Vehicleid>\n\t\t\t\t<Block>4005</Block>\n\t\t\t\t<Adherance>-1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>8.76</Speed>\n\t\t\t\t<Heading>
296
- 5</Heading>\n\t\t\t\t<Routeid>16782</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>FSHB</Route>\n\t\t\t\t<Direction>K</Direction>\n\t\t\t\t<Updatetime>01:54
297
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6648</Vehicleid>\n\t\t\t\t<Block>4006</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>4.77</Speed>\n\t\t\t\t<Heading>10</Heading>\n\t\t\t\t<Routeid>16782</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>FSHF</Route>\n\t\t\t\t<Direction>C</Direction>\n\t\t\t\t<Updatetime>01:54
298
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6454</Vehicleid>\n\t\t\t\t<Block>4007</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>10.28</Speed>\n\t\t\t\t<Heading>25</Heading>\n\t\t\t\t<Routeid>16784</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route></Route>\n\t\t\t\t<Direction>
299
- </Direction>\n\t\t\t\t<Updatetime>01:52 PM</Updatetime>\n\t\t\t\t<Vehicleid>6634</Vehicleid>\n\t\t\t\t<Block>4008</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>N</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
300
- 0</Heading>\n\t\t\t\t<Routeid>0</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>FSHF</Route>\n\t\t\t\t<Direction>C</Direction>\n\t\t\t\t<Updatetime>01:54
301
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6635</Vehicleid>\n\t\t\t\t<Block>4009</Block>\n\t\t\t\t<Adherance>-9</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>8.33</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16784</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>7</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:52
302
- PM</Updatetime>\n\t\t\t\t<Vehicleid>5102</Vehicleid>\n\t\t\t\t<Block>402</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>D</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>2.10</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>15781</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>7</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:53
303
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6243</Vehicleid>\n\t\t\t\t<Block>403</Block>\n\t\t\t\t<Adherance>-8</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>7.53</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>15781</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>7</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:53
304
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6586</Vehicleid>\n\t\t\t\t<Block>404</Block>\n\t\t\t\t<Adherance>3</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>18.35</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>15781</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>7</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:50
305
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6227</Vehicleid>\n\t\t\t\t<Block>405</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
306
- 0</Heading>\n\t\t\t\t<Routeid>15785</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>30</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:54
307
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6669</Vehicleid>\n\t\t\t\t<Block>4063</Block>\n\t\t\t\t<Adherance>-4</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>18.32</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15966</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>30</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:53
308
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6680</Vehicleid>\n\t\t\t\t<Block>4065</Block>\n\t\t\t\t<Adherance>-1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>13.67</Speed>\n\t\t\t\t<Heading>
309
- 9</Heading>\n\t\t\t\t<Routeid>15954</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>30</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:54
310
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6744</Vehicleid>\n\t\t\t\t<Block>4066</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>18.78</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>15966</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>45</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:51
311
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6639</Vehicleid>\n\t\t\t\t<Block>4068</Block>\n\t\t\t\t<Adherance>-4</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>8.56</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16069</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>45</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:54
312
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6630</Vehicleid>\n\t\t\t\t<Block>4069</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>2.67</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16069</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>12</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:53
313
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6245</Vehicleid>\n\t\t\t\t<Block>407</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>24.10</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>15813</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>45</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:53
314
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6608</Vehicleid>\n\t\t\t\t<Block>4070</Block>\n\t\t\t\t<Adherance>4</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>13.20</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16069</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>45</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:54
315
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6620</Vehicleid>\n\t\t\t\t<Block>4071</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>6.68</Speed>\n\t\t\t\t<Heading>
316
- 9</Heading>\n\t\t\t\t<Routeid>16050</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>45</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:54
317
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6457</Vehicleid>\n\t\t\t\t<Block>4073</Block>\n\t\t\t\t<Adherance>-1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>8.89</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16050</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>45</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:52
318
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6612</Vehicleid>\n\t\t\t\t<Block>4074</Block>\n\t\t\t\t<Adherance>-4</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>8.09</Speed>\n\t\t\t\t<Heading>
319
- 9</Heading>\n\t\t\t\t<Routeid>16050</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>45</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:49
320
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6644</Vehicleid>\n\t\t\t\t<Block>4075</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>L</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
321
- 0</Heading>\n\t\t\t\t<Routeid>16069</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>45</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:53
322
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6646</Vehicleid>\n\t\t\t\t<Block>4077</Block>\n\t\t\t\t<Adherance>5</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>24.47</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16069</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>45</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:51
323
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6650</Vehicleid>\n\t\t\t\t<Block>4079</Block>\n\t\t\t\t<Adherance>-1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>17.52</Speed>\n\t\t\t\t<Heading>
324
- 9</Heading>\n\t\t\t\t<Routeid>16050</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>12</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:53
325
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6239</Vehicleid>\n\t\t\t\t<Block>408</Block>\n\t\t\t\t<Adherance>-2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>17.02</Speed>\n\t\t\t\t<Heading>
326
- 9</Heading>\n\t\t\t\t<Routeid>15817</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>61</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:53
327
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6611</Vehicleid>\n\t\t\t\t<Block>4080</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.07</Speed>\n\t\t\t\t<Heading>25</Heading>\n\t\t\t\t<Routeid>16227</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>48</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:54
328
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6683</Vehicleid>\n\t\t\t\t<Block>4083</Block>\n\t\t\t\t<Adherance>-2</Adherance>\n\t\t\t\t<Adhchange>D</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>9.91</Speed>\n\t\t\t\t<Heading>31</Heading>\n\t\t\t\t<Routeid>16078</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>66</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:54
329
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6743</Vehicleid>\n\t\t\t\t<Block>4084</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>9.31</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16256</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>66</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:54
330
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6672</Vehicleid>\n\t\t\t\t<Block>4085</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>10.12</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16249</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>48</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:54
331
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6706</Vehicleid>\n\t\t\t\t<Block>4086</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>14.10</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16085</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>66</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:53
332
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6643</Vehicleid>\n\t\t\t\t<Block>4087</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>1.26</Speed>\n\t\t\t\t<Heading>
333
- 9</Heading>\n\t\t\t\t<Routeid>16249</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>56</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:53
334
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6703</Vehicleid>\n\t\t\t\t<Block>4088</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>25.51</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16152</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>56</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:54
335
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6616</Vehicleid>\n\t\t\t\t<Block>4089</Block>\n\t\t\t\t<Adherance>4</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>7.55</Speed>\n\t\t\t\t<Heading>
336
- 7</Heading>\n\t\t\t\t<Routeid>16170</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>19</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:53
337
- PM</Updatetime>\n\t\t\t\t<Vehicleid>5087</Vehicleid>\n\t\t\t\t<Block>409</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>14.18</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>15899</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>56</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:54
338
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6686</Vehicleid>\n\t\t\t\t<Block>4091</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>24.73</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16152</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>56</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:54
339
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6637</Vehicleid>\n\t\t\t\t<Block>4094</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>9.28</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16170</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route></Route>\n\t\t\t\t<Direction>
340
- </Direction>\n\t\t\t\t<Updatetime>01:52 PM</Updatetime>\n\t\t\t\t<Vehicleid>6736</Vehicleid>\n\t\t\t\t<Block>4095</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>N</Inservice>\n\t\t\t\t<Speed>7.78</Speed>\n\t\t\t\t<Heading>
341
- 0</Heading>\n\t\t\t\t<Routeid>0</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>81</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:54
342
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6614</Vehicleid>\n\t\t\t\t<Block>4096</Block>\n\t\t\t\t<Adherance>-3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>10.49</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16394</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>16</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:53
343
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6333</Vehicleid>\n\t\t\t\t<Block>41</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>31.70</Speed>\n\t\t\t\t<Heading>
344
- 1</Heading>\n\t\t\t\t<Routeid>15842</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>19</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:53
345
- PM</Updatetime>\n\t\t\t\t<Vehicleid>5086</Vehicleid>\n\t\t\t\t<Block>410</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>9.62</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>15899</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>61</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:52
346
- PM</Updatetime>\n\t\t\t\t<Vehicleid>8074</Vehicleid>\n\t\t\t\t<Block>4101</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>L</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
347
- 0</Heading>\n\t\t\t\t<Routeid>16205</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>61</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:53
348
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6627</Vehicleid>\n\t\t\t\t<Block>4103</Block>\n\t\t\t\t<Adherance>-1</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>7.19</Speed>\n\t\t\t\t<Heading>15</Heading>\n\t\t\t\t<Routeid>16205</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>61</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:54
349
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6704</Vehicleid>\n\t\t\t\t<Block>4104</Block>\n\t\t\t\t<Adherance>-6</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>11.34</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16224</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>61</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:53
350
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6628</Vehicleid>\n\t\t\t\t<Block>4106</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>12.55</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16224</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>61</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:54
351
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6746</Vehicleid>\n\t\t\t\t<Block>4109</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>10.59</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16224</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>19</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:54
352
- PM</Updatetime>\n\t\t\t\t<Vehicleid>5062</Vehicleid>\n\t\t\t\t<Block>411</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
353
- 0</Heading>\n\t\t\t\t<Routeid>15899</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>61</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:53
354
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6675</Vehicleid>\n\t\t\t\t<Block>4110</Block>\n\t\t\t\t<Adherance>4</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>1.81</Speed>\n\t\t\t\t<Heading>
355
- 9</Heading>\n\t\t\t\t<Routeid>16205</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>62</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:52
356
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6697</Vehicleid>\n\t\t\t\t<Block>4116</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>11</Heading>\n\t\t\t\t<Routeid>16237</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>62</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:53
357
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6700</Vehicleid>\n\t\t\t\t<Block>4117</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>14.15</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16232</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>62</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:52
358
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6695</Vehicleid>\n\t\t\t\t<Block>4118</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>15.56</Speed>\n\t\t\t\t<Heading>33</Heading>\n\t\t\t\t<Routeid>16237</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route></Route>\n\t\t\t\t<Direction>
359
- </Direction>\n\t\t\t\t<Updatetime>01:53 PM</Updatetime>\n\t\t\t\t<Vehicleid>6711</Vehicleid>\n\t\t\t\t<Block>4119</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>N</Inservice>\n\t\t\t\t<Speed>2.58</Speed>\n\t\t\t\t<Heading>
360
- 0</Heading>\n\t\t\t\t<Routeid>0</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>65</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:53
361
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6713</Vehicleid>\n\t\t\t\t<Block>4120</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>7.43</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16245</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>65</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:53
362
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6598</Vehicleid>\n\t\t\t\t<Block>4121</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>26.26</Speed>\n\t\t\t\t<Heading>
363
- 3</Heading>\n\t\t\t\t<Routeid>16241</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>66</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:54
364
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6739</Vehicleid>\n\t\t\t\t<Block>4123</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>L</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
365
- 0</Heading>\n\t\t\t\t<Routeid>16256</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>72</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:53
366
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6737</Vehicleid>\n\t\t\t\t<Block>4124</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>D</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>12.23</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16321</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>72</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:52
367
- PM</Updatetime>\n\t\t\t\t<Vehicleid>8072</Vehicleid>\n\t\t\t\t<Block>4125</Block>\n\t\t\t\t<Adherance>-5</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>8.69</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16305</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>72</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:54
368
- PM</Updatetime>\n\t\t\t\t<Vehicleid>8073</Vehicleid>\n\t\t\t\t<Block>4126</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>11.73</Speed>\n\t\t\t\t<Heading>33</Heading>\n\t\t\t\t<Routeid>16305</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>72</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:53
369
- PM</Updatetime>\n\t\t\t\t<Vehicleid>8077</Vehicleid>\n\t\t\t\t<Block>4127</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>26.95</Speed>\n\t\t\t\t<Heading>24</Heading>\n\t\t\t\t<Routeid>16321</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>72</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:53
370
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6670</Vehicleid>\n\t\t\t\t<Block>4128</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>L</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
371
- 0</Heading>\n\t\t\t\t<Routeid>16305</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>72</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:53
372
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6707</Vehicleid>\n\t\t\t\t<Block>4129</Block>\n\t\t\t\t<Adherance>-2</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>14.49</Speed>\n\t\t\t\t<Heading>
373
- 0</Heading>\n\t\t\t\t<Routeid>16305</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>19</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:54
374
- PM</Updatetime>\n\t\t\t\t<Vehicleid>8062</Vehicleid>\n\t\t\t\t<Block>413</Block>\n\t\t\t\t<Adherance>-1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>16.20</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>15889</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>72</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:54
375
- PM</Updatetime>\n\t\t\t\t<Vehicleid>8075</Vehicleid>\n\t\t\t\t<Block>4130</Block>\n\t\t\t\t<Adherance>5</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>3.30</Speed>\n\t\t\t\t<Heading>30</Heading>\n\t\t\t\t<Routeid>16321</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>72</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:53
376
- PM</Updatetime>\n\t\t\t\t<Vehicleid>8076</Vehicleid>\n\t\t\t\t<Block>4131</Block>\n\t\t\t\t<Adherance>-4</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>23.94</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16321</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>72</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:54
377
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6742</Vehicleid>\n\t\t\t\t<Block>4132</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>26.95</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16305</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>72</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:53
378
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6673</Vehicleid>\n\t\t\t\t<Block>4133</Block>\n\t\t\t\t<Adherance>-7</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>29.45</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16321</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>72</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:54
379
- PM</Updatetime>\n\t\t\t\t<Vehicleid>8078</Vehicleid>\n\t\t\t\t<Block>4134</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>7.34</Speed>\n\t\t\t\t<Heading>14</Heading>\n\t\t\t\t<Routeid>16321</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>72</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:51
380
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6684</Vehicleid>\n\t\t\t\t<Block>4135</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>5.57</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16305</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>72</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:53
381
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6610</Vehicleid>\n\t\t\t\t<Block>4136</Block>\n\t\t\t\t<Adherance>3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>1.38</Speed>\n\t\t\t\t<Heading>29</Heading>\n\t\t\t\t<Routeid>16305</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>77</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:53
382
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6681</Vehicleid>\n\t\t\t\t<Block>4141</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>7.19</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16357</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>77</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:54
383
- PM</Updatetime>\n\t\t\t\t<Vehicleid>8069</Vehicleid>\n\t\t\t\t<Block>4144</Block>\n\t\t\t\t<Adherance>-2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>12.48</Speed>\n\t\t\t\t<Heading>
384
- 9</Heading>\n\t\t\t\t<Routeid>16342</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>77</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:54
385
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6748</Vehicleid>\n\t\t\t\t<Block>4145</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>L</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
386
- 0</Heading>\n\t\t\t\t<Routeid>16357</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>77</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:52
387
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6677</Vehicleid>\n\t\t\t\t<Block>4146</Block>\n\t\t\t\t<Adherance>3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>1.11</Speed>\n\t\t\t\t<Heading>34</Heading>\n\t\t\t\t<Routeid>16357</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>77</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:54
388
- PM</Updatetime>\n\t\t\t\t<Vehicleid>8081</Vehicleid>\n\t\t\t\t<Block>4147</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>9.39</Speed>\n\t\t\t\t<Heading>
389
- 9</Heading>\n\t\t\t\t<Routeid>16342</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>19</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:54
390
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6578</Vehicleid>\n\t\t\t\t<Block>415</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>21.77</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>15889</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>81</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:53
391
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6701</Vehicleid>\n\t\t\t\t<Block>4150</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>20.34</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16406</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>81</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:53
392
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6678</Vehicleid>\n\t\t\t\t<Block>4151</Block>\n\t\t\t\t<Adherance>-3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>38.12</Speed>\n\t\t\t\t<Heading>
393
- 0</Heading>\n\t\t\t\t<Routeid>16393</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>81</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:54
394
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6691</Vehicleid>\n\t\t\t\t<Block>4153</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>13.38</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16406</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>81</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:53
395
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6647</Vehicleid>\n\t\t\t\t<Block>4154</Block>\n\t\t\t\t<Adherance>-6</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>12.10</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16393</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>81</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:53
396
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6705</Vehicleid>\n\t\t\t\t<Block>4155</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>23.39</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16393</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>81</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:53
397
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6694</Vehicleid>\n\t\t\t\t<Block>4156</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>10.08</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16406</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>81</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:51
398
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6747</Vehicleid>\n\t\t\t\t<Block>4157</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>L</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
399
- 0</Heading>\n\t\t\t\t<Routeid>16406</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>81</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:54
400
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6702</Vehicleid>\n\t\t\t\t<Block>4159</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>L</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
401
- 0</Heading>\n\t\t\t\t<Routeid>16393</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>96</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:53
402
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6601</Vehicleid>\n\t\t\t\t<Block>4164</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>L</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
403
- 0</Heading>\n\t\t\t\t<Routeid>16429</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>96</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:53
404
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6645</Vehicleid>\n\t\t\t\t<Block>4165</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>D</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>14.92</Speed>\n\t\t\t\t<Heading>34</Heading>\n\t\t\t\t<Routeid>16429</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>96</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:53
405
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6642</Vehicleid>\n\t\t\t\t<Block>4166</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>13.39</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16437</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>108</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:54
406
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6735</Vehicleid>\n\t\t\t\t<Block>4174</Block>\n\t\t\t\t<Adherance>-3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>20.16</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16503</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>104</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:53
407
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6625</Vehicleid>\n\t\t\t\t<Block>4176</Block>\n\t\t\t\t<Adherance>-6</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>28.65</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16444</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>184</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:54
408
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6641</Vehicleid>\n\t\t\t\t<Block>4178</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.03</Speed>\n\t\t\t\t<Heading>10</Heading>\n\t\t\t\t<Routeid>16623</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>184</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:53
409
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6693</Vehicleid>\n\t\t\t\t<Block>4180</Block>\n\t\t\t\t<Adherance>10</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>3.48</Speed>\n\t\t\t\t<Heading>
410
- 5</Heading>\n\t\t\t\t<Routeid>16617</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>16</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:53
411
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6346</Vehicleid>\n\t\t\t\t<Block>42</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>19.57</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>15843</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>156</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:53
412
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6712</Vehicleid>\n\t\t\t\t<Block>4231</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>9.16</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16590</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>27</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:53
413
- PM</Updatetime>\n\t\t\t\t<Vehicleid>5088</Vehicleid>\n\t\t\t\t<Block>424</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>9.39</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>15919</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>27</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:54
414
- PM</Updatetime>\n\t\t\t\t<Vehicleid>5064</Vehicleid>\n\t\t\t\t<Block>425</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>13.26</Speed>\n\t\t\t\t<Heading>19</Heading>\n\t\t\t\t<Routeid>15920</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>27</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:54
415
- PM</Updatetime>\n\t\t\t\t<Vehicleid>5089</Vehicleid>\n\t\t\t\t<Block>426</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>6.94</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15909</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>35</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:54
416
- PM</Updatetime>\n\t\t\t\t<Vehicleid>5068</Vehicleid>\n\t\t\t\t<Block>428</Block>\n\t\t\t\t<Adherance>-1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>23.66</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>15981</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route></Route>\n\t\t\t\t<Direction>
417
- </Direction>\n\t\t\t\t<Updatetime>01:49 PM</Updatetime>\n\t\t\t\t<Vehicleid>6238</Vehicleid>\n\t\t\t\t<Block>429</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>N</Inservice>\n\t\t\t\t<Speed>10.32</Speed>\n\t\t\t\t<Heading>
418
- 0</Heading>\n\t\t\t\t<Routeid>0</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>16</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:54
419
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6320</Vehicleid>\n\t\t\t\t<Block>43</Block>\n\t\t\t\t<Adherance>-2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>16.97</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>15843</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>35</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:53
420
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6577</Vehicleid>\n\t\t\t\t<Block>431</Block>\n\t\t\t\t<Adherance>3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>14.45</Speed>\n\t\t\t\t<Heading>
421
- 0</Heading>\n\t\t\t\t<Routeid>15975</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>35</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:53
422
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6241</Vehicleid>\n\t\t\t\t<Block>432</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>7.12</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>15975</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>39</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:53
423
- PM</Updatetime>\n\t\t\t\t<Vehicleid>5090</Vehicleid>\n\t\t\t\t<Block>435</Block>\n\t\t\t\t<Adherance>3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>17.60</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>15986</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>39</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:53
424
- PM</Updatetime>\n\t\t\t\t<Vehicleid>5084</Vehicleid>\n\t\t\t\t<Block>436</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>22.26</Speed>\n\t\t\t\t<Heading>17</Heading>\n\t\t\t\t<Routeid>15990</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>80</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:47
425
- PM</Updatetime>\n\t\t\t\t<Vehicleid>5085</Vehicleid>\n\t\t\t\t<Block>439</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.33</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16384</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>80</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:53
426
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6242</Vehicleid>\n\t\t\t\t<Block>441</Block>\n\t\t\t\t<Adherance>-4</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>32.77</Speed>\n\t\t\t\t<Heading>26</Heading>\n\t\t\t\t<Routeid>16384</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>80</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:53
427
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6226</Vehicleid>\n\t\t\t\t<Block>442</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>7.82</Speed>\n\t\t\t\t<Heading>
428
- 6</Heading>\n\t\t\t\t<Routeid>16369</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>80</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:52
429
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6587</Vehicleid>\n\t\t\t\t<Block>443</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>L</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
430
- 0</Heading>\n\t\t\t\t<Routeid>16384</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>80</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:50
431
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6590</Vehicleid>\n\t\t\t\t<Block>445</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>D</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>8.22</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16384</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>90</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:53
432
- PM</Updatetime>\n\t\t\t\t<Vehicleid>5091</Vehicleid>\n\t\t\t\t<Block>448</Block>\n\t\t\t\t<Adherance>3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.06</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16415</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>90</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:53
433
- PM</Updatetime>\n\t\t\t\t<Vehicleid>5066</Vehicleid>\n\t\t\t\t<Block>449</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>12.44</Speed>\n\t\t\t\t<Heading>19</Heading>\n\t\t\t\t<Routeid>16421</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>19</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:51
434
- PM</Updatetime>\n\t\t\t\t<Vehicleid>8055</Vehicleid>\n\t\t\t\t<Block>45</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>22.53</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>15889</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>90</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:54
435
- PM</Updatetime>\n\t\t\t\t<Vehicleid>5092</Vehicleid>\n\t\t\t\t<Block>450</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>L</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
436
- 0</Heading>\n\t\t\t\t<Routeid>16415</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>90</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:54
437
- PM</Updatetime>\n\t\t\t\t<Vehicleid>5104</Vehicleid>\n\t\t\t\t<Block>451</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>10.23</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16421</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>90</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:53
438
- PM</Updatetime>\n\t\t\t\t<Vehicleid>5069</Vehicleid>\n\t\t\t\t<Block>452</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>9.86</Speed>\n\t\t\t\t<Heading>
439
- 9</Heading>\n\t\t\t\t<Routeid>16415</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>90</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:53
440
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6582</Vehicleid>\n\t\t\t\t<Block>453</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>30.49</Speed>\n\t\t\t\t<Heading>
441
- 9</Heading>\n\t\t\t\t<Routeid>16415</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>106</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:54
442
- PM</Updatetime>\n\t\t\t\t<Vehicleid>5082</Vehicleid>\n\t\t\t\t<Block>454</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>L</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
443
- 0</Heading>\n\t\t\t\t<Routeid>16470</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>138</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:53
444
- PM</Updatetime>\n\t\t\t\t<Vehicleid>5081</Vehicleid>\n\t\t\t\t<Block>455</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>L</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
445
- 0</Heading>\n\t\t\t\t<Routeid>16578</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>138</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:53
446
- PM</Updatetime>\n\t\t\t\t<Vehicleid>5099</Vehicleid>\n\t\t\t\t<Block>456</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>19.52</Speed>\n\t\t\t\t<Heading>35</Heading>\n\t\t\t\t<Routeid>16578</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>106</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:54
447
- PM</Updatetime>\n\t\t\t\t<Vehicleid>5071</Vehicleid>\n\t\t\t\t<Block>457</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>6.11</Speed>\n\t\t\t\t<Heading>
448
- 8</Heading>\n\t\t\t\t<Routeid>16460</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>106</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:51
449
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6221</Vehicleid>\n\t\t\t\t<Block>458</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>19.92</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16469</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>19</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:53
450
- PM</Updatetime>\n\t\t\t\t<Vehicleid>8015</Vehicleid>\n\t\t\t\t<Block>46</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>L</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
451
- 0</Heading>\n\t\t\t\t<Routeid>15889</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>106</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:54
452
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6231</Vehicleid>\n\t\t\t\t<Block>461</Block>\n\t\t\t\t<Adherance>4</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>15.86</Speed>\n\t\t\t\t<Heading>
453
- 7</Heading>\n\t\t\t\t<Routeid>16459</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>106</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:52
454
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6584</Vehicleid>\n\t\t\t\t<Block>462</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>L</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
455
- 0</Heading>\n\t\t\t\t<Routeid>16459</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>106</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:54
456
- PM</Updatetime>\n\t\t\t\t<Vehicleid>5073</Vehicleid>\n\t\t\t\t<Block>463</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>15</Heading>\n\t\t\t\t<Routeid>16460</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>106</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:53
457
- PM</Updatetime>\n\t\t\t\t<Vehicleid>5070</Vehicleid>\n\t\t\t\t<Block>464</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>5.89</Speed>\n\t\t\t\t<Heading>33</Heading>\n\t\t\t\t<Routeid>16470</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route></Route>\n\t\t\t\t<Direction>
458
- </Direction>\n\t\t\t\t<Updatetime>01:54 PM</Updatetime>\n\t\t\t\t<Vehicleid>5094</Vehicleid>\n\t\t\t\t<Block>465</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>N</Inservice>\n\t\t\t\t<Speed>0.06</Speed>\n\t\t\t\t<Heading>
459
- 0</Heading>\n\t\t\t\t<Routeid>0</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>122</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:52
460
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6224</Vehicleid>\n\t\t\t\t<Block>466</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>D</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>15.75</Speed>\n\t\t\t\t<Heading>
461
- 9</Heading>\n\t\t\t\t<Routeid>16537</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>106</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:54
462
- PM</Updatetime>\n\t\t\t\t<Vehicleid>5063</Vehicleid>\n\t\t\t\t<Block>467</Block>\n\t\t\t\t<Adherance>-1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>9.50</Speed>\n\t\t\t\t<Heading>12</Heading>\n\t\t\t\t<Routeid>16459</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>138</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:48
463
- PM</Updatetime>\n\t\t\t\t<Vehicleid>5101</Vehicleid>\n\t\t\t\t<Block>468</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>15.51</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16578</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>154</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:51
464
- PM</Updatetime>\n\t\t\t\t<Vehicleid>5075</Vehicleid>\n\t\t\t\t<Block>469</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>12.76</Speed>\n\t\t\t\t<Heading>
465
- 9</Heading>\n\t\t\t\t<Routeid>16582</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>19</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:53
466
- PM</Updatetime>\n\t\t\t\t<Vehicleid>8011</Vehicleid>\n\t\t\t\t<Block>47</Block>\n\t\t\t\t<Adherance>8</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.48</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15899</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>154</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:54
467
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6574</Vehicleid>\n\t\t\t\t<Block>471</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>18.91</Speed>\n\t\t\t\t<Heading>34</Heading>\n\t\t\t\t<Routeid>16586</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>154</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:54
468
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6592</Vehicleid>\n\t\t\t\t<Block>472</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>D</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>4.30</Speed>\n\t\t\t\t<Heading>28</Heading>\n\t\t\t\t<Routeid>16586</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>154</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:49
469
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6583</Vehicleid>\n\t\t\t\t<Block>473</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>24.59</Speed>\n\t\t\t\t<Heading>
470
- 9</Heading>\n\t\t\t\t<Routeid>16582</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route></Route>\n\t\t\t\t<Direction>
471
- </Direction>\n\t\t\t\t<Updatetime>01:51 PM</Updatetime>\n\t\t\t\t<Vehicleid>6591</Vehicleid>\n\t\t\t\t<Block>474</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>N</Inservice>\n\t\t\t\t<Speed>10.84</Speed>\n\t\t\t\t<Heading>
472
- 0</Heading>\n\t\t\t\t<Routeid>0</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>170</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:53
473
- PM</Updatetime>\n\t\t\t\t<Vehicleid>5067</Vehicleid>\n\t\t\t\t<Block>476</Block>\n\t\t\t\t<Adherance>-2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>2.85</Speed>\n\t\t\t\t<Heading>20</Heading>\n\t\t\t\t<Routeid>16604</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>170</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:51
474
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6575</Vehicleid>\n\t\t\t\t<Block>477</Block>\n\t\t\t\t<Adherance>-1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>25.45</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16611</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>170</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:54
475
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6576</Vehicleid>\n\t\t\t\t<Block>478</Block>\n\t\t\t\t<Adherance>4</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>21.45</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16611</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route></Route>\n\t\t\t\t<Direction>
476
- </Direction>\n\t\t\t\t<Updatetime>01:51 PM</Updatetime>\n\t\t\t\t<Vehicleid>6571</Vehicleid>\n\t\t\t\t<Block>479</Block>\n\t\t\t\t<Adherance>-2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>N</Inservice>\n\t\t\t\t<Speed>0.09</Speed>\n\t\t\t\t<Heading>
477
- 0</Heading>\n\t\t\t\t<Routeid>0</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>170</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:52
478
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6572</Vehicleid>\n\t\t\t\t<Block>480</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>21.60</Speed>\n\t\t\t\t<Heading>
479
- 9</Heading>\n\t\t\t\t<Routeid>16604</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>170</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:48
480
- PM</Updatetime>\n\t\t\t\t<Vehicleid>5074</Vehicleid>\n\t\t\t\t<Block>481</Block>\n\t\t\t\t<Adherance>4</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>10.81</Speed>\n\t\t\t\t<Heading>
481
- 9</Heading>\n\t\t\t\t<Routeid>16604</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>186</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:53
482
- PM</Updatetime>\n\t\t\t\t<Vehicleid>5065</Vehicleid>\n\t\t\t\t<Block>482</Block>\n\t\t\t\t<Adherance>3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>24.40</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16638</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>186</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:54
483
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6581</Vehicleid>\n\t\t\t\t<Block>484</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>36.01</Speed>\n\t\t\t\t<Heading>
484
- 6</Heading>\n\t\t\t\t<Routeid>16629</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>186</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:53
485
- PM</Updatetime>\n\t\t\t\t<Vehicleid>5096</Vehicleid>\n\t\t\t\t<Block>485</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>25.20</Speed>\n\t\t\t\t<Heading>
486
- 9</Heading>\n\t\t\t\t<Routeid>16630</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>186</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:53
487
- PM</Updatetime>\n\t\t\t\t<Vehicleid>5098</Vehicleid>\n\t\t\t\t<Block>486</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>15.01</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16637</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>186</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:53
488
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6589</Vehicleid>\n\t\t\t\t<Block>487</Block>\n\t\t\t\t<Adherance>-3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>8.77</Speed>\n\t\t\t\t<Heading>31</Heading>\n\t\t\t\t<Routeid>16629</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>19</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:51
489
- PM</Updatetime>\n\t\t\t\t<Vehicleid>8009</Vehicleid>\n\t\t\t\t<Block>49</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>18.91</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>15899</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>MAIN</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:54
490
- PM</Updatetime>\n\t\t\t\t<Vehicleid>7002</Vehicleid>\n\t\t\t\t<Block>5001</Block>\n\t\t\t\t<Adherance>-1</Adherance>\n\t\t\t\t<Adhchange>N</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
491
- 0</Heading>\n\t\t\t\t<Routeid>16804</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>MAIN</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:53
492
- PM</Updatetime>\n\t\t\t\t<Vehicleid>7004</Vehicleid>\n\t\t\t\t<Block>5003</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>22.59</Speed>\n\t\t\t\t<Heading>
493
- 9</Heading>\n\t\t\t\t<Routeid>16802</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>MAIN</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:53
494
- PM</Updatetime>\n\t\t\t\t<Vehicleid>7001</Vehicleid>\n\t\t\t\t<Block>5004</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>30.49</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16804</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>AZAV</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:51
495
- PM</Updatetime>\n\t\t\t\t<Vehicleid>7007</Vehicleid>\n\t\t\t\t<Block>5006</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>28.06</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16762</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>AZAV</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:53
496
- PM</Updatetime>\n\t\t\t\t<Vehicleid>7009</Vehicleid>\n\t\t\t\t<Block>5007</Block>\n\t\t\t\t<Adherance>-5</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>14.07</Speed>\n\t\t\t\t<Heading>11</Heading>\n\t\t\t\t<Routeid>16766</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>AZAV</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:53
497
- PM</Updatetime>\n\t\t\t\t<Vehicleid>7003</Vehicleid>\n\t\t\t\t<Block>5009</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>14.69</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16766</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>30</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:51
498
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6413</Vehicleid>\n\t\t\t\t<Block>5014</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>L</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
499
- 0</Heading>\n\t\t\t\t<Routeid>15954</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>30</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:54
500
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6668</Vehicleid>\n\t\t\t\t<Block>5015</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>12.47</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15966</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>30</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:51
501
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6657</Vehicleid>\n\t\t\t\t<Block>5016</Block>\n\t\t\t\t<Adherance>3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
502
- 8</Heading>\n\t\t\t\t<Routeid>15954</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>30</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:53
503
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6661</Vehicleid>\n\t\t\t\t<Block>5018</Block>\n\t\t\t\t<Adherance>3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>15.19</Speed>\n\t\t\t\t<Heading>
504
- 9</Heading>\n\t\t\t\t<Routeid>15954</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>40</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:54
505
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6408</Vehicleid>\n\t\t\t\t<Block>5019</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>19.06</Speed>\n\t\t\t\t<Heading>
506
- 9</Heading>\n\t\t\t\t<Routeid>15994</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>40</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:53
507
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6424</Vehicleid>\n\t\t\t\t<Block>5020</Block>\n\t\t\t\t<Adherance>-7</Adherance>\n\t\t\t\t<Adhchange>N</Adhchange>\n\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
508
- 0</Heading>\n\t\t\t\t<Routeid>15994</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>40</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:54
509
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6656</Vehicleid>\n\t\t\t\t<Block>5021</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>15.69</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15998</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>40</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:51
510
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6422</Vehicleid>\n\t\t\t\t<Block>5022</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>12.69</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15998</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>40</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:54
511
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6414</Vehicleid>\n\t\t\t\t<Block>5023</Block>\n\t\t\t\t<Adherance>-5</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>9.00</Speed>\n\t\t\t\t<Heading>
512
- 9</Heading>\n\t\t\t\t<Routeid>15994</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>61</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:54
513
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6448</Vehicleid>\n\t\t\t\t<Block>5026</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.06</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16222</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>61</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:53
514
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6653</Vehicleid>\n\t\t\t\t<Block>5029</Block>\n\t\t\t\t<Adherance>-2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>24.65</Speed>\n\t\t\t\t<Heading>
515
- 9</Heading>\n\t\t\t\t<Routeid>16205</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>61</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:54
516
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6426</Vehicleid>\n\t\t\t\t<Block>5031</Block>\n\t\t\t\t<Adherance>3</Adherance>\n\t\t\t\t<Adhchange>D</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>14.93</Speed>\n\t\t\t\t<Heading>
517
- 9</Heading>\n\t\t\t\t<Routeid>16205</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>61</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:54
518
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6651</Vehicleid>\n\t\t\t\t<Block>5032</Block>\n\t\t\t\t<Adherance>-1</Adherance>\n\t\t\t\t<Adhchange>D</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>13.66</Speed>\n\t\t\t\t<Heading>
519
- 9</Heading>\n\t\t\t\t<Routeid>16205</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>61</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:53
520
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6432</Vehicleid>\n\t\t\t\t<Block>5033</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>15.08</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16224</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>112</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:53
521
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6438</Vehicleid>\n\t\t\t\t<Block>5041</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>28.86</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16527</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>112</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:54
522
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6658</Vehicleid>\n\t\t\t\t<Block>5042</Block>\n\t\t\t\t<Adherance>-1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>10.80</Speed>\n\t\t\t\t<Heading>20</Heading>\n\t\t\t\t<Routeid>16527</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>108</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:54
523
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6415</Vehicleid>\n\t\t\t\t<Block>5044</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>15.49</Speed>\n\t\t\t\t<Heading>
524
- 6</Heading>\n\t\t\t\t<Routeid>16488</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>108</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:54
525
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6665</Vehicleid>\n\t\t\t\t<Block>5045</Block>\n\t\t\t\t<Adherance>-3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>23.23</Speed>\n\t\t\t\t<Heading>
526
- 9</Heading>\n\t\t\t\t<Routeid>16505</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>156</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:54
527
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6446</Vehicleid>\n\t\t\t\t<Block>5046</Block>\n\t\t\t\t<Adherance>5</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
528
- 0</Heading>\n\t\t\t\t<Routeid>16597</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>108</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:53
529
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6655</Vehicleid>\n\t\t\t\t<Block>5047</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>22.90</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16488</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>108</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:53
530
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6423</Vehicleid>\n\t\t\t\t<Block>5048</Block>\n\t\t\t\t<Adherance>-2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>23.73</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16503</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>112</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:54
531
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6433</Vehicleid>\n\t\t\t\t<Block>5049</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>17.25</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16517</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>104</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:54
532
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6428</Vehicleid>\n\t\t\t\t<Block>5050</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>9.32</Speed>\n\t\t\t\t<Heading>
533
- 9</Heading>\n\t\t\t\t<Routeid>16448</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>112</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:53
534
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6667</Vehicleid>\n\t\t\t\t<Block>5051</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>13.06</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16517</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>104</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:50
535
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6425</Vehicleid>\n\t\t\t\t<Block>5052</Block>\n\t\t\t\t<Adherance>4</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>4.34</Speed>\n\t\t\t\t<Heading>
536
- 6</Heading>\n\t\t\t\t<Routeid>16444</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>104</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:53
537
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6441</Vehicleid>\n\t\t\t\t<Block>5053</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>27.49</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16448</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>120</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:54
538
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6401</Vehicleid>\n\t\t\t\t<Block>5054</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>8.36</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16533</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>120</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:54
539
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6652</Vehicleid>\n\t\t\t\t<Block>5055</Block>\n\t\t\t\t<Adherance>-1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>14.16</Speed>\n\t\t\t\t<Heading>12</Heading>\n\t\t\t\t<Routeid>16530</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>128</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:53
540
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6439</Vehicleid>\n\t\t\t\t<Block>5056</Block>\n\t\t\t\t<Adherance>-1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>12.40</Speed>\n\t\t\t\t<Heading>
541
- 4</Heading>\n\t\t\t\t<Routeid>16544</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>128</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:54
542
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6419</Vehicleid>\n\t\t\t\t<Block>5057</Block>\n\t\t\t\t<Adherance>9</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>19.55</Speed>\n\t\t\t\t<Heading>25</Heading>\n\t\t\t\t<Routeid>16547</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>136</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:53
543
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6406</Vehicleid>\n\t\t\t\t<Block>5058</Block>\n\t\t\t\t<Adherance>-1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>13.95</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16568</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>136</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:54
544
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6417</Vehicleid>\n\t\t\t\t<Block>5060</Block>\n\t\t\t\t<Adherance>-2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.05</Speed>\n\t\t\t\t<Heading>
545
- 0</Heading>\n\t\t\t\t<Routeid>16568</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>136</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:51
546
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6407</Vehicleid>\n\t\t\t\t<Block>5061</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.05</Speed>\n\t\t\t\t<Heading>
547
- 0</Heading>\n\t\t\t\t<Routeid>16556</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>156</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:54
548
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6663</Vehicleid>\n\t\t\t\t<Block>5067</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>16.11</Speed>\n\t\t\t\t<Heading>
549
- 9</Heading>\n\t\t\t\t<Routeid>16590</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>156</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:51
550
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6404</Vehicleid>\n\t\t\t\t<Block>5068</Block>\n\t\t\t\t<Adherance>-2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>17.86</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16597</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>156</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:54
551
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6410</Vehicleid>\n\t\t\t\t<Block>5069</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>D</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>7.43</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16597</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>156</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:54
552
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6416</Vehicleid>\n\t\t\t\t<Block>5070</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>15.18</Speed>\n\t\t\t\t<Heading>
553
- 5</Heading>\n\t\t\t\t<Routeid>16590</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>184</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:54
554
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6666</Vehicleid>\n\t\t\t\t<Block>5071</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>6.03</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16617</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>108</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:54
555
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6654</Vehicleid>\n\t\t\t\t<Block>5072</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>16.72</Speed>\n\t\t\t\t<Heading>
556
- 9</Heading>\n\t\t\t\t<Routeid>16488</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>184</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:49
557
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6449</Vehicleid>\n\t\t\t\t<Block>5073</Block>\n\t\t\t\t<Adherance>3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>12.97</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16623</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>19</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:54
558
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6308</Vehicleid>\n\t\t\t\t<Block>51</Block>\n\t\t\t\t<Adherance>-3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>16.15</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>15889</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>19</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:53
559
- PM</Updatetime>\n\t\t\t\t<Vehicleid>8051</Vehicleid>\n\t\t\t\t<Block>52</Block>\n\t\t\t\t<Adherance>-1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>3.70</Speed>\n\t\t\t\t<Heading>25</Heading>\n\t\t\t\t<Routeid>15899</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>SSCR</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:54
560
- PM</Updatetime>\n\t\t\t\t<Vehicleid>1491</Vehicleid>\n\t\t\t\t<Block>528</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>7.15</Speed>\n\t\t\t\t<Heading>
561
- 7</Heading>\n\t\t\t\t<Routeid>16876</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>SSCR</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:52
562
- PM</Updatetime>\n\t\t\t\t<Vehicleid>1488</Vehicleid>\n\t\t\t\t<Block>529</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
563
- 2</Heading>\n\t\t\t\t<Routeid>16880</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>19</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:54
564
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6342</Vehicleid>\n\t\t\t\t<Block>53</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>15.10</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>15900</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>106</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:51
565
- PM</Updatetime>\n\t\t\t\t<Vehicleid>5079</Vehicleid>\n\t\t\t\t<Block>530</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>9.52</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16469</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>138</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:54
566
- PM</Updatetime>\n\t\t\t\t<Vehicleid>5072</Vehicleid>\n\t\t\t\t<Block>531</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>17.09</Speed>\n\t\t\t\t<Heading>
567
- 9</Heading>\n\t\t\t\t<Routeid>16574</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>19</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:53
568
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6376</Vehicleid>\n\t\t\t\t<Block>54</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>9.44</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>15900</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>7</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:53
569
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6561</Vehicleid>\n\t\t\t\t<Block>6</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>11.07</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>15781</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>251</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:54
570
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6499</Vehicleid>\n\t\t\t\t<Block>6030</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>21.72</Speed>\n\t\t\t\t<Heading>
571
- 9</Heading>\n\t\t\t\t<Routeid>16642</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>251</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:54
572
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6500</Vehicleid>\n\t\t\t\t<Block>6031</Block>\n\t\t\t\t<Adherance>-13</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>9.85</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16646</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route></Route>\n\t\t\t\t<Direction>
573
- </Direction>\n\t\t\t\t<Updatetime>01:51 PM</Updatetime>\n\t\t\t\t<Vehicleid>8057</Vehicleid>\n\t\t\t\t<Block>62</Block>\n\t\t\t\t<Adherance>-11</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>N</Inservice>\n\t\t\t\t<Speed>0.06</Speed>\n\t\t\t\t<Heading>
574
- 0</Heading>\n\t\t\t\t<Routeid>0</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>35</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:47
575
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6319</Vehicleid>\n\t\t\t\t<Block>64</Block>\n\t\t\t\t<Adherance>3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>16.44</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>15981</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>35</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:53
576
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6317</Vehicleid>\n\t\t\t\t<Block>65</Block>\n\t\t\t\t<Adherance>-2</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>13.97</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>15981</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>35</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:52
577
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6099</Vehicleid>\n\t\t\t\t<Block>66</Block>\n\t\t\t\t<Adherance>4</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>17.07</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>15975</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>35</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:53
578
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6329</Vehicleid>\n\t\t\t\t<Block>67</Block>\n\t\t\t\t<Adherance>4</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>11</Heading>\n\t\t\t\t<Routeid>15981</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>35</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:54
579
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6340</Vehicleid>\n\t\t\t\t<Block>68</Block>\n\t\t\t\t<Adherance>-5</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>17.02</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>15976</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>35</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:54
580
- PM</Updatetime>\n\t\t\t\t<Vehicleid>8006</Vehicleid>\n\t\t\t\t<Block>69</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>D</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>13.74</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>15982</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>35</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:54
581
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6289</Vehicleid>\n\t\t\t\t<Block>70</Block>\n\t\t\t\t<Adherance>-4</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>15.07</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>15976</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>ALEX</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:53
582
- PM</Updatetime>\n\t\t\t\t<Vehicleid>1506</Vehicleid>\n\t\t\t\t<Block>7002</Block>\n\t\t\t\t<Adherance>-1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>15.30</Speed>\n\t\t\t\t<Heading>19</Heading>\n\t\t\t\t<Routeid>16752</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>1</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:53
583
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6595</Vehicleid>\n\t\t\t\t<Block>73</Block>\n\t\t\t\t<Adherance>10</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
584
- 9</Heading>\n\t\t\t\t<Routeid>15718</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>44</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:53
585
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6321</Vehicleid>\n\t\t\t\t<Block>74</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>D</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>5.33</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16039</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>44</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:54
586
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6292</Vehicleid>\n\t\t\t\t<Block>75</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>21.08</Speed>\n\t\t\t\t<Heading>19</Heading>\n\t\t\t\t<Routeid>16039</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>44</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:51
587
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6554</Vehicleid>\n\t\t\t\t<Block>77</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>D</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
588
- 0</Heading>\n\t\t\t\t<Routeid>16039</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route></Route>\n\t\t\t\t<Direction>
589
- </Direction>\n\t\t\t\t<Updatetime>01:52 PM</Updatetime>\n\t\t\t\t<Vehicleid>8052</Vehicleid>\n\t\t\t\t<Block>79</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>N</Inservice>\n\t\t\t\t<Speed>1.50</Speed>\n\t\t\t\t<Heading>
590
- 0</Heading>\n\t\t\t\t<Routeid>0</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>7</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:51
591
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6560</Vehicleid>\n\t\t\t\t<Block>8</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>D</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>20.31</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>15785</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>50</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:50
592
- PM</Updatetime>\n\t\t\t\t<Vehicleid>8008</Vehicleid>\n\t\t\t\t<Block>83</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>7.08</Speed>\n\t\t\t\t<Heading>
593
- 9</Heading>\n\t\t\t\t<Routeid>16098</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>50</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:53
594
- PM</Updatetime>\n\t\t\t\t<Vehicleid>8007</Vehicleid>\n\t\t\t\t<Block>85</Block>\n\t\t\t\t<Adherance>7</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>13.72</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16113</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>50</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:54
595
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6533</Vehicleid>\n\t\t\t\t<Block>87</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>11.93</Speed>\n\t\t\t\t<Heading>
596
- 9</Heading>\n\t\t\t\t<Routeid>16098</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>7</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:54
597
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6569</Vehicleid>\n\t\t\t\t<Block>9</Block>\n\t\t\t\t<Adherance>-1</Adherance>\n\t\t\t\t<Adhchange>D</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.26</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>15781</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>50</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:53
598
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6027</Vehicleid>\n\t\t\t\t<Block>90</Block>\n\t\t\t\t<Adherance>3</Adherance>\n\t\t\t\t<Adhchange>D</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>16.82</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16114</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>50</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:54
599
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6316</Vehicleid>\n\t\t\t\t<Block>93</Block>\n\t\t\t\t<Adherance>-3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>15.86</Speed>\n\t\t\t\t<Heading>
600
- 9</Heading>\n\t\t\t\t<Routeid>16098</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>50</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:52
601
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6039</Vehicleid>\n\t\t\t\t<Block>94</Block>\n\t\t\t\t<Adherance>6</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>3.85</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16113</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>50</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:50
602
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6290</Vehicleid>\n\t\t\t\t<Block>98</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
603
- 0</Heading>\n\t\t\t\t<Routeid>16112</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>50</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:54
604
- PM</Updatetime>\n\t\t\t\t<Vehicleid>6357</Vehicleid>\n\t\t\t\t<Block>99</Block>\n\t\t\t\t<Adherance>9</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>35.30</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16111</Routeid>\n\t\t\t</Vehicle>\n\t\t</Vehicles>\n\t<Mapextents>0.000000,-112.362747,33.712769,0.000000</Mapextents>\n\t<Appid>WEB</Appid>\n\t<Requestor>68.226.126.17</Requestor>\n\t<Host>s-rpta-soap</Host>\n\t<Copyright>XML
47
+ xmlns:namesp1=\"PX_WEB\">\n\t<Responsecode>0</Responsecode>\n\t<Version>1.0</Version>\n\t\t<Responsecode>0</Responsecode>\n\t\t<Vehicles>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>1</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:38
48
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6332</Vehicleid>\n\t\t\t\t<Block>1</Block>\n\t\t\t\t<Adherance>-1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>26.84</Speed>\n\t\t\t\t<Heading>
49
+ 9</Heading>\n\t\t\t\t<Routeid>15717</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>7</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>05:36
50
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6577</Vehicleid>\n\t\t\t\t<Block>10</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>37.23</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>15780</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>50</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:37
51
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6557</Vehicleid>\n\t\t\t\t<Block>100</Block>\n\t\t\t\t<Adherance>5</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.52</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16107</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>50</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:38
52
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6543</Vehicleid>\n\t\t\t\t<Block>101</Block>\n\t\t\t\t<Adherance>-1</Adherance>\n\t\t\t\t<Adhchange>D</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>6.22</Speed>\n\t\t\t\t<Heading>
53
+ 9</Heading>\n\t\t\t\t<Routeid>16093</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>50</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:38
54
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6540</Vehicleid>\n\t\t\t\t<Block>102</Block>\n\t\t\t\t<Adherance>-1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>11.40</Speed>\n\t\t\t\t<Heading>
55
+ 9</Heading>\n\t\t\t\t<Routeid>16093</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>50</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:38
56
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6536</Vehicleid>\n\t\t\t\t<Block>103</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>9.52</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16108</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>50</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:37
57
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6572</Vehicleid>\n\t\t\t\t<Block>106</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>8.03</Speed>\n\t\t\t\t<Heading>
58
+ 9</Heading>\n\t\t\t\t<Routeid>16096</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>50</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:37
59
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6546</Vehicleid>\n\t\t\t\t<Block>107</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>3.07</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16096</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>7</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>05:37
60
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6027</Vehicleid>\n\t\t\t\t<Block>11</Block>\n\t\t\t\t<Adherance>3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>26.94</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>15784</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route></Route>\n\t\t\t\t<Direction>
61
+ </Direction>\n\t\t\t\t<Updatetime>05:35 PM</Updatetime>\n\t\t\t\t<Vehicleid>6555</Vehicleid>\n\t\t\t\t<Block>110</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t<Offroute>Y</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>N</Inservice>\n\t\t\t\t<Speed>18.09</Speed>\n\t\t\t\t<Heading>
62
+ 0</Heading>\n\t\t\t\t<Routeid>0</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>50</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:38
63
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6596</Vehicleid>\n\t\t\t\t<Block>111</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16109</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>16</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>05:37
64
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6537</Vehicleid>\n\t\t\t\t<Block>117</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>12.52</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>15841</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>60</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:32
65
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6545</Vehicleid>\n\t\t\t\t<Block>119</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>L</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
66
+ 0</Heading>\n\t\t\t\t<Routeid>16189</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>16</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>05:33
67
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6547</Vehicleid>\n\t\t\t\t<Block>121</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>10.34</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>15852</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>60</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:37
68
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6559</Vehicleid>\n\t\t\t\t<Block>123</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>11.35</Speed>\n\t\t\t\t<Heading>32</Heading>\n\t\t\t\t<Routeid>16189</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>60</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:38
69
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6541</Vehicleid>\n\t\t\t\t<Block>125</Block>\n\t\t\t\t<Adherance>-4</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>20.10</Speed>\n\t\t\t\t<Heading>
70
+ 9</Heading>\n\t\t\t\t<Routeid>16185</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>60</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:37
71
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6570</Vehicleid>\n\t\t\t\t<Block>126</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>20.67</Speed>\n\t\t\t\t<Heading>
72
+ 9</Heading>\n\t\t\t\t<Routeid>16185</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>7</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>05:35
73
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6316</Vehicleid>\n\t\t\t\t<Block>13</Block>\n\t\t\t\t<Adherance>4</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>2.17</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>15780</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>70</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:38
74
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>8016</Vehicleid>\n\t\t\t\t<Block>130</Block>\n\t\t\t\t<Adherance>8</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>36.09</Speed>\n\t\t\t\t<Heading>17</Heading>\n\t\t\t\t<Routeid>16275</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>70</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:38
75
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6343</Vehicleid>\n\t\t\t\t<Block>135</Block>\n\t\t\t\t<Adherance>3</Adherance>\n\t\t\t\t<Adhchange>D</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>5.70</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16278</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>70</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:38
76
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6300</Vehicleid>\n\t\t\t\t<Block>136</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>21.34</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16287</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>70</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:37
77
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6301</Vehicleid>\n\t\t\t\t<Block>137</Block>\n\t\t\t\t<Adherance>4</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>12.33</Speed>\n\t\t\t\t<Heading>
78
+ 9</Heading>\n\t\t\t\t<Routeid>16275</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>8</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>05:38
79
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6595</Vehicleid>\n\t\t\t\t<Block>14</Block>\n\t\t\t\t<Adherance>4</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>2.06</Speed>\n\t\t\t\t<Heading>
80
+ 7</Heading>\n\t\t\t\t<Routeid>15788</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>70</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:38
81
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6349</Vehicleid>\n\t\t\t\t<Block>140</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>19.99</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16288</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>70</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:37
82
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6297</Vehicleid>\n\t\t\t\t<Block>142</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>11.93</Speed>\n\t\t\t\t<Heading>
83
+ 9</Heading>\n\t\t\t\t<Routeid>16277</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>70</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:38
84
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6593</Vehicleid>\n\t\t\t\t<Block>143</Block>\n\t\t\t\t<Adherance>-3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>11.99</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16287</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>70</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:38
85
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6144</Vehicleid>\n\t\t\t\t<Block>144</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
86
+ 0</Heading>\n\t\t\t\t<Routeid>16289</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>70</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:38
87
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6346</Vehicleid>\n\t\t\t\t<Block>145</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.73</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16277</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>70</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:38
88
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6373</Vehicleid>\n\t\t\t\t<Block>147</Block>\n\t\t\t\t<Adherance>-12</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>26.59</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16289</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>70</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:37
89
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6534</Vehicleid>\n\t\t\t\t<Block>148</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>23.26</Speed>\n\t\t\t\t<Heading>
90
+ 0</Heading>\n\t\t\t\t<Routeid>16288</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>70</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:37
91
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6556</Vehicleid>\n\t\t\t\t<Block>149</Block>\n\t\t\t\t<Adherance>9</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>14.50</Speed>\n\t\t\t\t<Heading>19</Heading>\n\t\t\t\t<Routeid>16277</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>8</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>05:38
92
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6329</Vehicleid>\n\t\t\t\t<Block>15</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>1.66</Speed>\n\t\t\t\t<Heading>10</Heading>\n\t\t\t\t<Routeid>15788</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>DASG</Route>\n\t\t\t\t<Direction>K</Direction>\n\t\t\t\t<Updatetime>05:36
93
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>4166</Vehicleid>\n\t\t\t\t<Block>156</Block>\n\t\t\t\t<Adherance>-3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>8.92</Speed>\n\t\t\t\t<Heading>35</Heading>\n\t\t\t\t<Routeid>16767</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>DASG</Route>\n\t\t\t\t<Direction>K</Direction>\n\t\t\t\t<Updatetime>05:37
94
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>4167</Vehicleid>\n\t\t\t\t<Block>157</Block>\n\t\t\t\t<Adherance>-1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>8.18</Speed>\n\t\t\t\t<Heading>
95
+ 9</Heading>\n\t\t\t\t<Routeid>16767</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>8</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>05:33
96
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6344</Vehicleid>\n\t\t\t\t<Block>16</Block>\n\t\t\t\t<Adherance>3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>30.50</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>15792</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>I10E</Route>\n\t\t\t\t<Direction>O</Direction>\n\t\t\t\t<Updatetime>05:35
97
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>7156</Vehicleid>\n\t\t\t\t<Block>168</Block>\n\t\t\t\t<Adherance>10</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>32</Heading>\n\t\t\t\t<Routeid>16787</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>I10E</Route>\n\t\t\t\t<Direction>O</Direction>\n\t\t\t\t<Updatetime>05:37
98
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>7146</Vehicleid>\n\t\t\t\t<Block>169</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>10.06</Speed>\n\t\t\t\t<Heading>
99
+ 3</Heading>\n\t\t\t\t<Routeid>16787</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>8</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>05:38
100
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6306</Vehicleid>\n\t\t\t\t<Block>17</Block>\n\t\t\t\t<Adherance>4</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>15.91</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>15788</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route></Route>\n\t\t\t\t<Direction>
101
+ </Direction>\n\t\t\t\t<Updatetime>05:39 PM</Updatetime>\n\t\t\t\t<Vehicleid>117</Vehicleid>\n\t\t\t\t<Block>17058</Block>\n\t\t\t\t<Adherance>-16</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>N</Inservice>\n\t\t\t\t<Speed>22.31</Speed>\n\t\t\t\t<Heading>
102
+ 0</Heading>\n\t\t\t\t<Routeid>0</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>LTRL</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:37
103
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>127</Vehicleid>\n\t\t\t\t<Block>17064</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
104
+ 0</Heading>\n\t\t\t\t<Routeid>14476</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>LTRL</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:39
105
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>121</Vehicleid>\n\t\t\t\t<Block>17065</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>15.59</Speed>\n\t\t\t\t<Heading>12</Heading>\n\t\t\t\t<Routeid>14474</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>LTRL</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:39
106
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>105</Vehicleid>\n\t\t\t\t<Block>17066</Block>\n\t\t\t\t<Adherance>-1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
107
+ 0</Heading>\n\t\t\t\t<Routeid>14476</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>LTRL</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:39
108
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>126</Vehicleid>\n\t\t\t\t<Block>17067</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>10.85</Speed>\n\t\t\t\t<Heading>
109
+ 9</Heading>\n\t\t\t\t<Routeid>14474</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>LTRL</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:39
110
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>102</Vehicleid>\n\t\t\t\t<Block>17068</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>21.91</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>14476</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>LTRL</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:39
111
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>149</Vehicleid>\n\t\t\t\t<Block>17069</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
112
+ 0</Heading>\n\t\t\t\t<Routeid>14474</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>LTRL</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:39
113
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>109</Vehicleid>\n\t\t\t\t<Block>17070</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
114
+ 0</Heading>\n\t\t\t\t<Routeid>14476</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>I10E</Route>\n\t\t\t\t<Direction>O</Direction>\n\t\t\t\t<Updatetime>05:37
115
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>7107</Vehicleid>\n\t\t\t\t<Block>171</Block>\n\t\t\t\t<Adherance>6</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>14.85</Speed>\n\t\t\t\t<Heading>25</Heading>\n\t\t\t\t<Routeid>16787</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>LTRL</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:39
116
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>122</Vehicleid>\n\t\t\t\t<Block>17156</Block>\n\t\t\t\t<Adherance>-3</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>11</Heading>\n\t\t\t\t<Routeid>14507</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>LTRL</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:39
117
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>147</Vehicleid>\n\t\t\t\t<Block>17158</Block>\n\t\t\t\t<Adherance>-1</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>1.18</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>14507</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>LTRL</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:39
118
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>125</Vehicleid>\n\t\t\t\t<Block>17159</Block>\n\t\t\t\t<Adherance>-1</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
119
+ 0</Heading>\n\t\t\t\t<Routeid>14505</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>LTRL</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:39
120
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>128</Vehicleid>\n\t\t\t\t<Block>17160</Block>\n\t\t\t\t<Adherance>-1</Adherance>\n\t\t\t\t<Adhchange>D</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
121
+ 0</Heading>\n\t\t\t\t<Routeid>14507</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>LTRL</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:39
122
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>113</Vehicleid>\n\t\t\t\t<Block>17161</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>11</Heading>\n\t\t\t\t<Routeid>14505</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>LTRL</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:39
123
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>107</Vehicleid>\n\t\t\t\t<Block>17162</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
124
+ 0</Heading>\n\t\t\t\t<Routeid>14507</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route></Route>\n\t\t\t\t<Direction>
125
+ </Direction>\n\t\t\t\t<Updatetime>05:39 PM</Updatetime>\n\t\t\t\t<Vehicleid>127</Vehicleid>\n\t\t\t\t<Block>17163</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>N</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
126
+ 0</Heading>\n\t\t\t\t<Routeid>0</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>8</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>05:37
127
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6319</Vehicleid>\n\t\t\t\t<Block>18</Block>\n\t\t\t\t<Adherance>-2</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>4.05</Speed>\n\t\t\t\t<Heading>17</Heading>\n\t\t\t\t<Routeid>15792</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route></Route>\n\t\t\t\t<Direction>
128
+ </Direction>\n\t\t\t\t<Updatetime>05:36 PM</Updatetime>\n\t\t\t\t<Vehicleid>7109</Vehicleid>\n\t\t\t\t<Block>181</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>N</Inservice>\n\t\t\t\t<Speed>12.40</Speed>\n\t\t\t\t<Heading>
129
+ 0</Heading>\n\t\t\t\t<Routeid>0</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>I10W</Route>\n\t\t\t\t<Direction>O</Direction>\n\t\t\t\t<Updatetime>05:37
130
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>7148</Vehicleid>\n\t\t\t\t<Block>183</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>18.72</Speed>\n\t\t\t\t<Heading>29</Heading>\n\t\t\t\t<Routeid>16791</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>I10W</Route>\n\t\t\t\t<Direction>O</Direction>\n\t\t\t\t<Updatetime>05:37
131
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>7145</Vehicleid>\n\t\t\t\t<Block>186</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>10.20</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16791</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>I17</Route>\n\t\t\t\t<Direction>O</Direction>\n\t\t\t\t<Updatetime>05:34
132
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>7149</Vehicleid>\n\t\t\t\t<Block>188</Block>\n\t\t\t\t<Adherance>9</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>31</Heading>\n\t\t\t\t<Routeid>16728</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>ZERO</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>05:37
133
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6347</Vehicleid>\n\t\t\t\t<Block>189</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
134
+ 0</Heading>\n\t\t\t\t<Routeid>16893</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>10</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:38
135
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>8002</Vehicleid>\n\t\t\t\t<Block>19</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>13.30</Speed>\n\t\t\t\t<Heading>25</Heading>\n\t\t\t\t<Routeid>15804</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>ZERO</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>05:38
136
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6362</Vehicleid>\n\t\t\t\t<Block>190</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>13.90</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16901</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>ZERO</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>05:37
137
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6366</Vehicleid>\n\t\t\t\t<Block>191</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>23.23</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16893</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>ZERO</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>05:36
138
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6372</Vehicleid>\n\t\t\t\t<Block>192</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>8.81</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16901</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>ZERO</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>05:38
139
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6326</Vehicleid>\n\t\t\t\t<Block>193</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>L</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
140
+ 0</Heading>\n\t\t\t\t<Routeid>16893</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>ZERO</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>05:37
141
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6333</Vehicleid>\n\t\t\t\t<Block>194</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>L</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
142
+ 0</Heading>\n\t\t\t\t<Routeid>16901</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>ZERO</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>05:38
143
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6337</Vehicleid>\n\t\t\t\t<Block>195</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>18.19</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16901</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>ZERO</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>05:38
144
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6288</Vehicleid>\n\t\t\t\t<Block>198</Block>\n\t\t\t\t<Adherance>-7</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>11.73</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16893</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>7</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>05:37
145
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6017</Vehicleid>\n\t\t\t\t<Block>2</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>6.12</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15784</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>3</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:37
146
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5048</Vehicleid>\n\t\t\t\t<Block>2001</Block>\n\t\t\t\t<Adherance>-3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>21.26</Speed>\n\t\t\t\t<Heading>
147
+ 9</Heading>\n\t\t\t\t<Routeid>15736</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route></Route>\n\t\t\t\t<Direction>
148
+ </Direction>\n\t\t\t\t<Updatetime>05:36 PM</Updatetime>\n\t\t\t\t<Vehicleid>8034</Vehicleid>\n\t\t\t\t<Block>2002</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>N</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
149
+ 0</Heading>\n\t\t\t\t<Routeid>0</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>3</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:36
150
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6563</Vehicleid>\n\t\t\t\t<Block>2003</Block>\n\t\t\t\t<Adherance>3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>21.38</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15765</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>3</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:37
151
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>8043</Vehicleid>\n\t\t\t\t<Block>2005</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>D</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>18.49</Speed>\n\t\t\t\t<Heading>
152
+ 9</Heading>\n\t\t\t\t<Routeid>15733</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route></Route>\n\t\t\t\t<Direction>
153
+ </Direction>\n\t\t\t\t<Updatetime>05:38 PM</Updatetime>\n\t\t\t\t<Vehicleid>5014</Vehicleid>\n\t\t\t\t<Block>2006</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>N</Inservice>\n\t\t\t\t<Speed>0.09</Speed>\n\t\t\t\t<Heading>
154
+ 0</Heading>\n\t\t\t\t<Routeid>0</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>3</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:38
155
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6519</Vehicleid>\n\t\t\t\t<Block>2008</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>23.06</Speed>\n\t\t\t\t<Heading>
156
+ 9</Heading>\n\t\t\t\t<Routeid>15738</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>3</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:38
157
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5006</Vehicleid>\n\t\t\t\t<Block>2009</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.07</Speed>\n\t\t\t\t<Heading>
158
+ 0</Heading>\n\t\t\t\t<Routeid>15765</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>ZERO</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>05:37
159
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6152</Vehicleid>\n\t\t\t\t<Block>201</Block>\n\t\t\t\t<Adherance>3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>8.75</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16894</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>3</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:38
160
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5001</Vehicleid>\n\t\t\t\t<Block>2010</Block>\n\t\t\t\t<Adherance>4</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>5.45</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15761</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>3</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:37
161
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5002</Vehicleid>\n\t\t\t\t<Block>2011</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>10.27</Speed>\n\t\t\t\t<Heading>
162
+ 9</Heading>\n\t\t\t\t<Routeid>15733</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>3</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:37
163
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>8026</Vehicleid>\n\t\t\t\t<Block>2012</Block>\n\t\t\t\t<Adherance>4</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>6.27</Speed>\n\t\t\t\t<Heading>
164
+ 9</Heading>\n\t\t\t\t<Routeid>15738</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>3</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:37
165
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6504</Vehicleid>\n\t\t\t\t<Block>2013</Block>\n\t\t\t\t<Adherance>4</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>13.11</Speed>\n\t\t\t\t<Heading>
166
+ 9</Heading>\n\t\t\t\t<Routeid>15733</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>3</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:38
167
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6564</Vehicleid>\n\t\t\t\t<Block>2014</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>13.35</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15761</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>3</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:37
168
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6529</Vehicleid>\n\t\t\t\t<Block>2015</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>11.05</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15765</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>3</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:37
169
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6150</Vehicleid>\n\t\t\t\t<Block>2016</Block>\n\t\t\t\t<Adherance>-12</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>2.82</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15763</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>3</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:35
170
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6506</Vehicleid>\n\t\t\t\t<Block>2017</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>L</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
171
+ 0</Heading>\n\t\t\t\t<Routeid>15763</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>13</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:37
172
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6520</Vehicleid>\n\t\t\t\t<Block>2018</Block>\n\t\t\t\t<Adherance>-1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>13.02</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15824</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>13</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:38
173
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5053</Vehicleid>\n\t\t\t\t<Block>2019</Block>\n\t\t\t\t<Adherance>-3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>23.93</Speed>\n\t\t\t\t<Heading>
174
+ 9</Heading>\n\t\t\t\t<Routeid>15820</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>ZERO</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>05:32
175
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6310</Vehicleid>\n\t\t\t\t<Block>202</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>L</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
176
+ 0</Heading>\n\t\t\t\t<Routeid>16894</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>13</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:37
177
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5023</Vehicleid>\n\t\t\t\t<Block>2020</Block>\n\t\t\t\t<Adherance>5</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.09</Speed>\n\t\t\t\t<Heading>
178
+ 9</Heading>\n\t\t\t\t<Routeid>15820</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>13</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:37
179
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5020</Vehicleid>\n\t\t\t\t<Block>2022</Block>\n\t\t\t\t<Adherance>11</Adherance>\n\t\t\t\t<Adhchange>N</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
180
+ 0</Heading>\n\t\t\t\t<Routeid>15824</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>17</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:37
181
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5004</Vehicleid>\n\t\t\t\t<Block>2024</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>10.57</Speed>\n\t\t\t\t<Heading>14</Heading>\n\t\t\t\t<Routeid>15875</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>17</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:38
182
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6507</Vehicleid>\n\t\t\t\t<Block>2025</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>11.97</Speed>\n\t\t\t\t<Heading>
183
+ 9</Heading>\n\t\t\t\t<Routeid>15862</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>17</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:37
184
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6562</Vehicleid>\n\t\t\t\t<Block>2026</Block>\n\t\t\t\t<Adherance>3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>16.57</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15874</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>17</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:38
185
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>8049</Vehicleid>\n\t\t\t\t<Block>2027</Block>\n\t\t\t\t<Adherance>-1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>3.72</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15875</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>17</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:37
186
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5011</Vehicleid>\n\t\t\t\t<Block>2028</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>12.28</Speed>\n\t\t\t\t<Heading>
187
+ 9</Heading>\n\t\t\t\t<Routeid>15862</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>17</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:38
188
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5024</Vehicleid>\n\t\t\t\t<Block>2029</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>6.30</Speed>\n\t\t\t\t<Heading>
189
+ 9</Heading>\n\t\t\t\t<Routeid>15861</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>27</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>05:37
190
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6365</Vehicleid>\n\t\t\t\t<Block>203</Block>\n\t\t\t\t<Adherance>-2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>21.68</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>15905</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>17</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:37
191
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>8025</Vehicleid>\n\t\t\t\t<Block>2030</Block>\n\t\t\t\t<Adherance>5</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>2.94</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15875</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>17</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:38
192
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5007</Vehicleid>\n\t\t\t\t<Block>2031</Block>\n\t\t\t\t<Adherance>9</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>5.39</Speed>\n\t\t\t\t<Heading>30</Heading>\n\t\t\t\t<Routeid>15874</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>17</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:37
193
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>8037</Vehicleid>\n\t\t\t\t<Block>2032</Block>\n\t\t\t\t<Adherance>-3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>16.48</Speed>\n\t\t\t\t<Heading>
194
+ 9</Heading>\n\t\t\t\t<Routeid>15860</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>17</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:38
195
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5015</Vehicleid>\n\t\t\t\t<Block>2033</Block>\n\t\t\t\t<Adherance>-3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>10.76</Speed>\n\t\t\t\t<Heading>14</Heading>\n\t\t\t\t<Routeid>15861</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>17</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:36
196
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6517</Vehicleid>\n\t\t\t\t<Block>2034</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>17.53</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15875</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>17</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:38
197
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5059</Vehicleid>\n\t\t\t\t<Block>2035</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>D</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>10.18</Speed>\n\t\t\t\t<Heading>
198
+ 9</Heading>\n\t\t\t\t<Routeid>15860</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>17</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:38
199
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5050</Vehicleid>\n\t\t\t\t<Block>2037</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.09</Speed>\n\t\t\t\t<Heading>
200
+ 0</Heading>\n\t\t\t\t<Routeid>15861</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>17</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:37
201
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>8033</Vehicleid>\n\t\t\t\t<Block>2038</Block>\n\t\t\t\t<Adherance>3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
202
+ 9</Heading>\n\t\t\t\t<Routeid>15861</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>17</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:37
203
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6530</Vehicleid>\n\t\t\t\t<Block>2039</Block>\n\t\t\t\t<Adherance>4</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>6.83</Speed>\n\t\t\t\t<Heading>
204
+ 0</Heading>\n\t\t\t\t<Routeid>15874</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>27</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>05:36
205
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6313</Vehicleid>\n\t\t\t\t<Block>204</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
206
+ 0</Heading>\n\t\t\t\t<Routeid>15906</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route></Route>\n\t\t\t\t<Direction>
207
+ </Direction>\n\t\t\t\t<Updatetime>05:38 PM</Updatetime>\n\t\t\t\t<Vehicleid>6531</Vehicleid>\n\t\t\t\t<Block>2040</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>N</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
208
+ 0</Heading>\n\t\t\t\t<Routeid>0</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>17</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:36
209
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>8035</Vehicleid>\n\t\t\t\t<Block>2041</Block>\n\t\t\t\t<Adherance>3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
210
+ 9</Heading>\n\t\t\t\t<Routeid>15859</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>17</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:37
211
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5036</Vehicleid>\n\t\t\t\t<Block>2042</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>8.89</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15874</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>29</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:37
212
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5008</Vehicleid>\n\t\t\t\t<Block>2048</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>9.47</Speed>\n\t\t\t\t<Heading>
213
+ 9</Heading>\n\t\t\t\t<Routeid>15929</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>29</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:37
214
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5028</Vehicleid>\n\t\t\t\t<Block>2049</Block>\n\t\t\t\t<Adherance>-2</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>15.17</Speed>\n\t\t\t\t<Heading>
215
+ 9</Heading>\n\t\t\t\t<Routeid>15927</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>29</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:37
216
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>8027</Vehicleid>\n\t\t\t\t<Block>2050</Block>\n\t\t\t\t<Adherance>6</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>22.23</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15938</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>41</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:36
217
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>8028</Vehicleid>\n\t\t\t\t<Block>2052</Block>\n\t\t\t\t<Adherance>-4</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>14.48</Speed>\n\t\t\t\t<Heading>10</Heading>\n\t\t\t\t<Routeid>16014</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>29</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:37
218
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6524</Vehicleid>\n\t\t\t\t<Block>2053</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>20.23</Speed>\n\t\t\t\t<Heading>
219
+ 9</Heading>\n\t\t\t\t<Routeid>15928</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>29</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:38
220
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>8046</Vehicleid>\n\t\t\t\t<Block>2059</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>15.25</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15937</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>29</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:38
221
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5027</Vehicleid>\n\t\t\t\t<Block>2060</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>D</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>14.24</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15940</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>29</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:38
222
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6509</Vehicleid>\n\t\t\t\t<Block>2062</Block>\n\t\t\t\t<Adherance>7</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
223
+ 9</Heading>\n\t\t\t\t<Routeid>15927</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>29</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:37
224
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>8041</Vehicleid>\n\t\t\t\t<Block>2064</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
225
+ 0</Heading>\n\t\t\t\t<Routeid>15927</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>29</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:38
226
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>8021</Vehicleid>\n\t\t\t\t<Block>2066</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>10.05</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15938</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>29</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:37
227
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6514</Vehicleid>\n\t\t\t\t<Block>2068</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>12.70</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15940</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>29</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:38
228
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>8039</Vehicleid>\n\t\t\t\t<Block>2069</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>4.23</Speed>\n\t\t\t\t<Heading>
229
+ 9</Heading>\n\t\t\t\t<Routeid>15929</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>27</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>05:37
230
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6549</Vehicleid>\n\t\t\t\t<Block>207</Block>\n\t\t\t\t<Adherance>-11</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>12.39</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>15916</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>29</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:38
231
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6505</Vehicleid>\n\t\t\t\t<Block>2072</Block>\n\t\t\t\t<Adherance>4</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
232
+ 9</Heading>\n\t\t\t\t<Routeid>15929</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>29</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:37
233
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>8050</Vehicleid>\n\t\t\t\t<Block>2073</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>L</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
234
+ 0</Heading>\n\t\t\t\t<Routeid>15937</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>29</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:38
235
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5021</Vehicleid>\n\t\t\t\t<Block>2074</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>23.59</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15938</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route></Route>\n\t\t\t\t<Direction>
236
+ </Direction>\n\t\t\t\t<Updatetime>05:35 PM</Updatetime>\n\t\t\t\t<Vehicleid>6502</Vehicleid>\n\t\t\t\t<Block>2075</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>N</Inservice>\n\t\t\t\t<Speed>2.88</Speed>\n\t\t\t\t<Heading>
237
+ 0</Heading>\n\t\t\t\t<Routeid>0</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>29</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:37
238
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>8047</Vehicleid>\n\t\t\t\t<Block>2076</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>14.35</Speed>\n\t\t\t\t<Heading>
239
+ 9</Heading>\n\t\t\t\t<Routeid>15926</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>29</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:37
240
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5026</Vehicleid>\n\t\t\t\t<Block>2078</Block>\n\t\t\t\t<Adherance>3</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>6.85</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15937</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route></Route>\n\t\t\t\t<Direction>
241
+ </Direction>\n\t\t\t\t<Updatetime>05:37 PM</Updatetime>\n\t\t\t\t<Vehicleid>5012</Vehicleid>\n\t\t\t\t<Block>2079</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>N</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
242
+ 0</Heading>\n\t\t\t\t<Routeid>0</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>41</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:38
243
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5018</Vehicleid>\n\t\t\t\t<Block>2080</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
244
+ 0</Heading>\n\t\t\t\t<Routeid>16002</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>41</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:33
245
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5057</Vehicleid>\n\t\t\t\t<Block>2082</Block>\n\t\t\t\t<Adherance>4</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>9.11</Speed>\n\t\t\t\t<Heading>
246
+ 9</Heading>\n\t\t\t\t<Routeid>16004</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>41</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:37
247
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5038</Vehicleid>\n\t\t\t\t<Block>2083</Block>\n\t\t\t\t<Adherance>7</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>11.28</Speed>\n\t\t\t\t<Heading>
248
+ 9</Heading>\n\t\t\t\t<Routeid>16003</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>41</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:34
249
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5043</Vehicleid>\n\t\t\t\t<Block>2084</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>15.17</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16017</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>41</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:37
250
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5033</Vehicleid>\n\t\t\t\t<Block>2085</Block>\n\t\t\t\t<Adherance>6</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>6.74</Speed>\n\t\t\t\t<Heading>
251
+ 9</Heading>\n\t\t\t\t<Routeid>16003</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>41</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:37
252
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>8038</Vehicleid>\n\t\t\t\t<Block>2086</Block>\n\t\t\t\t<Adherance>5</Adherance>\n\t\t\t\t<Adhchange>N</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
253
+ 0</Heading>\n\t\t\t\t<Routeid>16005</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>41</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:37
254
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6518</Vehicleid>\n\t\t\t\t<Block>2087</Block>\n\t\t\t\t<Adherance>3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>23.69</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16018</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>41</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:38
255
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6521</Vehicleid>\n\t\t\t\t<Block>2088</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>1.80</Speed>\n\t\t\t\t<Heading>
256
+ 9</Heading>\n\t\t\t\t<Routeid>16005</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>41</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:37
257
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6527</Vehicleid>\n\t\t\t\t<Block>2089</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>6.75</Speed>\n\t\t\t\t<Heading>
258
+ 9</Heading>\n\t\t\t\t<Routeid>16004</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>52</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:37
259
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6320</Vehicleid>\n\t\t\t\t<Block>209</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>28.20</Speed>\n\t\t\t\t<Heading>13</Heading>\n\t\t\t\t<Routeid>16131</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>41</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:38
260
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6528</Vehicleid>\n\t\t\t\t<Block>2090</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>24.14</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16015</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>41</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:37
261
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5047</Vehicleid>\n\t\t\t\t<Block>2091</Block>\n\t\t\t\t<Adherance>4</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>4.05</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16015</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>41</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:37
262
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5046</Vehicleid>\n\t\t\t\t<Block>2092</Block>\n\t\t\t\t<Adherance>3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>11.40</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16017</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>41</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:38
263
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5037</Vehicleid>\n\t\t\t\t<Block>2093</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>10.30</Speed>\n\t\t\t\t<Heading>
264
+ 2</Heading>\n\t\t\t\t<Routeid>16003</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>41</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:37
265
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5039</Vehicleid>\n\t\t\t\t<Block>2094</Block>\n\t\t\t\t<Adherance>6</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
266
+ 9</Heading>\n\t\t\t\t<Routeid>16003</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>41</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:38
267
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>8044</Vehicleid>\n\t\t\t\t<Block>2096</Block>\n\t\t\t\t<Adherance>-4</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.45</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16018</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>41</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:38
268
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>8023</Vehicleid>\n\t\t\t\t<Block>2097</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>12.66</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16015</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>43</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>05:37
269
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6532</Vehicleid>\n\t\t\t\t<Block>2098</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>L</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
270
+ 0</Heading>\n\t\t\t\t<Routeid>16030</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>10</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:38
271
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6370</Vehicleid>\n\t\t\t\t<Block>21</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>2.15</Speed>\n\t\t\t\t<Heading>35</Heading>\n\t\t\t\t<Routeid>15796</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>52</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:37
272
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6296</Vehicleid>\n\t\t\t\t<Block>210</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>19.94</Speed>\n\t\t\t\t<Heading>
273
+ 9</Heading>\n\t\t\t\t<Routeid>16125</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>43</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>05:38
274
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5034</Vehicleid>\n\t\t\t\t<Block>2100</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>9.55</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16026</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>43</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>05:38
275
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6565</Vehicleid>\n\t\t\t\t<Block>2101</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>19.39</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16030</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>43</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>05:37
276
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5045</Vehicleid>\n\t\t\t\t<Block>2102</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>19.03</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16030</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>51</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>05:37
277
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5040</Vehicleid>\n\t\t\t\t<Block>2103</Block>\n\t\t\t\t<Adherance>-1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>15.40</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16117</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>51</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>05:37
278
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5025</Vehicleid>\n\t\t\t\t<Block>2104</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>11.00</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16121</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>51</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>05:37
279
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6523</Vehicleid>\n\t\t\t\t<Block>2105</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>20.08</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16117</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>51</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>05:37
280
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5049</Vehicleid>\n\t\t\t\t<Block>2106</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>17.28</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16121</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>59</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>05:37
281
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5041</Vehicleid>\n\t\t\t\t<Block>2107</Block>\n\t\t\t\t<Adherance>3</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>20.30</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16180</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>59</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>05:38
282
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5060</Vehicleid>\n\t\t\t\t<Block>2108</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>17.09</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16180</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>59</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>05:38
283
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6522</Vehicleid>\n\t\t\t\t<Block>2109</Block>\n\t\t\t\t<Adherance>6</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.07</Speed>\n\t\t\t\t<Heading>
284
+ 0</Heading>\n\t\t\t\t<Routeid>16180</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>44</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>05:37
285
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6321</Vehicleid>\n\t\t\t\t<Block>211</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>35.38</Speed>\n\t\t\t\t<Heading>
286
+ 1</Heading>\n\t\t\t\t<Routeid>16034</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>59</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>05:37
287
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6512</Vehicleid>\n\t\t\t\t<Block>2110</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>3.41</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16174</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>59</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>05:38
288
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5005</Vehicleid>\n\t\t\t\t<Block>2111</Block>\n\t\t\t\t<Adherance>3</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>21.43</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16174</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>67</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>05:37
289
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5029</Vehicleid>\n\t\t\t\t<Block>2117</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>D</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>18.31</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16262</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>67</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>05:38
290
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5031</Vehicleid>\n\t\t\t\t<Block>2118</Block>\n\t\t\t\t<Adherance>-5</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>6.02</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16269</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>67</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>05:38
291
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5032</Vehicleid>\n\t\t\t\t<Block>2119</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>16.36</Speed>\n\t\t\t\t<Heading>
292
+ 0</Heading>\n\t\t\t\t<Routeid>16262</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>70</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:36
293
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6286</Vehicleid>\n\t\t\t\t<Block>212</Block>\n\t\t\t\t<Adherance>5</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16275</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>67</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>05:37
294
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6510</Vehicleid>\n\t\t\t\t<Block>2120</Block>\n\t\t\t\t<Adherance>-2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>32.65</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16269</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>GAL</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:37
295
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6516</Vehicleid>\n\t\t\t\t<Block>2124</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>6.22</Speed>\n\t\t\t\t<Heading>32</Heading>\n\t\t\t\t<Routeid>16719</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>MARY</Route>\n\t\t\t\t<Direction>K</Direction>\n\t\t\t\t<Updatetime>05:37
296
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>3768</Vehicleid>\n\t\t\t\t<Block>2126</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>22.70</Speed>\n\t\t\t\t<Heading>
297
+ 1</Heading>\n\t\t\t\t<Routeid>16819</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>MARY</Route>\n\t\t\t\t<Direction>K</Direction>\n\t\t\t\t<Updatetime>05:36
298
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>3002</Vehicleid>\n\t\t\t\t<Block>2128</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>11.11</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16819</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>44</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>05:38
299
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6369</Vehicleid>\n\t\t\t\t<Block>213</Block>\n\t\t\t\t<Adherance>4</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>19.23</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16038</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>METS</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>05:38
300
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6508</Vehicleid>\n\t\t\t\t<Block>2134</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>8.08</Speed>\n\t\t\t\t<Heading>
301
+ 0</Heading>\n\t\t\t\t<Routeid>16835</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>METS</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>05:38
302
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6566</Vehicleid>\n\t\t\t\t<Block>2136</Block>\n\t\t\t\t<Adherance>-13</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>20.65</Speed>\n\t\t\t\t<Heading>
303
+ 0</Heading>\n\t\t\t\t<Routeid>16831</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>METS</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>05:38
304
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6567</Vehicleid>\n\t\t\t\t<Block>2137</Block>\n\t\t\t\t<Adherance>-1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>14.93</Speed>\n\t\t\t\t<Heading>
305
+ 9</Heading>\n\t\t\t\t<Routeid>16835</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>METS</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>05:38
306
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6015</Vehicleid>\n\t\t\t\t<Block>2138</Block>\n\t\t\t\t<Adherance>-7</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.43</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16831</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>1</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:38
307
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6553</Vehicleid>\n\t\t\t\t<Block>214</Block>\n\t\t\t\t<Adherance>-1</Adherance>\n\t\t\t\t<Adhchange>D</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>4.01</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15721</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>52</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:35
308
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6331</Vehicleid>\n\t\t\t\t<Block>215</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>L</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
309
+ 0</Heading>\n\t\t\t\t<Routeid>16125</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>10</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:35
310
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6330</Vehicleid>\n\t\t\t\t<Block>22</Block>\n\t\t\t\t<Adherance>3</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>12.98</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>15796</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>10</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:37
311
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6335</Vehicleid>\n\t\t\t\t<Block>23</Block>\n\t\t\t\t<Adherance>-1</Adherance>\n\t\t\t\t<Adhchange>D</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>22.82</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15804</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>10</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:35
312
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6340</Vehicleid>\n\t\t\t\t<Block>25</Block>\n\t\t\t\t<Adherance>8</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>25</Heading>\n\t\t\t\t<Routeid>15796</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>10</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:38
313
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6594</Vehicleid>\n\t\t\t\t<Block>26</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>L</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
314
+ 0</Heading>\n\t\t\t\t<Routeid>15796</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>12</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>05:37
315
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>8054</Vehicleid>\n\t\t\t\t<Block>27</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>13.98</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>15816</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>7</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>05:38
316
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6327</Vehicleid>\n\t\t\t\t<Block>3</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>10.35</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>15784</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>12</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>05:38
317
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6041</Vehicleid>\n\t\t\t\t<Block>30</Block>\n\t\t\t\t<Adherance>-11</Adherance>\n\t\t\t\t<Adhchange>N</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
318
+ 0</Heading>\n\t\t\t\t<Routeid>15816</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>15</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>05:37
319
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6025</Vehicleid>\n\t\t\t\t<Block>31</Block>\n\t\t\t\t<Adherance>-2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>7.23</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15828</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>15</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>05:37
320
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6099</Vehicleid>\n\t\t\t\t<Block>32</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>6.74</Speed>\n\t\t\t\t<Heading>34</Heading>\n\t\t\t\t<Routeid>15832</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>16</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>05:35
321
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6364</Vehicleid>\n\t\t\t\t<Block>35</Block>\n\t\t\t\t<Adherance>-1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>10.42</Speed>\n\t\t\t\t<Heading>
322
+ 5</Heading>\n\t\t\t\t<Routeid>15851</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>16</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>05:38
323
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6377</Vehicleid>\n\t\t\t\t<Block>36</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>22.85</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>15851</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route></Route>\n\t\t\t\t<Direction>
324
+ </Direction>\n\t\t\t\t<Updatetime>05:37 PM</Updatetime>\n\t\t\t\t<Vehicleid>6374</Vehicleid>\n\t\t\t\t<Block>37</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>N</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
325
+ 0</Heading>\n\t\t\t\t<Routeid>0</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>16</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>05:38
326
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6350</Vehicleid>\n\t\t\t\t<Block>39</Block>\n\t\t\t\t<Adherance>-11</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>14.14</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>15851</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>7</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>05:37
327
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6339</Vehicleid>\n\t\t\t\t<Block>4</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>9.01</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>15784</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>16</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>05:38
328
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6304</Vehicleid>\n\t\t\t\t<Block>40</Block>\n\t\t\t\t<Adherance>3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>18.84</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>15840</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>MTCC</Route>\n\t\t\t\t<Direction>L</Direction>\n\t\t\t\t<Updatetime>05:37
329
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>1585</Vehicleid>\n\t\t\t\t<Block>4001</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>13.30</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16839</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route></Route>\n\t\t\t\t<Direction>
330
+ </Direction>\n\t\t\t\t<Updatetime>05:36 PM</Updatetime>\n\t\t\t\t<Vehicleid>1587</Vehicleid>\n\t\t\t\t<Block>4002</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>N</Inservice>\n\t\t\t\t<Speed>0.11</Speed>\n\t\t\t\t<Heading>
331
+ 0</Heading>\n\t\t\t\t<Routeid>0</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>7</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>05:38
332
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5085</Vehicleid>\n\t\t\t\t<Block>402</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>15.61</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>15780</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>7</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>05:34
333
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6581</Vehicleid>\n\t\t\t\t<Block>403</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>6.53</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>15780</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>7</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>05:38
334
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5095</Vehicleid>\n\t\t\t\t<Block>404</Block>\n\t\t\t\t<Adherance>-1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>5.02</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15780</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>7</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>05:36
335
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6243</Vehicleid>\n\t\t\t\t<Block>405</Block>\n\t\t\t\t<Adherance>12</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>7.80</Speed>\n\t\t\t\t<Heading>35</Heading>\n\t\t\t\t<Routeid>15780</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>8</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>05:38
336
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5090</Vehicleid>\n\t\t\t\t<Block>406</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>9.82</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>15792</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>30</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:37
337
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6618</Vehicleid>\n\t\t\t\t<Block>4063</Block>\n\t\t\t\t<Adherance>5</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>21.00</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15963</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route></Route>\n\t\t\t\t<Direction>
338
+ </Direction>\n\t\t\t\t<Updatetime>05:31 PM</Updatetime>\n\t\t\t\t<Vehicleid>6709</Vehicleid>\n\t\t\t\t<Block>4065</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>N</Inservice>\n\t\t\t\t<Speed>0.01</Speed>\n\t\t\t\t<Heading>
339
+ 0</Heading>\n\t\t\t\t<Routeid>0</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>30</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:37
340
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6612</Vehicleid>\n\t\t\t\t<Block>4066</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>16.86</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15963</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>30</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:37
341
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6747</Vehicleid>\n\t\t\t\t<Block>4067</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>17.17</Speed>\n\t\t\t\t<Heading>
342
+ 9</Heading>\n\t\t\t\t<Routeid>15950</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>45</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:37
343
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6637</Vehicleid>\n\t\t\t\t<Block>4068</Block>\n\t\t\t\t<Adherance>6</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>8.09</Speed>\n\t\t\t\t<Heading>29</Heading>\n\t\t\t\t<Routeid>16064</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>61</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:37
344
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6633</Vehicleid>\n\t\t\t\t<Block>4069</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>9.52</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16218</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>12</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>05:36
345
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5109</Vehicleid>\n\t\t\t\t<Block>407</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>13.07</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>15812</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>45</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:37
346
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6640</Vehicleid>\n\t\t\t\t<Block>4070</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>12.90</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16044</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>45</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:37
347
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6620</Vehicleid>\n\t\t\t\t<Block>4071</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>14.02</Speed>\n\t\t\t\t<Heading>28</Heading>\n\t\t\t\t<Routeid>16064</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>45</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:37
348
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6457</Vehicleid>\n\t\t\t\t<Block>4073</Block>\n\t\t\t\t<Adherance>-2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>27.44</Speed>\n\t\t\t\t<Heading>
349
+ 9</Heading>\n\t\t\t\t<Routeid>16046</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>45</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:37
350
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6646</Vehicleid>\n\t\t\t\t<Block>4074</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>22.31</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16064</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>45</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:37
351
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6636</Vehicleid>\n\t\t\t\t<Block>4075</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>D</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>4.49</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16065</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>45</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:37
352
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6677</Vehicleid>\n\t\t\t\t<Block>4077</Block>\n\t\t\t\t<Adherance>3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16065</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>45</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:38
353
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6625</Vehicleid>\n\t\t\t\t<Block>4078</Block>\n\t\t\t\t<Adherance>4</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>14.62</Speed>\n\t\t\t\t<Heading>19</Heading>\n\t\t\t\t<Routeid>16064</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>45</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:38
354
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6645</Vehicleid>\n\t\t\t\t<Block>4079</Block>\n\t\t\t\t<Adherance>3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>5.32</Speed>\n\t\t\t\t<Heading>
355
+ 9</Heading>\n\t\t\t\t<Routeid>16046</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>45</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:36
356
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6623</Vehicleid>\n\t\t\t\t<Block>4080</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.09</Speed>\n\t\t\t\t<Heading>
357
+ 9</Heading>\n\t\t\t\t<Routeid>16044</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>66</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>05:37
358
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6708</Vehicleid>\n\t\t\t\t<Block>4083</Block>\n\t\t\t\t<Adherance>-1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>9.47</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16254</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>66</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>05:37
359
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6685</Vehicleid>\n\t\t\t\t<Block>4084</Block>\n\t\t\t\t<Adherance>-4</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>19.72</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16248</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>48</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>05:37
360
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6700</Vehicleid>\n\t\t\t\t<Block>4085</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>19.66</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16083</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>48</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>05:38
361
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6710</Vehicleid>\n\t\t\t\t<Block>4086</Block>\n\t\t\t\t<Adherance>-2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>12.81</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16076</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>48</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>05:37
362
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6670</Vehicleid>\n\t\t\t\t<Block>4087</Block>\n\t\t\t\t<Adherance>-4</Adherance>\n\t\t\t\t<Adhchange>N</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
363
+ 0</Heading>\n\t\t\t\t<Routeid>16083</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>56</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>05:38
364
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6679</Vehicleid>\n\t\t\t\t<Block>4088</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>3.18</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16166</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>56</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>05:35
365
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6604</Vehicleid>\n\t\t\t\t<Block>4089</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>L</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
366
+ 0</Heading>\n\t\t\t\t<Routeid>16147</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>19</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>05:38
367
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5106</Vehicleid>\n\t\t\t\t<Block>409</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>L</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
368
+ 0</Heading>\n\t\t\t\t<Routeid>15896</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>56</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>05:38
369
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6607</Vehicleid>\n\t\t\t\t<Block>4091</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>29.83</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16166</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>56</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>05:37
370
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6689</Vehicleid>\n\t\t\t\t<Block>4094</Block>\n\t\t\t\t<Adherance>-6</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>14.92</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16147</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>56</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>05:37
371
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6712</Vehicleid>\n\t\t\t\t<Block>4095</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.16</Speed>\n\t\t\t\t<Heading>35</Heading>\n\t\t\t\t<Routeid>16147</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>56</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>05:38
372
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6631</Vehicleid>\n\t\t\t\t<Block>4096</Block>\n\t\t\t\t<Adherance>-9</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>22.44</Speed>\n\t\t\t\t<Heading>17</Heading>\n\t\t\t\t<Routeid>16163</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>56</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>05:37
373
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6641</Vehicleid>\n\t\t\t\t<Block>4097</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>23.33</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16143</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>56</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>05:37
374
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6627</Vehicleid>\n\t\t\t\t<Block>4098</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>34.60</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16143</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>16</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>05:38
375
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6571</Vehicleid>\n\t\t\t\t<Block>41</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>13.11</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>15840</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>19</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>05:37
376
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>8060</Vehicleid>\n\t\t\t\t<Block>410</Block>\n\t\t\t\t<Adherance>4</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>23.75</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>15887</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>61</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:38
377
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6681</Vehicleid>\n\t\t\t\t<Block>4101</Block>\n\t\t\t\t<Adherance>8</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>12.22</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16218</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>61</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:38
378
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6647</Vehicleid>\n\t\t\t\t<Block>4103</Block>\n\t\t\t\t<Adherance>6</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>13.34</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16218</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>61</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:38
379
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6639</Vehicleid>\n\t\t\t\t<Block>4104</Block>\n\t\t\t\t<Adherance>-1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>10.49</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16217</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>40</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:37
380
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6634</Vehicleid>\n\t\t\t\t<Block>4106</Block>\n\t\t\t\t<Adherance>-1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>9.41</Speed>\n\t\t\t\t<Heading>
381
+ 5</Heading>\n\t\t\t\t<Routeid>15997</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>19</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>05:38
382
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5064</Vehicleid>\n\t\t\t\t<Block>411</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>22.39</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>15887</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>61</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:37
383
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6598</Vehicleid>\n\t\t\t\t<Block>4111</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>27.36</Speed>\n\t\t\t\t<Heading>
384
+ 9</Heading>\n\t\t\t\t<Routeid>16200</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>61</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:38
385
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6638</Vehicleid>\n\t\t\t\t<Block>4112</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>19.98</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16218</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>61</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:37
386
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6608</Vehicleid>\n\t\t\t\t<Block>4113</Block>\n\t\t\t\t<Adherance>3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.26</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16218</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>61</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:31
387
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6609</Vehicleid>\n\t\t\t\t<Block>4114</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>L</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
388
+ 0</Heading>\n\t\t\t\t<Routeid>16218</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>61</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:35
389
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6643</Vehicleid>\n\t\t\t\t<Block>4115</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>L</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
390
+ 0</Heading>\n\t\t\t\t<Routeid>16200</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>62</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>05:38
391
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6711</Vehicleid>\n\t\t\t\t<Block>4116</Block>\n\t\t\t\t<Adherance>-2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>26.53</Speed>\n\t\t\t\t<Heading>
392
+ 9</Heading>\n\t\t\t\t<Routeid>16230</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>62</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>05:38
393
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6691</Vehicleid>\n\t\t\t\t<Block>4117</Block>\n\t\t\t\t<Adherance>-6</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>16.20</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16230</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>62</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>05:38
394
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6684</Vehicleid>\n\t\t\t\t<Block>4118</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>29.26</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16236</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>62</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>05:37
395
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6705</Vehicleid>\n\t\t\t\t<Block>4119</Block>\n\t\t\t\t<Adherance>-8</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>12.00</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16236</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>65</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>05:37
396
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6746</Vehicleid>\n\t\t\t\t<Block>4120</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>21.82</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16240</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>65</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>05:37
397
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6699</Vehicleid>\n\t\t\t\t<Block>4121</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>19.28</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16244</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>65</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>05:37
398
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6695</Vehicleid>\n\t\t\t\t<Block>4122</Block>\n\t\t\t\t<Adherance>9</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>15.57</Speed>\n\t\t\t\t<Heading>26</Heading>\n\t\t\t\t<Routeid>16240</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>66</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>05:37
399
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6737</Vehicleid>\n\t\t\t\t<Block>4123</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>22.40</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16254</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>72</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>05:38
400
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6672</Vehicleid>\n\t\t\t\t<Block>4124</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>46.99</Speed>\n\t\t\t\t<Heading>
401
+ 0</Heading>\n\t\t\t\t<Routeid>16301</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>72</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>05:37
402
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>8065</Vehicleid>\n\t\t\t\t<Block>4125</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>15.02</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16317</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>72</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>05:32
403
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6454</Vehicleid>\n\t\t\t\t<Block>4126</Block>\n\t\t\t\t<Adherance>5</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>13.31</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16317</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>72</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>05:36
404
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>8070</Vehicleid>\n\t\t\t\t<Block>4127</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>25.14</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16301</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>72</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>05:37
405
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6694</Vehicleid>\n\t\t\t\t<Block>4128</Block>\n\t\t\t\t<Adherance>-1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>17.40</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16317</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>72</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>05:37
406
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>8076</Vehicleid>\n\t\t\t\t<Block>4129</Block>\n\t\t\t\t<Adherance>4</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>20.91</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16301</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>19</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>05:36
407
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5086</Vehicleid>\n\t\t\t\t<Block>413</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>16.39</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>15887</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>72</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>05:37
408
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>8068</Vehicleid>\n\t\t\t\t<Block>4130</Block>\n\t\t\t\t<Adherance>-1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>14.22</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16317</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>72</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>05:38
409
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6740</Vehicleid>\n\t\t\t\t<Block>4131</Block>\n\t\t\t\t<Adherance>-5</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>8.45</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16317</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>72</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>05:38
410
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6748</Vehicleid>\n\t\t\t\t<Block>4132</Block>\n\t\t\t\t<Adherance>-3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>17.80</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16301</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>72</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>05:38
411
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6704</Vehicleid>\n\t\t\t\t<Block>4133</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>L</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
412
+ 0</Heading>\n\t\t\t\t<Routeid>16317</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>72</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>05:36
413
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>8080</Vehicleid>\n\t\t\t\t<Block>4134</Block>\n\t\t\t\t<Adherance>-6</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>8.40</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16317</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>72</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>05:37
414
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6745</Vehicleid>\n\t\t\t\t<Block>4135</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>24.32</Speed>\n\t\t\t\t<Heading>
415
+ 0</Heading>\n\t\t\t\t<Routeid>16301</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>72</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>05:35
416
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6619</Vehicleid>\n\t\t\t\t<Block>4137</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>18.11</Speed>\n\t\t\t\t<Heading>
417
+ 0</Heading>\n\t\t\t\t<Routeid>16301</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>514</Route>\n\t\t\t\t<Direction>O</Direction>\n\t\t\t\t<Updatetime>05:37
418
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6744</Vehicleid>\n\t\t\t\t<Block>4139</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>11.47</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16653</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>514</Route>\n\t\t\t\t<Direction>O</Direction>\n\t\t\t\t<Updatetime>05:37
419
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>8075</Vehicleid>\n\t\t\t\t<Block>4140</Block>\n\t\t\t\t<Adherance>7</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>12.30</Speed>\n\t\t\t\t<Heading>
420
+ 9</Heading>\n\t\t\t\t<Routeid>16653</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>77</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:37
421
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6736</Vehicleid>\n\t\t\t\t<Block>4141</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>3.64</Speed>\n\t\t\t\t<Heading>
422
+ 8</Heading>\n\t\t\t\t<Routeid>16355</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route></Route>\n\t\t\t\t<Direction>
423
+ </Direction>\n\t\t\t\t<Updatetime>05:35 PM</Updatetime>\n\t\t\t\t<Vehicleid>8069</Vehicleid>\n\t\t\t\t<Block>4142</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t<Offroute>Y</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>N</Inservice>\n\t\t\t\t<Speed>0.44</Speed>\n\t\t\t\t<Heading>
424
+ 0</Heading>\n\t\t\t\t<Routeid>0</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>77</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:37
425
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>8071</Vehicleid>\n\t\t\t\t<Block>4143</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>19.67</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16336</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>77</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:38
426
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>8072</Vehicleid>\n\t\t\t\t<Block>4144</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>11.55</Speed>\n\t\t\t\t<Heading>
427
+ 9</Heading>\n\t\t\t\t<Routeid>16336</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>77</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:37
428
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>8074</Vehicleid>\n\t\t\t\t<Block>4145</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>5.00</Speed>\n\t\t\t\t<Heading>29</Heading>\n\t\t\t\t<Routeid>16355</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>77</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:37
429
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>8078</Vehicleid>\n\t\t\t\t<Block>4146</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>25.07</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16355</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>77</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:37
430
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6622</Vehicleid>\n\t\t\t\t<Block>4147</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>12.81</Speed>\n\t\t\t\t<Heading>
431
+ 9</Heading>\n\t\t\t\t<Routeid>16336</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>61</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:37
432
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6626</Vehicleid>\n\t\t\t\t<Block>4148</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>16.80</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16218</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>522</Route>\n\t\t\t\t<Direction>O</Direction>\n\t\t\t\t<Updatetime>05:37
433
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6749</Vehicleid>\n\t\t\t\t<Block>4149</Block>\n\t\t\t\t<Adherance>-4</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>35.33</Speed>\n\t\t\t\t<Heading>12</Heading>\n\t\t\t\t<Routeid>16668</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>19</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>05:37
434
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5097</Vehicleid>\n\t\t\t\t<Block>415</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>14.57</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>15887</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>81</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>05:37
435
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6680</Vehicleid>\n\t\t\t\t<Block>4150</Block>\n\t\t\t\t<Adherance>-7</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>29.11</Speed>\n\t\t\t\t<Heading>21</Heading>\n\t\t\t\t<Routeid>16402</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>81</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>05:37
436
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6735</Vehicleid>\n\t\t\t\t<Block>4151</Block>\n\t\t\t\t<Adherance>4</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>16.70</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16389</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>81</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>05:38
437
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6696</Vehicleid>\n\t\t\t\t<Block>4153</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>6.33</Speed>\n\t\t\t\t<Heading>35</Heading>\n\t\t\t\t<Routeid>16402</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>81</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>05:37
438
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6706</Vehicleid>\n\t\t\t\t<Block>4154</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>31.85</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16389</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>81</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>05:38
439
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6707</Vehicleid>\n\t\t\t\t<Block>4156</Block>\n\t\t\t\t<Adherance>-5</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>22.61</Speed>\n\t\t\t\t<Heading>26</Heading>\n\t\t\t\t<Routeid>16402</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>81</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>05:37
440
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6693</Vehicleid>\n\t\t\t\t<Block>4157</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>19.84</Speed>\n\t\t\t\t<Heading>
441
+ 2</Heading>\n\t\t\t\t<Routeid>16389</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>81</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>05:38
442
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6741</Vehicleid>\n\t\t\t\t<Block>4159</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>15.24</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16402</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>81</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>05:36
443
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6703</Vehicleid>\n\t\t\t\t<Block>4161</Block>\n\t\t\t\t<Adherance>4</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>12.47</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16405</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>81</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>05:37
444
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6734</Vehicleid>\n\t\t\t\t<Block>4162</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>27.02</Speed>\n\t\t\t\t<Heading>16</Heading>\n\t\t\t\t<Routeid>16392</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>81</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>05:37
445
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6702</Vehicleid>\n\t\t\t\t<Block>4163</Block>\n\t\t\t\t<Adherance>-5</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>17.41</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16392</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>96</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>05:38
446
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6629</Vehicleid>\n\t\t\t\t<Block>4164</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.16</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16435</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>96</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>05:37
447
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6644</Vehicleid>\n\t\t\t\t<Block>4165</Block>\n\t\t\t\t<Adherance>-2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>23.35</Speed>\n\t\t\t\t<Heading>17</Heading>\n\t\t\t\t<Routeid>16435</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>96</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>05:38
448
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6675</Vehicleid>\n\t\t\t\t<Block>4166</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>18.45</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16425</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>96</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>05:38
449
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6605</Vehicleid>\n\t\t\t\t<Block>4170</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>11.09</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16425</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route></Route>\n\t\t\t\t<Direction>
450
+ </Direction>\n\t\t\t\t<Updatetime>05:37 PM</Updatetime>\n\t\t\t\t<Vehicleid>6649</Vehicleid>\n\t\t\t\t<Block>4172</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>N</Inservice>\n\t\t\t\t<Speed>10.47</Speed>\n\t\t\t\t<Heading>
451
+ 0</Heading>\n\t\t\t\t<Routeid>0</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>108</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:34
452
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6642</Vehicleid>\n\t\t\t\t<Block>4174</Block>\n\t\t\t\t<Adherance>-1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>7.83</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16496</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>108</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:38
453
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6682</Vehicleid>\n\t\t\t\t<Block>4175</Block>\n\t\t\t\t<Adherance>-2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>16.14</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16496</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>112</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>05:37
454
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6617</Vehicleid>\n\t\t\t\t<Block>4176</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>21.78</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16522</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>156</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:38
455
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6673</Vehicleid>\n\t\t\t\t<Block>4178</Block>\n\t\t\t\t<Adherance>5</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>17.18</Speed>\n\t\t\t\t<Heading>
456
+ 9</Heading>\n\t\t\t\t<Routeid>16589</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>184</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>05:36
457
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6603</Vehicleid>\n\t\t\t\t<Block>4180</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>6.70</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16615</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>511</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>05:37
458
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6726</Vehicleid>\n\t\t\t\t<Block>4184</Block>\n\t\t\t\t<Adherance>-1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>29.64</Speed>\n\t\t\t\t<Heading>10</Heading>\n\t\t\t\t<Routeid>16647</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route></Route>\n\t\t\t\t<Direction>
459
+ </Direction>\n\t\t\t\t<Updatetime>05:34 PM</Updatetime>\n\t\t\t\t<Vehicleid>8077</Vehicleid>\n\t\t\t\t<Block>4185</Block>\n\t\t\t\t<Adherance>-1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>N</Inservice>\n\t\t\t\t<Speed>16.23</Speed>\n\t\t\t\t<Heading>
460
+ 0</Heading>\n\t\t\t\t<Routeid>0</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>511</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>05:38
461
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6733</Vehicleid>\n\t\t\t\t<Block>4186</Block>\n\t\t\t\t<Adherance>5</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>61.01</Speed>\n\t\t\t\t<Heading>13</Heading>\n\t\t\t\t<Routeid>16649</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>520</Route>\n\t\t\t\t<Direction>O</Direction>\n\t\t\t\t<Updatetime>05:37
462
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>7162</Vehicleid>\n\t\t\t\t<Block>4192</Block>\n\t\t\t\t<Adherance>4</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>34.99</Speed>\n\t\t\t\t<Heading>
463
+ 9</Heading>\n\t\t\t\t<Routeid>16657</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>521</Route>\n\t\t\t\t<Direction>O</Direction>\n\t\t\t\t<Updatetime>05:34
464
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6727</Vehicleid>\n\t\t\t\t<Block>4198</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>18.47</Speed>\n\t\t\t\t<Heading>22</Heading>\n\t\t\t\t<Routeid>16661</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>521</Route>\n\t\t\t\t<Direction>O</Direction>\n\t\t\t\t<Updatetime>05:38
465
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>7161</Vehicleid>\n\t\t\t\t<Block>4199</Block>\n\t\t\t\t<Adherance>8</Adherance>\n\t\t\t\t<Adhchange>D</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>19.52</Speed>\n\t\t\t\t<Heading>
466
+ 8</Heading>\n\t\t\t\t<Routeid>16661</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>16</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>05:37
467
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6139</Vehicleid>\n\t\t\t\t<Block>42</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>17.41</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>15852</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>521</Route>\n\t\t\t\t<Direction>O</Direction>\n\t\t\t\t<Updatetime>05:31
468
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>7158</Vehicleid>\n\t\t\t\t<Block>4200</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
469
+ 0</Heading>\n\t\t\t\t<Routeid>16661</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>522</Route>\n\t\t\t\t<Direction>O</Direction>\n\t\t\t\t<Updatetime>05:35
470
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6728</Vehicleid>\n\t\t\t\t<Block>4207</Block>\n\t\t\t\t<Adherance>12</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>25.33</Speed>\n\t\t\t\t<Heading>
471
+ 6</Heading>\n\t\t\t\t<Routeid>16667</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>19</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>05:38
472
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6240</Vehicleid>\n\t\t\t\t<Block>421</Block>\n\t\t\t\t<Adherance>7</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>17.56</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>15888</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>531</Route>\n\t\t\t\t<Direction>O</Direction>\n\t\t\t\t<Updatetime>05:38
473
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6729</Vehicleid>\n\t\t\t\t<Block>4212</Block>\n\t\t\t\t<Adherance>-4</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>62.43</Speed>\n\t\t\t\t<Heading>
474
+ 9</Heading>\n\t\t\t\t<Routeid>16673</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>531</Route>\n\t\t\t\t<Direction>O</Direction>\n\t\t\t\t<Updatetime>05:33
475
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6690</Vehicleid>\n\t\t\t\t<Block>4215</Block>\n\t\t\t\t<Adherance>8</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>14.56</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16673</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>19</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>05:32
476
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6224</Vehicleid>\n\t\t\t\t<Block>422</Block>\n\t\t\t\t<Adherance>4</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>10.25</Speed>\n\t\t\t\t<Heading>
477
+ 0</Heading>\n\t\t\t\t<Routeid>15888</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>541</Route>\n\t\t\t\t<Direction>O</Direction>\n\t\t\t\t<Updatetime>05:38
478
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6725</Vehicleid>\n\t\t\t\t<Block>4220</Block>\n\t\t\t\t<Adherance>6</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>15.61</Speed>\n\t\t\t\t<Heading>
479
+ 9</Heading>\n\t\t\t\t<Routeid>16685</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>541</Route>\n\t\t\t\t<Direction>O</Direction>\n\t\t\t\t<Updatetime>05:38
480
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6720</Vehicleid>\n\t\t\t\t<Block>4221</Block>\n\t\t\t\t<Adherance>8</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>27.09</Speed>\n\t\t\t\t<Heading>14</Heading>\n\t\t\t\t<Routeid>16685</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>542</Route>\n\t\t\t\t<Direction>O</Direction>\n\t\t\t\t<Updatetime>05:36
481
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6730</Vehicleid>\n\t\t\t\t<Block>4229</Block>\n\t\t\t\t<Adherance>15</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>3.24</Speed>\n\t\t\t\t<Heading>11</Heading>\n\t\t\t\t<Routeid>16689</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>542</Route>\n\t\t\t\t<Direction>O</Direction>\n\t\t\t\t<Updatetime>05:36
482
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>8511</Vehicleid>\n\t\t\t\t<Block>4230</Block>\n\t\t\t\t<Adherance>3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>9.47</Speed>\n\t\t\t\t<Heading>
483
+ 8</Heading>\n\t\t\t\t<Routeid>16689</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>156</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:36
484
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6686</Vehicleid>\n\t\t\t\t<Block>4231</Block>\n\t\t\t\t<Adherance>-1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>20.42</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16595</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>27</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>05:38
485
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5103</Vehicleid>\n\t\t\t\t<Block>424</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>12.08</Speed>\n\t\t\t\t<Heading>21</Heading>\n\t\t\t\t<Routeid>15915</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>27</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>05:37
486
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5093</Vehicleid>\n\t\t\t\t<Block>425</Block>\n\t\t\t\t<Adherance>-2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>18.78</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15916</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>27</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>05:38
487
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5092</Vehicleid>\n\t\t\t\t<Block>426</Block>\n\t\t\t\t<Adherance>-8</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>11.86</Speed>\n\t\t\t\t<Heading>
488
+ 1</Heading>\n\t\t\t\t<Routeid>15906</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route></Route>\n\t\t\t\t<Direction>
489
+ </Direction>\n\t\t\t\t<Updatetime>05:36 PM</Updatetime>\n\t\t\t\t<Vehicleid>5073</Vehicleid>\n\t\t\t\t<Block>427</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>N</Inservice>\n\t\t\t\t<Speed>1.24</Speed>\n\t\t\t\t<Heading>
490
+ 0</Heading>\n\t\t\t\t<Routeid>0</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>35</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>05:37
491
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>8061</Vehicleid>\n\t\t\t\t<Block>428</Block>\n\t\t\t\t<Adherance>-4</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>17.06</Speed>\n\t\t\t\t<Heading>
492
+ 7</Heading>\n\t\t\t\t<Routeid>15972</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>35</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>05:38
493
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>8063</Vehicleid>\n\t\t\t\t<Block>429</Block>\n\t\t\t\t<Adherance>-1</Adherance>\n\t\t\t\t<Adhchange>D</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>2.45</Speed>\n\t\t\t\t<Heading>14</Heading>\n\t\t\t\t<Routeid>15972</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>16</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>05:36
494
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6122</Vehicleid>\n\t\t\t\t<Block>43</Block>\n\t\t\t\t<Adherance>14</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>29</Heading>\n\t\t\t\t<Routeid>15852</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>35</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>05:38
495
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5078</Vehicleid>\n\t\t\t\t<Block>431</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>D</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>4.91</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>15972</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>35</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>05:38
496
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5100</Vehicleid>\n\t\t\t\t<Block>432</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>21.98</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>15972</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>35</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>05:37
497
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5101</Vehicleid>\n\t\t\t\t<Block>434</Block>\n\t\t\t\t<Adherance>4</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.07</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>15972</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>80</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:37
498
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5082</Vehicleid>\n\t\t\t\t<Block>439</Block>\n\t\t\t\t<Adherance>-5</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>7.38</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16378</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>60</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:37
499
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6535</Vehicleid>\n\t\t\t\t<Block>44</Block>\n\t\t\t\t<Adherance>3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>7.42</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16189</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route></Route>\n\t\t\t\t<Direction>
500
+ </Direction>\n\t\t\t\t<Updatetime>05:38 PM</Updatetime>\n\t\t\t\t<Vehicleid>5069</Vehicleid>\n\t\t\t\t<Block>443</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>N</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
501
+ 0</Heading>\n\t\t\t\t<Routeid>0</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>80</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:38
502
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5096</Vehicleid>\n\t\t\t\t<Block>444</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>4.07</Speed>\n\t\t\t\t<Heading>
503
+ 9</Heading>\n\t\t\t\t<Routeid>16366</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>80</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:37
504
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5112</Vehicleid>\n\t\t\t\t<Block>445</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>27.34</Speed>\n\t\t\t\t<Heading>25</Heading>\n\t\t\t\t<Routeid>16378</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>80</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:38
505
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6587</Vehicleid>\n\t\t\t\t<Block>446</Block>\n\t\t\t\t<Adherance>14</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>8.86</Speed>\n\t\t\t\t<Heading>16</Heading>\n\t\t\t\t<Routeid>16375</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route></Route>\n\t\t\t\t<Direction>
506
+ </Direction>\n\t\t\t\t<Updatetime>05:35 PM</Updatetime>\n\t\t\t\t<Vehicleid>6583</Vehicleid>\n\t\t\t\t<Block>447</Block>\n\t\t\t\t<Adherance>-5</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t<Offroute>Y</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>N</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
507
+ 0</Heading>\n\t\t\t\t<Routeid>0</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>90</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:37
508
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5108</Vehicleid>\n\t\t\t\t<Block>448</Block>\n\t\t\t\t<Adherance>4</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>11.82</Speed>\n\t\t\t\t<Heading>21</Heading>\n\t\t\t\t<Routeid>16420</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>90</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:37
509
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5107</Vehicleid>\n\t\t\t\t<Block>449</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>9.26</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16420</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>19</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>05:38
510
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>8005</Vehicleid>\n\t\t\t\t<Block>45</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>19.07</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>15896</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>90</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:37
511
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5102</Vehicleid>\n\t\t\t\t<Block>450</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>14.84</Speed>\n\t\t\t\t<Heading>11</Heading>\n\t\t\t\t<Routeid>16414</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>90</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:38
512
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5081</Vehicleid>\n\t\t\t\t<Block>451</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>29.44</Speed>\n\t\t\t\t<Heading>
513
+ 8</Heading>\n\t\t\t\t<Routeid>16414</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>90</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:37
514
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5077</Vehicleid>\n\t\t\t\t<Block>452</Block>\n\t\t\t\t<Adherance>7</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>18.97</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16420</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>90</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:37
515
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5070</Vehicleid>\n\t\t\t\t<Block>453</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>15.08</Speed>\n\t\t\t\t<Heading>
516
+ 1</Heading>\n\t\t\t\t<Routeid>16414</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>106</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:37
517
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6585</Vehicleid>\n\t\t\t\t<Block>455</Block>\n\t\t\t\t<Adherance>3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>18.61</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16466</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>106</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:38
518
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5110</Vehicleid>\n\t\t\t\t<Block>456</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>2.23</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16455</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>138</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:37
519
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5089</Vehicleid>\n\t\t\t\t<Block>457</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>16.53</Speed>\n\t\t\t\t<Heading>10</Heading>\n\t\t\t\t<Routeid>16573</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>106</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:37
520
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6578</Vehicleid>\n\t\t\t\t<Block>458</Block>\n\t\t\t\t<Adherance>-1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>9.89</Speed>\n\t\t\t\t<Heading>
521
+ 4</Heading>\n\t\t\t\t<Routeid>16455</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>19</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>05:37
522
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>8057</Vehicleid>\n\t\t\t\t<Block>46</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>28.36</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>15896</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>122</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:38
523
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5091</Vehicleid>\n\t\t\t\t<Block>462</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
524
+ 0</Heading>\n\t\t\t\t<Routeid>16536</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>106</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:38
525
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6239</Vehicleid>\n\t\t\t\t<Block>463</Block>\n\t\t\t\t<Adherance>8</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.11</Speed>\n\t\t\t\t<Heading>19</Heading>\n\t\t\t\t<Routeid>16466</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>138</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:38
526
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5076</Vehicleid>\n\t\t\t\t<Block>465</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>22.78</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16577</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>138</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:37
527
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5062</Vehicleid>\n\t\t\t\t<Block>467</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>8.75</Speed>\n\t\t\t\t<Heading>30</Heading>\n\t\t\t\t<Routeid>16573</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>154</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:37
528
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5063</Vehicleid>\n\t\t\t\t<Block>469</Block>\n\t\t\t\t<Adherance>-3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>20.05</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16585</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>19</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>05:37
529
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>8011</Vehicleid>\n\t\t\t\t<Block>47</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>D</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>19.05</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>15896</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>154</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:37
530
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5071</Vehicleid>\n\t\t\t\t<Block>472</Block>\n\t\t\t\t<Adherance>-1</Adherance>\n\t\t\t\t<Adhchange>D</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>16.06</Speed>\n\t\t\t\t<Heading>
531
+ 7</Heading>\n\t\t\t\t<Routeid>16581</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>154</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:38
532
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5074</Vehicleid>\n\t\t\t\t<Block>473</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>2.75</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16585</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>170</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:37
533
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5105</Vehicleid>\n\t\t\t\t<Block>475</Block>\n\t\t\t\t<Adherance>3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>31.61</Speed>\n\t\t\t\t<Heading>28</Heading>\n\t\t\t\t<Routeid>16609</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>170</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:38
534
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5111</Vehicleid>\n\t\t\t\t<Block>476</Block>\n\t\t\t\t<Adherance>-4</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>15.66</Speed>\n\t\t\t\t<Heading>
535
+ 9</Heading>\n\t\t\t\t<Routeid>16603</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>170</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:37
536
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5099</Vehicleid>\n\t\t\t\t<Block>477</Block>\n\t\t\t\t<Adherance>-2</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>3.10</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16609</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>170</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:37
537
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5079</Vehicleid>\n\t\t\t\t<Block>478</Block>\n\t\t\t\t<Adherance>-7</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>22.31</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16609</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>170</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:38
538
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5087</Vehicleid>\n\t\t\t\t<Block>480</Block>\n\t\t\t\t<Adherance>-1</Adherance>\n\t\t\t\t<Adhchange>D</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>13.31</Speed>\n\t\t\t\t<Heading>
539
+ 9</Heading>\n\t\t\t\t<Routeid>16603</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>170</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:38
540
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6582</Vehicleid>\n\t\t\t\t<Block>481</Block>\n\t\t\t\t<Adherance>-8</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>21.39</Speed>\n\t\t\t\t<Heading>
541
+ 9</Heading>\n\t\t\t\t<Routeid>16603</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>186</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:34
542
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6580</Vehicleid>\n\t\t\t\t<Block>482</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>L</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
543
+ 0</Heading>\n\t\t\t\t<Routeid>16627</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>186</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:38
544
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6579</Vehicleid>\n\t\t\t\t<Block>483</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>5.36</Speed>\n\t\t\t\t<Heading>16</Heading>\n\t\t\t\t<Routeid>16635</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>186</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:38
545
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5068</Vehicleid>\n\t\t\t\t<Block>484</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>25.80</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16634</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>186</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:38
546
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5067</Vehicleid>\n\t\t\t\t<Block>485</Block>\n\t\t\t\t<Adherance>7</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
547
+ 9</Heading>\n\t\t\t\t<Routeid>16627</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>186</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:38
548
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5066</Vehicleid>\n\t\t\t\t<Block>486</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>20.03</Speed>\n\t\t\t\t<Heading>
549
+ 9</Heading>\n\t\t\t\t<Routeid>16628</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route></Route>\n\t\t\t\t<Direction>
550
+ </Direction>\n\t\t\t\t<Updatetime>05:37 PM</Updatetime>\n\t\t\t\t<Vehicleid>7004</Vehicleid>\n\t\t\t\t<Block>5001</Block>\n\t\t\t\t<Adherance>-5</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>N</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
551
+ 0</Heading>\n\t\t\t\t<Routeid>0</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>AZAV</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>05:37
552
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>7006</Vehicleid>\n\t\t\t\t<Block>5002</Block>\n\t\t\t\t<Adherance>-2</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>14.18</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16761</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>MAIN</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:38
553
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>7001</Vehicleid>\n\t\t\t\t<Block>5003</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
554
+ 0</Heading>\n\t\t\t\t<Routeid>16801</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>AZAV</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>05:37
555
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>8518</Vehicleid>\n\t\t\t\t<Block>5005</Block>\n\t\t\t\t<Adherance>-1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>10.59</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16765</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>AZAV</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>05:37
556
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>7009</Vehicleid>\n\t\t\t\t<Block>5006</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>21.00</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16761</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>MAIN</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:37
557
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>7008</Vehicleid>\n\t\t\t\t<Block>5007</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>29.70</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16801</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>MAIN</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:38
558
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>7002</Vehicleid>\n\t\t\t\t<Block>5009</Block>\n\t\t\t\t<Adherance>-1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>14.44</Speed>\n\t\t\t\t<Heading>
559
+ 9</Heading>\n\t\t\t\t<Routeid>16801</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>MAIN</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:37
560
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>8519</Vehicleid>\n\t\t\t\t<Block>5011</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>D</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>8.85</Speed>\n\t\t\t\t<Heading>
561
+ 0</Heading>\n\t\t\t\t<Routeid>16803</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>MAIN</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:38
562
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>8517</Vehicleid>\n\t\t\t\t<Block>5012</Block>\n\t\t\t\t<Adherance>-4</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>21.44</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16803</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route></Route>\n\t\t\t\t<Direction>
563
+ </Direction>\n\t\t\t\t<Updatetime>05:38 PM</Updatetime>\n\t\t\t\t<Vehicleid>8520</Vehicleid>\n\t\t\t\t<Block>5013</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>N</Inservice>\n\t\t\t\t<Speed>0.05</Speed>\n\t\t\t\t<Heading>
564
+ 0</Heading>\n\t\t\t\t<Routeid>0</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>30</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:37
565
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6433</Vehicleid>\n\t\t\t\t<Block>5014</Block>\n\t\t\t\t<Adherance>3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.10</Speed>\n\t\t\t\t<Heading>24</Heading>\n\t\t\t\t<Routeid>15963</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>30</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:37
566
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6411</Vehicleid>\n\t\t\t\t<Block>5015</Block>\n\t\t\t\t<Adherance>-1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>15.23</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15963</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>30</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:34
567
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6405</Vehicleid>\n\t\t\t\t<Block>5016</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>9.83</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>15950</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>30</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:37
568
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6420</Vehicleid>\n\t\t\t\t<Block>5017</Block>\n\t\t\t\t<Adherance>3</Adherance>\n\t\t\t\t<Adhchange>D</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>16.68</Speed>\n\t\t\t\t<Heading>
569
+ 9</Heading>\n\t\t\t\t<Routeid>15950</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>30</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:32
570
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6443</Vehicleid>\n\t\t\t\t<Block>5018</Block>\n\t\t\t\t<Adherance>3</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>8.27</Speed>\n\t\t\t\t<Heading>
571
+ 9</Heading>\n\t\t\t\t<Routeid>15950</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>40</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:38
572
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6441</Vehicleid>\n\t\t\t\t<Block>5019</Block>\n\t\t\t\t<Adherance>-5</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>19.60</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15997</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>40</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:37
573
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6438</Vehicleid>\n\t\t\t\t<Block>5020</Block>\n\t\t\t\t<Adherance>-6</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t<Offroute>Y</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>42.09</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>15993</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>40</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:37
574
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6666</Vehicleid>\n\t\t\t\t<Block>5021</Block>\n\t\t\t\t<Adherance>-2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>18.01</Speed>\n\t\t\t\t<Heading>
575
+ 9</Heading>\n\t\t\t\t<Routeid>15993</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>40</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:38
576
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6452</Vehicleid>\n\t\t\t\t<Block>5022</Block>\n\t\t\t\t<Adherance>-11</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>17.51</Speed>\n\t\t\t\t<Heading>31</Heading>\n\t\t\t\t<Routeid>15993</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route></Route>\n\t\t\t\t<Direction>
577
+ </Direction>\n\t\t\t\t<Updatetime>05:38 PM</Updatetime>\n\t\t\t\t<Vehicleid>6422</Vehicleid>\n\t\t\t\t<Block>5023</Block>\n\t\t\t\t<Adherance>-2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>N</Inservice>\n\t\t\t\t<Speed>5.08</Speed>\n\t\t\t\t<Heading>
578
+ 0</Heading>\n\t\t\t\t<Routeid>0</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>45</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:35
579
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6401</Vehicleid>\n\t\t\t\t<Block>5026</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>D</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>4.56</Speed>\n\t\t\t\t<Heading>
580
+ 9</Heading>\n\t\t\t\t<Routeid>16044</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>45</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:37
581
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6661</Vehicleid>\n\t\t\t\t<Block>5027</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>16.66</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16064</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>61</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:38
582
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6655</Vehicleid>\n\t\t\t\t<Block>5029</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>8.38</Speed>\n\t\t\t\t<Heading>
583
+ 9</Heading>\n\t\t\t\t<Routeid>16200</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>61</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:38
584
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6402</Vehicleid>\n\t\t\t\t<Block>5032</Block>\n\t\t\t\t<Adherance>3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>20.47</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16218</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>61</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:38
585
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6659</Vehicleid>\n\t\t\t\t<Block>5033</Block>\n\t\t\t\t<Adherance>5</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>24.06</Speed>\n\t\t\t\t<Heading>
586
+ 9</Heading>\n\t\t\t\t<Routeid>16200</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>61</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:37
587
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6424</Vehicleid>\n\t\t\t\t<Block>5034</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>12.66</Speed>\n\t\t\t\t<Heading>
588
+ 9</Heading>\n\t\t\t\t<Routeid>16200</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>61</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:36
589
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6431</Vehicleid>\n\t\t\t\t<Block>5035</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>13.95</Speed>\n\t\t\t\t<Heading>
590
+ 9</Heading>\n\t\t\t\t<Routeid>16200</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>61</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:38
591
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6437</Vehicleid>\n\t\t\t\t<Block>5037</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>5.45</Speed>\n\t\t\t\t<Heading>
592
+ 9</Heading>\n\t\t\t\t<Routeid>16200</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>531</Route>\n\t\t\t\t<Direction>O</Direction>\n\t\t\t\t<Updatetime>05:37
593
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6714</Vehicleid>\n\t\t\t\t<Block>5038</Block>\n\t\t\t\t<Adherance>6</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>4.14</Speed>\n\t\t\t\t<Heading>16</Heading>\n\t\t\t\t<Routeid>16673</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>96</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>05:36
594
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6664</Vehicleid>\n\t\t\t\t<Block>5040</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>L</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
595
+ 0</Heading>\n\t\t\t\t<Routeid>16425</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>112</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>05:37
596
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6410</Vehicleid>\n\t\t\t\t<Block>5041</Block>\n\t\t\t\t<Adherance>-1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>9.27</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16512</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>112</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>05:38
597
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6409</Vehicleid>\n\t\t\t\t<Block>5042</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>32.35</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16512</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>112</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>05:38
598
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6656</Vehicleid>\n\t\t\t\t<Block>5043</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>1.49</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16522</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>108</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:37
599
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6426</Vehicleid>\n\t\t\t\t<Block>5044</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
600
+ 0</Heading>\n\t\t\t\t<Routeid>16499</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>108</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:38
601
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6412</Vehicleid>\n\t\t\t\t<Block>5045</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.32</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16496</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>184</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>05:36
602
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6417</Vehicleid>\n\t\t\t\t<Block>5046</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>1.93</Speed>\n\t\t\t\t<Heading>
603
+ 1</Heading>\n\t\t\t\t<Routeid>16615</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>108</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:38
604
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6432</Vehicleid>\n\t\t\t\t<Block>5047</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>17.02</Speed>\n\t\t\t\t<Heading>
605
+ 9</Heading>\n\t\t\t\t<Routeid>16481</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>108</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:38
606
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6663</Vehicleid>\n\t\t\t\t<Block>5048</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.33</Speed>\n\t\t\t\t<Heading>
607
+ 0</Heading>\n\t\t\t\t<Routeid>16481</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>112</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>05:36
608
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6428</Vehicleid>\n\t\t\t\t<Block>5049</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
609
+ 0</Heading>\n\t\t\t\t<Routeid>16512</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>104</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>05:35
610
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6442</Vehicleid>\n\t\t\t\t<Block>5051</Block>\n\t\t\t\t<Adherance>4</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>5.83</Speed>\n\t\t\t\t<Heading>17</Heading>\n\t\t\t\t<Routeid>16446</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>104</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>05:36
611
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6668</Vehicleid>\n\t\t\t\t<Block>5052</Block>\n\t\t\t\t<Adherance>-6</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>8.05</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16442</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>104</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>05:37
612
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6665</Vehicleid>\n\t\t\t\t<Block>5053</Block>\n\t\t\t\t<Adherance>-2</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>4.75</Speed>\n\t\t\t\t<Heading>26</Heading>\n\t\t\t\t<Routeid>16446</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>120</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>05:38
613
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6416</Vehicleid>\n\t\t\t\t<Block>5054</Block>\n\t\t\t\t<Adherance>-1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>29.67</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16529</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>120</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>05:36
614
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6660</Vehicleid>\n\t\t\t\t<Block>5055</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>L</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
615
+ 0</Heading>\n\t\t\t\t<Routeid>16529</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>128</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>05:37
616
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6419</Vehicleid>\n\t\t\t\t<Block>5056</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>12.58</Speed>\n\t\t\t\t<Heading>13</Heading>\n\t\t\t\t<Routeid>16546</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>128</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>05:37
617
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6653</Vehicleid>\n\t\t\t\t<Block>5057</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>23.40</Speed>\n\t\t\t\t<Heading>
618
+ 0</Heading>\n\t\t\t\t<Routeid>16543</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>136</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>05:38
619
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6415</Vehicleid>\n\t\t\t\t<Block>5060</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>13.72</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16554</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>136</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>05:37
620
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6658</Vehicleid>\n\t\t\t\t<Block>5061</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>13.52</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16564</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>136</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>05:37
621
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6435</Vehicleid>\n\t\t\t\t<Block>5063</Block>\n\t\t\t\t<Adherance>-2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>10.12</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16552</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>136</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>05:36
622
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>8501</Vehicleid>\n\t\t\t\t<Block>5064</Block>\n\t\t\t\t<Adherance>-3</Adherance>\n\t\t\t\t<Adhchange>N</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
623
+ 0</Heading>\n\t\t\t\t<Routeid>16564</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>156</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:37
624
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6436</Vehicleid>\n\t\t\t\t<Block>5067</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>9.82</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16595</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>184</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>05:37
625
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6421</Vehicleid>\n\t\t\t\t<Block>5068</Block>\n\t\t\t\t<Adherance>-3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>29.14</Speed>\n\t\t\t\t<Heading>26</Heading>\n\t\t\t\t<Routeid>16621</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>156</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:38
626
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6430</Vehicleid>\n\t\t\t\t<Block>5069</Block>\n\t\t\t\t<Adherance>3</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>10.97</Speed>\n\t\t\t\t<Heading>
627
+ 9</Heading>\n\t\t\t\t<Routeid>16589</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>156</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:38
628
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6404</Vehicleid>\n\t\t\t\t<Block>5070</Block>\n\t\t\t\t<Adherance>4</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>34.02</Speed>\n\t\t\t\t<Heading>
629
+ 9</Heading>\n\t\t\t\t<Routeid>16589</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>184</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>05:37
630
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6429</Vehicleid>\n\t\t\t\t<Block>5071</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>L</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
631
+ 0</Heading>\n\t\t\t\t<Routeid>16615</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>108</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:37
632
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6425</Vehicleid>\n\t\t\t\t<Block>5072</Block>\n\t\t\t\t<Adherance>-1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>29.53</Speed>\n\t\t\t\t<Heading>
633
+ 9</Heading>\n\t\t\t\t<Routeid>16481</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>156</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:37
634
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6434</Vehicleid>\n\t\t\t\t<Block>5073</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>21.18</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16595</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>184</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>05:37
635
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6414</Vehicleid>\n\t\t\t\t<Block>5077</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>32.55</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16621</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>533</Route>\n\t\t\t\t<Direction>O</Direction>\n\t\t\t\t<Updatetime>05:38
636
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>8505</Vehicleid>\n\t\t\t\t<Block>5087</Block>\n\t\t\t\t<Adherance>5</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
637
+ 5</Heading>\n\t\t\t\t<Routeid>16677</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>533</Route>\n\t\t\t\t<Direction>O</Direction>\n\t\t\t\t<Updatetime>05:37
638
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>8508</Vehicleid>\n\t\t\t\t<Block>5088</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>27.38</Speed>\n\t\t\t\t<Heading>13</Heading>\n\t\t\t\t<Routeid>16677</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>535</Route>\n\t\t\t\t<Direction>O</Direction>\n\t\t\t\t<Updatetime>05:38
639
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>8510</Vehicleid>\n\t\t\t\t<Block>5093</Block>\n\t\t\t\t<Adherance>5</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>9.16</Speed>\n\t\t\t\t<Heading>34</Heading>\n\t\t\t\t<Routeid>16681</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>535</Route>\n\t\t\t\t<Direction>O</Direction>\n\t\t\t\t<Updatetime>05:38
640
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6717</Vehicleid>\n\t\t\t\t<Block>5095</Block>\n\t\t\t\t<Adherance>7</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>11.02</Speed>\n\t\t\t\t<Heading>
641
+ 9</Heading>\n\t\t\t\t<Routeid>16681</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route></Route>\n\t\t\t\t<Direction>
642
+ </Direction>\n\t\t\t\t<Updatetime>05:31 PM</Updatetime>\n\t\t\t\t<Vehicleid>8010</Vehicleid>\n\t\t\t\t<Block>51</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>N</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
643
+ 0</Heading>\n\t\t\t\t<Routeid>0</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>19</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>05:34
644
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>8013</Vehicleid>\n\t\t\t\t<Block>52</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>11.19</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>15896</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>I17</Route>\n\t\t\t\t<Direction>O</Direction>\n\t\t\t\t<Updatetime>05:38
645
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>7121</Vehicleid>\n\t\t\t\t<Block>523</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>50.99</Speed>\n\t\t\t\t<Heading>
646
+ 0</Heading>\n\t\t\t\t<Routeid>16729</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>SSCR</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:38
647
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>1492</Vehicleid>\n\t\t\t\t<Block>527</Block>\n\t\t\t\t<Adherance>4</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>7.86</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16875</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>SSCR</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:31
648
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>1489</Vehicleid>\n\t\t\t\t<Block>528</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>D</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>7.84</Speed>\n\t\t\t\t<Heading>
649
+ 1</Heading>\n\t\t\t\t<Routeid>16875</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>SSCR</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:35
650
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>1491</Vehicleid>\n\t\t\t\t<Block>529</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>11.07</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16879</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>19</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>05:33
651
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6125</Vehicleid>\n\t\t\t\t<Block>53</Block>\n\t\t\t\t<Adherance>4</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>8.91</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>15897</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>39</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>05:36
652
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6233</Vehicleid>\n\t\t\t\t<Block>530</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>L</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
653
+ 0</Heading>\n\t\t\t\t<Routeid>15985</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>39</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>05:36
654
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6241</Vehicleid>\n\t\t\t\t<Block>531</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>L</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
655
+ 0</Heading>\n\t\t\t\t<Routeid>15989</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>138</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:38
656
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5104</Vehicleid>\n\t\t\t\t<Block>532</Block>\n\t\t\t\t<Adherance>6</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>7.77</Speed>\n\t\t\t\t<Heading>
657
+ 6</Heading>\n\t\t\t\t<Routeid>16577</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>106</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:38
658
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6238</Vehicleid>\n\t\t\t\t<Block>533</Block>\n\t\t\t\t<Adherance>-2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>36.93</Speed>\n\t\t\t\t<Heading>
659
+ 9</Heading>\n\t\t\t\t<Routeid>16455</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>106</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:38
660
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6586</Vehicleid>\n\t\t\t\t<Block>534</Block>\n\t\t\t\t<Adherance>6</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>12</Heading>\n\t\t\t\t<Routeid>16466</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>106</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:36
661
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6244</Vehicleid>\n\t\t\t\t<Block>536</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>N</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
662
+ 0</Heading>\n\t\t\t\t<Routeid>16466</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>19</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>05:38
663
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6135</Vehicleid>\n\t\t\t\t<Block>54</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>3.65</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>15897</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>19</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>05:37
664
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6538</Vehicleid>\n\t\t\t\t<Block>55</Block>\n\t\t\t\t<Adherance>3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>14.47</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>15897</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>19</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>05:37
665
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6558</Vehicleid>\n\t\t\t\t<Block>56</Block>\n\t\t\t\t<Adherance>6</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.47</Speed>\n\t\t\t\t<Heading>
666
+ 0</Heading>\n\t\t\t\t<Routeid>15887</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>7</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>05:33
667
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6554</Vehicleid>\n\t\t\t\t<Block>6</Block>\n\t\t\t\t<Adherance>4</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>19.78</Speed>\n\t\t\t\t<Heading>16</Heading>\n\t\t\t\t<Routeid>15784</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>562</Route>\n\t\t\t\t<Direction>O</Direction>\n\t\t\t\t<Updatetime>05:37
668
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6486</Vehicleid>\n\t\t\t\t<Block>6005</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>25.78</Speed>\n\t\t\t\t<Heading>26</Heading>\n\t\t\t\t<Routeid>16695</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>563</Route>\n\t\t\t\t<Direction>O</Direction>\n\t\t\t\t<Updatetime>05:37
669
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6496</Vehicleid>\n\t\t\t\t<Block>6009</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>32.62</Speed>\n\t\t\t\t<Heading>31</Heading>\n\t\t\t\t<Routeid>16699</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>571</Route>\n\t\t\t\t<Direction>O</Direction>\n\t\t\t\t<Updatetime>05:37
670
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6488</Vehicleid>\n\t\t\t\t<Block>6016</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t<Offroute>Y</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>51.33</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16703</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>571</Route>\n\t\t\t\t<Direction>O</Direction>\n\t\t\t\t<Updatetime>05:38
671
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6491</Vehicleid>\n\t\t\t\t<Block>6017</Block>\n\t\t\t\t<Adherance>-2</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>7.81</Speed>\n\t\t\t\t<Heading>35</Heading>\n\t\t\t\t<Routeid>16703</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>573</Route>\n\t\t\t\t<Direction>O</Direction>\n\t\t\t\t<Updatetime>05:35
672
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6489</Vehicleid>\n\t\t\t\t<Block>6023</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>25.49</Speed>\n\t\t\t\t<Heading>
673
+ 1</Heading>\n\t\t\t\t<Routeid>16707</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>573</Route>\n\t\t\t\t<Direction>O</Direction>\n\t\t\t\t<Updatetime>05:37
674
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6481</Vehicleid>\n\t\t\t\t<Block>6024</Block>\n\t\t\t\t<Adherance>-4</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>55.45</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16707</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>575</Route>\n\t\t\t\t<Direction>O</Direction>\n\t\t\t\t<Updatetime>05:38
675
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6490</Vehicleid>\n\t\t\t\t<Block>6028</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t<Offroute>Y</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>1.69</Speed>\n\t\t\t\t<Heading>19</Heading>\n\t\t\t\t<Routeid>16711</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>575</Route>\n\t\t\t\t<Direction>O</Direction>\n\t\t\t\t<Updatetime>05:36
676
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6495</Vehicleid>\n\t\t\t\t<Block>6029</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>58.18</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16711</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>251</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:36
677
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6499</Vehicleid>\n\t\t\t\t<Block>6030</Block>\n\t\t\t\t<Adherance>-1</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>8.28</Speed>\n\t\t\t\t<Heading>15</Heading>\n\t\t\t\t<Routeid>16641</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>251</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:37
678
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6500</Vehicleid>\n\t\t\t\t<Block>6031</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>8.60</Speed>\n\t\t\t\t<Heading>
679
+ 9</Heading>\n\t\t\t\t<Routeid>16645</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>35</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>05:38
680
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>8006</Vehicleid>\n\t\t\t\t<Block>62</Block>\n\t\t\t\t<Adherance>-2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>13.36</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>15979</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>35</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>05:36
681
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>8007</Vehicleid>\n\t\t\t\t<Block>64</Block>\n\t\t\t\t<Adherance>-4</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>17.18</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>15979</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>35</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>05:36
682
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>8019</Vehicleid>\n\t\t\t\t<Block>65</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>7.15</Speed>\n\t\t\t\t<Heading>12</Heading>\n\t\t\t\t<Routeid>15979</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>35</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>05:37
683
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6030</Vehicleid>\n\t\t\t\t<Block>68</Block>\n\t\t\t\t<Adherance>3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>23.11</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>15972</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>35</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>05:38
684
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>8058</Vehicleid>\n\t\t\t\t<Block>69</Block>\n\t\t\t\t<Adherance>-2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>13.19</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>15979</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route></Route>\n\t\t\t\t<Direction>
685
+ </Direction>\n\t\t\t\t<Updatetime>05:35 PM</Updatetime>\n\t\t\t\t<Vehicleid>6314</Vehicleid>\n\t\t\t\t<Block>70</Block>\n\t\t\t\t<Adherance>-1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t<Offroute>Y</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>N</Inservice>\n\t\t\t\t<Speed>19.89</Speed>\n\t\t\t\t<Heading>
686
+ 0</Heading>\n\t\t\t\t<Routeid>0</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>ALEX</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:37
687
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>1508</Vehicleid>\n\t\t\t\t<Block>7001</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>8.60</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16749</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>ALEX</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:36
688
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>1509</Vehicleid>\n\t\t\t\t<Block>7002</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t<Offroute>Y</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.03</Speed>\n\t\t\t\t<Heading>
689
+ 0</Heading>\n\t\t\t\t<Routeid>16743</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>ALEX</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:37
690
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>1506</Vehicleid>\n\t\t\t\t<Block>7003</Block>\n\t\t\t\t<Adherance>-1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>14.58</Speed>\n\t\t\t\t<Heading>10</Heading>\n\t\t\t\t<Routeid>16743</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>35</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>05:37
691
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>8014</Vehicleid>\n\t\t\t\t<Block>71</Block>\n\t\t\t\t<Adherance>-4</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>15.06</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>15979</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>44</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>05:37
692
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6294</Vehicleid>\n\t\t\t\t<Block>73</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>2.72</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16034</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>44</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>05:37
693
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6354</Vehicleid>\n\t\t\t\t<Block>74</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>17.14</Speed>\n\t\t\t\t<Heading>19</Heading>\n\t\t\t\t<Routeid>16038</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>44</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>05:38
694
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6342</Vehicleid>\n\t\t\t\t<Block>77</Block>\n\t\t\t\t<Adherance>-3</Adherance>\n\t\t\t\t<Adhchange>N</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
695
+ 0</Heading>\n\t\t\t\t<Routeid>16034</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>50</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:38
696
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>8009</Vehicleid>\n\t\t\t\t<Block>79</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>15.52</Speed>\n\t\t\t\t<Heading>
697
+ 9</Heading>\n\t\t\t\t<Routeid>16096</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>50</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:36
698
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6539</Vehicleid>\n\t\t\t\t<Block>87</Block>\n\t\t\t\t<Adherance>3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>27.66</Speed>\n\t\t\t\t<Heading>11</Heading>\n\t\t\t\t<Routeid>16096</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>7</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>05:38
699
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6561</Vehicleid>\n\t\t\t\t<Block>9</Block>\n\t\t\t\t<Adherance>-5</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>13.40</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>15784</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>50</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:38
700
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6550</Vehicleid>\n\t\t\t\t<Block>93</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.07</Speed>\n\t\t\t\t<Heading>
701
+ 0</Heading>\n\t\t\t\t<Routeid>16110</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>50</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:36
702
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>8018</Vehicleid>\n\t\t\t\t<Block>98</Block>\n\t\t\t\t<Adherance>3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>6.72</Speed>\n\t\t\t\t<Heading>29</Heading>\n\t\t\t\t<Routeid>16110</Routeid>\n\t\t\t</Vehicle>\n\t\t</Vehicles>\n\t<Mapextents>33.239410,-112.391678,33.712849,-111.678558</Mapextents>\n\t<Appid>ratis-specs</Appid>\n\t<Requestor>72.222.151.25</Requestor>\n\t<Host>s-rpta-soap</Host>\n\t<Copyright>XML
605
703
  schema Copyright (c) 2003-2014 Trapeze Software ULC, its subsidiaries and
606
704
  affiliates. All rights reserved.</Copyright>\n\t<Soapversion>2.7.1a - 05/14/14</Soapversion>\n</namesp1:FleetlocationResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>"
607
705
  http_version:
608
- recorded_at: Wed, 14 May 2014 20:55:30 GMT
706
+ recorded_at: Sat, 14 Jun 2014 00:39:17 GMT
609
707
  recorded_with: VCR 2.8.0